:root {
  --navyBlue: #002868;
  --red: #fd9c00;
  --carousel_bg: #063a8d;
}

*,
*::after,
*::before,
ul,
li {
  padding: 0;
  margin: 0;
}
body {
  background-color: #fff;
  height: 100%;
}
p {
  font-size: 18px;
}
a {
  cursor: pointer;
}

button:focus {
  outline: none;
}
.clr_red {
  color: var(--red);
}
.relative {
  position: relative;
}

.btn_stylish {
  text-transform: uppercase;
  padding: 10px 16px;
  color: #fff;
  transition-duration: 0.3s;
  border: 0px;
  overflow: hidden;
  cursor: pointer;
  background-color: var(--navyBlue);
  text-decoration: none;
}
.btn_stylish:hover {
  background-color: var(--red);
  text-decoration: none;
  color: #fff;
}

.table td,
.table th {
  padding: 0.75rem;
  vertical-align: middle;
  text-align: center;
}

.single-item {
  background-color: var(--carousel_bg);
}

.slide-arrow {
  position: absolute;
  top: 50%;
  z-index: 1;
  height: 26px;
  width: 14px;
  margin-top: -13px;
  font-size: 0;
  cursor: pointer;
  background-color: transparent;
  border: none;
  background-image: url(../imgs/arrow-slider.png);
  background-repeat: no-repeat;
}
.prev-arrow {
  left: 14px;
  transform: rotate(180deg);
}
.next-arrow {
  right: 14px;
}

/*.single-item img {*/
/*  height: 600px;*/
/*}*/
/*@media (max-width: 568px) {*/
/*  .single-item img {*/
/*    height: 300px;*/
/*  }*/
/*}*/

.carousel_dots {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: flex;
  width: calc(100% - 2rem);
}
.carousel_dots_item {
  flex: 1;
  background-color: #fff;
  opacity: 0.6;
  padding: 0;
  height: 10px;
  margin-right: 16px;
  border: 0;
  border-radius: 5px;
  cursor: pointer;
  outline: none;
}
.carousel_dots_item:focus {
  outline: none;
}
.carousel_dots_item.active {
  opacity: 1;
}
.hero_img_details {
  max-width: 520px;
  color: #000;
  padding: 30px;
}
.hero_img_details h1 {
  font-family: "Nanum Myeongjo", serif;
  line-height: 40px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff;
  margin: 0;
  margin-bottom: 2rem;
}
.hero_img_details p {
  color: white;
  font-family: "Inter", sans-serif;
}
.hero_img_details p a {
  color: #fff;
  text-decoration: underline;
}
.feature {
  margin: 70px 0;
}
.feature_details {
  text-align: center;
  max-width: 500px;
  margin: 0 auto 40px auto;
}
.feature_details h2 {
  color: var(--navyBlue);
}
.feature img {
  border-radius: 0 75px;
  height: 500px;
}
.feature h3 {
  color: var(--red);
  font-size: 44px;
  /*margin-bottom: 36px;*/
}
.team {
  margin: 70px 0;
}
.team_details {
  text-align: center;
  border-radius: 8px;
  box-shadow: 2px 2px 13px #ccc;
}
.team_details img {
  border-radius: 8px 8px 0 0;
}
.team_info {
  padding: 16px 8px 28px 8px;
}
footer {
  background-color: var(--navyBlue);
  color: #ccc;
  padding: 60px 0;
}

footer ul li {
  display: inline;
  list-style-type: none;
}

.footer_logo p {
  font-size: 32px;
  margin-bottom: 20px;
}

.social {
  margin: 15px 0;
}
.social li i {
  font-size: 24px !important;
  border: 1px solid #ccc;
  border-radius: 50%;
  width: 40px !important;
  height: 40px !important;
  padding: 8px;
  cursor: pointer;
  transition: all 0.5s ease;
  margin-right: 8px;
  text-align: center;
}

.social li i:hover {
  background-color: var(--red);
  border: 1px solid var(--red);
  color: #fff;
}
.social a {
  color: #fff;
  text-decoration: none;
}
.footer_more h3 {
  color: #fff;
}
.footer_more ul li {
  display: block;
}

.footer_more ul li a {
  color: #ccc;
  line-height: 2;
  font-size: 1.1rem;
}

