header {
  width: 100%;
  border-bottom: 0.1rem solid #00000061;
  box-shadow: 0 0 2rem #f3f3f3;
}

.navbar {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* padding-right: 12rem; */
}

.navbar .navigations {
  /* display: flex;
  align-items: center;
  gap: 64px; */

  display: flex;
  align-items: center;
  gap: 50px;
  white-space: nowrap;
  width: 100%;
  justify-content: end;

}

.navbar .navigations li {
  /* margin-right: 5.2rem; */
}

.navbar .navigations li a {
  transition: 300ms all ease-in-out;
}

.navbar .navigations li a.active,
.navbar .navigations li a:hover {
  color: var(--blue);
}

.navbar .navigations li a.active {
  font-weight: 700;
}

.navbar .navigations li a.button {
  display: inline-block;
  min-width: 10rem;
  padding: 1rem;
  text-align: center;
  background: var(--light-blue);
  color: var(--white);
  border-radius: 0.6rem;
  border: 0.2rem solid var(--light-blue);
  transition: 300ms all ease-in-out;
}

.navbar .navigations li a.button:hover {
  background: var(--white);
  color: var(--light-blue);
}

.navbar-toggler {
  position: absolute;
  height: 2.5rem;
  width: 2.5rem;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: transparent;
  border: 0;
  outline: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 0.7rem;
  cursor: pointer;
  z-index: 999;
  display: none;
}

.navbar-toggler .bar {
  display: inline-block;
  height: 0.2rem;
  width: 100%;
  background: var(--blue);
  transition: 300ms all ease-in-out;
}

.navbar-toggler.active .bar:nth-child(2) {
  opacity: 0;
}

.navbar-toggler.active .bar:nth-child(1) {
  transform: rotate(45deg) translate(0.6rem, 0.6rem);
}

.navbar-toggler.active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(0.6rem, -0.7rem);
}

.navbar .actions {
  /* position: absolute;
  right: 0; */
}

.navbar .actions>ul {
  display: flex;
  align-items: center;
  gap: 50px;
  /* gap: 0.45rem; */
}

.search-container {
  position: relative;
}

#searching {
  display: none;
}

