@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&family=Ubuntu:wght@300;400;500;700&display=swap");

* {
  font-family: "Ubuntu", sans-serif;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

:root {
  --background-color: #f1f1f1;
  --hover-color: rgb(102, 40, 245);
  --prymari-color: #eff3f6;
  --color: #fff;
  --color-1: #000000;
  --btn-color: #e60101;
  --border-color: #c6c6c6;
  --btn-bg: #1900bc;
  --secondary-color: #f0c456;
  --last-color: #ffa155;
  --title-heading-color: #ac0000;
}

/* Scrolbar Start */
::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 20px;
  background-color: #f5f5f5;
}

::-webkit-scrollbar {
  width: 12px;
  background-color: #f5f5f5;
}

::-webkit-scrollbar-thumb {
  border-radius: 20px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #d62929;
}
/* Scrolbar End */

/* Preloader Section Start */
#preloader {
  background: var(--color-1);
  font-size: 100%;
  line-height: 24px;
  margin: 0;
  padding: 0;
  font-family: sans-serif;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease-out;
}

#preloader.hide {
  opacity: 0;
  visibility: hidden;
}

.heart_rate {
  width: 150px;
  height: 73px;
  position: relative;
  margin: 20px auto;
}

.fade_in {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--color-1);
  top: 0;
  right: 0;
  animation: heartRateIn 2s linear infinite;
}

.fade_out {
  position: absolute;
  width: 120%;
  height: 100%;
  background-color: var(--color-1);
  top: 0;
  right: -120%;
  animation: heartRateOut 2s linear infinite;
  background: var(--color-1);
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 1) 80%,
    rgba(0, 0, 0, 0) 100%
  );
}

@keyframes heartRateIn {
  0% {
    width: 100%;
  }
  50% {
    width: 0;
  }
  100% {
    width: 0;
  }
}

@keyframes heartRateOut {
  0% {
    left: -120%;
  }
  30% {
    left: -120%;
  }
  100% {
    left: 0;
  }
}

/* Hidden main content initially */
.hidden {
  visibility: hidden;
}
/* Preloader Section End */


/* navbar */

.navbar {
  background: var(--btn-color);
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  box-shadow: 0 20px 50px 0 rgb(0 0 0 / 5%);
}

.sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 999;
}

.navbar .logo {
  text-decoration: none;
  color: #122f48;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 18px;
}

/* nav menu button */

.menu_btn {
  position: relative;
  display: none;
  justify-content: center;
  align-items: center;
  width: 1.5rem;
  height: 1.5rem;
  cursor: pointer;
  z-index: 2;
}

.navbar .menu_btn__lines::before,
.navbar .menu_btn__lines::after {
  content: "";
  position: absolute;
}

.navbar .menu_btn__lines,
.navbar .menu_btn__lines::before,
.navbar .menu_btn__lines::after {
  width: 1.5rem;
  height: 3px;
  background: var(--color);
  transition: all 0.4s ease-in-out;
}

.navbar .menu_btn__lines::before {
  transform: translateY(-0.5rem);
}

.navbar .menu_btn__lines::after {
  transform: translateY(0.5rem);
}

.menu_items li a {
  color: var(--color);
}

.navbar .menu_items {
  display: flex;
  align-items: center;
}

.navbar ul li {
  list-style: none;
  transition: 0.3s ease;
}

.navbar li:hover {
  background: var(--btn-bg);
}

.navbar ul li .arrow {
  transition: all 0.3s ease-out;
}

.navbar ul li a {
  text-decoration: none;
  color: #112f48;
}

/* dropdown menu */

.navbar .dropdown {
  position: relative;
}

.dropdown_menu li:hover {
  background: var(--btn-color);
}

.navbar .dropdown_menu,
.menu_right {
  position: absolute;
  background: var(--btn-bg);
  width: 220px;
  line-height: 30px;
  border-radius: 0 0 5px 5px;
  top: 55px;
  border-top: 1px solid white;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  -webkit-box-shadow: 0 20px 50px 0 rgb(0 0 0 / 5%);
  box-shadow: 0 20px 50px 0 rgb(0 0 0 / 5%);
}

