@import "https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;1,700&display=swap";
@import "https://fonts.googleapis.com/css2?family=Paytone+One&display=swap";
:root {
	--body-font-family: 'Roboto', sans-serif;
	--heading-font-family: 'Paytone One', sans-serif;
	--body-color: #7b7b7b;
	--main-color: #e77817;
	--optional-color: #e61e40;
	--heading-color: #0f1514;
	--white-color: #ffffff;
	--black-color: #000000;
	--font-size: 15px;
	--transition: all ease .5s;
	--border-radius: 4px;
	--box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05)
}

body {
	font-size: var(--font-size);
	font-family: var(--body-font-family);
	color: var(--body-color)
}

body.body-bg-f7f6f1 {
	background-color: #f7f6f1
}

a {
	-webkit-transition: var(--transition);
	transition: var(--transition);
	text-decoration: none;
	color: var(--body-color)
}

a:hover {
	text-decoration: none;
	color: var(--main-color)
}

a:focus {
	text-decoration: none
}

button {
	outline: 0!important;
	-webkit-box-shadow: none;
	box-shadow: none;
	border: none;
	padding: 0
}

button:focus {
	-webkit-box-shadow: none;
	box-shadow: none
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
	color: var(--heading-color);
	font-family: var(--heading-font-family)
}

.d-table {
	width: 100%;
	height: 100%
}

.d-table-cell {
	vertical-align: middle
}

p {
	font-size: var(--font-size);
	margin-bottom: 15px;
	line-height: 1.8
}

p:last-child {
	margin-bottom: 0
}

img {
	max-width: 100%;
	height: auto
}

.form-control {
	height: 55px;
	color: var(--main-color);
	border: 1px solid #d7d7d7;
	background-color: transparent;
	border-radius: 0;
	font-size: 16px;
	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: var(--black-color);
	background-color: transparent;
	-webkit-box-shadow: unset;
	box-shadow: unset;
	outline: 0;
	border: 1px solid var(--main-color)
}

.form-control:hover:focus,
.form-control:focus {
	-webkit-box-shadow: unset;
	box-shadow: unset
}

textarea.form-control {
	height: auto
}

.ptb-100 {
	padding-top: 100px;
	padding-bottom: 100px
}
.ptb-50 {
	padding-top: 50px;
	padding-bottom: 50px
}

.ptb-70 {
	padding-top: 70px;
	padding-bottom: 70px
}

.pt-100 {
	padding-top: 100px
}
.pt-50 {
	padding-top: 50px
}

.pb-100 {
	padding-bottom: 100px
}
.pb-50 {
	padding-bottom: 50px
}


.pt-70 {
	padding-top: 70px
}

.pb-70 {
	padding-bottom: 70px
}

.pb-40 {
	padding-bottom: 40px
}

.mt-100 {
	margin-top: 100px
}

.mt-minus-100 {
	margin-top: -100px
}

.mt-30 {
	margin-top: 30px
}

.mb-30 {
	margin-bottom: 30px
}

.pr-15 {
	padding-right: 15px!important
}

.pl-15 {
	padding-left: 15px!important
}

.mr-15 {
	margin-right: 15px!important
}

.ml-15 {
	margin-left: 15px!important
}

.pl-0 {
	padding-left: 0
}

.pr-0 {
	padding-right: 0
}

.bg-f9fafb {
	background-color: #f9fafb
}

.default-btn {
	font-size: 15px;
	color: var(--white-color);
	-webkit-transition: var(--transition);
	transition: var(--transition);
	text-align: center;
	position: relative;
	z-index: 1;
	overflow: hidden;
	display: inline-table;
	padding: 15px 35px;
	background-color: var(--main-color)
}

.default-btn i {
	position: relative;
	top: 2px;
	font-size: 16px!important;
	color: var(--white-color)!important;
	margin-left: 5px
}

.default-btn.border-btn {
	border: 1px solid #f7941d;
	color: var(--main-color);
	background-color: transparent
}

.default-btn.border-btn:hover {
	background-color: var(--main-color);
	color: var(--white-color)
}

.default-btn.border-radius-btn {
	border-radius: 50px
}

.default-btn.bg-btn {
	background-color: var(--optional-color);
	border-radius: 50px
}

.default-btn::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 0;
	background-color: var(--heading-color);
	z-index: -1;
	-webkit-transition: var(--transition);
	transition: var(--transition)
}

.default-btn:hover {
	color: var(--white-color)
}

.default-btn:hover::after {
	height: 100%;
	bottom: auto;
	top: 0;
	-webkit-animation: fadeInLeft 1s linear;
	animation: fadeInLeft 1s linear
}

.read-more {
	font-size: 14px;
	color: var(--heading-color);
	font-weight: 500
}

.read-more i {
	position: relative;
	top: 3px
}

.read-more:hover {
	color: var(--main-color);
	letter-spacing: 1px
}

.section-title {
	max-width: 700px;
	margin: -7px auto 50px;
	text-align: center;
	position: relative;
	z-index: 1
}

.section-title .top-title {
	font-size: 14px;
	color: var(--main-color);
	margin-bottom: 8px;
	display: inline-block
}

.section-title .watermark {
	color: #ececec;
	font-size: 60px;
	font-size: 70px;
	font-family: var(--heading-font-family);
	position: absolute;
	top: -45px;
	left: 0;
	right: 0;
	z-index: -1;
	line-height: 1;
	display: none
}

.section-title h2 {
	font-size: 45px;
	margin-bottom: 15px
}

.section-title h2:last-child {
	margin-bottom: 0
}

.section-title p {
	max-width: 600px;
	margin: auto
}

.section-title.section-title-left {
	margin-left: 0;
	margin-right: auto;
	text-align: left
}

.section-title.section-title-three .top-title {
	color: var(--optional-color)
}

.section-title.section-white-title .top-title {
	color: var(--optional-color)
}

.section-title.section-white-title h2 {
	color: var(--white-color)
}

.search-modal-area .modal-content {
	height: 100vh;
	border: none;
	border-radius: 0;
	background-color: rgba(0, 0, 0, .9);
	position: relative
}

.search-modal-area .modal-content form.search-box {
	position: absolute;
	left: 0;
	right: 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
}

.search-modal-area .modal-content form.search-box .search-input {
	width: 810px;
	position: relative;
	padding: 30px
}

.search-modal-area .modal-content form.search-box .search-input .form-control {
	color: var(--white-color);
	height: 60px
}

.search-modal-area .modal-content form.search-box .search-input .form-control::-webkit-input-placeholder {
	color: #eee
}

.search-modal-area .modal-content form.search-box .search-input .form-control:-ms-input-placeholder {
	color: #eee
}

.search-modal-area .modal-content form.search-box .search-input .form-control::-ms-input-placeholder {
	color: #eee
}

.search-modal-area .modal-content form.search-box .search-input .form-control::placeholder {
	color: #eee
}

.search-modal-area .modal-content form.search-box .search-input .search-btn {
	position: absolute;
	top: 30px;
	right: 30px;
	width: 60px;
	height: 60px;
	line-height: 63px;
	font-size: 25px;
	background-color: var(--white-color);
	-webkit-transition: var(--transition);
	transition: var(--transition)
}

.search-modal-area .modal-content form.search-box .search-input .search-btn:hover {
	color: var(--white-color);
	background-color: var(--main-color)
}

.search-modal-area .modal-content .closer-btn {
	position: absolute;
	top: 30px;
	right: 30px;
	width: 30px;
	height: 30px;
	line-height: 30px;
	background-color: #ff3131;
	color: var(--white-color);
	font-size: 20px;
	z-index: 1
}

.search-modal-area .modal-dialog {
	max-width: 100%;
	margin: 0
}

.search-modal-area.modal {
	overflow: hidden;
	padding: 0!important
}

.banner-area {
	background-position: center center;
	background-repeat: no-repeat;
	border-bottom: 1px solid #ebf1e5;
	background-size: cover;
	height: 100%;
	position: relative;
	z-index: 1;
	overflow: hidden
}

.banner-area.used-hight {
	height: 800px
}

.banner-area.banner-three-style {
	background-image: url(../../assets/images/banner/banner-bg-1.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	height: 100%;
	max-width: 100%;
	position: relative;
	border: none;
	z-index: 1;
	padding-top: 150px;
	padding-bottom: 150px
}

.banner-area.banner-three-style::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 60%;
	height: 100%;
	background-color: rgba(0, 0, 0, .9);
	z-index: -1;
	-webkit-clip-path: polygon(0 0, 100% 0%, 75% 100%, 0% 100%);
	clip-path: polygon(0 0, 100% 0%, 75% 100%, 0% 100%)
}

.banner-area.banner-three-style .banner-content .top-title {
	color: var(--optional-color)
}

.banner-area.banner-three-style .banner-content h1 {
	color: var(--white-color)
}

.banner-area.banner-three-style .banner-content p {
	color: var(--white-color)
}

.banner-area .banner-img-2 {
	position: absolute;
	top: 100px;
	right: 30px;
	max-width: 600px
}

.banner-area .banner-img-2 .banner-imgs {
	padding: 30px
}

.banner-area .banner-img-2 .banner-border-shape {
	position: absolute;
	top: 0;
	left: 0;
	right: 0
}

.banner-area .banner-img-2 .what-we-do-play {
	position: absolute;
	top: 0;
	left: 0;
	right: 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
}

.banner-area .banner-shape-1 {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: -1;
	max-width: 1065px
}

.banner-area .shape-1 {
	position: absolute;
	top: 80px;
	left: 0;
	z-index: -1;
	opacity: .5
}

.banner-area .shape-2 {
	position: absolute;
	top: 100px;
	right: 100px;
	z-index: -1;
	opacity: .5
}

.banner-area .banner-img {
	position: absolute;
	top: 0;
	right: 0;
	max-width: 680px
}

.banner-content {
	max-width: 645px
}

.banner-content .top-title {
	font-size: 14px;
	color: var(--main-color);
	margin-bottom: 5px;
	display: block
}

.banner-content h1 {
	font-size: 72px;
	color: var(--heading-color);
	margin-bottom: 25px
}

.banner-content p {
	margin-bottom: 24px
}

.banner-content .banner-btn .default-btn {
	margin-right: 30px
}

.banner-content .banner-btn .call-wrap {
	position: relative;
	padding-left: 70px;
	top: 13px;
	display: inline-block
}

.banner-content .banner-btn .call-wrap .call-us {
	color: var(--body-color)
}

.banner-content .banner-btn .call-wrap .call-us i {
	position: absolute;
	top: 0;
	left: 0;
	width: 54px;
	height: 54px;
	line-height: 54px;
	background-color: var(--main-color);
	color: var(--white-color);
	text-align: center;
	border-radius: 50%;
	font-size: 25px;
	top: -4px
}

.banner-content .banner-btn .call-wrap .call-us span {
	font-weight: 600;
	color: var(--main-color)
}

.banner-content .social-link {
	padding: 0;
	margin: 0;
	list-style-type: none;
	margin-top: 150px
}

.banner-content .social-link li {
	display: inline-block;
	margin-right: 10px
}

.banner-content .social-link li span {
	color: var(--heading-color);
	margin-right: 100px;
	position: relative;
	top: -2px
}

.banner-content .social-link li span::before {
	content: "";
	position: absolute;
	top: 11px;
	right: -95px;
	width: 80px;
	height: 1px;
	background-color: #7b7b7b
}

.banner-content .social-link li:last-child {
	margin-right: 0
}

.banner-content .social-link li a i {
	width: 30px;
	height: 30px;
	line-height: 30px;
	background-color: #7b7b7b;
	border-radius: 50%;
	color: var(--white-color);
	display: inline-block;
	text-align: center;
	-webkit-transition: var(--transition);
	transition: var(--transition)
}

.banner-content .social-link li a:hover i {
	background-color: var(--main-color)
}