.footer_more ul li a:hover {
  color: var(--primaryColor);
}
.c_name {
  color: #fff;
}
.c_subname {
  color: #fff;
}
.next_p {
  margin: 30px 0;
}
.next_p h3 {
  font-size: 28px;
}

.img_gallery {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.img_gallery_item {
  width: 33.33%;
}

.bullet:before {
  content: "■";
  position: relative;
  color: #666;
}

.header_brand {
  color: #fff;
  font-size: 26px;
}
.header_brand h1 {
  margin: 0;
  font-size: 20px;
  line-height: 25px;
}
.header_mobile {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 30px;
}
.header_mobile i {
  color: var(--primaryColor);
  font-size: 24px;
}

#menu_btn {
  cursor: pointer;
}
.menu_btn {
  width: 30px;
  height: 4px;
  background-color: #fff;
  margin: 5px 0;
}

@media (min-width: 1226px) {
  .header_mobile {
    display: none;
  }
}
@media (max-width: 1226px) {
  .desk_header {
    display: none;
  }
  .feature h3 {
    font-size: 28px;
  }
  .hero_img_details h1 {
    font-size: 28px;
    line-height: 28px;
  }
}
@media (max-width: 512px) {
  .hero_img_details {
    padding: 0 30px 25px 30px;
  }
  .hero_img_details h1 {
    font-size: 20px;
    margin-bottom: 1rem;
  }
}
@media (max-width: 410px) {
  .hero_img_details h1 {
    font-size: 18px;
  }
  .hero_img_details p {
    font-size: 16px;
  }
}
.heading_about {
  color: var(--red);
  margin: 30px 0 20px;
  font-size: 26px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--red);
}

/* =====================================
                SideBar
===================================== */
/*.sidebar {*/
/*  display: none;*/
/*  position: fixed;*/
/*  top: 0;*/
/*  left: 0;*/
/*  width: 270px;*/
/*  background-color: var(--navyBlue);*/
/*  height: 100vh;*/
/*  color: #fff;*/
/*  box-shadow: 2px 3px 12px #000;*/
/*  z-index:999;*/
/*}*/
/*.sidebar ul {*/
/*  padding: 0;*/
/*}*/
/*.sidebar ul li {*/
/*  list-style-type: none;*/
/*  padding: 10px 20px;*/
/*  border-top: 1px solid rgba(255, 255, 255, 0.1);*/
/*}*/
/*.sidebar ul li a {*/
/*  color: #fff;*/
/*  text-decoration: none;*/
/*  font-size: 18px;*/
/*}*/
/*.sidebar ul li a.active {*/
/*  color: var(--red);*/
/*  text-decoration: none;*/
/*  font-size: 18px;*/
/*}*/
/*.sidebar ul li:first-child {*/
/* background-color: var(--primaryColor); */
/*  display: flex;*/
/*  align-items: center;*/
/*  justify-content: flex-end;*/
/*  padding: 20px;*/
/*}*/
/*.sidebar ul li:first-child p {*/
/*  font-weight: 700;*/
/*  font-size: 25px;*/
/*  margin: 0;*/
/*}*/
/*.sidebar ul li:first-child a {*/
/*  font-weight: 700;*/
/*  font-size: 25px;*/
/*  text-decoration: none;*/
/*  color: #fff;*/
/*}*/

/* =====================================
                About
===================================== */
.people {
  box-shadow: 4px 6px 14px #ccc;
  border: 1px solid #ccc;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  height: 840px;
  margin: 12px 0;
}
.people-top {
  box-shadow: 4px 6px 14px #ccc;
  border: 1px solid #ccc;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  margin: 12px 0;
}
@media (min-width: 568px) {
  .people-top {
    height: 530px;
  }
}
.people img,
.people-top img {
  height: 300px;
}
.people h2,
.people-top h2 {
  color: var(--navyBlue);
  cursor: context-menu;
  font-size: 26px;
  margin-top: 10px;
}
.people h2:hover,
.people-top h2:hover {
  color: var(--red);
}
.table .thead-dark th {
  background-color: var(--navyBlue);
  border-color: #031a3f;
}

