@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&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&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

/***** General CSS *****/

body {
  word-break: break-word;
  font-family: "Poppins", sans-serif;
  color: #575656;
  overflow-x: hidden;
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  position: relative;
}

/***** Headings *****/

@font-face {
  font-family: "caslon";
  src: url("../fonts/AdobeCaslonProBold.ttf");
  font-weight: 600;
}
@font-face {
  font-family: "caslon";
  src: url("../fonts/AdobeCaslonProRegular.ttf");
  font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #000000;
  font-family: "caslon";
  margin: 0px;
}

h1 {
  font-size: 60px;
  line-height: 73px;
}

h2 {
  font-size: 60px;
  line-height: 65px;
}

h3 {
  font-size: 48px;
  line-height: 53px;
}

h4 {
  font-size: 24px;
  line-height: 29px;
}

h5 {
  font-size: 20px;
  line-height: 25px;
}

h6 {
  font-size: 18px;
  line-height: 22px;
}

p {
  font-size: 14px;
  line-height: 24px;
}

/***** Gradient Text *****/

/***** Utilities *****/

.padd {
  padding: 100px 0;
  position: relative;
}

.paddTop {
  padding-top: 100px;
}

.paddBottom {
  padding-bottom: 100px;
}

.margTop {
  margin-top: 100px;
}

.margBottom {
  margin-bottom: 100px;
}

.flx {
  display: flex;
  align-items: center;
  gap: 16px;
}

.bt {
  display: inline-block;
}

.pbtn {
  padding: 12px 12px;
  background-color: #b40000;
  text-transform: uppercase;
  color: #fff;
  font-size: 15px;
  line-height: 25px;
  border: 0px;
  font-weight: 400;
  display: inline-block;
  min-width: 140px;
  transition: 0.2s;
  border-radius: 4px;
  box-shadow: 0px 0px 5px 1px #b4000045;
  text-align: center;
}

.pbtn:hover {
  background: #0e2236;
}

.maxWidth {
  max-width: 1440px;
}

/* general btn css start  */

a {
  text-decoration: none;
  color: #fff;
  white-space: initial;
}

a:hover,
a:focus {
  text-decoration: none;
  color: #fff;
}

a:hover {
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
}

img {
  max-width: 100%;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

ul {
  margin: 0 0 20px;
  padding: 0;
  list-style-type: none;
}

::-webkit-input-placeholder {
  color: #575757;
}

::-moz-placeholder {
  color: #575757;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #575757;
}

:-moz-placeholder {
  color: #575757;
  opacity: 1;
}

/*header css start */

.menuSec {
  padding: 40px 0 0;
  position: relative;
}

.menuSec img {
  margin: 0;
}

.menuSec ul {
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: space-between;
  left: 60px;
  margin-left: 30px;
}

.menuSec ul li {
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 0;
}

.menuSec li ul {
  display: none;
}

.menuSec ul li a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: #000000;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 500;
}

.menuSec ul li:last-child a {
  padding-right: 0px;
}

.menuSec ul li a:hover,
.menuSec ul li a.active {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  color: #b40000;
}

.menuSec li:hover > ul {
  display: block;
  position: absolute;
  z-index: 1000;
  background-color: #000000;
  left: 0px;
  width: 230px;
  text-align: left;
  top: 38px;
}

.menuSec li > ul > li > a {
  border: none;
  padding: 13px 20px !important;
  color: #fff !important;
  overflow: hidden;
  font-size: 13px;
  line-height: 20px;
}

.menuSec li > ul > li,
.menuSec li > ul > li > a {
  display: block;
  margin: 0;
}

.menuSec li:hover li {
  float: none;
}

.menuSec li ul li a:hover {
  background-color: #ffffff;
  color: #000000 !important;
}

.menuSec ul ul ul {
  left: 100%;
  top: 0;
}

.menuSec li > ul > li:hover > ul {
  left: 230px;
  top: 0px;
  width: 270px;
}

.droopdwon li:hover > ul {
  display: block;
  position: absolute;
  z-index: 1000;
  background-color: #000000;
  left: 0px;
  width: 230px;
  text-align: left;
  top: 40px;
}