.search-container .search {
  outline: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.search-modal {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  background: #00000095;
  backdrop-filter: blur(0.5rem);
  z-index: 999;
  display: none;
}

.search-modal .form {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.search-modal .close-modal {
  position: absolute;
  top: 0;
  right: 0;
  background: transparent;
  border: 0;
  outline: 0;
  color: var(--white);
  transform: rotate(45deg);
  font-size: 4rem;
  cursor: pointer;
}

.search-modal .form form {
  display: flex;
}

.search-modal .form input {
  border: 0;
  outline: 0;
  font-size: 1.6rem;
  width: 65%;
  padding: 1rem;
  border-radius: 0.4rem 0 0 0.4rem;
}

.search-modal .form button {
  width: 35%;
  background: var(--blue);
  color: var(--white);
  border: 0.2rem solid var(--blue);
  outline: 0;
  font-size: 1.6rem;
  padding: 1rem 2rem;
  border-radius: 0 0.4rem 0.4rem 0;
  cursor: pointer;
  transition: 300ms all ease-in-out;
}

.search-modal .form button:hover {
  background: transparent;
  color: var(--white);
}

.profile,
.notification {
  cursor: pointer;
}

.menu-options {
  position: absolute;
  left: auto;
  right: 0;
  top: 8.7rem;
  background: var(--white);
  box-shadow: 0 0 4rem 0 #0000001a;
  z-index: 2;
  max-width: 320px;
  width: 100%;
  display: none;
}

.options .option .header img {
  height: unset;
  width: unset;
}

.options a img {

  height: unset;
  width: unset;
}

.menu-options .top img {
  max-width: 100%;
}

.profile-options .top {
  padding-top: 4rem;
  text-align: center;
}

.profile-options .top img {
  height: 11rem;
  width: 11rem;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.profile-options .options {
  font-size: 1.5rem;
  padding: 2rem 2.8rem;
}

.profile-options .options h4.name {
  font-family: "Helvetica Now Display", sans-serif;
}

.profile-options .options .header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  margin-bottom: 1.5rem;
}

.profile-options .options .header img {
  pointer-events: none;
}

.profile-options .options .header p {
  margin-bottom: 0;
}

.profile-options .options ul li:not(:last-child) {
  margin-bottom: 1.25rem;
}

.profile-options .options ul li span {
  color: var(--blue);
  font-weight: 500;
}

.navbar .navigations .contents {
  margin-top: 1rem;
}

.navbar .navigations .contents li:not(:last-child) {
  margin-right: 0;
}

.navbar .navigations .contents li span {
  color: #10589b;
}

.log-out {
  font-weight: 800;
  font-size: 1.7rem;
}

.log-out>img {
  margin-right: 1rem;
}

/* Hero Section Start */
.slide {
  position: relative;
}

.slide::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 70%;
  background: linear-gradient(to right, #000000b2, #1f223000);
}

.slide .slide-details {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.slide .slide-details .wrapper {
  max-width: 53rem;
}

.slide img {
  width: 100%;
}

.slide .slide-details h1 {
  font-size: 5rem;
  color: var(--white);
}

.slide-details a {
  display: inline-block;
  border-radius: 0.6rem;
  color: var(--white);
  padding: 2.5rem 3.5rem;
  background: var(--light-blue);
}

.pagination .swiper-pagination-bullet {
  background: #ffffff;
  height: 1rem;
  width: 1rem;
  opacity: 25%;
}

.pagination .swiper-pagination-bullet-active {
  opacity: 1;
  transform: scale(1.6);
}

/* Hero Section End */

/* Specs Section Start */
/* .cards-wrapper {
  max-width: 144.4rem;
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
}

 .cards-wrapper .card {
  width: 33.33%;
  padding: 5.5rem;
  background-color: var(--blue);
  color: var(--white);
}

.cards-wrapper .card:nth-child(2) {
  background-color: var(--light-blue);
}

.cards-wrapper .card.middle {
  background-color: var(--light-blue);
}

.cards-wrapper .card h3 {
  font-size: 2.8rem;
  font-weight: 800;
}

.icon-box {
  display: flex;
  gap: 3rem;
}

.icon-box p {
  font-weight: 400;
  line-height: 1.7;
}   */

.cards-wrapper {
  max-width: 144.4rem;
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
}

 .cards-wrapper .card {
  width: 25%;
  padding: 5.5rem;
  background-color: var(--blue);
  color: var(--white);
}

.cards-wrapper .card:nth-child(2),.cards-wrapper .card:nth-child(4) {
  background-color: var(--light-blue);
}

.cards-wrapper .card.middle {
  background-color: var(--light-blue);
}

.cards-wrapper .card h3 {
  font-size: 2.8rem;
  font-weight: 800;
}

.icon-box {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.swiper-pagination{
  bottom: 11px !important;
}
.hero-carousel{
  max-height: 550px !important;
}
.icon-box h3{
  margin: 0 !important;

}
.details {
  margin-top: 20px;
}
.icon-box p {
  font-weight: 400;
  line-height: 1.7;
}  

/* .cards-wrapper {
  display: flex;
  flex-wrap: wrap;
  max-width: 144.4rem;
  margin-inline: auto;
  
} */

/* .cards-wrapper .card {
  flex: 1 1 25%;
  min-width: 0;
  padding: 5.5rem;
  background-color: var(--blue);
  color: var(--white);
  box-sizing: border-box;
} */

/* Alternate background colors */
/* .cards-wrapper .card:nth-child(odd) {
  background-color: var(--blue);
}

.cards-wrapper .card:nth-child(even) {
  background-color: var(--light-blue);
} */

/* Responsive grid */
/* @media screen and (max-width: 1024px) {
  .cards-wrapper .card {
    flex: 1 1 calc(33.333% - 2rem);
  }
}

@media screen and (max-width: 768px) {
  .cards-wrapper .card {
    flex: 1 1 calc(50% - 2rem);
  }
}

@media screen and (max-width: 480px) {
  .cards-wrapper .card {
    flex: 1 1 100%;
  }
} */

/* Typography & styles preserved from original */
/* .cards-wrapper .card h3 {
  font-size: 2.8rem;
  font-weight: 800;
}

.cards-wrapper .card span {
  font-size: 2.8rem;
  font-weight: 800;
  font-family: "Abhaya Libre", serif;
  line-height: 1.2;
  vertical-align: sub;
}

.icon-box {
  display: flex;
  gap: 3rem;
  flex-direction: column;
  align-items: flex-start;
}

.icon-box img.icon-resize {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.icon-box p {
  font-weight: 400;
  line-height: 1.7;
}

.button.white {
  background: #fff;
  color: var(--blue);
  padding: 0.8rem 2rem;
  text-decoration: none;
  margin-top: 2rem;
  display: inline-block;
  font-weight: bold;
} */




/* Specs Section End */

/* Our Mission and Goals Section Start */
.mission-and-goals .overflow-y {
  max-height: 81.5rem;
  overflow-y: auto;
}

.mission-and-goals .overflow-y::-webkit-scrollbar {
  width: 3rem;
}

.mission-and-goals .overflow-y::-webkit-scrollbar-thumb {
  background: var(--light-blue);
  cursor: pointer;
}

.mission-and-goals .contents .wrapper {
  padding-right: 5rem;
  padding-block: 4rem;
  max-width: 58rem;
  width: 100%;
}

.two-column-layout .column {
  width: 50%;
}

.mission-and-goals h2 {
  /* color: var(--purple); */
  margin-bottom: 3rem;
}

.mission-and-goals .wrapper>div {
  margin-bottom: 2rem;
}

.mission-and-goals p {
  color: #00000099;
  font-size: 1.8rem;
  font-weight: 400;
}

.mission-and-goals h5 {
  font-size: 2rem;
  font-family: "Helvetica Now Display", sans-serif;
  font-weight: 500;
  color: var(--purple);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mission-and-goals .image {
  padding-left: 3rem;
}

.mission-and-goals .image img {
  width: 100%;
  max-height: 81.5rem;
  overflow: auto;
}

/* Our Mission and Goals Section End */

/* Our Clients Section Start */
.clients {
  background: var(--blue);
  padding-block: 4rem;
}

.clients h2 {
  color: var(--white);
}

.clients-wrapper {
  max-width: 107rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-inline: auto;
}

.clients-wrapper .client {
  width: calc(25% - 2rem);
}

.clients-wrapper .client img {
  aspect-ratio: 16/9;
  width: 100%;
  object-fit: contain;
}

/* Our Clients Section End */

/* Testimonials Section Start */
.testimonials h2 {
  margin-bottom: 5.6rem;
}

.testimonials-container {
  max-width: 144.4rem;
  margin-inline: auto;
  background: url("../images/medical-aspirants.png") no-repeat;
  background-position: center left;
}

.testimonials-wrapper {
  display: flex;
  flex-wrap: wrap;
}

.testimonials-wrapper .testimonials-carousel-container {
  max-width: 92rem;
  width: 100%;
  margin-right: 0;
  margin-left: auto;
}

.testimonial-carousel {
  position: relative;
  padding-block: 5rem;
}

.testimonial-carousel .testimonial {
  background: var(--white);
  border: 0.1rem solid var(--light-blue);
  border-radius: 1.2rem;
  padding: 4rem;
}

.testimonial-carousel .testimonial p {
  color: #00000099;
  font-size: 1.8rem;
  line-height: 1.8;
  font-weight: 500;
  margin-bottom: 5rem;
}

.image-box {
  display: flex;
  gap: 1.2rem;
}

.image-box .image {
  height: 8rem;
  width: 8rem;
  border-radius: 50%;
  overflow: hidden;
}

.image-box .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-box .info .name {
  margin-bottom: 0;
  color: var(--black);
  font-size: 1.8rem;
}

.image-box .info .name strong {
  font-weight: 500;
}

.image-box .info .designation {
  color: #00000061;
  font-size: 1.4rem;
  margin-bottom: 0;
}

.image-box .info .ratings img {
  cursor: pointer;
  transition: 300ms all ease-in-out;
}

.image-box .info .ratings img:hover {
  opacity: 0.5;
}

.swiper-button {
  position: absolute;
  top: 3rem;
  right: 0;
  left: auto;
}

.swiper-button::after {
  font-size: 0;
}

.testimonial-carousel .swiper-button.swiper-button-prev {
  background: url("../images/prev.png") no-repeat;
  background-size: contain;
}

.testimonial-carousel .swiper-button.swiper-button-next {
  background: url("../images/next.png") no-repeat;
  background-size: contain;
}

.testimonial-carousel .swiper-button.swiper-button-prev {
  right: 4rem;
}

/* Testimonials Section End */

/* Newsletter Subscription Section Start */
.newsletter .container>h2 {
  margin-bottom: 1rem;
}

.newsletter .container>p {
  max-width: 90rem;
  margin-inline: auto;
  font-size: 1.8rem;
  color: #00000099;
  margin-bottom: 4rem;
}

.newsletter .form-container {
  padding: 3rem 5rem;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.05) 0%,
      rgba(102, 102, 102, 0.05) 100%),
    linear-gradient(270deg, #0db4d9 0%, #0d4e81 70.4%, #0b2c64 100%);
  color: var(--white);
  display: flex;
  flex-wrap: wrap;
}

.contact-details {
  width: 42%;
}

.contact-details .wrapper {
  padding-block: 3rem;
  max-width: 75%;
}

.contact-details h2 {
  color: var(--white);
}

.contact-details ul {
  margin-top: 3.6rem;
}

.contact-details ul li a {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--white);
}

.newsletter .form-container .form {
  background: var(--white);
  width: 58%;
  padding: 4.4rem 6.4rem;
  border-radius: 1.6rem;
}

.newsletter .form-container .form h3 {
  font-size: 2.2rem;
  font-family: "Helvetica Now Display", sans-serif;
  color: var(--black);
  margin-bottom: 4rem;
}

.form .field {
  position: relative;
  margin-bottom: 3.2rem;
}

.form .field input {
  width: 100%;
  outline: 0;
  border: 0;
  padding: 1.25rem 0;
  padding-top: 2.5rem;
  border-bottom: 0.1rem solid #8d8d8d;
  color: #3a3a3a;
  font-size: 1.6rem;
  font-weight: 500;
}

.form .field input:valid+label,
.form .field input:focus+label {
  top: 0;
}

.form .field label {
  position: absolute;
  top: 2rem;
  left: 0;
  font-size: 1.3rem;
  color: #3a3a3a99;
  font-weight: 500;
  transition: 300ms all ease-in-out;
}

.counter {
  text-align: right;
  font-size: 1.3rem;
  color: #38404299;
  margin-top: 0.75rem;
}

.form .button.blue {
  display: block;
  margin-right: 0;
  margin-left: auto;
}

/* Newsletter Subscription Section End */

/* FAQs Section Start */
.accordian.open .contents {
  height: auto;
  overflow: auto;
}

.accordian .contents p {
  color: #3a3a3a99;
  margin-bottom: 0;
}

.accordian:not(:last-child) {
  margin-bottom: 2rem;
}

.accordian .header {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  background-color: #f5f7fd;
  padding: 2.3rem 4rem;
  color: var(--black);
  font-size: 1.7rem;
  border-radius: 0.4rem;
}

.accordian.open .header {
  pointer-events: none;
}

.accordian .header .icon img {
  transition: 300ms all ease-in-out;
}

.accordian .header.active .icon img {
  transform: rotate(180deg);
}

.accordian .header p {
  margin-bottom: 0;
}

.accordian .contents {
  display: none;
}

.accordian .contents p {
  line-height: 1.5;
  padding: 1rem 0;
}

/* FAQs Section End */

/* Login Page Start */
.breadcrumb ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 4rem;
}

.breadcrumb ul li,
.breadcrumb ul li a {
  font-size: 1.4rem;
  color: #00000061;
}

.breadcrumb ul li {
  position: relative;
  color: var(--black);
}

.breadcrumb ul li img {
  margin-inline: 1.2rem;
}

.login {
  display: flex;
  justify-content: center;
  align-items: center;
}

.login form {
  max-width: 45.5rem;
  width: 100%;
  text-align: center;
}

.login form h3 {
  margin-bottom: 2.8rem;
}

.login form p {
  font-size: 2.2rem;
  color: #00000099;
}

.login form .wrapper {
  margin-block: 4rem;
}

.login form .field {
  margin-bottom: 3.6rem;
}

.login form .field:nth-child(2) {
  margin-bottom: 2.8rem;
}

.login form input {
  width: 100%;
  padding: 1rem;
  outline: 0;
  border: 0.1rem solid #00000026;
  border-radius: 0.6rem;
  padding: 1.5rem 2.5rem;
  font-size: 1.6rem;
}

.login form input::placeholder {
  font-size: 1.6rem;
  color: #00000061;
}

.forget-password {
  text-align: right;
}

.forget-password a {
  font-size: 1.7rem;
  color: #00000099;
}

.login form .button {
  font-size: 2.2rem;
  font-weight: 500;
  min-width: 21rem;
  margin-bottom: 5rem;
}

.login form strong {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--black);
}

.login form .info {
  max-width: 40rem;
  margin-inline: auto;
}

.login form .info p {
  font-size: 1.4rem;
  color: #00000099;
}

/* Login Page End */

/* DEPARTMENT Page Start */
.department .page-title {
  margin-bottom: 3.2rem;
}

.department table thead th {
  font-size: 1.8rem;
  font-weight: 700;
  color: #00000099;
  text-align: left;
}

.department table tbody {
  background: #f5f7fd;
  border-radius: 0.4rem;
}

.department table thead th {
  padding: 1rem 4rem;
}

.department table tbody td {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--black);
  padding: 2rem 4rem;
}