.form-check-input.is-valid ~ .form-check-label,
.was-validated .form-check-input:valid ~ .form-check-label {
  color: var(--navyBlue);
  cursor: pointer;
}
.dropdown-menu {
  top: 98%;
}
.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown_list {
  padding: 10px 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.dropdown_list a {
  color: #fff;
  text-decoration: none;
}

#dropdown_btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
/* =====================================
                Events
===================================== */
.heading_event {
  text-align: center;
  color: var(--navyBlue);
  margin: 30px 0 20px;
  text-transform: uppercase;
  font-size: 26px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--navyBlue);
}
.subheading_event {
  text-align: center;
  color: #fff;
  margin: 30px 0 20px;
  text-transform: uppercase;
  font-size: 26px;
  padding-bottom: 10px;
}
.events {
  border-radius: 25px;
  padding: 20px 30px;
  background: #063a8d;
  color: #fff;
  margin: 30px 0px;
}
.events h1 {
  color: #fff;
  font-size: 24px;
  margin-top: 20px;
}
.events a {
  color: #f65c6b;
  text-decoration: underline;
}
.event_info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.event_info p,
.events_span {
  font-weight: 700;
}
.event_info span {
  font-weight: 400;
  padding-left: 4px;
}
.events_span span {
  display: block;
  font-weight: 400;
  padding-left: 109px;
  line-height: 36px;
  text-align: left;
}

.why_state h3 {
  color: var(--navyBlue);
}
.why_state ul {
  list-style: none;
  margin-bottom: 15px;
}
.why_state ul li::before {
  content: "■";
  position: relative;
  color: rgb(102, 102, 102);
}
.why_state .quote {
  padding: 16px 20px;
  background: #ccc;
  border-radius: 20px;
  text-align: center;
  box-shadow: 2px 2px 10px #000;
  border-left: 6px solid #100abf;
  font-size: 20px;
  color: var(--navyBlue);
  margin-bottom: 32px;
}

.charles_img {
  text-align: center;
}
.charles_img h1 {
  font-size: 36px;
  border-bottom: 2px solid var(--navyBlue);
  color: var(--navyBlue);
  margin-bottom: 40px;
  display: inline-block;
  padding-bottom: 2px;
}
.charles {
  text-align: center;
  padding: 40px 0;
}
.charles h1 {
  font-size: 26px;
  padding-bottom: 20px;
  color: var(--navyBlue);
}
.charles iframe {
  height: 300px;
}
.charles_summary h2 {
  font-size: 26px;
  border-bottom: 2px solid var(--navyBlue);
  color: var(--navyBlue);
  margin-bottom: 20px;
  display: inline-block;
  padding-bottom: 2px;
}

.participation_form {
  border: 1px solid var(--navyBlue);
  padding: 20px;
  border-radius: 8px;
  background-color: var(--navyBlue);
  color: #fff;
}

.btn_style,
input.btn_style {
  text-transform: uppercase;
  padding: 12px 34px;
  border-radius: 6px;
  color: #fff;
  transition-duration: 0.3s;
  border: 0px;
  overflow: hidden;
  cursor: pointer;
  background-color: var(--red);
  text-decoration: none;
}
.btn_style:hover,
input.btn_style:hover {
  background-color: #890924;
  text-decoration: none;
  color: #fff;
}
.participation_form label {
  font-weight: 700;
}

/* Login and Register  */
.modal-body {
  padding: 0 1rem;
}
.modal_login_content {
  color: #fff;
  background-color: rgb(3, 3, 85);
  padding: 20px 0;
}
.forgot {
  color: #ccc;
  font-size: 12px;
}
#link {
  text-decoration: underline;
  color: rgb(3, 3, 85);
  cursor: pointer;
  font-weight: 600;
}

.footer_top {
  background-color: var(--red);
}
.footer_top_content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  text-align: center;
  color: #fff;
  padding: 20px 0;
}
.footer_top_content p {
  margin-bottom: 0;
  font-size: 22px;
}
.footer_top_content a {
  background-color: #fff;
  color: var(--red);
  padding: 12px 20px;
  border-radius: 3px;
  text-decoration: none;
  font-weight: 600;
}
@media (min-width: 767px) {
  .modal-dialog {
    max-width: 760px;
    margin: 1.75rem auto;
  }
}
@media (max-width: 568px) {
  .footer_top_content {
    justify-content: center;
  }
  .footer_top_content a {
    margin-top: 12px;
  }
  .events h1 {
    font-size: 20px;
  }
  .event_info p,
  .events_span {
    font-size: 16px;
  }
  .events_span span {
    display: block;
    padding-left: 0;
  }
  .event_detailing {
    margin-top: 20px;
  }
  .charles_img h1 {
    font-size: 30px;
  }
  .charles_summary h2 {
    font-size: 22px;
  }
  .charles iframe {
    height: 500px;
  }
}

