@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

:root {
  --primaryColor: #16306d;
  --secondaryColor: #cdfd50;
  --thirdColor: #5a4949;
  --gradientBgColor: linear-gradient(45deg, var(--primaryColor), var(--secondaryColor));
  --primaryTextColor: rgb(18, 43, 18);
  --secondaryTextColor: rgb(141, 141, 141);
}

body {
  color: #343434;
  font-family: "Montserrat", sans-serif;
}

/* width */
::-webkit-scrollbar {
  width: 0px;
  height: 0px;
}

/* Track */
::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.048);
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: rgb(117, 117, 117);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primaryColor);
}

.container {
  width: 80%;
  margin: 0 auto;
}
@media (max-width: 1800px) {
  .container {
    width: 85%;
  }
}
@media (max-width: 1024px) {
  .container {
    width: 90%;
  }
}
@media (max-width: 480px) {
  .container {
    width: 95%;
  }
}

a,
article,
button,
div,
span,
i,
b,
h1,
h2,
h3,
h4,
h5,
h6,
p,
input,
ul,
li,
select,
label,
textarea {
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
  font-family: "Montserrat", sans-serif;
}

input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
  font-family: "Montserrat", sans-serif;
}

input {
  -webkit-tap-highlight-color: transparent;
}

::-webkit-datetime-edit-year-field:not([aria-valuenow]),
::-webkit-datetime-edit-month-field:not([aria-valuenow]),
::-webkit-datetime-edit-day-field:not([aria-valuenow]) {
  color: transparent;
}

video::-internal-media-controls-overlay-cast-button {
  display: none;
}

textarea {
  resize: none;
  font-family: "Montserrat", sans-serif;
}

::-moz-selection {
  color: white;
  background: #1d1d1d;
}

::selection {
  color: white;
  background: #1d1d1d;
}

p {
  font-family: "Montserrat", sans-serif;
}

main {
  display: flex;
  flex-direction: column;
  width: 100%;
  overflow: hidden;
}

.shimmer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 105;
  background: rgba(0, 0, 0, 0.486);
  display: none;
}

.shimmer2 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 105;
  background: rgba(255, 255, 255, 0.672);
  display: none;
}

.successPopup{
	position: fixed;
	width: 400px;
	background: white;
	transform: translate(-50%, -50%);
	top: 50%;
	left :50%;
	z-index: 150;
	padding: 40px;
	border-radius :20px;
	display: none;
}
@media(max-width:480px){
	.successPopup{
		width: 95%;
	}
}
.successPopup .successPopupMain{
	width :100%;
	display: flex;
	justify-content: center;
	align-items :center;
	flex-direction :column;
}
.successPopup .successPopupMain .successPopupThumbnail{
	width: 100px;
}
.successPopup .successPopupMain .successPopupThumbnail img{
	width: 100%;
	height :100%;
	object-fit: contain;
}
.successPopup .successPopupMain .successPopupDetails{
	width :100%;
	display: flex;
	justify-content: center;
	align-items :center;
	flex-direction :column;
	margin-top :20px;
}
.successPopup .successPopupMain .successPopupDetails h2{
	font-size: 24px;
	font-weight: 600;
	text-align: center;
}
.successPopup .successPopupMain .successPopupDetails p{
	font-size: 14px;
	margin-top :10px;
	opacity: .7;
	line-height: 1.5;
	text-align: center;
}
.successPopup .successPopupMain .successPopupDetails .closeSuccessPopup{
	padding: 14px 30px;
	font-size: 16px;
	cursor: pointer;
	background: var(--primaryColor);
	color: white;
	border-radius: 10px;
	margin-top: 20px;
	transition: .3s;
}
.successPopup .successPopupMain .successPopupDetails .closeSuccessPopup:hover{
	transition: .3s;
	opacity: .7;
}

