@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Titillium+Web:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700&display=swap');
/*
// <weight>: Use a value from 200 to 800
font-family: "Manrope", sans-serif;
font-optical-sizing: auto;
font-weight: <weight>;
font-style: normal;

// <weight>: 200, 300, 400, 600, 700, 900
font-family: "Titillium Web", sans-serif;
font-weight: 200;
font-style: normal;
*/

:root {
	--font-h: "Titillium Web", sans-serif;
	--font-p: "Manrope", sans-serif;
	--color-i: #48acd0; 
	--color-ii: #ff914d;
}

.bg-i { background-color: var(--color-i); }
.bg-ii { background-color: var(--color-ii); }

.txt-i { color: var(--color-i); }
.txt-ii { color: var(--color-ii); }

.brdr-i { border-color: var(--color-i); }
.brdr-ii { border-color: var(--color-ii); }

.br { margin-bottom: 15px; }

html, body {
	width: 100%;
	height: 100%;
	margin:0;
	/* overflow-x: hidden; */
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-h);
	font-style: normal;
	font-weight: 700;
	margin: 0;
	line-height: 1.2;
}
h1 { font-size: 45px; }
h2 { font-size: 40px; }
h3 { font-size: 33px; }
h4 { font-size: 27px; }
h5 { font-size: 23px; }
h6 { font-size: 18px; }

p {
	font-family: var(--font-p);
	font-style: normal;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.8;
	margin: 0;
}

ol, li, ul {
	font-family: var(--font-p);
	font-style: normal;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.8;
}

li { margin-bottom: 5px; }

a, a:visited {
	font-family: inherit;
	text-decoration: none;
	cursor: pointer;
	color: var(--color-i);
	transition: all 0.2s;
}
a:hover, a:focus, a:active { text-decoration: none; color: var(--color-ii); outline: none; }



/* CUST_AMINATION
============================================================================================================================== */

@keyframes smooth-scroll {
	from { background-position-x: 0; }
	to { background-position-x: -1920px; } /* Animate the background by one full image width */
}

@keyframes slideDown {
	from { transform: translateY(-100%); opacity: 0; }
	to { transform: translateY(0); opacity: 1; }
}

@keyframes pulse-gold {
	0% { box-shadow: 0 0 0 0 rgba(244, 165, 1, 0.7); }
	70% { box-shadow: 0 0 0 50px rgba(244, 165, 1, 0); }
	100% { box-shadow: 0 0 0 0 rgba(244, 165, 1, 0); }
}

@keyframes float {
	0% { transform: translateY(0); }
	50% { transform: translateY(-10px); }
	100% { transform: translateY(0); }
}



/* HEADER
============================================================================================================================== */

header { position: relative; }

.bg-header {
	background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../imgs/BGs/bg-header.jpg');
	background-size: cover;
	background-position: center center;
}

.card-brdcrmb {
	position: absolute;
	bottom: -60px;
	left: 50%;
	transform: translate(-50%, -50%);
	border: 0;
	border-radius: 30px;
}

.card-brdcrmb i { margin-left: 15px; margin-right: 15px; }


/* NAVBAR
============================================================================================================================== */

.nav-main {
	border: 0;
	border-radius: 0;
	transition: all 0.3s ease-in-out;
	background-color: transparent;
}

.nav-main .navbar-nav .nav-link {
	font-family: var(--font-h);
	font-style: normal;
	font-size: 20px;
	font-weight: 600;
	color: #000;
	margin-left: 20px;
	margin-right: 20px;
	transition: all 0.2s;
}
.nav-main .navbar-nav .nav-link:focus, .nav-main .navbar-nav .nav-link:hover { text-decoration: none; color: var(--color-ii); }
/* @media only screen and (max-width: 1199.50px) { .nav-main .navbar-nav .nav-link { font-size: 18px; margin-left: 3px; margin-right: 3px; } } */