/* Old Content Style from Virtual and Dream March */
:root {
  --blank: #1a1a1a;
  --body_bg: #ffffff;
  --navyBlue: #002868;
  --red: #fd9c00;
  --elMessiri: "El Messiri", sans-serif;
}
*,
*::after,
*::before {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  height: 100%;
  font-weight: 400;
  line-height: 28px;
  outline: none;
  font-family: var(--poppins);
  font-size: 15px;
  overflow-x: hidden;
  background-color: var(--body_bg);
}
ul {
  padding: 0;
  margin: 0;
}
.bg_blue {
  background-color: var(--navyBlue);
  color: #fff;
  padding: 20px;
  border-radius: 8px;
}

/* .header {
  background-color: var(--navyBlue);
  padding: 10px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
} */

.desk_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.logo {
  color: #fff;
}

.nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav li {
  padding: 0 8px;
}
.nav a {
  text-decoration: none;
  color: #fff;
}

.heading_topp {
  text-align: center;
  font-family: var(--elMessiri);
  font-size: 46px;
  color: var(--red);
  text-transform: uppercase;
  font-weight: 500;
  margin-top: 60px;
  margin-bottom: 30px;
}

.heading_h1 {
  font-size: 36px;
  font-weight: 600;
  line-height: 50px;
  /* color: var(--red);
  text-shadow: 2px 2px #82eaff; */
  text-transform: uppercase;
}
.para_p {
  font-size: 22px;
  letter-spacing: 1px;
  line-height: 34px;
  color: #1a1a1a;
}
.para_p span {
  font-weight: 600;
}
.event_ul li {
  list-style-type: none;
  font-size: 20px;
  font-weight: 600;
}
.top_ol {
  font-size: 22px;
  padding-left: 24px;
  line-height: 40px;
  letter-spacing: 1px;
}
/* =====================================
                events
===================================== */
.heading_event {
  text-align: center;
  color: var(--navyBlue);
  margin: 30px 0 20px;
  text-transform: uppercase;
  font-size: 26px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--navyBlue);
}
.subheading_event {
  text-align: center;
  color: #fff;
  margin: 30px 0 20px;
  text-transform: uppercase;
  font-size: 26px;
  padding-bottom: 10px;
}
.events {
  border-radius: 25px;
  padding: 20px 30px;
  background: #063a8d;
  color: #fff;
  margin: 30px 0px;
}
.events h1 {
  color: #fff;
  font-size: 32px;
  margin-top: 20px;
  font-family: var(--elMessiri);
  line-height: 50px;
}
.events a {
  color: #f65c6b;
  text-decoration: underline;
}
.event_info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.event_info p,
.event_detailing p,
.events_span {
  font-weight: 700;
  font-size: 20px;
}
.event_info span,
.event_detailing span {
  font-weight: 400;
  padding-left: 4px;
}
.events_span span {
  display: block;
  font-weight: 400;
  padding-left: 109px;
  line-height: 36px;
  text-align: left;
}

.mySwiper {
  margin-top: -60px;
  padding-bottom: 40px;
}
.event_item {
  box-shadow: rgb(2 2 2 / 50%) 0px 0px 50px;
  border-radius: 10px;
  padding: 35px 30px;
  overflow: hidden;
  position: relative;
  background: #fff;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.event_timing {
  display: inline-block;
  position: relative;
  font-weight: 400;
  font-size: 18px;
  text-align: center;
  border-radius: 8px;
  margin-top: 0px;
  background-color: #ffeef1;
  width: 25%;
}
.event_timing:after {
  content: "\f017";
  position: absolute;
  font-family: "Font Awesome 5 Free";
  top: -20px;
  left: 0;
  right: 0;
  color: #000;
  width: 30px;
  height: 30px;
  line-height: 30px;
  font-size: 14px;
  border-radius: 0 50% 50%;
  margin: auto;
  transform: rotate(222deg);
  background-color: var(--navyBlue);
  color: #fff;
}
.event_timing .e_date {
  display: block;
  color: var(--navyBlue);
  padding: 32px 0px 15px;
}
.event_timing .e_time {
  display: block;
  background-color: var(--navyBlue);
  color: #fff;
  border-radius: 0 0 8px 8px;
  padding: 3px 0;
}
.event_details {
  width: 75%;
  padding: 0 16px;
}
.event_details h2 > a {
  text-decoration: none;
  color: #1a1a1a;
  font-size: 17px;
  font-weight: 700;
  font-family: var(--elMessiri);
}
.event_details > a {
  text-decoration: underline;
  color: var(--navyBlue);
  font-size: 18px;
  font-weight: 700;
}

