body {
  scroll-behavior: smooth;
  font-family: 'Poppins', sans-serif;
}


.section {
  height: 100vh;
  padding-top: 100px;
  text-align: center;
  font-size: 40px;
}


.navbar {
  transition: 0.3s;
  background: transparent;
  border-bottom: 1px solid #0d6efd;
}

.navbar .nav-link,
.navbar .navbar-brand {
  color:#0d6efd;
  transition: 0.3s;
}

.navbar .navbar-brand img {
  width: 70px;
}

.logo {
  width: 70px;
}

 .nav-link:hover {
color: rgb(27, 52, 191);
}

.navbar.scrolled {
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled .nav-link,
.navbar.scrolled .navbar-brand {
color: rgb(27, 52, 191);
  
}


.nav-link.active {
  color: #0d6efd !important;
  font-weight: bold;
}

/* hero section start */

.hero-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #eaf4ff, #f8fbff);
}


.text-content h1 {
  font-size: 48px;
  font-weight: 700;
}

.text-content span {
  color: #0d6efd;
}

.text-content p {
  margin: 20px 0;
  color: #555;
}


.stats h3 {
  color: #0d6efd;
  font-weight: 700;
}

.stats span {
  font-size: 14px;
  color: #777;
}


.btn-main {
  background: #0d6efd;
  color: #fff;
  padding: 12px 25px;
  border-radius: 30px;
  transition: 0.3s;
}

.btn-main:hover {
  background: #ffffff;
  border: 2px solid #0d6efd;
  transform: translateY(-3px);
}

.btn-outline {
  border: 2px solid #0d6efd;
  padding: 10px 25px;
  border-radius: 30px;
  margin-left: 10px;
  transition: 0.3s;
}

.btn-outline:hover {
  background: #0d6efd;
  color: #fff;
}


.img-box {
  text-align: center;
}

.main-img {
  width: 85%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  transition: 0.4s;
}

.main-img:hover {
  transform: scale(1.05);
}


.hero-floating-card {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: #fff;
  padding: 15px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  animation: float 3s ease-in-out infinite;
}


@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}


@media(max-width: 992px){
  .text-content {
    text-align: center;
    margin-bottom: 40px;
  }

  .btn-outline {
    margin-left: 0;
    margin-top: 10px;
  }
}

/* hero section end */


 /* Compassionate Care start*/
.comp-modern {
  background: linear-gradient(135deg, #c5def8, #ecf1f8);
  color:black;
}


.comp-title {
  font-size: 40px;
  font-weight: 600;
}

.comp-title span {
  color: #0d6efd;
}


.comp-desc {
  color:#555;
  line-height: 1.7;
}



.comp-img {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.comp-img img {
  width: 100%;
  border-radius: 20px;
  transition: 0.5s;
}

.comp-img:hover img {
  transform: scale(1.05);
}


.com-floating-card {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  padding: 15px 20px;
  border-radius: 15px;
  transition: 0.3s;
}

.floating-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,255,200,0.3);
}


.comp-text,
.comp-img {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.8s;
}

.comp-modern.active .comp-text,
.comp-modern.active .comp-img {
  opacity: 1;
  transform: translateY(0);
}
/*  Compassionate Care end   */

/* feature Services start */
.features-section {
  background: #f4f9ff;
}

.feature-img {
  overflow: hidden;
  border-radius: 20px;
}

.feature-img img {
  width: 100%;
  transition: 0.5s;
}

.feature-img:hover img {
  transform: scale(1.1);
}

.feature-title {
  font-size: 40px;
  font-weight: 600;
}

  .feature-title span {
  color: #0d6efd;
}

.feature-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  margin-bottom: 20px;
  transition: 0.3s;
  cursor: pointer;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}


.feature-card .icon {
  width: 55px;
  height: 55px;
  background: #e3f0ff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 22px;
  transition: 0.3s;
}


.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 18, 44, 0.15);
  border: 2px solid #0d6efd;
}

.feature-card:hover .icon {
  background: #5b9af9;
  color: #fff;
}


.feature-card h5 {
  margin: 0;
  font-weight: 600;
}

.feature-card p {
  margin: 5px 0 0;
  font-size: 14px;
  color: #666;
}


.feature-card {
  opacity: 0;
  transform: translateY(30px);
  transition: 0.6s ease;
}

.feature-card.show {
  opacity: 1;
  transform: translateY(0);
}

/* SERVICE CIRCLE */
.service-circle {
  text-align: center;
  transition: 0.3s;
}

/* IMAGE */
.service-circle .img-box {
  width: 120px;
  height: 120px;
  margin: auto;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  border: 4px solid #e3f0ff;
  transition: 0.4s;
}