.droopdwon {
  float: left;
}

.droopdwon li:hover li a:hover {
  background-color: #ffffff;
  color: #000 !important;
}

/*header css start */

.dropdown-menu {
  position: absolute !important;
  z-index: 1000;
  display: block;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0;
  font-size: 1rem;
  color: #212529;
  text-align: left !important;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
}

/* =============================== Custom Header =================== */

header {
  position: absolute;
  top: 0;
  width: 100%;
  left: 0;
  z-index: 12;
}

header .bt {
  position: relative;
}

.menuSec .row.border-bottom-c {
  position: relative;
  padding: 20px 0px;
}

.menuSec .row.border-bottom-c:before {
  position: absolute;
  content: "";
  width: 90%;
  right: -10%;
  top: 0;
  background: #fff;
  height: 100%;
}

/* =============================== Custom Header =================== */

/* =============================== Banner  =================== */

/* =============================== Banner  =================== */

.carousel-caption {
  position: relative;
  top: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  color: #fff;
  display: flex;
  align-items: flex-end;
  left: unset;
  right: 0;
  text-align: left;
}

section.main_slider {
  background: #0e2236;
}

img.banner-img {
  height: 950px;
  width: 100%;
  object-fit: fill;
  position: relative;
}

.banner_text {
  position: relative;
}

p.subtitle {
  font-size: 28px;
  line-height: 38px;
  font-family: "caslon";
}

.banner_wrap {
  padding-left: 80px;
  position: relative;
}

.banner_form {
  position: relative;
  margin: 120px 0 0px;
  padding: 20px 0px 30px;
}

.banner_form p.form-title {
  color: #000000;
  font-size: 18px;
  font-family: "caslon";
  line-height: normal;
  margin-bottom: 10px;
}

.banner_form input {
  width: 100%;
  color: #7b7b7b;
  border: 0px;
  padding: 13px 16px;
  font-size: 14px;
  border-radius: 4px;
  box-shadow: 0px 0px 16px #7b7b7b1c;
}