.navbar .menu_right {
  top: 0;
  left: 100%;
}

.navbar .dropdown_menu,
.menu-left {
  right: 0;
}

.navbar .menu-left {
  left: -100%;
}

.navbar .menu_item {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 0.5rem 1.5rem;
  color: var(--color);
  font-size: 16px;
}

.menu_item.first_item {
  padding: 16px 16px;
}

.navbar .dropdown:hover .dropdown_menu {
  opacity: 1;
  visibility: visible;
}

.navbar .dropdown_right:hover .menu_right {
  left: 100%;
  opacity: 1;
  visibility: visible;
}

.navbar .dropdown_right:hover .menu-left {
  left: -100%;
}

/* mega menu  */

.menu_item i {
  padding-left: 6px;
  padding-top: 5px;
}

.navbar .mega_menu {
  position: absolute;
  left: 376px;
  width: auto;
  top: 55px;
  border-top: 1px solid #ffffff;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-out 0s, visibility 0.1s linear 0s;
}

.mega_menu .content {
  background: rgba(25, 0, 188, 0.8);
  display: flex;
  width: 100%;
  -webkit-box-shadow: 0 20px 50px 0 rgb(0 0 0 / 5%);
  box-shadow: 0 20px 50px 0 rgb(0 0 0 / 5%);
}

.mega_menu .content li:hover {
  background: rgba(188, 0, 0, 0.8);
  border: none;
}

.content li {
  border: 1px solid black;
  border: none;
  padding: 8px 14px;
}

.blog .content {
  grid-template-columns: repeat(4, 1fr);
}

.content .col {
  display: flex;
  justify-content: space-between;
  line-height: 30px;
}

.content .col p {
  line-height: 1.2rem;
  margin-top: 5px;
  color: #112f48;
}

.content .col .read-more {
  font-size: 16px;
  display: flex;
  padding-top: 1rem;
  color: #03a9f4;
  transition: color 0.3s ease;
  justify-content: flex-end;
  padding-right: 10px;
}

.menu_items li:hover .mega_menu {
  opacity: 1;
  visibility: visible;
}

/* animation menu hamburger */
.menu_btn.open .menu_btn__lines {
  transform: translateX(1rem);
  background: transparent;
}

.menu_btn.open .menu_btn__lines::before {
  transform: rotate(45deg) translate(-0.5rem, 0.5rem);
  background: var(--color);
}

.menu_btn.open .menu_btn__lines::after {
  transform: rotate(-45deg) translate(-0.5rem, -0.5rem);
  background: var(--color);
}

/* search item start */
.search_item #search svg {
  fill: var(--color);
  position: absolute;
  height: 30px;
  width: 36px;
  top: 10px;
  right: 25px;
  opacity: 1;
}

.search_item #search svg:hover,
.search_item #search.active > svg {
  opacity: 1;
}

/* Searchbox relevant style */
#search_btn {
  position: relative;
  background: var(--first-color);
  width: auto;
  margin: 0px 120px;
  overflow: hidden;
  height: 0px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

#search_btn.show {
  animation: reveal-search ease 0.75s forwards;
  height: 50px;
  margin: 10px 120px;
}

#search_btn.hide {
  animation: hide-search ease 0.25s forwards;
}

#search_btn svg {
  margin: auto 0;
  position: absolute;
  height: 35px;
  fill: var(--secont-color);
  top: 0;
  bottom: 0;
}

#search_btn svg.magnify {
  left: 10px;
  right: 0;
  fill: var(--secont-color);
}

#search_btn svg.close {
  right: 20px;
}

#search_btn svg.close:hover {
  cursor: pointer;
}

#search_btn svg {
  font-size: 18px !important;
}