.help-area {
	padding-top: 60px;
	padding-bottom: 60px;
	position: relative;
	z-index: 1
}

.help-area::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 70%;
	height: 100%;
	background-color: var(--optional-color);
	-webkit-clip-path: polygon(10% 0%, 100% 0%, 100% 100%, 0% 100%);
	clip-path: polygon(10% 0%, 100% 0%, 100% 100%, 0% 100%);
	z-index: -1
}

.help-area .call-wrap {
	position: relative;
	padding-left: 70px;
	top: 13px;
	display: inline-block
}

.help-area .call-wrap .call-us {
	color: var(--body-color)
}

.help-area .call-wrap .call-us i {
	position: absolute;
	top: 0;
	left: 0;
	width: 54px;
	height: 54px;
	line-height: 54px;
	background-color: var(--optional-color);
	color: var(--white-color);
	text-align: center;
	border-radius: 50%;
	font-size: 25px;
	top: -4px
}

.help-area .call-wrap .call-us span {
	font-weight: 600;
	color: var(--optional-color)
}

.help-content h2 {
	font-size: 45px;
	color: var(--white-color);
	text-align: center;
	margin-top: -16px;
	margin-bottom: 40px
}

.single-help {
	position: relative
}

.single-help h4 {
	position: absolute;
	top: 25px;
	left: 0;
	color: var(--white-color);
	padding-left: 100px
}

.partner-area {
	position: relative;
	z-index: 1
}

.partner-bg {
	text-align: center
}

.partner-bg span {
	display: block;
	color: var(--main-color);
	font-size: 18px;
	margin-bottom: 50px;
	margin-top: -7px
}

.partner-bg .owl-carousel .owl-item img {
	width: auto;
	margin: auto
}

.partner-bg.style-two .single-partner img {
	opacity: 1;
	-webkit-filter: none;
	filter: none
}

.partner-bg.style-three span {
	color: var(--optional-color)
}

.single-partner img {
	-webkit-filter: grayscale(100%);
	filter: grayscale(100%);
	opacity: .5;
	-webkit-transition: var(--transition);
	transition: var(--transition);
	cursor: pointer
}

.single-partner:hover img {
	opacity: 1
}

.our-mission-area {
	position: relative;
	z-index: 1
}

.our-mission-area .left-shape-1 {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1
}

.our-mission-area .mission-dot-shape {
	position: absolute;
	top: 0;
	right: 100px;
	z-index: -1
}

.our-mission-area.style-three {
	background-image: url(../../assets/images/mison-bg.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	height: 100%;
	position: relative;
	z-index: 1
}

.our-mission-area.style-three::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 350px;
	background-color: var(--white-color);
	z-index: -1
}

.our-mission-area.style-three .section-title .watermark {
	color: #262c2b;
	opacity: .3
}

.single-mission {
	margin-bottom: 30px;
	-webkit-transition: var(--transition);
	transition: var(--transition)
}

.single-mission img {
	margin-bottom: 20px
}

.single-mission h3 {
	margin-bottom: 15px;
	font-size: 20px
}

.single-mission.style-two img {
	background-color: #fffaf3;
	padding: 20px;
	border-radius: 50px
}

.single-mission.style-three {
	background-color: var(--white-color);
	padding: 30px;
	-webkit-transition: var(--transition);
	transition: var(--transition);
	position: relative
}

.single-mission.style-three span {
	font-family: var(--heading-font-family);
	font-size: 50px;
	color: #f0f1f1;
	position: absolute;
	top: 20px;
	right: 30px;
	line-height: 1
}

.single-mission.style-three:hover {
	-webkit-transform: translateY(-5px);
	transform: translateY(-5px)
}

.single-mission:hover {
	-webkit-transform: translateY(-5px);
	transform: translateY(-5px)
}

.video-bg {
	position: relative;
	margin-top: 70px
}

.video-bg .what-we-do-play {
	position: absolute;
	top: 0;
	left: 0;
	right: 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;
	background-color: rgba(0, 0, 0, .5)
}

.video-bg .video-btn::after,
.video-bg .video-btn::before {
	background-color: var(--optional-color)
}

.video-bg .video-btn {
	background-color: var(--optional-color)
}

.about-area {
	position: relative;
	z-index: 1
}

.about-area .right-shape-1 {
	position: absolute;
	top: 0;
	right: 0;
	z-index: -1
}

.about-area.about-style-three {
	overflow: hidden
}

.about-area.about-style-three .about-content {
	margin-left: 15px!important;
	position: relative
}

.about-area.about-style-three .about-content .top-title {
	color: var(--optional-color)
}

.about-content {
	position: relative
}

.about-content .top-title {
	font-size: 14px;
	color: var(--main-color);
	margin-bottom: 8px;
	display: inline-block
}

.about-content h2 {
	font-size: 26px;
	margin-bottom: 15px
}

.about-content strong {
	color: var(--heading-color);
	margin-bottom: 10px;
	display: block
}

.about-content .default-btn {
	margin-top: 24px
}

.about-content h3 {
	font-size: 30px;
	color: #6c7177;
	margin-bottom: 0;
	position: absolute;
	-webkit-transform: rotate(-90deg);
	transform: rotate(-90deg);
	left: -330px;
	top: 248px
}

.about-content ul {
	padding: 0;
	margin: 0;
	list-style-type: none
}

.about-content ul li {
	margin-bottom: 10px;
	position: relative;
	padding-left: 30px
}

.about-content ul li i {
	width: 20px;
	height: 20px;
	line-height: 20px;
	background-color: var(--main-color);
	display: inline-block;
	color: var(--white-color);
	text-align: center;
	border-radius: 50px;
	position: absolute;
	top: 3px;
	left: 0
}

.about-content ul li:last-child {
	margin-bottom: 0
}

.about-content.page-style h3 {
	left: -344px
}

.about-img-2 {
	position: relative
}

.about-img-2::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.8)), to(transparent));
	background-image: linear-gradient(to left, rgba(0, 0, 0, 0.8), transparent);
	border-radius: 100% 100% 0 100%
}

.about-img-2 img {
	border-radius: 100% 100% 0 100%
}

.about-img-2 h3 {
	font-size: 25px;
	color: var(--white-color);
	position: absolute;
	bottom: 30px;
	right: 30px;
	max-width: 250px
}

.about-img-2 .about-shape-1 {
	position: absolute;
	bottom: 100px;
	left: -50px
}

.about-img-2 .about-shape-2 {
	position: absolute;
	top: 100px;
	right: 0
}

.about-img-3 {
	position: relative;
	z-index: 1
}

.lines {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 100%;
	margin: auto;
	width: 64vw;
	z-index: -1
}

.lines .line {
	position: absolute;
	width: 2px;
	height: 100%;
	top: 0;
	left: 50%;
	background: #f2f2f2;
	overflow: hidden
}

.lines .line::after {
	content: "";
	display: block;
	position: absolute;
	height: 10px;
	width: 100%;
	top: 0;
	left: 0;
	background-color: var(--white-color);
	-webkit-animation: moveLeftBounces-one 20s linear infinite;
	animation: moveLeftBounces-one 20s linear infinite
}

.lines .line:nth-child(1) {
	margin-left: -52.7%
}

.lines .line:nth-child(1)::after {
	-webkit-animation-delay: 2s;
	animation-delay: 2s
}

.lines .line:nth-child(3)::after {
	-webkit-animation-delay: 2.5s;
	animation-delay: 2.5s
}

.lines .line:nth-child(3) {
	margin-left: 52.7%
}

.lines .line-two {
	position: absolute;
	width: 2px;
	height: 100%;
	top: 0;
	left: 50%;
	background: rgba(255, 255, 255, .1);
	overflow: hidden
}

.lines .line-two::after {
	content: "";
	display: block;
	position: absolute;
	height: 10px;
	width: 100%;
	top: 0;
	left: 0;
	background-color: var(--main-color);
	-webkit-animation: moveLeftBounces-two 20s linear infinite;
	animation: moveLeftBounces-two 20s linear infinite
}

.lines .line-two:nth-child(1) {
	margin-left: -52.7%
}

.lines .line-two:nth-child(1)::after {
	-webkit-animation-delay: 2s;
	animation-delay: 2s
}

.lines .line-two:nth-child(3)::after {
	-webkit-animation-delay: 2.5s;
	animation-delay: 2.5s
}

.lines .line-two:nth-child(3) {
	margin-left: 52.7%
}

.lines .line-three {
	position: absolute;
	width: 2px;
	height: 100%;
	top: 0;
	left: 50%;
	background: rgba(255, 255, 255, .1);
	overflow: hidden
}

.lines .line-three::after {
	content: "";
	display: block;
	position: absolute;
	height: 10px;
	width: 100%;
	top: 0;
	left: 0;
	background-color: var(--main-color);
	-webkit-animation: moveLeftBounces-one 20s linear infinite;
	animation: moveLeftBounces-one 20s linear infinite
}

.lines .line-three:nth-child(1) {
	margin-left: -52.7%
}

.lines .line-three:nth-child(1)::after {
	-webkit-animation-delay: 2s;
	animation-delay: 2s
}

.lines .line-three:nth-child(3)::after {
	-webkit-animation-delay: 2.5s;
	animation-delay: 2.5s
}

.lines .line-three:nth-child(3) {
	margin-left: 52.7%
}

@-webkit-keyframes moveLeftBounces-one {
	0% {
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}
	50% {
		-webkit-transform: translateY(1000px);
		transform: translateY(1000px)
	}
	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}
}

@keyframes moveLeftBounces-one {
	0% {
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}
	50% {
		-webkit-transform: translateY(1000px);
		transform: translateY(1000px)
	}
	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}
}

@-webkit-keyframes moveLeftBounces-two {
	0% {
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}
	100% {
		-webkit-transform: translateY(900px);
		transform: translateY(900px)
	}
	0% {
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}
}

@keyframes moveLeftBounces-two {
	0% {
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}
	100% {
		-webkit-transform: translateY(900px);
		transform: translateY(900px)
	}
	0% {
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}
}

@-webkit-keyframes moveLeftBounces-three {
	0% {
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}
	50% {
		-webkit-transform: translateY(1000px);
		transform: translateY(1000px)
	}
	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}
}

@keyframes moveLeftBounces-three {
	0% {
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}
	50% {
		-webkit-transform: translateY(1000px);
		transform: translateY(1000px)
	}
	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}
}

.our-causes-area {
	background-image: url(../../assets/images/causes-bg.png);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	height: 100%;
	overflow: hidden;
	background: #fffbf4
}

.our-causes-area.our-causes-bg-2 {
	background-image: url(../../assets/images/causes-bg-2.png);
	background-position: top left;
	background-size: contain
}

.our-causes-area .text-right {
	text-align: right
}

.our-causes-area .text-right .default-btn {
	border: 1px solid var(--main-color);
	background-color: transparent;
	color: var(--main-color)
}

.our-causes-area .text-right .default-btn:hover {
	background-color: var(--main-color);
	color: var(--white-color)
}

.our-causes-area .owl-theme .owl-nav {
	margin-top: 0;
	line-height: 1
}

.our-causes-area .owl-theme .owl-nav .owl-prev,
.our-causes-area .owl-theme .owl-nav .owl-next {
	background-color: transparent;
	margin: 0 10px
}

.our-causes-area .owl-theme .owl-nav .owl-prev i,
.our-causes-area .owl-theme .owl-nav .owl-next i {
	width: 40px;
	height: 40px;
	line-height: 40px;
	background: 0 0;
	display: inline-block;
	color: var(--main-color);
	border: 1px solid var(--main-color);
	-webkit-transition: var(--transition);
	transition: var(--transition);
	position: relative;
	z-index: 1;
	overflow: hidden;
	border-radius: 50px
}