.formfield.d-flex {
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.formfield.d-flex .bt {
  flex-shrink: 0;
}

.banner_wrap:before {
  position: absolute;
  content: "";
  width: 110%;
  left: 0;
  bottom: 0;
  background: #ecebeb;
  height: 150px;
}

.banner_text .pbtn {
  letter-spacing: 2px;
  padding: 12px 25px;
}

.banner_img {
  padding-left: 0px;
}

img.ban-map {
  position: absolute;
  left: 10px;
  top: -170px;
}

/* ====================== About page ========================== */

.ab-right .ab-subtitle {
  font-size: 26px;
  line-height: 36px;
  color: #0e2236;
  margin-bottom: 10px;
  font-weight: bold;
}

.ab-right p {
  font-size: 16px;
  line-height: 29px;
  word-spacing: 2px;
}

img.ab1-img {
  height: 710px;
  width: 100%;
  object-fit: cover;
}

.ab-left {
  padding-right: 10px;
}

.ab-right {
  padding-left: 10px;
}

.bt.dark .pbtn {
  background: #0d243a;
  box-shadow: 0px 0px 5px 1px #0d243a3d;
}

.bt.dark .pbtn:hover {
  background: #b40000;
}

/* ====================== About ========================== */

/* ====================== Campaign ========================== */

section.camp-sec {
  background: #ecebeb;
}

img.cmap-img {
  height: 300px;
  width: 100%;
  object-fit: cover;
  border-radius: 5px 4px 0 0;
}

.camp-card .camp-txt {
  padding: 30px 20px 24px;
  background: #fff;
  margin-top: 18px;
  border-radius: 0 0 4px 4px;
  box-shadow: 0px 0px 8px 1px #55555526;
  justify-content: space-between;
}

.camp-card h3.camp-title {
  font-size: 20px;
  line-height: 25px;
  font-weight: bold;
  color: #000;
}

.camp-bt {
  flex-shrink: 0;
}

.camp-bt a {
  width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  background: #b40000;
  border-radius: 3px;
  transition: 0.2s;
}

.camp-bt a:hover {
  background: #0d243a;
}

/* ====================== Campaign ========================== */
/* ====================== Donate ========================== */

img.donate-sec-img {
  position: absolute;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: 100% 30%;
  opacity: 10%;
  top: 0;
}

section.donate-sec {
  background: #0e2236;
  padding: 90px 0 60px;
  position: relative;
}

section.donate-sec .container {
  position: relative;
}

p.donate-subtitle {
  font-size: 30px;
  line-height: 40px;
  font-family: "caslon";
}

/* ====================== Donate ========================== */
/* ====================== Campaign Update ========================== */

img.up-cd-img {
  height: 500px;
  width: 100%;
  object-fit: cover;
  border-radius: 3px;
}

.cmp-up-txt {
  position: absolute;
  bottom: 0;
  width: 85%;
  margin: 0px auto;
  right: 0;
  left: 0;
  background: #ffffffd9;
  padding: 30px 24px 20px;
}

.up-card {
  position: relative;
}

.cmp-up-txt .up-bt {
  display: inline-block;
}

.cmp-up-txt .up-bt a {
  color: #b40000;
  border-bottom: 1px solid;
  transition: 0.2s;
  font-weight: 600;
  font-size: 14px;
}

.cmp-up-txt .up-bt a:hover {
  color: #0d243a;
  border-bottom: 1px solid #0d243a;
}

.cmp-up-txt h3 {
  line-height: 40px;
}

.cmp-up-txt p {
  word-spacing: 4px;
}

/* ====================== Campaign Update ========================== */

/* ====================== Endoresments ========================== */

section.endo-sec {
  background: #ecebeb;
}

.endo-btns button {
  width: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 35px;
  background: #0e2236;
  border-radius: 3px;
  transition: 0.2s;
  border: 0px;
}

.endo-sec .endo-btns {
  margin-right: 22px;
}

.endo-btns button:hover {
  background: #b40000;
}

.testiSlider .slick-slide {
  opacity: 1;
}

.rev-card {
  padding: 26px 32px;
  background: #ffff;
  box-shadow: 0px 0px 7px 2px #44444417;
  margin: 10px 0px;
  border-radius: 3px;
}

.rev-msg {
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid #0000007d;
}

.rev-msg p {
  line-height: 28px;
  font-size: 16px;
  word-spacing: 2px;
}

span.auth-name {
  display: block;
  color: #000000;
  font-size: 19px;
  font-family: "caslon";
  line-height: 20px;
  font-weight: 600;
  padding-top: 10px;
}

section.endo-sec .cam-heading {
  padding-left: 16px;
}

/* ====================== Endoresments ========================== */

/* ====================== Events Update ========================== */

.event-card1 {
  position: relative;
}

img.event-card1-img {
  height: 540px;
  width: 100%;
  object-fit: cover;
}

.ps-date h3 {
  color: #fff;
  font-weight: 600;
}

.ps-date {
  width: 120px;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  background: #a20305;
  text-align: center;
  position: absolute;
  left: 32px;
  top: 32px;
}

.event-card-nav {
  position: relative;
}

img.event-card-nav-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.event-card-txt {
  position: absolute;
  bottom: 28px;
  background: #0e2236f2;
  width: 88%;
  margin: 0px auto;
  right: 0;
  left: 0;
  padding: 32px;
}

.event-card-txt * {
  color: #fff;
}

.event-card-txt p {
  margin: 0;
  word-spacing: 4px;
}

.event-card-txt h4 {
  font-size: 30px;
  line-height: 40px;
}

button.events-prev {
  position: absolute;
  left: -20px;
  top: 43%;
}

button.events-next {
  position: absolute;
  right: -20px;
  top: 43%;
}

/* ====================== Events Update ========================== */

/* FOOTER SECTION CSS START  */

.footerSec {
  padding: 0px 0 30px;
  background-color: #0e2236;
}

footer .footer-title {
  position: relative;
  font-size: 20px;
  line-height: 24px;
  text-transform: uppercase;
  padding-bottom: 12px;
  margin-bottom: 32px;
  display: inline-block;
  color: #fff !important;
  margin-top: 30px;
}

footer .footer-title:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  bottom: 0;
  background: #b40000;
}

