@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Epilogue:ital,wght@0,100..900;1,100..900&display=swap');
html,body,div,span,
h1,h2,h3,h4,h5,h6,
p,blockquote,q,em,img,small,strong,
dl,dt,dd,ol,ul,li,fieldset,form,label,legend{border:0;outline:0;margin:0;padding:0;font-size:100%;vertical-align:baseline;background:transparent}
body{line-height:1}
ol,ul{list-style:none}
:focus{outline:0}
input,textarea{margin:0;outline:0;}
textarea{overflow:auto; resize:none;}
table{border-collapse:collapse;border-spacing:0}
/* End Reset */

/* html5 */
article, aside, details, figcaption, figure, footer, header, nav, section { display: block; }

*,
*::after,
*::before{
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

/* Default Font Styles
______________________*/
body, input, select, textarea {
	font-family: "Poppins", sans-serif;
	font-size: 18px;
	color: var(--text-color);
	line-height: 1.4;
	background: var(--light-color);
}

/* Headings
______________________*/
h1,h2,h3,h4,h5,h6 {
	font-family: "Epilogue", sans-serif;
	line-height: 1.25;
	margin-bottom: 25px;
	color: var(--primary-color);
}
h1 {
	font-size: 65px;
	font-weight: 800;
}
h2 {
	font-size: 56px;
	font-weight: 700;
}
h3 {
	font-size: 20px;
	font-weight: 600;
}

/* Links
______________________*/
a {
	text-decoration: none;
	transition: 0.3s all;
}

/* p, blockquote, address
______________________*/
p {
	font-size: 18px;
	margin-bottom: 25px;

}

/* Lists
______________________*/
ol,
ul {
	padding: 0;
	margin: 0;
}
li {
	list-style-type: none;
}
img {
	display: block;
	max-width: 100%;
}
button {
	display: block;
	cursor: pointer;
	transition: 0.3s all;
}

/* Roots 
_____________*/
:root {
  --primary-color: #252839;
  --secondary-color: #01705C;
  --tertiary-color: #FFD249;
  --black-color: #000000;
  --white-color: #FFFFFF;
  --light-color: #F4F5F8;
  --text-color: #4F4F4F;
}

/* Layout 
______________________*/
.container {
	width: 100%;
	max-width: 1350px;
	margin: 0 auto;
	padding: 0 15px;
}
body.active {
	overflow: hidden;
}

/* Theme Btn Styles 
_______________________*/
.theme-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
	font-size: 18px;
	font-weight: 500;
	color: var(--white-color);
	background: var(--secondary-color);
	box-shadow: 0 5px 20px 0 #01705C80;
	padding: 15px 25px;
	border-radius: 10px;
}
.theme-btn.theme-btn_alt {
	background: var(--tertiary-color);
	box-shadow: 0 5px 15px 0 #E76F5140;
}
.theme-btn.row-reverse {
	flex-direction: row-reverse;
}
.theme-btn:hover {
	opacity: 0.8;
}
.theme-btn span {
	display: block;
	width: 16px;
}

/* Bg Layer 
______________*/
.bg-layer {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.8);
	z-index: 999;
	display: none;
}

/* Sticky Bar Styles 
______________________*/
.sticky-wrap {
	padding: 10px 0;
	background: var(--secondary-color);
}
.sticky__row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 15px;
}
.sticky__row p {
	display: flex;
	align-items: center;
	font-size: 14px;
	font-weight: 500;
	color: #F3F2E7;
	margin-bottom: 0;
}
.sticky__row p span {
	display: block;
	max-width: 20px;
	min-width: 20px;
	margin-right: 11px;
}
.social-list {
	display: flex;
	align-items: center;
	gap: 7px;
}
.social-list li {
	list-style-type: none;
}
.social-list a {
	display: block;
	width: 22px;
	height: 22px;
}
.social-list a svg {
	width: 100%;
	height: 100%;
	fill: var(--white-color);
	transition: fill 0.3s;
}
.social-list a svg path {
	fill: var(--secondary-color);
}
.social-list a:hover svg {
	fill: var(--tertiary-color);
}

/* Header Styles 
___________________*/
.header-wrap {
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	background: #333644;
	z-index: 555;
}
.header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	transition: padding 0.3s;
	padding: 20px 0;
}
.header-wrap.active .header {
	padding: 15px 0;
}
a.main__logo {
	display: block;
	width: 100%;
	max-width: 400px;
	transition: max-width 0.3s;
}
.header-wrap.active .header a.main__logo {
	max-width: 350px;
}
.header__list {
	display: flex;
	align-items: center;
	margin: 0 -25px;
}
.header__list li {
	padding: 0 25px;
}
.header__list a {
	font-size: 16px;
	font-weight: 500;
	color: var(--white-color);
}
.header__list li:last-child a {
	color: var(--primary-color);
	border-radius: 100px;
	padding: 11px 30px;
}
.header__list a:hover {
	color: var(--tertiary-color);
}
.menu-btn {
	width: 30px;
	height: 30px;
	cursor: pointer;
	position: relative;
	display: none;
}
.menu-btn span {
	display: block;
	width: 100%;
	height: 2px;
	background: var(--white-color);
	position: absolute;
	top: 50%;
	transform: translate(0, -50%);
}
.menu-btn.active span {
	background: transparent;
}
.menu-btn span::after,
.menu-btn span::before {
	content: "";
	position: absolute;
	top: 8px;
	width: 100%;
	height: 2px;
	background: var(--white-color);
	transition: 0.3s;
}
.menu-btn.active span::before {
	transform: rotate(135deg);
	top: 0;
}
.menu-btn span::after {
	top: auto;
	bottom: 8px;
}
.menu-btn.active span::after {
	transform: rotate(-135deg);
	bottom: 0;
}