.our-causes-area .owl-theme .owl-nav .owl-prev i::after,
.our-causes-area .owl-theme .owl-nav .owl-next i::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 0;
	background-color: var(--main-color);
	z-index: -1;
	-webkit-transition: var(--transition);
	transition: var(--transition)
}

.our-causes-area .owl-theme .owl-nav .owl-prev:hover i,
.our-causes-area .owl-theme .owl-nav .owl-next:hover i {
	color: var(--white-color)
}

.our-causes-area .owl-theme .owl-nav .owl-prev:hover i::after,
.our-causes-area .owl-theme .owl-nav .owl-next:hover i::after {
	height: 100%;
	bottom: auto;
	top: 0;
	-webkit-animation: fadeInLeft 1s linear;
	animation: fadeInLeft 1s linear
}

.single-causes {
	margin-bottom: 30px;
	-webkit-transition: var(--transition);
	transition: var(--transition)
}

.single-causes .causes-img {
	position: relative;
	margin-bottom: 25px
}

.single-causes .causes-img .tag {
	position: absolute;
	bottom: 20px;
	left: 20px;
	color: var(--white-color);
	background-color: var(--main-color);
	padding: 10px 20px;
	font-size: 15px
}

.single-causes h3 {
	font-size: 20px;
	margin-bottom: 15px;
	margin-top: -5px
}

.single-causes h3 a {
	color: var(--heading-color)
}

.single-causes p {
	margin-bottom: 25px
}

.single-causes .bar {
	width: 100%;
	height: 5px;
	background: #e6e6e6;
	position: relative;
	-webkit-transition: all 2s linear;
	transition: all 2s linear;
	margin-bottom: 25px;
	margin-right: 50px;
	padding-right: 50px
}

.single-causes .bar::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	background-color: #fffbf4;
	height: 100%;
	width: 50px
}

.single-causes .bar-1,
.single-causes .my-skills {
	width: 100%;
	margin: 10px auto 25px;
	padding-right: 0
}

.single-causes .bar-inner {
	width: 0;
	height: 5px;
	line-height: 35px;
	background: var(--main-color)
}

.single-causes .bar-percent {
	position: absolute;
	right: 0;
	top: -9px;
	font-size: 16px;
	color: var(--heading-color)
}

.single-causes .total-donate {
	padding: 0;
	list-style-type: none;
	margin-bottom: 25px
}

.single-causes .total-donate li {
	display: inline-block;
	font-size: 15px
}

.single-causes .total-donate li span {
	color: var(--main-color)
}

.single-causes .total-donate .goal {
	float: right
}

.single-causes .donate-read {
	padding: 0;
	list-style-type: none;
	margin-bottom: 0
}

.single-causes .donate-read .default-btn {
	margin-right: 0;
	border: 1px solid var(--main-color);
	background-color: transparent;
	color: var(--main-color)
}

.single-causes .donate-read .default-btn:hover {
	background-color: var(--main-color);
	color: var(--white-color)
}

.single-causes.style-two .causes-img {
	margin-bottom: 0
}

.single-causes.style-two .bar-1 {
	-webkit-box-shadow: var(--box-shadow);
	box-shadow: var(--box-shadow);
	background-color: var(--white-color);
	margin-top: 0;
	padding: 30px
}

.single-causes.style-two .bar-percent {
	right: 0
}

.single-causes.style-two .bar::before {
	background-color: var(--white-color)
}

.single-causes.style-three .causes-img {
	margin-bottom: 0
}

.single-causes.style-three .bar-1 {
	background-color: #fff;
	border: 1px solid #eee;
	margin-top: 0;
	padding: 30px
}

.single-causes.style-three .causes-img .tag {
	background-color: var(--optional-color)
}

.single-causes.style-three .bar-inner {
	background-color: var(--optional-color)
}

.single-causes.style-three .total-donate li span {
	color: var(--optional-color)
}

.single-causes.style-three .bg-btn {
	border-color: var(--optional-color)!important;
	color: var(--black-color)!important
}

.single-causes.style-three .bg-btn:hover {
	background-color: var(--optional-color)!important;
	color: var(--white-color)!important
}

.single-causes .default-btn {
	padding: 10px 22px;
	font-size: 14px
}

.single-causes .read-more {
	float: right;
	position: relative;
	top: 14px
}

.single-causes:hover {
	-webkit-transform: translateY(-5px);
	transform: translateY(-5px)
}

.our-causess-area {
	position: relative
}

.our-causess-area .owl-theme .owl-nav {
	margin-top: 0;
	line-height: 1
}

.our-causess-area .owl-theme .owl-nav .owl-prev,
.our-causess-area .owl-theme .owl-nav .owl-next {
	background-color: transparent;
	margin: 0 10px
}

.our-causess-area .owl-theme .owl-nav .owl-prev i,
.our-causess-area .owl-theme .owl-nav .owl-next i {
	width: 40px;
	height: 40px;
	line-height: 40px;
	background: 0 0;
	display: inline-block;
	color: var(--optional-color);
	border: 1px solid var(--optional-color);
	-webkit-transition: var(--transition);
	transition: var(--transition);
	position: relative;
	z-index: 1;
	overflow: hidden;
	border-radius: 50px
}

.our-causess-area .owl-theme .owl-nav .owl-prev i::after,
.our-causess-area .owl-theme .owl-nav .owl-next i::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 0;
	background-color: var(--optional-color);
	z-index: -1;
	-webkit-transition: var(--transition);
	transition: var(--transition)
}

.our-causess-area .owl-theme .owl-nav .owl-prev:hover i,
.our-causess-area .owl-theme .owl-nav .owl-next:hover i {
	color: var(--white-color)
}

.our-causess-area .owl-theme .owl-nav .owl-prev:hover i::after,
.our-causess-area .owl-theme .owl-nav .owl-next:hover i::after {
	height: 100%;
	bottom: auto;
	top: 0;
	-webkit-animation: fadeInLeft 1s linear;
	animation: fadeInLeft 1s linear
}

.our-causess-area .owl-theme .owl-nav .owl-next {
	left: auto;
	right: -87px
}

.what-we-do-area {
	overflow: hidden;
	position: relative;
	z-index: 1
}

.what-we-do-area .what-we-do-shape-area {
	position: absolute;
	top: 10%;
	left: 0;
	z-index: -1
}

.what-we-do-content .top-title {
	font-size: 14px;
	color: var(--main-color);
	margin-bottom: 8px;
	display: inline-block
}

.what-we-do-content h2 {
	font-size: 45px;
	margin-bottom: 20px
}

.what-we-do-content h2:last-child {
	margin-bottom: 0
}

.what-we-do-content ul {
	padding: 0;
	list-style: none;
	margin-top: 14px
}

.what-we-do-content ul li {
	margin-bottom: 15px;
	position: relative;
	padding-left: 30px;
	z-index: 1;
	-webkit-transition: var(--transition);
	transition: var(--transition);
	color: var(--heading-color);
	font-size: 15px
}

.what-we-do-content ul li:last-child {
	margin-bottom: 0
}

.what-we-do-content ul li i {
	font-size: 18px;
	color: var(--white-color);
	background-color: var(--main-color);
	display: inline-block;
	width: 20px;
	height: 20px;
	line-height: 20px;
	text-align: center;
	border-radius: 50%;
	position: absolute;
	top: 1px;
	left: 0;
	-webkit-transition: var(--transition);
	transition: var(--transition)
}

.what-we-do-img {
	position: relative
}

.what-we-do-img .what-we-do-play {
	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
}

.what-we-do-img .what-we-do-shape {
	position: absolute;
	top: 0;
	right: -50px
}

.counter-area.style-three {
	position: relative
}

.counter-bg {
	background-image: unset;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	height: 100%
}

.single-counter {
	text-align: center;
	margin-bottom: 30px;
	border: 1px solid #eee;
	background-color: #fff;
	padding: 30px;
	position: relative;
	z-index: 2
}

.single-counter.style-three h2 {
	color: var(--optional-color)
}

.single-counter img {
	margin-bottom: 8px
}

.single-counter h2 {
	font-size: 35px;
	color: var(--main-color);
	margin-bottom: 7px
}

.single-counter h2 .odometer {
	font-family: var(--heading-font-family)
}

.single-counter h2 .target {
	position: relative;
	top: 7px
}

.single-counter h4 {
	font-size: 18px;
	margin-bottom: 0
}

.donation-content img {
	margin-bottom: 20px
}

.donation-content h2 {
	font-size: 45px;
	margin-bottom: 30px
}

.donation-content h5 {
	font-size: 20px
}

.donation-content ul {
	padding: 0;
	margin: 0;
	list-style-type: none;
	margin-top: 30px
}

.donation-content ul li {
	display: inline-block;
	margin-right: 20px
}

.donation-content ul li a {
	color: var(--main-color);
	font-weight: 600
}

.donation-content ul li span {
	color: var(--heading-color)
}

.donation-content ul li:last-child {
	margin-right: 0
}

.donation-bg {
	background-image: url(../../assets/images/donation-bg.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	height: 100%;
	position: relative;
	z-index: 1;
	padding: 50px
}

.donation-bg::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(249, 250, 251, .8);
	z-index: -1
}

.donation-bg.donation-bg-three {
	padding-bottom: 100px;
	background-image: url(../../assets/images/donation-bg-three.jpg)
}

.donation-bg.donation-bg-three::before {
	display: none
}

.donation-bg.donation-bg-three::after {
	display: none
}

.donation-bg.donation-bg-three .single-check .checkmark {
	border-color: var(--optional-color)
}

.donation-bg.donation-bg-three .single-check .checkmark:after {
	background-color: var(--optional-color)
}

.donation-bg.donation-bg-three .single-check:hover input~.checkmark {
	background-color: var(--optional-color)
}

.donation-bg.donation-bg-three .stap-lavel {
	padding: 0;
	margin: 0;
	list-style-type: none;
	float: right
}

.donation-bg.donation-bg-three .stap-lavel li {
	margin-bottom: 68px;
	position: relative
}

.donation-bg.donation-bg-three .stap-lavel li::before {
	content: "";
	position: absolute;
	bottom: -68px;
	left: 35px;
	width: 2px;
	height: 100%;
	background-color: var(--main-color)
}

.donation-bg.donation-bg-three .stap-lavel li:last-child {
	margin-bottom: 0
}

.donation-bg.donation-bg-three .stap-lavel li:last-child::before {
	display: none
}

.donation-bg.donation-bg-three .stap-lavel li span {
	background-color: var(--white-color);
	border: 2px solid var(--main-color);
	color: var(--main-color);
	width: 70px;
	height: 70px;
	line-height: 65px;
	display: inline-block;
	text-align: center;
	font-family: var(--heading-font-family);
	font-size: 20px;
	border-radius: 50px;
	-webkit-transition: var(--transition);
	transition: var(--transition)
}

.donation-bg.donation-bg-three .stap-lavel li span.active {
	background-color: var(--main-color);
	border-color: var(--white-color);
	color: var(--white-color)
}

.donation-bg.donation-bg-three .stap-lavel li span:hover {
	background-color: var(--main-color);
	border-color: var(--white-color);
	color: var(--white-color)
}

.donation-form {
	background-color: var(--white-color);
	-webkit-box-shadow: var(--box-shadow);
	box-shadow: var(--box-shadow);
	padding: 50px
}

.donation-form h3 {
	font-size: 25px;
	margin-bottom: 30px
}

.donation-form h4 {
	font-size: 16px
}

.donation-form ul {
	padding: 0;
	margin: 0;
	list-style-type: none
}

.donation-form ul li {
	display: inline-block;
	margin-right: 30px
}

.donation-form ul li:last-child {
	margin-right: 0
}

.donation-form ul li .single-check {
	position: relative;
	padding-left: 20px
}

.donation-form ul li .single-check input[type=radio] {
	position: absolute;
	left: 0;
	top: 6px
}

.donation-form .donation-wrap {
	margin-bottom: 20px
}