ul.social a i {
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  color: #0e2236;
  font-size: 24px;
  border-radius: 4px;
  transition: 0.2s;
}

ul.social a:hover i {
  transform: scale(1.1);
}

.foot-quick-links li span {
  font-size: 14px;
  line-height: 24px;
  color: #a5a2a2;
}

.foot-quick-links ul li img {
  width: 14px;
  margin-top: 7px;
}

.foot-useful-link ul li a {
  font-size: 14px;
  text-transform: uppercase;
  line-height: 22px;
  color: #a5a2a2;
  display: inline-block;
}

.foot-useful-link ul li a:hover {
  color: #fff;
}

.foot-useful-link ul li {
  line-height: 0px;
}

.cont-info {
  background: #fff;
  padding: 16px;
  border-radius: 10px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 18px;
}

.cont-info span {
  display: block;
  font-size: 24px;
  color: #000000;
  font-weight: 600;
  line-height: 30px;
}

.cont-info p {
  font-weight: 500;
  line-height: 30px;
}

.copyright {
  position: relative;
  padding: 20px 0 40px;
  background: #0e2236;
}

.copyright .row.text-center {
  padding: 18px 0;
  background: #b40000;
  border-radius: 5px;
  margin: 0px auto;
}

.copyright:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  top: 47px;
  background: #ffffff2b;
}

.footerLogo img {
  height: 200px;
}

.footer-about p {
  word-spacing: 2px;
  color: #a5a2a2;
  width: 80%;
  font-size: 15px;
  line-height: 30px;
}

/* ====== */

/* =================================== Campaign  =================== */

section.camp-sec.padd.cmp-page {
  background: #fff;
}

img.cmap-detail-img {
  height: 600px;
  width: 100%;
  object-fit: cover;
  margin-bottom: 40px;
}

.cmp-dt p {
  font-size: 15px;
  line-height: 26px;
  word-spacing: 2px;
}

/* =================================== Campaign  =================== */

/* Contct Us page start  */

section.contact-page .quick-links {
  position: relative;
  padding-top: 44px;
}

section.contact-page ul.linkingList {
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin: 0;
  margin-top: 60px;
}

section.contact-page ul.linkingList li {
  display: flex;
  align-items: center;
  gap: 30px;
}

p.contact-info-t {
  margin: 0;
  color: #000;
  font-size: 19px;
  text-transform: uppercase;
  font-weight: 500;
}

section.contact-page ul.linkingList li .text a {
  color: #555555;
  display: inline-block;
  transition: 0.9s;
}

section.contact-page ul.linkingList li .img img {
  width: auto;
  transition: 0.9s;
  cursor: pointer;
}

section.contact-page form {
  background: #ffffff8a;
  border-radius: 5px;
  padding: 40px 40px 50px 40px;
  border: 1px solid #00000030;
}

section.contact-page form input {
  width: 100%;
  margin-bottom: 20px;
  padding: 16px 20px;
  border-radius: 6px;
  color: #000000;
  font-weight: 500;
  transition: 0.6s;
  border: 1px solid #d2d2d2;
}

section.contact-page form input::placeholder {
  color: #9d9a9a;
}

section.contact-page form textarea#message {
  width: 100%;
  margin-bottom: 20px;
  border: 0px;
  padding: 18px 20px;
  border-radius: 5px;
  color: #000000;
  font-weight: 500;
  transition: 0.6s;
  height: 150px;
  resize: unset;
  position: relative;
  border: 1px solid #d2d2d2;
  font-size: 14px;
}

section.contact-page form textarea#message::placeholder {
  color: #9d9a9a;
}

section.contact-page form .brtns {
  display: block;
}

section.contact-page form .brtns button {
  border: 0;
  display: inline-block;
  padding: 14px 0px;
  color: #fff;
  font-size: 16px;
  line-height: 26px;
  text-transform: uppercase;
  border-radius: 5px;
  transition: 0.9s;
  background: #bb1818;
  width: 220px;
  font-weight: 500;
}

section.contact-page form .brtns button:hover {
  transform: translate(0px, -6px);
  filter: brightness(0.7);
}

