@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Kavoon&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=Rubik:ital,wght@0,300..900;1,300..900&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Kavoon&family=Monda:wght@400..700&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=Rubik:ital,wght@0,300..900;1,300..900&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Kavoon&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=Rubik:ital,wght@0,300..900;1,300..900&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Kavoon&family=Monda:wght@400..700&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=Rubik:ital,wght@0,300..900;1,300..900&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap");
body {
  font-family: "Rubik", serif !important;
}

.container {
  width: 85%;
  margin: 0 auto;
}

body {
  margin: 0;
}

p {
  margin: 0;
}

ul {
  margin: 0;
}

img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover !important;
     object-fit: cover !important;
}

li {
  list-style-type: none;
}

a {
  text-decoration: none;
  color: black;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
}

@media (max-width: 768px) {
  .img_after {
    height: 100px !important;
    width: 100px !important;
  }
}

@media (max-width: 768px) {
  .img_before {
    height: 100px !important;
    width: 100px !important;
  }
}

@media (max-width: 768px) {
  .common_image_txt .main_txt p {
    font-size: 22px !important;
  }
}

@media (max-width: 768px) {
  .common_bg_wrapper {
    height: 150px !important;
  }
}

@media (max-width: 992px) {
  .team_tab_section {
    margin-block: 30px !important;
  }
}

.bi:hover {
  color: rgb(180, 218, 254);
}

p {
  overflow: hidden;
}
p img {
  height: auto !important;
  border: 5px solid #dfd9d9;
  max-width: 695px;
}
@media (max-width: 992px) {
  p img {
    width: 100% !important;
  }
}
@media (max-width: 992px) {
  p img {
    width: 100% !important;
  }
}

ol {
  margin-block-start: 0;
  margin-block-end: 0;
  padding: 0;
}

.certificate_section .certificate_container {
  margin-block: 60px;
}
.certificate_section .certificate_container .certificate_hover_wrap {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}
@media (max-width: 768px) {
  .certificate_section .certificate_container .certificate_hover_wrap {
    grid-template-columns: 1fr;
  }
}
.certificate_section .certificate_container .certificate_hover_wrap .certificate_wrapper {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 0 5px;
}
.certificate_section .certificate_container .certificate_hover_wrap .certificate_wrapper .overlapping_content {
  position: absolute;
  background-color: rgba(2, 131, 199, 0);
  bottom: 0;
  overflow: hidden;
  text-align: center;
  top: 0; /* Start off the screen */
  opacity: 0;
  transform: translateY(-3%);
  transition: transform 1s ease-out, opacity 1s ease-out;
}
.certificate_section .certificate_container .certificate_hover_wrap .certificate_wrapper .overlapping_content p {
  font-size: 16px;
  font-family: 500;
  color: white;
  position: absolute;
  bottom: 5px;
  left: 54px;
}
.certificate_section .certificate_container .certificate_hover_wrap .certificate_wrapper:hover .overlapping_content {
  transform: translateY(0); /* Move container to its final position */
  opacity: 1;
  background-color: rgba(2, 131, 199, 0.4);
  width: 100%;
  overflow: visible;
}

.introduction_page {
  padding-bottom: 20px;
  position: relative;
}
.introduction_page .img_before {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  height: 220px;
  width: 220px;
  z-index: 9;
}
.introduction_page .img_before img {
  -o-object-fit: cover;
     object-fit: cover;
}
.introduction_page .img_after {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  height: 220px;
  width: 220px;
  z-index: 99999;
  transform: rotate(180deg);
}
.introduction_page .img_after img {
  -o-object-fit: cover;
     object-fit: cover;
}
.introduction_page .common_image_txt {
  position: relative;
}
.introduction_page .common_image_txt .common_bg_wrapper {
  height: 220px;
  position: relative;
}
.introduction_page .common_image_txt .common_bg_wrapper img {
  filter: grayscale(100%);
  -o-object-fit: cover;
     object-fit: cover;
}
.introduction_page .common_image_txt .common_bg_wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; /* Ensures the pseudo-element covers the wrapper */
  background: linear-gradient(90deg, #000000 0%, rgba(0, 0, 0, 0.5) 50%, #000000 100%);
  pointer-events: none; /* Ensures the pseudo-element doesn't block interactions */
}
.introduction_page .common_image_txt .main_txt {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.introduction_page .common_image_txt .main_txt p {
  font-size: 36px;
  font-weight: 500;
  color: white;
}
@media (max-width: 768px) {
  .introduction_page .common_image_txt .main_txt p {
    font-size: 22px !important;
  }
}
@media (max-width: 768px) {
  .introduction_page .common_image_txt .main_txt p {
    font-size: 28px;
  }
}

.rituals_dreams {
  margin-top: 90px;
}
@media (max-width: 992px) {
  .rituals_dreams {
    padding: 0;
    margin: 0;
  }
}
.rituals_dreams .dreams_wrappper_wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100% !important;
  margin-top: 30px;
  position: relative;
}
@media (max-width: 992px) {
  .rituals_dreams .dreams_wrappper_wrap {
    flex-direction: column;
  }
}
.rituals_dreams .dreams_wrappper_wrap .about-lt {
  width: 50%;
  align-self: self-start;
}
@media (max-width: 992px) {
  .rituals_dreams .dreams_wrappper_wrap .about-lt {
    display: none;
  }
}
.rituals_dreams .dreams_wrappper_wrap .about-lt .radius-o {
  position: relative;
  height: 408px;
  width: 475px;
  border-radius: 50%;
  box-shadow: inset 0 0 43.3px rgba(0, 106, 200, 0.56);
}
.rituals_dreams .dreams_wrappper_wrap .about-lt .radius-o .inner-o {
  height: 306px;
  width: 333px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: inset 0 0 43.3px rgba(0, 106, 200, 0.72);
}
.rituals_dreams .dreams_wrappper_wrap .about-lt .radius-o .dance-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 285px;
}
.rituals_dreams .dreams_wrappper_wrap .about-lt .radius-o:after {
  content: " ";
  position: absolute;
  background: rgba(6, 106, 200, 0.15);
  right: 133px;
  width: 145px;
  height: 105px;
  transform: rotateX(40deg);
  filter: blur(15px);
  bottom: -63px;
  border-radius: 79%;
}
@media (max-width: 768px) {
  .rituals_dreams .dreams_wrappper_wrap .about-lt .radius-o:after {
    display: none;
  }
}
.rituals_dreams .dreams_wrappper_wrap .about-lt .radius-o:before {
  content: " ";
  position: absolute;
  background: rgba(6, 106, 200, 0.15);
  right: 282px;
  width: 70px;
  height: 72px;
  transform: rotateX(40deg);
  filter: blur(15px);
  bottom: -73px;
  border-radius: 79%;
}
@media (max-width: 768px) {
  .rituals_dreams .dreams_wrappper_wrap .about-lt .radius-o:before {
    display: none;
  }
}
.rituals_dreams .dreams_wrappper_wrap .right_dreams_txt {
  width: 48%;
}
@media (max-width: 992px) {
  .rituals_dreams .dreams_wrappper_wrap .right_dreams_txt {
    width: 100%;
  }
}
.rituals_dreams .dreams_wrappper_wrap .right_dreams_txt .first_dreams_txt p {
  font-size: 16px;
  font-weight: 600;
  color: rgb(0, 0, 0);
  position: relative;
}
.rituals_dreams .dreams_wrappper_wrap .right_dreams_txt .first_dreams_txt p::after {
  content: "";
  position: absolute;
  height: 2px;
  width: 50px;
  border-radius: 4px;
  background-color: rgb(6, 106, 200);
  top: 10px;
  left: 155px;
}
.rituals_dreams .dreams_wrappper_wrap .right_dreams_txt .second_txt {
  margin-block: 15px;
}
.rituals_dreams .dreams_wrappper_wrap .right_dreams_txt .second_txt p {
  font-size: 36px;
  font-weight: 600;
  margin: 0;
  color: rgb(0, 0, 0);
}
.rituals_dreams .dreams_wrappper_wrap .right_dreams_txt .second_txt p .blue {
  color: rgb(6, 106, 200);
}
@media (max-width: 768px) {
  .rituals_dreams .dreams_wrappper_wrap .right_dreams_txt .second_txt p {
    font-size: 22px !important;
  }
}
@media (max-width: 992px) {
  .rituals_dreams .dreams_wrappper_wrap .right_dreams_txt .second_txt p {
    font-size: 28px;
  }
}
.rituals_dreams .dreams_wrappper_wrap .right_dreams_txt .third_dream_txt {
  margin-block: 20px;
}
.rituals_dreams .dreams_wrappper_wrap .right_dreams_txt .third_dream_txt p {
  font-size: 16px;
  font-weight: 400;
  text-align: justify;
  color: rgb(115, 115, 115);
}
@media (max-width: 768px) {
  .rituals_dreams .dreams_wrappper_wrap .right_dreams_txt .third_dream_txt p {
    font-size: 14px;
  }
}
.rituals_dreams .dreams_wrappper_wrap .right_dreams_txt .read_button a {
  display: flex;
  gap: 8px;
  align-items: center;
}
.rituals_dreams .dreams_wrappper_wrap .right_dreams_txt .read_button a p {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
  font-family: monda;
}

.mission_vision_container {
  margin-top: 45px;
}
.mission_vision_container .time_line_txt {
  margin-bottom: 30px;
}
.mission_vision_container .time_line_txt p {
  font-size: 16px;
  font-weight: 500;
  color: rgb(115, 115, 115);
}
.mission_vision_container .ft_wrap {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .mission_vision_container .ft_wrap {
    flex-direction: column;
  }
}
.mission_vision_container .ft_wrap .lfr_row {
  width: 49%;
}
@media (max-width: 768px) {
  .mission_vision_container .ft_wrap .lfr_row {
    width: 100%;
  }
}
.mission_vision_container .ft_wrap .lfr_row p {
  font-size: 35px;
  font-weight: 500;
  margin: 0;
}
@media (max-width: 768px) {
  .mission_vision_container .ft_wrap .lfr_row p {
    font-size: 22px;
  }
}
@media (max-width: 992px) {
  .mission_vision_container .ft_wrap .lfr_row p {
    font-size: 28px;
  }
}
.mission_vision_container .ft_wrap .rght_row {
  width: 48%;
}
@media (max-width: 768px) {
  .mission_vision_container .ft_wrap .rght_row {
    width: 100%;
  }
}
.mission_vision_container .ft_wrap .rght_row p {
  font-size: 18px;
  font-weight: 500;
  color: rgb(115, 115, 115);
  margin: 0;
}
@media (max-width: 768px) {
  .mission_vision_container .ft_wrap .rght_row p {
    font-size: 14px;
    margin-block: 10px;
  }
}
.mission_vision_container .mission_vision_goal_wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-bottom: 90px;
}
@media (max-width: 768px) {
  .mission_vision_container .mission_vision_goal_wrapper {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.mission_vision_container .mission_vision_goal_wrapper .mission_card_container {
  background-color: rgb(239, 247, 255);
  padding: 20px;
  border-radius: 4px;
  margin-block: 30px;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
}
.mission_vision_container .mission_vision_goal_wrapper .mission_card_container .wrapperMain {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.mission_vision_container .mission_vision_goal_wrapper .mission_card_container .wrapperMain .mission_icon {
  height: 30px;
  width: 30px;
}
@media (max-width: 768px) {
  .mission_vision_container .mission_vision_goal_wrapper .mission_card_container .wrapperMain .mission_icon {
    height: 15px;
    width: 15px;
  }
}
.mission_vision_container .mission_vision_goal_wrapper .mission_card_container .wrapperMain .mission_main p {
  font-size: 24px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .mission_vision_container .mission_vision_goal_wrapper .mission_card_container .wrapperMain .mission_main p {
    font-size: 16px;
  }
}
.mission_vision_container .mission_vision_goal_wrapper .mission_card_container .mission_txt p {
  font-size: 16px;
  font-weight: 400;
  color: rgb(115, 115, 115);
  text-align: justify;
  margin: 0;
}
@media (max-width: 768px) {
  .mission_vision_container .mission_vision_goal_wrapper .mission_card_container .mission_txt p {
    font-size: 14px;
  }
}

.timeline-container {
  position: relative;
}
@media (max-width: 768px) {
  .timeline-container {
    display: none;
  }
}
.timeline-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 6px;
  height: 100%;
  background: rgb(131, 131, 131);
  transform: translateX(-50%);
  z-index: -1;
}
.timeline-container .timeline-header {
  background-color: rgb(6, 106, 200);
  margin-bottom: 20px;
}
.timeline-container .timeline-header p {
  text-align: center;
  color: #fff;
  padding: 10px 0;
  font-size: 1.5em;
  font-weight: 500;
}
.timeline-container .timeline-item_odd {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin-block: 20px;
}
.timeline-container .timeline-item_odd:nth-child(even) {
  flex-direction: row-reverse;
}
.timeline-container .timeline-item_odd .timeline-item-content {
  width: 35%;
  padding: 10px;
}
.timeline-container .timeline-item_odd .timeline-item-content h3 {
  margin: 0;
  color: #007bff;
  font-size: 36px;
}
.timeline-container .timeline-item_odd .timeline-item-content p {
  margin: 5px 0 0;
  color: rgb(115, 115, 115);
}
.timeline-container .timeline-item_odd .timeline-dot {
  width: 30px;
  height: 30px;
  background: rgb(169, 2, 98);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.timeline-container .timeline-item_odd .timeline-second-dot {
  width: 15px;
  height: 15px;
  background: rgb(169, 2, 98);
  border-radius: 50%;
  position: absolute;
  left: 45%;
}
.timeline-container .timeline-item_odd .timeline-line {
  position: absolute;
  width: 50px;
  height: 5px;
  background: rgb(169, 2, 98);
  top: 50%;
  width: 100px;
  z-index: 0;
}
.timeline-container .timeline-item_odd .timeline-line:nth-child(odd) {
  right: 50%;
  width: 100px;
}
.timeline-container .timeline-item_odd .timeline-items {
  position: absolute;
  left: 50%;
  right: 50%;
  transform: translate(-50%, -50%);
}
.timeline-container .timeline-item_odd .timeline-items .timeline-second-dot {
  width: 15px;
  height: 15px;
  background: rgb(6, 106, 200);
  border-radius: 50%;
  position: absolute;
  z-index: 1;
  left: 90px;
  top: -6px;
  bottom: 0;
}
.timeline-container .timeline-item_odd .timeline-items.odd .timeline-dot {
  background: rgb(6, 106, 200);
}
.timeline-container .timeline-item_odd .timeline-items.odd .timeline-line {
  background: rgb(6, 106, 200);
}
.timeline-container .timeline-item_even {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin-block: 20px;
}
.timeline-container .timeline-item_even:nth-child(even) {
  flex-direction: row-reverse;
}
.timeline-container .timeline-item_even .timeline-item-content {
  width: 35%;
  padding: 10px;
}
.timeline-container .timeline-item_even .timeline-item-content h3 {
  margin: 0;
  color: rgb(169, 2, 98);
  font-size: 36px;
  text-align: end;
}
.timeline-container .timeline-item_even .timeline-item-content p {
  margin: 5px 0 0;
  color: rgb(115, 115, 115);
}
.timeline-container .timeline-item_even .timeline-items.even {
  position: absolute;
  left: 50%;
  right: 50%;
  transform: translate(-50%, -50%);
}
.timeline-container .timeline-item_even .timeline-items.even .timeline-dot {
  width: 30px;
  height: 30px;
  background: rgb(169, 2, 98);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.timeline-container .timeline-item_even .timeline-items.even .timeline-second-dot {
  width: 15px;
  height: 15px;
  background: rgb(169, 2, 98);
  border-radius: 50%;
  position: absolute;
  left: -109px;
  top: -5px;
}
.timeline-container .timeline-item_even .timeline-items.even .timeline-line {
  position: absolute;
  width: 50px;
  height: 5px;
  background: rgb(169, 2, 98);
  top: 50%;
  z-index: 0;
}
.timeline-container .timeline-item_even .timeline-items.even .timeline-line:nth-child(even) {
  right: 50%;
  width: 100px;
}

.rights_for_dreams .rights_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.rights_for_dreams .rights_wrapper .left_rights_txt {
  width: 65%;
}
.rights_for_dreams .rights_wrapper .left_rights_txt .quote_container .bi {
  color: #066ac8;
  transform: rotate(180deg);
  height: 60px;
  width: 60px;
}
.rights_for_dreams .rights_wrapper .left_rights_txt .first_txt {
  margin-block: 20px;
}
.rights_for_dreams .rights_wrapper .left_rights_txt .first_txt p {
  font-size: 36px;
  font-weight: 600;
  color: rgb(0, 0, 0);
}
.rights_for_dreams .rights_wrapper .left_rights_txt .first_txt p .blue {
  color: rgb(6, 106, 200);
}
.rights_for_dreams .rights_wrapper .left_rights_txt .third_dream_txt {
  margin-block: 20px;
}
.rights_for_dreams .rights_wrapper .left_rights_txt .third_dream_txt p {
  font-size: 16px;
  font-weight: 400;
  text-align: justify;
  color: rgb(115, 115, 115);
}
.rights_for_dreams .rights_wrapper .right_rights_image {
  width: 30%;
}
.rights_for_dreams .rights_wrapper .right_rights_image .image_container_wrapper {
  position: relative;
  height: 420px;
}
.rights_for_dreams .rights_wrapper .right_rights_image .image_container_wrapper img {
  -o-object-fit: cover;
     object-fit: cover;
}
.rights_for_dreams .rights_wrapper .right_rights_image .image_container_wrapper .image_designation_container {
  position: absolute;
  background-color: #066ac8;
  padding: 8px 30px;
  bottom: 0;
  right: 0;
}
.rights_for_dreams .rights_wrapper .right_rights_image .image_container_wrapper .image_designation_container p {
  text-align: end;
}
.rights_for_dreams .rights_wrapper .right_rights_image .image_container_wrapper .image_designation_container p:nth-child(1) {
  font-size: 24px;
  font-weight: 500;
  color: white;
  margin: 0;
  padding: 5px;
}
.rights_for_dreams .rights_wrapper .right_rights_image .image_container_wrapper .image_designation_container p:nth-child(2) {
  font-size: 20px;
  font-weight: 400;
  color: white;
  margin: 0;
  padding-block: 5px;
}

.img_registration_wrap {
  margin-block: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 30px;
  height: 350px;
}
@media (max-width: 768px) {
  .img_registration_wrap {
    height: auto;
  }
}
.img_registration_wrap .lft_img {
  width: 50%;
  filter: grayscale(100%);
  height: 100%;
}
@media (max-width: 768px) {
  .img_registration_wrap .lft_img {
    display: none;
  }
}
.img_registration_wrap .rght_txt {
  width: 50%;
  background-color: rgb(6, 106, 200);
  padding-inline: 20px;
  height: 100%;
}
@media (max-width: 768px) {
  .img_registration_wrap .rght_txt {
    width: 100%;
    height: auto;
    text-align: center;
  }
}
.img_registration_wrap .rght_txt p {
  font-size: 40px;
  font-weight: 600;
  color: rgb(252, 252, 252);
  margin-block: 30px;
}
@media (max-width: 768px) {
  .img_registration_wrap .rght_txt p {
    font-size: 22px;
  }
}
@media (max-width: 992px) {
  .img_registration_wrap .rght_txt p {
    font-size: 28px;
  }
}
.img_registration_wrap .rght_txt .entry_form {
  background-color: white !important;
  padding: 8px 15px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .img_registration_wrap .rght_txt .entry_form {
    padding: 4px 8px;
  }
}
.img_registration_wrap .rght_txt .entry_form a {
  display: inline-block;
}
.img_registration_wrap .rght_txt .entry_form a p {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  color: rgb(6, 106, 200);
}
@media (max-width: 768px) {
  .img_registration_wrap .rght_txt .entry_form a p {
    font-size: 12px;
  }
}

.introduction_page {
  padding-bottom: 20px;
  position: relative;
}
.introduction_page .img_before {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  height: 220px;
  width: 220px;
  z-index: 9;
}
.introduction_page .img_before img {
  -o-object-fit: cover;
     object-fit: cover;
}
.introduction_page .img_after {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  height: 220px;
  width: 220px;
  z-index: 9;
  transform: rotate(180deg);
}
.introduction_page .img_after img {
  -o-object-fit: cover;
     object-fit: cover;
}
.introduction_page .common_image_txt {
  position: relative;
}
.introduction_page .common_image_txt .common_bg_wrapper {
  height: 220px;
  position: relative;
}
.introduction_page .common_image_txt .common_bg_wrapper img {
  filter: grayscale(100%);
  -o-object-fit: cover;
     object-fit: cover;
}
.introduction_page .common_image_txt .common_bg_wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; /* Ensures the pseudo-element covers the wrapper */
  background: linear-gradient(90deg, #000000 0%, rgba(0, 0, 0, 0.5) 50%, #000000 100%);
  pointer-events: none; /* Ensures the pseudo-element doesn't block interactions */
}
.introduction_page .common_image_txt .main_txt {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.introduction_page .common_image_txt .main_txt p {
  font-size: 36px;
  font-weight: 500;
  color: white;
}

.team_tab_section {
  margin-block: 40px;
}
.team_tab_section .container_wrapper {
  display: flex;
  gap: 40px;
}
.team_tab_section .container_wrapper .tabs {
  background-color: rgb(239, 247, 255);
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
  padding: 20px 20px;
  width: 17%;
  transition: all 0.3s ease-in-out;
  height: 40%;
}
.team_tab_section .container_wrapper .tabs .tab {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-inline: 10px;
  cursor: pointer;
}
.team_tab_section .container_wrapper .tabs .tab .bi {
  color: rgb(6, 106, 200);
  height: 20px;
  width: 17px;
}
.team_tab_section .container_wrapper .tabs .tab li {
  font-size: 16px;
  font-weight: 500;
  color: rgb(115, 115, 115);
  list-style-type: none;
}
.team_tab_section .container_wrapper .tabs .tab.active {
  background-color: rgb(6, 106, 200);
  padding-inline: 10px;
  border-radius: 4px;
  padding-block: 12px;
}
.team_tab_section .container_wrapper .tabs .tab.active .bi {
  color: rgb(252, 252, 252);
}
.team_tab_section .container_wrapper .tabs .tab.active li {
  color: rgb(252, 252, 252);
}
.team_tab_section .container_wrapper .content #content1 {
  width: 70%;
}
.team_tab_section .container_wrapper .content #content1 .container_content_wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}
@media (max-width: 768px) {
  .team_tab_section .container_wrapper .content #content1 .container_content_wrapper {
    grid-template-columns: 1fr !important;
  }
}
@media (max-width: 992px) {
  .team_tab_section .container_wrapper .content #content1 .container_content_wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .team_tab_section .container_wrapper .content #content1 .container_content_wrapper {
    grid-template-columns: 1fr !important;
  }
}
@media (max-width: 992px) {
  .team_tab_section .container_wrapper .content #content1 .container_content_wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
.team_tab_section .container_wrapper .content #content1 .container_content_wrapper .image_container_wrap {
  position: relative;
  cursor: pointer;
}
.team_tab_section .container_wrapper .content #content1 .container_content_wrapper .image_container_wrap .img_hover_bg {
  height: 170px;
  width: 270px;
  background: rgb(6, 106, 200);
  position: absolute;
  z-index: -1;
  top: 0;
  left: -15px;
  display: none;
  transition: all 0.3s ease-in-out;
}
.team_tab_section .container_wrapper .content #content1 .container_content_wrapper .image_container_wrap .img_hover_bg h3 {
  font-size: 20px;
  color: rgb(252, 252, 252);
  font-weight: 500;
  text-align: center;
  margin-block: 10px !important;
  margin-inline: 0;
}
@media (max-width: 768px) {
  .team_tab_section .container_wrapper .content #content1 .container_content_wrapper .image_container_wrap .img_hover_bg h3 {
    font-size: 16px;
  }
}
.team_tab_section .container_wrapper .content #content1 .container_content_wrapper .image_container_wrap .img_hover_bg p {
  font-size: 16px;
  color: white;
  font-weight: 400;
  text-align: center;
  margin: 0;
}
@media (max-width: 768px) {
  .team_tab_section .container_wrapper .content #content1 .container_content_wrapper .image_container_wrap .img_hover_bg p {
    font-size: 14px;
  }
}
.team_tab_section .container_wrapper .content #content1 .container_content_wrapper .image_container_wrap .img_default_bg {
  height: 170px;
  width: 270px;
  background-color: rgba(180, 218, 254, 0.5);
  position: absolute;
  z-index: -1;
  top: 0;
  left: -15px;
  box-shadow: 0px 0px 15px 0px rgba(6, 106, 200, 0.1);
}
.team_tab_section .container_wrapper .content #content1 .container_content_wrapper .image_container_wrap .img_default_bg h3 {
  font-size: 20px;
  font-weight: 500;
  margin-block: 10px !important;
  margin-inline: 20px;
  margin-block: 0;
  text-align: center;
}
@media (max-width: 768px) {
  .team_tab_section .container_wrapper .content #content1 .container_content_wrapper .image_container_wrap .img_default_bg h3 {
    font-size: 16px;
  }
}
.team_tab_section .container_wrapper .content #content1 .container_content_wrapper .image_container_wrap .img_default_bg p {
  font-size: 16px;
  color: rgb(115, 115, 115);
  font-weight: 400;
  margin-inline: 20px;
  margin-block: 0;
  text-align: center;
}
@media (max-width: 768px) {
  .team_tab_section .container_wrapper .content #content1 .container_content_wrapper .image_container_wrap .img_default_bg p {
    font-size: 12px;
  }
}
.team_tab_section .container_wrapper .content #content1 .container_content_wrapper .image_container_wrap .img_wrap {
  height: 260px;
  width: 240px;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  margin-top: 80px;
}
@media (max-width: 768px) {
  .team_tab_section .container_wrapper .content #content1 .container_content_wrapper .image_container_wrap .img_wrap {
    height: 200px;
  }
}
.team_tab_section .container_wrapper .content #content1 .container_content_wrapper .image_container_wrap .img_wrap .share_icon {
  position: absolute;
  cursor: pointer;
  top: -20px;
  right: 10px;
  background-color: rgb(6, 106, 200);
  padding: 10px 10px;
}
.team_tab_section .container_wrapper .content #content1 .container_content_wrapper .image_container_wrap .img_wrap .share_icon .bi {
  height: 18px;
  width: 18px;
  color: rgb(252, 252, 252);
}
.team_tab_section .container_wrapper .content #content1 .container_content_wrapper .image_container_wrap .img_wrap .social_icons_wrapper {
  position: absolute;
  cursor: pointer;
  top: 0;
  right: 10px;
  display: none;
}
.team_tab_section .container_wrapper .content #content1 .container_content_wrapper .image_container_wrap .img_wrap .social_icons_wrapper .social_wrap {
  display: flex;
  flex-direction: column;
  background-color: rgb(6, 106, 200);
  padding: 10px 10px;
}
.team_tab_section .container_wrapper .content #content1 .container_content_wrapper .image_container_wrap .img_wrap .social_icons_wrapper .social_wrap .bi {
  margin-block: 8px;
  height: 25px;
  width: 25px;
  color: rgb(252, 252, 252);
}
.team_tab_section .container_wrapper .content #content1 .container_content_wrapper .image_container_wrap .img_wrap .social_icons_wrapper .social_wrap .bi:hover {
  color: rgba(180, 218, 254, 0.5);
}
.team_tab_section .container_wrapper .content #content1 .container_content_wrapper .image_container_wrap:hover .img_default_bg {
  display: none;
}
.team_tab_section .container_wrapper .content #content1 .container_content_wrapper .image_container_wrap:hover .share_icon {
  display: none;
}
.team_tab_section .container_wrapper .content #content1 .container_content_wrapper .image_container_wrap:hover .img_hover_bg {
  display: block;
}
.team_tab_section .container_wrapper .content #content1 .container_content_wrapper .image_container_wrap:hover .social_icons_wrapper {
  display: block;
}
.team_tab_section .container_wrapper .content #content2 {
  width: 70%;
}
.team_tab_section .container_wrapper .content #content2 .container_content_wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}
@media (max-width: 768px) {
  .team_tab_section .container_wrapper .content #content2 .container_content_wrapper {
    grid-template-columns: 1fr !important;
  }
}
@media (max-width: 992px) {
  .team_tab_section .container_wrapper .content #content2 .container_content_wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
.team_tab_section .container_wrapper .content #content2 .container_content_wrapper .image_container_wrap {
  position: relative;
  cursor: pointer;
}
.team_tab_section .container_wrapper .content #content2 .container_content_wrapper .image_container_wrap .img_hover_bg {
  height: 170px;
  width: 270px;
  background: rgb(6, 106, 200);
  position: absolute;
  z-index: -1;
  top: 0;
  left: -15px;
  display: none;
  transition: all 0.3s ease-in-out;
}
.team_tab_section .container_wrapper .content #content2 .container_content_wrapper .image_container_wrap .img_hover_bg h3 {
  font-size: 20px;
  color: rgb(252, 252, 252);
  font-weight: 500;
  text-align: center;
  margin-block: 10px !important;
  margin-inline: 0;
}
@media (max-width: 768px) {
  .team_tab_section .container_wrapper .content #content2 .container_content_wrapper .image_container_wrap .img_hover_bg h3 {
    font-size: 16px;
  }
}
.team_tab_section .container_wrapper .content #content2 .container_content_wrapper .image_container_wrap .img_hover_bg p {
  font-size: 16px;
  color: white;
  font-weight: 400;
  text-align: center;
  margin: 0;
}
@media (max-width: 768px) {
  .team_tab_section .container_wrapper .content #content2 .container_content_wrapper .image_container_wrap .img_hover_bg p {
    font-size: 14px;
  }
}
.team_tab_section .container_wrapper .content #content2 .container_content_wrapper .image_container_wrap .img_default_bg {
  height: 170px;
  width: 270px;
  background-color: rgba(180, 218, 254, 0.5);
  position: absolute;
  z-index: -1;
  top: 0;
  left: -15px;
  box-shadow: 0px 0px 15px 0px rgba(6, 106, 200, 0.1);
}
.team_tab_section .container_wrapper .content #content2 .container_content_wrapper .image_container_wrap .img_default_bg h3 {
  font-size: 20px;
  font-weight: 500;
  margin-block: 10px !important;
  margin-inline: 20px;
  margin-block: 0;
}
@media (max-width: 768px) {
  .team_tab_section .container_wrapper .content #content2 .container_content_wrapper .image_container_wrap .img_default_bg h3 {
    font-size: 16px;
  }
}
.team_tab_section .container_wrapper .content #content2 .container_content_wrapper .image_container_wrap .img_default_bg p {
  font-size: 16px;
  color: rgb(115, 115, 115);
  font-weight: 400;
  margin-inline: 20px;
  margin-block: 0;
}
.team_tab_section .container_wrapper .content #content2 .container_content_wrapper .image_container_wrap .img_wrap {
  height: 260px;
  width: 240px;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  margin-top: 80px;
}
@media (max-width: 768px) {
  .team_tab_section .container_wrapper .content #content2 .container_content_wrapper .image_container_wrap .img_wrap {
    height: 200px;
  }
}
.team_tab_section .container_wrapper .content #content2 .container_content_wrapper .image_container_wrap .img_wrap .share_icon {
  position: absolute;
  cursor: pointer;
  top: -20px;
  right: 10px;
  background-color: rgb(6, 106, 200);
  padding: 10px 10px;
}
.team_tab_section .container_wrapper .content #content2 .container_content_wrapper .image_container_wrap .img_wrap .share_icon .bi {
  height: 18px;
  width: 18px;
  color: rgb(252, 252, 252);
}
.team_tab_section .container_wrapper .content #content2 .container_content_wrapper .image_container_wrap .img_wrap .social_icons_wrapper {
  position: absolute;
  cursor: pointer;
  top: 0;
  right: 10px;
  display: none;
}
.team_tab_section .container_wrapper .content #content2 .container_content_wrapper .image_container_wrap .img_wrap .social_icons_wrapper .social_wrap {
  display: flex;
  flex-direction: column;
  background-color: rgb(6, 106, 200);
  padding: 10px 10px;
}
.team_tab_section .container_wrapper .content #content2 .container_content_wrapper .image_container_wrap .img_wrap .social_icons_wrapper .social_wrap .bi {
  margin-block: 8px;
  height: 25px;
  width: 25px;
  color: rgb(252, 252, 252);
}
.team_tab_section .container_wrapper .content #content2 .container_content_wrapper .image_container_wrap .img_wrap .social_icons_wrapper .social_wrap .bi:hover {
  color: rgba(180, 218, 254, 0.5);
}
.team_tab_section .container_wrapper .content #content2 .container_content_wrapper .image_container_wrap:hover .img_default_bg {
  display: none;
}
.team_tab_section .container_wrapper .content #content2 .container_content_wrapper .image_container_wrap:hover .share_icon {
  display: none;
}
.team_tab_section .container_wrapper .content #content2 .container_content_wrapper .image_container_wrap:hover .img_hover_bg {
  display: block;
}
.team_tab_section .container_wrapper .content #content2 .container_content_wrapper .image_container_wrap:hover .social_icons_wrapper {
  display: block;
}
.team_tab_section .container_wrapper .content #content3 {
  width: 70%;
}
.team_tab_section .container_wrapper .content #content3 .container_content_wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}
@media (max-width: 768px) {
  .team_tab_section .container_wrapper .content #content3 .container_content_wrapper {
    grid-template-columns: 1fr !important;
  }
}
@media (max-width: 992px) {
  .team_tab_section .container_wrapper .content #content3 .container_content_wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
.team_tab_section .container_wrapper .content #content3 .container_content_wrapper .image_container_wrap {
  position: relative;
  cursor: pointer;
}
.team_tab_section .container_wrapper .content #content3 .container_content_wrapper .image_container_wrap .img_hover_bg {
  height: 170px;
  width: 270px;
  background: rgb(6, 106, 200);
  position: absolute;
  z-index: -1;
  top: 0;
  left: -15px;
  display: none;
  transition: all 0.3s ease-in-out;
}
.team_tab_section .container_wrapper .content #content3 .container_content_wrapper .image_container_wrap .img_hover_bg h3 {
  font-size: 20px;
  color: rgb(252, 252, 252);
  font-weight: 500;
  text-align: center;
  margin-block: 10px !important;
  margin-inline: 0;
}
@media (max-width: 768px) {
  .team_tab_section .container_wrapper .content #content3 .container_content_wrapper .image_container_wrap .img_hover_bg h3 {
    font-size: 16px;
  }
}
.team_tab_section .container_wrapper .content #content3 .container_content_wrapper .image_container_wrap .img_hover_bg p {
  font-size: 16px;
  color: white;
  font-weight: 400;
  text-align: center;
  margin: 0;
}
@media (max-width: 768px) {
  .team_tab_section .container_wrapper .content #content3 .container_content_wrapper .image_container_wrap .img_hover_bg p {
    font-size: 14px;
  }
}
.team_tab_section .container_wrapper .content #content3 .container_content_wrapper .image_container_wrap .img_default_bg {
  height: 170px;
  width: 270px;
  background-color: rgba(180, 218, 254, 0.5);
  position: absolute;
  z-index: -1;
  top: 0;
  left: -15px;
  box-shadow: 0px 0px 15px 0px rgba(6, 106, 200, 0.1);
}
.team_tab_section .container_wrapper .content #content3 .container_content_wrapper .image_container_wrap .img_default_bg h3 {
  font-size: 20px;
  font-weight: 500;
  margin-block: 10px !important;
  margin-inline: 20px;
  margin-block: 0;
}
@media (max-width: 768px) {
  .team_tab_section .container_wrapper .content #content3 .container_content_wrapper .image_container_wrap .img_default_bg h3 {
    font-size: 16px;
  }
}
.team_tab_section .container_wrapper .content #content3 .container_content_wrapper .image_container_wrap .img_default_bg p {
  font-size: 16px;
  color: rgb(115, 115, 115);
  font-weight: 400;
  margin-inline: 20px;
  margin-block: 0;
}
@media (max-width: 768px) {
  .team_tab_section .container_wrapper .content #content3 .container_content_wrapper .image_container_wrap .img_default_bg p {
    font-size: 14px;
  }
}
.team_tab_section .container_wrapper .content #content3 .container_content_wrapper .image_container_wrap .img_wrap {
  height: 260px;
  width: 240px;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  margin-top: 80px;
}
@media (max-width: 768px) {
  .team_tab_section .container_wrapper .content #content3 .container_content_wrapper .image_container_wrap .img_wrap {
    height: 200px;
  }
}
.team_tab_section .container_wrapper .content #content3 .container_content_wrapper .image_container_wrap .img_wrap .share_icon {
  position: absolute;
  cursor: pointer;
  top: -20px;
  right: 10px;
  background-color: rgb(6, 106, 200);
  padding: 10px 10px;
}
.team_tab_section .container_wrapper .content #content3 .container_content_wrapper .image_container_wrap .img_wrap .share_icon .bi {
  height: 18px;
  width: 18px;
  color: rgb(252, 252, 252);
}
.team_tab_section .container_wrapper .content #content3 .container_content_wrapper .image_container_wrap .img_wrap .social_icons_wrapper {
  position: absolute;
  cursor: pointer;
  top: 0;
  right: 10px;
  display: none;
}
.team_tab_section .container_wrapper .content #content3 .container_content_wrapper .image_container_wrap .img_wrap .social_icons_wrapper .social_wrap {
  display: flex;
  flex-direction: column;
  background-color: rgb(6, 106, 200);
  padding: 10px 10px;
}
.team_tab_section .container_wrapper .content #content3 .container_content_wrapper .image_container_wrap .img_wrap .social_icons_wrapper .social_wrap .bi {
  margin-block: 8px;
  height: 25px;
  width: 25px;
  color: rgb(252, 252, 252);
}
.team_tab_section .container_wrapper .content #content3 .container_content_wrapper .image_container_wrap .img_wrap .social_icons_wrapper .social_wrap .bi:hover {
  color: rgba(180, 218, 254, 0.5);
}
.team_tab_section .container_wrapper .content #content3 .container_content_wrapper .image_container_wrap:hover .img_default_bg {
  display: none;
}
.team_tab_section .container_wrapper .content #content3 .container_content_wrapper .image_container_wrap:hover .share_icon {
  display: none;
}
.team_tab_section .container_wrapper .content #content3 .container_content_wrapper .image_container_wrap:hover .img_hover_bg {
  display: block;
}
.team_tab_section .container_wrapper .content #content3 .container_content_wrapper .image_container_wrap:hover .social_icons_wrapper {
  display: block;
}
.team_tab_section .container_wrapper .content #content4 {
  width: 70%;
}
.team_tab_section .container_wrapper .content #content4 .container_content_wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}
@media (max-width: 768px) {
  .team_tab_section .container_wrapper .content #content4 .container_content_wrapper {
    grid-template-columns: 1fr !important;
  }
}
@media (max-width: 992px) {
  .team_tab_section .container_wrapper .content #content4 .container_content_wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
.team_tab_section .container_wrapper .content #content4 .container_content_wrapper .image_container_wrap {
  position: relative;
  cursor: pointer;
}
.team_tab_section .container_wrapper .content #content4 .container_content_wrapper .image_container_wrap .img_hover_bg {
  height: 170px;
  width: 270px;
  background: rgb(6, 106, 200);
  position: absolute;
  z-index: -1;
  top: 0;
  left: -15px;
  display: none;
  transition: all 0.3s ease-in-out;
}
.team_tab_section .container_wrapper .content #content4 .container_content_wrapper .image_container_wrap .img_hover_bg h3 {
  font-size: 20px;
  color: rgb(252, 252, 252);
  font-weight: 500;
  text-align: center;
  margin-block: 10px !important;
  margin-inline: 0;
}
@media (max-width: 768px) {
  .team_tab_section .container_wrapper .content #content4 .container_content_wrapper .image_container_wrap .img_hover_bg h3 {
    font-size: 16px;
  }
}
.team_tab_section .container_wrapper .content #content4 .container_content_wrapper .image_container_wrap .img_hover_bg p {
  font-size: 16px;
  color: white;
  font-weight: 400;
  text-align: center;
  margin: 0;
}
@media (max-width: 768px) {
  .team_tab_section .container_wrapper .content #content4 .container_content_wrapper .image_container_wrap .img_hover_bg p {
    font-size: 14px;
  }
}
.team_tab_section .container_wrapper .content #content4 .container_content_wrapper .image_container_wrap .img_default_bg {
  height: 170px;
  width: 270px;
  background-color: rgba(180, 218, 254, 0.5);
  position: absolute;
  z-index: -1;
  top: 0;
  left: -15px;
  box-shadow: 0px 0px 15px 0px rgba(6, 106, 200, 0.1);
}
.team_tab_section .container_wrapper .content #content4 .container_content_wrapper .image_container_wrap .img_default_bg h3 {
  font-size: 20px;
  font-weight: 500;
  margin-block: 10px !important;
  margin-inline: 20px;
  margin-block: 0;
}
@media (max-width: 768px) {
  .team_tab_section .container_wrapper .content #content4 .container_content_wrapper .image_container_wrap .img_default_bg h3 {
    font-size: 16px;
  }
}
.team_tab_section .container_wrapper .content #content4 .container_content_wrapper .image_container_wrap .img_default_bg p {
  font-size: 16px;
  color: rgb(115, 115, 115);
  font-weight: 400;
  margin-inline: 20px;
  margin-block: 0;
}
@media (max-width: 768px) {
  .team_tab_section .container_wrapper .content #content4 .container_content_wrapper .image_container_wrap .img_default_bg p {
    font-size: 14px;
  }
}
.team_tab_section .container_wrapper .content #content4 .container_content_wrapper .image_container_wrap .img_wrap {
  height: 260px;
  width: 240px;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  margin-top: 80px;
}
@media (max-width: 768px) {
  .team_tab_section .container_wrapper .content #content4 .container_content_wrapper .image_container_wrap .img_wrap {
    height: 200px;
  }
}
.team_tab_section .container_wrapper .content #content4 .container_content_wrapper .image_container_wrap .img_wrap .share_icon {
  position: absolute;
  cursor: pointer;
  top: -20px;
  right: 10px;
  background-color: rgb(6, 106, 200);
  padding: 10px 10px;
}
.team_tab_section .container_wrapper .content #content4 .container_content_wrapper .image_container_wrap .img_wrap .share_icon .bi {
  height: 18px;
  width: 18px;
  color: rgb(252, 252, 252);
}
.team_tab_section .container_wrapper .content #content4 .container_content_wrapper .image_container_wrap .img_wrap .social_icons_wrapper {
  position: absolute;
  cursor: pointer;
  top: 0;
  right: 10px;
  display: none;
}
.team_tab_section .container_wrapper .content #content4 .container_content_wrapper .image_container_wrap .img_wrap .social_icons_wrapper .social_wrap {
  display: flex;
  flex-direction: column;
  background-color: rgb(6, 106, 200);
  padding: 10px 10px;
}
.team_tab_section .container_wrapper .content #content4 .container_content_wrapper .image_container_wrap .img_wrap .social_icons_wrapper .social_wrap .bi {
  margin-block: 8px;
  height: 25px;
  width: 25px;
  color: rgb(252, 252, 252);
}
.team_tab_section .container_wrapper .content #content4 .container_content_wrapper .image_container_wrap .img_wrap .social_icons_wrapper .social_wrap .bi:hover {
  color: rgba(180, 218, 254, 0.5);
}
.team_tab_section .container_wrapper .content #content4 .container_content_wrapper .image_container_wrap:hover .img_default_bg {
  display: none;
}
.team_tab_section .container_wrapper .content #content4 .container_content_wrapper .image_container_wrap:hover .share_icon {
  display: none;
}
.team_tab_section .container_wrapper .content #content4 .container_content_wrapper .image_container_wrap:hover .img_hover_bg {
  display: block;
}
.team_tab_section .container_wrapper .content #content4 .container_content_wrapper .image_container_wrap:hover .social_icons_wrapper {
  display: block;
}