.department table tbody td a {
  font-size: 1.8rem;
  font-weight: 500;
  color: #2e6bf3;
  text-decoration: underline;
  text-underline-offset: 0.5rem;
  white-space: nowrap;
}

.page.department ul.pagination {
  justify-content: center;
  max-width: 87.5rem;
  margin-top: 5rem;
}

/* DEPARTMENT Page End */

/* TOPIC INFORMATION Start */
.radiology-detail {
  margin-bottom: 1.6rem;
}

.radiology-detail {
  margin-bottom: 1.6rem;
}

.radiology-detail ul {
  display: flex;
  align-items: center;
}

.radiology-detail ul li {
  list-style: none;
  font-size: 1.4rem;
  font-weight: 500;
  text-align: left;
  color: #00000099;
  margin-right: 2.8rem;
}

.radiology-detail ul li span {
  list-style: none;
  font-size: 1.4rem;
  font-weight: 500;
  text-align: left;
  color: #000;
}

.medicine-and-rediaology h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.oral-medicine-detail {
  margin-bottom: 4rem;
}

.oral-medicine-detail h3 {
  margin-bottom: 0;
}

.oral-medicine-detail h3 {
  font-size: 1.6rem;
  font-weight: 700;
}

.medicine-and-rediaology span {
  font-size: 1.4rem;
  font-weight: 400;
  color: #257cc0;
  display: block;
  margin-bottom: 2rem;
}