.donation-form .donation-wrap .form-group {
	margin-bottom: 15px;
	margin-top: 15px
}

.donation-form .donation-wrap .default-btn {
	width: 100%
}

.single-check {
	display: block;
	position: relative;
	padding-left: 20px;
	margin-bottom: 0;
	cursor: pointer;
	font-size: 14px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none
}

.single-check input {
	position: absolute;
	opacity: 0;
	cursor: pointer
}

.single-check input:checked~.checkmark {
	background-color: var(--main-color)
}

.single-check input:checked~.checkmark:after {
	display: block
}

.single-check:hover input~.checkmark {
	background-color: var(--main-color)
}

.single-check .checkmark {
	-webkit-transition: var(--transition);
	transition: var(--transition);
	border: 1px solid var(--main-color);
	background-color: var(--white-color)
}

.single-check .checkmark:after {
	top: 1px;
	left: 1px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--main-color)
}

.checkmark {
	position: absolute;
	top: 4.8px;
	left: 0;
	height: 12px;
	width: 12px;
	background-color: #d8d8d8;
	border-radius: 50%
}

.checkmark:after {
	content: "";
	position: absolute;
	display: none
}

.how-we-can-area {
	position: relative;
	z-index: 1
}

.how-we-can-area .left-shape-2 {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1
}

.single-how-we-can {
	padding: 30px;
	margin-bottom: 30px
}

.single-how-we-can img {
	background-color: #f9f5f0;
	padding: 15px;
	border-radius: 50%;
	margin-bottom: 15px
}

.single-how-we-can h3 {
	margin-bottom: 15px;
	font-size: 25px
}

.single-how-we-can.active {
	background-color: var(--white-color);
	-webkit-box-shadow: var(--box-shadow);
	box-shadow: var(--box-shadow)
}

.single-how-we-can:hover {
	background-color: var(--white-color);
	-webkit-box-shadow: var(--box-shadow);
	box-shadow: var(--box-shadow);
	-webkit-transition: var(--transition);
	transition: var(--transition)
}

.gallery-area .section-title {
	max-width: 720px
}

.gallery-area .text-right {
	text-align: right
}

.gallery-area .text-right .default-btn {
	background-color: transparent;
	border: 1px solid var(--main-color);
	color: var(--main-color)
}

.gallery-area .text-right .default-btn:hover {
	background-color: var(--main-color);
	color: var(--white-color)
}

.gallery-img {
	margin-bottom: 24px;
	position: relative
}

.gallery-img a {
	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;
	background-color: rgba(247, 148, 29, .7);
	opacity: 0;
	-webkit-transition: var(--transition);
	transition: var(--transition)
}

.gallery-img a i {
	font-size: 30px;
	color: var(--white-color);
	font-weight: 400
}

.gallery-img:hover a {
	opacity: 1
}

.event-area {
	background-image: url(../../assets/images/events/event-bg.png);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	height: 100%;
	position: relative;
	z-index: 1;
	background: #f4f9ef
}

.event-area .text-right {
	text-align: right
}

.event-area .text-right .default-btn {
	background-color: transparent;
	border: 1px solid var(--main-color);
	color: var(--main-color)
}

.event-area .text-right .default-btn:hover {
	background-color: var(--main-color);
	color: var(--white-color)
}

.event-area.event-bg-area {
	background-image: unset
}

.event-area.event-bg-area.bg-ffffff {
	background-color: #fff
}

.event-area.event-bg-three {
	background-image: url(../../assets/images/events/event-bg.jpg);
	position: relative
}

.event-area.event-bg-three::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--black-color);
	opacity: .9;
	z-index: -1
}

.event-area.event-bg-three::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 328px;
	background-color: var(--white-color);
	z-index: -1
}

.event-area.event-bg-three .section-title .watermark {
	color: #060503;
	opacity: .7
}

.single-event {
	margin-bottom: 30px;
	-webkit-transition: var(--transition);
	transition: var(--transition)
}

.single-event .default-btn {
	padding: 10px 22px;
	font-size: 15px
}

.single-event.style-two .event-img {
	margin-bottom: 0
}

.single-event.style-two .single-event-content {
	background-color: var(--white-color);
	-webkit-box-shadow: var(--box-shadow);
	box-shadow: var(--box-shadow);
	padding: 30px
}

.single-event.style-two .single-event-content h3 {
	font-size: 23px
}

.single-event.style-three .event-img {
	margin-bottom: 0
}

.single-event.style-three .event-img .date {
	background-color: var(--optional-color)
}

.single-event.style-three .single-event-content {
	background-color: var(--white-color);
	-webkit-box-shadow: var(--box-shadow);
	box-shadow: var(--box-shadow);
	padding: 30px
}

.single-event.style-three .single-event-content h3 {
	font-size: 23px
}

.single-event.style-three .single-event-content ul li i {
	color: var(--optional-color)
}

.single-event.style-three .single-event-content .default-btn.bg-btn {
	background-color: transparent;
	border: 1px solid var(--optional-color);
	color: var(--optional-color)
}

.single-event.style-three .single-event-content .default-btn.bg-btn::after {
	background-color: var(--optional-color)
}

.single-event.style-three .single-event-content .default-btn.bg-btn:hover {
	color: var(--white-color)
}

.single-event .event-img {
	margin-bottom: 20px;
	position: relative
}

.single-event .event-img .date {
	background-color: var(--main-color);
	margin-bottom: 0;
	max-width: 100px;
	color: var(--white-color);
	text-align: center;
	font-size: 40px;
	line-height: 1;
	font-family: var(--heading-font-family);
	padding: 10px 20px;
	position: absolute;
	bottom: 20px;
	right: 20px
}

.single-event .event-img .date span {
	display: block;
	font-weight: 400;
	font-size: 18px;
	margin-top: 10px;
	margin-bottom: 8px;
	font-family: var(--body-font-family)
}

.single-event ul {
	padding: 0;
	list-style-type: none;
	margin-bottom: 12px
}

.single-event ul li {
	position: relative;
	padding-left: 22px;
	margin-bottom: 8px;
	font-size: 15px
}

.single-event ul li:last-child {
	margin-bottom: 0
}

.single-event ul li i {
	color: var(--main-color);
	position: absolute;
	top: 0;
	left: 0
}

.single-event h3 {
	margin-bottom: 15px;
	font-size: 24px
}

.single-event h3 a {
	color: var(--heading-color)
}

.single-event p {
	margin-bottom: 22px
}

.single-event:hover {
	-webkit-transform: translateY(-5px);
	transform: translateY(-5px)
}

.testimonial-area .owl-carousel .owl-item img {
	width: auto;
	margin: auto
}

.testimonial-area .owl-theme .owl-nav {
	margin-top: 0;
	position: relative;
	line-height: 1
}

.testimonial-area .owl-theme .owl-nav .owl-prev,
.testimonial-area .owl-theme .owl-nav .owl-next {
	background: 0 0;
	position: absolute;
	bottom: 100px;
	right: 50px;
	margin: 0
}

.testimonial-area .owl-theme .owl-nav .owl-prev i,
.testimonial-area .owl-theme .owl-nav .owl-next i {
	width: 40px;
	height: 40px;
	line-height: 40px;
	background: var(--main-color);
	display: inline-block;
	color: var(--white-color);
	-webkit-transition: var(--transition);
	transition: var(--transition);
	position: relative;
	z-index: 1;
	overflow: hidden;
	border-radius: 50px
}

.testimonial-area .owl-theme .owl-nav .owl-prev i::after,
.testimonial-area .owl-theme .owl-nav .owl-next i::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 0;
	background-color: var(--heading-color);
	z-index: -1;
	-webkit-transition: var(--transition);
	transition: var(--transition)
}

.testimonial-area .owl-theme .owl-nav .owl-prev:hover i::after,
.testimonial-area .owl-theme .owl-nav .owl-next:hover i::after {
	height: 100%;
	bottom: auto;
	top: 0;
	-webkit-animation: fadeInLeft 1s linear;
	animation: fadeInLeft 1s linear
}

.testimonial-area .owl-theme .owl-nav .owl-prev {
	left: 50px;
	right: auto
}

.testimonial-area.style-three {
	background-image: url(.././images/testimonial/testimonial-bg.png);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	position: relative
}

.testimonial-area.style-three .owl-theme .owl-nav .owl-prev i,
.testimonial-area.style-three .owl-theme .owl-nav .owl-next i {
	background: 0 0;
	border: 1px solid var(--optional-color)!important;
	color: var(--optional-color)!important
}

.testimonial-area.style-three .owl-theme .owl-nav .owl-prev i::after,
.testimonial-area.style-three .owl-theme .owl-nav .owl-next i::after {
	background-color: var(--optional-color)
}

.testimonial-area.style-three .owl-theme .owl-nav .owl-prev:hover i,
.testimonial-area.style-three .owl-theme .owl-nav .owl-next:hover i {
	color: var(--white-color)!important
}

.testimonial-area.style-three .single-testimonial-content ul li i {
	color: var(--optional-color)
}

.single-testimonial-content {
	text-align: center;
	max-width: 750px;
	margin: auto
}

.single-testimonial-content h3 {
	font-size: 20px;
	margin-top: 10px;
	margin-bottom: 5px
}

.single-testimonial-content span {
	margin-bottom: 20px;
	display: block
}

.single-testimonial-content p {
	font-size: 20px;
	color: var(--heading-color);
	font-weight: 500
}

.single-testimonial-content ul {
	padding: 0;
	list-style-type: none;
	margin-top: 21px;
	margin-bottom: 0
}

.single-testimonial-content ul li {
	display: inline-block;
	margin: 0 5px
}

.single-testimonial-content ul li i {
	color: var(--main-color);
	font-size: 25px
}

.testimonial-avatar {
	position: relative;
	display: inline-block
}

.testimonial-avatar .avatar {
	border-radius: 50%
}

.testimonial-avatar .quat {
	position: absolute;
	top: 10px;
	left: 10px
}

.volunteers-area {
	position: relative;
	z-index: 1
}

.volunteers-area .text-right {
	float: right
}

.volunteers-area .section-title {
	max-width: 780px
}

.volunteers-area .right-shape {
	position: absolute;
	top: 0;
	right: 0;
	z-index: -1
}

.volunteers-area.volunteers-bg-area {
	background-image: url(../../assets/images/volunteers-bg.png);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	background: #f3f9ef
}

.single-volunteers {
	margin-bottom: 30px;
	position: relative;
	overflow: hidden;
	-webkit-transition: var(--transition);
	transition: var(--transition);
	border: 1px solid #eee
}

.single-volunteers::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.9)), to(transparent));
	background-image: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
	opacity: 0;
	-webkit-transition: var(--transition);
	transition: var(--transition)
}

.single-volunteers .volunteer-content {
	text-align: center;
	position: absolute;
	bottom: 15px;
	left: 0;
	right: 0;
	opacity: 0;
	-webkit-transition: var(--transition);
	transition: var(--transition)
}

.single-volunteers .volunteer-content h3 {
	font-size: 20px;
	color: var(--white-color)
}

.single-volunteers .volunteer-content span {
	font-size: 15px;
	display: block;
	margin-bottom: 15px;
	color: var(--white-color)
}

.single-volunteers .volunteer-content ul {
	padding: 0;
	list-style-type: none
}

.single-volunteers .volunteer-content ul li {
	display: inline-block;
	margin: 0 5px
}

.single-volunteers .volunteer-content ul li a i {
	width: 30px;
	height: 30px;
	line-height: 30px;
	background-color: #9c9e9e;
	display: inline-block;
	border-radius: 50%;
	color: var(--white-color);
	-webkit-transition: var(--transition);
	transition: var(--transition)
}

.single-volunteers .volunteer-content ul li a:hover i {
	background-color: var(--main-color);
	color: var(--white-color)
}

.single-volunteers.style-three .volunteer-content ul li a:hover i {
	background-color: var(--optional-color)
}