.ev {
  display: flex;
  flex-wrap: wrap;
}
.ev p {
  font-size: 22px;
  letter-spacing: 1px;
  line-height: 34px;
}
.ev_left,
.ev_right {
  text-align: center;
  padding: 64px 32px;
  color: #fff;
  width: 50%;
}
.ev_left {
  background-color: var(--navyBlue);
}
.ev_right {
  background-color: var(--red);
}
.martin_right .bg {
  background: var(--navyBlue);
  color: #fff;
  padding: 10px 15px;
  border-radius: 8px;
}
.vigil h1 {
  font-family: var(--elMessiri);
  padding-top: 30px;
  font-size: 56px;
  color: var(--red);
  text-align: center;
}
.vigil h2 {
  font-family: var(--elMessiri);
  font-size: 42px;
  color: var(--red);
  text-align: center;
}
.vigil h3 {
  font-size: 28px;
  padding-top: 25px;
  font-family: var(--elMessiri);
  text-transform: capitalize;
  color: var(--red);
}
.vigil p {
  font-size: 18px;
  letter-spacing: 1px;
  line-height: 30px;
  color: var(--navyBlue);
}
.vigil ul {
  padding-left: 20px;
  font-size: 18px;
  line-height: 34px;
  color: var(--navyBlue);
}

.actual {
  padding: 40px 0;
}
.contact_form_left {
  border: 1px solid var(--navyBlue);
  padding: 20px;
  border-radius: 8px;
  background-color: var(--navyBlue);
  color: #fff;
}
.contact_form_right {
  border: 1px solid var(--red);
  background-color: var(--red);
}
.contact_form_left h3 {
  text-align: center;
  font-size: 40px;
  font-family: var(--elMessiri);
}
.contact_form_left h4 {
  text-align: center;
  font-size: 22px;
}
.contact_form_left label {
  font-size: 18px;
}
.contact_form_left p {
  font-size: 22px;
  letter-spacing: 1px;
  line-height: 34px;
  color: #fff;
}
.btn_style {
  text-transform: uppercase;
  padding: 12px 34px;
  border-radius: 6px;
  color: #fff;
  transition-duration: 0.3s;
  border: 0px;
  overflow: hidden;
  cursor: pointer;
  background-color: var(--red);
  text-decoration: none;
}
.btn_style:hover {
  background-color: #890924;
  text-decoration: none;
  color: #fff;
}

.btn_stylish {
  text-transform: uppercase;
  padding: 12px 34px;
  border-radius: 6px;
  color: #fff;
  transition-duration: 0.3s;
  border: 0px;
  overflow: hidden;
  cursor: pointer;
  background-color: var(--navyBlue);
  text-decoration: none;
}
.btn_stylish:hover {
  background-color: #04142e;
  text-decoration: none;
  color: #fff;
}
.join_left_content,
.join_right_content {
  padding: 45px;
  color: #fff;
  height: 100%;
}
.join_left_content {
  background-color: var(--red);
}
.join_right_content {
  background-color: var(--navyBlue);
}
.join_left_content h2,
.join_right_content h2 {
  font-size: 36px;
  margin-bottom: 20px;
}
.join_left_content p,
.join_right_content p {
  font-size: 18px;
  letter-spacing: 1px;
  line-height: 36px;
}
.join_right_content label {
  font-size: 18px;
}
.doc_event h1 {
  text-align: center;
  padding-top: 40px;
  font-family: var(--elMessiri);
  color: var(--red);
  font-size: 48px;
}
.doc_event h2 {
  font-size: 36px;
  font-family: var(--elMessiri);
  color: var(--navyBlue);
  padding-top: 20px;
  padding-bottom: 20px;
}
.doc_event h3 {
  color: var(--red);
}
.doc_event p {
  font-size: 18px;
  color: var(--navyBlue);
  letter-spacing: 1px;
  line-height: 30px;
}
.doc_event ol,
.doc_event ul {
  padding-left: 24px;
  font-size: 18px;
  color: var(--navyBlue);
  letter-spacing: 1px;
  line-height: 30px;
}