.scrollTopBtnArea {
  position: fixed;
  z-index: 15;
  width: 20px;
  height: 40px;
  bottom: 50px;
  right: 50px;
  display: none;
}
.scrollTopBtnArea .scrollTopBtn {
  width: 100%;
  height: 100%;
  border: 2px solid #fff;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.scrollTopBtnArea .scrollTopBtn .scrollTopBtnDot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #fff;
  animation: scroTopToggl 1s linear infinite;
}
@keyframes scroTopToggl {
  0% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(-8px);
  }
  50% {
    transform: translateY(0%);
  }
  75% {
    transform: translateY(8px);
  }
  100% {
    transform: translateY(0px);
  }
}

.videGalleryPopup {
  position: fixed;
  z-index: 110;
  max-height: 80vh;
  width: auto;
  background: #eee;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  display: none;
}
@media (max-width: 480px) {
  .videGalleryPopup {
    min-width: 95%;
  }
}
.videGalleryPopup video {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 480px) {
  .videGalleryPopup video {
    max-height: 65vh;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.title {
  font-size: 6em;
  line-height: 1.2;
  color: var(--primaryTextColor);
}
@media (max-width: 1800px) {
  .title {
    font-size: 5em;
  }
}
@media (max-width: 1200px) {
  .title {
    font-size: 2.7em;
  }
}
@media (max-width: 480px) {
  .title {
    font-size: 2.2em;
  }
}

.videoProductionsPopup {
  position: fixed;
  z-index: 200;
  width: 60%;
  background: white;
  border-radius: 20px;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  display: none;
}
@media (max-width: 1024px) {
  .videoProductionsPopup {
    width: 80%;
  }
}
@media (max-width: 768px) {
  .videoProductionsPopup {
    width: 90%;
  }
}
.videoProductionsPopup .videoProductionsPopupHead {
  width: 100%;
  padding: 12px 20px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  border-bottom: 1px solid #eee;
}
.videoProductionsPopup .videoProductionsPopupHead .closevideoProductionsPopup {
  width: 20px;
  height: 20px;
  cursor: pointer;
}
.videoProductionsPopup .videoProductionsPopupHead .closevideoProductionsPopup img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.videoProductionsPopup .videoProductionsPopupBody {
  width: 100%;
  height: 500px;
  overflow-y: auto;
  padding: 20px;
}
@media (max-width: 768px) {
  .videoProductionsPopup .videoProductionsPopupBody {
    height: 450px;
  }
}
@media (max-width: 480px) {
  .videoProductionsPopup .videoProductionsPopupBody {
    height: 260px;
  }
}
.videoProductionsPopup .videoProductionsPopupBody p {
  font-size: 24px;
  line-height: 36px;
  padding: 12px 20px;
}
.videoProductionsPopup .videoProductionsPopupBody iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 15px;
}
.videoProductionsPopup .videoProductionsPopupFooter {
  width: 100%;
  padding: 12px 20px;
  border-top: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.videoProductionsPopup .videoProductionsPopupFooter p {
  font-size: 20px;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .videoProductionsPopup .videoProductionsPopupFooter p {
    font-size: 16px;
  }
}

.pageLoad {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  background: #fff;
  z-index: 300;
  overflow: hidden;
  display: none;
}
.pageLoad .pageLoadPanel {
  position: absolute;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 1;
}
.pageLoad .pageLoadPanel .pageLoadPanelBox1 {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 0);
          clip-path: polygon(0 0, 0% 100%, 100% 0);
}
.pageLoad .pageLoadPanel .pageLoadPanelBox2 {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  -webkit-clip-path: polygon(0 100%, 100% 100%, 100% 0);
          clip-path: polygon(0 100%, 100% 100%, 100% 0);
}
.pageLoad .pageLoadPanel1 .pageLoadPanelBox1 {
  background: #5274c5;
}
.pageLoad .pageLoadPanel1 .pageLoadPanelBox2 {
  background: #5274c5;
}
.pageLoad .pageLoadPanel2 .pageLoadPanelBox1 {
  background: #2d4c95;
}
.pageLoad .pageLoadPanel2 .pageLoadPanelBox2 {
  background: #2d4c95;
}
.pageLoad .pageLoadPanel3 .pageLoadPanelBox1 {
  background: var(--primaryColor);
}
.pageLoad .pageLoadPanel3 .pageLoadPanelBox2 {
  background: var(--primaryColor);
}
.pageLoad .pageLoadText {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: white;
}
.pageLoad .pageLoadText .pageLoadTextBox {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 350px;
  overflow: hidden;
}
@media (max-width: 1440px) {
  .pageLoad .pageLoadText .pageLoadTextBox {
    height: 250px;
  }
}
@media (max-width: 1024px) {
  .pageLoad .pageLoadText .pageLoadTextBox {
    height: 200px;
  }
}
@media (max-width: 768px) {
  .pageLoad .pageLoadText .pageLoadTextBox {
    height: 150px;
  }
}
@media (max-width: 480px) {
  .pageLoad .pageLoadText .pageLoadTextBox {
    height: 100px;
  }
}
.pageLoad .pageLoadText .pageLoadTextBox img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.pageLoad .pageLoadText p {
  font-size: 35px;
  margin-top: 50px;
  text-align: center;
}
@media (max-width: 1440px) {
  .pageLoad .pageLoadText p {
    font-size: 28px;
  }
}
@media (max-width: 1024px) {
  .pageLoad .pageLoadText p {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  .pageLoad .pageLoadText p {
    font-size: 20px;
  }
}
@media (max-width: 480px) {
  .pageLoad .pageLoadText p {
    font-size: 18px;
  }
}
.pageLoad .pageLoadText h2 {
  font-size: 25em;
  font-weight: 800;
  line-height: 0.8;
}
@media (max-width: 1440px) {
  .pageLoad .pageLoadText h2 {
    font-size: 20em;
  }
}
@media (max-width: 1024px) {
  .pageLoad .pageLoadText h2 {
    font-size: 15em;
  }
}
@media (max-width: 768px) {
  .pageLoad .pageLoadText h2 {
    font-size: 12em;
  }
}
.pageLoad .pageLoadText .letterY {
  transform: translateY(-350px);
}
.pageLoad .pageLoadText .letterF {
  transform: translateY(350px);
}
.pageLoad .pageLoadText .letterM {
  transform: translateY(-350px);
}

.sidemenu {
  width: 400px;
  position: fixed;
  z-index: 300;
  right: -110%;
  top: 0;
  height: 100vh;
  background: white;
  overflow: hidden;
  transition: 0.5s ease-in;
}
@media (max-width: 480px) {
  .sidemenu {
    width: 100%;
  }
}
.sidemenu .closeSidemenu {
  position: absolute;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 40px;
  right: 40px;
  cursor: pointer;
  border: 1px solid #343434;
  border-radius: 50%;
  padding: 8px;
}
.sidemenu .closeSidemenu img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  filter: invert(1);
}
.sidemenu .sidemenuLink {
  width: 100%;
  height: 100%;
  display: flex;
  margin-top: 200px;
}
@media(max-height: 750px){
	.sidemenu .sidemenuLink {
  		margin-top: 100px;
	}
}
.sidemenu .sidemenuLink ul {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.sidemenu .sidemenuLink ul li {
  list-style: none;
}
.sidemenu .sidemenuLink ul li a {
  text-decoration: none;
  color: #343434;
  font-size: 30px;
  font-weight: 400;
  text-align: center;
  padding: 12px 30px;
  transition: 0.3s;
  display: flex;
}
@media(max-height: 750px){
	.sidemenu .sidemenuLink ul li a {
  		font-size: 22px;
	}
}
.sidemenu .sidemenuLink ul li a:hover {
  transition: 0.3s;
  color: #beceff;
}
.sidemenu .sidemenuLink ul li .sidmenuLinkActive {
  color: #81a1ff;
}
.sidemenu .sidemenuLink ul .SidemenuDonateBtn {
  padding: 0px 20px;
  margin-top: 20px;
}
.sidemenu .sidemenuLink ul .SidemenuDonateBtn a {
  background: var(--primaryColor);
  border-radius: 50px;
  color: white;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
}
.sidemenu .sidemenuLink ul .SidemenuFamilyBtn {
  padding: 0px 20px;
  margin-top: 20px;
}
.sidemenu .sidemenuLink ul .SidemenuFamilyBtn a {
  color: var(--primaryColor);
  border-radius: 50px;
  border: 1px solid var(--primaryColor);
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
}
.sidemenu .sidemenuSocialLinks {
  position: absolute;
  bottom: 20px;
  left: 30px;
  display: flex;
  align-items: center;
  gap: 30px;
}
.sidemenu .sidemenuSocialLinks a {
  text-decoration: none;
  color: var(--primaryColor);
  font-size: 16px;
  transition: 0.3s;
}
.sidemenu .sidemenuSocialLinks a:hover {
  transition: 0.3s;
  color: #beceff;
}

.sidemenuActive {
  right: 0;
  transition: 0.5s ease-out;
}

nav {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  transition: 0.3s;
  background: var(--primaryColor);
}
nav .navMain {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
}
@media (max-width: 768px) {
  nav .navMain {
    height: 60px;
  }
}
nav .navMain .navLogo {
  text-decoration: none;
  width: 120px;
  height: 60%;
}
@media (max-width: 768px) {
  nav .navMain .navLogo {
    width: 100px;
  }
}
nav .navMain .navLogo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
nav .navMain .navLink {
  display: flex;
  justify-content: center;
  align-items: center;
}
nav .navMain .navLink ul {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 80px;
}
nav .navMain .navLink ul li {
  list-style: none;
}
nav .navMain .navLink ul li a {
  text-decoration: none;
  color: white;
  font-size: 18px;
}
nav .navMain .navBar {
  display: flex;
  justify-content: center;
  align-items: center;
}
nav .navMain .navBar .navBarBox {
  display: flex;
  flex-direction: column;
  width: 30px;
  align-items: center;
  position: relative;
  cursor: pointer;
  transition: 0.3s;
  gap: 4px;
}
nav .navMain .navBar .navBarBox span {
  width: 100%;
  height: 3px;
  background: #fff;
}
nav .navMain .donateBtn {
  margin-left: auto;
  margin-right: 50px;
}
@media (max-width: 768px) {
  nav .navMain .donateBtn {
    margin-right: 30px;
  }
}
@media (max-width: 480px) {
  nav .navMain .donateBtn {
    margin-right: 20px;
  }
}
nav .navMain .donateBtn a {
  text-decoration: none;
  background: white;
  color: var(--primaryColor);
  font-size: 18px;
  padding: 14px 30px;
  border-radius: 50px;
  transition: 0.3s;
}
@media (max-width: 768px) {
  nav .navMain .donateBtn a {
    padding: 10px 30px;
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  nav .navMain .donateBtn a {
    font-size: 14px;
    padding: 10px 20px;
  }
}
nav .navMain .donateBtn a:hover {
  transition: 0.3s;
  opacity: 0.7;
}

.homeNav {
  background: transparent;
}
.homeNav .navBar .navBarBox span {
  background: #fff !important;
}

.navActive {
  background: var(--primaryColor);
  transition: 0.3s;
}

#banner {
  width: 100%;
  position: relative;
  z-index: 0;
  overflow: hidden;
}
#banner::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 3, 36, 0.59);
  z-index: -1;
}
#banner .bannerImg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  background: black;
}
#banner .bannerImg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#banner .bannerImg video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#banner .bannerMain {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
#banner .bannerMain h1 {
  color: white;
  text-align: center;
  font-size: 6em;
  font-weight: 300;
  margin-top: 100px;
}
#banner .bannerMain h1 b {
  font-weight: 800;
}
@media (max-width: 1800px) {
  #banner .bannerMain h1 {
    font-size: 5em;
  }
}
@media (max-width: 1440px) {
  #banner .bannerMain h1 {
    font-size: 4.5em;
  }
}
@media (max-width: 1024px) {
  #banner .bannerMain h1 {
    font-size: 4em;
  }
}
@media (max-width: 768px) {
  #banner .bannerMain h1 {
    margin-top: 60px;
  }
}
@media (max-width: 480px) {
  #banner .bannerMain h1 {
    font-size: 3em;
  }
}
#banner .bannerMain p {
  color: white;
  text-align: center;
  font-size: 34px;
  font-weight: 300;
  margin-top: 10px;
  text-transform: uppercase;
}
@media (max-width: 1800px) {
  #banner .bannerMain p {
    font-size: 30px;
  }
}
@media (max-width: 1024px) {
  #banner .bannerMain p {
    font-size: 25px;
  }
}
@media (max-width: 480px) {
  #banner .bannerMain p {
    font-size: 20px;
  }
}
#banner .bannerMain a {
  text-decoration: none;
  background: white;
  color: var(--primaryColor);
  font-size: 20px;
  padding: 14px 40px;
  border-radius: 50px;
  margin-top: 50px;
  transition: 0.3s;
}
#banner .bannerMain a:hover {
  transition: 0.3s;
  background: var(--primaryColor);
  color: white;
}