.single-volunteers:hover {
	-webkit-transform: translateY(-5px);
	transform: translateY(-5px)
}

.single-volunteers:hover::before {
	-webkit-animation: fadeInUp 1s linear;
	animation: fadeInUp 1s linear;
	opacity: 1
}

.single-volunteers:hover .volunteer-content {
	opacity: 1
}

.volunteers-bg {
	background-image: url(../../assets/images/join-us-bg.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	height: 100%;
	position: relative;
	z-index: 1;
	padding: 100px
}

.volunteers-bg::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, .7);
	z-index: -1
}

.volunteers-bg .section-title {
	margin-bottom: 0
}

.volunteers-bg .section-title .top-title {
	color: #d4d4d4
}

.volunteers-bg .section-title h2 {
	color: var(--white-color)
}

.blog-post-area {
	position: relative;
	z-index: 1
}

.blog-post-area .text-right {
	text-align: right
}

.single-blog {
	margin-bottom: 30px;
	position: relative
}

.single-blog.style-two::before {
	display: none
}

.single-blog.style-two .blog-content {
	position: relative;
	background-color: var(--white-color);
	-webkit-box-shadow: var(--box-shadow);
	box-shadow: var(--box-shadow);
	z-index: 1
}

.single-blog.style-two .blog-content ul li a {
	color: var(--body-color)
}

.single-blog.style-two .blog-content ul li a:hover {
	color: var(--main-color)
}

.single-blog.style-two .blog-content h3 a {
	color: var(--heading-color)
}

.single-blog.style-two .blog-content p {
	color: var(--heading-color)
}

.single-blog.style-two.style-three .date {
	background-color: var(--optional-color)
}

.single-blog.style-two.style-three .blog-content ul li i {
	color: var(--optional-color)
}

.single-blog.style-two.style-three .blog-content ul li a:hover {
	color: var(--optional-color)
}

.single-blog::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, .7);
	-webkit-transition: var(--transition);
	transition: var(--transition)
}

.single-blog .date {
	background-color: var(--main-color);
	margin-bottom: 0;
	max-width: 100px;
	color: var(--white-color);
	text-align: center;
	font-size: 40px;
	line-height: 1;
	font-family: var(--heading-font-family);
	padding: 10px 20px;
	position: absolute;
	top: 20px;
	right: 20px
}

.single-blog .date span {
	display: block;
	font-weight: 400;
	font-size: 18px;
	margin-top: 10px;
	margin-bottom: 8px;
	font-family: var(--body-font-family)
}

.single-blog .blog-content {
	padding: 30px;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	-webkit-transition: var(--transition);
	transition: var(--transition);
	z-index: 1
}

.single-blog .blog-content ul {
	padding: 0;
	list-style-type: none;
	margin-bottom: 12px;
	line-height: 1
}

.single-blog .blog-content ul li {
	display: inline-block;
	margin-right: 20px;
	font-size: 15px;
	position: relative
}

.single-blog .blog-content ul li::before {
	content: "";
	position: absolute;
	top: 2px;
	right: -14px;
	width: 1px;
	height: 100%;
	background-color: var(--white-color);
	-webkit-transform: rotate(30deg);
	transform: rotate(30deg)
}

.single-blog .blog-content ul li:last-child {
	margin-right: 0
}

.single-blog .blog-content ul li:last-child::before {
	display: none
}

.single-blog .blog-content ul li i {
	position: relative;
	top: 2px;
	color: var(--main-color);
	margin-right: 2px
}

.single-blog .blog-content ul li a {
	color: var(--white-color)
}

.single-blog .blog-content h3 {
	font-size: 24px;
	margin-bottom: 10px;
	line-height: 1.4
}

.single-blog .blog-content h3 a {
	color: var(--white-color)
}

.single-blog .blog-content p {
	color: var(--white-color);
	position: initial;
	bottom: 30px;
	left: 30px;
	right: 30px;
	opacity: 0;
	margin-top: -92px;
	-webkit-transition: var(--transition);
	transition: var(--transition)
}

.single-blog:hover::before {
	background-color: rgba(0, 0, 0, .9)
}

.single-blog:hover .blog-content {
	margin-top: -92px
}

.single-blog:hover .blog-content h3 a {
	color: var(--main-color)
}

.single-blog:hover .blog-content p {
	position: initial;
	opacity: 1;
	margin-top: 0
}

.subscribe-content h2 {
	font-size: 40px;
	margin-bottom: 0;
	margin-top: -12px
}

.newsletter-form {
	position: relative
}

.newsletter-form .default-btn {
	position: absolute;
	top: 0;
	right: 0;
	padding: 16px 35px
}

.newsletter-form .form-control {
	background-color: var(--white-color)
}

.newsletter-form.border-radius .form-control {
	border-radius: 50px
}

#validator-newsletter {
	font-size: 14px;
	color: red;
	margin-top: 10px
}

.bg-colo-f4f9ef {
	background-color: #f4f9ef;
	padding: 50px 50px
}

.bg-0f1514 {
	background-color: #0f1514
}

.bg-0f1514 .subscribe-content h2 {
	color: var(--white-color)
}

.bg-0f1514 .newsletter-form .form-control {
	border-radius: 50px;
	border-color: #222728!important;
	color: var(--white-color);
	background-color: #222728
}

.bg-0f1514 .newsletter-form .form-control:focus {
	border-color: var(--optional-color)!important
}

.bg-0f1514 .newsletter-form .default-btn {
	height: 55px
}

.bg-0f1514 .newsletter-form .default-btn::after {
	background-color: #f14562
}

.bg-0f1514 .single-footer-widget .social-link li h3 {
	color: var(--white-color)!important
}

.bg-0f1514 .single-footer-widget h3 {
	color: var(--white-color)
}

.bg-0f1514 .single-footer-widget p {
	color: #c5c3c3
}

.bg-0f1514 .single-footer-widget .news-link li a {
	color: var(--white-color)
}

.bg-0f1514 .single-footer-widget .news-link li:hover a {
	color: var(--optional-color)
}

.bg-0f1514 .single-footer-widget .address li {
	color: #c5c3c3
}

.bg-0f1514 .single-footer-widget .address li .call-us {
	color: var(--white-color)
}

.bg-0f1514 .single-footer-widget .address li a {
	color: #c5c3c3
}

.bg-0f1514 .single-footer-widget .address li a:hover {
	color: var(--optional-color)
}

.bg-0f1514 .single-footer-widget .social-link li a:hover i {
	background-color: var(--optional-color)
}

.bg-0f1514 .single-footer-widget .import-link li a {
	color: #c5c3c3
}

.bg-0f1514 .single-footer-widget .import-link li a:hover {
	color: var(--optional-color)
}

.bg-0f1514 .news-link li span {
	color: #c5c3c3
}

.bg-0f1514.copy-right-area p {
	border-color: #181e1e;
	color: #c5c3c3
}

.bg-0f1514.copy-right-area p a {
	color: var(--optional-color)
}

.single-footer-widget {
	margin-bottom: 30px;
	padding-left: 15px;
	padding-right: 15px
}

.single-footer-widget p {
	margin-bottom: 25px
}

.single-footer-widget h3 {
	font-size: 25px;
	margin-bottom: 25px;
	position: relative;
	margin-top: -5px
}

.single-footer-widget .logo {
	margin-bottom: 20px;
	display: block
}

.single-footer-widget .social-link {
	padding: 0;
	list-style-type: none;
	margin: 0
}

.single-footer-widget .social-link li {
	display: inline-block;
	margin-right: 10px
}

.single-footer-widget .social-link li:last-child {
	margin-right: 0
}

.single-footer-widget .social-link li h3 {
	font-size: 18px;
	margin-bottom: 0;
	margin-top: 0;
	color: var(--heading-color)!important
}

.single-footer-widget .social-link li a i {
	width: 30px;
	height: 30px;
	line-height: 30px;
	background-color: #e1e8ef;
	color: var(--heading-color);
	display: inline-block;
	text-align: center;
	-webkit-transition: var(--transition);
	transition: var(--transition);
	border-radius: 50%
}

.single-footer-widget .social-link li a:hover i {
	background-color: var(--main-color);
	color: var(--white-color)
}

.single-footer-widget .address {
	padding: 0;
	margin: 0;
	list-style-type: none
}

.single-footer-widget .address li {
	position: relative;
	margin-bottom: 15px;
	padding-left: 20px
}

.single-footer-widget .address li::before {
	content: "";
	position: absolute;
	top: 5px;
	left: 0;
	border-radius: 100px;
	width: 10px;
	height: 10px;
	background-color: var(--main-color);
	-webkit-border-radius: 100px;
	-moz-border-radius: 100px;
	-ms-border-radius: 100px;
	-o-border-radius: 100px
}

.single-footer-widget .address li a {
	display: block;
	color: var(--body-color)
}

.single-footer-widget .address li a:hover {
	color: var(--main-color)
}

.single-footer-widget .address li:last-child {
	margin-bottom: 0
}

.single-footer-widget .address li .call-us {
	font-weight: 600;
	color: var(--heading-color)
}

.single-footer-widget .import-link {
	padding: 0;
	margin: 0;
	list-style-type: none
}

.single-footer-widget .import-link li {
	margin-bottom: 10px;
	padding-bottom: 10px;
	border-bottom: 1px solid #eee
}

.single-footer-widget .import-link li a {
	color: var(--body-color);
	display: block;
	position: relative;
	padding-left: 20px
}

.single-footer-widget .import-link li a::before {
	content: "";
	position: absolute;
	top: 5px;
	left: 0;
	border-radius: 100px;
	width: 10px;
	height: 10px;
	background-color: var(--main-color);
	-webkit-border-radius: 100px;
	-moz-border-radius: 100px;
	-ms-border-radius: 100px;
	-o-border-radius: 100px
}

.single-footer-widget .import-link li a i {
	float: right
}

.single-footer-widget .import-link li:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none
}

.single-footer-widget .import-link li:hover::before {
	border-radius: 50%
}

.single-footer-widget .import-link li:hover a {
	color: var(--main-color)
}

.copy-right-area {
	text-align: center
}

.copy-right-area p {
	border-top: 1px solid #ebecee;
	padding-top: 20px;
	padding-bottom: 20px
}

.copy-right-area p i {
	position: relative;
	top: 2px
}

.copy-right-area p a {
	color: var(--main-color);
	font-weight: 600
}

.copy-right-area p a:hover {
	color: var(--main-color)
}

.page-title-area {
	padding-top: 120px;
	padding-bottom: 0;
	position: relative;
	z-index: 1;
	background-image: url(../../assets/images/page-bg/bg-1.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	height: 100%
}

.page-title-area::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--heading-color);
	opacity: .9;
	z-index: -1
}

.page-title-area .page-title-content {
	position: relative;
	margin-top: -6px;
	text-align: center;
	background-color: #fff;
	max-width: 400px;
	margin: auto;
	padding: 30px;
	padding-bottom: 42px;
	border-radius: 65px 65px 0 0;
	top: -15px
}

.page-title-area .page-title-content h2 {
	margin-bottom: 15px;
	font-size: 55px;
	color: var(--heading-color)
}

.page-title-area .page-title-content ul {
	padding-left: 0;
	list-style-type: none;
	margin-top: 10px;
	margin-bottom: -5px
}

.page-title-area .page-title-content ul li {
	display: inline-block;
	position: relative;
	font-size: 15px;
	padding-right: 15px;
	margin-left: 15px;
	color: var(--white-color)
}

.page-title-area .page-title-content ul li::before {
	content: "";
	position: absolute;
	top: 5px;
	right: -3px;
	background-color: var(--body-color);
	width: 1px;
	height: 15px;
	-webkit-transform: rotate(20deg);
	transform: rotate(20deg)
}

.page-title-area .page-title-content ul li.active {
	color: var(--main-color)
}