#search_btn input {
  width: calc(100% - 160px);
  line-height: 50px;
  font-size: 18px;
  max-height: 90px;
  border: 0;
  padding: 0 10px;
  font-weight: 300;
  color: var(--secont-color);
  padding-left: 70px;
  background: transparent;
}

#search_btn input:focus {
  outline: 0;
}

#search_btn .search-input::placeholder {
  font-size: 16px;
}

@keyframes reveal-search {
  0% {
    height: 0;
    transform: scaleX(0);
    border-radius: 50%;
  }
  50% {
    height: 80px;
    transform: scaleX(0);
    border-radius: 50%;
  }
  100% {
    transform: scaleX(1);
    border-radius: 0;
  }
}

@keyframes hide-search {
  0% {
    height: 80px;
    transform: scaleY(1);
  }
  100% {
    height: 0;
    transform: scaleY(0);
  }
}

/* search item end */

/* Responsive style */

@media screen and (max-width: 1285.6px) {
  .navbar .mega_menu {
    left: auto;
    width: auto;
  }
}

@media screen and (max-width: 1225px) {
  .menu_item.first_item {
    padding: 16px 10px;
  }
}

@media screen and (max-width: 1107px) {
  .menu_item.first_item {
    padding: 16px 7px;
  }
}

@media screen and (max-width: 1080px) {
  .navbar {
    padding: 10px 20px;
  }

  .logo {
    display: none;
  }

  .overflow {
    overflow: hidden;
  }

  .overlay {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 500;
    background-color: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  }

  .overlay--active {
    opacity: 1;
    visibility: visible;
  }

  .menu_btn {
    display: flex;
  }

  .navbar .menu_items {
    position: fixed;
    height: 100%;
    max-height: initial;
    overflow-y: auto;
    width: 48%;
    top: 117px;
    left: 0px;
    background: var(--btn-bg);
    display: block;
    transform: translateX(-100vh);
    transition: 0.3s ease-out;
    padding-bottom: 100px;
  }

  .navbar .menu_items ul {
    color: var(--color);
  }

  .menu_items.open {
    transform: translateY(0);
  }

  .menu_items.open {
    margin-top: 57px;
  }

  .menu_items li a {
    padding: 10px 1rem;
    display: block;
    font-size: 18px;
  }

  .menu_items .dropdown_right .right-arrow {
    transform: rotate(90deg);
  }

  /* DROPDOWN, MEGA MENUS */
  .menu_items .dropdown_menu,
  .menu_items .menu_right,
  .menu_items .mega_menu {
    position: static;
    opacity: 1;
    top: 4rem;
    visibility: visible;
    margin-left: -18px;
    width: auto;
    max-height: 0;
    transform: scaleX(0);
    transform-origin: left;
    overflow: hidden;
    transition: all 0.5s ease;
  }

  .menu_items .dropdown_menu,
  .menu_items .menu_right {
    padding-left: 10px;
    width: 102%;
    margin-left: -10px;
  }

  .menu_items .mega_menu .col {
    padding-left: 1rem;
  }

  .expand_btn.open + .sample {
    max-height: 100%;
    transform: scaleZ(1);
  }

  .expand_btn.open + .blog.sample {
    max-height: 100%;
    transform: scaleZ(1);
    max-width: fit-content;
  }

  .navbar .sample {
    border-top: none;
  }

  .sample li {
    margin: 0;
  }

  .sample li:last-child {
    border-bottom: none;
  }

  .sample li a {
    font-size: 1rem;
  }

  .mega_menu .content {
    grid-template-columns: auto;
    flex-direction: column;
    padding: 0 0 0 10px;
  }

  .mega_menu .content .col {
    width: 100%;
    margin-bottom: 0.5rem;
  }

  .col .mega-links li,
  .col .mega-links li a {
    padding: 0 0.5rem;
  }

  .content .col .mega-links {
    border-left: 0;
    padding-left: 0.5rem;
  }

  .col .mega-links li {
    margin: 0;
  }
}