.introduction_page {
  padding-bottom: 20px;
  position: relative;
}
.introduction_page .img_before {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  height: 220px;
  width: 220px;
  z-index: 9;
}
.introduction_page .img_before img {
  -o-object-fit: cover;
     object-fit: cover;
}
.introduction_page .img_after {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  height: 220px;
  width: 220px;
  z-index: 9;
  transform: rotate(180deg);
}
.introduction_page .img_after img {
  -o-object-fit: cover;
     object-fit: cover;
}
.introduction_page .common_image_txt {
  position: relative;
}
.introduction_page .common_image_txt .common_bg_wrapper {
  height: 220px;
  position: relative;
}
.introduction_page .common_image_txt .common_bg_wrapper img {
  filter: grayscale(100%);
  -o-object-fit: cover;
     object-fit: cover;
}
.introduction_page .common_image_txt .common_bg_wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; /* Ensures the pseudo-element covers the wrapper */
  background: linear-gradient(90deg, #000000 0%, rgba(0, 0, 0, 0.5) 50%, #000000 100%);
  pointer-events: none; /* Ensures the pseudo-element doesn't block interactions */
}
.introduction_page .common_image_txt .main_txt {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.introduction_page .common_image_txt .main_txt p {
  font-size: 36px;
  font-weight: 500;
  color: white;
}

.program-container-main {
  margin-block: 20px 90px;
}
.program-container-main .program-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}
@media (max-width: 992px) {
  .program-container-main .program-content {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .program-container-main .program-content {
    grid-template-columns: 1fr !important;
  }
}
.program-container-main .program-content .program-r1 .r1-img img {
  height: 180px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 992px) {
  .program-container-main .program-content .program-r1 .r1-img img {
    height: 300px;
  }
}
@media (max-width: 768px) {
  .program-container-main .program-content .program-r1 .r1-img img {
    height: 220px !important;
  }
}
.program-container-main .program-content .program-r1 .program-r1-title {
  margin-block: 20px;
}
@media (max-width: 768px) {
  .program-container-main .program-content .program-r1 .program-r1-title {
    margin-bottom: 15px !important;
  }
}
.program-container-main .program-content .program-r1 .program-r1-title p {
  font-size: 20px;
  font-weight: 500;
}
@media (max-width: 992px) {
  .program-container-main .program-content .program-r1 .program-r1-title p {
    font-size: 18px;
  }
}
.program-container-main .program-content .program-r1 .program-r1-txt {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .program-container-main .program-content .program-r1 .program-r1-txt {
    margin-bottom: 15px !important;
  }
}
.program-container-main .program-content .program-r1 .program-r1-txt p {
  font-size: 14px;
  color: #737373;
}
.program-container-main .program-content .program-r1 .readmore-none a {
  display: flex;
  align-items: center;
  gap: 5px;
}
.program-container-main .program-content .program-r1 .readmore-none a p {
  font-size: 14px;
  font-weight: 500;
}
.program-container-main .program-content .program-r1 .readmore-none a p:hover {
  color: rgb(6, 106, 200);
}
.program-container-main .program-content .program-r1 .readmore-none a .bi {
  height: 14px;
  width: 14px;
}
.program-container-main .program-content .program-r1 .readmore-none a .bi:hover {
  color: rgb(6, 106, 200);
}
.program-container-main .program-content .program-r1 .readmore-none a:hover {
  color: rgb(6, 106, 200);
}

.gallery-container-main {
  padding-block: 20px 90px;
}
.gallery-container-main .tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 40px;
}
.gallery-container-main .tab {
  cursor: pointer;
  transition: 0.3s;
  background-color: white;
  padding: 8px 0;
  border: 1px solid rgb(6, 106, 200);
  color: rgb(6, 106, 200);
  width: 140px;
  font-weight: 500;
  font-size: 20px;
}
@media (max-width: 992px) {
  .gallery-container-main .tab {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .gallery-container-main .tab {
    font-size: 16px !important;
  }
}
.gallery-container-main .tab.active {
  background-color: rgb(6, 106, 200);
  color: white;
}
.gallery-container-main .content {
  display: none;
}
.gallery-container-main .content .gallery-content-main {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 992px) {
  .gallery-container-main .content .gallery-content-main {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .gallery-container-main .content .gallery-content-main {
    grid-template-columns: 1fr !important;
  }
}
.gallery-container-main .content .gallery-content-main .gallery-r1 .gallery-g1-title {
  padding-top: 20px;
}
.gallery-container-main .content .gallery-content-main .gallery-r1 .gallery-g1-title p {
  font-weight: 500;
  font-size: 20px;
  color: #000000;
}
@media (max-width: 992px) {
  .gallery-container-main .content .gallery-content-main .gallery-r1 .gallery-g1-title p {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .gallery-container-main .content .gallery-content-main .gallery-r1 .gallery-g1-title p {
    font-size: 16px !important;
  }
}
.gallery-container-main .content .gallery-content-main .gallery-r1 .gallery-g1-txt {
  margin-block: 15px;
}
.gallery-container-main .content .gallery-content-main .gallery-r1 .gallery-g1-txt p {
  color: #737373;
}
@media (max-width: 992px) {
  .gallery-container-main .content .gallery-content-main .gallery-r1 .gallery-g1-txt p {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .gallery-container-main .content .gallery-content-main .gallery-r1 .gallery-g1-txt p {
    font-size: 12px !important;
  }
}
.gallery-container-main .content .gallery-content-main .gallery-r1 .g1-img {
  aspect-ratio: 3/2;
}
.gallery-container-main .content .gallery-content-main .gallery-r1 .g1-img iframe {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border: none;
}
.gallery-container-main .content .gallery-content-main .gallery-r1 .g1-img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.gallery-container-main .content.active {
  display: block;
}

.blogs-container-main {
  margin-block: 60px;
}
.blogs-container-main .blogs-content-main {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}
@media (max-width: 992px) {
  .blogs-container-main .blogs-content-main {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .blogs-container-main .blogs-content-main {
    grid-template-columns: 1fr !important;
  }
}
.blogs-container-main .blogs-content-main .blogs-r1 {
  padding: 12px;
  box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.2), 0 0px 2px 0 rgba(0, 0, 0, 0.19);
}
.blogs-container-main .blogs-content-main .blogs-r1 .blogs-img img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 992px) {
  .blogs-container-main .blogs-content-main .blogs-r1 .blogs-img img {
    height: 280px;
  }
}
@media (max-width: 768px) {
  .blogs-container-main .blogs-content-main .blogs-r1 .blogs-img img {
    height: 300px !important;
  }
}
.blogs-container-main .blogs-content-main .blogs-r1 .blogs-b1-header {
  padding-top: 18px;
}
.blogs-container-main .blogs-content-main .blogs-r1 .blogs-b1-header p {
  font-size: 14px;
  font-weight: 500;
  color: rgb(6, 106, 200);
}
.blogs-container-main .blogs-content-main .blogs-r1 .blogs-b1-title {
  padding-top: 5px;
}
.blogs-container-main .blogs-content-main .blogs-r1 .blogs-b1-title p {
  font-size: 20px;
  font-weight: 500;
  margin: 0;
}
@media (max-width: 992px) {
  .blogs-container-main .blogs-content-main .blogs-r1 .blogs-b1-title p {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .blogs-container-main .blogs-content-main .blogs-r1 .blogs-b1-title p {
    font-size: 14px;
  }
}
.blogs-container-main .blogs-content-main .blogs-r1 .blogs-b1-txt {
  display: flex;
  gap: 5px;
  align-items: center;
  color: rgb(6, 106, 200);
  padding-top: 15px;
}
.blogs-container-main .blogs-content-main .blogs-r1 .blogs-b1-txt .bi-calendar-week {
  height: 12px;
  width: 12px;
}
.blogs-container-main .blogs-content-main .blogs-r1 .blogs-b1-txt p {
  font-size: 14px;
  color: #737373;
}

.contact-container-main {
  margin-top: 90px;
  margin-bottom: 90px;
}
@media (max-width: 768px) {
  .contact-container-main {
    margin-block: 10px !important;
  }
}
.contact-container-main .contact-content {
  display: flex;
  gap: 20px;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .contact-container-main .contact-content {
    flex-direction: column;
  }
}
.contact-container-main .contact-content .contact-content-lt {
  width: 50%;
}
@media (max-width: 768px) {
  .contact-container-main .contact-content .contact-content-lt {
    width: 100%;
  }
}
.contact-container-main .contact-content .contact-content-lt .contact-lt-header p {
  font-size: 36px;
  font-weight: 600;
}
@media (max-width: 992px) {
  .contact-container-main .contact-content .contact-content-lt .contact-lt-header p {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  .contact-container-main .contact-content .contact-content-lt .contact-lt-header p {
    font-size: 22px;
  }
}
.contact-container-main .contact-content .contact-content-lt .contact-lt-txt {
  margin-block: 12px;
}
.contact-container-main .contact-content .contact-content-lt .contact-lt-txt p {
  color: #737373;
  font-size: 15px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .contact-container-main .contact-content .contact-content-lt .contact-lt-txt p {
    font-size: 14px;
  }
}
.contact-container-main .contact-content .contact-content-lt .contact-lt-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-container-main .contact-content .contact-content-lt .contact-lt-form input[type=text],
.contact-container-main .contact-content .contact-content-lt .contact-lt-form [type=email],
.contact-container-main .contact-content .contact-content-lt .contact-lt-form select {
  font-size: 16px;
  padding: 18px 32px;
  display: inline-block;
  background-color: rgba(210, 218, 237, 0.168627451);
  color: #000000;
  border: none;
  outline: none;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .contact-container-main .contact-content .contact-content-lt .contact-lt-form input[type=text],
  .contact-container-main .contact-content .contact-content-lt .contact-lt-form [type=email],
  .contact-container-main .contact-content .contact-content-lt .contact-lt-form select {
    font-size: 14px;
  }
}
.contact-container-main .contact-content .contact-content-lt .contact-lt-form ::-moz-placeholder {
  color: #9c9c9c;
}
.contact-container-main .contact-content .contact-content-lt .contact-lt-form ::placeholder {
  color: #9c9c9c;
}
.contact-container-main .contact-content .contact-content-lt .contact-lt-form #msg {
  padding-bottom: 85px;
}
.contact-container-main .contact-content .contact-content-lt .submit-btn {
  margin-top: 32px;
}
.contact-container-main .contact-content .contact-content-lt .submit-btn button {
  border: none;
  padding: 12px 18px;
  background-color: rgb(6, 106, 200);
  border-radius: 4px;
  cursor: pointer;
}
.contact-container-main .contact-content .contact-content-lt .submit-btn button p {
  color: rgb(252, 252, 252);
  font-weight: 500;
  margin: 0;
}
@media (max-width: 768px) {
  .contact-container-main .contact-content .contact-content-lt .submit-btn button p {
    font-size: 14px;
  }
}
.contact-container-main .contact-content .contact-content-lt .submit-btn button:hover {
  background-color: rgb(169, 2, 98);
}
.contact-container-main .contact-content .contact-content-rt {
  width: 50%;
}
@media (max-width: 768px) {
  .contact-container-main .contact-content .contact-content-rt {
    width: 100% !important;
  }
}
.contact-container-main .contact-content .contact-content-rt .contact-rt-wrapper {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .contact-container-main .contact-content .contact-content-rt .contact-rt-wrapper {
    width: 100% !important;
  }
}
@media (max-width: 768px) {
  .contact-container-main .contact-content .contact-content-rt .contact-rt-wrapper .contact-rt {
    width: 50% !important;
  }
}
.contact-container-main .contact-content .contact-content-rt .contact-rt-wrapper .contact-rt .contact-rt1 {
  display: flex;
  gap: 5px;
  align-items: center;
}
.contact-container-main .contact-content .contact-content-rt .contact-rt-wrapper .contact-rt .contact-rt1 p {
  font-size: 24px;
  color: #0d1317;
  font-weight: 500;
}
@media (max-width: 992px) {
  .contact-container-main .contact-content .contact-content-rt .contact-rt-wrapper .contact-rt .contact-rt1 p {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .contact-container-main .contact-content .contact-content-rt .contact-rt-wrapper .contact-rt .contact-rt1 p {
    font-size: 14px;
  }
}
.contact-container-main .contact-content .contact-content-rt .contact-rt-wrapper .contact-rt .contact-rt1 .bi {
  width: 24px;
  height: 24px;
  color: rgb(6, 106, 200);
  border: 1px solid rgb(6, 106, 200);
  border-radius: 50%;
  padding: 5px;
  cursor: pointer;
}
.contact-container-main .contact-content .contact-content-rt .contact-rt-wrapper .contact-rt .rt-desc {
  margin-top: 15px;
  margin-bottom: 40px;
}
.contact-container-main .contact-content .contact-content-rt .contact-rt-wrapper .contact-rt .rt-desc p {
  font-size: 18px;
  color: #737373;
  font-weight: 500;
}
@media (max-width: 992px) {
  .contact-container-main .contact-content .contact-content-rt .contact-rt-wrapper .contact-rt .rt-desc p {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .contact-container-main .contact-content .contact-content-rt .contact-rt-wrapper .contact-rt .rt-desc p {
    font-size: 14px;
  }
}
.contact-container-main .contact-content .contact-content-rt iframe {
  width: 100%;
  height: 335px;
}
@media (max-width: 768px) {
  .contact-container-main .contact-content .contact-content-rt iframe {
    height: 200px;
    width: 100% !important;
  }
}
.contact-container-main .contact-content .contact-content-rt .contact-iframe {
  border: none;
}

@keyframes buttonScale {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.submit-btn button:active {
  animation: buttonScale 0.3s ease;
}

@keyframes iconScale {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.5);
  }
  100% {
    transform: scale(1);
  }
}
.contact-rt1 .bi:hover {
  animation: iconScale 1s ease;
}

.introduction_page {
  padding-bottom: 20px;
  position: relative;
}
.introduction_page .img_before {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  height: 220px;
  width: 220px;
  z-index: 9;
}
.introduction_page .img_before img {
  -o-object-fit: cover;
     object-fit: cover;
}
.introduction_page .img_after {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  height: 220px;
  width: 220px;
  z-index: 9;
  transform: rotate(180deg);
}
.introduction_page .img_after img {
  -o-object-fit: cover;
     object-fit: cover;
}
.introduction_page .common_image_txt {
  position: relative;
}
.introduction_page .common_image_txt .common_bg_wrapper {
  height: 220px;
  position: relative;
}
.introduction_page .common_image_txt .common_bg_wrapper img {
  filter: grayscale(100%);
  -o-object-fit: cover;
     object-fit: cover;
}
.introduction_page .common_image_txt .common_bg_wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; /* Ensures the pseudo-element covers the wrapper */
  background: linear-gradient(90deg, #000000 0%, rgba(0, 0, 0, 0.5) 50%, #000000 100%);
  pointer-events: none; /* Ensures the pseudo-element doesn't block interactions */
}
.introduction_page .common_image_txt .main_txt {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.introduction_page .common_image_txt .main_txt p {
  font-size: 36px;
  font-weight: 500;
  color: white;
}

.team_detail_flx {
  padding-block: 60px;
}
.team_detail_flx .left_rght_txt_img {
  display: flex;
  justify-content: center;
  gap: 20px;
}
@media (max-width: 768px) {
  .team_detail_flx .left_rght_txt_img {
    flex-direction: column;
  }
}
.team_detail_flx .left_rght_txt_img .left_img {
  width: 40%;
  height: 400px;
}
@media (max-width: 768px) {
  .team_detail_flx .left_rght_txt_img .left_img {
    width: 100%;
  }
}
.team_detail_flx .left_rght_txt_img .left_img img {
  -o-object-fit: cover;
     object-fit: cover;
}
.team_detail_flx .left_rght_txt_img .rght_txt {
  width: 55%;
  line-height: 30px;
}
@media (max-width: 768px) {
  .team_detail_flx .left_rght_txt_img .rght_txt {
    width: 100%;
  }
}
.team_detail_flx .left_rght_txt_img .rght_txt p:nth-child(1) {
  font-size: 36px;
  font-weight: 500;
  margin: 0;
}
@media (max-width: 768px) {
  .team_detail_flx .left_rght_txt_img .rght_txt p:nth-child(1) {
    font-size: 22px;
  }
}
.team_detail_flx .left_rght_txt_img .rght_txt p:nth-child(2) {
  font-size: 20px;
  font-weight: 500;
  color: rgb(115, 115, 115);
  margin-block: 15px;
}
@media (max-width: 768px) {
  .team_detail_flx .left_rght_txt_img .rght_txt p:nth-child(2) {
    font-size: 16px;
  }
}
.team_detail_flx .left_rght_txt_img .rght_txt p:nth-child(3) {
  font-size: 16px;
  font-weight: 400;
  color: rgb(115, 115, 115);
}
@media (max-width: 768px) {
  .team_detail_flx .left_rght_txt_img .rght_txt p:nth-child(3) {
    font-size: 14px;
  }
}

.team_tab_section {
  margin-block: 40px;
}
.team_tab_section .container_wrapper {
  display: flex;
  gap: 40px;
  justify-content: space-between;
}
.team_tab_section .container_wrapper .tabs {
  background-color: rgb(239, 247, 255);
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
  padding: 20px 20px;
  transition: all 0.3s ease-in-out;
  height: 40%;
  padding-inline: 10px;
  width: 30% !important;
}
.team_tab_section .container_wrapper .tabs .first_txt {
  padding-inline: 20px;
}
.team_tab_section .container_wrapper .tabs .first_txt p {
  font-size: 18px;
  font-weight: 500;
}
.team_tab_section .container_wrapper .tabs .tab {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  margin-block: 15px;
}
.team_tab_section .container_wrapper .tabs .tab .bi {
  color: rgb(6, 106, 200);
  height: 20px;
  width: 17px;
}
.team_tab_section .container_wrapper .tabs .tab li {
  font-size: 16px;
  font-weight: 500;
  color: rgb(115, 115, 115);
  list-style-type: none;
}
.team_tab_section .container_wrapper .tabs .tab.active {
  background-color: rgb(6, 106, 200);
  padding-inline: 10px;
  border-radius: 4px;
  padding-block: 12px;
}
.team_tab_section .container_wrapper .tabs .tab.active .bi {
  color: rgb(252, 252, 252);
}
.team_tab_section .container_wrapper .tabs .tab.active li {
  color: rgb(252, 252, 252);
}
.team_tab_section .container_wrapper .content {
  width: 70%;
}
.team_tab_section .container_wrapper .content #content0 {
  width: 100% !important;
}
.team_tab_section .container_wrapper .content #content0 .first_content_wrapper .first_txt p {
  font-size: 30px;
  font-weight: 500;
  color: rgb(13, 19, 23);
  margin: 0;
}
.team_tab_section .container_wrapper .content #content0 .first_content_wrapper .second_txt {
  margin-block: 20px;
}
.team_tab_section .container_wrapper .content #content0 .first_content_wrapper .second_txt p {
  font-size: 18px;
  font-weight: 400;
  color: rgb(115, 115, 115);
}
.team_tab_section .container_wrapper .content #content0 .first_content_wrapper .third_image_wrapper {
  display: flex;
  gap: 20px;
}
.team_tab_section .container_wrapper .content #content0 .first_content_wrapper .third_image_wrapper .left_bigger_image {
  height: 110px;
  width: 50%;
}
.team_tab_section .container_wrapper .content #content0 .first_content_wrapper .third_image_wrapper .right_smaller_images {
  width: 50%;
  gap: 10px;
  display: flex;
  flex-direction: column;
}
.team_tab_section .container_wrapper .content #content0 .first_content_wrapper .third_image_wrapper .right_smaller_images .first_img {
  height: 50px;
}
.team_tab_section .container_wrapper .content #content0 .first_content_wrapper .third_image_wrapper .right_smaller_images .second_img {
  height: 50px;
}
.team_tab_section .container_wrapper .content #content0 .first_content_wrapper .forth_txt p {
  font-size: 18px;
  font-weight: 400;
  color: rgb(115, 115, 115);
}
.team_tab_section .container_wrapper .content #content0 .first_content_wrapper .fifth_txt p {
  font-size: 24px;
  font-weight: 400;
  color: rgb(115, 115, 115);
  text-align: center;
}
.team_tab_section .container_wrapper .content #content0 .first_content_wrapper .sixth_txt p {
  font-size: 18px;
  font-weight: 400;
  color: rgb(115, 115, 115);
}
.team_tab_section .container_wrapper .content #content1 {
  width: 100% !important;
}
.team_tab_section .container_wrapper .content #content1 .first_content_wrapper .first_txt p {
  font-size: 30px;
  font-weight: 500;
  color: rgb(13, 19, 23);
  margin: 0;
}
.team_tab_section .container_wrapper .content #content1 .first_content_wrapper .second_txt {
  margin-block: 20px;
  line-height: 30px;
}
.team_tab_section .container_wrapper .content #content1 .first_content_wrapper .second_txt p {
  font-size: 16px;
  font-weight: 400;
  color: rgb(115, 115, 115);
}
.team_tab_section .container_wrapper .content #content1 .first_content_wrapper .second_txt .table {
  width: 100%;
}
.team_tab_section .container_wrapper .content #content1 .first_content_wrapper .second_txt .table td {
  padding-block: 8px;
}
.team_tab_section .container_wrapper .content #content1 .first_content_wrapper .second_txt .table tr {
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.team_tab_section .container_wrapper .content #content1 .first_content_wrapper .third_image_wrapper {
  display: flex;
  gap: 20px;
}
.team_tab_section .container_wrapper .content #content1 .first_content_wrapper .third_image_wrapper .left_bigger_image {
  height: 110px;
  width: 50%;
}
.team_tab_section .container_wrapper .content #content1 .first_content_wrapper .third_image_wrapper .right_smaller_images {
  width: 50%;
  gap: 10px;
  display: flex;
  flex-direction: column;
}
.team_tab_section .container_wrapper .content #content1 .first_content_wrapper .third_image_wrapper .right_smaller_images .first_img {
  height: 50px;
}
.team_tab_section .container_wrapper .content #content1 .first_content_wrapper .third_image_wrapper .right_smaller_images .second_img {
  height: 50px;
}
.team_tab_section .container_wrapper .content #content1 .first_content_wrapper .forth_txt p {
  font-size: 18px;
  font-weight: 400;
  color: rgb(115, 115, 115);
}
.team_tab_section .container_wrapper .content #content1 .first_content_wrapper .fifth_txt p {
  font-size: 24px;
  font-weight: 400;
  color: rgb(115, 115, 115);
  text-align: center;
}
.team_tab_section .container_wrapper .content #content1 .first_content_wrapper .sixth_txt p {
  font-size: 18px;
  font-weight: 400;
  color: rgb(115, 115, 115);
}
.team_tab_section .container_wrapper .content #content2 {
  width: 100% !important;
}
.team_tab_section .container_wrapper .content #content2 .first_content_wrapper .first_txt p {
  font-size: 30px;
  font-weight: 500;
  color: rgb(13, 19, 23);
  margin: 0;
}
.team_tab_section .container_wrapper .content #content2 .first_content_wrapper .second_txt {
  margin-block: 20px;
}
.team_tab_section .container_wrapper .content #content2 .first_content_wrapper .second_txt p {
  font-size: 18px;
  font-weight: 400;
  color: rgb(115, 115, 115);
}
.team_tab_section .container_wrapper .content #content2 .first_content_wrapper .third_image_wrapper {
  display: flex;
  gap: 20px;
}
.team_tab_section .container_wrapper .content #content2 .first_content_wrapper .third_image_wrapper .left_bigger_image {
  height: 110px;
  width: 50%;
}
.team_tab_section .container_wrapper .content #content2 .first_content_wrapper .third_image_wrapper .right_smaller_images {
  width: 50%;
  gap: 10px;
  display: flex;
  flex-direction: column;
}
.team_tab_section .container_wrapper .content #content2 .first_content_wrapper .third_image_wrapper .right_smaller_images .first_img {
  height: 50px;
}
.team_tab_section .container_wrapper .content #content2 .first_content_wrapper .third_image_wrapper .right_smaller_images .second_img {
  height: 50px;
}
.team_tab_section .container_wrapper .content #content2 .first_content_wrapper .forth_txt p {
  font-size: 18px;
  font-weight: 400;
  color: rgb(115, 115, 115);
}
.team_tab_section .container_wrapper .content #content2 .first_content_wrapper .fifth_txt p {
  font-size: 24px;
  font-weight: 400;
  color: rgb(115, 115, 115);
  text-align: center;
}
.team_tab_section .container_wrapper .content #content2 .first_content_wrapper .sixth_txt p {
  font-size: 18px;
  font-weight: 400;
  color: rgb(115, 115, 115);
}
.team_tab_section .container_wrapper .content #content3 {
  width: 100% !important;
}
.team_tab_section .container_wrapper .content #content3 .first_content_wrapper .first_txt p {
  font-size: 30px;
  font-weight: 500;
  color: rgb(13, 19, 23);
  margin: 0;
}
.team_tab_section .container_wrapper .content #content3 .first_content_wrapper .second_txt {
  margin-block: 20px;
}
.team_tab_section .container_wrapper .content #content3 .first_content_wrapper .second_txt p {
  font-size: 18px;
  font-weight: 400;
  color: rgb(115, 115, 115);
}
.team_tab_section .container_wrapper .content #content3 .first_content_wrapper .third_image_wrapper {
  display: flex;
  gap: 20px;
}
.team_tab_section .container_wrapper .content #content3 .first_content_wrapper .third_image_wrapper .left_bigger_image {
  height: 110px;
  width: 50%;
}
.team_tab_section .container_wrapper .content #content3 .first_content_wrapper .third_image_wrapper .right_smaller_images {
  width: 50%;
  gap: 10px;
  display: flex;
  flex-direction: column;
}
.team_tab_section .container_wrapper .content #content3 .first_content_wrapper .third_image_wrapper .right_smaller_images .first_img {
  height: 50px;
}
.team_tab_section .container_wrapper .content #content3 .first_content_wrapper .third_image_wrapper .right_smaller_images .second_img {
  height: 50px;
}
.team_tab_section .container_wrapper .content #content3 .first_content_wrapper .forth_txt p {
  font-size: 18px;
  font-weight: 400;
  color: rgb(115, 115, 115);
}
.team_tab_section .container_wrapper .content #content3 .first_content_wrapper .fifth_txt p {
  font-size: 24px;
  font-weight: 400;
  color: rgb(115, 115, 115);
  text-align: center;
}
.team_tab_section .container_wrapper .content #content3 .first_content_wrapper .sixth_txt p {
  font-size: 18px;
  font-weight: 400;
  color: rgb(115, 115, 115);
}
.team_tab_section .container_wrapper .content #content4 {
  width: 100% !important;
}
.team_tab_section .container_wrapper .content #content4 .first_content_wrapper .first_txt p {
  font-size: 30px;
  font-weight: 500;
  color: rgb(13, 19, 23);
  margin: 0;
}
.team_tab_section .container_wrapper .content #content4 .first_content_wrapper .second_txt {
  margin-block: 20px;
}
.team_tab_section .container_wrapper .content #content4 .first_content_wrapper .second_txt p {
  font-size: 18px;
  font-weight: 400;
  color: rgb(115, 115, 115);
}
.team_tab_section .container_wrapper .content #content4 .first_content_wrapper .third_image_wrapper {
  display: flex;
  gap: 20px;
}
.team_tab_section .container_wrapper .content #content4 .first_content_wrapper .third_image_wrapper .left_bigger_image {
  height: 110px;
  width: 50%;
}
.team_tab_section .container_wrapper .content #content4 .first_content_wrapper .third_image_wrapper .right_smaller_images {
  width: 50%;
  gap: 10px;
  display: flex;
  flex-direction: column;
}
.team_tab_section .container_wrapper .content #content4 .first_content_wrapper .third_image_wrapper .right_smaller_images .first_img {
  height: 50px;
}
.team_tab_section .container_wrapper .content #content4 .first_content_wrapper .third_image_wrapper .right_smaller_images .second_img {
  height: 50px;
}
.team_tab_section .container_wrapper .content #content4 .first_content_wrapper .forth_txt p {
  font-size: 18px;
  font-weight: 400;
  color: rgb(115, 115, 115);
}
.team_tab_section .container_wrapper .content #content4 .first_content_wrapper .fifth_txt p {
  font-size: 24px;
  font-weight: 400;
  color: rgb(115, 115, 115);
  text-align: center;
}
.team_tab_section .container_wrapper .content #content4 .first_content_wrapper .sixth_txt p {
  font-size: 18px;
  font-weight: 400;
  color: rgb(115, 115, 115);
}

