/*
Template Name: Omnicast - Podcast HTML template
Author: 
Support: 
Description: Responsive agency HTML template
Version: 1.0.0

Table of contents
====================
TODO: Do correction here

01.header area css
02.hero area css
03.audio area css
04.episode area css
05.meet the host area css
06.subscribe & flow araa css
07.client feed back area css
08.corporate sponsor area css
09.beacome a sponsor area css
10.trust user area css
11.blog area css
12.newslatter area css
13.footer area css
14.podcast page css
15.single podcust page css
16.shop page css
17.shop single page css
18.blog page css
19.donate page css
20.contact us page css
21. Back to top

*/

/* ========== Base CSS ============ */
* {
	margin: 0;
	padding: 0;
	list-style: none;
}

html,
body {
	scroll-behavior: smooth;
	font-family: 'Lexend Deca', sans-serif;
}

img {
	max-width: 100%;
}
.logo {
	width: 150px;
}

ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
a {
	text-decoration: none;
	-webkit-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}
.al-center {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.wrapper {
	overflow: hidden;
}
.mobile-menu-area {
	display: none;
}
input::placeholder, textarea::placeholder {
	color: #cccccc;
}

/* search bar css */
.search-popup {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100vh;
	z-index: 999;
	background-color: rgba(0, 0, 0, 0.9);
	-webkit-transition: all 1500ms cubic-bezier(0.86, 0, 0.07, 1);
	-o-transition: all 1500ms cubic-bezier(0.86, 0, 0.07, 1);
	transition: all 1500ms cubic-bezier(0.86, 0, 0.07, 1);
	-webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
	-o-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
	transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
	-webkit-transform: translateY(-100%);
	-ms-transform: translateY(-100%);
	transform: translateY(-100%);
}

.search-popup .close-search {
	position: absolute;
	right: 25px;
	top: 25px;
	left: auto;
	width: auto;
	height: auto;
	margin: 0px;
	border: none;
	background-color: transparent;
	color: #fff;
	font-size: 24px;
	outline: none;
	-webkit-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
}

.search-popup .close-search:hover {
	color: #ff2d64;
}

.search-popup form {
	position: absolute;
	max-width: 700px;
	top: 50%;
	left: 15px;
	right: 15px;
	margin: -35px auto 0;
	-webkit-transform: scaleX(0);
	-ms-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-transform-origin: center;
	-ms-transform-origin: center;
	transform-origin: center;
	-webkit-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}

.search-popup .form-group input[type='search'] {
	position: relative;
	display: block;
	font-size: 20px;
	line-height: 26px;
	color: #fff;
	font-weight: 400;
	height: 70px;
	width: 100%;
	border: none;
	outline: none;
	padding: 10px 25px;
	padding-right: 65px;
	background-color: transparent;
	-webkit-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
	text-transform: capitalize;
	border-bottom: 2px solid #d1d1d1;
}

.search-popup .form-group button {
	position: absolute;
	right: 30px;
	top: 0;
	height: 70px;
	background-color: transparent;
	border: none;
	text-align: center;
	font-size: 26px;
	padding: 0;
	color: #fff;
}

.search-popup .form-group button:hover {
	color: #ff2d64;
	transition: 0.3s;
}

.search-active .search-popup form {
	-webkit-transform: scaleX(1);
	-ms-transform: scaleX(1);
	transform: scaleX(1);
	-webkit-transition-delay: 1200ms;
	-o-transition-delay: 1200ms;
	transition-delay: 1200ms;
}

.search-active .search-popup {
	-webkit-transform: translateY(0%);
	-ms-transform: translateY(0%);
	transform: translateY(0%);
}

/* header area start */
.header-area {
	padding: 20px 0;
	position: relative;
	z-index: 9;
	-webkit-box-shadow: 0 0 5px #ccc;
	box-shadow: 0 0 5px #ccc;
}

.all-menu {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: relative;
    justify-content: space-between;
	z-index: 1;
    height: 100%;
}

.left-menu li {
	display: inline-block;
	padding-right: 30px;
}

.right-mau {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding-left: 95px;
}

.left-menu li a {
	font-size: 16px;
	font-weight: 300;
	line-height: normal;
	color: #000;
	position: relative;
	z-index: 1;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	/* TODO: Add line height */
}

.left-menu :not(.submenu) > li > a::after {
	position: absolute;
	left: 0;
	bottom: -5px;
	height: 2px;
	width: 0;
	content: '';
	background: #ff2d64;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	opacity: 0;
	visibility: hidden;
}

.left-menu li a:hover::after,
.left-menu li a.current-page::after {
	opacity: 1;
	visibility: visible;
	width: 100%;
}

.left-menu li a:hover,
.left-menu li a.current-page {
	color: #ff2d64;
}

.right-mau li a {
	font-weight: 300;
	font-size: 16px;
	color: #000;
}

.right-mau li a.donate {
	display: block;
	background: #ff2d64;
	color: #fff;
	padding: 12px 24px;
	border-radius: 100px;
	text-align: center;
	line-height: normal;
}

.right-mau li a.donate:hover {
	background: #000;
}

.search-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
	font-size: 16px;
	color: #1a1a1b99;
	height: 43px;
	width: 43px;
	background: #ffff;
	line-height: 50px;
	text-align: center;
	border-radius: 50%;
	-webkit-box-shadow: 0px 0px 5px rgb(255 184 202);
    box-shadow: 0px 0px 5px rgb(255 184 202);
	transition: 0.3s ease-in-out;
}

.search-bar a:hover {
	background: #000;
	color: #fff;
}

.search-bar {
	margin-left: 20px;
}

ul.submenu {
	position: absolute;
	text-align: left;
	top: 75px;
	min-width: 200px;
	background-color: #fff;
	-webkit-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
	opacity: 0;
	visibility: hidden;
	border-radius: 6px;
    box-shadow: 0px 0px 5px rgb(255 184 202);
}

ul.submenu li {
	display: block;
	margin: 0;
    padding: 9px 0;
}

ul.submenu li:not(:last-child) {
    border-bottom: 1px solid #ddd
}