/* =====================================
                SideBar
===================================== */
.sidebar {
  transform: translateX(-110%);
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 270px;
  background-color: var(--navyBlue);
  color: #fff;
  box-shadow: 2px 3px 12px #000;
  z-index: 999;
  transition: transform 0.5s ease;
  overflow-y: scroll;
}
.sidebar ul {
  padding: 0;
}
.sidebar ul li {
  list-style-type: none;
  padding: 10px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.sidebar ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  text-transform: uppercase;
}
.sidebar ul li a.active {
  color: var(--red);
  text-decoration: none;
  font-size: 18px;
}
.sidebar ul li:first-child {
  /* background-color: var(--primaryColor); */
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 20px;
}
.sidebar ul li:first-child p {
  font-weight: 700;
  font-size: 25px;
  margin: 0;
}
.sidebar ul li:first-child a {
  font-weight: 700;
  font-size: 25px;
  text-decoration: none;
  color: #fff;
}

/* Sub Nav */
.sub_nav {
  transform: translateX(-110%);
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 270px;
  background-color: var(--navyBlue);
  color: #fff;
  box-shadow: 2px 3px 12px #000;
  z-index: 999;
  transition: transform 0.5s ease;
  overflow-y: scroll;
}
.sub_nav ul {
  padding: 0;
}
.sub_nav ul li {
  list-style-type: none;
  padding: 10px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.sub_nav ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  text-transform: uppercase;
}
.sub_nav ul li a.active {
  color: var(--red);
  text-decoration: none;
  font-size: 18px;
}
.sub_nav ul li:first-child {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 20px;
}
.sub_nav ul li:first-child p {
  font-weight: 700;
  font-size: 25px;
  margin: 0;
}
.sub_nav ul li:first-child a {
  font-weight: 700;
  font-size: 25px;
  text-decoration: none;
  color: #fff;
}

.outreach .container {
  display: flex;
  justify-content: center;
}
.outreach_form {
  background: var(--navyBlue);
  color: #fff;
  padding: 30px;
  border-radius: 8px;
  width: 50%;
}
.outreach_form h2 {
  text-align: center;
  font-size: 36px;
  font-family: var(--elMessiri);
}
.outreach_form ul {
  font-size: 20px;
  padding: 20px;
  line-height: 36px;
}

#menu_btn {
  cursor: pointer;
}
.menu_btn {
  width: 30px;
  height: 4px;
  background-color: #fff;
  margin: 5px 0;
}

.sub_header_section {
  background-color: #063a8d;
  color: #fff;
  padding: 12px 15px;
  box-shadow: 4px 4px 16px #1a1a1a;
}
.sub_header_top {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  z-index: 25;
  transition: opacity 0.5s ease;
  padding: 6px 15px;
}
.sub_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dropdown-menu {
  top: 98%;
}
.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown_list {
  padding: 10px 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.dropdown_list a {
  color: #fff;
  text-decoration: none;
}

#dropdown_btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
/* Login and Register  */
.modal-body {
  padding: 0 1rem;
}
.modal_login_content {
  color: #fff;
  background-color: rgb(3, 3, 85);
  padding: 20px 0;
}
.forgot {
  color: #ccc;
  font-size: 12px;
}
#link {
  text-decoration: underline;
  color: rgb(3, 3, 85);
  cursor: pointer;
  font-weight: 600;
}
@media (min-width: 767px) {
  .modal-dialog {
    max-width: 760px;
    margin: 1.75rem auto;
  }
}

.social {
  margin: 15px 0;
}
.social li i {
  font-size: 24px !important;
  border: 1px solid #ccc;
  border-radius: 50%;
  width: 40px !important;
  height: 40px !important;
  padding: 8px;
  cursor: pointer;
  transition: all 0.5s ease;
  margin-right: 8px;
  text-align: center;
}