.team_tab_section {
  margin-block: 40px;
}
.team_tab_section .container_wrapper {
  display: flex;
  gap: 40px;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .team_tab_section .container_wrapper {
    flex-direction: column;
  }
}
.team_tab_section .container_wrapper .tabs {
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
  padding: 20px 20px;
  transition: all 0.3s ease-in-out;
  height: 40%;
  width: 30% !important;
}
@media (max-width: 768px) {
  .team_tab_section .container_wrapper .tabs {
    width: 90% !important;
  }
}
.team_tab_section .container_wrapper .tabs .first_txt {
  padding-inline: 20px;
}
.team_tab_section .container_wrapper .tabs .first_txt p {
  font-size: 18px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .team_tab_section .container_wrapper .tabs .first_txt p {
    font-size: 16px;
  }
}
.team_tab_section .container_wrapper .tabs .tab {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-block: 15px;
  padding-inline: 10px;
  cursor: pointer;
}
.team_tab_section .container_wrapper .tabs .tab .bi {
  color: rgb(6, 106, 200);
  height: 20px;
  width: 17px;
}
.team_tab_section .container_wrapper .tabs .tab li {
  font-size: 16px;
  font-weight: 500;
  color: rgb(115, 115, 115);
  list-style-type: none;
}
.team_tab_section .container_wrapper .tabs .tab.active {
  background-color: rgb(6, 106, 200);
  padding-inline: 10px;
  border-radius: 4px;
  padding-block: 12px;
}
.team_tab_section .container_wrapper .tabs .tab.active .bi {
  color: rgb(252, 252, 252);
}
.team_tab_section .container_wrapper .tabs .tab.active li {
  color: rgb(252, 252, 252);
}
.team_tab_section .container_wrapper .content {
  width: 70%;
}
@media (max-width: 768px) {
  .team_tab_section .container_wrapper .content {
    width: 100% !important;
  }
}
.team_tab_section .container_wrapper .content #content-0 {
  width: 100% !important;
}
.team_tab_section .container_wrapper .content #content-0 .first_content_wrapper .first_txt p {
  font-size: 30px;
  font-weight: 500;
  color: rgb(13, 19, 23);
  margin: 0;
}
@media (max-width: 768px) {
  .team_tab_section .container_wrapper .content #content-0 .first_content_wrapper .first_txt p {
    font-size: 22px !important;
  }
}
@media (max-width: 992px) {
  .team_tab_section .container_wrapper .content #content-0 .first_content_wrapper .first_txt p {
    font-size: 26px;
  }
}
.team_tab_section .container_wrapper .content #content-0 .first_content_wrapper .second_txt {
  margin-block: 20px;
  line-height: 30px;
}
.team_tab_section .container_wrapper .content #content-0 .first_content_wrapper .second_txt p {
  font-size: 16px;
  font-weight: 400;
  color: rgb(115, 115, 115);
}
@media (max-width: 768px) {
  .team_tab_section .container_wrapper .content #content-0 .first_content_wrapper .second_txt p {
    font-size: 14px !important;
  }
}
@media (max-width: 992px) {
  .team_tab_section .container_wrapper .content #content-0 .first_content_wrapper .second_txt p {
    font-size: 16px;
  }
}
.team_tab_section .container_wrapper .content #content-0 .first_content_wrapper .third_image_wrapper {
  display: flex;
  gap: 20px;
}
.team_tab_section .container_wrapper .content #content-0 .first_content_wrapper .third_image_wrapper .left_bigger_image {
  height: 110px;
  width: 50%;
}
.team_tab_section .container_wrapper .content #content-0 .first_content_wrapper .third_image_wrapper .right_smaller_images {
  width: 50%;
  gap: 10px;
  display: flex;
  flex-direction: column;
}
.team_tab_section .container_wrapper .content #content-0 .first_content_wrapper .third_image_wrapper .right_smaller_images .first_img {
  height: 50px;
}
.team_tab_section .container_wrapper .content #content-0 .first_content_wrapper .third_image_wrapper .right_smaller_images .second_img {
  height: 50px;
}
.team_tab_section .container_wrapper .content #content-0 .first_content_wrapper .forth_txt p {
  font-size: 18px;
  font-weight: 400;
  color: rgb(115, 115, 115);
}
@media (max-width: 768px) {
  .team_tab_section .container_wrapper .content #content-0 .first_content_wrapper .forth_txt p {
    font-size: 14px !important;
  }
}
@media (max-width: 992px) {
  .team_tab_section .container_wrapper .content #content-0 .first_content_wrapper .forth_txt p {
    font-size: 16px;
  }
}
.team_tab_section .container_wrapper .content #content-0 .first_content_wrapper .fifth_txt p {
  font-size: 36px;
  font-weight: 500;
  color: rgb(0, 0, 0);
  text-align: start;
  margin: 0;
}
@media (max-width: 768px) {
  .team_tab_section .container_wrapper .content #content-0 .first_content_wrapper .fifth_txt p {
    font-size: 14px !important;
  }
}
@media (max-width: 992px) {
  .team_tab_section .container_wrapper .content #content-0 .first_content_wrapper .fifth_txt p {
    font-size: 16px !important;
  }
}
.team_tab_section .container_wrapper .content #content-0 .first_content_wrapper .sixth_txt {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-block: 5px;
}
.team_tab_section .container_wrapper .content #content-0 .first_content_wrapper .sixth_txt .bi {
  color: rgb(6, 106, 200);
  transform: rotate(90deg);
}
.team_tab_section .container_wrapper .content #content-0 .first_content_wrapper .sixth_txt p {
  font-size: 18px;
  font-weight: 400;
  color: rgb(115, 115, 115);
  margin: 0;
}
@media (max-width: 768px) {
  .team_tab_section .container_wrapper .content #content-0 .first_content_wrapper .sixth_txt p {
    font-size: 14px !important;
    margin-block: 10px;
  }
}
@media (max-width: 992px) {
  .team_tab_section .container_wrapper .content #content-0 .first_content_wrapper .sixth_txt p {
    font-size: 16px;
  }
}
.team_tab_section .container_wrapper .content #content-0 .first_content_wrapper .blue_bg_image {
  margin-top: 20px;
  position: relative;
  z-index: 90;
  height: 300px;
}
.team_tab_section .container_wrapper .content #content-0 .first_content_wrapper .blue_bg_image::after {
  content: " ";
  position: absolute;
  height: 100%;
  width: 100%;
  background: linear-gradient(270deg, rgba(6, 106, 200, 0.8) 50%, rgba(6, 106, 200, 0.64) 100%, rgba(6, 106, 200, 0.8) 100%);
  left: 0;
  top: 0;
  bottom: 0;
}
.team_tab_section .container_wrapper .content #content-0 .first_content_wrapper .blue_bg_image .img_absolute_txt {
  position: absolute;
  z-index: 99;
  top: 20px;
  text-align: center;
  width: 100%;
  padding-top: 30px;
}
.team_tab_section .container_wrapper .content #content-0 .first_content_wrapper .blue_bg_image .img_absolute_txt .bi {
  color: rgb(252, 252, 252);
  height: 70px;
  width: 70px;
}
.team_tab_section .container_wrapper .content #content-0 .first_content_wrapper .blue_bg_image .img_absolute_txt p {
  font-size: 36px;
  font-weight: 500;
  color: rgb(252, 252, 252);
  text-align: center;
  margin: 0;
}
@media (max-width: 768px) {
  .team_tab_section .container_wrapper .content #content-0 .first_content_wrapper .blue_bg_image .img_absolute_txt p {
    font-size: 22px !important;
  }
}
.team_tab_section .container_wrapper .content #content-0 .first_content_wrapper .blue_bg_image .youtube_icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 99;
}
.team_tab_section .container_wrapper .content #content-0 .first_content_wrapper .blue_bg_image .youtube_icon .bi {
  height: 80px;
  width: 80px;
  color: white;
}
.team_tab_section .container_wrapper .content #content-0 .first_content_wrapper .blue_bg_image .img_absolute {
  position: absolute;
  height: 100%;
  width: 100%;
}
.team_tab_section .container_wrapper .content #content-0 .first_content_wrapper .blue_bg_image .img_absolute img {
  -o-object-fit: cover;
     object-fit: cover;
}
.team_tab_section .container_wrapper .content #content-1 {
  width: 100% !important;
}
.team_tab_section .container_wrapper .content #content-1 .first_content_wrapper .first_txt p {
  font-size: 30px;
  font-weight: 500;
  color: rgb(13, 19, 23);
  margin: 0;
}
@media (max-width: 768px) {
  .team_tab_section .container_wrapper .content #content-1 .first_content_wrapper .first_txt p {
    font-size: 22px !important;
  }
}
@media (max-width: 992px) {
  .team_tab_section .container_wrapper .content #content-1 .first_content_wrapper .first_txt p {
    font-size: 26px;
  }
}
.team_tab_section .container_wrapper .content #content-1 .first_content_wrapper .second_txt {
  margin-block: 20px;
}
.team_tab_section .container_wrapper .content #content-1 .first_content_wrapper .second_txt p {
  font-size: 18px;
  font-weight: 400;
  color: rgb(115, 115, 115);
}
@media (max-width: 768px) {
  .team_tab_section .container_wrapper .content #content-1 .first_content_wrapper .second_txt p {
    font-size: 14px !important;
  }
}
@media (max-width: 992px) {
  .team_tab_section .container_wrapper .content #content-1 .first_content_wrapper .second_txt p {
    font-size: 16px;
  }
}
.team_tab_section .container_wrapper .content #content-1 .first_content_wrapper .third_image_wrapper {
  display: flex;
  gap: 20px;
}
.team_tab_section .container_wrapper .content #content-1 .first_content_wrapper .third_image_wrapper .left_bigger_image {
  height: 110px;
  width: 50%;
}
.team_tab_section .container_wrapper .content #content-1 .first_content_wrapper .third_image_wrapper .right_smaller_images {
  width: 50%;
  gap: 10px;
  display: flex;
  flex-direction: column;
}
.team_tab_section .container_wrapper .content #content-1 .first_content_wrapper .third_image_wrapper .right_smaller_images .first_img {
  height: 50px;
}
.team_tab_section .container_wrapper .content #content-1 .first_content_wrapper .third_image_wrapper .right_smaller_images .second_img {
  height: 50px;
}
.team_tab_section .container_wrapper .content #content-1 .first_content_wrapper .forth_txt p {
  font-size: 18px;
  font-weight: 400;
  color: rgb(115, 115, 115);
}
@media (max-width: 768px) {
  .team_tab_section .container_wrapper .content #content-1 .first_content_wrapper .forth_txt p {
    font-size: 14px !important;
  }
}
@media (max-width: 992px) {
  .team_tab_section .container_wrapper .content #content-1 .first_content_wrapper .forth_txt p {
    font-size: 16px;
  }
}
.team_tab_section .container_wrapper .content #content-1 .first_content_wrapper .fifth_txt p {
  font-size: 36px;
  font-weight: 500;
  color: rgb(0, 0, 0);
  text-align: start;
  margin: 0;
}
@media (max-width: 768px) {
  .team_tab_section .container_wrapper .content #content-1 .first_content_wrapper .fifth_txt p {
    font-size: 14px !important;
  }
}
@media (max-width: 992px) {
  .team_tab_section .container_wrapper .content #content-1 .first_content_wrapper .fifth_txt p {
    font-size: 16px !important;
  }
}
.team_tab_section .container_wrapper .content #content-1 .first_content_wrapper .sixth_txt {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-block: 5px;
}
.team_tab_section .container_wrapper .content #content-1 .first_content_wrapper .sixth_txt .bi {
  color: rgb(6, 106, 200);
  transform: rotate(90deg);
}
.team_tab_section .container_wrapper .content #content-1 .first_content_wrapper .sixth_txt p {
  font-size: 18px;
  font-weight: 400;
  color: rgb(115, 115, 115);
  margin: 0;
}
@media (max-width: 768px) {
  .team_tab_section .container_wrapper .content #content-1 .first_content_wrapper .sixth_txt p {
    font-size: 14px !important;
    margin-block: 10px;
  }
}
@media (max-width: 992px) {
  .team_tab_section .container_wrapper .content #content-1 .first_content_wrapper .sixth_txt p {
    font-size: 16px;
  }
}
.team_tab_section .container_wrapper .content #content-1 .first_content_wrapper .blue_bg_image {
  margin-top: 20px;
  position: relative;
  z-index: 90;
  height: 300px;
}
.team_tab_section .container_wrapper .content #content-1 .first_content_wrapper .blue_bg_image::after {
  content: " ";
  position: absolute;
  height: 100%;
  width: 100%;
  background: linear-gradient(270deg, rgba(6, 106, 200, 0.8) 50%, rgba(6, 106, 200, 0.64) 100%, rgba(6, 106, 200, 0.8) 100%);
  left: 0;
  top: 0;
  bottom: 0;
}
.team_tab_section .container_wrapper .content #content-1 .first_content_wrapper .blue_bg_image .img_absolute_txt {
  position: absolute;
  z-index: 99;
  top: 20px;
  text-align: center;
  width: 100%;
  padding-top: 30px;
}
.team_tab_section .container_wrapper .content #content-1 .first_content_wrapper .blue_bg_image .img_absolute_txt .bi {
  color: rgb(252, 252, 252);
  height: 70px;
  width: 70px;
}
.team_tab_section .container_wrapper .content #content-1 .first_content_wrapper .blue_bg_image .img_absolute_txt p {
  font-size: 36px;
  font-weight: 500;
  color: rgb(252, 252, 252);
  text-align: center;
  margin: 0;
}
@media (max-width: 768px) {
  .team_tab_section .container_wrapper .content #content-1 .first_content_wrapper .blue_bg_image .img_absolute_txt p {
    font-size: 22px !important;
  }
}
.team_tab_section .container_wrapper .content #content-2 {
  width: 100% !important;
}
.team_tab_section .container_wrapper .content #content-2 .first_content_wrapper .first_txt p {
  font-size: 30px;
  font-weight: 500;
  color: rgb(13, 19, 23);
  margin: 0;
}
@media (max-width: 768px) {
  .team_tab_section .container_wrapper .content #content-2 .first_content_wrapper .first_txt p {
    font-size: 22px !important;
  }
}
.team_tab_section .container_wrapper .content #content-2 .first_content_wrapper .second_txt p {
  font-size: 18px;
  font-weight: 400;
  color: rgb(115, 115, 115);
}
@media (max-width: 768px) {
  .team_tab_section .container_wrapper .content #content-2 .first_content_wrapper .second_txt p {
    font-size: 14px !important;
  }
}
.team_tab_section .container_wrapper .content #content-2 .first_content_wrapper .third_image_wrapper {
  display: flex;
  gap: 20px;
}
.team_tab_section .container_wrapper .content #content-2 .first_content_wrapper .third_image_wrapper .left_bigger_image {
  height: 110px;
  width: 50%;
}
.team_tab_section .container_wrapper .content #content-2 .first_content_wrapper .third_image_wrapper .right_smaller_images {
  width: 50%;
  gap: 10px;
  display: flex;
  flex-direction: column;
}
.team_tab_section .container_wrapper .content #content-2 .first_content_wrapper .third_image_wrapper .right_smaller_images .first_img {
  height: 50px;
}
.team_tab_section .container_wrapper .content #content-2 .first_content_wrapper .third_image_wrapper .right_smaller_images .second_img {
  height: 50px;
}
.team_tab_section .container_wrapper .content #content-2 .first_content_wrapper .forth_txt p {
  font-size: 18px;
  font-weight: 400;
  color: rgb(115, 115, 115);
}
@media (max-width: 768px) {
  .team_tab_section .container_wrapper .content #content-2 .first_content_wrapper .forth_txt p {
    font-size: 14px !important;
  }
}
.team_tab_section .container_wrapper .content #content-2 .first_content_wrapper .fifth_txt p {
  font-size: 36px;
  font-weight: 500;
  color: rgb(0, 0, 0);
  text-align: start;
  margin: 0;
}
@media (max-width: 768px) {
  .team_tab_section .container_wrapper .content #content-2 .first_content_wrapper .fifth_txt p {
    font-size: 22px !important;
  }
}
.team_tab_section .container_wrapper .content #content-2 .first_content_wrapper .sixth_txt {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-block: 5px;
}
.team_tab_section .container_wrapper .content #content-2 .first_content_wrapper .sixth_txt .bi {
  color: rgb(6, 106, 200);
  transform: rotate(90deg);
}
.team_tab_section .container_wrapper .content #content-2 .first_content_wrapper .sixth_txt p {
  font-size: 18px;
  font-weight: 400;
  color: rgb(115, 115, 115);
  margin: 0;
}
@media (max-width: 768px) {
  .team_tab_section .container_wrapper .content #content-2 .first_content_wrapper .sixth_txt p {
    font-size: 14px !important;
  }
}
.team_tab_section .container_wrapper .content #content-2 .first_content_wrapper .blue_bg_image {
  margin-top: 20px;
  position: relative;
  z-index: 90;
  height: 300px;
}
.team_tab_section .container_wrapper .content #content-2 .first_content_wrapper .blue_bg_image::after {
  content: " ";
  position: absolute;
  height: 100%;
  width: 100%;
  background: linear-gradient(270deg, rgba(6, 106, 200, 0.8) 50%, rgba(6, 106, 200, 0.64) 100%, rgba(6, 106, 200, 0.8) 100%);
  left: 0;
  top: 0;
  bottom: 0;
}
.team_tab_section .container_wrapper .content #content-2 .first_content_wrapper .blue_bg_image .img_absolute_txt {
  position: absolute;
  z-index: 99;
  top: 20px;
  text-align: center;
  width: 100%;
  padding-top: 30px;
}
.team_tab_section .container_wrapper .content #content-2 .first_content_wrapper .blue_bg_image .img_absolute_txt .bi {
  color: rgb(252, 252, 252);
  height: 70px;
  width: 70px;
}
.team_tab_section .container_wrapper .content #content-2 .first_content_wrapper .blue_bg_image .img_absolute_txt p {
  font-size: 36px;
  font-weight: 500;
  color: rgb(252, 252, 252);
  text-align: center;
  margin: 0;
}
@media (max-width: 768px) {
  .team_tab_section .container_wrapper .content #content-2 .first_content_wrapper .blue_bg_image .img_absolute_txt p {
    font-size: 22px !important;
  }
}
.team_tab_section .container_wrapper .content #content-3 {
  width: 100% !important;
}
.team_tab_section .container_wrapper .content #content-3 .first_content_wrapper .first_txt p {
  font-size: 30px;
  font-weight: 500;
  color: rgb(13, 19, 23);
  margin: 0;
}
@media (max-width: 768px) {
  .team_tab_section .container_wrapper .content #content-3 .first_content_wrapper .first_txt p {
    font-size: 22px !important;
  }
}
.team_tab_section .container_wrapper .content #content-3 .first_content_wrapper .second_txt p {
  font-size: 18px;
  font-weight: 400;
  color: rgb(115, 115, 115);
}
.team_tab_section .container_wrapper .content #content-3 .first_content_wrapper .third_image_wrapper {
  display: flex;
  gap: 20px;
}
.team_tab_section .container_wrapper .content #content-3 .first_content_wrapper .third_image_wrapper .left_bigger_image {
  height: 110px;
  width: 50%;
}
.team_tab_section .container_wrapper .content #content-3 .first_content_wrapper .third_image_wrapper .right_smaller_images {
  width: 50%;
  gap: 10px;
  display: flex;
  flex-direction: column;
}
.team_tab_section .container_wrapper .content #content-3 .first_content_wrapper .third_image_wrapper .right_smaller_images .first_img {
  height: 50px;
}
.team_tab_section .container_wrapper .content #content-3 .first_content_wrapper .third_image_wrapper .right_smaller_images .second_img {
  height: 50px;
}
.team_tab_section .container_wrapper .content #content-3 .first_content_wrapper .forth_txt p {
  font-size: 18px;
  font-weight: 400;
  color: rgb(115, 115, 115);
}
.team_tab_section .container_wrapper .content #content-3 .first_content_wrapper .fifth_txt p {
  font-size: 36px;
  font-weight: 500;
  color: rgb(0, 0, 0);
  text-align: start;
  margin: 0;
}
.team_tab_section .container_wrapper .content #content-3 .first_content_wrapper .sixth_txt {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-block: 5px;
}
.team_tab_section .container_wrapper .content #content-3 .first_content_wrapper .sixth_txt .bi {
  color: rgb(6, 106, 200);
  transform: rotate(90deg);
}
.team_tab_section .container_wrapper .content #content-3 .first_content_wrapper .sixth_txt p {
  font-size: 18px;
  font-weight: 400;
  color: rgb(115, 115, 115);
  margin: 0;
}
.team_tab_section .container_wrapper .content #content-3 .first_content_wrapper .blue_bg_image {
  margin-top: 20px;
  position: relative;
  z-index: 90;
  height: 300px;
}
.team_tab_section .container_wrapper .content #content-3 .first_content_wrapper .blue_bg_image::after {
  content: " ";
  position: absolute;
  height: 100%;
  width: 100%;
  background: linear-gradient(270deg, rgba(6, 106, 200, 0.8) 50%, rgba(6, 106, 200, 0.64) 100%, rgba(6, 106, 200, 0.8) 100%);
  left: 0;
  top: 0;
  bottom: 0;
}
.team_tab_section .container_wrapper .content #content-3 .first_content_wrapper .blue_bg_image .img_absolute_txt {
  position: absolute;
  z-index: 99;
  top: 20px;
  text-align: center;
  width: 100%;
  padding-top: 30px;
}
.team_tab_section .container_wrapper .content #content-3 .first_content_wrapper .blue_bg_image .img_absolute_txt .bi {
  color: rgb(252, 252, 252);
  height: 70px;
  width: 70px;
}
.team_tab_section .container_wrapper .content #content-3 .first_content_wrapper .blue_bg_image .img_absolute_txt p {
  font-size: 36px;
  font-weight: 500;
  color: rgb(252, 252, 252);
  text-align: center;
  margin: 0;
}
.team_tab_section .container_wrapper .content #content-4 {
  width: 100% !important;
}
.team_tab_section .container_wrapper .content #content-4 .first_content_wrapper .first_txt p {
  font-size: 30px;
  font-weight: 500;
  color: rgb(13, 19, 23);
  margin: 0;
}
@media (max-width: 768px) {
  .team_tab_section .container_wrapper .content #content-4 .first_content_wrapper .first_txt p {
    font-size: 22px !important;
  }
}
.team_tab_section .container_wrapper .content #content-4 .first_content_wrapper .second_txt p {
  font-size: 18px;
  font-weight: 400;
  color: rgb(115, 115, 115);
}
.team_tab_section .container_wrapper .content #content-4 .first_content_wrapper .third_image_wrapper {
  display: flex;
  gap: 20px;
}
.team_tab_section .container_wrapper .content #content-4 .first_content_wrapper .third_image_wrapper .left_bigger_image {
  height: 110px;
  width: 50%;
}
.team_tab_section .container_wrapper .content #content-4 .first_content_wrapper .third_image_wrapper .right_smaller_images {
  width: 50%;
  gap: 10px;
  display: flex;
  flex-direction: column;
}
.team_tab_section .container_wrapper .content #content-4 .first_content_wrapper .third_image_wrapper .right_smaller_images .first_img {
  height: 50px;
}
.team_tab_section .container_wrapper .content #content-4 .first_content_wrapper .third_image_wrapper .right_smaller_images .second_img {
  height: 50px;
}
.team_tab_section .container_wrapper .content #content-4 .first_content_wrapper .forth_txt p {
  font-size: 18px;
  font-weight: 400;
  color: rgb(115, 115, 115);
}
.team_tab_section .container_wrapper .content #content-4 .first_content_wrapper .fifth_txt p {
  font-size: 36px;
  font-weight: 500;
  color: rgb(0, 0, 0);
  text-align: start;
  margin: 0;
}
.team_tab_section .container_wrapper .content #content-4 .first_content_wrapper .sixth_txt {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-block: 5px;
}
.team_tab_section .container_wrapper .content #content-4 .first_content_wrapper .sixth_txt .bi {
  color: rgb(6, 106, 200);
  transform: rotate(90deg);
}
.team_tab_section .container_wrapper .content #content-4 .first_content_wrapper .sixth_txt p {
  font-size: 18px;
  font-weight: 400;
  color: rgb(115, 115, 115);
  margin: 0;
}
.team_tab_section .container_wrapper .content #content-4 .first_content_wrapper .blue_bg_image {
  margin-top: 20px;
  position: relative;
  z-index: 90;
  height: 300px;
}
.team_tab_section .container_wrapper .content #content-4 .first_content_wrapper .blue_bg_image::after {
  content: " ";
  position: absolute;
  height: 100%;
  width: 100%;
  background: linear-gradient(270deg, rgba(6, 106, 200, 0.8) 50%, rgba(6, 106, 200, 0.64) 100%, rgba(6, 106, 200, 0.8) 100%);
  left: 0;
  top: 0;
  bottom: 0;
}
.team_tab_section .container_wrapper .content #content-4 .first_content_wrapper .blue_bg_image .img_absolute_txt {
  position: absolute;
  z-index: 99;
  top: 20px;
  text-align: center;
  width: 100%;
  padding-top: 30px;
}
.team_tab_section .container_wrapper .content #content-4 .first_content_wrapper .blue_bg_image .img_absolute_txt .bi {
  color: rgb(252, 252, 252);
  height: 70px;
  width: 70px;
}
.team_tab_section .container_wrapper .content #content-4 .first_content_wrapper .blue_bg_image .img_absolute_txt p {
  font-size: 36px;
  font-weight: 500;
  color: rgb(252, 252, 252);
  text-align: center;
  margin: 0;
}