.artical-tag-detail {
  margin-bottom: 3.6rem;
}

.artical-tag-detail ul {
  display: flex;
  align-items: center;
}

.artical-tag-detail ul li {
  list-style: none;
  font-size: 1.4rem;
  font-weight: 500;
  padding: 0.6rem 1.2rem;
  background: #d9d9d961;
  margin-right: 2rem;
  border-radius: 10rem;
}

.artical-tag-detail ul li span {
  color: #00000099;
}

.view-full-artical button {
  font-size: 1.4rem;
  font-weight: 500;
  text-align: left;
  max-width: 87.8rem;
  width: 100%;
  text-align: center;
  margin: 0 auto;
  padding: 1.5rem 0;
  border: none;
  border-radius: 0.6rem;
  color: #fff;
  background: var(--light-blue);
}

/* TOPIC INFORMATION End*/

/* NOTIFICATIONS PAGE Start */
.page-cotant-wrapper {
  display: flex;
}

.page-contents-detail-section {
  max-width: 90rem;
  width: 100%;
  margin-right: 4.8rem;
}

.teath-area img {
  max-width: 14.7rem;
  width: 100%;
  margin: 0 auto;
}

.notification-detail-section {
  display: flex;
  align-items: center;
  margin-bottom: 3.2rem;
}