.service-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

/* HOVER EFFECT */
.service-circle:hover .img-box {
  border-color: #0d6efd;
  transform: scale(1.1);
}

.service-circle:hover img {
  transform: scale(1.2);
}

/* TEXT */
.service-circle h6 {
  margin-top: 15px;
  font-weight: 600;
}

.service-circle p {
  font-size: 13px;
  color: #666;
}

/* HOVER TEXT */
.service-circle:hover h6 {
  color: #0d6efd;
}

/* ANIMATION */
.service-circle {
  opacity: 0;
  transform: translateY(30px);
  transition: 0.6s;
}

.service-circle.show {
  opacity: 1;
  transform: translateY(0);
}
@media(max-width: 992px){
  .feature-card {
    text-align: left;
  }
}

/* feature Services end */

/* Find a doctor start */
.doctor-section {
  background: linear-gradient(135deg, #f0f7ff, #e1fdfd);
}


.search-box {
  background: #fff;
  padding: 15px;
  border-radius: 50px;
  border: 1px solid #0d6efd;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.259);
  gap: 10px;
  /* margin-right: 110px;
  margin-left: 110px; */
  margin: auto;
max-width: 900px;
}

.search-box input,
.search-box select {
  border: none;
  outline: none;
  padding: 10px;
  flex: 1;
}


.doctor-card {
  background: #fff;
  padding: 25px;
  border-radius: 20px;
  text-align: center;
  transition: 0.4s;
  position: relative;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  overflow: hidden;
}


.doctor-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 40px rgba(1, 50, 125, 0.2);
}


.doc-top {
  position: relative;
}

.doc-top img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 4px solid #e3f0ff;
  transition: 0.3s;
}

.doctor-card:hover img {
  transform: scale(1.1);
}


.status {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  position: absolute;
  bottom: 5px;
  right: 35%;
}

.status.online {
  background: #28a745;
}

.status.busy {
  background: #ffc107;
}


.badge {
  background: #e3f0ff;
  color: #0d6efd;
  padding: 5px 10px;
  border-radius: 20px;
  display: inline-block;
  margin: 10px 0;
}


.VB-btns {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
}

.btn-light {
  background: #edf3f9;
}

.btn-primary {
  border-radius: 20px;
}

.doctor-card {
  opacity: 0;
  transform: translateY(30px);
}

.doctor-card.show {
  opacity: 1;
  transform: translateY(0);
  transition: 0.6s;
}


@media(max-width: 768px){
  .search-box {
    border-radius: 15px;
    flex-direction: column;
  }
}
/* Find a doctor end */

/* emergancy sart */
.emergency-section {
  position: relative;
}

.emergency-box {
  background: linear-gradient(135deg, #39a4f6, #7099e1);
  padding: 40px;
  border-radius: 20px;
  color: #fff;
  overflow: hidden;
  position: relative;
  transition: 0.4s ease;
}

/* Glow Effect */
.emergency-box::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
  animation: rotate 10s linear infinite;
}

@keyframes rotate {
  0% { transform: rotate(0deg);}
  100% { transform: rotate(360deg);}
}

/* Content */
.emergency-title {
  font-size: 28px;
  font-weight: 600;
}

.emergency-text {
  opacity: 0.9;
  font-size: 15px;
}

/* Button */
.call-btn {
  background: #fff;
  color: #1e3c72;
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.call-btn:hover {
  background: #3c90f6;
  color: #fff;
  border: 1px solid white;
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Hover Effect on Box */
.emergency-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

/* Responsive */
@media(max-width: 768px) {
  .emergency-box {
    text-align: center;
  }
}

/* emergancy end */

/*  Excellence Medical section start */
.medical-section {
  background: #f8fbff;
}


.main-title {
  font-size: 42px;
  font-weight: 700;
  color: #1e3c72;
  animation: fadeUp 1s ease;
}

.main-text {
  color: #6c757d;
  margin-top: 15px;
  animation: fadeUp 1.2s ease;
}


.custom-btn {
  border-radius: 50px;
  padding: 10px 25px;
  transition: 0.3s;
}

.custom-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}


.image-box {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.image-box img {
  border-radius: 20px;
  transition: 0.5s;
}

.image-box:hover img {
  transform: scale(1.05);
}


.image-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.2), transparent);
  opacity: 0;
  transition: 0.5s;
}

.image-box:hover::after {
  opacity: 1;
}

/* .feature-sec .feature-card {
  background: #fff;
  padding: 30px;
  
  border-radius: 15px;
  transition: 0.4s;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

 .feature-sec .feature-card .icon {
     width: 66px;
    height: 66px;
    padding: 20px;
    background: #d8e7f9;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 22px;
    transition: 0.3s;
}


.feature-sec .feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.feature-sec .feature-card:hover .icon {
  transform: scale(1.2);
  color: #1e3c72;
}

.feature-sec.feature-card h5{
  font-size: 1rem !important;
} */