.faq2_section .left_faq_container {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-block: 40px !important;
}
@media (max-width: 768px) {
  .faq2_section .left_faq_container {
    padding-inline: 15px;
    padding-bottom: 30px;
  }
}
.faq2_section .left_faq_container .faq_accordion {
  box-sizing: border-box;
  box-shadow: 0 0 16px rgba(209, 228, 238, 0.9);
  border-radius: 4px;
  background-color: rgb(252, 252, 252);
  position: relative;
}
.faq2_section .left_faq_container .faq_accordion .question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 15px;
  padding-inline: 20px;
}
.faq2_section .left_faq_container .faq_accordion .question p {
  font-size: 16px;
  font-weight: 500;
}
@media (max-width: 992px) {
  .faq2_section .left_faq_container .faq_accordion .question p {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .faq2_section .left_faq_container .faq_accordion .question p {
    font-size: 14px;
  }
}
.faq2_section .left_faq_container .faq_accordion .question.active {
  background-color: rgb(6, 106, 200);
  color: white;
}
.faq2_section .left_faq_container .faq_accordion .question .icon_container {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0;
  color: #066ac8;
  background: rgb(6, 106, 200);
  padding-inline: 20px;
  display: flex;
  align-items: center;
  border-radius: 4px;
}
@media (max-width: 768px) {
  .faq2_section .left_faq_container .faq_accordion .question .icon_container {
    padding-inline: 6px;
  }
}
.faq2_section .left_faq_container .faq_accordion .question .icon_container.active {
  bottom: auto;
  top: 10px !important;
}
.faq2_section .left_faq_container .faq_accordion .question .icon_container .icon {
  color: white;
  right: 5px !important;
  top: 6px !important;
  height: 20px;
  width: 20px;
}
@media (max-width: 768px) {
  .faq2_section .left_faq_container .faq_accordion .question .icon_container .icon {
    height: 15px;
    width: 15px;
  }
}
.faq2_section .left_faq_container .faq_accordion .question .icon_container .icon.active {
  transform: rotate(-180deg);
  color: white !important;
}
.faq2_section .left_faq_container .faq_accordion .answer {
  max-height: 0;
  overflow: hidden;
}
@media (max-width: 768px) {
  .faq2_section .left_faq_container .faq_accordion .answer {
    padding-inline: 20px;
    padding-top: 2px !important;
  }
}
.faq2_section .left_faq_container .faq_accordion .answer.active {
  max-height: -moz-fit-content;
  max-height: fit-content;
  padding-right: 65px;
  padding-bottom: 20px;
  padding-left: 20px;
  padding-top: 15px;
}
@media (max-width: 768px) {
  .faq2_section .left_faq_container .faq_accordion .answer.active {
    padding-right: 40px;
  }
}
.faq2_section .left_faq_container .faq_accordion .answer p {
  font-size: 16px;
  font-weight: 400;
  color: #737373;
}
@media (max-width: 768px) {
  .faq2_section .left_faq_container .faq_accordion .answer p {
    font-size: 14px;
  }
}

.swiper_pagination_wrapper {
  position: relative;
}
.swiper_pagination_wrapper .Event_page .container {
  position: relative;
}
.swiper_pagination_wrapper .Event_page .container .event_wrapper {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}
@media (max-width: 992px) {
  .swiper_pagination_wrapper .Event_page .container .event_wrapper {
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .swiper_pagination_wrapper .Event_page .container .event_wrapper {
    flex-direction: column;
    gap: 30px;
  }
}
.swiper_pagination_wrapper .Event_page .container .event_wrapper .left_event_text .first_blue_text {
  position: relative;
  left: 10px;
  margin-block: 15px;
}
.swiper_pagination_wrapper .Event_page .container .event_wrapper .left_event_text .first_blue_text::after {
  position: absolute;
  content: " ";
  background-color: rgb(6, 106, 200);
  height: 3px !important;
  width: 6% !important;
  border-radius: 4px;
  top: 8px;
  left: 156px;
}
.swiper_pagination_wrapper .Event_page .container .event_wrapper .left_event_text .first_blue_text p {
  font-size: 16px;
  font-weight: 600;
  color: rgb(6, 106, 200);
  margin: 0;
}
.swiper_pagination_wrapper .Event_page .container .event_wrapper .left_event_text .second_event_text {
  margin-block: 15px;
}
.swiper_pagination_wrapper .Event_page .container .event_wrapper .left_event_text .second_event_text p {
  font-size: 34px;
  font-weight: 600;
  margin: 0;
}
@media (max-width: 992px) {
  .swiper_pagination_wrapper .Event_page .container .event_wrapper .left_event_text .second_event_text p {
    font-size: 30px;
  }
}
@media (max-width: 768px) {
  .swiper_pagination_wrapper .Event_page .container .event_wrapper .left_event_text .second_event_text p {
    font-size: 22px;
  }
}
.swiper_pagination_wrapper .Event_page .container .event_wrapper .left_event_text .second_event_text p .blue_text {
  color: rgb(6, 106, 200);
}
.swiper_pagination_wrapper .Event_page .container .event_wrapper .left_event_text .third_event_text {
  margin-block: 15px;
}
.swiper_pagination_wrapper .Event_page .container .event_wrapper .left_event_text .third_event_text p {
  font-size: 16px;
  font-weight: 400;
  color: #737373;
  margin: 0;
}
@media (max-width: 768px) {
  .swiper_pagination_wrapper .Event_page .container .event_wrapper .left_event_text .third_event_text p {
    font-size: 14px;
  }
}
.swiper_pagination_wrapper .Event_page .container .event_wrapper .left_event_text .event_notice_container {
  background-color: #eff7ff;
  margin-block: 20px;
  border-radius: 4px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.swiper_pagination_wrapper .Event_page .container .event_wrapper .left_event_text .event_notice_container .event_notice_info_cards {
  display: flex;
  justify-content: space-around;
  align-items: center;
  box-sizing: border-box;
  padding: 10px;
  gap: 20px;
  box-shadow: 0 0 16px rgba(139, 202, 241, 0.4);
  transition: all 0.3s ease-in-out;
}
@media (max-width: 768px) {
  .swiper_pagination_wrapper .Event_page .container .event_wrapper .left_event_text .event_notice_container .event_notice_info_cards {
    display: grid;
    justify-items: center;
    gap: 0;
  }
}
.swiper_pagination_wrapper .Event_page .container .event_wrapper .left_event_text .event_notice_container .event_notice_info_cards .date_info {
  width: 15%;
}
@media (max-width: 768px) {
  .swiper_pagination_wrapper .Event_page .container .event_wrapper .left_event_text .event_notice_container .event_notice_info_cards .date_info {
    width: 100% !important;
  }
}
.swiper_pagination_wrapper .Event_page .container .event_wrapper .left_event_text .event_notice_container .event_notice_info_cards .date_info .date1 p {
  font-size: 20px;
  font-weight: 500;
  margin: 0;
}
@media (max-width: 768px) {
  .swiper_pagination_wrapper .Event_page .container .event_wrapper .left_event_text .event_notice_container .event_notice_info_cards .date_info .date1 p {
    font-size: 16px;
    text-align: center;
  }
}
.swiper_pagination_wrapper .Event_page .container .event_wrapper .left_event_text .event_notice_container .event_notice_info_cards .date_info .date2 {
  margin-block: 20px;
}
.swiper_pagination_wrapper .Event_page .container .event_wrapper .left_event_text .event_notice_container .event_notice_info_cards .date_info .date2 p {
  font-size: 14px;
  width: 400;
  margin: 0;
}
@media (max-width: 768px) {
  .swiper_pagination_wrapper .Event_page .container .event_wrapper .left_event_text .event_notice_container .event_notice_info_cards .date_info .date2 p {
    font-size: 10px;
    text-align: center;
  }
}
.swiper_pagination_wrapper .Event_page .container .event_wrapper .left_event_text .event_notice_container .event_notice_info_cards .event_info {
  border-left: 2px dashed rgb(180, 218, 254);
  border-right: 2px dashed rgb(180, 218, 254);
  padding-inline: 20px;
  width: 60%;
}
@media (max-width: 768px) {
  .swiper_pagination_wrapper .Event_page .container .event_wrapper .left_event_text .event_notice_container .event_notice_info_cards .event_info {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .swiper_pagination_wrapper .Event_page .container .event_wrapper .left_event_text .event_notice_container .event_notice_info_cards .event_info {
    border: none;
  }
}
.swiper_pagination_wrapper .Event_page .container .event_wrapper .left_event_text .event_notice_container .event_notice_info_cards .event_info p {
  font-size: 24px;
  font-weight: 500;
  margin: 0;
}
.swiper_pagination_wrapper .Event_page .container .event_wrapper .left_event_text .event_notice_container .event_notice_info_cards .event_info .time_date_container {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
@media (max-width: 768px) {
  .swiper_pagination_wrapper .Event_page .container .event_wrapper .left_event_text .event_notice_container .event_notice_info_cards .event_info .time_date_container {
    flex-direction: column;
    align-items: center;
  }
}
.swiper_pagination_wrapper .Event_page .container .event_wrapper .left_event_text .event_notice_container .event_notice_info_cards .event_info .time_date_container .event_time {
  display: flex;
  gap: 10px;
}
.swiper_pagination_wrapper .Event_page .container .event_wrapper .left_event_text .event_notice_container .event_notice_info_cards .event_info .time_date_container .event_time .event_img {
  height: 14px;
  width: 14px;
  align-self: center;
}
@media (max-width: 768px) {
  .swiper_pagination_wrapper .Event_page .container .event_wrapper .left_event_text .event_notice_container .event_notice_info_cards .event_info .time_date_container .event_time .event_img {
    height: 19px;
    width: 18px;
  }
}
.swiper_pagination_wrapper .Event_page .container .event_wrapper .left_event_text .event_notice_container .event_notice_info_cards .event_info .time_date_container .event_time {
  display: flex;
  gap: 10px;
}
.swiper_pagination_wrapper .Event_page .container .event_wrapper .left_event_text .event_notice_container .event_notice_info_cards .event_info .time_date_container .event_time p {
  font-size: 14px;
  font-weight: 400;
  margin: 0;
  color: #737373;
}
.swiper_pagination_wrapper .Event_page .container .event_wrapper .left_event_text .event_notice_container .event_notice_info_cards .event_info .time_date_container .event_time .event_img .bi {
  color: #066ac8;
}
.swiper_pagination_wrapper .Event_page .container .event_wrapper .left_event_text .event_notice_container .event_notice_info_cards .event_info .event_location {
  display: flex;
  gap: 10px;
  align-items: center;
}
.swiper_pagination_wrapper .Event_page .container .event_wrapper .left_event_text .event_notice_container .event_notice_info_cards .event_info .event_location .event_img .bi {
  color: #066ac8;
}
.swiper_pagination_wrapper .Event_page .container .event_wrapper .left_event_text .event_notice_container .event_notice_info_cards .event_info .event_location p {
  font-size: 14px;
  font-weight: 400;
  margin: 0;
  color: #737373;
}
.swiper_pagination_wrapper .Event_page .container .event_wrapper .left_event_text .event_notice_container .event_notice_info_cards .main_text {
  margin-block: 20px;
}
@media (max-width: 768px) {
  .swiper_pagination_wrapper .Event_page .container .event_wrapper .left_event_text .event_notice_container .event_notice_info_cards .main_text {
    margin-top: 10px !important;
  }
}
.swiper_pagination_wrapper .Event_page .container .event_wrapper .left_event_text .event_notice_container .event_notice_info_cards .main_text p {
  font-size: 22px;
  font-weight: 500;
  margin: 0;
}
@media (max-width: 992px) {
  .swiper_pagination_wrapper .Event_page .container .event_wrapper .left_event_text .event_notice_container .event_notice_info_cards .main_text p {
    font-size: 20px !important;
  }
}
@media (max-width: 768px) {
  .swiper_pagination_wrapper .Event_page .container .event_wrapper .left_event_text .event_notice_container .event_notice_info_cards .main_text p {
    font-size: 16px !important;
    text-align: center;
  }
}
.swiper_pagination_wrapper .Event_page .container .event_wrapper .left_event_text .event_notice_container .event_notice_info_cards .button {
  display: inline-block;
  border: 1px solid rgb(6, 106, 200);
  padding: 8px 10px;
}
.swiper_pagination_wrapper .Event_page .container .event_wrapper .left_event_text .event_notice_container .event_notice_info_cards .button p {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
  color: rgb(6, 106, 200);
  display: flex;
}
@media (max-width: 768px) {
  .swiper_pagination_wrapper .Event_page .container .event_wrapper .left_event_text .event_notice_container .event_notice_info_cards .button p {
    font-size: 12px;
    white-space: nowrap;
  }
}
.swiper_pagination_wrapper .Event_page .container .event_wrapper .left_event_text .event_notice_container .event_notice_info_cards .button p .bi {
  height: 16px;
  width: 16px;
}
.swiper_pagination_wrapper .Event_page .container .event_wrapper .left_event_text .event_notice_container .event_notice_info_cards:hover {
  background-color: rgb(6, 106, 200);
  color: white;
}
.swiper_pagination_wrapper .Event_page .container .event_wrapper .left_event_text .event_notice_container .event_notice_info_cards:hover .event_time P {
  color: white !important;
}
.swiper_pagination_wrapper .Event_page .container .event_wrapper .left_event_text .event_notice_container .event_notice_info_cards:hover .event_time .bi {
  color: white !important;
}
.swiper_pagination_wrapper .Event_page .container .event_wrapper .left_event_text .event_notice_container .event_notice_info_cards:hover .event_location P {
  color: white !important;
}
.swiper_pagination_wrapper .Event_page .container .event_wrapper .left_event_text .event_notice_container .event_notice_info_cards:hover .event_location .bi {
  color: white !important;
}
.swiper_pagination_wrapper .Event_page .container .event_wrapper .left_event_text .event_notice_container .event_notice_info_cards:hover .button {
  border: 1px solid white;
}
.swiper_pagination_wrapper .Event_page .container .event_wrapper .left_event_text .event_notice_container .event_notice_info_cards:hover .button p {
  color: white;
}
.swiper_pagination_wrapper .Event_page .container .event_wrapper .left_event_text .event_notice_container .event_notice_info_cards:hover .button .bi {
  color: white;
}
.swiper_pagination_wrapper .Event_page .container .event_wrapper .right_event_img {
  width: 366px;
  height: 530px;
  position: relative;
}
@media (max-width: 992px) {
  .swiper_pagination_wrapper .Event_page .container .event_wrapper .right_event_img {
    display: none;
  }
}
.swiper_pagination_wrapper .Event_page .container .event_wrapper .right_event_img::after {
  content: " ";
  height: 50px;
  width: 50px;
  border-radius: 50%;
  border: 2px solid rgb(6, 106, 200);
  position: absolute;
  top: 50px;
  right: -25px;
}
@media (max-width: 992px) {
  .swiper_pagination_wrapper .Event_page .container .event_wrapper .right_event_img {
    width: 100%;
    height: 330px;
  }
}
@media (max-width: 768px) {
  .swiper_pagination_wrapper .Event_page .container .event_wrapper .right_event_img {
    width: 100%;
    height: 200px !important;
  }
}
.swiper_pagination_wrapper .Event_page .container .event_wrapper .right_event_img img {
  border-radius: 5px;
}

.container .nb_details_container {
  display: flex;
  gap: 40px;
  margin-block: 60px;
}
@media (max-width: 992px) {
  .container .nb_details_container {
    flex-direction: column;
  }
}
.container .nb_details_container .nb_left_container {
  width: 60%;
}
@media (max-width: 992px) {
  .container .nb_details_container .nb_left_container {
    width: 100%;
  }
}
.container .nb_details_container .nb_left_container .left_first_text p {
  font-size: 36px;
  font-weight: 500;
  margin: 0;
}
@media (max-width: 768px) {
  .container .nb_details_container .nb_left_container .left_first_text p {
    font-size: 20px;
  }
}
.container .nb_details_container .nb_left_container .left_container_content p {
  font-size: 16px;
  font-weight: 400;
  color: rgb(115, 115, 115);
}
.container .nb_details_container .nb_right_wrapper_wrap {
  background: #eff7ff;
  padding: 20px;
  height: 50%;
  width: 30%;
  border-radius: 5px;
  box-shadow: 0 0 16px rgba(177, 215, 239, 0.2);
}
@media (max-width: 992px) {
  .container .nb_details_container .nb_right_wrapper_wrap {
    width: 100%;
  }
}
.container .nb_details_container .nb_right_wrapper_wrap .nb_right_container .right_first_text {
  position: relative;
  margin-left: 15px;
  margin-bottom: 10px;
}
.container .nb_details_container .nb_right_wrapper_wrap .nb_right_container .right_first_text::before {
  position: absolute;
  content: " ";
  height: 100%;
  width: 3px;
  background-color: #066ac8;
  left: -15px;
  border-radius: 2px;
}
.container .nb_details_container .nb_right_wrapper_wrap .nb_right_container .right_first_text p {
  font-size: 18px;
  font-weight: 500;
  margin: 0;
}
.container .nb_details_container .nb_right_wrapper_wrap .nb_right_container .nb_right_wrapper {
  margin-block: 20px;
  border-top: 1px dashed rgb(180, 218, 254);
}
.container .nb_details_container .nb_right_wrapper_wrap .nb_right_container .nb_right_wrapper .right_calender {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}
.container .nb_details_container .nb_right_wrapper_wrap .nb_right_container .nb_right_wrapper .right_calender .bi {
  color: rgb(6, 106, 200);
}
.container .nb_details_container .nb_right_wrapper_wrap .nb_right_container .nb_right_wrapper .right_calender p {
  font-size: 16px;
  font-weight: 500;
  margin: 0;
}
.container .nb_details_container .nb_right_wrapper_wrap .nb_right_container .nb_right_wrapper .right_calender p .grey_txt {
  color: grey;
  font-size: 14px;
  font-weight: 500;
}

.contact-container-main {
  margin-top: 90px;
  margin-bottom: 90px;
}
@media (max-width: 768px) {
  .contact-container-main {
    margin-block: 10px !important;
  }
}
.contact-container-main .contact-content {
  display: flex;
  gap: 20px;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .contact-container-main .contact-content {
    flex-direction: column;
  }
}
.contact-container-main .contact-content .contact-content-lt {
  width: 50%;
}
@media (max-width: 768px) {
  .contact-container-main .contact-content .contact-content-lt {
    width: 100%;
  }
}
.contact-container-main .contact-content .contact-content-lt .contact-lt-header p {
  font-size: 36px;
  font-weight: 600;
}
@media (max-width: 992px) {
  .contact-container-main .contact-content .contact-content-lt .contact-lt-header p {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  .contact-container-main .contact-content .contact-content-lt .contact-lt-header p {
    font-size: 22px;
  }
}
.contact-container-main .contact-content .contact-content-lt .contact-lt-txt {
  margin-block: 12px;
}
.contact-container-main .contact-content .contact-content-lt .contact-lt-txt p {
  color: #737373;
  font-size: 15px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .contact-container-main .contact-content .contact-content-lt .contact-lt-txt p {
    font-size: 14px;
  }
}
.contact-container-main .contact-content .contact-content-lt .contact-lt-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-container-main .contact-content .contact-content-lt .contact-lt-form input[type=text],
.contact-container-main .contact-content .contact-content-lt .contact-lt-form [type=email],
.contact-container-main .contact-content .contact-content-lt .contact-lt-form select {
  font-size: 16px;
  padding: 18px 32px;
  display: inline-block;
  background-color: rgba(210, 218, 237, 0.168627451);
  color: #000000;
  border: none;
  outline: none;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .contact-container-main .contact-content .contact-content-lt .contact-lt-form input[type=text],
  .contact-container-main .contact-content .contact-content-lt .contact-lt-form [type=email],
  .contact-container-main .contact-content .contact-content-lt .contact-lt-form select {
    font-size: 14px;
  }
}
.contact-container-main .contact-content .contact-content-lt .contact-lt-form ::-moz-placeholder {
  color: #9c9c9c;
}
.contact-container-main .contact-content .contact-content-lt .contact-lt-form ::placeholder {
  color: #9c9c9c;
}
.contact-container-main .contact-content .contact-content-lt .contact-lt-form #msg {
  padding-bottom: 85px;
}
.contact-container-main .contact-content .contact-content-lt .submit-btn {
  margin-top: 32px;
}
.contact-container-main .contact-content .contact-content-lt .submit-btn button {
  border: none;
  padding: 12px 18px;
  background-color: rgb(6, 106, 200);
  border-radius: 4px;
  cursor: pointer;
}
.contact-container-main .contact-content .contact-content-lt .submit-btn button p {
  color: rgb(252, 252, 252);
  font-weight: 500;
  margin: 0;
}
@media (max-width: 768px) {
  .contact-container-main .contact-content .contact-content-lt .submit-btn button p {
    font-size: 14px;
  }
}
.contact-container-main .contact-content .contact-content-lt .submit-btn button:hover {
  background-color: rgb(169, 2, 98);
}
.contact-container-main .contact-content .contact-content-rt {
  width: 50%;
}
@media (max-width: 768px) {
  .contact-container-main .contact-content .contact-content-rt {
    width: 100% !important;
  }
}
.contact-container-main .contact-content .contact-content-rt .contact-rt-wrapper {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .contact-container-main .contact-content .contact-content-rt .contact-rt-wrapper {
    width: 100% !important;
  }
}
@media (max-width: 768px) {
  .contact-container-main .contact-content .contact-content-rt .contact-rt-wrapper .contact-rt {
    width: 50% !important;
  }
}
.contact-container-main .contact-content .contact-content-rt .contact-rt-wrapper .contact-rt .contact-rt1 {
  display: flex;
  gap: 5px;
  align-items: center;
}
.contact-container-main .contact-content .contact-content-rt .contact-rt-wrapper .contact-rt .contact-rt1 p {
  font-size: 24px;
  color: #0d1317;
  font-weight: 500;
}
@media (max-width: 992px) {
  .contact-container-main .contact-content .contact-content-rt .contact-rt-wrapper .contact-rt .contact-rt1 p {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .contact-container-main .contact-content .contact-content-rt .contact-rt-wrapper .contact-rt .contact-rt1 p {
    font-size: 14px;
  }
}
.contact-container-main .contact-content .contact-content-rt .contact-rt-wrapper .contact-rt .contact-rt1 .bi {
  width: 24px;
  height: 24px;
  color: rgb(6, 106, 200);
  border: 1px solid rgb(6, 106, 200);
  border-radius: 50%;
  padding: 5px;
  cursor: pointer;
}
.contact-container-main .contact-content .contact-content-rt .contact-rt-wrapper .contact-rt .rt-desc {
  margin-top: 15px;
  margin-bottom: 40px;
}
.contact-container-main .contact-content .contact-content-rt .contact-rt-wrapper .contact-rt .rt-desc p {
  font-size: 18px;
  color: #737373;
  font-weight: 500;
}
@media (max-width: 992px) {
  .contact-container-main .contact-content .contact-content-rt .contact-rt-wrapper .contact-rt .rt-desc p {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .contact-container-main .contact-content .contact-content-rt .contact-rt-wrapper .contact-rt .rt-desc p {
    font-size: 14px;
  }
}
.contact-container-main .contact-content .contact-content-rt iframe {
  width: 100%;
  height: 335px;
}
@media (max-width: 768px) {
  .contact-container-main .contact-content .contact-content-rt iframe {
    height: 200px;
    width: 100% !important;
  }
}
.contact-container-main .contact-content .contact-content-rt .contact-iframe {
  border: none;
}

@keyframes buttonScale {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.submit-btn button:active {
  animation: buttonScale 0.3s ease;
}

@keyframes iconScale {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.5);
  }
  100% {
    transform: scale(1);
  }
}
.contact-rt1 .bi:hover {
  animation: iconScale 1s ease;
}

.container .nb_details_container {
  display: flex;
  gap: 40px;
  margin-top: 70px;
}
@media (max-width: 992px) {
  .container .nb_details_container {
    flex-direction: column;
  }
}
.container .nb_details_container .nb_left_container {
  width: 60%;
}
@media (max-width: 992px) {
  .container .nb_details_container .nb_left_container {
    width: 100%;
  }
}
.container .nb_details_container .nb_left_container .left_first_text {
  margin-bottom: 30px;
}
.container .nb_details_container .nb_left_container .left_first_text p {
  font-size: 36px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .container .nb_details_container .nb_left_container .left_first_text p {
    font-size: 20px;
  }
}
.container .nb_details_container .nb_left_container .left_container_image {
  height: 350px;
}
@media (max-width: 992px) {
  .container .nb_details_container .nb_left_container .left_container_image {
    height: 300px;
  }
}
@media (max-width: 768px) {
  .container .nb_details_container .nb_left_container .left_container_image {
    height: 200px !important;
  }
}
.container .nb_details_container .nb_left_container .left_container_content {
  margin-top: 30px;
}
.container .nb_details_container .nb_left_container .left_container_content p {
  font-size: 16px;
  font-weight: 400;
  color: #737373;
  line-height: 30px;
}
@media (max-width: 768px) {
  .container .nb_details_container .nb_left_container .left_container_content p {
    font-size: 14px !important;
  }
}
.container .nb_details_container .nb_right_content_container {
  width: 30%;
}
@media (max-width: 992px) {
  .container .nb_details_container .nb_right_content_container {
    width: 100%;
  }
}
.container .nb_details_container .nb_right_content_container .nb_right_wrapper .nb_right_container {
  background: #eff7ff;
  padding: 20px;
  border-radius: 5px;
  border-left: 2px solid #066ac8;
  box-shadow: 0 0 16px rgba(177, 215, 239, 0.2);
}
@media (max-width: 992px) {
  .container .nb_details_container .nb_right_content_container .nb_right_wrapper .nb_right_container {
    width: 90%;
  }
}
.container .nb_details_container .nb_right_content_container .nb_right_wrapper .nb_right_container .right_first_text {
  position: relative;
  margin-left: 15px;
  margin-bottom: 10px;
}
.container .nb_details_container .nb_right_content_container .nb_right_wrapper .nb_right_container .right_first_text::before {
  position: absolute;
  content: " ";
  height: 100%;
  width: 3px;
  background-color: #066ac8;
  left: -15px;
  border-radius: 2px;
}
.container .nb_details_container .nb_right_content_container .nb_right_wrapper .nb_right_container .right_first_text p {
  font-size: 18px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .container .nb_details_container .nb_right_content_container .nb_right_wrapper .nb_right_container .right_first_text p {
    font-size: 14px;
  }
}
.container .nb_details_container .nb_right_content_container .nb_right_wrapper .nb_right_container .nb_right_wrapper {
  display: flex;
  gap: 25px;
}
.container .nb_details_container .nb_right_content_container .nb_right_wrapper .nb_right_container .nb_right_wrapper .right_container_image {
  margin-block: 10px;
}
.container .nb_details_container .nb_right_content_container .nb_right_wrapper .nb_right_container .nb_right_wrapper .right_container_image img {
  border-radius: 5px;
  -o-object-fit: cover !important;
     object-fit: cover !important;
  height: 75px;
  width: 75px;
}
@media (max-width: 768px) {
  .container .nb_details_container .nb_right_content_container .nb_right_wrapper .nb_right_container .nb_right_wrapper .right_container_image img {
    height: 40px;
    width: 40px;
  }
}
.container .nb_details_container .nb_right_content_container .nb_right_wrapper .nb_right_container .nb_right_wrapper .right_text p {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .container .nb_details_container .nb_right_content_container .nb_right_wrapper .nb_right_container .nb_right_wrapper .right_text p {
    font-size: 14px;
  }
}
.container .nb_details_container .nb_right_content_container .nb_right_wrapper .nb_right_container .nb_right_wrapper .right_text .right_calender p {
  font-size: 15px;
  font-weight: 500;
  color: grey;
}
.container .nb_details_container .nb_right_content_container .nb_right_wrapper .nb_right_container .nb_right_wrapper .right_text .right_calender p .fa-calendar-week {
  color: #066ac8;
}
@media (max-width: 768px) {
  .container .nb_details_container .nb_right_content_container .nb_right_wrapper .nb_right_container .nb_right_wrapper .right_text .right_calender p {
    font-size: 14px;
  }
}
.container .nb_details_container .nb_right_content_container .follow_us_container {
  background-color: white;
  box-shadow: 0 0 16px rgba(177, 215, 239, 0.4);
  margin-top: 20px;
  padding: 15px 35px;
  border-radius: 5px;
}
.container .nb_details_container .nb_right_content_container .follow_us_container .follow_us_txt {
  display: inline-block;
  position: relative;
  margin-block: 10px;
}
.container .nb_details_container .nb_right_content_container .follow_us_container .follow_us_txt p {
  font-size: 20px;
  font-weight: 600;
  color: rgb(3, 3, 3);
  margin: 0;
}
@media (max-width: 768px) {
  .container .nb_details_container .nb_right_content_container .follow_us_container .follow_us_txt p {
    font-size: 14px;
  }
}
.container .nb_details_container .nb_right_content_container .follow_us_container .follow_us_txt::after {
  position: absolute;
  content: " ";
  height: 2px;
  background-color: rgb(169, 2, 98);
  width: 50%;
  border-radius: 4px;
  margin-block: 5px;
}
.container .nb_details_container .nb_right_content_container .follow_us_container .social_icons {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-block: 10px;
}
.container .nb_details_container .nb_right_content_container .follow_us_container .social_icons .icons_wrapper {
  background-color: rgb(169, 2, 98);
  padding: 10px;
  border-radius: 5px;
}
.container .nb_details_container .nb_right_content_container .follow_us_container .social_icons .icons_wrapper .bi {
  height: 20px;
  width: 20px;
  color: rgb(252, 252, 252);
}

.program-inner-container {
  margin-block: 20px 90px;
}
.program-inner-container .program-inner-wrapper {
  display: flex;
  gap: 20px;
}
@media (max-width: 992px) {
  .program-inner-container .program-inner-wrapper {
    flex-direction: column;
  }
}
.program-inner-container .program-inner-wrapper .program-inner-lt {
  width: 70%;
}
@media (max-width: 992px) {
  .program-inner-container .program-inner-wrapper .program-inner-lt {
    width: 100%;
  }
}
.program-inner-container .program-inner-wrapper .program-inner-lt .program-inner-title {
  margin-bottom: 20px;
}
.program-inner-container .program-inner-wrapper .program-inner-lt .program-inner-title p {
  font-size: 36px;
  font-weight: 500;
}
@media (max-width: 992px) {
  .program-inner-container .program-inner-wrapper .program-inner-lt .program-inner-title p {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  .program-inner-container .program-inner-wrapper .program-inner-lt .program-inner-title p {
    font-size: 24px;
  }
}
.program-inner-container .program-inner-wrapper .program-inner-lt .program-inner-txt p {
  color: #737373;
  margin-block: 20px;
  font-size: 16px;
  margin: 0;
  line-height: 30px !important;
}
.program-inner-container .program-inner-wrapper .program-inner-lt .program-main-img img {
  width: 100%;
  height: 380px;
  -o-object-fit: cover;
     object-fit: cover;
}
.program-inner-container .program-inner-wrapper .program-inner-rt {
  width: 30%;
}
@media (max-width: 992px) {
  .program-inner-container .program-inner-wrapper .program-inner-rt {
    width: 100%;
  }
}
.program-inner-container .program-inner-wrapper .program-inner-rt .program-inner-rt-content {
  padding: 16px;
  box-shadow: 0px 0px 15px 0px rgba(28, 62, 149, 0.1019607843);
}
.program-inner-container .program-inner-wrapper .program-inner-rt .program-inner-rt-content .program-inner-rt-title {
  padding-bottom: 30px;
}
@media (max-width: 992px) {
  .program-inner-container .program-inner-wrapper .program-inner-rt .program-inner-rt-content .program-inner-rt-title {
    padding-bottom: 20px;
  }
}
.program-inner-container .program-inner-wrapper .program-inner-rt .program-inner-rt-content .program-inner-rt-title p {
  font-size: 22px;
  font-weight: 500;
}
.program-inner-container .program-inner-wrapper .program-inner-rt .program-inner-rt-content .program-inner-rt-title p::before {
  content: "";
  border-left: 2px solid rgb(6, 106, 200);
  margin-right: 10px;
  height: 12px;
}
.program-inner-container .program-inner-wrapper .program-inner-rt .program-inner-rt-content .program-inner-rt-txt {
  display: flex;
  gap: 10px;
  padding-bottom: 15px;
}
.program-inner-container .program-inner-wrapper .program-inner-rt .program-inner-rt-content .program-inner-rt-txt .bi-caret-right-fill {
  color: rgb(6, 106, 200);
  width: 16px;
  height: 16px;
}
.program-inner-container .program-inner-wrapper .program-inner-rt .program-inner-rt-content .program-inner-rt-txt p {
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  margin: 0 !important;
}
.program-inner-container .program-inner-wrapper .program-inner-rt-txt:hover p {
  color: rgb(6, 106, 200);
}

.donation_list_container {
  margin-block: 40px;
}
.donation_list_container table {
  width: 100%;
  cursor: pointer;
  border-collapse: collapse;
}
.donation_list_container table tr {
  text-align: center;
}
.donation_list_container table tr:nth-child(odd) {
  background-color: rgb(239, 247, 255);
}
.donation_list_container table th {
  background-color: rgb(6, 106, 200);
  color: rgb(252, 252, 252);
  padding: 10px 20px;
  border-left: 2px solid rgb(252, 252, 252);
}
.donation_list_container table th:nth-child(2) {
  width: 45%;
  text-align: start !important;
}
.donation_list_container table td {
  color: rgb(115, 115, 115);
  padding-block: 10px;
  border-spacing: 0;
  border-collapse: collapse;
}
.donation_list_container table td .image_txt_wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
}
.donation_list_container table td .image_txt_wrapper .img_container img {
  height: 30px;
  width: 30px;
  border-radius: 50%;
}
.donation_list_container table td .image_txt_wrapper p {
  margin: 0;
  color: rgb(115, 115, 115);
}

h2 {
  color: #2f8d46;
}

#form {
  text-align: center;
  position: relative;
  margin-top: 20px;
}

#form fieldset {
  background: white;
  border: 0 none;
  border-radius: 0.5rem;
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  padding-bottom: 20px;
  position: relative;
}

.finish {
  text-align: center;
}

#form fieldset:not(:first-of-type) {
  display: none;
}

#form .previous-step,
.next-step {
  width: 100px;
  font-weight: bold;
  color: white;
  border: 0 none;
  border-radius: 0px;
  cursor: pointer;
  padding: 10px 5px;
  margin: 10px 5px 10px 0px;
  float: right;
}

.form,
.previous-step {
  background: #616161;
}

.form,
.next-step {
  background: #2f8d46;
}

#form .previous-step:hover,
#form .previous-step:focus {
  background-color: #000000;
}

#form .next-step:hover,
#form .next-step:focus {
  background-color: #2f8d46;
}

.text {
  font-weight: normal;
}

#progressbar {
  margin-bottom: 30px;
  overflow: hidden;
  color: lightgrey;
  display: flex;
  justify-content: center;
}
@media (max-width: 768px) {
  #progressbar {
    flex-direction: column;
  }
}