.nav-main .dropdown-menu {
	background-color: #9bcbff;
	padding: 0;
	border: 0;
	margin-top: 20px;
	border-left: 3px solid #FFF;
	border-right: 3px solid #FFF;
	border-bottom: 3px solid #FFF;
	border-radius: 0 0 1rem 1rem;
}
.nav-main .dropdown-item {
	font-family: var(--font-h);
	font-style: normal;
	font-size: 24px;
	font-weight: 600;
	color: var(--color-i);
}
.nav-main .dropdown-item:focus, .dropdown-item:hover { text-decoration: none; color: #000; }
.nav-main .dropdown-menu li:last-child .dropdown-item, .dropdown-menu li:last-child .dropdown-item { margin-bottom: -5px; }
.nav-main .dropdown-menu li:last-child .dropdown-item:focus, .dropdown-menu li:last-child .dropdown-item:hover { border-radius: 0 0 1rem 1rem; }

.navbar-toggler { border: 3px solid #000; color: #000; margin-right: 30px; margin-top: 10px; margin-bottom: 10px; }
.wrap-logo { margin-left: 0; width: 100px; }
.nav-main .offcanvas-header .close-btn {
	margin: 10px 10px 10px auto;
	transform: scale(0.8);
	transition: all 0.2s;
} .nav-main .offcanvas-header .close-btn:hover { transform: scale(1.0); }
@media only screen and (max-width: 991.50px) {
	.nav-main .offcanvas {
		background-color: #FFF; 
		height: 100vh; /* Force full height. Using sticky-top (scrolled) somehow not displaying properly without this */
	}
	.nav-main .navbar-nav .nav-link { color: var(--color-i); font-size: 20px; }
	.nav-main .navbar-nav .nav-link:focus, .nav-main .navbar-nav .nav-link:hover { padding-left: 10px; color: var(--color-ii); }
	.nav-main .navbar-nav .nav-item.active { padding-left: 15px; margin-top: 10px; }
	.nav-main .dropdown-menu { margin-top: 0; background-color: #FFF; border: 0 !important; margin-left: 10px; box-shadow: none; }
	.nav-main .dropdown-item { text-decoration: none; font-size: 20px; color: var(--color-i); }
	.nav-main .dropdown-item:focus, .dropdown-item:hover { background-color: #FFF; text-decoration: none; color: var(--color-ii); }
}



/* CAROUSEL
============================================================================================================================== */

.carousel_main .carousel-caption {
	position: absolute;
	max-width: 550px;
	bottom: 40%;
	left: 10%; /* left: 50%; */
	/* transform: translateX(-50%); */
	color: #FFF;
	text-align: left; /* text-align: center; */
	padding: 20px 30px;
	border-radius: 12px;
	background: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0));
	/* backdrop-filter: blur(4px); /* optional cinematic softness */
}
.carousel_main .carousel-caption h2 { margin-bottom: 10px; text-shadow: 0 2px 6px rgba(255, 200, 100, 0.8); }
.carousel_main .carousel-caption p { font-weight: 600; font-size: 20px; margin: 0; text-shadow: 0 2px 6px rgba(255, 200, 100, 0.8); }

.carousel_main:hover { cursor: url('../imgs/icons/pause.png'), auto; }


@media only screen and (max-width: 767.50px) { .carousel_main .carousel-caption { display: none; } }



/* FORMS
============================================================================================================================== */

.form-control, .form-select {
	font-family: var(--font-p);
	font-size: 18px;
	font-weight: 400;
	line-height: 1.8;
	color: #000;
	border: 3px solid var(--color-i);
	background-color: #FFF;
	border-radius: 20px;
	padding: 10px 15px 10px 15px;
   transition: all 0.2s;
}
.form-control.medium, .form-select.medium {
	padding: 5px 15px 5px 15px;
	font-size: 16px;
}

.form-control-sml, .form-select-sml {
	font-family: var(--font-p);
	font-size: 13px;
	font-weight: 500;
	line-height: 1.7;
	color: #000;
	border: 3px solid var(--color-i);
	background-color: #FFF;
	border-radius: 20px;
	padding: 5px 15px 5px 15px;
}



/* BUTTONS
============================================================================================================================== */

.btn-main {
	font-family: var(--font-h);	
	letter-spacing: 0.04em;
	font-style: normal;
	font-weight: 700;
	line-height: 1.5;
	font-size: 18px;
	outline: none;
	color: #FFF;
	padding: 15px 30px 15px 30px;
	border: 0;
	border-radius: 8px;
	background: linear-gradient(135deg, #ffb66c, #ff914d);
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
	transition: .1s ease-in-out, .8s color; /* the 1s color makes the text color to change slower, in 0.8s */
}
.btn-main .btn-icon { color: inherit; margin-right: 10px; }
.btn-main:hover { background: linear-gradient(135deg, #ff914d, #ffb66c); transform: scale(1.05); }
.btn-main:active { transform: translateY(0.15em); }
.btn-main.full { width: 100%; }

.btn-main.blue { background: linear-gradient(135deg, #48acd0, #167ea4); }
.btn-main.blue:hover { background: linear-gradient(135deg, #167ea4, #48acd0); }

.btn-main.white { background: #FFF; color: #000; }
.btn-main.white:hover { background: linear-gradient(135deg, #FFF, #c7f0ff); }



/* FOOTER
============================================================================================================================== */

footer {
	background-color: #002d45;
	padding-top: 80px;
	padding-bottom: 50px;
	color: #FFF;
}

footer a, footer a:visited { color: #FFF; }
footer a:hover, footer a:active { color: #FFF; text-decoration: underline; text-underline-offset: 4px; }



/* OTHERS
============================================================================================================================== */

.ptb-100-xmd { padding-top: 100px; padding-bottom: 100px; }
@media only screen and (max-width: 991.50px) { .ptb-100-xmd { padding-top: 0; padding-bottom: 0; } }

.bg-temple-bells {
	background: url('../imgs/BGs/bg-temple-bells.jpg');
	background-repeat: no-repeat;
	background-position: top left;
	background-size: auto;
	background-color: #f6f7fb;
}
@media only screen and (max-width: 991.50px) { .bg-temple-bells { background-image: none !important; background-color: #f6f7fb !important; } }

.bg-temple-lights {
	background: url('../imgs/BGs/bg-temple-lights.jpg');
	background-repeat: no-repeat;
	background-position: top right;
	background-size: auto;
	background-color: #f6f7fb;
}
@media only screen and (max-width: 991.50px) { .bg-temple-lights { background-image: none !important; background-color: #f6f7fb !important; } }

.bg-gradient-gold { background: linear-gradient(135deg, #ffb66c, #ff914d); }
.bg-gradient-blue { background: linear-gradient(135deg, #48acd0, #167ea4); }
.bg-light-gray { background-color: #f6f7fb; }

.bg-child-praying {
	background: url('../imgs/BGs/child-praying.jpg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}

.a-highlight, .a-highlight:visited { color: #000; }
.a-highlight:hover, .a-highlight:focus, .a-highlight:active { color: var(--color-ii); }

.card-highlight {
	position: relative;
	padding-top: 50px;
	padding-bottom: 50px;
	margin-top: -80px;
}

.card-highlight a, .card-highlight a:visited { color: #000; }
.card-highlight a:hover, .card-highlight a:focus, .card-highlight a:active { color: var(--color-ii); }
.card-highlight .wrap-img { width: 120px; margin: 0 auto; }

.google-map {
	width: 100%;
	height: 530px;
	border:0;
	position: relative;
	margin-top: 70px;
	margin-left: -70px;
}
@media only screen and (max-width: 991.50px) { .google-map { margin: 0; height: 400px; } }