section.contact-page form h2 {
  color: #000;
  margin-bottom: 20px;
}

section.map-connect {
  position: relative;
  overflow: hidden;
}

section.map-connect .container-fluid {
  padding: 0;
}

section.map-connect iframe {
  height: 600px;
}

section.contact-page form h3 {
  margin-bottom: 28px;
}

section.contact-page .social ul {
  justify-content: flex-start;
  align-items: flex-start;
}

section.contact-page .social ul li a i {
  color: #000;
  border: 1px solid #000;
  border-radius: 45px;
}

section.contact-page .social {
  margin-top: 40px;
}

section.contact-page .social ul li a i:hover {
  color: #fff;
  border: transparent;
  filter: drop-shadow(2px 4px 26px black);
}

/* ======== */

/* =============================== Events && Detail ======================= */

p.detail-date {
  font-size: 27px;
  line-height: 34px;
  color: #bb1818;
  font-family: "caslon";
  font-weight: 600;
}

.event-detail p {
  line-height: 26px;
}

.iner-events-card h3 {
  font-size: 44px;
  line-height: 50px;
}

/* =============================== Events && Detail ======================= */

/* =============================== News && Detail ======================= */
.news-card {
  position: relative;
  background: #0e2236;
  border-radius: 4px;
  overflow: hidden;
}

img.top-news-img {
  height: 440px;
  width: 100%;
  object-fit: cover;
  transition: 0.2s;
}

.post-date-news {
  position: absolute;
  top: 0;
  left: 24px;
  z-index: 12;
}

.post-date-news h3 {
  color: #fff;
  font-size: 24px;
  line-height: 25px;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #b40000;
  text-align: center;
  padding-top: 10px;
}

.new-card-text {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px 30px 24px;
  flex-direction: column;
  transition: 0.5s;
  transform: translate(0%, 100%);
  background: #000000c4;
}

.news-card:hover .new-card-text {
  transform: translate(0%, 0%);
}

.new-card-text h4 {
  font-size: 34px;
  line-height: 40px;
  color: #fff;
}

.new-card-text p {
  color: #fff;
  font-size: 16px;
  line-height: 27px;
}

.new-card-text .read-more-btn {
  display: inline-block;
}

.new-card-text .read-more-btn a {
  color: #b40000;
  font-size: 17px;
  line-height: 26px;
  text-transform: uppercase;
  border-bottom: 1px solid #b40000;
  transition: 0.2s;
}

.new-card-text .read-more-btn a:hover {
  color: #fff;
  border-bottom: 1px solid #fff;
}

.news-card:hover img.top-news-img {
  transform: scale(1.1);
  opacity: 30%;
}

/* =============================== News && Detail ======================= */

/* Blogs Detail  */

img.blog-detail-img {
  height: 600px;
  object-fit: cover;
  padding-right: 32px;
}

.blogs-header-head {
  margin-bottom: 18px;
  border-bottom: 1px solid #0000006b;
  padding-bottom: 8px;
}

.blg-descripton p {
  line-height: 28px;
  word-spacing: 1px;
  font-size: 16px;
}

.search-formWp {
  height: 58px;
  border: 1px solid #d4d4d4;
  justify-content: space-between;
}

.search-form form input {
  font-size: 14px;
  height: 100%;
  background-color: transparent;
  border: 0px;
  padding: 0 16px;
  width: 100%;
  flex-grow: 1;
}

.search-form form button {
  width: auto;
  background: #b40000;
  color: #fff;
  border: 0px;
  font-size: 15px;
  padding: 0px 16px;
  transition: 0.2s;
  flex-shrink: 0;
  height: 100%;
  border-radius: 0 3px 3px 0;
}

.search-form form button:hover {
  background-color: #000;
}

.recent-head {
  margin-bottom: 24px;
}

.recent-head h1 {
  font-size: 32px;
  line-height: 30px;
  padding: 20px 0px 20px;
}

.recent-head h1 span {
  position: relative;
  display: inline-block;
}

.recent-head h1 span:before {
  position: absolute;
  content: "";
  width: 40px;
  height: 2px;
  background: #b40000;
  bottom: -8px;
  left: 4px;
}

