@charset "utf-8";
/* CSS Document */

/******************************/
/*******common css*************/


/******* fonts *********/

@import url('../fonts/roboto_stylesheet.css');
/******* fonts *********/

html {
  overflow-x: hidden;
}

body {
  font-family: 'Roboto' !important;
  overflow-x: hidden;
  background-color: #fcfcfc;
}

p {
  font-family: 'Roboto';
  color: #595959;
  font-size: 13px;
}

h1 {
  font-size: 27px;
  font-weight: bold;
  color: #003366;
}

h2 {
  font-size: 25px;
  font-weight: bold;
  color: #003366;
}

h3 {
  font-size: 20px;
  font-weight: bold;
  color: #003366;
}

h5 {
  font-size: 15px;
  font-family: 'Roboto';
  color: #3B3B3B;
}

a {
  text-decoration: none;
}

.blue_text {
  color: #003366;
}

/* button css */

.footer_btn{
  text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #3B3B3B;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: background-color 0.3s;
    font-size: 13px;
    transition: 0.3s ease-in-out;
    padding: 0;
    white-space: normal;
    text-align: left;
    line-height: 16px;
}

.btn {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #3B3B3B;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: background-color 0.3s;
    font-size: 13px;
    transition: 0.3s ease-in-out;
    padding: 0;
    white-space: normal;
    text-align: left;
    line-height: 16px;
    min-width: 120px;
}