.notification-detail {
  width: 76%;
  display: flex;
  align-items: flex-end;
  border: 0.1rem solid #00000061;
  padding: 1.6rem 2.4rem;
  border-radius: 0.6rem;
  gap: 1rem;
  box-shadow: 0.4rem 0.4rem 3rem 0 #0000000a, -0.4rem -0.4rem 3rem 0 #0000000a;
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-duration: 300ms;
}

.notification-detail:hover {
  transform: translateY(-1rem);
  border: 1px solid var(--light-blue);
  box-shadow: 0.5rem 0.5rem 0 0 var(--light-blue), 0 0 0 0 var(--light-blue);
  transition: 0s;
}

.notification-detail-section .delete-icon {
  padding: 0 6rem;
}

.notification-detail-section .delete-icon a img {
  transition: 200ms all ease-in-out;
}

.notification-detail-section .delete-icon a:hover img {
  transform: scale(0.9);
}

.notification-detail-section.read .notification-detail {
  background: #F5F5F5;
}

.notification-text-detail span {
  color: #00000099;
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 0.8rem;
}

.notification-text-detail p {
  font-size: 1.5rem;
  font-weight: 500;
  color: #000;
  margin-bottom: 0;
}

.notification-time p {
  font-size: 1.2rem;
  font-weight: 400;
  color: #00000099;
  white-space: nowrap;
  margin-bottom: 0;
}