.page-title-area .page-title-content ul li:first-child {
	margin-left: 0
}

.page-title-area .page-title-content ul li:last-child {
	padding-right: 0
}

.page-title-area .page-title-content ul li:last-child::before {
	display: none
}

.page-title-area .page-title-content ul li a {
	color: var(--body-color)
}

.page-title-area .page-title-content ul li a:hover {
	color: var(--main-color)
}

.page-title-area .page-bg-shape {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0
}

.faq-accordion {
	position: relative;
	z-index: 1;
	max-width: 820px;
	margin: auto
}

.faq-accordion h2 {
	text-align-last: left
}

.faq-accordion .accordion {
	list-style-type: none;
	padding-left: 0;
	margin-bottom: 0
}

.faq-accordion .accordion .accordion-item {
	display: block;
	margin-bottom: 25px;
	border: none;
	border-bottom: 1px solid #e6e6e6;
	padding-bottom: 25px;
	border-radius: 0
}

.faq-accordion .accordion .accordion-item:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none
}

.faq-accordion .accordion .accordion-title {
	padding-left: 0;
	color: var(--heading-color);
	text-decoration: none;
	position: relative;
	display: block;
	font-size: 18px;
	font-weight: 600;
	z-index: 1
}

.faq-accordion .accordion .accordion-title span {
	position: absolute;
	top: -1px;
	left: 0
}

.faq-accordion .accordion .accordion-title i {
	position: absolute;
	right: 0;
	top: 0;
	font-size: 20px;
	-webkit-transition: var(--transition);
	transition: var(--transition);
	color: var(--white-color);
	background-color: var(--main-color);
	width: 30px;
	height: 30px;
	line-height: 30px;
	text-align: center;
	border-radius: 50px
}

.faq-accordion .accordion .accordion-title.active i {
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg)
}

.faq-accordion .accordion .accordion-title.active i::before {
	content: "\f1af"
}

.faq-accordion .accordion .accordion-content {
	display: none;
	position: relative;
	margin-top: 10px;
	padding-left: 50px
}

.faq-accordion .accordion .accordion-content span {
	position: absolute;
	top: 0;
	left: 0;
	font-size: 17px;
	font-weight: 600;
	color: var(--heading-color)
}

.faq-accordion .accordion .accordion-content.show {
	display: block
}

.main-contact-area h3 {
	font-size: 30px;
	margin-bottom: 30px;
	position: relative
}

.main-contact-area .form-group {
	margin-bottom: 30px
}

.main-contact-area .form-group label {
	font-size: 16px;
	margin-bottom: 10px;
	color: #3e3e3e
}

.main-contact-area .form-group .form-control {
	background-color: #f7f7f7;
	-webkit-transition: var(--transition);
	transition: var(--transition);
	border-color: #eee
}

.main-contact-area .form-group .form-control:focus {
	border-color: var(--main-color)
}

.main-contact-area .form-group .form-control::-webkit-input-placeholder {
	color: #6b7c93
}

.main-contact-area .form-group .form-control:-ms-input-placeholder {
	color: #6b7c93
}

.main-contact-area .form-group .form-control::-ms-input-placeholder {
	color: #6b7c93
}

.main-contact-area .form-group .form-control::placeholder {
	color: #6b7c93
}

.main-contact-area .form-group.checkboxs {
	position: relative
}

.main-contact-area .form-group.checkboxs #chb2 {
	position: absolute;
	top: 8px;
	left: 0
}

.main-contact-area .form-group.checkboxs p {
	padding-left: 20px
}

.main-contact-area .form-group.checkboxs p a {
	color: var(--main-color)
}

.main-contact-area .form-group.checkboxs p a:hover {
	color: var(--heading-color)
}

.list-unstyled {
	color: #dc3545;
	margin-top: 10px;
	font-size: 14px
}

.hidden {
	display: none
}

#msgSubmit {
	margin-top: 30px;
	font-size: 20px
}

.maps-area {
	overflow: hidden
}

.maps-area iframe {
	width: 100%;
	height: 704px;
	display: block
}

.contact-info-bg {
	background-image: url(../../assets/images/contact-info-bg.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	height: 100%;
	position: relative;
	z-index: 1;
	padding: 35px;
	padding-bottom: 0px
}

.contact-info-bg::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, .9);
	z-index: -1
}

.single-contact-info {
	margin-bottom: 30px;
	text-align: center;
	border: 1px solid var(--white-color);
	padding: 30px
}

.single-contact-info i {
	display: inline-block;
	width: 54px;
	height: 54px;
	line-height: 54px;
	background-color: var(--white-color);
	color: var(--main-color);
	text-align: center;
	border-radius: 50%;
	font-size: 25px;
	top: -4px;
	margin-bottom: 20px
}

.single-contact-info a {
	margin-bottom: 5px
}

.single-contact-info .call-us {
	color: var(--white-color);
	display: block
}

.single-contact-info .call-us:hover {
	color: var(--main-color)
}

.single-contact-info p {
	color: var(--white-color)
}

.user-area {
	position: relative;
	z-index: 1
}

.user-area .user-form-content {
	background: -webkit-gradient(linear, left top, right top, from(#f6f7ff), to(#f0f8ff));
	background: linear-gradient(to right, #f6f7ff, #f0f8ff);
	padding: 50px;
	margin: auto;
	max-width: 700px;
	margin: auto
}

.user-area .user-form-content h3 {
	font-size: 30px;
	margin-bottom: 20px;
	position: relative
}

.user-area .user-form-content .user-form .form-group {
	margin-bottom: 20px
}

.user-area .user-form-content .user-form .form-group label {
	font-size: 16px;
	margin-bottom: 12px;
	color: #545252
}

.user-area .user-form-content .user-form .form-group .form-control {
	background: var(--white-color)
}

.user-area .user-form-content .user-form .login-action {
	margin-bottom: 30px
}

.user-area .user-form-content .user-form .login-action .log-rem {
	display: inline-block
}

.user-area .user-form-content .user-form .login-action .log-rem label {
	margin-bottom: 0;
	font-size: 16px
}

.user-area .user-form-content .user-form .login-action .log-rem a {
	color: var(--main-color)
}

.user-area .user-form-content .user-form .login-action .forgot-login {
	display: inline-block;
	float: right
}

.user-area .user-form-content .user-form .default-btn {
	width: 100%;
	margin-bottom: 30px
}

.user-area .user-form-content .or {
	text-align: center;
	font-size: 16px;
	display: block;
	margin-bottom: 30px;
	position: relative;
	z-index: 1
}

.user-area .user-form-content .or::before {
	content: "";
	position: absolute;
	top: 13px;
	left: 0;
	width: 45%;
	height: 1px;
	background-color: #ccc;
	z-index: -1
}

.user-area .user-form-content .or::after {
	content: "";
	position: absolute;
	top: 13px;
	right: 0;
	width: 45%;
	height: 1px;
	background-color: #ccc;
	z-index: -1
}

.user-area .user-form-content .or-login {
	display: block;
	text-align: center;
	border: 1px solid #ccc;
	padding: 15px 30px;
	border-radius: var(--border-radius);
	margin-bottom: 30px;
	font-size: 16px
}

.user-area .user-form-content .or-login i {
	color: #3b5998;
	font-size: 20px;
	position: relative;
	top: 3px
}

.user-area .user-form-content .or-login.google i {
	color: #ed1d24
}

.user-area .user-form-content .or-login:hover {
	background-color: var(--main-color);
	color: var(--white-color);
	border-color: var(--main-color)
}

.user-area .user-form-content .or-login:hover i {
	color: var(--white-color)
}

.user-area .user-form-content .create {
	text-align: center;
	font-size: 16px
}

.user-area .user-form-content .create a {
	color: var(--main-color)
}

.user-area .user-form-content.log-in-width {
	max-width: 930px;
	margin: auto
}

.user-area .user-form-content.register-width {
	max-width: 930px;
	margin: auto
}

.user-area #remember-2 {
	position: relative;
	top: 1px
}

.error-area {
	text-align: center;
	position: relative;
	z-index: 1;
	height: 100%;
	margin-bottom: -100px
}

.error-area .error-content {
	padding-bottom: 138px;
	z-index: 1;
	position: relative
}

.error-area .error-content h1 {
	font-size: 300px;
	line-height: 1;
	font-weight: 700;
	color: var(--main-color)
}

.error-area .error-content h1 .a {
	display: inline-block
}

.error-area .error-content h1 .red {
	color: red;
	display: inline-block;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg)
}

.error-area .error-content h1 .b {
	display: inline-block
}

.error-area .error-content h3 {
	margin: 30px 0 0;
	position: relative;
	color: red
}

.error-area .error-content p {
	margin: 20px 0;
	font-size: 19px;
	color: var(--main-color)
}

.coming-soon-area {
	height: 100vh;
	position: relative
}

.coming-soon-area .coming-soon-content {
	max-width: 800px;
	height: 800px;
	overflow: hidden;
	text-align: center;
	padding: 40px 60px;
	margin-left: auto;
	margin-right: auto;
	background-color: #eaeaea;
	position: relative;
	-webkit-clip-path: polygon(20% 0%, 80% 0%, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0% 80%, 0% 20%);
	clip-path: polygon(20% 0%, 80% 0%, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0% 80%, 0% 20%)
}

.coming-soon-area .coming-soon-content .logo {
	display: inline-block
}

.coming-soon-area .coming-soon-content .circle {
	position: absolute;
	top: 0;
	left: 0;
	right: 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
}

.coming-soon-area .coming-soon-content h2 {
	font-size: 48px;
	margin-top: -10px;
	margin-bottom: 0
}

.coming-soon-area .coming-soon-content #timer {
	margin-top: 40px
}

.coming-soon-area .coming-soon-content #timer div {
	border: 4px solid var(--main-color);
	color: var(--main-color);
	width: 100px;
	height: 105px;
	font-size: 40px;
	font-weight: 800;
	margin-left: 10px;
	margin-right: 10px
}

.coming-soon-area .coming-soon-content #timer div span {
	display: block;
	margin-top: -2px;
	font-size: 17px;
	font-weight: 600
}

.coming-soon-area .coming-soon-content form {
	position: relative;
	max-width: 500px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 50px
}

.coming-soon-area .coming-soon-content form .form-group {
	margin-bottom: 25px;
	width: 100%;
	position: relative
}

.coming-soon-area .coming-soon-content form .form-group .label-title {
	margin-bottom: 0;
	position: absolute;
	display: block;
	left: 0;
	top: 0;
	pointer-events: none;
	width: 100%;
	height: 100%;
	color: var(--heading-color)
}

.coming-soon-area .coming-soon-content form .form-group .label-title i {
	position: absolute;
	left: 0;
	-webkit-transition: var(--transition);
	transition: var(--transition);
	top: 9px;
	font-size: 22px
}

.coming-soon-area .coming-soon-content form .form-group .label-title::before {
	content: "";
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	-webkit-transition: var(--transition);
	transition: var(--transition);
	background: var(--main-color)
}

.coming-soon-area .coming-soon-content form .form-group .input-newsletter {
	border-radius: 0;
	border: 1px solid #eee;
	padding: 10px 20px;
	color: var(--heading-color);
	height: 50px;
	display: block;
	width: 100%;
	-webkit-transition: var(--transition);
	transition: var(--transition);
	font-size: 16px;
	font-weight: 400;
	background-color: var(--white-color)
}

.coming-soon-area .coming-soon-content form .form-group .input-newsletter::-webkit-input-placeholder {
	color: var(--body-color);
	-webkit-transition: var(--transition);
	transition: var(--transition)
}

.coming-soon-area .coming-soon-content form .form-group .input-newsletter:-ms-input-placeholder {
	color: var(--body-color);
	-webkit-transition: var(--transition);
	transition: var(--transition)
}

