@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
:root {
	--font-family: "Arial", sans-serif;
	--second-family: "ATC Arquette", sans-serif;
	--third-family: "Inter", sans-serif;
	--font3: "FontAwesome", sans-serif;
}

body,
html {
	height: 100%;
	scroll-behavior: smooth;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

.font-1 {
	font-family: "Arial", sans-serif;
}

.font-2 {
	font-family: "ATC Arquette";
}

.font-3 {
	font-family: "Inter", sans-serif;
}

.font-4 {
	font-family: "FontAwesome", sans-serif;
}

:focus {
	box-shadow: none !important;
	border-color: #01204a5e !important;
}

body {
	font-family: "ATC Arquette";
	--font-family: "ATC Arquette";
	/* font-family: var(--second-family); */
	font-family: Inter;
	font-size: 1rem;
	font-weight: 300;
	line-height: 26px;
	color: #666666;
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
}

body,
html {
	height: 100%;
}

/* Black */

@font-face {
	font-family: "ATC Arquette";
	src: url("../fonts/ATCArquette-Black.ttf") format("ttf");
	font-weight: 900;
	font-style: normal;
}

@font-face {
	font-family: "ATC Arquette";
	src: url("../fonts/ATCArquette-BlackItalic.ttf") format("ttf");
	font-weight: 800;
	font-style: normal;
}

/* Bold */

@font-face {
	font-family: "ATC Arquette";
	src: url("../fonts/ATCArquette-Bold.ttf") format("ttf");
	font-weight: 700;
	font-style: normal;
}

@font-face {
	font-family: "ATC Arquette";
	src: url("../fonts/ATCArquette-BoldItalic.ttf") format("ttf");
	font-weight: 700;
	font-style: italic;
}

/* SemiBold */

@font-face {
	font-family: "ATC Arquette";
	src: url("../fonts/ATCArquette-SemiboldItalic.ttf") format("ttf");
	font-weight: 600;
	font-style: italic;
}

/* Medium */

@font-face {
	font-family: "ATC Arquette";
	src: url("../fonts/ATCArquette-Medium.ttf") format("ttf");
	font-weight: 500;
	font-style: normal;
}

@font-face {
	font-family: "ATC Arquette";
	src: url("../fonts/ATCArquette-MediumItalic.ttf") format("ttf");
	font-weight: 500;
	font-style: italic;
}

/* Regular */

@font-face {
	font-family: "ATC Arquette";
	src: url("../fonts/ATCArquette-Regular.ttf") format("ttf");
	font-weight: 400;
	font-style: normal;
}

@font-face {
	font-family: "ATC Arquette";
	src: url("../fonts/ATCArquette-RegularItalic.ttf") format("ttf");
	font-weight: 400;
	font-style: italic;
}

/* Light */

@font-face {
	font-family: "ATC Arquette";
	src: url("../fonts/ATCArquette-Light.ttf") format("ttf");
	font-weight: 300;
	font-style: normal;
}

@font-face {
	font-family: "ATC Arquette";
	src: url("../fonts/ATCArquette-LightItalic.ttf") format("ttf");
	font-weight: 300;
	font-style: italic;
}

/* ExtraLight */

@font-face {
	font-family: "ATC Arquette";
	src: url("../fonts/ATCArquette-Extralight.ttf") format("ttf");
	font-weight: 200;
	font-style: normal;
}

@font-face {
	font-family: "ATC Arquette";
	src: url("../fonts/ATCArquette-ExtralightItalic.ttf") format("ttf");
	font-weight: 200;
	font-style: italic;
}

/* SWIPER SLIDER  */

.hero-slider {
	width: 100%;
	height: 700px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	position: relative;
	z-index: 0;
}

@media (max-width: 991px) {
	.hero-slider {
		height: 600px;
	}
}

@media (max-width: 767px) {
	.hero-slider {
		height: 500px;
	}
}

.hero-slider .swiper-slide {
	overflow: hidden;
	color: #fff;
}

.hero-slider .swiper-container {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
}

.hero-slider .slide-inner {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
	background-size: cover;
	background-position: center;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: left;
}

.hero-slider .swiper-button-prev,
.hero-slider .swiper-button-next {
	background: transparent;
	width: 55px;
	height: 57px;
	line-height: 53px;
	margin-top: -30px;
	text-align: center;
	border: 2px solid #d4d3d3;
	border-radius: 55px;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

.hero-slider:hover .swiper-button-prev,
.hero-slider:hover .swiper-button-next {
	transform: translateX(0);
	opacity: 1;
	visibility: visible;
}

@media (max-width: 767px) {
	.hero-slider .swiper-button-prev,
	.hero-slider .swiper-button-next {
		display: none;
	}
}

.hero-slider .swiper-button-prev {
	left: 25px;
	transform: translateX(50px);
}

.hero-slider .swiper-button-prev:before {
	font-family: "Font Awesome 5 Free";
	content: "\f060";
	font-size: 15px;
	color: #d4d3d3;
	font-style: normal;
	display: inline-block;
	vertical-align: middle;
	font-weight: 900;
}

.hero-slider .swiper-button-next {
	right: 25px;
	transform: translateX(-50px);
}

.hero-slider .swiper-button-next:before {
	font-family: "Font Awesome 5 Free";
	content: "\f061";
	font-size: 15px;
	color: #d4d3d3;
	font-style: normal;
	display: inline-block;
	vertical-align: middle;
	font-weight: 900;
}

.hero-slider .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	text-align: left;
	line-height: 12px;
	font-size: 12px;
	color: #000;
	opacity: 0.3;
	background: #fff;
	transition: all 0.2s ease;
}

.hero-slider .swiper-pagination-bullet-active {
	opacity: 1;
}

.hero-slider .swiper-container-horizontal > .swiper-pagination-bullets,
.hero-slider .swiper-pagination-custom,
.hero-slider .swiper-pagination-fraction {
	bottom: 30px;
}

@media screen and (min-width: 992px) {
	.hero-slider .swiper-container-horizontal > .swiper-pagination-bullets,
	.hero-slider .swiper-pagination-custom,
	.hero-slider .swiper-pagination-fraction {
		/*     display: none; */
	}
}

.swiper-pagination {
	text-align: left;
}

.hero-slider .swiper-container-horizontal > .swiper-pagination-bullets {
	bottom: 50px;
	max-width: 1200px;
	padding: 0 15px;
	margin: 0 auto;
	left: 50%;
	transform: translateX(-50%);
}

@media (min-width: 767px) {
	.hero-slider .swiper-container-horizontal > .swiper-pagination-bullets {
		bottom: 30px;
	}
}

/*--------------------------------------------------------------
	#hero-style
--------------------------------------------------------------*/

.hero-style {
	height: 100vh;
	transition: all 0.4s ease;
}

@media (max-width: 991px) {
	.hero-style {
		/* height: 600px; */
	}
}

@media (max-width: 767px) {
	.hero-style {
		/* height: 500px; */
	}
}

@media screen and (min-width: 992px) {
	.hero-style .container {
		/* padding-top: 295px; */
	}
}

.hero-style .slide-title,
.hero-style .slide-text,
.hero-style .slide-btns {
	/* max-width: 690px; */
	/* text-align: right; */
}

.hero-style .slide-title h2 {
	line-height: 1;
	margin: 0 0 40px;
	text-transform: capitalize;
	transition: all 0.4s ease;
	font-weight: 700;
	font-size: 58px;
	/* letter-spacing: -0.05em; */
	color: #fff;
	font-family: var(--second-family);
	line-height: 124%;
}

@media (max-width: 1199px) {
	.hero-style .slide-title h2 {
		font-size: 57px;
	}
}

@media (max-width: 991px) {
	.hero-style .slide-title h2 {
		font-size: 50px;
		margin: 0 0 45px;
	}
}

@media (max-width: 767px) {
	.hero-style .slide-title h2 {
		font-size: 35px;
		margin: 0 0 40px;
	}
}

.hero-style .slide-text p {
	line-height: 1.25;
	margin: 0 0 13px;
	transition: all 0.4s ease;
	font-family: var(--second-family);
	font-size: 22px;
	letter-spacing: 0.13em;
	color: #fff;
	font-weight: 600;
	text-transform: uppercase;
}

@media (max-width: 767px) {
	.hero-style .slide-text p {
		font-size: 16px;
		font-size: 1rem;
		font-weight: normal;
		margin: 0 0 15px;
	}
}

.hero-style .slide-btns > a:first-child {
	margin-right: 10px;
}

/*--------------------------------------------------------------
	#button-style
--------------------------------------------------------------*/

.theme-btn,
.theme-btn-s2 {
	text-align: center;
	padding: 9px 32px;
	border: 0;
	border-radius: 3px;
	display: inline-block;
	line-height: initial;
	transition: all 0.4s ease;
	font-weight: 600;
	font-size: 17px;
	line-height: 147%;
	color: #fff;
	display: flex;
	width: fit-content;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

a {
	text-decoration: none;
	transition: all 0.2s ease;
}

.theme-btn-s2 {
	background-color: #a91622;
	color: #fff;
	border-radius: 29px;
}

.theme-btn:hover, .theme-btn-s2:hover, .theme-btn:focus, .theme-btn-s2:focus, .theme-btn:active, .theme-btn-s2:active {
    background-color: #710b13;
    color: #fff;
}

.theme-btn-s3 {
	font-size: 16px;
	font-weight: 500;
	line-height: 1.5;
	color: #ffffff;
	/* text-transform: uppercase; */
	position: relative;
}

i.fa-chevron-circle-right {
	height: 22px;
	width: 22px;
}

a:hover {
	text-decoration: none;
}

@media (max-width: 991px) {
	.theme-btn,
	.theme-btn-s2 {
		font-size: 13px;
		padding: 15px 25px;
	}
}

@media (max-width: 991px) {
	.theme-btn-s3 {
		font-size: 13px;
		padding: 15px 0px;
	}
}

@media (max-width: 767px) {
	.theme-btn,
	.theme-btn-s2 {
		padding: 13px 20px;
		font-size: 13px;
	}
}

/* NAVBAR STYLES */

nav.head-sub {
	width: 100%;
	height: 90px;
	box-shadow: rgba(0, 0, 0, 0.2) 0px 1px 2px;
	z-index: 99;
	border-bottom: 1px solid rgb(124 124 124 / 14%);
	background: radial-gradient(
		100.68% 1193.21% at 5.47% -55.56%,
		#000000 0%,
		#747474 60.1%,
		#000000 99.45%
	);
	background: #040c19;
	position: sticky;
	top: 0;
}
nav.header {
	width: 100%;
	height: 90px;
	box-shadow: rgba(0, 0, 0, 0.2) 0px 1px 2px;
	z-index: 99;
	position: absolute;
	background: transparent;
	border-bottom: 1px solid rgb(124 124 124 / 14%);
}

nav .navbar {
	height: 100%;
	/* max-width: 1250px; */
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: auto;
	/* background: red; */
	/* padding: 0 50px; */
}

.navbar .logo a {
	font-size: 30px;
	color: #fff;
	text-decoration: none;
	font-weight: 600;
}

nav .navbar .nav-links {
	line-height: 90px;
	height: 100%;
}

nav .navbar .links {
	display: flex;
}

nav .navbar .links li {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	list-style: none;
	padding: 0 14px;
}

nav .navbar .links li a {
	height: 100%;
	text-decoration: none;
	white-space: nowrap;
	color: #fff;
	font-size: 15px;
	font-weight: 500;
}

.links li:hover .htmlcss-arrow,
.links li:hover .js-arrow {
	transform: rotate(180deg);
}

nav .navbar .links li .arrow {
	/* background: red; */
	height: 100%;
	width: 22px;
	line-height: 90px;
	text-align: center;
	display: inline-block;
	/* color: #fff; */
	transition: all 0.3s ease;
}

nav .navbar .links li .sub-menu {
	position: absolute;
	top: 70px;
	left: 15px;
	line-height: 40px;
	background: #f8f8f8;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
	border-radius: 0px 15px 15px 15px;
	display: none;
	z-index: 2;
}

@media (min-width: 1025px) {
	nav .navbar .links li:hover .sub-menu {
		display: block;
	}
}
@media (min-width: 1025px) {
	nav .navbar .links li:hover .sub-menu {
		display: block;
	}
}



.navbar .links li .sub-menu li {
	padding: 0px 15px 0px 15px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 1025px) {
	.navbar .links li .sub-menu li {
		padding: 0px 30px 0px 15px;
	}
}

.navbar .links li .sub-menu a {
	color: #000000;
	font-size: 14px;
	font-weight: 500;
}

.navbar .links li .sub-menu .more-arrow {
	line-height: 40px;
}

.navbar .links li .htmlCss-more-sub-menu {
	/* line-height: 40px; */
}

.navbar .links li .sub-menu .more-sub-menu {
	position: absolute;
	top: 0;
	left: 100%;
	border-radius: 0 4px 4px 4px;
	z-index: 1;
	display: none;
	border-radius: 0px 15px 15px 15px;
}

.links li .sub-menu .more:hover .more-sub-menu {
	display: block;
}

.navbar .nav-links .sidebar-logo {
	display: none;
}

.navbar .bx-menu {
	display: none;
}

@media (max-width: 920px) {
	nav .navbar {
		max-width: 100%;
		/* padding: 0 25px; */
	}
	nav .navbar .logo a {
		font-size: 27px;
	}
	nav .navbar .links li {
		padding: 0 10px;
		white-space: nowrap;
	}
	nav .navbar .links li a {
		font-size: 15px;
	}
}

@media (max-width: 1024px) {
	nav {
		/* position: relative; */
	}
	.navbar .bx-menu {
		display: block;
	}
	nav .navbar .nav-links {
		position: fixed;
		top: 0;
		left: -100%;
		display: block;
		max-width: 330px;
		width: 100%;
		background: #3e8da8;
		line-height: 40px;
		padding: 20px;
		box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
		transition: all 0.5s ease;
		z-index: 1000;
		background: linear-gradient(
			215deg,
			rgba(24, 25, 26, 1) 20%,
			rgba(15, 31, 21, 1) 42%,
			rgb(80 92 86) 77%,
			rgba(0, 0, 0, 1) 100%
		);
	}
	.navbar .nav-links .sidebar-logo {
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	.sidebar-logo .logo-name {
		font-size: 25px;
		color: #fff;
	}
	.sidebar-logo i,
	.navbar .bx-menu {
		font-size: 30px;
		color: #fff;
	}
	nav .navbar .links {
		display: block;
		margin-top: 20px;
	}
	nav .navbar .links li .arrow {
		line-height: 40px;
	}
	nav .navbar .links li {
		display: block;
	}
	nav .navbar .links li .sub-menu {
		position: relative;
		top: 0;
		box-shadow: none;
		display: none;
	}
	nav .navbar .links li .sub-menu li {
		border-bottom: none;
	}
	.navbar .links li .sub-menu .more-sub-menu {
		display: none;
		position: relative;
		left: 0;
	}
	.navbar .links li .sub-menu .more-sub-menu li {
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	.links li:hover .htmlcss-arrow,
	.links li:hover .js-arrow {
		transform: rotate(0deg);
	}
	.navbar .links li .sub-menu .more-sub-menu {
		display: none;
	}
	.navbar .links li .sub-menu .more span {
		/* background: red; */
		display: flex;
		align-items: center;
		/* justify-content: space-between; */
	}
	.links li .sub-menu .more:hover .more-sub-menu {
		display: none;
	}
	nav .navbar .links li:hover .htmlCss-sub-menu,
	nav .navbar .links li:hover .js-sub-menu {
		display: none;
	}
	.navbar .nav-links.show1 .links .htmlCss-sub-menu,
	.navbar .nav-links.show3 .links .js-sub-menu,
	.navbar .nav-links.show2 .links .more .more-sub-menu {
		display: block;
	}
	.navbar .nav-links.show1 .links .htmlcss-arrow,
	.navbar .nav-links.show3 .links .js-arrow {
		transform: rotate(180deg);
	}
	.navbar .nav-links.show2 .links .more-arrow {
		transform: rotate(90deg);
	}
}

@media (max-width: 370px) {
	nav .navbar .nav-links {
		max-width: 100%;
	}
}

@media (max-width: 1024px) {
	nav .navbar .links li .sub-menu {
		display: none;
	}
	nav .navbar .links li.open .sub-menu {
		display: block;
	}
}





/* test  */

/* play button left */

.play-button {
	position: absolute;
	bottom: -20px;
	left: 100px;
	margin: 0;
	padding: 0;
	list-style: none;
	width: 65px;
	height: 65px;
	background: #0f7ff5;
	text-align: center;
	border-radius: 50%;
	-webkit-animation: ripple-white3 3s linear infinite;
	animation: ripple-white3 3s linear infinite;
}

@media (max-width: 991px) {
	.play-button {
		left: 95px;
		bottom: -5px;
	}
}

@keyframes ripple-white3 {
	0% {
		-webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.1),
			0 0 0 10px rgba(255, 255, 255, 0.1), 0 0 0 20px rgba(255, 255, 255, 0.1);
		box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.1),
			0 0 0 10px rgba(255, 255, 255, 0.1), 0 0 0 20px rgba(255, 255, 255, 0.1);
	}
	100% {
		-webkit-box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.1),
			0 0 0 20px rgba(255, 255, 255, 0.1), 0 0 0 100px rgba(255, 255, 255, 0);
		box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.1),
			0 0 0 20px rgba(255, 255, 255, 0.1), 0 0 0 100px rgba(255, 255, 255, 0);
	}
}