@media only screen and (max-width: 768) {
  #progressbar {
    flex-direction: column;
  }
}
@media only screen and (max-width: 992) {
  #progressbar {
    width: 100%;
  }
}
#progressbar .active {
  color: #000000;
  display: flex;
  flex-direction: column-reverse;
  gap: 20px;
}
@media (max-width: 768px) {
  #progressbar .active {
    width: 100%;
  }
}

#progressbar li {
  list-style-type: none;
  font-size: 15px;
  width: 25%;
  float: left;
  position: relative;
  font-weight: 400;
  display: flex;
  flex-direction: column-reverse;
  gap: 20px;
}
@media (max-width: 768px) {
  #progressbar li {
    width: 100%;
  }
}

#progressbar #step1:before {
  content: "1";
}

#progressbar #step2:before {
  content: "2";
}

#progressbar #step3:before {
  content: "3";
}

#progressbar #step4:before {
  content: "4";
}

#progressbar li:before {
  width: 50px;
  height: 50px;
  line-height: 45px;
  display: block;
  font-size: 20px;
  color: #ffffff;
  background: lightgray;
  border-radius: 50%;
  margin: 0 auto 10px auto;
  padding: 2px;
}

#progressbar li:after {
  content: "";
  width: 100%;
  height: 2px;
  background: lightgray;
  position: absolute;
  left: 0;
  top: 60px;
  z-index: -1;
}

#progressbar li.active:before,
#progressbar li.active:after {
  background: rgb(6, 106, 200);
}

.progress {
  height: 20px;
}

.progress-bar {
  background-color: rgb(217, 217, 217);
}

.personal_info_container {
  background-color: rgb(239, 247, 255);
  padding: 30px 30px;
  border-radius: 4px;
}
@media (max-width: 768px) {
  .personal_info_container {
    padding: 10px;
  }
}

.personal_txt_svg {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-block: 15px;
}