.search_btn {
  font-size: 16px;
}

.nav_logo {
  padding: 20px 20px 10px 15px;
}

@media (max-width: 575px) {
  .nav_logo {
    padding: 20px 20px 10px 30px;
  }

  .search_btn {
    font-size: 16px;
    padding: 0px 20px 0px 0px;
  }

  .logo {
    display: none;
  }

  #search_btn.show {
    margin: 0px 0px;
  }
}

/* navbar end */

/* About DCMC start */

.test {
  width: 100%;
  height: 400px;
  background-size: cover;
  background-position: center;
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("../img/dcmc-class-room.webp");
  position: relative;
}

.hero_text_animetion {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.hero_text_animetion span {
  text-transform: uppercase;
  display: block;
}

.animetion_text {
  color: var(--background-color);
  font-size: 45px;
  font-weight: 700;
  letter-spacing: 8px;
  margin-bottom: 20px;
  position: relative;
  animation-name: text;
  animation-duration: 4s;
  animation-iteration-count: infinite;
}

@keyframes text {
  0% {
    color: #0000002f;
  }
  30% {
    letter-spacing: 25px;
  }
  85% {
    letter-spacing: 8px;
  }
}

/* About DCMC end */

/* All Activities & Events Single Start */

.all_activities_events_single_items {
  margin: 30px 0px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 20px;
}

.all_activities_events_single_items .all_activities_events_single_item {
  padding-bottom: 20px;
}

.all_activities_events_single_items
  .all_activities_events_single_item
  .all_activities_events_single_title
  h2 {
  margin: 0px;
  font-size: 40px;
  font-weight: bold;
  padding-bottom: 20px;
}

.all_activities_events_single_items
  .all_activities_events_single_item
  .all_activities_events_single_img {
  width: 100%;
  height: 450px;
  border: 1px solid black;
  border-radius: 6px;
  border: none;
  aspect-ratio: 16 / 16;
}

.all_activities_events_single_items
  .all_activities_events_single_item
  .all_activities_events_single_img
  img {
  width: 100%;
  height: 100%;
  border-radius: 6px;
  border: 1px solid var(--border-color);
  background-image: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.all_activities_events_single_modal_img {
  position: relative;
  display: inline-block;
  overflow: hidden;
}

.all_activities_events_single_modal_img img {
  display: block;
  width: 100%;
  height: auto;
}

.all_activities_events_single_modal_img .hover_overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.all_activities_events_single_modal_img .hover_overlay i {
  font-size: 30px;
  color: var(--btn-color);
}

.all_activities_events_single_modal_img:hover .hover_overlay {
  opacity: 1;
}

.all_activities_events_single_modal .modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  overflow: auto;
}

.all_activities_events_single_modal .modal .modal-content {
  position: relative;
  margin: 80px auto;
  max-width: 45%;
  max-height: 100%;
  background-color: var(--prymari-color);
  border-radius: 6px;
}

.all_activities_events_single_modal #modalImage {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 6px;
}

.all_activities_events_single_modal .modal .modal-content .close {
  position: absolute;
  top: 0px;
  right: 20px;
  font-size: 45px;
  font-weight: bold;
  color: var(--btn-color);
  cursor: pointer;
}

.all_activities_events_single_modal_img img {
  width: 100%;
  height: auto;
  cursor: pointer;
}

.all_activities_events_single_items
  .all_activities_events_single_item
  .all_activities_events_single_modal {
  text-align: center;
  align-items: center;
  justify-content: center;
}

.all_activities_events_single_items
  .all_activities_events_single_item
  .all_activities_events_single_modal
  .all_activities_events_single_modal_categories
  .all_activities_events_single_modal_img {
  width: 100%;
  border-radius: 6px;
  border: none;
  aspect-ratio: 16 / 16;
}