.btn__icon-wrapper {
  flex-shrink: 0;
  width: 25px;
  height: 25px;
  position: relative;
  color: #ffffff;
  background-color: #DA1212;
  border-radius: 50%;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.btn:hover {
  color: #DA1212;
}

.btn:hover .btn__icon-wrapper {
  color: #fff;
  background-color: #3E4864;
}

.btn__icon-svg--copy {
  position: absolute;
  transform: translate(-150%, 150%);
}

.btn:hover .btn__icon-svg:first-child {
  transition: transform 0.3s ease-in-out;
  transform: translate(150%, -150%);
}

.btn:hover .btn__icon-svg--copy {
  transition: transform 0.3s ease-in-out 0.1s;
  transform: translate(0);
}

.btn.blue .btn__icon-wrapper {
  color: #ffffff;
  background-color: #5DADE2;
}

.btn.blue:hover .btn__icon-wrapper {
  color: #fff;
  background-color: #3E4864;
}

.btn.blue:hover {
  color: #11468F;
}

.btn.white:hover .btn__icon-wrapper {
  color: #fff;
  background-color: #5DADE2;
}

.bordered_btn {
  border: 1px solid #3B3B3B;
  padding: 10px 14px;
  border-radius: 100px;
}

.fill_btn {
  background-color: #003366;
  color: #ffffff;
}

.fill_btn:hover {
  background-color: #3E4864;
  color: #ffffff;
}


.down_arrow {
  width: 25px;
  height: 25px;
  border: none;
  border-radius: 50%;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  transition-duration: .3s;
  padding: 5px;
  padding-bottom: 7px;
}

.svgIcon {
  fill: #3B3B3B;
}

.icon2 {
  width: 12px;
  height: 1px;
  border-bottom: 2px solid #3B3B3B;
  border-left: 2px solid #3B3B3B;
  border-right: 2px solid #3B3B3B;
}

.fill_btn:hover .down_arrow {
  background-color: #ffffff;
  transition-duration: .3s;
}

.fill_btn:hover .down_arrow .icon2 {
  border-bottom: 2px solid #3B3B3B;
  border-left: 2px solid #3B3B3B;
  border-right: 2px solid #3B3B3B;
}

.fill_btn:hover .down_arrow .svgIcon {
  fill: 2px solid #3B3B3B;
  animation: slide-in-top 0.6s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

@keyframes slide-in-top {
  0% {
    transform: translateY(-10px);
    opacity: 0;
  }

  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}

.modal-header .btn-close {
    background-color: #323A91 !important;
    opacity: 1;
    padding: 15px;
    border-radius: 30px;
    background-image: url(../images/close.svg) !important;
}

.btn-check:focus+.btn, .btn:focus {
    outline: 0;
    box-shadow: none;
}


/* common css */

.cover_bg {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.left_cover_bg {
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: left;
}

.inner_blue_bg {
  background-image: url(../images/blue_bg.png);
  background-position: left top;
  background-repeat: no-repeat;
  background-size: 100% 630px;
}

.white_bg {
  background-color: #ffffff;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}

.icon_div {
  padding: 20px;
  min-width: 220px;
  border-radius: 0 0 25px 0;
}

.round_corner_div:hover .icon_div .news_date p {
  color: #595959;
}

.round_corner_div:hover .icon_div h5 {
  color: #041562;
}

.sec_padding {
  padding: 80px 0;
}

.mt-n {
  padding-top: 200px;
  margin-top: -200px;
}

.text_limit {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.white_card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 3px;
  transition: 0.3s ease-in-out;
  border: 1px solid #3E4864;
  box-shadow: rgba(0, 0, 0, 0.04) 0px 3px 5px;
}

.white_card:hover {
  box-shadow: rgba(0, 0, 0, 0.04) 0px 3px 5px;
  border: 1px solid #DA1212;
}

.white_card:hover h5 {
  color: #11468F;
}

.custom_tab {
  border-bottom: 0;
  gap: 15px;
}

.custom_tab .nav-link {
  font-size: 13px;
  font-weight: 500;
  border: 1px solid #DA1212;
  background-color: #ffffff;
  color: #3b3b3b !important;
  border-radius: 4px;
  color: #ffffff;
  width: 185px;
  padding: 12px 5px;
}

.custom_tab .nav-item.show .nav-link,
.custom_tab .nav-link.active {
  color: #ffffff !important;
  background-color: #DA1212;
  border: 1px solid #DA1212;
  position: relative;
}

.custom_tab .nav-item.show .nav-link,
.custom_tab .nav-link.active::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -8px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #DA1212;
}

.pagination {
  gap: 7px;
  margin-bottom: 0;
}

.page-link {
  font-size: 14px;
  color: #3B3B3B;
  border-radius: 3px;
}

.page-link:hover {
  background-color: #7f7f7f;
  color: #ffffff;
}

.page-item.active .page-link {
  z-index: 3;
  color: #fff;
  background-color: #3E4864;
  border-color: #ffffff;
}

.form-control {
  font-size: 13px;
  color: #212529;
  background-color: #FCFCFC;
  border: 1px solid #F5F5F5;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
}

.form-floating>label {
  padding: 20px;
  font-size: 13px;
}

.form-floating>.form-control {
  padding: 20px;
}

.form-control:focus {
  border-color: #F5F5F5;
  box-shadow: none;
}

.input_form .form-label {
  font-size: 13px;
}

.input_form .form-control {
  height: 58px;
  display: flex;
  align-items: center;
  padding: 19px 30px;
}

.form_div {
  padding: 30px;
}

.no-scroll {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

.vision_box {
  display: flex;
  gap: 25px;
  align-items: end;
  padding: 50px 30px 40px 30px;
}

.vision_box .icon_box img {
  width: 80px;
}

.vision_box div h5 {
  font-size: 18px;
}

.h5_line3 {
  min-height: 54px;
}

.h5_line2 {
  min-height: 36px;
}

.h3_line2{
  height: 48px;
}

.p_line_2{
  min-height: 39px;
}

.p_line_3{
  min-height: 59px;
}

/* header */

/* .main_banner {
  overflow: hidden;
} */

.nav_bar {
  padding: 0px;
}

.nav_bar .nav-link {
  color: #595959;
  font-size: 13px;
  position: relative;
  margin-right: 40px !important;
}

.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .show>.nav-link {
  color: #273F4F;
}

.nav_bar .nav-link::before {
  position: absolute;
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 20px;
  left: -6px;
  top: 17px;
  background-color: #979797;
}

.navbar-nav .nav-link.active,
.navbar-nav .show>.nav-link {
  color: #273F4F;
  font-weight: 600;
}

.navbar-nav .nav-link.active::before {
  background-color: #273F4F;
  position: absolute;
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 20px;
  left: -6px;
  top: 17px;
}

.nav_call {
  background-color: #041562;
  color: #ffffff;
  text-decoration: none;
  padding: 20px;
  font-size: 13px;
  display: flex;
  justify-content: center;
  font-weight: 500;
  transition: .3s ease-in-out;

}

.nav_call:hover {
  background-color: #3E4864;
  color: #ffffff;
}

.nav_call svg {
  width: 17px;
  margin-right: 10px;
}

.logo_div {
  width: 300px;
}

.header_social_div {
  position: absolute;
  bottom: 50px;
}

.header_social_div a {
  font-size: 15px;
  color: #ffffff;
  background-color: #041562;
  width: 35px;
  height: 35px;
  margin-right: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 3px;
  transition: .3s ease-in-out;
}

.header_social_div a:hover {
  background-color: #DA1212;
}

.header_text_div {
  top: 38%;
  position: absolute;
  padding-right: 30px;
}

/* about us section */

.stats_icon {
  width: 64px;
  background-color: #003366;
  padding: 10px;
  border-radius: 7px;
  margin-right: 15px;
}

/* Primary purposes section */

.purposes_con {
  background-color: #3E4864;
  background-image: url(../images/world_bg.png);
  background-position: right bottom 25px;
  background-repeat: no-repeat;
  border-radius: 0 0 200px;
  background-size: 750px;
  z-index: 1;
  position: relative;
}

.fill_icon_div h5 {
  color: #FFFfff;
  font-weight: 500;
}

.fill_icon_div .purpose_icon_div {
  width: 60px;
  background-color: #11468F;
  padding: 12px;
  border-radius: 7px;
  margin-bottom: 10px;
}

.fill_icon_div {
  padding: 60px 20px 20px 20px;
  border-right: 1px solid #ffffff2a;
  position: relative;
  transition: .3s ease-in-out;
}

.fill_icon_div:hover {
    background-color: #003366;
}

.fill_icon_div:hover .purpose_icon_div {
    background-color: #da1212;
}

/* Key Benefits section */

.benefits_bg {
  background-image: url(../images/red_bg.jpg);
  background-position: right;
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-color: #DA1212;
  padding: 100px 50px 20px 0;
  position: relative;
}

.benefits_bg::before {
  position: absolute;
  content: "";
  width: 315px;
  height: 100%;
  background-color: #DA1212;
  left: 0;
  top: 0;
  margin-left: -315px;
}

.benifits_img {
  position: absolute;
  bottom: -25px;
  right: 0;
  width: 400px;
}

.icon_div .small_icon {
  padding: 10px;
  border-radius: 6px;
  background-color: #273F4F;
}

.icon_div .small_icon img {
  width: 30px;
}

/* news section */

.news_con {
  background-color: #EEEEEE;
  border-radius: 0 0 200px;
  position: relative;
  z-index: 1;
}

.news_div:hover h5 {
  color: #041562;
}

.news_div img {
  border-radius: 5px;
}

.news_div .text {
  padding: 20px;
  background-color: #ffffff;
  border-radius: 0 0 5px 5px;
  box-shadow: rgba(0, 0, 0, 0.04) 0px 3px 5px;
}

.news_div .img .card-img-overlay {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 1) 100%);
  transition: 0.4s;
  padding: 0px;
  border-radius: 8px 8px 0px 0px;
}

.card-img-overlay .news_date {
  position: absolute;
  bottom: 0;
}

.news_date {
  left: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.news_date i {
  color: #DA1212;
}

.news_date .tag {
  background-color: #3B3B3B;
  color: #ffffff;
  padding: 4px 7px;
  border-radius: 4px;
  transition: .3s ease-in-out;
  font-size: 12px;
  width: fit-content;
}

.news_date .tag:hover {
  background-color: #003366;
}

/* our partners */

.partnets_owl .item {
  background-color: #ffffff;
  padding: 30px;
  height: 110px;
  border-radius: 7px;
}

.partnets_owl .item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* footer */

.footer {
  background-color: #00274D;
}

.footer hr {
  color: #ffffff;
}

.footer_logo_col {
  background-color: #003366;
  padding: 70px;
}

.newsletter_form {
  border-radius: 40px;
  background-color: #ffffff22;
  border: 1px solid #ffffff;
}

.newsletter_form input {
  border: none;
  font-size: 13px;
  background-color: transparent !important;
  color: #FFFFFF !important;
}

.newsletter_form button {
  background-color: #DA1212;
  color: #ffffff !important;
  border-radius: 40px !important;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px !important;
  transition: 0.4s ease;
  padding: 10px;
}

.newsletter_form button:hover {
  background-color: #041562;
}

.newsletter_form .form-control::placeholder {
  color: #ffffffca;
  opacity: 1;
}

.newsletter_form .form-control:-ms-input-placeholder {
  color: #ffffffca;
}

.newsletter_form .form-control::-ms-input-placeholder {
  color: #ffffffca;
}

.footer_link {
  font-size: 13px;
  color: #ffffff;
  position: relative;
  padding-left: 5px;
}

.footer_link::before {
  position: absolute;
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 20px;
  left: -10px;
  top: 4px;
  background-color: #979797;
}

.footer_link:hover {
  font-weight: 600;
  color: #ffffff;
}

.footer_col h5 {
  color: #ffffff;
}

.footer_con_flex {
  display: flex;
  align-items: center;
  gap: 13px;
}

.footer_con_flex svg {
  width: 22px;
  fill: #ffffff;
}

.footer_link_dev {
  margin-bottom: 10px;
}

.footer_social_div a {
  font-size: 15px;
  color: #ffffff;
  background-color: #DA1212;
  width: 35px;
  height: 35px;
  margin-right: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 3px;
  transition: .3s ease-in-out;
}

.footer_social_div a:hover {
  background-color: #041562;
}

.footer_map_img {
  position: absolute;
  top: 20%;
  right: 0;
  width: 600px;
}

.contact_link {
  transition: .3s ease-in-out;
}

.contact_link:hover {
  color: #5DADE2 !important;
}

/* ================================================================== */
/* ================================================================== */
/* ========================= inner pages ============================ */

.inner_banner {
  height: 300px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 175px 0 0 0;
}

.inner_banner .header_text_div {
  top: auto;
  bottom: 0;
}

.partner_logo {
  width: 230px;
  min-height: 110px;
  background-color: #ffffff;
  border: 1px solid #F1F1F1;
  padding: 15px;
  box-shadow: rgba(0, 0, 0, 0.04) 0px 3px 5px;
  margin-bottom: 20px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.round_corner_div {
  padding: 33px;
  border-radius: 5px;
  border: 1px solid #3E4864;
}

.round_corner_div:hover {
  border: 1px solid #DA1212;
}

.round_corner_div .icon_div {
  padding: 0;
  display: flex;
  align-items: center;
  gap: 13px;
}

.round_corner_div .icon_div img {
  width: 40px;
}

.round_corner_div:hover .icon_div p {
  color: #DA1212;
}

.round_corner_div h3 {
  transition: all 0.3s ease-in-out;
}

.round_corner_div:hover h3 {
  color: #DA1212;
}

.round_corner_div .icon_div p {
  transition: all 0.3s ease-in-out;
}

.contact_detail_div {
  background-color: #3E4864;
  background-image: url(../images/world_bg.png);
  background-size: 110%;
  background-repeat: no-repeat;
  border-radius: 0 5px 5px 0px;
}

.album_div img {
  border-radius: 5px;
}

.album_div .card-img-overlay {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 1) 100%);
  transition: 0.4s;
  padding: 0px;
}

.album_div:hover .card-img-overlay .news_date h5 {
  color: #dadada !important;
}


.event_card {
  border-radius: 5px;
  border: #ffffff solid 1px;
  background-color: #3E4864;
  min-height: 420px;
}

.event_card:hover {
  border: #DA1212 solid 1px;
}

.event_card:hover .date {
  background-color: #00274D;
}

.event_card:hover .date h1 {
  color: #ffffff;
}

.event_card:hover .date p {
  color: #ffffff;
}

.event_card .date {
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 3px;
  min-width: 110px;
  min-height: 110px;
  transition: all 0.3s ease-in-out;
}

.event_card .date h1 {
  font-size: 45px;
  transition: all 0.3s ease-in-out;
}

.event_card .text {
  min-height: 70px;
}

.event_owl .owl-nav {
  position: absolute;
  right: 50px;
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel button.owl-dot {
  width: 40px;
  height: 40px;
  border-radius: 50px;
  font-size: 30px !important;
}

.owl-nav .owl-prev {
  left: -44px !important;
}

#chartdiv {
  width: 100%;
  height: 500px;
}

.value_div .text {
  min-height: 80px;
}

/* ================================================================== */
/* ================================================================== */
/* ================================================================== */

/*************** Burger Menu ***************/
.button_container {
  position: relative;
  height: 27px;
  width: 35px;
  cursor: pointer;
  z-index: 100;
}

.sidebar-wrapper {
  background-color: #DA1212;
  height: 60px;
  width: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.button_container:hover {
  opacity: 0.7;
}

.button_container.active .top {
  transform: translateY(10px) translateX(0) rotate(45deg);
  background: #DA1212;
}

.button_container.active .middle {
  opacity: 0;
}

.button_container.active .bottom {
  transform: translateY(-10px) translateX(0) rotate(-45deg);
  background: #DA1212;
}

.button_container span {
  background: #ffffff;
  border: none;
  height: 2px;
  width: 100%;
  position: absolute;
  top: 0px;
  right: 0;
  transition: all 0.35s ease;
  cursor: pointer;
}

.button_container span:nth-of-type(2) {
  top: 10px;
  width: 25px;
}

.button_container span:nth-of-type(3) {
  top: 20px;
}

/*************** Fullscreen Menu ***************/

#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s, width 0.35s;
  z-index: 50;
}

#overlay:after {
  content: "";
  background: #ffffff;
  right: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  transition: all 0.35s ease;
}

#overlay.open {
  opacity: 0.9;
  visibility: visible;
  height: 100%;
}