.coming-soon-area .coming-soon-content form .form-group .input-newsletter::-ms-input-placeholder {
	color: var(--body-color);
	-webkit-transition: var(--transition);
	transition: var(--transition)
}

.coming-soon-area .coming-soon-content form .form-group .input-newsletter::placeholder {
	color: var(--body-color);
	-webkit-transition: var(--transition);
	transition: var(--transition)
}

.coming-soon-area .coming-soon-content form .form-group .input-newsletter:focus {
	border-color: var(--main-color);
	outline: 0!important
}

.coming-soon-area .coming-soon-content form .form-group .input-newsletter:focus::-webkit-input-placeholder {
	color: transparent
}

.coming-soon-area .coming-soon-content form .form-group .input-newsletter:focus:-ms-input-placeholder {
	color: transparent
}

.coming-soon-area .coming-soon-content form .form-group .input-newsletter:focus::-ms-input-placeholder {
	color: transparent
}

.coming-soon-area .coming-soon-content form .form-group .input-newsletter:focus::placeholder {
	color: transparent
}

.coming-soon-area .coming-soon-content form .default-btn {
	border-radius: 0;
	position: relative;
	height: 46px;
	line-height: 0
}

.coming-soon-area .coming-soon-content form .default-btn::before {
	border-radius: 0
}

.coming-soon-area .coming-soon-content form .validation-danger {
	margin-top: 15px;
	color: red
}

.coming-soon-area .coming-soon-content form .validation-success {
	margin-top: 15px
}

.coming-soon-area .coming-soon-content form p {
	margin-bottom: 0;
	margin-top: 20px
}

.coming-soon-area .coming-soon-content .newsletter-form {
	position: relative
}

.coming-soon-area .coming-soon-content .newsletter-form .default-btn {
	position: absolute;
	top: 2px;
	right: 2px
}

.coming-soon-area .online-treatment-shape-1 {
	position: absolute;
	top: 0;
	right: 0
}

.coming-soon-area .online-treatment-shape-2 {
	position: absolute;
	bottom: 0;
	left: 0
}

.blog-details-content .blog-details-img {
	position: relative;
	margin-bottom: 30px
}

.blog-details-content .blog-details-img .date {
	position: absolute;
	top: 30px;
	right: 30px;
	text-align: center;
	background-color: var(--main-color);
	color: var(--white-color);
	padding: 20px;
	font-size: 20px;
	font-weight: 600
}

.blog-details-content .blog-top-content .product {
	color: var(--main-color);
	font-size: 16px;
	display: block;
	margin-bottom: 10px
}

.blog-details-content .blog-top-content h3 {
	font-size: 30px;
	margin-bottom: 20px
}

.blog-details-content .blog-top-content .blog-content .admin {
	padding: 0;
	margin: 0;
	list-style-type: none;
	margin-bottom: 10px
}

.blog-details-content .blog-top-content .blog-content .admin li {
	margin-right: 15px;
	padding-right: 15px;
	position: relative;
	display: inline-block;
	-webkit-transition: var(--transition);
	transition: var(--transition);
	font-size: 16px
}

.blog-details-content .blog-top-content .blog-content .admin li::before {
	content: "";
	position: absolute;
	top: 6px;
	right: -5px;
	width: 1px;
	height: 60%;
	background-color: var(--body-color);
	-webkit-transform: rotate(20deg);
	transform: rotate(20deg)
}

.blog-details-content .blog-top-content .blog-content .admin li i {
	color: var(--main-color);
	display: inline-block;
	margin-right: 5px;
	position: relative;
	top: 1px
}

.blog-details-content .blog-top-content .blog-content .admin li:last-child {
	margin-right: 0;
	padding-right: 0
}

.blog-details-content .blog-top-content .blog-content .admin li:last-child::before {
	display: none
}

.blog-details-content .blog-top-content .blog-content .gap-mb-20 {
	margin-bottom: 20px
}

.blog-details-content .blog-top-content .blog-content .admirer {
	background-color: #f3f3f4;
	padding: 30px 100px;
	text-align: center;
	margin-bottom: 30px;
	margin-top: 30px
}

.blog-details-content .blog-top-content .blog-content .admirer img {
	margin-bottom: 15px;
	border-radius: 50%
}

.blog-details-content .blog-top-content .blog-content .admirer span {
	font-size: 14px;
	margin-bottom: 10px;
	display: block;
	color: var(--main-color)
}

.blog-details-content .blog-top-content .blog-content .admirer h3 {
	font-size: 20px
}

.blog-details-content .blog-top-content .blog-content .admirer p {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 0
}