.social li i:hover {
  background-color: var(--red);
  border: 1px solid var(--red);
  color: #fff;
}
.social a {
  color: #fff;
  text-decoration: none;
}
.footer_more h3 {
  color: #fff;
}
.footer_more ul li {
  display: block;
}

.footer_more ul li a {
  color: #ccc;
  line-height: 2;
  font-size: 1.1rem;
}

.footer_more ul li a:hover {
  color: var(--primaryColor);
}
.btn_dot {
  text-decoration: none !important;
  background: var(--red);
  margin: 10px;
  color: #fff !important;
  border-radius: 8px;
}
.btn_dot:hover {
  color: #fff;
  background: #950d1a;
}
.btn_dot2 {
  text-decoration: none !important;
  background: var(--navyBlue);
  margin: 10px;
}
.btn_dot2:hover {
  color: #fff;
  background: #041e47;
}

@media (min-width: 1226px) {
  .header_mobile {
    display: none;
  }
}
@media (max-width: 1226px) {
  .desk_header {
    display: none;
  }
}

@media (max-width: 564px) {
  .ev_left,
  .ev_right {
    width: 100%;
  }
  .outreach_form {
    width: 100%;
  }
  .events_span span {
    padding-left: 15px;
  }
  .heading_h1 {
    font-size: 30px;
  }
  .vigil h1 {
    font-size: 38px;
  }
  .heading_topp,
  .doc_event h1,
  .vigil h2 {
    font-size: 30px;
  }
  .doc_event h2 {
    font-size: 28px;
  }
  .doc_event p a {
    word-wrap: break-word;
  }
  .contact_form_left h3 {
    font-size: 30px;
  }
  .events h1 {
    font-size: 26px;
  }
  .event_info {
    justify-content: center;
  }

  .row_ing {
    flex-direction: column-reverse;
  }
}

.register_link {
  text-align: center;
  padding-top: 12px;
}
.register_link a {
  color: #fff;
  font-size: 24px;
}
.carousel div {
  position: absolute;
  top: 66%;
  left: 40%;
  transform: translate(-50%, -50%);
}
.carousel a {
  display: block;
  font-size: 40px;
  color: var(--red);
  font-weight: 600;
  text-decoration: underline;
  padding: 12px 20px;
}
.footer_top {
  background-color: var(--red);
}
.footer_top_content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  text-align: center;
  color: #fff;
  padding: 20px 0;
}
.footer_top_content p {
  margin-bottom: 0;
  font-size: 22px;
}
.footer_top_content a {
  background-color: #fff;
  color: var(--red);
  padding: 12px 20px;
  border-radius: 3px;
  text-decoration: none;
  font-weight: 600;
}
.ev_img {
  margin: 20px 0;
  border: 1px solid var(--navyBlue);
  padding: 20px;
  border-radius: 25px;
  background-color: var(--navyBlue);
  color: #fff;
}
.ev_img img {
  height: 800px;
}
.healine_dream {
  background: var(--red);
  margin: 20px auto;
  border: 1px solid var(--red);
  padding: 20px;
  border-radius: 25px;
  color: #fff;
  text-align: center;
}
.healine_dream div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.healine_dream h1 {
  font-family: var(--elMessiri);
  font-size: 42px;
}
.healine_dream div a {
  padding: 10px 18px;
  color: #fff;
  font-size: 18px;
  text-decoration: none;
  background: var(--navyBlue);
  border-radius: 8px;
  margin: 10px 0;
}
.healine_dream div a:hover {
  background: #02183b;
}
.heading_ab {
  color: var(--red);
  margin: 30px 0 20px;
  font-size: 26px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--red);
}
@media (max-width: 568px) {
  .footer_top_content {
    justify-content: center;
  }
  .footer_top_content a {
    margin-top: 12px;
  }
  .carousel {
    text-align: center;
  }
  .carousel div {
    position: absolute;
    top: 88%;
    left: 40%;
    font-size: 13px;
  }
  .carousel a {
    padding: 0px 10px;
    font-size: 13px;
  }
  .ev_img img {
    height: auto;
  }
  .healine_dream div a {
    padding: 6px 8px;
  }
}