ul.recent-posts li {
  display: flex;
  gap: 18px;
  margin-bottom: 32px;
  padding-bottom: 26px;
  border-bottom: 1px solid #00000047;
  transition: all 0.3s;
  align-items: center;
}

ul.recent-posts li .recent-img {
  height: 100px;
  position: relative;
  width: 34%;
  flex-shrink: 0;
}

.recent-img img {
  object-fit: cover;
}

ul.recent-posts li .recent-text {
  position: relative;
  flex-grow: 1;
}

ul.recent-posts li .recent-text .blog-title-sm {
  font-size: 20px;
  line-height: 26px;
  transition: 0.2s;
  text-transform: capitalize;
}

ul.recent-posts li .recent-text .recent-date img {
  width: 13px;
}

ul.recent-posts li .recent-text .recent-date span {
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
}

ul.recent-posts li:last-child {
  margin-bottom: 0px;
  border: 0px;
  box-shadow: unset;
  padding: 0px;
}

/* Blogs Detail  */

.state_up_txt {
  margin-bottom: 60px;
  border-bottom: 1px solid #0000006b;
  padding-bottom: 30px;
}

.state_up_txt p {
  font-size: 16px;
  line-height: 28px;
  word-spacing: 1px;
}

img.state-update-img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  object-position: bottom;
}

.state-imgs {
  border-radius: 5px;
  overflow: hidden;
}

img.state-update-img.object-fill {
  object-position: center;
}

.inner-baner .container-fluid {
  padding: 0;
}

/* =================================== Inner baner =================== */

.in-banner_text h1 {
  font-weight: 400;
  color: #b40000;
  font-size: 85px;
  line-height: 1;
}

img.in-banner-img {
  height: 700px;
  position: relative;
  object-fit: cover;
  z-index: 10;
}

.inner-baner {
  background: #0e2236;
}

.iner-banner_wrap {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: start;
  position: relative;
  padding-left: 80px;
  padding-top: 180px;
}

.in-banner_text {
  height: 330px;
  display: flex;
  position: relative;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: #fff;
}

.ban-white-bx {
  height: 110px;
  background: #ecebeb;
  width: 140%;
}

img.in-ban-map {
  position: absolute;
  left: 20px;
  bottom: 64px;
  width: 230px;
}

/* .menuSec .container-fluid.maxWidth:before {
  position: absolute;
  content: "";
  width: 42.2%;
  height: 1px;
  bottom: 0;
  background: #ffffff14;
  left: 0px;
  z-index: -1;
} */

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  display: none;
}

.menuSec ul li.active a {
  color: #b40000;
  font-weight: bold;
  text-decoration: underline;
}

/* =================================== Inner baner =================== */