.medicine-asosication-detail {
  background: #f5f7fd;
  padding: 3.2rem 4rem;
  border-radius: 0.4rem;
}

.medicine-asosication-detail {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}

.medicine-asosication-detail .detail-number {
  margin-right: 5.4rem;
  padding: 0;
}

.medicine-asosication-detail p {
  font-family: Helvetica Now Display;
  font-size: 1.7rem;
  font-weight: 500;
  padding: 0;
}

/* NOTIFICATIONS PAGE End */

/* ABOUT PAGE CSS START */
.section-intro {
  text-align: center;
  margin-bottom: 3rem;
}

.section-intro h2 {
  color: var(--light-blue);
  margin-bottom: 1rem;
}

.section-intro p {
  max-width: 70rem;
  margin-inline: auto;
  color: var(--light-blue);
}

.static-page {
  padding-block: 5rem;
}

.static-page hr {
  margin-bottom: 2rem;
}

.static-page p {
  color: #777;
  line-height: 1.7;
}

.image-box-lg {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.image-box-lg.reversed {
  flex-direction: row-reverse;
}

.image-box-lg .image {
  width: 25%;
}

.image-box-lg .image img {
  width: 100%;
}

.image-box-lg .contents {
  width: 75%;
  padding: 3rem 0 3rem 3rem;
}

.image-box-lg.reversed .contents {
  padding: 3rem 3rem 3rem 0;
}

.image-box-lg p {
  color: #777;
  line-height: 1.7;
  margin-bottom: 0;
}

.image-box-lg h2 span {
  display: inline-block;
  margin-left: 1rem;
  background: var(--light-blue);
  border-radius: 50%;
  padding: 1rem;
  color: #fff;
  box-shadow: 0 1rem 1rem #ccc;
}

.seperator {
  border: 0;
  border-bottom: 0.1rem solid #ebebeb;
}

section.about .seperator {
  margin-block: 3rem;
}

/* ABOUT PAGE CSS END */

/* PRIVACY POLICY PAGE CSS START */
.contact-us {
  padding-top: 5rem;
}

/* PRIVACY POLICY PAGE CSS END */

/* FOOTER Start */
.footer .footer-wrapper {
  display: flex;
  flex-wrap: wrap;
}

.footer .footer-wrapper .column {
  width: 25%;
  padding: 2rem;
}

.footer .footer-wrapper .column .title {
  position: relative;
  font-size: 2.4rem;
  font-weight: 600;
  padding-bottom: 2rem;
}

.footer .footer-wrapper .column .title::before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 7rem;
  border-bottom: 0.2rem solid var(--black);
}