#aboutBanner {
  width: 100%;
  padding: 100px 0px;
  margin-top: 100px;
}
@media (max-width: 768px) {
  #aboutBanner {
    padding-top: 50px;
    margin-top: 60px;
  }
}
#aboutBanner .aboutBannerMain {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
#aboutBanner .aboutBannerMain h1 {
  font-size: 3em;
  font-weight: 600;
  color: var(--primaryColor);
  text-align: center;
  width: 60%;
}
@media (max-width: 1800px) {
  #aboutBanner .aboutBannerMain h1 {
    font-size: 2.5em;
  }
}
@media (max-width: 1024px) {
  #aboutBanner .aboutBannerMain h1 {
    width: 80%;
  }
}
@media (max-width: 768px) {
  #aboutBanner .aboutBannerMain h1 {
    font-size: 2.3em;
    width: 100%;
  }
}
@media (max-width: 480px) {
  #aboutBanner .aboutBannerMain h1 {
    font-size: 2.2em;
  }
}
#aboutBanner .aboutBannerMain p {
  color: black;
  margin-top: 20px;
  font-size: 18px;
  line-height: 1.5;
  opacity: 0.7;
  text-align: center;
  width: 60%;
}
@media (max-width: 1800px) {
  #aboutBanner .aboutBannerMain p {
    font-size: 16px;
  }
}
@media (max-width: 1024px) {
  #aboutBanner .aboutBannerMain p {
    width: 80%;
  }
}
@media (max-width: 768px) {
  #aboutBanner .aboutBannerMain p {
    width: 100%;
  }
}
#aboutBanner .aboutBannerMain .aboutVideo {
  width: 100%;
  margin-top: 40px;
  height: 800px;
  background: #eee;
  position: relative;
  z-index: 0;
  background-image: url(../images/aboutBg.jpeg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 20px;
  overflow: hidden;
}
@media (max-width: 1440px) {
  #aboutBanner .aboutBannerMain .aboutVideo {
    height: 650px;
  }
}
@media (max-width: 1024px) {
  #aboutBanner .aboutBannerMain .aboutVideo {
    height: 600px;
  }
}
@media (max-width: 768px) {
  #aboutBanner .aboutBannerMain .aboutVideo {
    height: 450px;
  }
}
@media (max-width: 480px) {
  #aboutBanner .aboutBannerMain .aboutVideo {
    height: 250px;
  }
}
#aboutBanner .aboutBannerMain .aboutVideo video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#aboutBanner .aboutBannerMain .aboutVideo .soundBtn {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 2;
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 22px;
  background: rgba(0, 0, 0, 0.2196078431);
  border-radius: 50%;
  line-height: 0.5;
  cursor: pointer;
  transition: 0.3s;
}
#aboutBanner .aboutBannerMain .aboutVideo .soundBtn:hover {
  transition: 0.3s;
  background: rgba(0, 0, 0, 0.6117647059);
}