.personal_txt_svg p {
  margin: 0;
  font-size: 24px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .personal_txt_svg p {
    font-size: 20px;
  }
}

.form_wrapper {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.form_left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  width: 40%;
}

.form_right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  width: 40%;
}

input {
  padding: 15px;
  outline: none;
  border: none;
  border-radius: 4px;
  width: 100%;
  font-size: 14px;
  font-weight: 400;
}
@media (max-width: 768px) {
  input {
    padding: 8px;
  }
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

label {
  width: 100%;
}

fieldset {
  display: flex;
  justify-content: center;
}

.form_submit_container {
  width: 75%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  .form_submit_container {
    width: 100% !important;
  }
}

.submit_btn {
  background: rgb(6, 106, 200) !important;
  border-radius: 4px;
  border: none;
  padding: 12px 8px;
  margin-block: 20px;
  width: 20%;
}

.submit_btn p {
  font-size: 14px;
  font-weight: 500;
  color: white;
  margin: 0;
}

.permanent_ad_txt p {
  text-align: start !important;
  font-size: 18px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .permanent_ad_txt p {
    font-size: 14px;
  }
}

.form_wrapper_wrap {
  display: flex;
  justify-content: space-between;
}

.form_left_wrap {
  width: 30%;
  position: relative;
}
.form_left_wrap label {
  width: 100%;
}
.form_left_wrap input {
  width: 100%;
}

.form_right_wrap {
  width: 30%;
  position: relative;
}
.form_right_wrap label {
  width: 100%;
}
.form_right_wrap input {
  width: 100%;
}

.ward_tole_wrapper {
  display: flex;
  justify-content: flex-start !important;
  gap: 1rem !important;
  align-items: center;
  width: 90%;
  margin-block: 20px;
}

.form_ward_wrap {
  width: 53%;
  position: relative;
}

.form_tole_wrap {
  width: 45%;
  position: relative;
}

.temp_ad_txt p {
  text-align: start !important;
  font-size: 18px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .temp_ad_txt p {
    font-size: 14px;
  }
}

.bi-card-text {
  color: rgb(6, 106, 200);
  height: 15px;
  width: 15px;
}

.form_icon {
  position: absolute;
  right: 13px;
  top: 13px;
}
@media (max-width: 768px) {
  .form_icon {
    top: 7px;
  }
}

.gallery-inner-container {
  padding-block: 20px 90px;
}
.gallery-inner-container .gallery-inner-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  align-self: auto;
}
@media (max-width: 768px) {
  .gallery-inner-container .gallery-inner-wrapper {
    grid-template-columns: 1fr !important;
    gap: 15px !important;
  }
}
.gallery-inner-container .gallery-inner-wrapper .g-inner-img img {
  cursor: pointer;
  transition: transform 0.2s;
  height: 230px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 992px) {
  .gallery-inner-container .gallery-inner-wrapper .g-inner-img img {
    height: 200px;
  }
}
@media (max-width: 768px) {
  .gallery-inner-container .gallery-inner-wrapper .g-inner-img img {
    height: 160px !important;
  }
}
.gallery-inner-container .gallery-inner-wrapper img:hover {
  transform: scale(1.05);
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 999999;
}
.modal .modal-content {
  position: relative;
  width: 60%;
  height: 400px;
}
@media (max-width: 992px) {
  .modal .modal-content {
    width: 80%;
    height: 500px;
  }
}
@media (max-width: 768px) {
  .modal .modal-content {
    width: 90% !important;
    height: 600px;
  }
}
.modal .modal-content img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.modal .modal-content .close {
  position: absolute;
  top: -50px;
  right: -5px;
  font-size: 40px;
  color: #939090;
  cursor: pointer;
}
@media (max-width: 992px) {
  .modal .modal-content .close {
    font-size: 60px !important;
    top: -75px;
  }
}
.modal .modal-content .close:hover {
  color: rgba(147, 144, 144, 0.6078431373);
}
.modal .modal-content .nav-btn {
  position: absolute;
  top: 50%;
  font-size: 30px;
  color: white;
  cursor: pointer;
  background: none;
  border: none;
  transform: translateY(-50%);
}
.modal .modal-content .prev {
  left: -100px;
  font-size: 56px;
}
@media (max-width: 992px) {
  .modal .modal-content .prev {
    display: none;
  }
}
.modal .modal-content .prev:hover {
  color: #939090;
}
.modal .modal-content .next {
  right: -100px;
  font-size: 56px;
}
@media (max-width: 992px) {
  .modal .modal-content .next {
    display: none;
  }
}
.modal .modal-content .next:hover {
  color: #939090;
}

iframe {
  height: 300px !important;
  width: 500px;
}
@media (max-width: 768px) {
  iframe {
    height: 200px !important;
    width: 100%;
  }
}

.ritual-container {
  margin: 90px 0;
}
@media (max-width: 768px) {
  .ritual-container {
    margin: 15px 0;
  }
}
.ritual-container .ritual-wrapper .ritual-lt-rt1 {
  display: flex;
  gap: 20px;
}
@media (max-width: 768px) {
  .ritual-container .ritual-wrapper .ritual-lt-rt1 {
    flex-direction: column;
  }
}
.ritual-container .ritual-wrapper .ritual-lt-rt1 .ritual-title {
  width: 50%;
}
@media (max-width: 768px) {
  .ritual-container .ritual-wrapper .ritual-lt-rt1 .ritual-title {
    width: 100%;
  }
}
.ritual-container .ritual-wrapper .ritual-lt-rt1 .ritual-title p {
  font-size: 36px;
  color: #0d1317;
  font-weight: 500;
}
@media (max-width: 768px) {
  .ritual-container .ritual-wrapper .ritual-lt-rt1 .ritual-title p {
    font-size: 22px;
    margin: 0;
  }
}
.ritual-container .ritual-wrapper .ritual-lt-rt1 .ritual-txt {
  width: 50%;
}
@media (max-width: 768px) {
  .ritual-container .ritual-wrapper .ritual-lt-rt1 .ritual-txt {
    width: 100%;
  }
}
.ritual-container .ritual-wrapper .ritual-lt-rt1 .ritual-txt p {
  font-size: 18px;
  color: #737373;
}
@media (max-width: 768px) {
  .ritual-container .ritual-wrapper .ritual-lt-rt1 .ritual-txt p {
    font-size: 14px;
    margin: 0;
  }
}
.ritual-container .ritual-wrapper .ritual-lt-rt2 {
  display: flex;
  gap: 20px;
  margin-block: 30px;
}
.ritual-container .ritual-wrapper .ritual-lt-rt2 .ritual-img-lt {
  width: 50%;
}
.ritual-container .ritual-wrapper .ritual-lt-rt2 .ritual-img-lt img {
  height: 576px;
}
@media (max-width: 768px) {
  .ritual-container .ritual-wrapper .ritual-lt-rt2 .ritual-img-lt img {
    height: 200px;
  }
}
.ritual-container .ritual-wrapper .ritual-lt-rt2 .ritual-img-rt {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.ritual-container .ritual-wrapper .ritual-lt-rt2 .ritual-img-rt img {
  height: 278px;
}
@media (max-width: 768px) {
  .ritual-container .ritual-wrapper .ritual-lt-rt2 .ritual-img-rt img {
    height: 90px;
  }
}
.ritual-container .ritual-wrapper .ritual-main-txt {
  margin-bottom: 30px;
}
.ritual-container .ritual-wrapper .ritual-main-txt p {
  color: #737373;
  font-size: 18px;
}
@media (max-width: 768px) {
  .ritual-container .ritual-wrapper .ritual-main-txt p {
    font-size: 14px;
  }
}
.ritual-container .ritual-wrapper .procedure-container .procedure-title {
  margin-bottom: 15px;
}
.ritual-container .ritual-wrapper .procedure-container .procedure-title p {
  font-size: 36px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .ritual-container .ritual-wrapper .procedure-container .procedure-title p {
    font-size: 22px;
    margin: 0;
  }
}
.ritual-container .ritual-wrapper .procedure-container .procedure-wrapper {
  display: flex;
  gap: 20px;
  align-items: center;
}
@media (max-width: 768px) {
  .ritual-container .ritual-wrapper .procedure-container .procedure-wrapper {
    flex-direction: column;
  }
}
.ritual-container .ritual-wrapper .procedure-container .procedure-wrapper .procedure-lt {
  width: 60%;
}
@media (max-width: 768px) {
  .ritual-container .ritual-wrapper .procedure-container .procedure-wrapper .procedure-lt {
    width: 100%;
  }
}
.ritual-container .ritual-wrapper .procedure-container .procedure-wrapper .procedure-txt p {
  color: #737373;
  margin: 0;
}
@media (max-width: 768px) {
  .ritual-container .ritual-wrapper .procedure-container .procedure-wrapper .procedure-txt p {
    font-size: 14px;
  }
}
.ritual-container .ritual-wrapper .procedure-container .procedure-wrapper .procedure-rt {
  width: 40%;
}
@media (max-width: 768px) {
  .ritual-container .ritual-wrapper .procedure-container .procedure-wrapper .procedure-rt {
    width: 100%;
  }
}
.ritual-container .ritual-wrapper .procedure-container .procedure-wrapper .procedure-rt img {
  width: 100%;
  height: 300px;
}
@media (max-width: 768px) {
  .ritual-container .ritual-wrapper .procedure-container .procedure-wrapper .procedure-rt img {
    height: 200px;
  }
}

body {
  font-family: "Rubik", serif !important;
}

.container {
  width: 85%;
  margin: 0 auto;
}

body {
  margin: 0;
}

p {
  margin: 0;
}

ul {
  margin: 0;
}

img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover !important;
     object-fit: cover !important;
}

li {
  list-style-type: none;
}

a {
  text-decoration: none;
  color: black;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
}

@media (max-width: 768px) {
  .img_after {
    height: 100px !important;
    width: 100px !important;
  }
}

@media (max-width: 768px) {
  .img_before {
    height: 100px !important;
    width: 100px !important;
  }
}

@media (max-width: 768px) {
  .common_image_txt .main_txt p {
    font-size: 22px !important;
  }
}

@media (max-width: 768px) {
  .common_bg_wrapper {
    height: 150px !important;
  }
}

@media (max-width: 992px) {
  .team_tab_section {
    margin-block: 30px !important;
  }
}

.bi:hover {
  color: rgb(180, 218, 254);
}

p {
  overflow: hidden;
}
p img {
  height: auto !important;
  border: 5px solid #dfd9d9;
  max-width: 695px;
}
@media (max-width: 992px) {
  p img {
    width: 100% !important;
  }
}
@media (max-width: 992px) {
  p img {
    width: 100% !important;
  }
}

ol {
  margin-block-start: 0;
  margin-block-end: 0;
  padding: 0;
}

body {
  transition: background-color 0.3s ease-in-out;
}
body.menu-open {
  background-color: grey !important;
  height: 100%;
  width: 100%;
  position: static;
  z-index: 99999999999999;
}
body .header_container_wrapper .nav_header_wrapper_container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 45px;
}
body .header_container_wrapper .nav_header_wrapper_container .email_contact_wrapper_container {
  width: 50%;
  height: 100%;
  display: flex;
  background-color: rgb(169, 2, 98);
}
@media (max-width: 768px) {
  body .header_container_wrapper .nav_header_wrapper_container .email_contact_wrapper_container {
    width: 80% !important;
  }
}
body .header_container_wrapper .nav_header_wrapper_container .email_contact_wrapper_container .nav_top_left_header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: 100px;
}
@media (max-width: 992px) {
  body .header_container_wrapper .nav_header_wrapper_container .email_contact_wrapper_container .nav_top_left_header {
    margin-left: 30px;
  }
}
body .header_container_wrapper .nav_header_wrapper_container .email_contact_wrapper_container .nav_top_left_header .email_wrapper_container {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 992px) {
  body .header_container_wrapper .nav_header_wrapper_container .email_contact_wrapper_container .nav_top_left_header .email_wrapper_container {
    display: none;
  }
}
body .header_container_wrapper .nav_header_wrapper_container .email_contact_wrapper_container .nav_top_left_header .email_wrapper_container .email_icon_container {
  color: white;
  height: 16px;
}
body .header_container_wrapper .nav_header_wrapper_container .email_contact_wrapper_container .nav_top_left_header .email_wrapper_container .email_txt_container p {
  font-size: 16px;
  font-weight: 400;
  color: white;
  margin: 0;
}
body .header_container_wrapper .nav_header_wrapper_container .email_contact_wrapper_container .nav_top_left_header .contact_wrapper_container {
  display: flex;
  align-items: center;
  gap: 10px;
}
body .header_container_wrapper .nav_header_wrapper_container .email_contact_wrapper_container .nav_top_left_header .contact_wrapper_container .contact_icon_container {
  color: white;
  height: 16px;
}
body .header_container_wrapper .nav_header_wrapper_container .email_contact_wrapper_container .nav_top_left_header .contact_wrapper_container .contact_txt_container p {
  font-size: 16px;
  font-weight: 400;
  color: white;
}
@media (max-width: 768px) {
  body .header_container_wrapper .nav_header_wrapper_container .email_contact_wrapper_container .nav_top_left_header .contact_wrapper_container .contact_txt_container p {
    font-size: 14px;
  }
}
body .header_container_wrapper .nav_header_wrapper_container .social_icon_content {
  width: 53%;
  position: relative;
  height: 100%;
  padding-right: 105px;
  display: flex;
  justify-content: right;
  background-color: rgb(6, 106, 200);
}
@media (max-width: 768px) {
  body .header_container_wrapper .nav_header_wrapper_container .social_icon_content {
    padding-right: 65px;
  }
}
body .header_container_wrapper .nav_header_wrapper_container .social_icon_content::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 100%;
  width: 20px;
  background-color: rgb(6, 106, 200);
  -webkit-clip-path: polygon(100% 100%, 100% 1%, 0 100%);
          clip-path: polygon(100% 100%, 100% 1%, 0 100%);
  transform: skewX(0deg);
  z-index: 1;
}
body .header_container_wrapper .nav_header_wrapper_container .social_icon_content .nav_top_right_wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 768px) {
  body .header_container_wrapper .nav_header_wrapper_container .social_icon_content .nav_top_right_wrapper {
    gap: 10px;
  }
}
body .header_container_wrapper .nav_header_wrapper_container .social_icon_content .nav_top_right_wrapper .social_txt_container p {
  font-size: 16px;
  font-weight: 400;
  color: white;
}
@media (max-width: 768px) {
  body .header_container_wrapper .nav_header_wrapper_container .social_icon_content .nav_top_right_wrapper .social_txt_container p {
    font-size: 14px;
  }
}
body .header_container_wrapper .nav_header_wrapper_container .social_icon_content .nav_top_right_wrapper .social_icon_container a .bi {
  color: white;
}
body .header_container_wrapper #sticky_nav_menu.sticky {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  width: 100%;
  background: white;
}
body .header_container_wrapper #sticky_nav_menu .nav_menu_wrapper_container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 8px;
}
body .header_container_wrapper #sticky_nav_menu .nav_menu_wrapper_container .logo_wrapper_wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (max-width: 992px) {
  body .header_container_wrapper #sticky_nav_menu .nav_menu_wrapper_container .logo_wrapper_wrap {
    width: 60% !important;
  }
}
body .header_container_wrapper #sticky_nav_menu .nav_menu_wrapper_container .logo_wrapper_wrap .nav_logo img {
  height: 63px;
  width: 60px;
}
@media (max-width: 768px) {
  body .header_container_wrapper #sticky_nav_menu .nav_menu_wrapper_container .logo_wrapper_wrap .nav_logo img {
    height: 45px;
    width: 40px;
    border-radius: 50%;
  }
}
body .header_container_wrapper #sticky_nav_menu .nav_menu_wrapper_container .logo_wrapper_wrap .logo_txt .logo_title {
  font-size: 16px;
  font-weight: 600;
}
@media (max-width: 768px) {
  body .header_container_wrapper #sticky_nav_menu .nav_menu_wrapper_container .logo_wrapper_wrap .logo_txt .logo_title {
    font-size: 14px !important;
  }
}
@media (max-width: 992px) {
  body .header_container_wrapper #sticky_nav_menu .nav_menu_wrapper_container .logo_wrapper_wrap .logo_txt .logo_title {
    font-size: 18px;
  }
}
body .header_container_wrapper #sticky_nav_menu .nav_menu_wrapper_container .nav_list_hamburger_menu {
  display: flex;
  align-items: center;
  position: relative;
}
@media (max-width: 992px) {
  body .header_container_wrapper #sticky_nav_menu .nav_menu_wrapper_container .nav_list_hamburger_menu {
    flex-direction: row-reverse;
    align-items: center;
    gap: 20px;
    width: 100%;
  }
}
body .header_container_wrapper #sticky_nav_menu .nav_menu_wrapper_container .nav_list_hamburger_menu .hamburger-menu {
  display: none;
}
body .header_container_wrapper #sticky_nav_menu .nav_menu_wrapper_container .nav_list_hamburger_menu .hamburger-menu .bi {
  height: 50px;
  width: 35px;
}
@media (max-width: 992px) {
  body .header_container_wrapper #sticky_nav_menu .nav_menu_wrapper_container .nav_list_hamburger_menu .hamburger-menu {
    display: block;
  }
}
body .header_container_wrapper #sticky_nav_menu .nav_menu_wrapper_container .nav_list_hamburger_menu .cross_sign {
  display: none; /* Hidden by default */
  cursor: pointer;
  width: 30px; /* Adjust size as necessary */
  height: 30px;
  position: absolute;
  top: 10px; /* Adjust positioning */
  right: 10px;
  z-index: 99999;
}
body .header_container_wrapper #sticky_nav_menu .nav_menu_wrapper_container .nav_list_hamburger_menu .cross_sign .bi {
  height: 30px;
  width: 30px;
}
@media (max-width: 768px) {
  body .header_container_wrapper #sticky_nav_menu .nav_menu_wrapper_container .nav_list_hamburger_menu .cross_sign .bi {
    height: 23px;
    width: 23px;
  }
}
body .header_container_wrapper #sticky_nav_menu .nav_menu_wrapper_container .nav_list_hamburger_menu .cross_sign.active {
  display: block;
}
body .header_container_wrapper #sticky_nav_menu .nav_menu_wrapper_container .nav_list_hamburger_menu .nav_list_menu {
  display: flex;
  align-items: center;
  gap: 20px;
}
body .header_container_wrapper #sticky_nav_menu .nav_menu_wrapper_container .nav_list_hamburger_menu .nav_list_menu .navigation_list {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 992px) {
  body .header_container_wrapper #sticky_nav_menu .nav_menu_wrapper_container .nav_list_hamburger_menu .nav_list_menu .navigation_list {
    transform: translateX(-100%);
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    z-index: 9999;
    background-color: white;
    display: none;
  }
}
body .header_container_wrapper #sticky_nav_menu .nav_menu_wrapper_container .nav_list_hamburger_menu .nav_list_menu .navigation_list.active {
  display: block;
  flex-direction: column !important;
  transform: translateX(0);
  width: 100%;
  top: -10px;
  height: 100vh;
}
body .header_container_wrapper #sticky_nav_menu .nav_menu_wrapper_container .nav_list_hamburger_menu .nav_list_menu .navigation_list.active body {
  background: grey !important;
}
body .header_container_wrapper #sticky_nav_menu .nav_menu_wrapper_container .nav_list_hamburger_menu .nav_list_menu .navigation_list li {
  position: relative;
}
@media (max-width: 992px) {
  body .header_container_wrapper #sticky_nav_menu .nav_menu_wrapper_container .nav_list_hamburger_menu .nav_list_menu .navigation_list li {
    margin-block: 15px;
  }
}
body .header_container_wrapper #sticky_nav_menu .nav_menu_wrapper_container .nav_list_hamburger_menu .nav_list_menu .navigation_list li.active {
  background-color: rgb(6, 106, 200);
}
body .header_container_wrapper #sticky_nav_menu .nav_menu_wrapper_container .nav_list_hamburger_menu .nav_list_menu .navigation_list li a {
  font-size: 16px;
  font-weight: 600;
  position: relative;
}
body .header_container_wrapper #sticky_nav_menu .nav_menu_wrapper_container .nav_list_hamburger_menu .nav_list_menu .navigation_list li a.active {
  color: rgb(6, 106, 200);
}
body .header_container_wrapper #sticky_nav_menu .nav_menu_wrapper_container .nav_list_hamburger_menu .nav_list_menu .navigation_list li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: rgb(6, 106, 200);
  transition: width 0.3s ease, left 0.3s ease;
  border-radius: 4px;
  margin-block: -2px;
  top: 25px;
  border-radius: 50px;
}
body .header_container_wrapper #sticky_nav_menu .nav_menu_wrapper_container .nav_list_hamburger_menu .nav_list_menu .navigation_list li a.active::after {
  width: 50%;
  right: 0;
  top: 25px;
}
body .header_container_wrapper #sticky_nav_menu .nav_menu_wrapper_container .nav_list_hamburger_menu .nav_list_menu .navigation_list li .dropdown {
  display: none; /* Hidden by default */
  position: absolute;
  top: 100%; /* Position below the parent */
  left: 0;
  background-color: rgb(239, 247, 255);
  border: 1px solid #ddd;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 100;
  width: 160px;
  padding: 10px 0;
  border-top: 2px solid rgb(6, 106, 200);
  padding-left: 10px;
}
@media (max-width: 992px) {
  body .header_container_wrapper #sticky_nav_menu .nav_menu_wrapper_container .nav_list_hamburger_menu .nav_list_menu .navigation_list li .dropdown {
    position: static;
    width: 80%;
    border: none;
    background: white;
  }
}
body .header_container_wrapper #sticky_nav_menu .nav_menu_wrapper_container .nav_list_hamburger_menu .nav_list_menu .navigation_list li .dropdown li {
  padding-block: 8px;
  border-bottom: 1.5px dashed rgb(180, 218, 254);
}
@media (max-width: 768px) {
  body .header_container_wrapper #sticky_nav_menu .nav_menu_wrapper_container .nav_list_hamburger_menu .nav_list_menu .navigation_list li .dropdown li {
    padding: 0;
    border: none;
  }
}
@media (max-width: 992px) {
  body .header_container_wrapper #sticky_nav_menu .nav_menu_wrapper_container .nav_list_hamburger_menu .nav_list_menu .navigation_list li .dropdown li {
    padding: 0;
    border: none;
  }
}
body .header_container_wrapper #sticky_nav_menu .nav_menu_wrapper_container .nav_list_hamburger_menu .nav_list_menu .navigation_list li .dropdown li:nth-child(2) a {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
body .header_container_wrapper #sticky_nav_menu .nav_menu_wrapper_container .nav_list_hamburger_menu .nav_list_menu .navigation_list li .dropdown li:nth-child(2) a .bi {
  color: rgb(0, 0, 0);
}
body .header_container_wrapper #sticky_nav_menu .nav_menu_wrapper_container .nav_list_hamburger_menu .nav_list_menu .navigation_list li .dropdown li a {
  color: rgb(115, 115, 115);
  font-size: 15px;
}
@media (max-width: 768px) {
  body .header_container_wrapper #sticky_nav_menu .nav_menu_wrapper_container .nav_list_hamburger_menu .nav_list_menu .navigation_list li .dropdown li a {
    color: black;
  }
}
body .header_container_wrapper #sticky_nav_menu .nav_menu_wrapper_container .nav_list_hamburger_menu .nav_list_menu .navigation_list li .dropdown li a::after {
  display: none;
}
body .header_container_wrapper #sticky_nav_menu .nav_menu_wrapper_container .nav_list_hamburger_menu .nav_list_menu .navigation_list li .dropdown li a:hover {
  color: rgb(6, 106, 200);
}
body .header_container_wrapper #sticky_nav_menu .nav_menu_wrapper_container .nav_list_hamburger_menu .nav_list_menu .navigation_list li .dropdown li .nested-dropdown {
  display: none; /* Hidden by default */
  position: absolute;
  top: 0; /* Position below the parent */
  left: 160px;
  background-color: rgb(239, 247, 255);
  border: 1px solid #ddd;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 100;
  width: 160px;
  padding: 10px 10px;
  border-top: 2px solid rgb(6, 106, 200);
}
body .header_container_wrapper #sticky_nav_menu .nav_menu_wrapper_container .nav_list_hamburger_menu .nav_list_menu .navigation_list li .dropdown li .nested-dropdown li:nth-child(4) {
  border-bottom: none;
}
body .header_container_wrapper #sticky_nav_menu .nav_menu_wrapper_container .nav_list_hamburger_menu .nav_list_menu .navigation_list li .dropdown li .nested-dropdown li:hover {
  color: rgb(6, 106, 200);
}
body .header_container_wrapper #sticky_nav_menu .nav_menu_wrapper_container .nav_list_hamburger_menu .nav_list_menu .navigation_list li .dropdown li:hover .nested-dropdown {
  display: block;
}
@media (max-width: 992px) {
  body .header_container_wrapper #sticky_nav_menu .nav_menu_wrapper_container .nav_list_hamburger_menu .nav_list_menu .navigation_list li .dropdown li:hover .nested-dropdown {
    position: static;
    background: white;
    border: none;
  }
}
body .header_container_wrapper #sticky_nav_menu .nav_menu_wrapper_container .nav_list_hamburger_menu .nav_list_menu .navigation_list li:hover .dropdown {
  display: block;
}
body .header_container_wrapper #sticky_nav_menu .nav_menu_wrapper_container .nav_list_hamburger_menu .nav_list_menu .donar_list a {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: rgb(6, 106, 200);
  padding: 10px 10px;
}
body .header_container_wrapper #sticky_nav_menu .nav_menu_wrapper_container .nav_list_hamburger_menu .nav_list_menu .donar_list a .bi {
  color: white;
}
body .header_container_wrapper #sticky_nav_menu .nav_menu_wrapper_container .nav_list_hamburger_menu .nav_list_menu .donar_list a p {
  font-size: 12px;
  font-weight: 600;
  color: white;
}
body .footer-container {
  background-color: rgb(6, 106, 200);
  position: relative;
}
body .footer-container .footer-content {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 90px;
  align-items: start;
}
@media (max-width: 992px) {
  body .footer-container .footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-top: 20px;
  }
}
@media (max-width: 768px) {
  body .footer-container .footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px !important;
    padding-top: 20px;
  }
}
body .footer-container .footer-content .fcol1 {
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 25%;
}
@media (max-width: 992px) {
  body .footer-container .footer-content .fcol1 {
    width: 100%;
  }
}
body .footer-container .footer-content .fcol1 .logo_wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}
body .footer-container .footer-content .fcol1 .logo_wrapper .nav_logo img {
  height: 60px;
  width: 63px;
}
@media (max-width: 768px) {
  body .footer-container .footer-content .fcol1 .logo_wrapper .nav_logo img {
    height: 45px;
    width: 45px;
    border-radius: 50%;
  }
}
body .footer-container .footer-content .fcol1 .logo_wrapper .logo_txt .logo_title {
  font-size: 20px;
  font-weight: 600;
  color: rgb(252, 252, 252);
}
@media (max-width: 768px) {
  body .footer-container .footer-content .fcol1 .logo_wrapper .logo_txt .logo_title {
    font-size: 16px !important;
  }
}
@media (max-width: 992px) {
  body .footer-container .footer-content .fcol1 .logo_wrapper .logo_txt .logo_title {
    font-size: 18px;
  }
}
body .footer-container .footer-content .fcol1 .fcol1_txt p {
  font-size: 14px;
  font-weight: 500;
  color: rgb(252, 252, 252);
  margin: 0;
  text-align: justify;
}
body .footer-container .footer-content .fcol1 .flogo-icon {
  display: flex;
  gap: 25px;
  margin-top: 30px;
}
body .footer-container .footer-content .fcol1 .flogo-icon a .bi {
  color: rgb(252, 252, 252);
}
body .footer-container .footer-content .fcol2 {
  width: 15%;
}
@media (max-width: 992px) {
  body .footer-container .footer-content .fcol2 {
    width: 100%;
  }
}
body .footer-container .footer-content .fcol2 .link .link-title p {
  font-size: 20px;
  font-weight: 600;
  color: rgb(252, 252, 252);
}
body .footer-container .footer-content .fcol2 .link ul {
  padding: 0px;
  margin-top: 23px;
}
body .footer-container .footer-content .fcol2 .link ul li {
  margin-block: 18px;
}
body .footer-container .footer-content .fcol2 .link ul li a {
  color: rgb(252, 252, 252);
  font-weight: 500;
  text-decoration: none;
}
body .footer-container .footer-content .fcol2 .link ul li a .greater {
  color: rgb(169, 2, 98);
}
body .footer-container .footer-content .fcol3 {
  width: 30%;
}
@media (max-width: 992px) {
  body .footer-container .footer-content .fcol3 {
    width: 100%;
  }
}
body .footer-container .footer-content .fcol3 .touch-link .touch-title p {
  font-size: 20px;
  font-weight: 600;
  color: rgb(252, 252, 252);
}
body .footer-container .footer-content .fcol3 .touch-link ul {
  display: flex;
  flex-direction: column;
  padding: 0px;
}
body .footer-container .footer-content .fcol3 .touch-link ul .all-icon-box {
  display: flex;
  gap: 5px;
  align-items: center;
  margin-bottom: 15px;
}
body .footer-container .footer-content .fcol3 .touch-link ul .all-icon-box .ficon-border {
  background-color: rgb(169, 2, 98);
  padding: 8px;
  border-radius: 4px;
}
body .footer-container .footer-content .fcol3 .touch-link ul .all-icon-box .ficon-border .bi {
  color: rgb(252, 252, 252);
  height: 17px;
  width: 20px;
}
body .footer-container .footer-content .fcol3 .touch-link ul .all-icon-box .icon-txt p a {
  color: rgb(252, 252, 252) !important;
  font-weight: 500;
  font-size: 16px;
}
body .footer-container .footer-content .fcol4 {
  width: 20%;
}
@media (max-width: 992px) {
  body .footer-container .footer-content .fcol4 {
    width: 100%;
  }
}
body .footer-container .footer-content .fcol4 .letter-link {
  display: flex;
  flex-direction: column;
}
body .footer-container .footer-content .fcol4 .letter-link .letter-title p {
  font-size: 20px;
  font-weight: 600;
  color: rgb(252, 252, 252);
}
body .footer-container .footer-content .fcol4 .letter-link .letter-txt {
  margin-block: 10px 0px;
}
body .footer-container .footer-content .fcol4 .letter-link .letter-txt p {
  font-size: 14px;
  color: rgb(252, 252, 252);
  font-weight: 500;
}
body .footer-container .footer-content .fcol4 .letter-link .flogo-icon {
  display: flex;
  gap: 25px;
}
body .footer-container .footer-content .fcol4 .letter-link .flogo-icon a .bi {
  color: rgb(252, 252, 252);
}
body .footer-container .ficon-border {
  background-color: rgb(169, 2, 98);
  padding: 8px;
  border-radius: 4px;
}
body .footer-container .ficon-border a .bi {
  color: rgb(252, 252, 252);
  height: 17px;
  width: 20px;
}
body .footer-container .bottom-fl {
  border-bottom: 2px solid rgb(169, 2, 98);
  width: 42px;
  margin-block: 15px 30px;
}
body .footer-container .last_footer_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 50px;
  padding-block: 15px;
  background-color: rgb(219, 237, 255);
}
@media (max-width: 768px) {
  body .footer-container .last_footer_wrapper {
    flex-direction: column;
    gap: 15px;
  }
}
body .footer-container .last_footer_wrapper .ltf_frow p {
  font-size: 14px;
  font-weight: 400;
  color: rgb(0, 0, 0);
  margin: 0;
}
body .footer-container .last_footer_wrapper .right_frow p {
  font-size: 14px;
  font-weight: 400;
  color: rgb(0, 0, 0);
  margin: 0;
}
body .footer-container .last_footer_wrapper .right_frow p .blue {
  color: rgb(6, 106, 200);
}
body .footer-container .last_footer_wrapper .right_frow p .red {
  color: rgb(169, 2, 98) !important;
}
body .footer-container::before {
  content: " ";
  height: 150px;
  width: 50px;
  position: absolute;
  bottom: 0;
  background-color: rgb(169, 2, 98);
  left: 0;
  border-top-right-radius: 15px;
}
@media (max-width: 768px) {
  body .footer-container::before {
    display: none;
  }
}
body .footer-container::after {
  content: " ";
  height: 150px;
  width: 50px;
  position: absolute;
  background-color: rgb(169, 2, 98);
  right: 0;
  bottom: 170px;
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
}
@media (max-width: 768px) {
  body .footer-container::after {
    display: none;
  }
}