ul.submenu li a {
	padding: 5px 20px;
	display: inline-block;
	color: #000;
}

ul.submenu li a:hover {
	color: #ff2d64;
}

.left-menu ul li:hover ul.submenu {
	top: 55px;
	opacity: 1;
	visibility: visible;
}

.sticky {
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	width: 100%;
	height: auto;
	-webkit-animation: 300ms running fadeInDown;
	animation: 500ms running fadeInUp;
	-webkit-animation-name: slideInDown;
	animation-name: slideInDown;
	z-index: 99;
	background: #fff;
}

.mean-container a.meanmenu-reveal {
	margin-top: 0;
	position: relative;
	float: right;
}

.mean-container .mean-nav {
	margin-top: 0;
}

/* hero area */
.item-bg-1 {
	background-image: url(../images/home/hero-bg-1.png);
	background-size: cover;
}

.item-bg-2 {
	background-image: url(../images/home/hero-bg-2.png);
	background-size: cover;
}
.hero-content h2 {
	font-size: 60px;
	color: #fff;
	font-weight: 900;
	line-height: normal;
	text-transform: uppercase;
	margin-bottom: 22px;
	opacity: 0;
}

.hero-content p {
	color: #fff;
	font-size: 22px;
	font-weight: 300;
	line-height: 32px;
	margin-bottom: 35px;
	opacity: 0;
}

a.lst-btn {
	background: #ff2d64;
	color: #fff;
	display: inline-block;
	border-radius: 30px;
	padding: 15px 40px;
	opacity: 0;
}

a.lst-btn:hover {
	background: #FE8A60;
}