#galleryBanner {
  width: 100%;
  padding: 100px 0px;
}
@media (max-width: 768px) {
  #galleryBanner {
    padding-top: 50px;
  }
}
#galleryBanner .galleryBannerMain {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
#galleryBanner .galleryBannerMain h1 {
  font-size: 5em;
  color: var(--secondaryColor);
  color: #343434;
  width: 70%;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
}

#contactBanner {
  width: 100%;
  height: 400px;
  background: #eee;
  position: relative;
  z-index: 0;
}
@media (max-width: 480px) {
  #contactBanner {
    height: 300px;
  }
}
#contactBanner::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 3, 36, 0.301);
  z-index: 2;
}
#contactBanner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#whatWeDoBanner {
  width: 100%;
  background: #eee;
  position: relative;
  z-index: 0;
  overflow: hidden;
}
#whatWeDoBanner::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  display: block;
  background: #000;
  opacity: 0.4;
  z-index: -1;
}
#whatWeDoBanner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  z-index: -3;
}
#whatWeDoBanner video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  z-index: -2;
}
#whatWeDoBanner .whatWeDoBannerMain {
  width: 100%;
  padding: 200px 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: white;
}
.unarvArea  .whatWeDoBannerMain {
  padding: 200px 0px 80px 0px !important;
  }