.all_activities_events_single_items
  .all_activities_events_single_item
  .all_activities_events_single_modal
  .all_activities_events_single_modal_categories
  .all_activities_events_single_modal_img
  img {
  width: 100%;
  height: 100%;
  border-radius: 6px;
  border: 1px solid var(--border-color);
  background-image: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.all_activities_events_single_items
  .all_activities_events_single_item
  .more_activities_page {
  text-align: center;
  align-items: center;
  justify-content: center;
  display: flex;
  width: 100%;
  margin: 0;
}

.all_activities_events_single_items
  .all_activities_events_single_item
  .more_activities_page
  h2 {
  font-size: 30px;
  font-weight: bold;
  padding-top: 20px;
  margin: 0;
}

.under_line {
  margin-top: 30px;
  width: 100%;
  height: 2px;
  background: var(--border-color);
}

/* All Activities & Events Single End */

/* All Activities & Events Start */

.all_activities_events_single_items .all_activities_event_item {
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 20px;
  transition: 0.4s;
}

.all_activities_events_single_items .all_activities_event_item:hover {
  box-shadow: 0 1px 3px rgba(17, 0, 126, 0.43),
    0 1px 15px rgba(17, 0, 126, 0.43);
}

.all_activities_events_single_items
  .all_activities_event_item
  .all_activities_event_img {
  width: 300px;
  height: 230px;
  border: 1px solid var(--color-1);
  border-radius: 6px;
  border: none;
  margin: auto;
  justify-content: center;
  align-items: center;
  aspect-ratio: 16 / 16;
}

.all_activities_events_single_items
  .all_activities_event_item
  .all_activities_event_img
  img {
  width: 100%;
  height: 100%;
  border-radius: 6px;
  border: 1px solid var(--border-color);
  justify-content: center;
  align-items: center;
  text-align: center;
  background-image: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.all_activities_events_single_items
  .all_activities_event_item
  .all_activities_event_title {
  font-size: 20px;
  font-weight: bold;
  padding-top: 10px;
  padding-bottom: 6px;
  margin: 0;
}

.all_activities_events_single_items
  .all_activities_event_item
  .all_activities_event_description {
  font-size: 15px;
  line-height: 22.5px;
  font-weight: 400;
  text-align: justify;
  padding-bottom: 8px;
  margin: 0;
}

.all_activities_events_single_items
  .all_activities_event_item
  .all_activities_event_date {
  font-size: 15px;
  font-weight: 600;
  text-align: justify;
  margin: 0;
}

.all_activities_events_single_items
  .all_activities_event_item
  .all_activities_event_see_more_btn {
  text-align: center;
  align-items: center;
  justify-content: center;
  display: flex;
  padding-top: 10px;
  margin: 0;
}

.all_activities_events_single_items
  .all_activities_event_item
  .all_activities_event_see_more_btn
  a {
  text-decoration: none;
  border: 1px solid black;
  border: none;
  border-radius: 6px;
  text-align: center;
  align-items: center;
  justify-content: center;
  color: var(--prymari-color);
  background: var(--btn-color);
  padding: 8px 20px;
  font-size: 16px;
  font-weight: bold;
  text-align: justify;
  transition: 0.4s;
}

.all_activities_events_single_items
  .all_activities_event_item
  .all_activities_event_see_more_btn
  a:hover {
  color: var(--prymari-color);
  background: var(--btn-bg);
}

@media screen and (max-width: 992px) {
  .all_activities_events_single_items
    .all_activities_event_items
    .all_activities_event_categories {
    margin-top: 25px;
  }

  .all_activities_events_single_items
    .all_activities_event_item
    .all_activities_event_img {
    margin: 0;
    justify-content: center;
    align-items: center;
    aspect-ratio: 16 / 16;
  }

  .all_activities_events_single_items
    .all_activities_event_item
    .all_activities_event_see_more_btn {
    text-align: center;
    align-items: center;
    justify-content: left;
  }
}
/* All Activities & Events End */

/* dhaka medical footer start */
#medical_footer_items {
  padding: 50px 0px 40px 0px;
  background: var(--btn-bg);
}

.Container {
  width: 100%;
  max-width: 1140px;
  margin: auto;
  padding: 0 15px;
}

.short_text h4 {
  font-weight: 600;
  font-size: 22px;
  color: var(--background-color);
}

.medical_all_item {
  padding: 0px 15px;
}

.under_lines {
  width: 245px;
  height: 2.5px;
  background: var(--background-color);
}

.medical_footer_text {
  padding: 5px 0px 0px 0px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer_list_1 li,
.footer_list_2 li {
  padding: 15px 0px 0px 0px;
  list-style-type: none;
}

.footer_list_1 a,
.footer_list_2 a {
  font-size: 16px;
  text-decoration: none;
  color: var(--background-color);
  font-weight: 400;
  transition: 0.5s;
}

.footer_list_1 a:hover,
.footer_list_2 a:hover {
  color: var(--btn-color);
}

.footer_social_item {
  display: flex;
}

.footer_social_item .icon {
  align-items: center;
  justify-content: center;
  display: flex;
  width: 40px;
  height: 40px;
  border: 1px solid #575ea8;
  font-size: 16px;
  border-radius: 50%;
  margin: 0px 10px 0px 0px;
  transition: 0.5s;
}

.footer_social_item .icon:hover {
  background: #6b6d79;
}

.footer_contact_item {
  display: flex;
  padding: 14px 0px 0px 0px;
}

.medical_footer_contact_icon,
.medical_footer_location_icon {
  font-size: 38px;
}

.medical_footer_contact_text {
  padding: 0px 0px 0px 20px;
}

.callname_heading a {
  font-size: 18px !important;
}

.medical_footer_contact_callnamebar a,
.medical_footer_contact_faxnamebar a,
.medical_footer_location_text a {
  font-size: 14px;
  text-decoration: none;
  color: var(--background-color);
}

.medical_footer_location_text {
  padding-left: 28px !important;
}

.medical_footer_contact_text a:hover,
.medical_footer_location_text a:hover {
  color: var(--background-color);
}

.madical_collage_location {
  margin: 18px 0px 0px 0px;
}

.madical_collage_location iframe {
  width: 100%;
  height: 250px;
}

@media screen and (max-width: 770px) {
  .medical_all_item {
    margin: 20px 0px;
  }

  .medical_footer_text {
    display: block;
    padding: 0 !important;
  }
}

@media screen and (max-width: 576px) {
  .Container {
    padding: 0 10px;
  }

  .medical_footer_contact_item,
  .footer_social_item {
    justify-content: center;
  }

  .medical_footer_contact_icon,
  .medical_footer_location_icon {
    font-size: 28px;
  }

  .callname_heading a {
    font-size: 16px !important;
  }

  .madical_collage_location iframe {
    height: 200px;
  }
}

/* dhaka medical footer end */

/* dhaka medical copyright start */
#medical_copyright_items {
  background: var(--btn-color);
  text-align: center;
}

.medical_copyright_item {
  padding: 16px 0px;
}

.medical_copyright_item a {
  font-weight: 600;
  text-decoration: none;
  color: var(--background-color);
}

.medical_copyright_item a:hover {
  color: var(--background-color);
}

/* dhaka medical copyright end */

/* Back To Top button start */

#back_to_top {
  padding: 20px;
}

#backToTopBtn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #6a11cb, #2575fc);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 100;
  transition: all 0.5s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  animation: pulse 2s infinite;
}

#backToTopBtn:hover {
  background: linear-gradient(45deg, #2575fc, #6a11cb);
  transform: rotate(360deg) scale(1.1);
}

#backToTopBtn span {
  color: white;
  font-size: 24px;
  transition: all 0.5s ease;
}

/* Pulsating Animation */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.7);
  }

  70% {
    box-shadow: 0 0 20px 20px rgba(102, 126, 234, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(102, 126, 234, 0);
  }
}

/* Back To Top button end */