.btn-center {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.footer-form {
  background: #b40000;
  margin-bottom: 50px;
  padding: 30px 0;
}

.footer-cta h2 {
  font-size: 40px;
  color: #fff;
}

.footer-cta p {
  color: #fff;
}

.footer-cta form input {
  width: 80%;
  background: unset;
  border: 1px solid #ffffff73;
  color: #fff;
  height: 60px;
  padding: 0 20px;
}

.footer-cta form input::placeholder {
  color: #fff;
}

.footer-cta form {
  width: 80%;
  margin: 0 auto;
  margin-top: 40px;
}

.footer-cta form button {
  width: 20%;
  border: unset;
  background: #0e2236;
  color: #fff;
  height: 60px;
}

.mission-values-section {
  background-color: #0e2236;
  color: #fff;
  padding: 60px 20px;
}

.section-title {
  font-weight: 700;
  color: #fff;
}

.mission-text {
  font-size: 18px;
  line-height: 1.8;
}

.value-card {
  background-color: #12304b; /* Slightly lighter than background */
  border-radius: 10px;
  padding: 30px 20px;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.value-card h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.closing-quote {
  background-color: #12304b;
  font-style: italic;
  border-left: 4px solid #00aaff;
  padding: 20px 30px;
  font-size: 18px;
}

.closing-quote span {
  display: block;
  font-weight: 600;
  margin-top: 10px;
  font-size: 16px;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 26px;
  }
  .mission-text,
  .closing-quote {
    font-size: 15px;
  }
  .value-card h4 {
    font-size: 14px;
  }
}

section.mission-values-section.py-5 .row.text-center.mb-5 {
  justify-content: center;
}
section.campaign-cta {
  padding: 40px 0;
}
section.campaign-cta a {
  padding: 12px 12px;
  background-color: #b40000;
  text-transform: uppercase;
  color: #fff;
  font-size: 15px;
  line-height: 25px;
  border: 0px;
  font-weight: 400;
  display: inline-block;
  min-width: 140px;
  transition: 0.2s;
  border-radius: 4px;
  box-shadow: 0px 0px 5px 1px #b4000045;
  text-align: center;
}

section.campaign-cta a:nth-child(2) {
  background: unset;
  color: #000;
  box-shadow: unset;
  border: 1px solid #b40000;
}

.top-news-sec {
  background: #f8f9fa;
}

.news-card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.top-news-sec h2 {
  font-size: 36px;
}

.top-news-sec p {
  font-size: 16px;
  line-height: 1.7;
}
section.rsvp-cta h2 {
  color: #fff;
}

.enfor-text {
  text-align: left;
}

.enfor-text h2.fw-bold {
  font-size: 43px;
  font-family: "caslon";
  margin-bottom: 13px;
  text-align: center;
}

.enfor-text h3 {
  font-size: 20px;
  font-family: "caslon";
  font-weight: 600;
}

.enfor-text p a {
  text-decoration: underline;
  color: #ad000d;
  font-family: "Poppins";
  font-weight: 500;
}

.modal-body h1 {
  font-weight: 900;
  font-size: 2.3em;
  text-transform: uppercase;
}
.modal-body a.pre-order-btn {
  color: #000;
  background-color: gold;
  border-radius: 1em;
  padding: 1em;
  display: block;
  margin: 2em auto;
  width: 50%;
  font-size: 1.25em;
  font-weight: 6600;
}
.modal-body a.pre-order-btn:hover {
  background-color: #000;
  text-decoration: none;
  color: gold;
}

.modal-dialog {
  max-width: 850px;
}

.load-modal-txt h2 {
  font-size: 27px;
  font-weight: 600;
}

.load-modal-txt p a {
  text-decoration: underline;
  color: #b40000;
  font-weight: 500;
}

.modal-header {
  padding: 9px 10px;
  border-bottom: unset;
}

.load-modal-txt h3 {
  font-size: 23px;
  font-weight: 600;
  font-family: "caslon";
  line-height: 29px;
}

.load-modal-txt p {
  margin-bottom: 12px;
}

.modal-header .btn-close:hover {
  filter: drop-shadow(2px 4px 6px #b40000);
}

.modal-header .btn-close {
  border: 1px solid #b40000;
  opacity: 1;
  border-radius: 50%;
  background-color: #b400007a;
  margin-top: -1px;
  margin-right: 6px;
  z-index: 12;
  cursor: pointer;
}

.event-detail ul li {
  list-style: disc;
  margin-left: 16px;
  margin-bottom: 8px;
}

/* =================== */

.header-logo img {
  width: 100%;
}

.header-logo {
  position: absolute;
  width: 160px;
  top: -34px;
  left: 0;
}

/* =================== */

/* -------------------------------------- Enroll Enroll ------------------------------- */

.events-sec .spinner {
  width: 90px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.events-sec .spinner > div {
  width: 18px;
  height: 18px;
  margin: 0 5px;
  background-color: #b40000;
  border-radius: 100%;
  display: inline-block;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.events-sec .spinner .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.events-sec .spinner .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {
  0%,
  80%,
  100% {
    -webkit-transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
  }
}

@keyframes sk-bouncedelay {
  0%,
  80%,
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.events-sec .comes {
  justify-content: center;
  flex-direction: column;
  text-align: center;
  gap: 16px;
}

.events-sec .comes h3 {
  font-size: 35px;
  line-height: 40px;
}
.in-banner_text p {
  font-size: 16px;
  line-height: 30px;
  padding-top: 16px;
}