.play-button::after {
	content: "";
	top: 21px;
	left: 26px;
	position: absolute;
	border-left: 20px solid #fff;
	border-top: 13px solid transparent;
	border-bottom: 13px solid transparent;
	border-right: 20px solid transparent;
}

/* video pop up home  */

.mfp-fade.mfp-bg {
	opacity: 0;
	-webkit-transition: all 0.15s ease-out;
	-moz-transition: all 0.15s ease-out;
	transition: all 0.15s ease-out;
}

.mfp-fade.mfp-bg.mfp-ready {
	opacity: 0.8;
}

.mfp-fade.mfp-bg.mfp-removing {
	opacity: 0;
}

.mfp-fade.mfp-wrap .mfp-content {
	opacity: 0;
	-webkit-transition: all 0.15s ease-out;
	-moz-transition: all 0.15s ease-out;
	transition: all 0.15s ease-out;
}

.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
	opacity: 1;
}

.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
	opacity: 0;
}

/* pop-up end  */

/* SLICK SLIDER  */

.slick-dots {
	bottom: -40px !important;
}

/* CONTACT PAGE STYLE  */
input:-webkit-autofill {
	-webkit-box-shadow: 0 0 0 30px #000 inset !important;
	-webkit-text-fill-color: white !important;
}


/*OVERLAY HOME SLIDER */

.bs-slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(349deg, #1010107a 63%, #000000d4 100%);
}
.donate-section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(349deg, #1010107a 63%, #000000d4 100%);
}