.first_content {
  position: relative;
}
.first_content .bg_image {
  position: relative;
}
.first_content .bg_image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 99%;
  background: linear-gradient(270deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.85) 50%, rgba(0, 0, 0, 0.98) 76.48%, #000000 100%);
  pointer-events: none;
}
.first_content .bg_image img {
  height: 600px;
  filter: grayscale(100%);
}
@media (max-width: 992px) {
  .first_content .bg_image img {
    height: 450px;
  }
}
@media (max-width: 768px) {
  .first_content .bg_image img {
    height: 200px !important;
  }
}
.first_content .overlay_content_after .overlay_image_txt_wrapper {
  display: flex;
  top: 0;
  position: absolute;
  align-items: center;
  gap: 20px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 85%;
}
.first_content .overlay_content_after .overlay_image_txt_wrapper .left_image_wrapper {
  width: 50%;
  position: relative;
  z-index: 99;
  height: 300px;
}
@media (max-width: 768px) {
  .first_content .overlay_content_after .overlay_image_txt_wrapper .left_image_wrapper {
    display: none;
  }
}
.first_content .overlay_content_after .overlay_image_txt_wrapper .left_image_wrapper img {
  filter: grayscale(100%);
}
.first_content .overlay_content_after .overlay_image_txt_wrapper .left_image_wrapper .circle_border_outer {
  height: 210px;
  position: absolute;
  width: 210px;
  border-radius: 50%;
  top: 4px;
  left: -22px;
  border: 3px solid rgb(6, 106, 200);
  z-index: -8;
}
@media (max-width: 768px) {
  .first_content .overlay_content_after .overlay_image_txt_wrapper .left_image_wrapper .circle_border_outer {
    display: none;
  }
}
.first_content .overlay_content_after .overlay_image_txt_wrapper .left_image_wrapper .circle_border_first {
  position: absolute;
  top: 18px;
  left: -4px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(6, 106, 200, 0.7) 0%, rgba(0, 0, 0, 0) 70.29%);
}
@media (max-width: 768px) {
  .first_content .overlay_content_after .overlay_image_txt_wrapper .left_image_wrapper .circle_border_first {
    display: none;
  }
}
.first_content .overlay_content_after .overlay_image_txt_wrapper .overlay_txt {
  width: 50%;
  position: relative;
}
@media (max-width: 768px) {
  .first_content .overlay_content_after .overlay_image_txt_wrapper .overlay_txt {
    width: 100%;
  }
}
.first_content .overlay_content_after .overlay_image_txt_wrapper .overlay_txt .first_txt {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}
.first_content .overlay_content_after .overlay_image_txt_wrapper .overlay_txt .first_txt .bi {
  color: rgb(6, 106, 200);
}
.first_content .overlay_content_after .overlay_image_txt_wrapper .overlay_txt .first_txt .welcome {
  font-size: 16px;
  font-weight: 400;
  color: rgb(6, 106, 200);
  margin: 0;
}
.first_content .overlay_content_after .overlay_image_txt_wrapper .overlay_txt .second_txt {
  margin-bottom: 20px;
}
.first_content .overlay_content_after .overlay_image_txt_wrapper .overlay_txt .second_txt h2 {
  font-size: 48px;
  font-weight: 600;
  color: white;
  margin: 0;
}
@media (max-width: 768px) {
  .first_content .overlay_content_after .overlay_image_txt_wrapper .overlay_txt .second_txt h2 {
    font-size: 22px !important;
  }
}
@media (max-width: 992px) {
  .first_content .overlay_content_after .overlay_image_txt_wrapper .overlay_txt .second_txt h2 {
    font-size: 32px;
  }
}
.first_content .overlay_content_after .overlay_image_txt_wrapper .overlay_txt .button a {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: rgb(6, 106, 200);
  padding: 10px 10px;
}
.first_content .overlay_content_after .overlay_image_txt_wrapper .overlay_txt .button a .bi {
  color: white;
}
.first_content .overlay_content_after .overlay_image_txt_wrapper .overlay_txt .button a .welcome_txt {
  font-size: 12px;
  font-weight: 500;
  color: white;
}
.first_content .circle_border_bottom {
  height: 107px;
  position: absolute;
  width: 214px;
  bottom: 4px;
  right: 41px;
  border: 3px solid rgb(6, 106, 200);
  border-top-left-radius: 106px;
  border-top-right-radius: 106px;
  border-bottom: none;
}
@media (max-width: 768px) {
  .first_content .circle_border_bottom {
    display: none;
  }
}
.first_content .circle_border {
  position: absolute;
  bottom: 5px;
  right: 50px;
  width: 200px;
  height: 100px;
  border-top-left-radius: 100px; /* Round the top left */
  border-top-right-radius: 100px; /* Round the top right */
  overflow: hidden;
  background: linear-gradient(180deg, rgba(6, 106, 200, 0.7) 0%, rgba(0, 0, 0, 0) 100.1%);
}
@media (max-width: 768px) {
  .first_content .circle_border {
    display: none;
  }
}

.rules_rituals {
  padding-block: 50px;
}
.rules_rituals .rules_dream_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .rules_rituals .rules_dream_wrapper {
    flex-direction: column;
    gap: 20px;
  }
}
.rules_rituals .rules_dream_wrapper .rules_wrapper_left {
  width: 49%;
  position: relative;
}
@media (max-width: 768px) {
  .rules_rituals .rules_dream_wrapper .rules_wrapper_left {
    width: 100%;
  }
}
.rules_rituals .rules_dream_wrapper .rules_wrapper_left .bg_image_gradient {
  height: 180px;
}
.rules_rituals .rules_dream_wrapper .rules_wrapper_left .bg_image_gradient::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(270deg, rgba(6, 106, 200, 0) 0%, #066ac8 100%);
  pointer-events: none;
}
.rules_rituals .rules_dream_wrapper .rules_wrapper_left .bg_image_gradient img {
  -o-object-fit: cover;
     object-fit: cover;
}
.rules_rituals .rules_dream_wrapper .rules_wrapper_left .rituals_txt_wrapper {
  position: absolute;
  top: 25px;
  bottom: 0;
  margin-inline: 30px;
}
.rules_rituals .rules_dream_wrapper .rules_wrapper_left .rituals_txt_wrapper .first_ritual_txt p {
  font-size: 24px;
  font-weight: 600;
  color: white;
  margin: 0;
}
@media (max-width: 768px) {
  .rules_rituals .rules_dream_wrapper .rules_wrapper_left .rituals_txt_wrapper .first_ritual_txt p {
    font-size: 18px;
  }
}
.rules_rituals .rules_dream_wrapper .rules_wrapper_left .rituals_txt_wrapper .second_rituals_txt {
  margin-block: 10px;
}
.rules_rituals .rules_dream_wrapper .rules_wrapper_left .rituals_txt_wrapper .second_rituals_txt p {
  font-size: 16px;
  font-weight: 400;
  color: rgb(234, 234, 234);
  margin: 0;
}
@media (max-width: 768px) {
  .rules_rituals .rules_dream_wrapper .rules_wrapper_left .rituals_txt_wrapper .second_rituals_txt p {
    font-size: 12px;
  }
}
.rules_rituals .rules_dream_wrapper .rules_wrapper_left .rituals_txt_wrapper .button a {
  display: flex;
  gap: 8px;
  align-items: center;
}
.rules_rituals .rules_dream_wrapper .rules_wrapper_left .rituals_txt_wrapper .button a p {
  font-size: 14px;
  font-weight: 500;
  color: white;
  font-family: "Rubik", serif;
}
@media (max-width: 768px) {
  .rules_rituals .rules_dream_wrapper .rules_wrapper_left .rituals_txt_wrapper .button a p {
    font-size: 12px;
  }
}
.rules_rituals .rules_dream_wrapper .rules_wrapper_left .rituals_txt_wrapper .button a .bi {
  color: white;
}
.rules_rituals .rules_dream_wrapper .right_container {
  width: 49%;
  position: relative;
}
@media (max-width: 768px) {
  .rules_rituals .rules_dream_wrapper .right_container {
    width: 100%;
  }
}
.rules_rituals .rules_dream_wrapper .right_container .rules_right_wrap {
  background-color: rgb(239, 247, 255);
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 180px;
  z-index: 30;
  position: relative;
  box-shadow: 0 0 16px rgba(202, 233, 237, 0.5);
}
@media (max-width: 768px) {
  .rules_rituals .rules_dream_wrapper .right_container .rules_right_wrap {
    width: 100%;
    gap: 25px;
  }
}
.rules_rituals .rules_dream_wrapper .right_container .rules_right_wrap .first_txt {
  padding-inline: 30px;
  margin-bottom: 10px;
  line-height: 30px;
}
.rules_rituals .rules_dream_wrapper .right_container .rules_right_wrap .first_txt p {
  font-size: 16px;
  font-weight: 400;
  color: rgb(0, 0, 0);
}
@media (max-width: 768px) {
  .rules_rituals .rules_dream_wrapper .right_container .rules_right_wrap .first_txt p {
    font-size: 12px;
  }
}
.rules_rituals .rules_dream_wrapper .right_container .rules_right_wrap .button {
  padding-inline: 30px;
}
.rules_rituals .rules_dream_wrapper .right_container .rules_right_wrap .button a {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: rgb(6, 106, 200);
  padding: 10px 10px;
}
.rules_rituals .rules_dream_wrapper .right_container .rules_right_wrap .button a .bi {
  color: white;
}
.rules_rituals .rules_dream_wrapper .right_container .rules_right_wrap .button a p {
  font-size: 14px;
  font-weight: 500;
  font-family: "Rubik", serif;
  color: white;
}
@media (max-width: 768px) {
  .rules_rituals .rules_dream_wrapper .right_container .rules_right_wrap .button a p {
    font-size: 10px;
  }
}
.rules_rituals .rules_dream_wrapper .right_container:after {
  content: " ";
  position: absolute;
  background: rgba(6, 106, 200, 0.15);
  right: -73px;
  width: 380px;
  height: 160px;
  transform: rotateX(40deg);
  filter: blur(60px);
  bottom: -72px;
  border-radius: 79%;
}
@media (max-width: 768px) {
  .rules_rituals .rules_dream_wrapper .right_container:after {
    display: none;
  }
}

.rituals_dreams_container {
  padding-block: 20px;
}
.rituals_dreams_container .dreams_wrappper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
@media (max-width: 992px) {
  .rituals_dreams_container .dreams_wrappper {
    height: 100%;
  }
}
.rituals_dreams_container .dreams_wrappper .about-lt {
  width: 50%;
  height: 500px;
}
@media (max-width: 992px) {
  .rituals_dreams_container .dreams_wrappper .about-lt {
    display: none;
  }
}
.rituals_dreams_container .dreams_wrappper .about-lt .radius-o {
  position: relative;
  height: 408px;
  width: 475px;
  border-radius: 50%;
  box-shadow: 0px 0px 43.3px 0px rgba(6, 106, 200, 0.56) inset;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.rituals_dreams_container .dreams_wrappper .about-lt .radius-o .inner-o {
  height: 306px;
  width: 333px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0px 0px 43.3px 0px rgba(6, 106, 200, 0.72) inset;
}
.rituals_dreams_container .dreams_wrappper .about-lt .radius-o .dance-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 285px;
}
.rituals_dreams_container .dreams_wrappper .about-lt .radius-o:after {
  content: " ";
  position: absolute;
  background: rgba(6, 106, 200, 0.15);
  right: 133px;
  width: 145px;
  height: 105px;
  transform: rotateX(40deg);
  filter: blur(15px);
  bottom: -63px;
  border-radius: 79%;
}
@media (max-width: 768px) {
  .rituals_dreams_container .dreams_wrappper .about-lt .radius-o:after {
    display: none;
  }
}
.rituals_dreams_container .dreams_wrappper .about-lt .radius-o:before {
  content: " ";
  position: absolute;
  background: rgba(6, 106, 200, 0.15);
  right: 282px;
  width: 70px;
  height: 72px;
  transform: rotateX(40deg);
  filter: blur(15px);
  bottom: -73px;
  border-radius: 79%;
  z-index: -1 !important;
}
@media (max-width: 768px) {
  .rituals_dreams_container .dreams_wrappper .about-lt .radius-o:before {
    display: none;
  }
}
.rituals_dreams_container .dreams_wrappper .right_dreams_txt {
  width: 48%;
  height: 100%;
  padding-top: 50px;
}
@media (max-width: 992px) {
  .rituals_dreams_container .dreams_wrappper .right_dreams_txt {
    width: 100%;
    padding-top: 0;
  }
}
.rituals_dreams_container .dreams_wrappper .right_dreams_txt .first_dreams_txt p {
  font-size: 16px;
  font-weight: 500;
  color: rgb(0, 0, 0);
  position: relative;
}
.rituals_dreams_container .dreams_wrappper .right_dreams_txt .first_dreams_txt p::after {
  content: "";
  position: absolute;
  height: 2px;
  width: 50px;
  border-radius: 4px;
  background-color: rgb(6, 106, 200);
  top: 10px;
  left: 200px;
}
.rituals_dreams_container .dreams_wrappper .right_dreams_txt .second_txt {
  margin-block: 15px !important;
}
.rituals_dreams_container .dreams_wrappper .right_dreams_txt .second_txt p {
  font-size: 36px;
  font-weight: 600;
  margin: 0;
  color: rgb(0, 0, 0);
}
.rituals_dreams_container .dreams_wrappper .right_dreams_txt .second_txt p .blue {
  color: rgb(6, 106, 200);
}
@media (max-width: 768px) {
  .rituals_dreams_container .dreams_wrappper .right_dreams_txt .second_txt p {
    font-size: 22px !important;
  }
}
@media (max-width: 992px) {
  .rituals_dreams_container .dreams_wrappper .right_dreams_txt .second_txt p {
    font-size: 28px;
  }
}
.rituals_dreams_container .dreams_wrappper .right_dreams_txt .third_dream_txt {
  margin-block: 20px;
}
.rituals_dreams_container .dreams_wrappper .right_dreams_txt .third_dream_txt p {
  font-size: 16px;
  font-weight: 400;
  text-align: justify;
  color: rgb(115, 115, 115);
  line-height: 30px;
}
@media (max-width: 768px) {
  .rituals_dreams_container .dreams_wrappper .right_dreams_txt .third_dream_txt p {
    font-size: 14px;
  }
}
.rituals_dreams_container .dreams_wrappper .right_dreams_txt .button a {
  display: flex;
  gap: 8px;
  align-items: center;
}
.rituals_dreams_container .dreams_wrappper .right_dreams_txt .button a p {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
  font-family: monda;
}
.rituals_dreams_container .dreams_wrappper .right_dreams_txt .button a p:hover {
  color: rgb(6, 106, 200);
}
.rituals_dreams_container .dreams_wrappper .right_dreams_txt .button a svg {
  height: 16px;
  width: 16px;
}
.rituals_dreams_container .dreams_wrappper .right_dreams_txt .button a:hover {
  color: rgb(6, 106, 200);
}
.rituals_dreams_container .dreams_wrappper:before {
  content: " ";
  position: absolute;
  background: rgba(6, 106, 200, 0.15);
  right: 250px;
  width: 380px;
  height: 171px;
  transform: rotateX(40deg);
  filter: blur(80px);
  bottom: -100px;
  border-radius: 79%;
  z-index: -1;
}
@media (max-width: 768px) {
  .rituals_dreams_container .dreams_wrappper:before {
    display: none;
  }
}

.rights_for_dreams .rights_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-block: 40px;
}
@media (max-width: 992px) {
  .rights_for_dreams .rights_wrapper {
    flex-direction: column;
    gap: 20px;
    margin: 0;
  }
}
.rights_for_dreams .rights_wrapper .left_rights_txt {
  width: 55%;
}
@media (max-width: 992px) {
  .rights_for_dreams .rights_wrapper .left_rights_txt {
    width: 100%;
  }
}
.rights_for_dreams .rights_wrapper .left_rights_txt .quote_container .bi {
  color: #066ac8;
  transform: rotate(180deg);
  height: 60px;
  width: 60px;
}
.rights_for_dreams .rights_wrapper .left_rights_txt .first_txt {
  margin-block: 15px;
}
.rights_for_dreams .rights_wrapper .left_rights_txt .first_txt p {
  font-size: 36px;
  font-weight: 600;
  margin: 0;
  color: rgb(0, 0, 0);
}
.rights_for_dreams .rights_wrapper .left_rights_txt .first_txt p .blue {
  color: rgb(6, 106, 200);
}
@media (max-width: 768px) {
  .rights_for_dreams .rights_wrapper .left_rights_txt .first_txt p {
    font-size: 22px;
  }
}
.rights_for_dreams .rights_wrapper .left_rights_txt .third_dream_txt {
  margin-block: 20px;
  line-height: 30px;
}
.rights_for_dreams .rights_wrapper .left_rights_txt .third_dream_txt p {
  font-size: 16px;
  font-weight: 400;
  text-align: justify;
  color: rgb(115, 115, 115);
}
@media (max-width: 768px) {
  .rights_for_dreams .rights_wrapper .left_rights_txt .third_dream_txt p {
    font-size: 14px;
  }
}
.rights_for_dreams .rights_wrapper .left_rights_txt .button a {
  display: flex;
  gap: 8px;
  align-items: center;
}
.rights_for_dreams .rights_wrapper .left_rights_txt .button a p {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
  font-family: monda;
}
.rights_for_dreams .rights_wrapper .left_rights_txt .button a p:hover {
  color: rgb(6, 106, 200);
}
.rights_for_dreams .rights_wrapper .left_rights_txt .button a svg {
  height: 16px;
  width: 16px;
}
.rights_for_dreams .rights_wrapper .left_rights_txt .button a:hover {
  color: rgb(6, 106, 200);
}
.rights_for_dreams .rights_wrapper .right_rights_image {
  width: 35%;
  height: 450px;
}
@media (max-width: 992px) {
  .rights_for_dreams .rights_wrapper .right_rights_image {
    display: none;
  }
}
.rights_for_dreams .rights_wrapper .right_rights_image .image_container {
  position: relative;
  width: 370px;
}
.rights_for_dreams .rights_wrapper .right_rights_image .image_container img {
  border-top-left-radius: 300px;
  border-top-right-radius: 270px;
  border-bottom-left-radius: 300px;
  height: 420px;
}
.rights_for_dreams .rights_wrapper .right_rights_image .image_container .image_designation_container {
  position: absolute;
  background-color: #066ac8;
  padding: 8px 30px;
  bottom: -30px;
  right: 0;
}
.rights_for_dreams .rights_wrapper .right_rights_image .image_container .image_designation_container p {
  text-align: end;
}
.rights_for_dreams .rights_wrapper .right_rights_image .image_container .image_designation_container p:nth-child(1) {
  font-size: 24px;
  font-weight: 500;
  color: white;
  margin: 0;
  padding: 5px;
}
.rights_for_dreams .rights_wrapper .right_rights_image .image_container .image_designation_container p:nth-child(2) {
  font-size: 20px;
  font-weight: 400;
  color: white;
  margin: 0;
  padding-block: 5px;
}