#overlay.open:after {
  right: 0;
}

#overlay.open li {
  animation: fadeInRight 0.5s ease forwards;
  animation-delay: 0.35s;
}

#overlay.open li:nth-of-type(2) {
  animation-delay: 0.45s;
}

#overlay.open li:nth-of-type(3) {
  animation-delay: 0.55s;
}

#overlay.open li:nth-of-type(4) {
  animation-delay: 0.65s;
}

#overlay.open li:nth-of-type(5) {
  animation-delay: 0.75s;
}

#overlay.open li:nth-of-type(6) {
  animation-delay: 0.85s;
}

#overlay.open li:nth-of-type(7) {
  animation-delay: 0.95s;
}

#overlay.open li:nth-of-type(8) {
  animation-delay: 1s;
}

#overlay nav {
  position: relative;
  height: 70%;
  top: 50%;
  transform: translateY(-25%);
  font-size: 50px;
  font-weight: 400;
  text-align: right;
  z-index: 100;
  right: 15%;
}

#overlay nav ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: inline-block;
  position: relative;
  height: 100%;
}

#overlay nav ul li {
  display: block;
  min-height: 50px;
  position: relative;
  opacity: 0;
}

#overlay nav ul li a {
  display: block;
  position: relative;
  color: #8f8f8f;
  text-decoration: none;
  overflow: hidden;
}