.feature-sec.feature-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  margin-bottom: 20px;
  transition: 0.3s;
  cursor: pointer;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}


.feature-sec .feature-card .icon {
  width: 55px;
  height: 55px;
  background: #e3f0ff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 22px;
  transition: 0.3s;
}


.feature-sec .feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 18, 44, 0.15);
  border: 2px solid #0d6efd;
}

.feature-sec .feature-card:hover .icon {
  background: #5b9af9;
  color: #fff;
}


.feature-sec .feature-card h5 {
  margin: 0;
  font-weight: 600;
}

.feature-sec .feature-card p {
  margin: 5px 0 0;
  font-size: 14px;
  color: #666;
}


.feature-sec .feature-card {
  opacity: 0;
  transform: translateY(30px);
  transition: 0.6s ease;
}

.feature-sec .feature-card.show {
  opacity: 1;
  transform: translateY(0);
}


@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.cta-section {
  position: relative;
}


.cta-box {
  background: linear-gradient(135deg, #c0d8f8, #cef3fe);
  padding: 35px 40px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  transition: 0.4s;
}


.cta-box::before {
  content: "";
  position: absolute;
  inset: 0;
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,0.4);
  z-index: 0;
}

.cta-box > * {
  position: relative;
  z-index: 1;
}


.cta-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}


.cta-content h3 {
  font-weight: 600;
  color: #1e3c72;
}

.cta-content p {
  color: #6c757d;
  margin-top: 10px;
}


.call-btns {
  background: #0d6efd;
  color: #fff;
  padding: 9px 20px;
  border-radius: 50px;
  font-weight: 500;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
  
}



.call-btns:hover {
  background: #fefeff;
  color:#1e3c72;
  border: 1px solid #0d6efd;
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}


.cta-action small {
  font-size: 12px;

}


@media(max-width: 768px) {
  .cta-box {
    text-align: center;
  }
}


/*  Excellence Medical section end*/

/* Footer */

.footer-section img {
  width: 100px;
}
.footer-section {
  background: linear-gradient(135deg, #eaf2fa, #e9fbfe);
  color:#0d6efd;
  padding: 60px 0 20px;
  position: relative;
  overflow: hidden;
}

.footer-text {
  color: #040404;
  margin-top: 10px;
}

.footer-title {
  margin-bottom: 15px;
  font-weight: 600;
}


.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  text-decoration: none;
  color: #040404;
  transition: 0.3s;
}


.footer-links a:hover {
  color: #0d6efd;
  padding-left: 5px;
}


.social-icons a {
  display: inline-block;
  margin-right: 10px;
  font-size: 18px;
  color: #050505;
  transition: 0.4s;
}


.social-icons a:hover {
  color: #fff;
  transform: translateY(-5px) scale(1.2);
}


.social-icons a:nth-child(1):hover { color: #1877f2; } /* Facebook */
.social-icons a:nth-child(2):hover { color: #e4405f; } /* Instagram */
.social-icons a:nth-child(3):hover { color: #1da1f2; } /* Twitter */
.social-icons a:nth-child(4):hover { color: #0a66c2; } /* LinkedIn */


.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 15px;
  color: #040404;
}


@media(max-width:768px) {
  .footer-section {
    text-align: center;
  }
}

/* about start */
.about-hero {
  height: 320px;
  position: relative;
  overflow: hidden;

  /* Background Image + Light Overlay */
  /* background: linear-gradient(rgba(255,255,255,0.8), rgba(255,255,255,0.9)),
              url('/public/images/about-hero.jpg') center/cover no-repeat; */
}


.about-hero .content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 48px;
  font-weight: 700;
  color: #1e3c72;
}

.hero-title span {
  color: #0d6efd;
}

.hero-breadcrumb {
  margin-top: 10px;
  color: #6c757d;
}

.hero-breadcrumb a {
  color: #0d6efd;
  text-decoration: none;
}


.shapes span {
  position: absolute;
  display: block;
  border-radius: 50%;
  background: rgba(13,110,253,0.1);
  animation: float 6s infinite ease-in-out;
}

/* Positions */
.shapes span:nth-child(1) {
  width: 80px;
  height: 80px;
  left: 10%;
  top: 20%;
}

.shapes span:nth-child(2) {
  width: 120px;
  height: 120px;
  right: 15%;
  top: 40%;
  animation-delay: 2s;
}

.shapes span:nth-child(3) {
  width: 60px;
  height: 60px;
  left: 50%;
  bottom: 10%;
  animation-delay: 4s;
}


@keyframes float {
  0%,100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}


.about-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(13,110,253,0.08), transparent);
}