.program_swiper {
  background-color: rgb(230, 235, 245);
}
.program_swiper .program_txt_pagination_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .program_swiper .program_txt_pagination_wrap {
    flex-direction: column;
  }
}
.program_swiper .program_txt_pagination_wrap .program_initiative_txt {
  padding-block: 30px;
  width: 90%;
}
@media (max-width: 768px) {
  .program_swiper .program_txt_pagination_wrap .program_initiative_txt {
    width: 100%;
  }
}
.program_swiper .program_txt_pagination_wrap .program_initiative_txt .first_program_txt {
  position: relative;
}
.program_swiper .program_txt_pagination_wrap .program_initiative_txt .first_program_txt::after {
  content: "";
  position: absolute;
  height: 2px;
  width: 50px;
  border-radius: 4px;
  background-color: rgb(6, 106, 200);
  top: 10px;
  left: 90px;
}
.program_swiper .program_txt_pagination_wrap .program_initiative_txt .first_program_txt p {
  font-size: 16px;
  font-weight: 500;
  color: rgb(0, 0, 0);
  margin-block: 8px;
  margin-inline: 0;
}
.program_swiper .program_txt_pagination_wrap .program_initiative_txt .second_program_txt {
  margin-block: 15px;
}
.program_swiper .program_txt_pagination_wrap .program_initiative_txt .second_program_txt p {
  font-size: 36px;
  font-weight: 600;
  margin: 0;
}
.program_swiper .program_txt_pagination_wrap .program_initiative_txt .second_program_txt p .blue {
  color: #066ac8;
}
@media (max-width: 992px) {
  .program_swiper .program_txt_pagination_wrap .program_initiative_txt .second_program_txt p {
    font-size: 30px;
  }
}
@media (max-width: 768px) {
  .program_swiper .program_txt_pagination_wrap .program_initiative_txt .second_program_txt p {
    font-size: 22px;
  }
}
.program_swiper .program_txt_pagination_wrap .program_initiative_txt .third_program_txt {
  margin-block: 15px;
}
.program_swiper .program_txt_pagination_wrap .program_initiative_txt .third_program_txt p {
  font-size: 16px;
  font-weight: 400;
  color: rgb(115, 115, 115);
}
.program_swiper .program_txt_pagination_wrap .arrow_container {
  width: 10%;
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 768px) {
  .program_swiper .program_txt_pagination_wrap .arrow_container {
    margin-bottom: 20px;
    width: 100%;
    justify-content: center;
  }
}
.program_swiper .program_txt_pagination_wrap .arrow_container .swiper-prev {
  background-color: white;
  border-radius: 50%;
  padding: 10px;
  transition: all 0.3s ease-in-out;
  height: 20px;
  width: 20px;
  cursor: pointer;
}
.program_swiper .program_txt_pagination_wrap .arrow_container .swiper-prev .bi {
  color: rgb(6, 106, 200);
  align-self: center;
  height: 20px;
  width: 20px;
}
.program_swiper .program_txt_pagination_wrap .arrow_container .swiper-prev:hover {
  background-color: rgb(6, 106, 200);
}
.program_swiper .program_txt_pagination_wrap .arrow_container .swiper-prev:hover .bi {
  color: white;
}
.program_swiper .program_txt_pagination_wrap .arrow_container .swiper-next {
  background-color: white;
  border-radius: 50%;
  padding: 10px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  height: 20px;
  width: 20px;
}
.program_swiper .program_txt_pagination_wrap .arrow_container .swiper-next .bi {
  color: rgb(6, 106, 200);
  align-self: center;
  height: 20px;
  width: 20px;
}
.program_swiper .program_txt_pagination_wrap .arrow_container .swiper-next:hover {
  background-color: rgb(6, 106, 200);
}
.program_swiper .program_txt_pagination_wrap .arrow_container .swiper-next:hover .bi {
  color: white;
}
.program_swiper .mySwiper .swiper-wrapper .swiper-slide .swiper_content_card_wrapper {
  margin-bottom: 30px;
}
.program_swiper .mySwiper .swiper-wrapper .swiper-slide .swiper_content_card_wrapper .swiper_content_card .card_image {
  height: 300px;
}
@media (max-width: 768px) {
  .program_swiper .mySwiper .swiper-wrapper .swiper-slide .swiper_content_card_wrapper .swiper_content_card .card_image {
    height: 200px;
  }
}
.program_swiper .mySwiper .swiper-wrapper .swiper-slide .swiper_content_card_wrapper .swiper_content_card .first_txt {
  margin-block: 10px;
}
.program_swiper .mySwiper .swiper-wrapper .swiper-slide .swiper_content_card_wrapper .swiper_content_card .first_txt p {
  font-size: 20px;
  font-weight: 500;
  color: rgb(0, 0, 0);
  margin: 0;
}
@media (max-width: 768px) {
  .program_swiper .mySwiper .swiper-wrapper .swiper-slide .swiper_content_card_wrapper .swiper_content_card .first_txt p {
    font-size: 18px;
  }
}
.program_swiper .mySwiper .swiper-wrapper .swiper-slide .swiper_content_card_wrapper .swiper_content_card .second_txt {
  margin-bottom: 20px;
}
.program_swiper .mySwiper .swiper-wrapper .swiper-slide .swiper_content_card_wrapper .swiper_content_card .second_txt p {
  font-size: 14px;
  font-weight: 400;
  color: rgb(115, 115, 115);
  margin: 0;
  text-align: justify;
}
.program_swiper .mySwiper .swiper-wrapper .swiper-slide .swiper_content_card_wrapper .swiper_content_card .button {
  padding: 0;
}
.program_swiper .mySwiper .swiper-wrapper .swiper-slide .swiper_content_card_wrapper .swiper_content_card .button a {
  display: flex;
  align-items: center;
  gap: 8px;
}
.program_swiper .mySwiper .swiper-wrapper .swiper-slide .swiper_content_card_wrapper .swiper_content_card .button a p {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
  font-family: "Rubik", serif !important;
}
.program_swiper .mySwiper .swiper-wrapper .swiper-slide .swiper_content_card_wrapper .swiper_content_card .button a p:hover {
  color: rgb(6, 106, 200);
}
.program_swiper .mySwiper .swiper-wrapper .swiper-slide .swiper_content_card_wrapper .swiper_content_card .button a .bi:hover {
  color: rgb(6, 106, 200);
}
.program_swiper .mySwiper .swiper-wrapper .swiper-slide .swiper_content_card_wrapper .swiper_content_card .button a:hover {
  color: rgb(6, 106, 200) !important;
}

.Event_page {
  margin-block: 40px;
}
@media (max-width: 768px) {
  .Event_page {
    margin-block: 30px;
  }
}
.Event_page .container {
  position: relative;
}
.Event_page .container .lf-image {
  position: absolute;
  left: -107px;
  height: 110px;
  width: 110px;
  top: 50px;
}
@media (max-width: 992px) {
  .Event_page .container .lf-image {
    display: none;
  }
}
.Event_page .container .event_wrapper {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}
@media (max-width: 992px) {
  .Event_page .container .event_wrapper {
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .Event_page .container .event_wrapper {
    flex-direction: column;
    gap: 30px;
  }
}
.Event_page .container .event_wrapper .left_event_text .first_blue_text {
  position: relative;
  left: 10px;
  margin-block: 15px;
}
.Event_page .container .event_wrapper .left_event_text .first_blue_text::after {
  position: absolute;
  content: " ";
  background-color: rgb(6, 106, 200);
  height: 2px !important;
  width: 6% !important;
  border-radius: 4px;
  top: 10px;
  left: 120px;
}
.Event_page .container .event_wrapper .left_event_text .first_blue_text p {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}
.Event_page .container .event_wrapper .left_event_text .second_event_text {
  margin-block: 15px;
}
.Event_page .container .event_wrapper .left_event_text .second_event_text p {
  font-size: 34px;
  font-weight: 600;
  margin: 0;
}
@media (max-width: 992px) {
  .Event_page .container .event_wrapper .left_event_text .second_event_text p {
    font-size: 30px;
  }
}
@media (max-width: 768px) {
  .Event_page .container .event_wrapper .left_event_text .second_event_text p {
    font-size: 22px;
  }
}
.Event_page .container .event_wrapper .left_event_text .second_event_text p .blue_text {
  color: rgb(6, 106, 200);
}
.Event_page .container .event_wrapper .left_event_text .third_event_text {
  margin-block: 15px 30px;
}
.Event_page .container .event_wrapper .left_event_text .third_event_text p {
  font-size: 16px;
  font-weight: 400;
  color: #737373;
  margin: 0;
}
@media (max-width: 768px) {
  .Event_page .container .event_wrapper .left_event_text .third_event_text p {
    font-size: 14px;
  }
}
.Event_page .container .event_wrapper .left_event_text .event_notice_container {
  background-color: #eff7ff;
  margin-block: 20px;
  border-radius: 4px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.Event_page .container .event_wrapper .left_event_text .event_notice_container .event_notice_info_cards {
  display: flex;
  justify-content: space-around;
  align-items: center;
  box-sizing: border-box;
  padding: 10px 25px;
  gap: 20px;
  background-color: rgb(239, 247, 255);
  transition: all 0.3s ease-in-out;
}
@media (max-width: 768px) {
  .Event_page .container .event_wrapper .left_event_text .event_notice_container .event_notice_info_cards {
    display: grid;
    justify-items: center;
    gap: 0;
    padding: 10px;
  }
}
.Event_page .container .event_wrapper .left_event_text .event_notice_container .event_notice_info_cards .date_info {
  width: 15%;
}
@media (max-width: 768px) {
  .Event_page .container .event_wrapper .left_event_text .event_notice_container .event_notice_info_cards .date_info {
    width: 100%;
  }
}
.Event_page .container .event_wrapper .left_event_text .event_notice_container .event_notice_info_cards .date_info .date1 p {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
  color: rgb(34, 47, 72);
}
@media (max-width: 768px) {
  .Event_page .container .event_wrapper .left_event_text .event_notice_container .event_notice_info_cards .date_info .date1 p {
    font-size: 16px;
    text-align: center;
  }
}
.Event_page .container .event_wrapper .left_event_text .event_notice_container .event_notice_info_cards .date_info .date2 {
  margin-block: 15px;
}
.Event_page .container .event_wrapper .left_event_text .event_notice_container .event_notice_info_cards .date_info .date2 p {
  font-size: 14px;
  font-weight: 400;
  margin: 0;
  color: rgb(34, 47, 72);
}
@media (max-width: 768px) {
  .Event_page .container .event_wrapper .left_event_text .event_notice_container .event_notice_info_cards .date_info .date2 p {
    font-size: 10px;
    text-align: center;
  }
}
.Event_page .container .event_wrapper .left_event_text .event_notice_container .event_notice_info_cards .event_info {
  border-left: 2px dashed rgb(180, 218, 254);
  border-right: 2px dashed rgb(180, 218, 254);
  padding-inline: 30px;
  width: 60%;
}
@media (max-width: 768px) {
  .Event_page .container .event_wrapper .left_event_text .event_notice_container .event_notice_info_cards .event_info {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .Event_page .container .event_wrapper .left_event_text .event_notice_container .event_notice_info_cards .event_info {
    border: none;
  }
}
.Event_page .container .event_wrapper .left_event_text .event_notice_container .event_notice_info_cards .event_info p {
  font-size: 24px;
  font-weight: 500;
  margin: 0;
}
.Event_page .container .event_wrapper .left_event_text .event_notice_container .event_notice_info_cards .event_info .time_date_container {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-block: 20px;
}
@media (max-width: 768px) {
  .Event_page .container .event_wrapper .left_event_text .event_notice_container .event_notice_info_cards .event_info .time_date_container {
    flex-direction: column;
    align-items: center;
  }
}
.Event_page .container .event_wrapper .left_event_text .event_notice_container .event_notice_info_cards .event_info .time_date_container .event_time {
  display: flex;
  gap: 5px;
}
.Event_page .container .event_wrapper .left_event_text .event_notice_container .event_notice_info_cards .event_info .time_date_container .event_time .event_img {
  height: 14px;
  width: 14px;
}
@media (max-width: 768px) {
  .Event_page .container .event_wrapper .left_event_text .event_notice_container .event_notice_info_cards .event_info .time_date_container .event_time .event_img {
    height: 19px;
    width: 18px;
  }
}
.Event_page .container .event_wrapper .left_event_text .event_notice_container .event_notice_info_cards .event_info .time_date_container .event_time {
  display: flex;
  gap: 10px;
}
.Event_page .container .event_wrapper .left_event_text .event_notice_container .event_notice_info_cards .event_info .time_date_container .event_time p {
  font-size: 14px;
  font-weight: 400;
  margin: 0;
  color: #737373;
}
.Event_page .container .event_wrapper .left_event_text .event_notice_container .event_notice_info_cards .event_info .time_date_container .event_time .event_img .bi {
  color: #066ac8;
}
.Event_page .container .event_wrapper .left_event_text .event_notice_container .event_notice_info_cards .event_info .event_location {
  display: flex;
  gap: 5px;
}
.Event_page .container .event_wrapper .left_event_text .event_notice_container .event_notice_info_cards .event_info .event_location .event_img .bi {
  color: #066ac8;
}
.Event_page .container .event_wrapper .left_event_text .event_notice_container .event_notice_info_cards .event_info .event_location p {
  font-size: 14px;
  font-weight: 400;
  margin: 0;
  color: #737373;
}
.Event_page .container .event_wrapper .left_event_text .event_notice_container .event_notice_info_cards .main_text {
  margin-block: 10px;
}
@media (max-width: 768px) {
  .Event_page .container .event_wrapper .left_event_text .event_notice_container .event_notice_info_cards .main_text {
    margin-top: 10px !important;
  }
}
.Event_page .container .event_wrapper .left_event_text .event_notice_container .event_notice_info_cards .main_text p {
  font-size: 22px;
  font-weight: 500;
  margin: 0;
  color: rgb(34, 47, 72);
}
@media (max-width: 992px) {
  .Event_page .container .event_wrapper .left_event_text .event_notice_container .event_notice_info_cards .main_text p {
    font-size: 20px !important;
  }
}
@media (max-width: 768px) {
  .Event_page .container .event_wrapper .left_event_text .event_notice_container .event_notice_info_cards .main_text p {
    font-size: 16px !important;
    text-align: center;
  }
}
.Event_page .container .event_wrapper .left_event_text .event_notice_container .event_notice_info_cards .button {
  display: inline-block;
  border: 1px solid rgb(6, 106, 200);
  padding: 8px 12px;
}
.Event_page .container .event_wrapper .left_event_text .event_notice_container .event_notice_info_cards .button p {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
  color: rgb(6, 106, 200);
  display: flex;
  gap: 8px;
  white-space: nowrap;
  align-items: center;
}
@media (max-width: 768px) {
  .Event_page .container .event_wrapper .left_event_text .event_notice_container .event_notice_info_cards .button p {
    font-size: 12px;
    white-space: nowrap;
  }
}
.Event_page .container .event_wrapper .left_event_text .event_notice_container .event_notice_info_cards .button p .bi {
  height: 16px;
  width: 16px;
}
.Event_page .container .event_wrapper .left_event_text .event_notice_container .event_notice_info_cards:hover {
  background-color: rgb(6, 106, 200);
  color: white;
}
.Event_page .container .event_wrapper .left_event_text .event_notice_container .event_notice_info_cards:hover .event_time P {
  color: white !important;
}
.Event_page .container .event_wrapper .left_event_text .event_notice_container .event_notice_info_cards:hover .event_time .bi {
  color: white !important;
}
.Event_page .container .event_wrapper .left_event_text .event_notice_container .event_notice_info_cards:hover .event_location P {
  color: white !important;
}
.Event_page .container .event_wrapper .left_event_text .event_notice_container .event_notice_info_cards:hover .event_location .bi {
  color: white !important;
}
.Event_page .container .event_wrapper .left_event_text .event_notice_container .event_notice_info_cards:hover .date_info .date1 p {
  color: white;
}
.Event_page .container .event_wrapper .left_event_text .event_notice_container .event_notice_info_cards:hover .date_info .date2 p {
  color: white;
}
.Event_page .container .event_wrapper .left_event_text .event_notice_container .event_notice_info_cards:hover .main_text p {
  color: white;
}
.Event_page .container .event_wrapper .left_event_text .event_notice_container .event_notice_info_cards:hover .button {
  border: 1px solid white;
}
.Event_page .container .event_wrapper .left_event_text .event_notice_container .event_notice_info_cards:hover .button p {
  color: white;
}
.Event_page .container .event_wrapper .left_event_text .event_notice_container .event_notice_info_cards:hover .button .bi {
  color: white;
}
.Event_page .container .event_wrapper .left_event_text .button a {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-block: 10px;
}
.Event_page .container .event_wrapper .left_event_text .button a p {
  font-size: 18px;
  font-weight: 500;
  margin: 0;
}
@media (max-width: 768px) {
  .Event_page .container .event_wrapper .left_event_text .button a p {
    font-size: 12px;
    white-space: nowrap;
  }
}
.Event_page .container .event_wrapper .left_event_text .button a p:hover {
  color: rgb(6, 106, 200);
}
.Event_page .container .event_wrapper .left_event_text .button a .bi {
  height: 18px;
  width: 18px;
}
.Event_page .container .event_wrapper .left_event_text .button a .bi:hover {
  color: rgb(6, 106, 200);
}
.Event_page .container .event_wrapper .left_event_text .button a:hover {
  color: rgb(6, 106, 200);
}
.Event_page .container .event_wrapper .right_event_img {
  width: 366px;
  margin-top: 15px;
  position: relative;
}
.Event_page .container .event_wrapper .right_event_img::after {
  content: " ";
  height: 50px;
  width: 50px;
  border-radius: 50%;
  border: 2px solid rgb(6, 106, 200);
  position: absolute;
  top: 50px;
  right: -25px;
}
@media (max-width: 992px) {
  .Event_page .container .event_wrapper .right_event_img {
    width: 100%;
    height: 330px;
  }
}
@media (max-width: 768px) {
  .Event_page .container .event_wrapper .right_event_img {
    width: 100%;
    height: 200px !important;
  }
}
.Event_page .container .event_wrapper .right_event_img img {
  border-radius: 5px;
}

.historical_places_container {
  margin-bottom: 90px;
}
@media (max-width: 768px) {
  .historical_places_container {
    margin-bottom: 20px;
  }
}
.historical_places_container .first_historical_txt {
  padding-block: 30px;
}
.historical_places_container .first_historical_txt .first_program_txt {
  position: relative;
}
.historical_places_container .first_historical_txt .first_program_txt::after {
  content: "";
  position: absolute;
  height: 2px;
  width: 50px;
  border-radius: 4px;
  background-color: rgb(6, 106, 200);
  top: 8px;
  left: 155px;
}
.historical_places_container .first_historical_txt .first_program_txt p {
  font-size: 16px;
  font-weight: 600;
  color: rgb(0, 0, 0);
  margin-block: 8px;
  margin-inline: 0;
  font-family: rubik;
}
.historical_places_container .first_historical_txt .main_txt_wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.historical_places_container .first_historical_txt .main_txt_wrap .second_program_txt {
  width: 75%;
  margin-block: 15px;
}
@media (max-width: 768px) {
  .historical_places_container .first_historical_txt .main_txt_wrap .second_program_txt {
    width: 70%;
  }
}
.historical_places_container .first_historical_txt .main_txt_wrap .second_program_txt p {
  font-size: 36px;
  font-weight: 600;
  margin: 0;
  font-family: rubik;
}
.historical_places_container .first_historical_txt .main_txt_wrap .second_program_txt p .blue {
  color: #066ac8;
}
@media (max-width: 992px) {
  .historical_places_container .first_historical_txt .main_txt_wrap .second_program_txt p {
    font-size: 30px;
  }
}
@media (max-width: 768px) {
  .historical_places_container .first_historical_txt .main_txt_wrap .second_program_txt p {
    font-size: 22px;
  }
}
.historical_places_container .first_historical_txt .main_txt_wrap .view_all_txt {
  width: 20%;
}
@media (max-width: 768px) {
  .historical_places_container .first_historical_txt .main_txt_wrap .view_all_txt {
    width: 25%;
  }
}
.historical_places_container .first_historical_txt .main_txt_wrap .view_all_txt a {
  display: flex;
  align-items: center;
  gap: 5px;
}
.historical_places_container .first_historical_txt .main_txt_wrap .view_all_txt a p {
  font-size: 16px;
  font-weight: 500;
  margin: 0;
}
@media (max-width: 992px) {
  .historical_places_container .first_historical_txt .main_txt_wrap .view_all_txt a p {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .historical_places_container .first_historical_txt .main_txt_wrap .view_all_txt a p {
    font-size: 12px;
  }
}
.historical_places_container .first_historical_txt .main_txt_wrap .view_all_txt a p:hover {
  color: rgb(6, 106, 200);
}
.historical_places_container .first_historical_txt .main_txt_wrap .view_all_txt a svg:hover {
  color: rgb(6, 106, 200);
}
.historical_places_container .first_historical_txt .main_txt_wrap .view_all_txt a:hover {
  color: rgb(6, 106, 200);
}
.historical_places_container .first_historical_txt .third_program_txt p {
  font-size: 16px;
  font-weight: 400;
  color: rgb(115, 115, 115);
}
@media (max-width: 768px) {
  .historical_places_container .first_historical_txt .third_program_txt p {
    font-size: 12px;
  }
}
.historical_places_container .historical_places_wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .historical_places_container .historical_places_wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .historical_places_container .historical_places_wrapper {
    grid-template-columns: 1fr;
  }
}
.historical_places_container .historical_places_wrapper .historical_content_card {
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.2);
  background-color: white;
  padding: 12px;
}
.historical_places_container .historical_places_wrapper .historical_content_card .card_image {
  height: 300px;
}
@media (max-width: 768px) {
  .historical_places_container .historical_places_wrapper .historical_content_card .card_image {
    height: 200px !important;
  }
}
@media (max-width: 992px) {
  .historical_places_container .historical_places_wrapper .historical_content_card .card_image {
    height: 250px;
  }
}
.historical_places_container .historical_places_wrapper .historical_content_card .first_txt {
  margin-block: 10px;
  padding-inline: 5px;
}
.historical_places_container .historical_places_wrapper .historical_content_card .first_txt p {
  font-size: 20px;
  font-weight: 500;
  color: rgb(0, 0, 0);
  margin: 0;
}
@media (max-width: 768px) {
  .historical_places_container .historical_places_wrapper .historical_content_card .first_txt p {
    font-size: 18px;
  }
}
.historical_places_container .historical_places_wrapper .historical_content_card .second_txt {
  margin-block: 15px 20px;
  padding-inline: 5px;
  line-height: 30px;
}
.historical_places_container .historical_places_wrapper .historical_content_card .second_txt p {
  font-size: 14px;
  font-weight: 400;
  color: rgb(115, 115, 115);
  margin: 0;
  text-align: justify;
  font-family: "Rubik", serif !important;
}
.historical_places_container .historical_places_wrapper .historical_content_card .button {
  padding-top: 0;
  padding-inline: 5px;
}
.historical_places_container .historical_places_wrapper .historical_content_card .button a {
  display: flex;
  align-items: center;
  gap: 8px;
}
.historical_places_container .historical_places_wrapper .historical_content_card .button a p {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
  font-family: "Rubik", serif !important;
}
.historical_places_container .historical_places_wrapper .historical_content_card .button a p:hover {
  color: rgb(6, 106, 200);
}
.historical_places_container .historical_places_wrapper .historical_content_card .button a .bi:hover {
  color: rgb(6, 106, 200);
}
.historical_places_container .historical_places_wrapper .historical_content_card .button a:hover {
  color: rgb(6, 106, 200);
}

.footer-container {
  background-color: rgb(6, 106, 200);
  position: relative;
}
.footer-container .footer-content {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: start;
}
@media (max-width: 992px) {
  .footer-container .footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .footer-container .footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px !important;
  }
}
.footer-container .footer-content .fcol1 {
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 35%;
}
@media (max-width: 992px) {
  .footer-container .footer-content .fcol1 {
    width: 100%;
  }
}
.footer-container .footer-content .fcol1 .logo_wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-container .footer-content .fcol1 .logo_wrapper .nav_logo img {
  height: 60px;
  width: 63px;
}
@media (max-width: 768px) {
  .footer-container .footer-content .fcol1 .logo_wrapper .nav_logo img {
    height: 45px;
    width: 45px;
    border-radius: 50%;
  }
}
.footer-container .footer-content .fcol1 .logo_wrapper .logo_txt .logo_title {
  font-size: 20px;
  font-weight: 600;
  color: rgb(252, 252, 252);
}
@media (max-width: 768px) {
  .footer-container .footer-content .fcol1 .logo_wrapper .logo_txt .logo_title {
    font-size: 16px !important;
  }
}
@media (max-width: 992px) {
  .footer-container .footer-content .fcol1 .logo_wrapper .logo_txt .logo_title {
    font-size: 18px;
  }
}
.footer-container .footer-content .fcol1 .fcol1_txt p {
  font-size: 14px;
  font-weight: 500;
  color: rgb(252, 252, 252);
  margin: 0;
  text-align: justify;
}
.footer-container .footer-content .fcol2 {
  width: 20%;
}
@media (max-width: 992px) {
  .footer-container .footer-content .fcol2 {
    width: 100%;
  }
}
.footer-container .footer-content .fcol2 .link .link-title p {
  font-size: 20px;
  font-weight: 600;
  color: rgb(252, 252, 252);
}
.footer-container .footer-content .fcol2 .link ul {
  padding: 0px;
  margin-top: 23px;
}
.footer-container .footer-content .fcol2 .link ul li {
  margin-block: 18px;
}
.footer-container .footer-content .fcol2 .link ul li a {
  color: rgb(252, 252, 252);
  font-weight: 500;
  text-decoration: none;
}
.footer-container .footer-content .fcol2 .link ul li a .greater {
  color: rgb(169, 2, 98);
}
.footer-container .footer-content .fcol3 {
  width: 25%;
}
@media (max-width: 992px) {
  .footer-container .footer-content .fcol3 {
    width: 100%;
  }
}
.footer-container .footer-content .fcol3 .touch-link .touch-title p {
  font-size: 20px;
  font-weight: 600;
  color: rgb(252, 252, 252);
}
.footer-container .footer-content .fcol3 .touch-link ul {
  display: flex;
  flex-direction: column;
  padding: 0px;
}
.footer-container .footer-content .fcol3 .touch-link ul .all-icon-box {
  display: flex;
  gap: 5px;
  align-items: center;
  margin-bottom: 15px;
}
.footer-container .footer-content .fcol3 .touch-link ul .all-icon-box .ficon-border {
  background-color: rgb(169, 2, 98);
  padding: 8px;
  border-radius: 4px;
}
.footer-container .footer-content .fcol3 .touch-link ul .all-icon-box .ficon-border .bi {
  color: rgb(252, 252, 252);
  height: 17px;
  width: 20px;
}
.footer-container .footer-content .fcol3 .touch-link ul .all-icon-box .icon-txt p a {
  color: rgb(252, 252, 252) !important;
  font-weight: 500;
  font-size: 16px;
}
.footer-container .footer-content .fcol4 .letter-link {
  display: flex;
  flex-direction: column;
}
.footer-container .footer-content .fcol4 .letter-link .letter-title p {
  font-size: 20px;
  font-weight: 600;
  color: rgb(252, 252, 252);
}
.footer-container .footer-content .fcol4 .letter-link .letter-txt {
  margin-block: 10px 30px;
}
.footer-container .footer-content .fcol4 .letter-link .letter-txt p {
  font-size: 14px;
  color: rgb(252, 252, 252);
  font-weight: 500;
}
.footer-container .footer-content .fcol4 .letter-link .flogo-icon {
  display: flex;
  gap: 25px;
}
.footer-container .footer-content .fcol4 .letter-link .flogo-icon a .bi {
  color: rgb(252, 252, 252);
}
.footer-container .ficon-border {
  background-color: rgb(169, 2, 98);
  padding: 8px;
  border-radius: 4px;
}
.footer-container .ficon-border a .bi {
  color: rgb(252, 252, 252);
  height: 17px;
  width: 20px;
}
.footer-container .bottom-fl {
  border-bottom: 2px solid rgb(169, 2, 98);
  width: 42px;
}
.footer-container .last_footer_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 50px;
  padding-inline: 80px;
}
@media (max-width: 768px) {
  .footer-container .last_footer_wrapper {
    flex-direction: column;
    gap: 15px;
  }
}
.footer-container .last_footer_wrapper .ltf_frow p {
  font-size: 14px;
  font-weight: 400;
  color: rgb(252, 252, 252);
  margin: 0;
}
.footer-container .last_footer_wrapper .right_frow p {
  font-size: 14px;
  font-weight: 400;
  color: rgb(252, 252, 252);
  margin: 0;
}
.footer-container .last_footer_wrapper .right_frow p .blue {
  color: blue;
}
.footer-container .last_footer_wrapper .right_frow p .red {
  color: red !important;
}
.footer-container::before {
  content: " ";
  height: 150px;
  width: 50px;
  position: absolute;
  bottom: 0;
  background-color: rgb(169, 2, 98);
  left: 0;
  border-top-right-radius: 15px;
}
@media (max-width: 768px) {
  .footer-container::before {
    display: none;
  }
}
.footer-container::after {
  content: " ";
  height: 150px;
  width: 50px;
  position: absolute;
  background-color: rgb(169, 2, 98);
  right: 0;
  bottom: 170px;
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
}
@media (max-width: 768px) {
  .footer-container::after {
    display: none;
  }
}/*# sourceMappingURL=main.css.map */