.footer .footer-wrapper .column ul li:not(:last-child) {
  margin-bottom: 0.5rem;
}

.footer .footer-wrapper .column ul li a {
  font-size: 1.5rem;
  text-underline-offset: 0.5rem;
  transition: 300ms all ease-in-out;
}

.footer .footer-wrapper .column ul li a:hover {
  text-decoration: underline;
}

.footer .footer-wrapper .column p {
  margin-bottom: 0;
}

.footer .footer-wrapper .column .logo {
  height: 100%;
  display: flex;
  align-items: flex-end;
}

.footer .footer-wrapper .column .logo img {
  width: 100%;
}

.footer .socials {
  padding-block: 2.5rem;
  padding-inline: 2rem;
}

.footer .socials p {
  font-size: 1.5rem;
  margin-bottom: 0;
}

.footer .socials .wrapper {
  display: flex;
  justify-content: space-between;
}

.social-handles {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.whatsapp-widget {
  position: fixed;
  bottom: 5rem;
  right: 5rem;
  z-index: 999;
}

.profile {
  display: flex;
  align-items: end;
  gap: 16px;
  padding: 4px 10px;
  background-color: rgba(211, 211, 211, 0.2);
  border: 1px solid #dadce0;
  border-radius: 8px;
  cursor: pointer;
}

.profile:hover {
  border: 1px solid #d2e3fc;
  background-color: rgba(248, 250, 255, .88);
}

.profile-setting {
  /* display: flex;
  align-items: center;
  gap: 64px; */

  display: flex;
  align-items: center;
  gap: 50px;
  width: 100%;
  justify-content: end;
}

.profile img {
  max-width: 52px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;

}

/* Footer END */
#profile {
  /* height: 3.6rem;
  width: 3.6rem;
  border-radius: 50%;
  overflow: hidden; */
  /* max-width: 7rem; */

}

/* #profile>img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 50%;
} */


.organization {
  font-weight: 600;
  text-align: center;
  width: 260px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}


.container {
  padding: 5px 0px;
}

.hidden-profile {
  display: none;
}

.active-profile {
  gap: unset;
  padding: unset;
  background-color: unset;
  border: unset;
  border-radius: unset;
}