#overlay nav ul li a:hover:after,
#overlay nav ul li a:focus:after,
#overlay nav ul li a:active:after {
  width: 100%;
}

#overlay nav ul li a:hover {
  color: #041562;
}

#overlay nav ul li a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  transform: translateX(-50%);
  height: 3px;
  background: #F4F3F1;
  transition: 0.35s;
}


/*************** KeyFrames ***************/
@keyframes fadeInRight {
  0% {
    opacity: 0;
    left: 100%;
  }

  100% {
    opacity: 1;
    left: 0;
  }
}

/* ================================================================== */
/* ================================================================== */
/* ================================================================== */

/* header slide */

.hero-slider {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 0;
}

.slide-bg-image {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-slider .swiper-slide {
  overflow: hidden;
  color: #fff;
}

.hero-slider .swiper-container {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 175px 0 0 0;
}

.hero-slider .slide-inner {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  text-align: left;
}

.hero-slider .swiper-button-prev,
.hero-slider .swiper-button-next {
  background: transparent;
  width: 55px;
  height: 55px;
  line-height: 52px;
  margin-top: -30px;
  text-align: center;
  border: 2px solid #d4d3d3;
  border-radius: 55px;
  opacity: 0;
  visibility: hidden;
  transition: all .3s ease;
}

.hero-slider:hover .swiper-button-prev,
.hero-slider:hover .swiper-button-next {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

.hero-slider .swiper-button-prev {
  left: auto;
  transform: translateX(50px);
  right: 88px;
}

.hero-slider .swiper-button-prev:before {
  font-family: "Font Awesome 5 Free";
  content: "\f060";
  font-size: 15px;
  color: #d4d3d3;
  font-style: normal;
  display: inline-block;
  vertical-align: middle;
  font-weight: 900;
}

.hero-slider .swiper-button-next {
  right: 25px;
  transform: translateX(-50px);
}

.hero-slider .swiper-button-next:before {
  font-family: "Font Awesome 5 Free";
  content: "\f061";
  font-size: 15px;
  color: #d4d3d3;
  font-style: normal;
  display: inline-block;
  vertical-align: middle;
  font-weight: 900;
}

.hero-slider .swiper-container-horizontal>.swiper-pagination-bullets,
.hero-slider .swiper-pagination-custom,
.hero-slider .swiper-pagination-fraction {
  bottom: 30px;
}

/*--------------------------------------------------------------
	#hero-style
--------------------------------------------------------------*/
.hero-style {
  height: 94vh;
  transition: all .4s ease;
}

.slide-title {
  width: 400px;
  background-color: #000000b5;
  padding: 25px;
  margin-bottom: 40px;
  border-radius: 8px;
}

.slide-title img {
  width: 63px;
  border-right: 1px solid #ffffff;
  padding-right: 18px;
}

.swiper-button-next,
.swiper-button-prev {
  top: auto !important;
  bottom: 40px !important;
}

.hero-slider .swiper-button-next:hover,
.hero-slider .swiper-button-prev:hover {
  border: #DA1212 solid 2px;
}

/* ===================================================== */
/* ===================================================== */
/* ======================= steps ======================= */

.step_ul ul {
  --col-gap: 2rem;
  --row-gap: 2rem;
  --line-w: 0.25rem;
  display: grid;
  grid-template-columns: var(--line-w) 1fr;
  grid-auto-columns: max-content;
  column-gap: var(--col-gap);
  list-style: none;
  width: min(73rem, 90%);
  margin-inline: auto;
}

/* line */
.step_ul ul::before {
  content: "";
  grid-column: 1;
  grid-row: 1 / span 20;
  background: rgb(225, 225, 225);
  border-radius: calc(var(--line-w) / 2);
}

/* columns*/

/* row gaps */
.step_ul ul li:not(:last-child) {
  margin-bottom: var(--row-gap);
}

/* card */
.step_ul ul li {
  grid-column: 2;
  --inlineP: 1.5rem;
  margin-inline: var(--inlineP);
  grid-row: span 2;
}

/* date */
.step_ul ul li .date {
  --dateH: 3rem;
  height: var(--dateH);
  margin-inline: calc(var(--inlineP) * -1);

  text-align: center;
  background-color: var(--accent-color);

  color: white;
  font-size: 1.25rem;
  font-weight: 700;

  display: grid;
  place-content: center;
  position: relative;

  border-radius: 5px 0 0 5px;
}

/* date flap */
.step_ul ul li .date::before {
  content: "";
  width: var(--inlineP);
  aspect-ratio: 1;
  background: var(--accent-color);
  background-image: linear-gradient(rgba(0, 0, 0, 0.2) 100%, transparent);
  position: absolute;
  top: 100%;

  clip-path: polygon(0 0, 100% 0, 0 100%);
  right: 0;
}

/* circle */
.step_ul ul li .date::after {
  content: "";
  position: absolute;
  width: 2rem;
  aspect-ratio: 1;
  background: var(--bgColor);
  border: 0.3rem solid var(--accent-color);
  border-radius: 50%;
  top: 50%;
  background-color: #ffffff;
  transform: translate(50%, -50%);
  right: calc(100% + var(--col-gap) + var(--line-w) / 2);
}

/* title descr */
.step_ul ul li .title,
.step_ul ul li .descr {
  background: var(--bgColor);
  position: relative;
  padding-inline: 1.5rem;
}

.step_ul ul li .title {
  overflow: hidden;
  padding-block-start: 1.5rem;
  padding-block-end: 1rem;
  font-weight: 500;
}

.step_ul ul li .descr {
  padding-block-end: 1.5rem;
  font-weight: 300;
}

@media (min-width: 768px) {
  .step_ul ul {
    grid-template-columns: 1fr var(--line-w) 1fr;
  }

  .step_ul ul::before {
    grid-column: 2;
  }

  .step_ul ul li:nth-child(odd) {
    grid-column: 1;
  }

  .step_ul ul li:nth-child(even) {
    grid-column: 3;
  }

  /* start second card */
  .step_ul ul li:nth-child(2) {
    grid-row: 2/5;
  }

  .step_ul ul li:nth-child(odd) .date::before {
    clip-path: polygon(0 0, 100% 0, 100% 100%);
    left: 0;
  }

  .step_ul ul li:nth-child(odd) .date::after {
    transform: translate(-50%, -50%);
    left: calc(100% + var(--col-gap) + var(--line-w) / 2);
  }

  .step_ul ul li:nth-child(odd) .date {
    border-radius: 0 5px 5px 0;
  }
}

.credits {
  margin-top: 1rem;
  text-align: right;
}

.credits a {
  color: var(--color);
}

.custom_ol {
  margin-left: -20px;
}

.custom_ol li {
  font-size: 13px;
  margin-bottom: 10px !important;
}

.stage_text {
  padding: 25px;
  border: 1px solid #3E4864;
  border-top: 0;
  background-color: #ffffff;
  border-radius: 0 0 5px 5px;
}

.chart-container {
  position: relative;
  /* Increased height to accommodate wrapped text */
  height: 800px;
  width: 100%;
  min-width: 950px;
}

.custom_ul {
  display: block;
  list-style-type: disc;
  margin-block-start: 1em;
  margin-block-end: 1em;
  padding-inline-start: 40px;
  unicode-bidi: isolate;
  padding-left: 0;
  margin-left: 10px !important;
}

.custom_ul li {
  font-size: 13px;
  margin-bottom: 15px !important;
  padding-inline-start: 0.5em;
}

.custom_ul li::marker {
  content: '✦';
  margin-right: 5px;
}

.red_dots li::marker {
  color: red;
}

/* ==================================== */

.nav-toggle {
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.nav-toggle:focus {
  outline: none;
  box-shadow: none;
}

.toggle-bar2 {
  width: 80% !important;
}

.toggle-icon {
  width: 24px;
  height: 18px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.toggle-bar {
  width: 100%;
  height: 2px;
  background-color: #ffffff;
  border-radius: 1px;
  transition: all 0.3s ease;
}

/* Toggle animation */
.nav-toggle.active .toggle-bar:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active .toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active .toggle-bar:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Navigation Menu */
.nav-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #3e4864;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  margin: 10px;
  padding: 0;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  max-height: 0;
  overflow: hidden;
  padding: 10px 0;
}

.nav-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  max-height: 500px;
}

.nav-menu ul a li {
  color: #ffffff;
  border-bottom: 1px solid #ffffff0f;
}

.nav-menu ul li {
  padding: 15px 30px;
}

.nav-menu ul li:hover {
  background-color: #DA1212;
}

.nav-list {
  list-style: none;
  padding: 1rem 0;
  margin: 0;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: block;
  padding: 12px 24px;
  color: #6c757d;
  text-decoration: none;
  text-align: center;
  border-bottom: 1px solid #f8f9fa;
  transition: all 0.3s ease;
  font-weight: 500;
}

/* Responsive adjustments for larger screens */
@media (min-width: 768px) {
  .nav-menu {
    max-width: 300px;
    margin-left: auto;
    margin-right: 10px;
  }
}

.hide-marker {
  list-style: none;
  padding-left: 0;
  /* Optional: removes the left indentation */
}



/* ==================================== */
/* ==================================== */

.methodology-card {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 2px solid #00274D;
  border-radius: 8px;
  margin-bottom: 15px;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.3;
  padding: 15px;
}

.card-peach {
  background-color: #F4C2A1;
  color: #333;
}

.card-yellow {
  background-color: #F9D71C;
  color: #1e3a8a;
}

.card-green {
  background-color: #90EE90;
  color: #1e3a8a;
}

.card-blue {
  background-color: #87CEEB;
  color: #1e3a8a;
}

.main-title {
  color: #dc2626;
  font-weight: bold;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 30px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

/* =================================== */

.tab-container {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.tab-scroll-wrapper {
  flex: 1;
  overflow: hidden;
  position: relative;
}

.nav-tabs-scrollable {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
  padding-bottom: 8px;
}

.nav-tabs-scrollable::-webkit-scrollbar {
  display: none;
}

.nav-tabs-scrollable .nav-link {
  white-space: nowrap;
  flex-shrink: 0;
  min-width: fit-content;
  margin-right: 0.25rem;
}

.scroll-arrow {
  background: #fff;
  border: 1px solid #dee2e6;
  border-radius: 0.375rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #6c757d;
  transition: all 0.3s ease;
  z-index: 1;
  margin-bottom: 8px;
}

.scroll-arrow:hover {
  background-color: #f8f9fa;
  color: #495057;
}

.scroll-arrow.hidden {
  display: none !important;
} 

.scroll-left {
  margin-right: 0.5rem;
}

.scroll-right {
  margin-left: 0.5rem;
}

/* ========================================== */
/* ========================================== */

.ol-cards,
.ol-cards * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.ol-cards {
  --flapWidth: 2rem;
  --flapHeigth: 1rem;
  --iconSize: 1.5rem;
  --numberSize: 1rem;
  --colGapSize: 10px;
  margin-inline: auto;
  display: grid;
  padding-inline-start: var(--flapWidth);
  font-family: sans-serif;
  color: #222;
  list-style: none;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.ol-cards > li {
  display: flex;
  gap: 0 var(--colGapSize);
  align-items: center;
  padding: 25px 38px 25px 0;
  border-radius: 10px;
  background-image: linear-gradient(to bottom right, #e9eaec, #ffffff);
  filter: drop-shadow(10px 10px 10px rgba(0, 0, 0, 0.25));
  box-shadow: inset 2px 2px 2px white, inset -1px -1px 1px rgba(0, 0, 0, 0.25);
}

.ol-cards > li > h5{
  min-width: 200px;
}

.ol-cards > li > .icon {
  grid-area: icon;
  background: var(--accent-color);
  color: white;
  font-size: var(--iconSize);
  width: calc(2 * var(--flapWidth) + var(--iconSize));
  padding-block: 1rem;
  border-radius: 0 5rem 5rem 0;
  margin-inline-start: calc(-1 * var(--flapWidth));
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.25);
  position: relative;
  display: grid;
  place-items: center;
}
.ol-cards > li > .icon::before {
  content: "";
  position: absolute;
  width: var(--flapWidth);

  height: calc(100% + calc(var(--flapHeigth) * 2));
  left: 0;
  top: calc(var(--flapHeigth) * -1);
  clip-path: polygon(
    0 var(--flapHeigth),
    100% 0,
    100% 100%,
    0 calc(100% - var(--flapHeigth))
  );
  background-color: var(--accent-color);
  background-image: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0.2)
  );
  z-index: -1;
}

.ol-cards > li > .title {
  grid-area: title;
  font-weight: 600;
  font-size: 1.25rem;
}
.ol-cards > li > .descr {
  grid-area: descr;
}

@media (max-width: 40rem) {
  .ol-cards {
    --flapWidth: 1rem;
    --flapHeigth: 0.5rem;
    --iconSize: 2rem;
    --numberSize: 2rem;
    --colGapSize: 1rem;
  }
}


.partner_card .text p{
  min-height: 59px;
}

.notice_div .text{
    min-height: 40px;
}

.modal-footer {
    align-items: center;
    justify-content: center;
}