.blog-details-content .blog-top-content blockquote {
	padding: 30px;
	position: relative;
	background: -webkit-gradient(linear, left top, right top, from(#f6f7ff), to(#f0f8ff));
	background: linear-gradient(to right, #f6f7ff, #f0f8ff);
	border-left: 2px solid var(--main-color);
	padding-left: 130px
}

.blog-details-content .blog-top-content blockquote img {
	border-radius: 50px;
	position: absolute;
	top: 30px;
	left: 30px
}

.blog-details-content .blog-top-content blockquote p {
	font-size: 18px;
	color: var(--heading-color);
	margin-bottom: 20px
}

.blog-details-content .blog-top-content blockquote span {
	position: relative
}

.blog-details-content .blog-top-content blockquote i {
	font-size: 60px;
	color: var(--main-color);
	position: absolute;
	top: 25px;
	left: 0;
	line-height: 1
}

.blog-details-content .tags {
	margin-top: 30px;
	margin-bottom: 40px;
	border-top: 1px solid #e6e6e6;
	border-bottom: 1px solid #e6e6e6;
	padding-top: 10px;
	padding-bottom: 10px
}

.blog-details-content .tags .tag-link {
	padding: 0;
	margin: 0;
	list-style-type: none;
	line-height: 1;
	display: inline-block
}

.blog-details-content .tags .tag-link li {
	display: inline-block;
	margin-right: 15px
}

.blog-details-content .tags .tag-link li.title i {
	color: var(--heading-color);
	font-size: 20px;
	position: relative;
	top: 4px
}

.blog-details-content .tags .tag-link li a {
	font-size: 15px;
	display: inline-block;
	border-radius: var(--border-radius)
}

.blog-details-content .tags .tag-link li a:hover {
	color: var(--main-color)
}

.blog-details-content .tags .tag-link .title {
	font-weight: 600;
	font-size: 15px;
	color: var(--heading-color)
}

.blog-details-content .share-link {
	display: inline-block;
	float: right;
	position: relative;
	padding-bottom: 0
}

.blog-details-content .share-link span {
	font-weight: 600;
	font-size: 14px;
	position: relative;
	top: 0;
	cursor: pointer
}

.blog-details-content .share-link span i {
	font-size: 15px;
	background-color: var(--main-color);
	width: 40px;
	height: 40px;
	line-height: 40px;
	display: inline-block;
	text-align: center;
	color: var(--white-color);
	border-radius: 50px
}

.blog-details-content .share-link .social-icon {
	padding: 0;
	margin: 0;
	list-style-type: none;
	-webkit-transition: var(--transition);
	transition: var(--transition);
	z-index: 1
}

.blog-details-content .share-link .social-icon li {
	display: inline-block;
	margin-right: 10px
}

.blog-details-content .share-link .social-icon li:last-child {
	margin-right: 0
}

.blog-details-content .share-link .social-icon li span {
	color: var(--heading-color);
	position: relative;
	top: -4px
}

.blog-details-content .share-link .social-icon li a i {
	font-size: 18px;
	background-color: #bdbdbd;
	width: 30px;
	height: 30px;
	line-height: 30px;
	border-radius: 50px;
	display: inline-block;
	text-align: center;
	color: var(--white-color);
	-webkit-transition: var(--transition);
	transition: var(--transition)
}

.blog-details-content .share-link .social-icon li a:hover i {
	background-color: var(--main-color)
}

.blog-details-content .comment {
	padding: 0;
	margin: 0;
	list-style-type: none;
	margin-bottom: 40px
}

.blog-details-content .comment li {
	display: inline-block;
	position: relative;
	padding-left: 100px;
	margin-bottom: 40px
}

.blog-details-content .comment li:last-child {
	margin-bottom: 0
}

.blog-details-content .comment li img {
	position: absolute;
	top: 30px;
	left: 0
}

.blog-details-content .comment li h3 {
	font-size: 18px;
	margin-top: -5px;
	margin-bottom: 2px
}

.blog-details-content .comment li span {
	font-size: 14px;
	display: block;
	margin-bottom: 10px
}

.blog-details-content .comment li p {
	margin-bottom: 0
}

.blog-details-content .comment li .read-more {
	position: absolute;
	top: 0;
	right: 30px
}

.blog-details-content .comment li.margin-left {
	margin-left: 30px
}

.blog-details-content .leave-reply {
	background-color: var(--white-color)
}

.blog-details-content .leave-reply h3 {
	margin-bottom: 15px;
	font-size: 25px;
	position: relative
}

.blog-details-content .leave-reply form p {
	margin-bottom: 30px
}

.blog-details-content .leave-reply form .form-group {
	margin-bottom: 30px
}

.blog-details-content .leave-reply form .form-group label {
	margin-bottom: 10px;
	font-weight: 500;
	color: #3e3e3e
}

.blog-details-content .leave-reply form .form-group .form-control {
	background-color: var(--white-color);
	border: 1px solid #ebebeb
}

.blog-details-content .leave-reply form .form-group .form-control::-webkit-input-placeholder {
	color: #ccc
}

.blog-details-content .leave-reply form .form-group .form-control:-ms-input-placeholder {
	color: #ccc
}

.blog-details-content .leave-reply form .form-group .form-control::-ms-input-placeholder {
	color: #ccc
}

.blog-details-content .leave-reply form .form-group .form-control::placeholder {
	color: #ccc
}

.sidebar-widget {
	margin-bottom: 35px;
	padding: 30px;
	background: -webkit-gradient(linear, left top, right top, from(#f6f7ff), to(#f0f8ff));
	background: linear-gradient(to right, #f6f7ff, #f0f8ff)
}

.sidebar-widget h3 {
	font-size: 22px;
	margin-bottom: 15px;
	padding-bottom: 8px;
	position: relative;
	border-bottom: 1px solid #eee;
	padding-left: 10px
}

.sidebar-widget h3::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 3px;
	height: 100%;
	background-color: var(--main-color)
}

.sidebar-widget ul {
	padding: 0;
	margin: 0;
	list-style-type: none
}

.sidebar-widget.search {
	padding: 0
}

.sidebar-widget.search .search-form {
	background: -webkit-gradient(linear, left top, right top, from(#f6f7ff), to(#f0f8ff));
	background: linear-gradient(to right, #f6f7ff, #f0f8ff);
	position: relative
}

.sidebar-widget.search .search-form .form-control {
	border: none;
	height: 70px
}

.sidebar-widget.search .search-form .search-button {
	position: absolute;
	width: 55px;
	height: 55px;
	line-height: 55px;
	top: 8px;
	right: 8px;
	font-size: 20px;
	color: var(--white-color);
	-webkit-transition: var(--transition);
	transition: var(--transition);
	background-color: var(--main-color)
}

.sidebar-widget.search .search-form .search-button:hover {
	background-color: var(--heading-color)
}

.sidebar-widget.categories ul li {
	position: relative;
	margin-bottom: 10px;
	font-size: 15px;
	position: relative;
	font-weight: 600
}

.sidebar-widget.categories ul li a {
	display: block;
	color: var(--heading-color)
}

.sidebar-widget.categories ul li a i {
	font-size: 20px;
	position: relative;
	top: 4px
}

.sidebar-widget.categories ul li a:hover {
	margin-left: 5px;
	color: var(--main-color)
}

.sidebar-widget.categories ul li span {
	float: right;
	position: relative;
	top: 1px
}

.sidebar-widget.categories ul li:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none
}

.sidebar-widget.recent-post ul li {
	margin-bottom: 15px;
	padding-bottom: 20px;
	position: relative;
	padding-left: 90px;
	border-bottom: 1px solid #eee
}

.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: 15px;
	color: var(--heading-color);
	margin-bottom: 10px;
	font-weight: 600;
	display: inline-block
}

.sidebar-widget.recent-post ul li a:hover {
	color: var(--main-color)
}

.sidebar-widget.recent-post ul li a img {
	position: absolute;
	top: 0;
	left: 0;
	max-width: 80px;
	height: 80px
}

.sidebar-widget.recent-post ul li span {
	display: block;
	font-size: 14px
}

.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;
	display: inline-block;
	background-color: var(--white-color)
}

.sidebar-widget.tags ul li a:hover {
	-webkit-transform: translateY(-2px);
	transform: translateY(-2px);
	background-color: var(--main-color);
	color: var(--white-color);
	border-color: var(--main-color)
}

.sidebar-widget.tags ul li:last-child {
	margin-bottom: 0
}

.sidebar-widget .map iframe {
	width: 100%;
	height: 300px
}

.event-details-content .event-details-img {
	position: relative;
	margin-bottom: 25px
}

.event-details-content .event-details-img .date {
	position: absolute;
	top: 30px;
	right: 30px;
	text-align: center;
	background-color: var(--main-color);
	color: var(--white-color);
	padding: 20px;
	font-size: 20px;
	font-weight: 600
}

.event-details-content .event-top-content h3 {
	font-size: 25px;
	margin-bottom: 20px
}

.event-details-content .event-top-content .event-content .admin {
	padding: 0;
	margin: 0;
	list-style-type: none;
	margin-bottom: 15px
}

.event-details-content .event-top-content .event-content .admin li {
	position: relative;
	-webkit-transition: var(--transition);
	transition: var(--transition);
	font-size: 16px;
	margin-bottom: 10px
}

.event-details-content .event-top-content .event-content .admin li i {
	color: var(--main-color);
	display: inline-block;
	margin-right: 5px;
	position: relative;
	top: 1px
}

.event-details-content .event-top-content .event-content .admin li:last-child {
	margin-bottom: 0
}

.event-details-content .event-top-content .event-content .gap-mb-20 {
	margin-bottom: 20px
}

.single-speakers {
	margin-bottom: 30px
}

.single-speakers .speaker-title {
	text-align: center;
	background-color: var(--white-color);
	-webkit-box-shadow: var(--box-shadow);
	box-shadow: var(--box-shadow);
	padding: 15px 20px
}

.single-speakers .speaker-title h4 {
	font-size: 18px;
	margin-bottom: 5px
}

.single-speakers .speaker-title span {
	font-size: 15px
}

.choose-us-from-bg h2 {
	font-size: 40px;
	color: var(--white-color);
	margin-bottom: 30px;
	text-align: center;
	margin-right: -9px
}

.choose-us-from-bg label {
	margin-bottom: 12px;
	color: var(--heading-color);
	display: block
}

.choose-us-from-bg .form-group {
	margin-bottom: 25px;
	position: relative
}

.choose-us-from-bg .form-group .form-control {
	color: var(--heading-color);
	background-color: #fff
}

.choose-us-from-bg .form-group .form-control::-webkit-input-placeholder {
	color: var(--body-color);
	font-size: 15px
}

.choose-us-from-bg .form-group .form-control:-ms-input-placeholder {
	color: var(--body-color);
	font-size: 15px
}

.choose-us-from-bg .form-group .form-control::-ms-input-placeholder {
	color: var(--body-color);
	font-size: 15px
}

.choose-us-from-bg .form-group .form-control::placeholder {
	color: var(--body-color);
	font-size: 15px
}

.choose-us-from-bg .form-group .form-control:focus {
	border-color: var(--main-color)
}

.choose-us-from-bg .default-btn {
	width: 100%
}

.causes-details-content .event-details-img {
	margin-bottom: 30px
}

.causes-details-content .donation-wrap h4 {
	font-size: 18px;
	margin-bottom: 10px
}

.causes-details-content .donation-wrap ul {
	padding: 0;
	margin: 0;
	list-style: none;
	margin-bottom: 20px
}

.causes-details-content .donation-wrap ul li {
	display: inline-block;
	margin-right: 30px
}

.causes-details-content .donation-wrap ul li:last-child {
	margin-right: 0
}

.causes-details-content .donation-wrap .mb-10 {
	margin-bottom: 15px
}

.causes-details-content .donation-wrap .form-group {
	position: relative
}

.causes-details-content .donation-wrap .form-group .default-btn {
	position: absolute;
	top: 0;
	right: 0;
	height: 55px
}

.causes-details-content .single-causes h3 {
	font-size: 30px
}

.causes-details-content .single-causes .bar-percent {
	right: 0
}

.causes-details-content .single-causes:hover {
	-webkit-transform: translateY(0);
	transform: translateY(0)
}

.causes-details-content .single-causes .bar-1 {
	margin-top: 0;
	margin-bottom: 0
}

.causes-details-content .single-causess {
	margin-bottom: 20px
}

.causes-details-content .single-causes .bar::before {
	background-color: var(--white-color)
}

.causes-details-content .causes-content h1,
.causes-details-content .causes-content h2,
.causes-details-content .causes-content h3,
.causes-details-content .causes-content h4,
.causes-details-content .causes-content h5,
.causes-details-content .causes-content h6 {
	margin-bottom: 20px
}

.widget-sidebar .owl-theme .owl-nav {
	margin-top: 0;
	position: absolute;
	top: -52px;
	right: 0
}

.widget-sidebar .owl-theme .owl-nav .owl-prev,
.widget-sidebar .owl-theme .owl-nav .owl-next {
	background-color: transparent
}

.widget-sidebar .owl-theme .owl-nav .owl-prev i,
.widget-sidebar .owl-theme .owl-nav .owl-next i {
	font-size: 20px
}

.widget-sidebar .owl-theme .owl-nav .owl-prev i:hover,
.widget-sidebar .owl-theme .owl-nav .owl-next i:hover {
	color: var(--main-color)
}

.widget-sidebar .single-causes {
	margin-bottom: 0
}

.widget-sidebar .single-causes h3 {
	padding-left: 0;
	border-bottom: none;
	padding-bottom: 0;
	font-size: 20px
}

.widget-sidebar .single-causes h3::before {
	display: none
}

.widget-sidebar .single-causes .bar-1,
.widget-sidebar .single-causes .my-skills {
	margin-bottom: 0
}

.preloader {
	width: 100%;
	height: 100%;
	position: fixed;
	background-color: var(--main-color);
	top: 0;
	left: 0;
	z-index: 99999
}

.preloader .lds-ripple {
	position: relative;
	width: 55px;
	height: 55px;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%)
}

.preloader .lds-ripple div {
	position: absolute;
	border: 2px dashed #fff;
	opacity: 1;
	-webkit-animation: lds-ripple 1s cubic-bezier(0, .2, .8, 1) infinite;
	animation: lds-ripple 1s cubic-bezier(0, .2, .8, 1) infinite
}

.preloader .lds-ripple div:nth-child(2) {
	-webkit-animation-delay: -.5s;
	animation-delay: -.5s
}

.preloader::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 60%;
	z-index: -1;
	background: var(--main-color);
	-webkit-transition: all ease .5s;
	transition: all ease .5s
}

.preloader::after {
	left: auto;
	right: 0
}

.preloader.preloader-deactivate {
	visibility: hidden
}

.preloader.preloader-deactivate::after {
	width: 0
}

.preloader.preloader-deactivate::before {
	width: 0
}

.preloader.preloader-deactivate .loader {
	opacity: 0;
	visibility: hidden
}

@-webkit-keyframes lds-ripple {
	0% {
		top: 28px;
		left: 28px;
		width: 0;
		height: 0;
		opacity: 1
	}
	100% {
		top: -1px;
		left: -1px;
		width: 58px;
		height: 58px;
		opacity: 0
	}
}

@keyframes lds-ripple {
	0% {
		top: 28px;
		left: 28px;
		width: 0;
		height: 0;
		opacity: 1
	}
	100% {
		top: -1px;
		left: -1px;
		width: 58px;
		height: 58px;
		opacity: 0
	}
}

.go-top {
	position: fixed;
	cursor: pointer;
	right: 3%;
	top: 87%;
	background-color: var(--main-color);
	z-index: 4;
	width: 40px;
	text-align: center;
	height: 42px;
	line-height: 42px;
	-webkit-transform: scale(0);
	transform: scale(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: var(--white-color);
	-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: var(--main-color);
	opacity: 0;
	visibility: hidden;
	-webkit-transition: .5s;
	transition: .5s
}

.go-top:hover {
	color: var(--white-color);
	background-color: var(--main-color)
}

.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: var(--white-color)
}

.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: 84%;
	-webkit-transform: scale(1);
	transform: scale(1)
}

.go-top.style-three {
	background-color: var(--optional-color)
}

.video-btn {
	display: inline-block;
	width: 100px;
	height: 100px;
	line-height: 100px;
	text-align: center;
	border-radius: 0;
	color: var(--main-color);
	position: relative;
	top: 3px;
	z-index: 1;
	background-color: rgba(247, 148, 29, .9);
	border-radius: 50%;
	-webkit-transition: var(--transition);
	transition: var(--transition)
}

.video-btn i {
	font-size: 60px;
	color: var(--white-color);
	position: absolute;
	top: 0;
	left: 0;
	-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;
	width: 100%;
	height: 100%
}

.video-btn::after,
.video-btn::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	z-index: -1;
	bottom: 0;
	left: 0;
	border-radius: 0;
	border-radius: 50%;
	-webkit-transition: var(--transition);
	transition: var(--transition);
	-webkit-animation: ripple 1.6s ease-out infinite;
	animation: ripple 1.6s ease-out infinite;
	background-color: rgba(247, 148, 29, .9)
}

.video-btn:hover {
	background-color: rgba(27, 27, 27, .9)
}

.video-btn:hover::before,
.video-btn:hover::after {
	background-color: rgba(27, 27, 27, .9)
}

@-webkit-keyframes ripple {
	0%,
	35% {
		-webkit-transform: scale(0);
		transform: scale(0);
		opacity: 1
	}
	50% {
		-webkit-transform: scale(1.5);
		transform: scale(1.5);
		opacity: .8
	}
	100% {
		opacity: 0;
		-webkit-transform: scale(2);
		transform: scale(2)
	}
}

@keyframes ripple {
	0%,
	35% {
		-webkit-transform: scale(0);
		transform: scale(0);
		opacity: 1
	}
	50% {
		-webkit-transform: scale(1.5);
		transform: scale(1.5);
		opacity: .8
	}
	100% {
		opacity: 0;
		-webkit-transform: scale(2);
		transform: scale(2)
	}
}

.pagination-area {
	text-align: center;
	margin-top: 10px
}

.pagination-area .page-numbers {
	width: 45px;
	height: 45px;
	line-height: 45px;
	color: var(--heading-color);
	text-align: center;
	display: inline-block;
	position: relative;
	margin-left: 3px;
	margin-right: 3px;
	font-size: 17px;
	background-color: #f9fbfe;
	-webkit-box-shadow: var(--box-shadow);
	box-shadow: var(--box-shadow);
	border: 1px solid #ebebeb
}

.pagination-area .page-numbers:hover {
	color: var(--white-color);
	border-color: var(--main-color);
	background-color: var(--main-color)
}

.pagination-area .page-numbers i {
	font-size: 20px
}

.pagination-area .page-numbers.next,
.pagination-area .page-numbers.prev {
	top: 3px
}

.pagination-area .page-numbers.current {
	color: var(--white-color);
	border-color: var(--main-color);
	background-color: var(--main-color)
}

.main-default-content h3 {
	margin-bottom: 15px;
	font-size: 25px
}