/* Banner Styles 
___________________*/
.banner-wrap {
	background: url('../images/banner-bg.png') no-repeat center/ cover;
	padding: 180px 0;
}
.banner-wrap .container {
	position: relative;
}
.banner__row {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.banner__info {
	width: 100%;
	max-width: 673px;
	padding-right: 25px;
	color: var(--white-color);
}
.banner__info em {
	display: block;
	font-size: 20px;
	font-weight: 500;
	font-style: normal;
	color: var(--white-color);
	margin-bottom: 5px;
	text-transform: capitalize;
}
.banner__info h1 {
	line-height: 1.3;
	margin-bottom: 10px;
	text-transform: capitalize;
	color: var(--white-color);
}
.banner__info p {
	color: #C1C1C1;
	margin-bottom: 50px;
	text-transform: capitalize;
}
.join .theme-btn,
.support__form button,
.banner__info .theme-btn {
	padding: 19px 48px;
	font-size: 20px;
}
.banner__trust {
	display: flex;
	align-items: center;
	justify-content: start;
	margin-bottom: 50px;
}
.banner__trust img {
	width: 140px;
	margin-right: 20px;
}
.banner__trust p {
	font-size: 20px;
	font-weight: 500;
	margin-bottom: 0 !important;
}
.banner__img {
	width: 100%;
	max-width: 588px;
	position: relative;
}
.banner__img img {
	width: 100%;
}
.banner-inner__img {
	width: 92%;
	position: absolute;
	right: 4%;
	top: 2%;
	border-radius: 100%;
	overflow: hidden;
	padding-bottom: 92%;
}
.banner-inner__img img {
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.dotted__vector {
	width: 37%;
	position: absolute;
	top: 8%;
	right: 1%;
}
.banner__card {
	width: 30%;
	position: absolute;
	bottom: 0;
	left: 0;
}
.banner-wrap .vector__one {
	display: block;
	width: 25px;
	position: absolute;
	left: 30%;
	top: -5%;
}
.banner-wrap .vector__two {
	display: block;
	width: 30px;
	position: absolute;
	top: -9%;
	right: 1%;
}
.banner-wrap .vector__three {
	display: block;
	width: 85px;
	position: absolute;
	bottom: -5%;
	left: 2%;
}
.banner-wrap .vector__four {
	display: block;
	width: 30px;
	position: absolute;
	right: 1%;
	bottom: -5%;
}

/* About Styles 
___________________*/
.about-wrap {
	padding: 70px 0 35px;
}
.about__row {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.about__info {
	width: 100%;
	max-width: 616px;
	padding-right: 25px;
}
.lead__info em,
.about__info em {
	display: block;
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	color: var(--secondary-color);
	text-transform: uppercase;
	margin-bottom: 10px;
}
.lead__info h2 span {
	color: var(--secondary-color);
}
.about__info h2 {
	color: var(--primary-color);
	margin-bottom: 30px;
	text-transform: capitalize;
}
.about__info p {
	margin-bottom: 50px;
}
.about-feature__outer {
	width: 100%;
	max-width: 648px;
	display: flex;
	align-items: start;
	justify-content: center;
	margin: 0 -12px;
}
.about__features {
	width: 50%;
	padding: 0 12px;
	display: flex;
	flex-direction: column;
	row-gap: 24px;
}
.about__features.about-features__alt {
	margin-top: -50px;
}
.about-feature__inner {
	padding: 30px 30px 50px;
	border-radius: 15px;
	transition: 0.3s;
	background: transparent;
}
.about-feature__inner:hover {
	background: var(--secondary-color);
	box-shadow: 0 10px 20px 0 #00000033;
	color: var(--light-color);
}
.about__icon {
	width: 84px;
	height: 84px;
	margin: 0 auto 25px;
	border-radius: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--white-color);
	transition: 0.3s;
}
.about__icon svg {
	width: 35px;
	height: 35px;
	fill: var(--text-color);
}
.about-feature__inner:hover .about__icon svg {
	fill: var(--secondary-color);
}
.about-feature__inner h3 {
	text-align: center;
	margin-bottom: 34px;
}
.about-feature__inner:hover h3 {
	color: var(--light-color);
}
.about-feature__inner p {
	text-align: center;
	margin-bottom: 0;
	font-size: 16px;
}

/* Team Styles 
_________________*/
.team-wrap {
	padding: 35px 0 70px;
}
.lead__info {
	text-align: center;
	margin-bottom: 65px;
}
.lead__info h2 {
	text-transform: capitalize;
	margin-bottom: 0;
}
.team__row {
	display: flex;
	align-items: start;
	justify-content: center;
	flex-wrap: wrap;
	margin: 0 -12px 39px;
	row-gap: 24px;
}
.team__col {
	width: 25%;
	padding: 0 12px;
}
.team__card {
	border-radius: 10px;
	overflow: hidden;
	text-align: center;
}
.team__img img {
	width: 100%;
}
.team__info {
	padding: 16px;
}
.team__info h3 {
	margin-bottom: 0;
}
.team__info p {
	color: #C1C1C1;
	margin-bottom: 0;
}
.team__btn {
	display: flex;
	justify-content: center;
}

/* Support Styles 
_____________________*/
.support-wrap {
	padding: 72px 0;
	background: #2E3433;
	margin-bottom: 22px;
	position: relative;
}
.support {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.support_info {
	width: 100%;
	max-width: 625px;
	padding-right: 25px;
}
.support_info em {
	display: block;
	font-style: normal;
	font-size: 16px;
	font-weight: 500;
	color: var(--white-color);
	margin-bottom: 25px;
}
.support_info h2 {
	color: var(--white-color);
}
.social__sharing {
	margin-bottom: 25px;
}
.social__sharing h3 {
	color: var(--white-color);
	margin-bottom: 15px;
}
.social__sharing ul {
	display: flex;
	align-items: center;
	gap: 30px;
}
.social__sharing ul a {
	display: block;
	width: 34px;
	height: 34px;
}
.social__sharing ul a svg {
	display: block;
	width: 100%;
	height: 100%;
	fill: var(--white-color);
	transition: 0.3s;
}
.social__sharing ul a:hover svg {
	fill: var(--tertiary-color);
}
.support_info p {
	color: var(--white-color);
}
.goal__box {
	display: inline-flex;
	align-items: center;
	padding: 24px 16px;
	border: 1px solid var(--white-color);
	border-radius: 15px;
	background: #FFFFFF14;
	backdrop-filter: blur(6px);
}
.goal__box li {
	font-family: "Epilogue", sans-serif;
	font-size: 30px;
	font-weight: 700;
	color: var(--white-color);
	line-height: 1.4;
	padding: 0 19px;
	position: relative;
}
.goal__box li::after {
	content: "";
	position: absolute;
	right: 0;
	bottom: 10px;
	width: 1px;
	height: 30px;
	background: var(--white-color);
}
.goal__box li:last-child::after {
	display: none;
}
.goal__box li span {
	display: block;
	color: var(--tertiary-color);
	font-size: 24px;
}
.support__box {
	width: 100%;
	max-width: 648px;
	box-shadow: -10px -10px 40px 0px #00000014;
	border-radius: 30px;
	background: var(--white-color);
	padding: 40px 50px;
	border-bottom: 10px solid var(--tertiary-color);
	text-align: center;
}
.support__box h3 {
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 10px;
}
.support__box p {
	font-size: 16px;
}
form.support__form {
	width: 100%;
}
.support-field__box {
	position: relative;
	margin-bottom: 25px;
}
.support-field__box label {
	display: block;
	width: 20px;
	position: absolute;
	top: 50%;
	left: 45px;
	transform: translate(0, -50%);
}
.support-field__box input,
.support-field__box select {
	width: 100%;
	border: 1px solid transparent;
	border-radius: 100px;
	padding: 22px 45px 22px 81px;
	appearance: none;
	color: var(--primary-color);
	background: var(--light-color) url('../images/drop-down-icon.svg') no-repeat right 45px center/ 14px;
	font-weight: 500;
	/*opacity: 0.5;*/
}
.support-field__box input {
	background: var(--light-color);
}
.support-field__box input:focus,
.support-field__box select:focus{
	opacity: 1;
	border-color: var(--primary-color);
}
.checkbox__field {
	display: flex;
	align-items: center;
	margin: 0 0 40px 30px;
}
.checkbox__field input {
	width: 20px;
	height: 20px;
}
.checkbox__field label {
	width: auto;
	font-size: 14px;
	padding-left: 15px;
	text-align: left;
}
.support__form button {
	width: 100%;
	border-radius: 100px;
	border: 0;
	padding: 29px 48px;
}
.support-wrap .vector__one {
	display: block;
	width: 30px;
	position: absolute;
	left: 25%;
	top: 5%;
	opacity: 0.5;
}
.support-wrap .vector__two {
	display: block;
	width: 44px;
	position: absolute;
	right: 6%;
	top: 17%;
	opacity: 0.5;
}
.support-wrap .vector__three {
	display: block;
	width: 46px;
	position: absolute;
	left: 4%;
	bottom: 5%;
	opacity: 0.5;
}
.support-wrap .vector__four {
	display: block;
	width: 34px;
	position: absolute;
	right: 2%;
	bottom: 20%;
	opacity: 0.5;
}
.donate__outer {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 25px;
	margin-bottom: 25px;
}
h4.other-donate {
	font-size: ;
	padding-top: 25px;
	border-top: 1px solid var(--light-color);
}
.donate__box {
	width: 25%;
}
.donate-icon__detail,
.donate__icon {
	display: block;
	width: 100%;
	max-width: 70px;
	margin: 0 auto;
	cursor: pointer;
}
.donate__detail {
	position: fixed;
	left: 50%;
	top: 50%;
	padding: 0 15px;
	transform: translate(-50%, -50%);
	z-index: 9999;
	width: 100%;
	max-width: 896px;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	opacity: 0;
	visibility: hidden;
	transition: 0.3s all;
}
.donate__detail.active {
	opacity: 1;
	visibility: visible;
}
.donate-detail__box {
	position: relative;
	width: 100%;
	height: 100%;
	max-height: 578px;
	margin: 0 auto;
	background: var(--white-color);
	border-radius: 8px;
	overflow: auto;
	padding: 24px;
}
.donate-inner__box {
	text-align: left;
}
.donate-detail__box h3 {
	text-align: left;
	font-size: 18px;
	margin-bottom: 40px;
}
.close-detail {
	position: absolute;
	top: 15px;
	right: 15px;
	width: 16px;
	height: 16px;
	cursor: pointer;
	opacity: 0.6;
}
.close-detail:hover {
	opacity: 1;
}
.close-detail::after,
.close-detail::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	width: 100%;
	height: 2px;
	background: var(--primary-color);
	transform: translate(0, -50%) rotate(45deg);
}
.close-detail::after {
	transform: translate(0, -50%) rotate(-45deg);
}
.donate__field {
	display: flex;
	align-items: center;
	justify-content: start;
	padding: 8px;
	border-bottom: 1px solid #e5e7eb;
	gap: 5px;
	transition: background 0.3s;
}
.donate__field:last-child {
	border-bottom: 0;
}
.donate__field:hover {
	background: #f1f6f6;
}
.donate__field.donate__field--alt {
	width: 100%;
	max-width: 252px;
	margin: 0 auto;
	gap: 0;
	background: transparent;
	padding: 0;
	border-bottom: 0;
	flex-wrap: wrap;
}
.donate__field h4,
.donate__field label {
	width: 100%;
	max-width: 247px;
	text-align: left;
	font-size: 14px;
	font-weight: 400;
	margin-bottom: 0;
}
.donate__field input {
	width: 100%;
	max-width: 320px;
	font-size: 14px;
	padding: 6px 12px;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	background: transparent;
	color: var(--primary-color);
}
.donate__field input:focus {
	border-color: #2563eb;
}
.donate__field ul {
	margin-left: 12px;
}
.donate__field ul li {
	text-align: left;
	font-size: 14px;
	color: var(--primary-color);
	list-style-type: disc;
}
.donate-detail__box p {
	text-align: left;
	font-size: 14px;
	color: var(--primary-color);
}
.donate__field p {
	margin-bottom: 0;
	font-size: 14px;
	color: var(--primary-color);
}
.copy-btn {
	display: block;
	min-width: 33px;
	min-height: 36px;
	padding: 8px;
	border: 1px solid #e5e7eb;
	border-radius: 4px;
	cursor: pointer;
	background: transparent url('../images/copy-icon.svg') no-repeat center/ 15px;
	transition: background 0.3s;
}
.copy-btn.copied {
	background-image: url('../images/check.svg');
}
.copy-btn:hover {
	background-color: #e6e9ea;
}
button.all-copy {
	font-size: 14px;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	padding: 8px 16px;
	background: transparent;
	display: inline-flex;
	justify-content: start;
	margin: 0 0 0;
	width: auto;
	text-align: left;
	margin-top: 25px;
}
button.all-copy:hover {
	background: #e6e9ea;
	color: #4a5455;
}
.qr-detail {
	display: flex;
	align-items: start;
	justify-content: space-between;
	width: 100%;
	max-width: 650px;
	margin: 0 auto;
	gap: 25px;
	flex-wrap: wrap;
}
.qr__img {
	width: 100%;
	margin-bottom: 12px;
}
.qr__img img {
	width: 100%;
}
.copy__box {
	display: flex;
	align-items: center;
	gap: 5px;
}

/* Join Styles 
_____________________*/
.join-wrap {
	padding: 82px 0;
	background: var(--secondary-color);
}
.join-wrap .container {
	position: relative;
}
.join {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.join__info {
	width: 100%;
	max-width: 865px;
	padding-right: 25px;
}
.join__info em {
	display: block;
	font-family: "Epilogue", sans-serif;
	font-weight: 700;
	margin-bottom: 14px;
	font-style: normal;
	font-size: 24px;
	color: var(--white-color);
}
.join__info h2 {
	font-size: 54px;
	color: var(--white-color);
	margin-bottom: 0;
}
.join .theme-btn {
	white-space: nowrap;
}
.join-wrap .vector__one {
	display: block;
	width: 25px;
	position: absolute;
	left: 35%;
	top: -15%;
}
.join-wrap .vector__two {
	display: block;
	width: 30px;
	position: absolute;
	top: -10%;
	right: 1%;
}
.join-wrap .vector__three {
	display: block;
	width: 85px;
	position: absolute;
	bottom: -25%;
	left: 2%;
}
.join-wrap .vector__four {
	display: block;
	width: 30px;
	position: absolute;
	right: 11%;
	bottom: -25%;
}

/* Faq Styles 
_________________*/
.faq-wrap {
	padding: 90px 0 128px;
}
.faq {
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	flex-wrap: wrap;
}
.faq__img {
	width: 34%;
	border-radius: 15px;
	overflow: hidden;
}
.faq__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.faq__outer {
	width: 66%;
	padding-left: 65px;
}
.faq__box {
	padding: 39px 50px;
	margin-bottom: 30px;
	border: 2px solid transparent;
	border-radius: 15px;
	cursor: pointer;
	transition: 0.3s all;
}
.faq__box:last-child {
	margin-bottom: 0;
}
.faq__box.active {
	border-color: var(--primary-color);
}
.faq__title {
	position: relative;
	padding-right: 40px;
}
.faq__title::after {
	content: "+";
	position: absolute;
	right: 0;
	top: 50%;
	transform: translate(0, -50%);
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 32px;
	font-weight: 500;
	color: var(--white-color);
	background: var(--secondary-color);
}
.faq__box.active .faq__title::after {
	content: "-";
	background: var(--tertiary-color);
}
.faq__title h3 {
	font-weight: 400;
	margin-bottom: 0;
}
.faq__info {
	display: none;
	padding-top: 22px;
}
.faq__box.active .faq__info {
	display: block;
}
.faq__info p {
	font-size: 16px;
	margin-bottom: 0;
}

/* Service Styles 
______________________*/
.service-wrap {
	padding-bottom: 134px;
}
.service {
	display: flex;
	align-items: center;
	justify-content: center;
}
.service__video {
	width: 100%;
	max-width: 872px;
	position: relative;
	padding-bottom: 42%;
	border-radius: 20px;
	overflow: hidden;
}
.service__video video {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.service__video span {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 85px;
	height: 85px;
	outline: 15px solid rgba(255, 210, 73, 0.5);
	border-radius: 100px;
	background: var(--tertiary-color) url('../images/video-play-icon.svg') no-repeat center/ 24px;
	transition: 0.3s;
}
.service__video.active span {
	background-image: url('../images/video-pause-icon.svg');
	background-size: 32px;
}
.service__video.active span {
	opacity: 0;
	visibility: hidden;
}
.service__video:hover.active span {
	opacity: 1;
	visibility: visible;
}
.service__box {
	width: 100%;
	max-width: 560px;
	padding: 57px 45px 48px;
	background: var(--white-color);
	box-shadow: 0px 8px 40px 0px #00000014;
	border-radius: 20px;
	margin-left: -112px;
	z-index: 5;
}
.service__box h3 {
	font-size: 24px;
	margin-bottom: 19px;
}
.service__box p {
	font-size: 16px;
}
.service__box .theme-btn {
	font-size: 16px;
}

/* Testimonial Styles 
_________________________*/
.testimonial-wrap {
	padding: 45px 0 65px;
	background: var(--primary-color);	
}
.testimonial__title {
	color: var(--white-color);
	text-align: center;
	text-transform: capitalize;
	margin-bottom: 90px;
}
.testimonial__slider .owl-stage-outer {
	width: 100%;
	max-width: 950px;
	margin: 0 auto;
}
.testimonial__slider .owl-carousel .owl-nav {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: absolute;
	top: 50%;
	transform: translate(0, -50%);
}
.testimonial__slider .owl-carousel .owl-nav button.owl-next,
.testimonial__slider .owl-carousel .owl-nav button.owl-prev {
	font-size: 0;
	width: 54px;
	height: 54px;
	border: 1px solid #F3F2E7;
	border-radius: 100px;
	background: transparent url('../images/slider-prev-arrow.svg') no-repeat center/ 32px;
}
.testimonial__slider .owl-carousel .owl-nav button.owl-next {
	background-image: url('../images/slider-next-arrow.svg');
}
.testimonial__slider .owl-carousel .owl-nav button.owl-next:hover,
.testimonial__slider .owl-carousel .owl-nav button.owl-prev:hover {
	border-color: var(--tertiary-color);
	background-color: rgba(255, 210, 73, 0.5);
}
.quote__icon {
	width: 46px;
	margin: 0 auto 30px;
}
.testimonial__box {
	width: 100%;
	max-width: 950px;
	text-align: center;
}
.testimonial__box p {
	font-size: 20px;
	color: var(--white-color);
	margin-bottom: 30px;
	text-transform: capitalize;
}
.testimonial__box h3 {
	margin-bottom: 0;
	color: var(--tertiary-color);
}

/* Contact Styles 
______________________*/
.contact-wrap {
	padding: 80px 0;
}
.contact__title {
	margin-bottom: 90px;
	text-align: center;
	text-transform: capitalize;
}
.contact {
	display: flex;
	align-items: stretch;
	justify-content: space-between;
}
.contact__left {
	width: 100%;
	padding-right: 55px;
}
.contact__left h3 {
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 50px;
}
form.contact__form {
	width: 100%;
}
.contact__field {
	margin-bottom: 35px;
}
.contact__field label {
	display: block;
	font-size: 16px;
	font-weight: 600;
	color: var(--primary-color);
	margin-bottom: 10px;
}
.contact__field textarea,
.contact__field input {
	width: 100%;
	padding: 25px 30px;
	border: 0;
	border-radius: 10px;
	font-size: 16px;
	background: var(--white-color);
}
.contact__field textarea {
	height: 200px;
}
.contact__field textarea::placeholder,
.contact__field input::placeholder {
	color: #C1C1C1;
}
form.contact__form button {
	border: 0;
}
.contact__right {
	width: 100%;
	max-width: 395px;
	padding: 90px 30px;
	border-radius: 15px;
	background: var(--white-color);
}
.contact__right {
	text-align: center;
}
.contact__right h3 {
	font-size: 32px;
	font-weight: 700;
	color: var(--secondary-color);
	text-decoration: underline;
	margin-bottom: 15px;
}
.contact__right p {
	font-size: 16px;
	color: #C1C1C1;
	margin-bottom: 20px;
}
.contact__right-box {
	padding: 46px 0;
	border-bottom: 1px solid var(--light-color);
}
.contact__right-box:last-child {
	padding-bottom: 0;
	border-bottom: 0;
}
.contact__right-box h4 {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 22px;
}
.contact__right-box a {
	font-size: 16px;
	color: #C1C1C1;
}
.contact__right-box a:hover {
	color: var(--secondary-color);
}
.follow__links {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}
.follow__links a {
	display: block;
	width: 30px;
	height: 30px;
}
.follow__links a svg {
	display: block;
	width: 100%;
	height: 100%;
	fill: var(--secondary-color);
	transition: fill 0.3s;
}
.follow__links a:hover svg {
	fill: var(--tertiary-color);
}

/* Footer Styles 
___________________*/
.footer-wrap {
	padding: 52px 0 30px;
	background: var(--primary-color);
}
.footer {
	display: flex;
	align-items: start;
	justify-content: space-between;
	flex-wrap: wrap;
	padding-bottom: 28px;
	margin-bottom: 30px;
	border-bottom: 1px solid var(--light-color);
}
.ft__description {
	width: 100%;
	max-width: 245px;
}
.ft__description a.main__logo {
	margin-bottom: 35px;
}
.ft__description p {
	font-size: 14px;
	font-weight: 500;
	color: var(--white-color);
	margin-bottom: 0;
}
.ft__box h3 {
	color: var(--white-color);
	margin-bottom: 30px;
}
.ft__list li {
	padding-bottom: 18px;
}
.ft__list li:last-child {
	padding-bottom: 0;
}
.ft__list a {
	font-size: 14px;
	font-weight: 500;
	color: var(--white-color);
	display: inline-flex;
	align-items: center;
	gap: 8px;
}
.ft__list a:hover {
	color: var(--tertiary-color);
}
.ft__list a svg {
	width: 16px;
	height: 16px;
	fill: var(--white-color);
}
.ft__list a:hover svg {
	fill: var(--tertiary-color);
}
.ft__list a span {
	width: 36px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 100px;
	background: #FFFFFF33;
}
.ft__box.newsletter {
	width: 100%;
	max-width: 300px;
}
form.newsletter__form {
	position: relative;
	margin-bottom: 54px;
}
form.newsletter__form input {
	width: 100%;
	border: 0;
	border-radius: 5px;
	padding: 13px 95px 13px 20px;
	font-size: 12px;
	font-weight: 500;
	background: var(--white-color);
}
form.newsletter__form input::placeholder {
	color: #C1C1C1;
}
form.newsletter__form button {
	position: absolute;
	top: 50%;
	right: 6px;
	transform: translate(0, -50%);
	font-size: 12px;
	border: 0;
	padding: 9px 23px;
	border-radius: 5px;
}
.ft__box.newsletter .follow__links {
	justify-content: start;
}
.ft__box.newsletter .follow__links a svg {
	fill: var(--white-color);
}
.ft__box.newsletter .follow__links a:hover svg {
	fill: var(--tertiary-color);
}
.copyright {
	font-size: 16px;
	color: var(--white-color);
	text-align: center;
	margin-bottom: 0;
}

/* Thank you Styles 
_________________________*/
.thanks-info {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	height: 100vh;
}
.thanks-info h1 {
	font-size: 50px;
}

/* Media Start 
____________________*/
@media (max-width: 1199px) {
	h1 {
		font-size: 55px;
	}
	.join__info h2,
	h2 {
		font-size: 50px;
	}
	.lead__info {
		margin-bottom: 55px;
	}
	.ft__description a.main__logo{
		margin-bottom: 25px;
	}
	.ft__description {
		max-width: 100%;
		margin-bottom: 35px;
	}
	form.newsletter__form {
		margin-bottom: 45px;
	}
	.about-feature__inner {
		padding: 20px 20px 40px;
	}
	.about-feature__inner h3 {
		margin-bottom: 25px;
	}
	.about__icon {
		width: 74px;
		height: 74px;
	}
	.about__icon svg {
		width: 30px;
	}
	.goal__box li {
		font-size: 25px;
	}
	.goal__box li span {
		font-size: 22px;
	}
	.goal__box {
		padding: 20px 5px;
	}
	.support__box {
		padding: 30px;
	}
	.support__box h3 {
		font-size: 28px;
	}
	.support-field__box input,
	.support-field__box select {
		padding: 20px 30px 20px 60px;
		background-position: right 30px center;
	}
	.support-field__box label {
		left: 30px;
	}
	.support__form button {
		padding: 22px 48px;
	}
	.faq-wrap {
		padding: 80px 0 110px;
	}
	.faq__img {
		width: 38%;
	}
	.faq__outer {
		width: 62%;
		padding-left: 50px;
	}
	.faq__box {
		padding: 30px;
	}
	.service-wrap {
		padding-bottom: 110px;
	}
	.service__box {
		padding: 40px 30px;
		margin-left: -50px;
	}
	.service__box h3 {
		font-size: 22px;
		margin-bottom: 15px;
	}
	.service__video span {
		width: 70px;
		height: 70px;
		outline-width: 10px;
	}
	.contact__title,
	.testimonial__title {
		margin-bottom: 80px;
	}
	.testimonial__box,
	.testimonial__slider .owl-stage-outer {
		max-width: 830px;
	}
	.testimonial__slider .owl-carousel .owl-nav button.owl-next,
	.testimonial__slider .owl-carousel .owl-nav button.owl-prev {
		width: 45px;
		height: 45px;
		background-size: 25px;
	}
	.contact__left {
		padding-right: 40px;
	}
	.contact__left h3 {
		font-size: 28px;
		margin-bottom: 35px;
	}
	.contact__field {
		margin-bottom: 30px;
	}
	.contact__right-box {
		padding: 40px 0;
	}
	.contact__right {
		max-width: 370px;
		padding: 70px 20px;
	}
	.contact__right h3 {
		font-size: 28px;
	}
	.contact__field textarea,
	.contact__field input {
		padding: 20px 25px;
	}
}
@media (min-width: 992px) {
	.header__list {
		display: flex !important;
	}
}
@media (max-width: 991px) {
	h1 {
		font-size: 50px;
	}
	.join__info h2,
	h2 {
		font-size: 45px;
	}
	.menu-btn {
		display: block;
	}
	.header__list {
		display: none;
		position: absolute;
		left: 0;
		right: 0;
		top: 100%;
		padding: 15px;
		background: #333644;
		margin: 0;
	}
	.header__list li {
		padding: 0 0 20px;
		text-align: center;
	}
	.header__list li:last-child {
		padding-bottom: 0;
	}
	.lead__info {
		margin-bottom: 40px;
	}
	.banner-wrap {
		padding: 160px 0;
	}
	.banner__row {
		flex-direction: column-reverse;
		justify-content: center;
		gap: 25px;
	}
	.banner__img {
		max-width: 500px;
	}
	.banner__info {
		max-width: 100%;
		padding: 15px 0 0;
	}
	.banner__info p {
		margin-bottom: 35px;
	}
	.banner__trust {
		margin-bottom: 35px;
	}
	.ft__box.newsletter {
		max-width: 100%;
		margin-top: 35px;
	}
	form.newsletter__form {
		max-width: 375px;
		margin-bottom: 35px;
	}
	.ft__box h3 {
		margin-bottom: 20px;
	}
	.about__row {
		flex-direction: column;
	}
	.about__info {
		max-width: 100%;
		padding: 0 0 30px;
	}
	.about__info h2 {
		margin-bottom: 20px;
	}
	.about__info p {
		margin-bottom: 35px;
	}
	.about-feature__outer {
		max-width: 100%;
	}
	.about__features.about-features__alt {
		margin-top: 0;
	}
	.about-feature__inner {
		padding: 20px;
	}
	.team__col {
		width: 50%;
	}
	.support {
		flex-direction: column;
	}
	.support_info {
		max-width: 100%;
		padding: 0 0 30px;
	}
	.support__box {
		max-width: 100%;
	}
	.join-wrap {
		padding: 70px 0;
	}
	.join {
		flex-direction: column;
	}
	.join__info {
		max-width: 100%;
		padding: 0 0 25px;
		text-align: center;
	}
	.join__info em {
		font-size: 22px;
	}
	.faq-wrap {
		padding: 70px 0;
	}
	.faq__img {
		width: 100%;
		height: 400px;
	}
	.faq__outer {
		width: 100%;
		padding: 30px 0 0;
	}
	.service-wrap {
		padding-bottom: 70px;
	}
	.service {
		flex-direction: column;
		gap: 25px;
	}
	.service__video {
		max-width: 100%;
	}
	.service__box {
		max-width: 100%;
		margin-left: 0;
	}
	.contact__title,
	.testimonial__title {
		margin-bottom: 60px;
	}
	.testimonial__slider .owl-carousel .owl-nav button.owl-next,
	.testimonial__slider .owl-carousel .owl-nav button.owl-prev {
		width: 40px;
		height: 40px;
	}
	.testimonial__box,
	.testimonial__slider .owl-stage-outer {
		max-width: 650px;
	}
	.quote__icon {
		width: 40px;
		margin-bottom: 25px;
	}
	.testimonial__box p {
		margin-bottom: 25px;
	}
	.contact-wrap {
		padding: 70px 0;
	}
	.contact {
		flex-direction: column;
	}
	.contact__left {
		padding: 0 0 30px;
	}
	.contact__right {
		max-width: 100%;
		padding: 40px 20px;
	}
	.support_info em {
		margin-bottom: 5px;
	}
}
@media (max-width: 767px) {
	.thanks-info h1,
	h1 {
		font-size: 45px;
	}
	.join__info h2,
	h2 {
		font-size: 40px;
	}
	h3 {
		font-size: 18px;
	}
	p,
	h1,h2,h3,h4,h5,h6 {
		margin-bottom: 20px;
	}
	.sticky__row {
		flex-direction: column;
		justify-content: center;
	}
	.sticky__row p {
		align-items: start;
	}
	.sticky__row p span {
		margin-top: 2px;	
	}
	a.main__logo {
		max-width: 350px;
	}
	.header-wrap.active .header a.main__logo {
		max-width: 300px;
	}
	.lead__info {
		margin-bottom: 30px;
	}
	.lead__info em,
	.about__info em {
		margin-bottom: 5px;
	}
	.banner__trust p,
	.banner__info em {
		font-size: 18px;
	}
	.join .theme-btn,
	.support__form button,
	.banner__info .theme-btn {
		font-size: 18px;
		padding: 16px 35px;
	}
	.banner-wrap{
		padding: 140px 0;
	}
	.banner__trust img {
		width: 120px;
	}
	.footer-wrap {
		padding: 40px 0 20px;
	}
	.footer {
		gap: 35px;
		margin-bottom: 25px;
	}
	.ft__description {
		margin-bottom: 0;
	}
	.ft__box {
		width: 46%;
	}
	.ft__box.newsletter {
		max-width: 46%;
		margin-top: 0;
	}
	.about-wrap {
		padding: 60px 0 30px;
	}
	.team-wrap {
		padding: 30px 0 60px;
	}
	.support-wrap {
		padding: 60px 0;
	}
	.support__box h3 {
		font-size: 25px;
	}
	.goal__box li {
		font-size: 22px;
	}
	.goal__box li span {
		font-size: 20px;
	}
	.join-wrap {
		padding: 60px 0;
	}
	.join__info em {
		font-size: 20px;
	}
	.faq-wrap {
		padding: 60px 0;
	}
	.faq__box {
		margin-bottom: 25px;
	}
	.service-wrap {
		padding-bottom: 60px;
	}
	.service__video span {
		width: 60px;
		height: 60px;
		outline-width: 7px;
	}
	.testimonial-wrap {
		padding: 40px 0;
	}
	.contact__title,
	.testimonial__title {
		margin-bottom: 40px;
	}
	.testimonial__box {
		padding: 0 50px;
	}
	.testimonial__box p {
		font-size: 18px;
	}
	.quote__icon {
		width: 35px;
	}
	.contact-wrap {
		padding: 60px 0;
	}
	.contact__left h3 {
		font-size: 25px;
		margin-bottom: 25px;
	}
	.contact__right h3 {
		font-size: 25px;
	}
	.contact__field {
		margin-bottom: 25px;
	}
	.contact__right-box {
		padding: 30px 0;
	}
}
@media (max-width: 575px) {
	.thanks-info h1,
	h1 {
		font-size: 38px;
	}
	.join__info h2,
	h2 {
		font-size: 32px;
	}
	p,
	h1,h2,h3,h4,h5,h6 {
		margin-bottom: 18px;
	}
	body, input, select, textarea,
	.banner__trust p,
	.banner__info em,
	p {
		font-size: 16px;
	}
	a.main__logo {
		max-width: 280px;
	}
	.header-wrap.active .header a.main__logo {
		max-width: 250px;
	}
	.banner-wrap {
		padding: 120px 0;
	}
	.banner__trust,
	.banner__info p {
		margin-bottom: 25px;
	}
	.join .theme-btn,
	.support__form button,
	.banner__info .theme-btn,
	.theme-btn {
		font-size: 16px;
		padding: 14px 25px;
	}
	.theme-btn span {
		width: 14px;
	}
	.banner__trust img {
		width: 100px;
		margin-right: 15px;
	}
	.ft__description a.main__logo {
		margin-bottom: 20px;
	}
	.ft__box {
		width: 100%;
	}
	.ft__box.newsletter {
		max-width: 100%;
	}
	form.newsletter__form {
		margin-bottom: 25px;
	}
	.copyright {
		font-size: 14px;
	}
	.about-wrap {
		padding-top: 40px;
	}
	.about__info h2 {
		margin-bottom: 15px;
	}
	.about__info p {
		margin-bottom: 25px;
	}
	.about-feature__outer {
		flex-direction: column;
		row-gap: 20px;
		margin: 0;
	}
	.about__features {
		row-gap: 20px;
		padding: 0;
	}
	.about__features {
		width: 100%;
	}
	.team__row {
		row-gap: 10px;
		margin: 0 -5px 30px;
	}
	.team__col {
		padding: 0 5px;
	}
	.social__sharing {
		margin-bottom: 20px;
	}
	.social__sharing ul {
		gap: 20px;
	}
	.social__sharing h3 {
		margin-bottom: 10px;
	}
	.social__sharing ul a {
		width: 28px;
		height: 28px;
	}
	.goal__box {
		padding: 15px;
	}
	.goal__box {
		width: 100%;
		flex-direction: column;
		gap: 15px;
	}
	.goal__box li {
		text-align: center;
	}
	.goal__box li::after {
		display: none;
	}
	.support__box {
		padding: 20px;
	}
	.support-field__box {
		margin-bottom: 20px;
	}
	.support__box h3 {
		font-size: 22px;
	}
	.support-field__box input,
	.support-field__box select {
		padding: 15px 20px 15px 35px;
		background-position: right 20px center;
	}
	.support-field__box label {
		left: 12px;
		width: 17px;
	}
	.checkbox__field {
		margin: 0 0 30px 20px;
	}
	.join-wrap {
		padding: 50px 0;
	}
	.join__info em {
		font-size: 18px;
	}
	.faq__img {
		height: 300px;
	}
	.faq__box {
		margin-bottom: 20px;
		padding: 20px;
	}
	.service {
		gap: 20px;
	}
	.service__video {
		padding-bottom: 50%;
	}
	.service__video span {
		width: 50px;
		height: 50px;
		outline-width: 5px;
	}
	.service__box {
		padding: 25px;
	}
	.service__box h3 {
		font-size: 20px;
	}
	.testimonial__box {
		padding: 0 40px;
	}
	.quote__icon {
		width: 30px;
		margin-bottom: 20px;
	}
	.contact__title,
	.testimonial__title {
		margin-bottom: 30px;
	}
	.testimonial__box p {
		font-size: 16px;
		margin-bottom: 20px;
	}
	.testimonial__slider .owl-carousel .owl-nav button.owl-next,
	.testimonial__slider .owl-carousel .owl-nav button.owl-prev {
		width: 30px;
		height: 30px;
		background-size: 20px;
	}
	.contact__left h3 {
		font-size: 22px;
		margin-bottom: 20px;
	}
	.contact__right h3 {
		font-size: 22px;
	}
	.contact__field {
		margin-bottom: 20px;
	}
	.contact__field textarea,
	.contact__field input {
		padding: 15px 20px;
	}
	.contact__field textarea {
		height: 170px;
	}
	.contact__right {
		padding: 30px 20px;
	}
	.contact__right-box {
		padding: 20px 0;
	}
	.contact__right-box h4 {
		font-size: 18px;
		margin-bottom: 15px;
	}
}