.hero-content {
	padding: 170px 0;
}
/* audio area */
.banner-bottom-player {
	margin-top: -80px;
	z-index: 9;
	position: relative;
}
.audio-area {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	background: #ff2d64;
	border-radius: 6px;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.left-audio-part {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 30px;
}

.right-audio {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-right: 30px;
	gap: 30px;
}

.left-audio-part img {
	height: 140px;
	width: 160px;
	border-radius: 6px;
}

.left-audio-content h4 {
	font-size: 20px;
	font-weight: 700;
	line-height: 32px;
	text-transform: capitalize;
	margin-bottom: 0;
	color: #fff;
}

.left-audio-content p {
	margin-bottom: 0;
	font-size: 18px;
	font-weight: 300;
	text-transform: capitalize;
	line-height: 32px;
	color: #fff;
}

.full-audio-are {
	background: #fff;
	padding: 44px 47px;
	border-radius: 6px;
	-webkit-box-shadow: 0px 20px 60px 0px rgba(255, 184, 202, 0.34);
	box-shadow: 0px 20px 60px 0px rgba(255, 184, 202, 0.34);
}

.audio-area-btn li {
	display: inline-block;
}

.audio-area-btn li a {
	font-size: 12px;
	font-weight: 700;
	line-height: normal;
	color: #fff;
	padding: 7px 12px;
	border-radius: 50px;
}

.audio-area-btn li a svg {
	height: 14px;
	width: 14px;
	color: #fff;
	margin-right: 5px;
}

a.share-btn {
	margin-left: 10px;
	border: 1px solid;
	padding: 10px;
}

a.share-btn:hover {
	background: #000;
	border-color: #000;
}

.swiper-slide-active .hero-content h2 {
	animation: fade-in-down;
	animation-duration: 0.7s;
	animation-timing-function: linear;
	animation-delay: 0.5s;
    animation-fill-mode: forwards;
}

.swiper-slide-active .hero-content p {
	animation: fade-in-down;
	animation-duration: 0.7s;
	animation-timing-function: linear;
	animation-delay: 1s;
    animation-fill-mode: forwards;
}

.swiper-slide-active .hero-content a.lst-btn {
	animation: fade-in-up;
	animation-duration: 0.7s;
	animation-timing-function: linear;
	animation-delay: 1.3s;
    animation-fill-mode: forwards;
}

/* episodes area css */
section.episode {
	position: relative;
	z-index: 1;
	padding-top: 105px;
}

img.episode-ani-1 {
	position: absolute;
	bottom: 25px;
}

img.episode-ani-2 {
	position: absolute;
	right: 0;
	top: 160px;
}

.episode-tittle {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-bottom: 33px;
}

a.view-all {
	background: #ff2d64;
	border-radius: 16px;
	color: #fff;
	padding: 5px 20px;
	font-size: 18px;
	font-weight: 300;
	line-height: normal;
}

.left-episod-content h2 {
	font-size: 42px;
	font-weight: 700;
	line-height: normal;
	margin-bottom: 20px;
}

.left-episod-content p {
	font-size: 18px;
	font-weight: 300;
	line-height: 32px;
	text-transform: capitalize;
	color: rgba(0, 0, 0, 0.8);
	margin-bottom: 0;
}

a.view-all:hover {
	background: #000;
}
.episode-img {
	overflow: hidden;
}

.episode-img img {
	height: 214px;
	-webkit-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}

.single-episode-item {
	margin-bottom: 25px;
}

.single-episode-item:hover .episode-img img {
	-webkit-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}

.bottom-item .single-episode-item {
	margin: 0;
}

.single-episode-item h2 {
	font-size: 20px;
	font-weight: 700;
	line-height: 32px;
	text-transform: capitalize;
	margin-bottom: 6px;
	-webkit-transition: 0.5s ease-in-out;
	-o-transition: 0.5s ease-in-out;
	transition: 0.5s ease-in-out;
}

.single-episode-item:hover h2 {
	color: #ff2d64;
}

.episode-all-content {
	padding: 22px;
	-webkit-box-shadow: 0px 25px 40px 0px rgba(255, 94, 117, 0.1);
	box-shadow: 0px 25px 40px 0px rgba(255, 94, 117, 0.1);
}

.episode-top-content a {
	color: #000;
}

.episode-top-content p {
	font-size: 16px;
	font-weight: 300;
	line-height: 26px;
	text-transform: capitalize;
	color: #000;
	opacity: 0.6;
	margin-bottom: 5px;
}

.rating {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 15px;
	margin-bottom: 8px;
}

.rating p {
	margin-bottom: 0;
	font-size: 12px;
	font-weight: 300;
	line-height: normal;
}

.episode-bottom {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.episode-bottom h4 {
	font-size: 15px;
	font-weight: 400;
	line-height: normal;
	color: #000;
	margin-bottom: 0;
}

a.episode-play {
	display: block;
	height: 24px;
	width: 24px;
	background: #ff2d64;
	text-align: center;
	line-height: 24px;
	border-radius: 50%;
	transition: 0.3s;
}

a.episode-play:hover {
	background: #000;
	transition: 0.3s;
}

.episode-play-btn a svg {
	height: 16px;
	width: 10px;
	line-height: 10px;
}

.episode-play-btn a svg {
	font-size: 15px;
	color: #fff;
}

.episode-bottom p {
	font-size: 15px;
	font-weight: 500;
	line-height: normal;
	text-transform: capitalize;
	color: #000;
	margin-bottom: 0;
}
/* meet the host area */
img.host-ani-left {
	position: absolute;
	top: 25%;
}

img.host-ani-right {
	position: absolute;
	right: 0;
	bottom: 14%;
}

section.meet-the-host {
	padding: 105px 0;
	background: #0101010a;
	margin-top: 105px;
	position: relative;
}

.section-tittle {
	text-align: center;
	margin-bottom: 35px;
}

.imgApp {
	width: 250px;
	padding-top: 25px;
}

.tituloapp {
	text-align: center;	
    font-size: 22px;
    font-weight: 700;
    line-height: normal;
}

.section-tittle h2 {
	margin-bottom: 16px;
	color: #000;
	font-size: 42px;
	font-weight: 700;
	line-height: normal;
}

.section-tittle p {
	font-size: 18px;
	font-weight: 300;
	text-transform: capitalize;
	line-height: 32px;
	margin-bottom: 0;
	color: rgba(0, 0, 0, 0.8);
}
.meet-the-host-slider.owl-carousel .owl-nav.disabled {
	display: block;
}

.meet-the-host-slider .owl-nav div {
	position: absolute;
	right: 0;
	top: -100px;
	width: 40px;
	height: 40px;
	line-height: 37px;
	font-size: 20px;
	text-align: center;
	color: #ff2d64;
	border: 1px solid #ff2d64;
	border-radius: 50%;

	transition: all 0.3s ease-in-out;
}
.meet-the-host-slider .owl-nav div:hover {
	background-color: #ff2d64;
	color: #fff;
}

.meet-the-host-slider.owl-carousel .owl-nav .owl-prev {
	right: 50px;
}

.host-img > .imgcel {
	width: 50%;
	height: auto;
	/* border-radius: 129px; */
	/* padding-bottom: 20px; */
}

.host-img {
	/* border: 1px solid var(--Linear, #05045d); */
	border-radius: 100px;
	height: auto;
	width: auto;
	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;
	margin: 0 auto;
	margin-bottom: 20px;
	/* border-bottom: 3px solid #05045d; */
	-webkit-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
	padding-left: 120px;
}

.host-content h4 {
	font-size: 20px;
	font-weight: 700;
	line-height: 32px;
	text-transform: capitalize;
	margin-bottom: 0;
	color: #000;
	-webkit-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}

.host-content h6 {
	font-size: 16px;
	font-weight: 200;
	line-height: 32px;
	text-transform: capitalize;
	margin-bottom: 4px;
	-webkit-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}

.host-content p {
	color: #000;
	font-size: 16px;
	font-weight: 300;
	line-height: 26px;
	text-transform: capitalize;
	opacity: 0.6;
	margin-bottom: 22px;
}

.social-link li {
	display: inline-block;
	padding-left: 10px;
}

.social-link a {
	height: 25px;
	display: block;
	width: 25px;
	background: #333333;
	text-align: center;
	border-radius: 50%;
}

.social-link a svg {
	height: 15px;
	width: 15px;
	color: #fff;
	line-height: 12px;
}

.social-link li:first-child {
	padding: 0;
}

.single-host-item {
	text-align: center;
}
.single-host-item:hover .host-img {
	border-bottom: 3px solid #ff2d64;
}
.single-host-item:hover .host-content h4,
.single-host-item:hover .host-content h6 {
	color: #ff2d64;
}
.single-host-item:hover .social-link a {
	background: #ff2d64;
	transition: 0.3s;
}
.single-host-item:hover .social-link a:hover {
	background: #fe8a60;
	transition: 0.3s;
}
.episode-play-btn a svg {
	height: 16px;
	width: 10px;
	line-height: 10px;
}

/* subscribe and follow area css */

section.subscribe {
	padding-top: 105px;
	position: relative;
}

img.subscribe-left {
	top: 50%;
	position: absolute;
	left: 0;
}

img.subscribe-right {
	position: absolute;
	right: 70px;
	top: 50%;
}

.subscribe-bg {
	background: #ff2d64;
	border-radius: 6px;
	padding: 55px;
}

.subscribe-services-ani {
	position: relative;
	z-index: 1;
}

img.subscribe-srvices-left {
	position: absolute;
	left: 16%;
	top: 0;
}

img.subscribe-srvices-right {
	position: absolute;
	right: 16%;
}

section.subscribe .section-tittle h2 {
	color: #fff;
}

section.subscribe .section-tittle p {
	color: #fff;
}

.all-services-item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 30px;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.single-servies-item {
	background: #fff;
	border-radius: 20px;
	width: 210px;
	height: 190px;
	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;
}

.single-servies-item .sevices-img img {
	transition: 0.3s;
}

.single-servies-item:hover .sevices-img img {
	transform: scale(1.1);
	transition: 0.3s;
}

.blog-content h4 {
	font-size: 20px;
	font-weight: 700;
	line-height: 36px;
	color: #232635;
	letter-spacing: -0.24px;
	margin-bottom: 10px;
	-webkit-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}

/* client feedback area */

section.client-feedback {
	padding-top: 105px;
	position: relative;
}
img.client-left-ani {
	position: absolute;
	left: 60px;
	bottom: 12%;
}

img.client-right-ani {
	position: absolute;
	right: 70px;
	top: 33%;
}

.single-feedback-item p {
	color: rgba(111, 112, 121, 0.6);
	font-size: 18px;
	font-weight: 300;
	line-height: 30px;
	margin-bottom: 32px;
}

.single-feedback-item p span {
	display: inline-block;
	margin-right: 20px;
}

.single-feedback-item {
	text-align: center;
	border: 1px solid #ffa872;
	border-radius: 15px;
	padding: 29px 23px;
}

.client-img img {
	height: 100px;
	width: 100px;
	-o-object-fit: cover;
	object-fit: cover;
	border-radius: 50%;
	margin-bottom: 0;
}

.single-feedback-item h4 {
	font-size: 16px;
	font-weight: 700;
	line-height: normal;
	text-transform: capitalize;
	color: #232635;
	margin-bottom: 10px;
}

.single-feedback-item h6 {
	color: #ff2d64;
	font-size: 12px;
	font-weight: 300;
	line-height: normal;
	text-transform: capitalize;
	margin-bottom: 15px;
}

.client-img {
	margin-bottom: 5px;
}
.client-feedback-slider.owl-carousel .owl-item img {
	display: inline-block;
}
.client-feedback-slider .owl-dots {
	text-align: center;
	margin-top: 15px;
	display: block !important;
}

.client-feedback-slider .owl-dots div {
	height: 14px;
	width: 14px;
	background-color: #d9d9d9;
	border-radius: 50%;
	display: inline-block;
	margin: 0px 7px;
	position: relative;
	z-index: 1;
	-webkit-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}

.client-feedback-slider .owl-dots div.active {
	border: 2px solid #d9d9d9;
	background-color: #ff2d64;
}

.client-feedback-slider .owl-item.active.center {
	border-bottom: 5px solid #ff2d64;
	border-radius: 20px;
}

/* corporate sponsor area */

section.corporate-sponsor {
	/* padding-top: 105px; */m
}
.corporate-slider {
	border-bottom: 1px solid #d9d9d9;
	padding-bottom: 30px;
	padding-top: 22px;
}

.single-corporate-item img {
	width: 100px;
}

.single-corporate-item {
    display: flex;
    justify-content: center;
}

/* become a sponsor */

section.become-sponsor {
	padding-top: 210px;
}

.become-sponsor-box {
	width: 635px;
	background: #fff;
	border-radius: 25px;
	-webkit-box-shadow: 0px 20px 60px 0px rgba(255, 184, 202, 0.34);
	box-shadow: 0px 20px 60px 0px rgba(255, 184, 202, 0.34);
	padding: 60px 70px;
	text-align: center;
	position: absolute;
	top: -22%;
	left: 25%;
}

.become-sponsor-box h2 {
	font-size: 42px;
	font-weight: 700;
	line-height: normal;
	margin-bottom: 20px;
}

.become-sponsor-box p {
	margin-bottom: 35px;
	color: rgba(0, 0, 0, 0.8);
	font-size: 18px;
	font-weight: 300;
	line-height: 32px;
	text-transform: capitalize;
}

a.lets-talk {
	display: inline-block;
	background: #ff2d64;
	color: #fff;
	border-radius: 35px;
	font-size: 18px;
	font-weight: 700;
	line-height: normal;
	padding: 18px 42px;
}

.become-sponsor-iner {
	position: relative;
	z-index: 1;
}

.become-sponsor-iner img {
	border-radius: 6px;
}

a.lets-talk:hover {
	background: #000;
}
/* trust user area */
section.trust-user {
	position: relative;
	z-index: 1;
	padding-top: 105px;
}

img.trust-ani-left {
	position: absolute;
	top: 70%;
}

img.trust-ani-right {
	position: absolute;
	top: 70%;
	right: 13%;
}
.trust-user-inner {
	background-image: url(../images/home/map.png);
	background-repeat: no-repeat;
	background-position: center;
	width: 745px;
	margin: 0 auto;
}

.single-count-item h2 {
	font-size: 52px;
	font-weight: 700;
	line-height: 32px;
	color: #000;
	margin-bottom: 20px;
}

.single-count-item p {
	font-size: 20px;
	font-weight: 400;
	line-height: 32px;
	margin-bottom: 20px;
}

.single-count-item sub {
	bottom: 8px;
	left: -15px;
}

.single-count-item {
	text-align: center;
	border-bottom: 1px solid #fc8496;
}

.truser-counter {
	padding-top: 60px;
}

/* omnicast blog area */

section.omnicast-blog {
	padding-top: 105px;
}

.single-blog-item {
	margin-bottom: 25px;
}

.single-blog-item:hover .blog-img img {
	-webkit-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}

.blog-img {
	overflow: hidden;
}

.blog-img img {
	border-radius: 6px 6px 0px 0px;
	-webkit-transition: 0.5s ease-in-out;
	-o-transition: 0.5s ease-in-out;
	transition: 0.5s ease-in-out;
}

.blog-content h4 {
	font-size: 24px;
	font-weight: 700;
	line-height: 36px;
	color: #232635;
	letter-spacing: -0.24px;
	margin-bottom: 13px;
	-webkit-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}

.single-blog-item a:hover h4 {
	color: #ff2d64;
}

.blog-content p {
	font-size: 16px;
	font-weight: 300;
	line-height: 28px;
	letter-spacing: -0.16px;
	color: #494949;
	margin-bottom: 20px;
}

.date-min {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.date-min p a {
	font-size: 14px;
	font-weight: 300;
	line-height: 28px;
	color: rgba(0, 0, 0, 0.5);
	letter-spacing: -0.14px;
	margin-bottom: 0;
}

.date-min p a:hover {
	color: #ff2d64;
}

.blog-content {
	padding: 20px 20px 20px 20px;
	border: 1px solid #e0e0e0;
	border-radius: 0px 0px 6px 6px;
}

.blog-btn {
	text-align: center;
	padding-top: 55px;
}

a.see-more {
	font-size: 18px;
	font-weight: 600;
	line-height: normal;
	background: #ff2d64;
	color: #fff;
	border-radius: 30px;
	letter-spacing: -0.18px;
	padding: 18px 65px;
	display: inline-block;
}

a.see-more:hover {
	background: #000;
}

/* newsletter area */

section.newsletter1 {
	padding-top: 10px;
	/* position: relative; */
	top: 90px;
}

section.newsletter {
	padding-top: 10px;
	position: relative;
	top: 90px;
}

img.newsletter-left-ani {
	position: absolute;
	top: 30%;
	left: 100px;
}

img.newsletter-right-ani {
	position: absolute;
	right: 100px;
	top: 30%;
}

.newsletter-inner {
	background: #05045d;
	border-radius: 15px;
	padding: 14px 24px;
}

.newsletter-inner-left h2 {
	font-size: 38px;
	font-weight: 700;
	line-height: normal;
	color: #fff;
	margin-bottom: 12px;
}

.newsletter-inner-left p {
	font-size: 18px;
	font-weight: 300;
	line-height: 32px;
	text-transform: capitalize;
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 0;
	padding-right: 20px;
}

.newsletter-form-wrap input {
	display: inline-block;
	width: 100%;
	border-radius: 35px;
	outline: none;
	padding: 20px 40px;
	border: none;
}

.newsletter-form-wrap input[type='search']::placeholder {
	color: #c8c8c8;
}

.newsletter-form-wrap button {
	padding: 15px 50px;
	border: none;
	border-radius: 35px;
	display: block;
	background: #ff2d64;
	color: #fff;
	position: absolute;
	top: 5px;
	right: 8px;
	transition: 0.5s ease-in-out;
}

.newsletter-form-wrap button:hover {
	background: #000;
}

.newsletter-form-wrap {
	position: relative;
	z-index: 1;
}

/* footer area start */

.main-footer-item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding-bottom: 40px;
	border-bottom: 1px solid;
}

.logo-part p {
	width: 236px;
	font-size: 16px;
	font-weight: 300;
	line-height: 28px;
	letter-spacing: -0.16px;
	margin-bottom: 0;
	color: #fff;
}

.main-footer-item h4 {
	font-size: 22px;
	font-weight: 700;
	line-height: normal;
	letter-spacing: 2.2px;
	color: #fff;
	margin-bottom: 30px;
}

.main-footer-item li a {
	display: inline-block;
	color: rgba(255, 255, 255, 0.85);
	font-size: 18px;
	font-weight: 300;
	line-height: 28px;
}

.main-footer-item li a:hover {
	color: #ff2d64;
}

.social-medial {
	width: 208px;
}

.social-medial p {
	margin-bottom: 26px;
	color: #fff;
	font-size: 16px;
	font-weight: 300;
	line-height: 28px;
	letter-spacing: -0.16px;
}

footer.footer-area {
	background: #060624;
	padding-top: 210px;
}

a.footer-logo {
	margin-bottom: 20px;
	display: inline-block;
}

.social-medial .social-link li a {
	line-height: 25px;
	-webkit-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}

.social-medial .social-link li a:hover {
	background: #ff2d64;
}

.copyright {
	text-align: center;
	padding: 20px 0;
}

.copyright p {
	color: #fff;
	font-size: 12px;
	font-weight: 400;
	line-height: normal;
	margin-bottom: 0;
	letter-spacing: 1.2px;
}

/* podcast page css start */

.podcast-hero {
	background-image: url(../images/logofron2.png);
	background-size: cover;
	background-position: center;
	padding: 105px 0;
}
.podcast-tittle h2 {
	font-size: 42px;
	font-weight: 700;
	line-height: normal;
	color: #fff;
	margin-bottom: 26px;
}

.podcast-tittle p {
	color: rgba(255, 255, 255, 0.8);
	font-weight: 300;
	font-size: 18px;
	line-height: 32px;
	text-transform: capitalize;
	margin-bottom: 0;
}
.pagetation-menu span {
	height: 40px;
	width: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #bdbdbd;
	border-radius: 50%;
	color: #000;
	font-size: 18px;
	cursor: pointer;
	/* TODO: Add line height */
}

.pagetation-menu span:hover {
	color: #fff;
	background: var(
		--Linear,
		linear-gradient(90deg, #ff0026 1.56%, #fc8496 100%)
	);
	border-color: var(
		--Linear,
		linear-gradient(90deg, #ff0026 1.56%, #fc8496 100%)
	);
}

span.page-active {
	color: #fff;
	background: var(
		--Linear,
		linear-gradient(90deg, #ff0026 1.56%, #fc8496 100%)
	);
	border-color: var(
		--Linear,
		linear-gradient(90deg, #ff0026 1.56%, #fc8496 100%)
	);
}

.pagetation-menu {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 20px;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding-top: 60px;
}
/* single podcust page css */
.podcast-single-page {
	padding-top: 60px;
}

.podcast-single-hero-top {
	background-image: url(../images/product/product-single-bg.png);
	background-size: cover;
	background-position: center;
}
.podcast-single-hero-top h2 {
	font-size: 42px;
	font-weight: 700;
	line-height: normal;
	color: #fff;
	margin-bottom: 25px;
}

.podcast-single-hero-top p {
	font-size: 18px;
	font-weight: 300;
	line-height: 32px;
	text-transform: capitalize;
	color: #ffff;
	margin-bottom: 0;
}
.prodcast-single-head {
	padding: 50px 37px 100px 35px;
}

.podcast-single-hero-top .right-audio {
	margin-right: 0;
}

.sinlge-blog-audio .right-audio {
	gap: 10px;
}

.sinlge-blog-audio .audio-area-btn {
	padding-right: 20px;
}

.sinlge-blog-audio .left-audio-part {
	gap: 10px;
}

.sinlge-blog-audio {
	position: relative;
	top: 90px;
}

.single-prodcast-bottom {
	margin-top: 167px;
	position: relative;
}

img.single-product-left {
	position: absolute;
	left: -28%;
}

.single-prodcast-bottom p {
	font-size: 18px;
	font-weight: 300;
	line-height: 36px;
	text-transform: capitalize;
	color: #000;
	margin-bottom: 0;
}

.single-prodcast-bottom .content-last {
	padding-top: 20px;
}

a.red-more {
	font-size: 18px;
	font-weight: 600;
	line-height: normal;
	color: #b3b3b3;
	border: 1px solid #bdbdbd;
	display: inline-block;
	padding: 18px 43px;
	border-radius: 30px;
}

a.red-more:hover {
	background: #ff2d64;
	color: #fff;
	border-color: #ff2d64;
}

.single-podcust-btn {
	padding-top: 44px;
}
.podcust-rating-form {
	background: #ffb8ca1a;
	border-radius: 6px;
	border: 1px solid #e0e0e0;
	padding: 25px 30px;
	margin-top: 55px;
}

.podcust-form-head {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.podcust-form-head h2 {
	font-size: 22px;
	font-weight: 700;
	line-height: normal;
	text-transform: uppercase;
	color: #000;
	margin-bottom: 30px;
}

.podcust-rating {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 7px;
}

.podcust-rating span {
	display: inline-block;
	font-size: 20px;
	color: #4f4f4f;
}

.podcust-rating-form label {
	display: block;
	font-size: 16px;
	font-weight: 500;
	line-height: normal;
	text-transform: uppercase;
	color: #000000;
	margin-bottom: 12px;
}

.podcust-rating-form input,
.podcust-rating-form textarea {
	display: block;
	width: 100%;
	border: 1px solid #e0e0e0;
	border-radius: 6px;
	background: #fff;
	color: #000;
	padding: 10px 14px;
	outline: none;
}

.podcust-rating-form input::placeholder,
.podcust-rating-form textarea::placeholder {
	color: #cccccc;
}

.podcust-rating-form input:focus {
	border-color: #ffa872;
}

.name-eamail {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 30px;
	margin-bottom: 18px;
}

.check-text {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 15px;
	margin-bottom: 18px;
}

.check-text input {
	height: 13px;
	width: 13px;
	background: #fff;
	border: 1px solid #e0e0e0;
	border-radius: 6px;
}

.check-text label {
	font-size: 14px;
	font-weight: 300;
	line-height: 30px;
	color: rgba(111, 112, 121, 0.6);
	margin: 0;
}

.name {
	width: 50%;
}

.email {
	width: 50%;
}

.podcust-rating-form textarea {
	height: 145px;
	margin-bottom: 28px;
}

.podcust-rating-form textarea:focus {
	border-color: #ffa872;
}

.podcust-rating-form input[type='submit'] {
	background: #ff2d64;
	color: #fff;
	font-size: 18px;
	font-weight: 700;
	line-height: 30px;
}
.popular-item-img {
	background-image: url(../images/home/episode1.png);
	background-size: cover;
	background-position: center;
	padding: 16px 18px 16px 18px;
	border-radius: 6px;
}

.podcast-search {
	width: 100%;
	position: relative;
	margin-bottom: 30px;
}

.podcast-search input {
	display: inline-block;
	outline: none;
	border: 1px solid #e0e0e0;
	color: #000;
	font-size: 16px;
	font-weight: 300;
	line-height: normal;
	padding: 12px 13px;
	border-radius: 6px;
	width: 100%;
}

.podcast-search button {
	display: inline-block;
	padding: 8px 13px;
	border-radius: 6px;
	border: none;
	background: var(
		--Linear,
		linear-gradient(90deg, #ff0026 1.56%, #fc8496 100%)
	);
	color: #fff;
	font-size: 20px;
	position: absolute;
	right: 0;
}

.popular-tittle {
	display: block;
}

.popular-podcast-item {
	margin-bottom: 30px;
}

.podcast-single-right {
	position: relative;
}

img.single-product-right {
	position: absolute;
	right: -56%;
	bottom: -25%;
}

.popular-tittle p {
	font-size: 16px;
	font-weight: 300;
	line-height: normal;
	color: #000;
	margin-bottom: 30px;
}

.popular-item-img h4 {
	margin-bottom: 22px;
}

.popular-item-img h4 a {
	font-size: 20px;
	font-weight: 700;
	line-height: 32px;
	text-transform: capitalize;
	color: #fff;
	transition: 0.3s;
}

.popular-item-img h4 a:hover {
	color: #ff2d64;
	transition: 0.3s;
}

.popular-item-img p {
	margin-bottom: 27px;
	color: #fff;
	font-size: 16px;
	font-weight: 300;
	line-height: 26px;
	text-transform: capitalize;
}

.popular-content {
	padding: 16px 18px 16px 18px;
	-webkit-box-shadow: 0px 25px 40px 0px rgba(255, 94, 117, 0.1);
	box-shadow: 0px 25px 40px 0px rgba(255, 94, 117, 0.1);
}

.sponsor-banner {
	padding-top: 25px;
}

.sponsor-banner p {
	margin-bottom: 0;
	font-size: 16px;
	font-weight: 300;
	line-height: normal;
	color: #000;
}
/* shop page  */
.shop-head {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.cart-btn a {
	color: #616161;
	display: inline-block;
	font-size: 26px;
	margin-left: 44px;
}

.shop-tittle h2 {
	font-size: 42px;
	font-weight: 700;
	text-transform: uppercase;
	line-height: 32px;
	color: #000;
	margin-bottom: 32px;
}

.shop-tittle p {
	margin-bottom: 0;
	color: rgba(0, 0, 0, 0.8);
	font-size: 20px;
	font-weight: 400;
	line-height: 32px;
}

.shop-select-product select {
	border: 1px solid #fe8a60;
	border-radius: 19px;
	padding: 8px 16px;
}

.shop-main-page {
	padding-top: 95px;
}

.shope-all-product {
	padding-top: 95px;
}

.product-content h4 {
	font-size: 20px;
	font-weight: 400;
	line-height: 36px;
	margin-bottom: 18px;
	letter-spacing: -0.2px;
}

.product-bottom {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.product-bottom span {
	font-size: 20px;
	font-weight: 700;
	line-height: 28px;
	letter-spacing: -0.16px;
	color: #232635;
}

.product-bottom .line {
	text-decoration: line-through;
}

a.details {
	border: 2px solid #ff0026;
	border-radius: 50px;
	padding: 7px 15px;
	font-size: 16px;
	font-weight: 400;
	color: #ff0026;
	transition: 0.3s;
}

a.details:hover {
	background: #ff0026;
	color: white;
	transition: 0.3s;
}

.product-bottom span.price {
	padding-right: 30%;
}

.shop-product-item {
	position: relative;
	margin-bottom: 30px;
}

.shop-product-item:hover .product-hover {
	opacity: 1;
	visibility: visible;
}

a.add-cart {
	border-radius: 22px;
	background: #fff;
	font-size: 18px;
	font-weight: 300;
	line-height: normal;
	color: #000;
	display: block;
	padding: 11px 16px;
	transition: 0.3s;
}

a.add-cart:hover {
	background: #ff2d64;
	color: white;
	transition: 0.3s;
}

.product-hover {
	position: absolute;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	left: 50%;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: 0.5s ease-in-out;
	-o-transition: 0.5s ease-in-out;
	transition: 0.5s ease-in-out;
}

.product-content {
	padding: 35px 30px 15px 30px;
	background: #f9f9f9;
}

.shop-product-img {
	overflow: hidden;
}

.shop-product-item:hover .shop-product-img img {
	-webkit-transform: scale(1.2);
	-ms-transform: scale(1.2);
	transform: scale(1.2);
}

.shop-product-img img {
	-webkit-transition: 0.4s ease-in-out;
	-o-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out;
}

/* shop single page start */
.shop-cart-tittle {
	margin-bottom: 90px;
}
.shop-cart-tittle h2 {
	color: #232635;
	font-size: 42px;
	font-weight: 700;
	line-height: 60px;
	letter-spacing: -0.42px;
	margin-bottom: 0;
}

.cart-price-area span {
	font-size: 22px;
	font-weight: 400;
	line-height: 28px;
	display: inline-block;
	letter-spacing: -0.22px;
	height: 25px;
}

.cart-price-area .cart-price {
	font-size: 40px;
	line-height: 52px;
}

span.cart-line {
	text-decoration: line-through;
	color: rgba(0, 0, 0, 0.5);
	margin-right: 20px;
}

.cart-price-area {
	margin-bottom: 32px;
}

.cart-top-text p {
	color: #000;
	font-size: 18px;
	font-weight: 300;
	line-height: 36px;
	text-transform: capitalize;
	margin-bottom: 22px;
}

.cart-top-text p:last-child {
	margin-bottom: 78px;
}

.cart-item-btn input[type="number"] {
	border: 1px solid #e0e0e0;
	display: inline-block;
	padding: 11px 7px 11px 17px;
	color: #232635;
	font-size: 22px;
	font-weight: 400;
	line-height: 28px;
	margin-right: 10px;
	width: 68px;
}

a.add-to-cart {
	display: inline-block;
	font-size: 18px;
	font-weight: 400;
	line-height: 36px;
	text-transform: capitalize;
	color: #fff;
	background: #000;
	padding: 9px 32px;
}

.cart-item-bottom span {
	font-size: 18px;
	font-weight: 300;
	line-height: 36px;
	text-transform: capitalize;
	color: #000;
	margin-bottom: 20px;
	display: inline-block;
}

.cart-item-bottom p {
	font-size: 18px;
	font-weight: 300;
	line-height: 36px;
	text-transform: capitalize;
	margin-bottom: 0;
}

.cart-item-btn {
	margin-bottom: 27px;
}

.nav-tabs .nav-link {
	margin-bottom: 0px;
	border: 0.5px solid #333;
	background: #fff;
	color: #000;
	font-size: 16px;
	font-weight: 300;
	line-height: 36px;
	text-transform: capitalize;
	border-radius: 0;
}
.nav-tabs {
	--bs-nav-tabs-link-active-border-color: transform;
	border-bottom: none;
	--bs-nav-tabs-link-hover-border-color: transform;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-bottom: 32px;
}
.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
	color: #fff;
	background-color: #000;
	border-color: #000;
}
.shop-cart-tittle {
	margin-bottom: 90px;
}

div#nav-tabContent h2 {
	font-size: 22px;
	font-weight: 700;
	line-height: 28px;
	letter-spacing: -0.22px;
	color: #232635;
	margin-bottom: 22px;
}

div#nav-tabContent p {
	color: rgba(0, 0, 0, 0.6);
	font-size: 18px;
	font-weight: 300;
	line-height: 36px;
	text-transform: capitalize;
	margin-bottom: 48px;
}

div#nav-tabContent p:last-child {
	margin-bottom: 0;
}

.product-cart-tab {
	padding: 105px 00;
}
footer.footer-area.shop-single-page {
	padding-top: 90px;
}

/* blog page start */
.blog-page-img {
	position: relative;
}
.blog-left-content {
	background: #fa9595;
	color: #fff;
	padding: 13px 30px;
	position: absolute;
	bottom: 0;
	width: 100%;
}

.blog-left-content h2 {
	font-size: 32px;
	font-weight: 700;
	line-height: 36px;
	letter-spacing: -0.32px;
	margin-bottom: 10px;
}

.blog-bottom-content {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 120px;
}

.blog-bottom-content span {
	font-size: 16px;
	font-weight: 300;
	line-height: 28px;
	letter-spacing: -0.16px;
}

.blog-page-content p {
	font-size: 18px;
	font-weight: 300;
	line-height: 42px;
	text-transform: capitalize;
	margin-bottom: 0;
}

p.blog4-content {
	margin-bottom: 40px;
}

p.blog6-content {
	margin-bottom: 40px;
}

.blog-page-content {
	border: 1px solid #e0e0e0;
	border-radius: 0px 0px 6px 6px;
	padding: 40px 33px;
}

p.blog8-content {
	margin-bottom: 10px;
}

.blog-page-img img {
	border-radius: 6px 6px 0px 0px;
}

.blog-page-right-content {
	padding: 20px;
	padding-top: 15px;
	border: 1px solid #e0e0e0;
	border-radius: 0px 0px 6px 6px;
}

.blog-page-right-content h4 a {
	color: #232635;
	font-size: 22px;
	font-weight: 700;
	line-height: 36px;
	margin-bottom: 5px;
	letter-spacing: -0.22px;
}

.blog-page-right-content h4 a:hover {
	color: #ff2d64;
}

.blog-page-right-content p {
	margin-bottom: 10px;
	color: #494949;
	font-size: 16px;
	font-weight: 300;
	line-height: 28px;
	letter-spacing: -0.16px;
}

.blog-page-bottom {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.blog-page-bottom a span {
	color: rgba(0, 0, 0, 0.5);
	font-size: 14px;
	font-weight: 300;
	line-height: 28px;
	letter-spacing: -0.14px;
}

.blog-page-bottom a:hover span {
	color: #ff2d64;
}

.single-blog-page-item {
	margin-bottom: 32px;
}

.single-blog-page-item:last-child {
	margin: 0;
}
/* donate page start */
.donate-first-form {
	background: #ffb8ca1a;
	border-radius: 20px;
	border: 1px solid #e0e0e0;
	padding: 30px;
	padding-bottom: 48px;
	margin: 58px 0;
}

.dontate-form-tittle h6 {
	font-size: 22px;
	font-weight: 700;
	line-height: normal;
	text-transform: uppercase;
	margin-bottom: 8px;
}

.dontate-form-tittle p {
	font-size: 18px;
	font-weight: 300;
	line-height: 30px;
	color: rgba(111, 112, 121, 0.6);
	margin-bottom: 10px;
}

.form-inner-tittle h6 {
	color: #000;
	font-size: 20px;
	font-weight: 700;
	line-height: normal;
	text-transform: uppercase;
	margin-bottom: 12px;
}

.donate-item,
.services-item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 30px;
}

.donate-item {
	margin-bottom: 50px;
}

.donate-item label,
.services-item label {
	display: block;
	font-size: 16px;
	font-weight: 500;
	line-height: normal;
	text-transform: uppercase;
	margin-bottom: 15px;
}

.donate-item input,
.services-item input {
	width: 100%;
	padding: 10px 20px;
	display: block;
	border: 1px solid #e6e6e6;
	border-radius: 6px;
	outline: none;
}

.donate-item input:focus,
.services-item input:focus {
	border: 1px solid #ffa872;
}

.catagory,
.donate-phone,
.donate-phone,
.donate-email,
.services-department,
.session,
.services-consultant {
	width: 33.33%;
}

.donate-secound-form {
	background: rgba(255, 184, 202, 0.1);
	border-radius: 20px;
	border: 1px solid #e0e0e0;
	padding: 35px 30px;
	padding-bottom: 47px;
}

.donate-secound-tittle h6 {
	font-size: 20px;
	font-weight: 500;
	line-height: normal;
	text-transform: uppercase;
	margin-bottom: 33px;
}

.payment-top,
.payment-bottom {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 30px;
}

.payment-top label,
.payment-bottom label {
	display: block;
	font-size: 16px;
	font-weight: 500;
	line-height: normal;
	text-transform: uppercase;
	margin-bottom: 12px;
}

.payment-name,
.payment-card {
	width: 50%;
}
.payment-cvc {
	width: 33%;
}
.payment-top input,
.payment-bottom input {
	display: block;
	width: 100%;
	border: 1px solid #e0e0e0;
	outline: none;
	padding: 9px 17px;
}

.payment-top input:focus,
.payment-bottom input:focus {
	border: 1px solid #ffa872;
}

.payment-top {
	margin-bottom: 31px;
}

.form-btn {
	text-align: center;
}

.form-btn a {
	display: inline-block;
	font-size: 18px;
	font-weight: 700;
	line-height: normal;
	color: #fff;
	padding: 18px;
}

.form-btn {
	background: #ff2d64;
	margin-top: 75px;
}
/* contact us page */
.contact-up-page {
	padding-top: 60px;
}
.contact-page-right {
	background-color: #ffb8ca1a;
	-webkit-box-shadow: 0px 80.6px 105.701px rgba(51, 51, 51, 0.1);
	box-shadow: 0px 80.6px 105.701px rgba(51, 51, 51, 0.1);
	border-radius: 20px;
	padding: 72px 48px;
}

.contact-page-right h4 {
	font-size: 32px;
	font-weight: 600;
	line-height: 28px;
	color: #0d083a;
	margin-bottom: 21px;
}

.contact-page-right form input[type='text'],
.contact-page-right form input[type='email'],
.contact-page-right form textarea {
	width: 100%;
	border: 1px solid #d3d2d3;
	border-radius: 5px;
	font-size: 16px;
	font-weight: 400;
	line-height: 26px;
	padding: 17px 25px;
	margin-bottom: 20px;
	outline: none;
	color: #7a798b;
}
.contact-page-right form input:focus,
.contact-page-right form textarea:focus {
	border-color: #ffa872;
}

.contact-page-right form textarea {
	resize: none;
	height: 165px;
	margin-bottom: 40px;
}

.btn-submit {
	line-height: 24px;
	padding: 20px 40px;
	background-color: #ff2d64;
	font-size: 16px;
	font-weight: 600;
	line-height: 16px;
	border-radius: 4px;
	border: none;
	color: #fff;
	-webkit-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}
.btn-submit:hover {
	background: #000;
}

/* =============== # Back To Top ================ */
.progress-wrap {
	position: fixed;
	right: 50px;
	bottom: 50px;
	height: 46px;
	width: 46px;
	cursor: pointer;
	display: block;
	border-radius: 50px;
	box-shadow: inset 0 0 0 2px rgba(95, 58, 252, 0.2);
	z-index: 99;
	opacity: 0;
	visibility: hidden;
	transform: translateY(15px);
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}

.progress-wrap.active-progress {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.progress-wrap::after {
	position: absolute;
	content: '\F148';
	font-family: 'BOOTSTRAP-ICONS';
	text-align: center;
	line-height: 46px;
	font-size: 20px;
	color: #ff2d64;
	left: 0;
	top: 0;
	height: 46px;
	width: 46px;
	cursor: pointer;
	display: block;
	z-index: 1;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}

.progress-wrap svg path {
	fill: none;
}

.progress-wrap svg.progress-circle path {
	stroke: #ff2d64;
	stroke-width: 4;
	box-sizing: border-box;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}