@media (max-width: 768px) {
  #whatWeDoBanner .whatWeDoBannerMain {
    padding: 150px 0px;
  }
}
@media (max-width: 768px) {
.unarvArea  .whatWeDoBannerMain {
    padding: 150px 0px 50px 0px !important;
  }
}
@media (max-width: 480px) {
  #whatWeDoBanner .whatWeDoBannerMain {
    padding: 100px 0px;
  }
}
@media (max-width: 480px) {
.unarvArea  .whatWeDoBannerMain {
    padding: 100px 0px 50px 0px !important;
  }
}
#whatWeDoBanner .whatWeDoBannerMain h1 {
  color: white;
  text-align: center;
  font-size: 6em;
  font-weight: 500;
}
@media (max-width: 1800px) {
  #whatWeDoBanner .whatWeDoBannerMain h1 {
    font-size: 5em;
  }
}
@media (max-width: 1440px) {
  #whatWeDoBanner .whatWeDoBannerMain h1 {
    font-size: 4.5em;
  }
}
@media (max-width: 1024px) {
  #whatWeDoBanner .whatWeDoBannerMain h1 {
    font-size: 4em;
  }
}
@media (max-width: 768px) {
  #whatWeDoBanner .whatWeDoBannerMain h1 {
    font-size: 3.5em;
  }
}
@media (max-width: 480px) {
  #whatWeDoBanner .whatWeDoBannerMain h1 {
    font-size: 3em;
  }
}
@media (max-width: 480px) {
.unarvArea  .whatWeDoBannerMain h1 {
  margin-top: 50px !important;
  }
}
#whatWeDoBanner .whatWeDoBannerMain p {
  color: white;
  text-align: center;
  font-size: 34px;
  font-weight: 300;
  margin-top: 10px;
}
.unarvArea  .whatWeDoBannerMain p {
  margin-top: 200px !important;
  }
@media (max-width: 1800px) {
  #whatWeDoBanner .whatWeDoBannerMain p {
    font-size: 30px;
  }
}
@media (max-width: 1024px) {
  #whatWeDoBanner .whatWeDoBannerMain p {
    font-size: 25px;
  }
}
@media (max-width: 480px) {
  #whatWeDoBanner .whatWeDoBannerMain p {
    font-size: 20px;
  }
}
@media (max-width: 480px) {
.unarvArea  .whatWeDoBannerMain p {
  margin-top: 100px !important;
  }
}

.campusMinistry img:nth-of-type(2) {
  animation: bannerAnim2 6s linear infinite;
}
@keyframes bannerAnim2 {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  75% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}



/*# sourceMappingURL=main.css.map */