@media(max-width:768px){
  .hero-title {
    font-size: 32px;
  }

  .about-hero {
    height: 250px;
  }
}

/* about end  */

/* Core values start */
.core-values {
  position: relative;
  background: #f8fbff;
  overflow: hidden;
}


.section-title {
  font-size: 36px;
  font-weight: 700;
  color: #1e3c72;
}

.section-subtitle {
  color: #6c757d;
}


.value-card {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(10px);
  padding: 30px 20px;
  border-radius: 20px;
  transition: 0.4s;
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}


.value-card .icon {
  width: 70px;
  height: 70px;
  background: #e7f0ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 28px;
  color: #0d6efd;
  transition: 0.4s;
}


.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.value-card:hover .icon {
  background: #0d6efd;
  color: #fff;
  transform: rotate(10deg) scale(1.1);
}


.value-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: 0.5s;
}

.value-card:hover::before {
  left: 100%;
}



/* Floating animation */
@keyframes float {
  0%,100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-25px);
  }
}

/* Responsive */
@media(max-width:768px){
  .section-title {
    font-size: 28px;
  }
}
/* Core values end */

/* Accreditations & Certifications start */
.accreditations {
  background: #d5eaff;
  overflow: hidden;
}


.section-title {
  font-size: 34px;
  font-weight: 700;
  color: #1e3c72;
}

.section-subtitle {
  color: #6c757d;
}


.logo-slider {
  overflow: hidden;
  position: relative;
}

.logo-track {
  display: flex;
  gap: 30px;
  animation: scroll 20s linear infinite;
}


.logo-card {
  min-width: 200px;
  height: 120px;
  background: #fff;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  transition: 0.4s;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}


.logo-card img {
  max-width: 100%;
  max-height: 50px;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: 0.4s;
}


.logo-card:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.logo-card:hover img {
  filter: grayscale(0%);
  opacity: 1;
}


@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}


.logo-slider:hover .logo-track {
  animation-play-state: paused;
}

@media(max-width:768px){
  .logo-card {
    min-width: 150px;
    height: 100px;
  }
}

/* Accreditations & Certifications end */

/* Contact Form Start */
.contact-section {
  background: linear-gradient(135deg, #eaf4ff, #ffffff);
}


.contact-info .info-box {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  margin-bottom: 20px;
  transition: 0.3s;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.contact-info .info-box:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(13,110,253,0.15);
}

.icon {
  width: 50px;
  height: 50px;
  background: #e3f0ff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 20px;
  transition: 0.3s;
}

.info-box:hover .icon {
  background: #0d6efd;
  color: #fff;
}


.contact-form {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(10px);
  padding: 30px;
  border: 1px solid #0d6efd;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.contact-form h3 {
  margin-bottom: 10px;
}


.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #ddd;
  padding: 12px;
  border-radius: 10px;
  outline: none;
  transition: 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #0d6efd;
  box-shadow: 0 0 10px rgba(13,110,253,0.2);
}


.btn-send {
  background: linear-gradient(135deg, #0d6efd, #4dabff);
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 30px;
  transition: 0.3s;
}

.btn-send:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(13,110,253,0.3);
}


.contact-info,
.contact-form {
  opacity: 0;
  transform: translateY(30px);
  transition: 0.6s;
}

.contact-info.show,
.contact-form.show {
  opacity: 1;
  transform: translateY(0);
}


@media(max-width: 768px){
  .contact-info .info-box {
    flex-direction: row;
  }
}

 /* Contact Form End */

 @media(max-width:893px) {
  .btn-primary {
    border-radius: 20px;
    align-items: center;
    justify-content: center;
    display: flex;
    margin: auto;
}
 }

 @media(max-width:500px){
  .text-content h1 {
    font-size: 34px;
    font-weight: 700;
}
.comp-title {
    font-size: 30px;
    font-weight: 600;
}
.feature-title {
    font-size: 30px;
    font-weight: 600;
}
.emergency-title {
    font-size: 21px;
    font-weight: 600;
}
.custom-btn {
    border-radius: 50px;
    padding: 10px 25px;
    transition: 0.3s;
    margin-bottom: 3px;
    margin-top: 10px;
}
    .hero-title {
        font-size: 32px;
        margin-top: 74px;
    }
    .feature-card{
      flex-direction: column;
    }
    .feature-sec .feature-card .icon {
    width: 55px;
    height: 55px;
    background: #e3f0ff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 22px;
    transition: 0.3s;
    margin-bottom: 10px;
}
 }