@font-face{
    font-family: yekan;
    src: url(font/yekan-regular.eot);
    src: url(font/yekan-regular.ttf);
    src: url(font/yekan-regular.woff);
}

body {
    background: #ffffff;
    font-family: "yekan";
    color: #000;
}

/* HEADER */
.main-header {
    width: 100%;
    background: #fff;
}

.header-row {
    text-align: center;
}

.header-item {
    background: #007bff;
    padding: 15px 0;
}

.header-item a {
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    display: block;
    transition: 0.3s;
}

.header-item a:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Popup Menu */
.popup {
    background: #e3f0ff;
}

.popup .dropdown-item {
    font-size: 15px;
}

.popup .dropdown-item:hover {
    background: #d0e6ff;
}

/* ================= SUB NAVBAR ================= */

.sub-navbar {
    background: #ffffff;
    padding: 10px 0;
    border-bottom: 1px solid #e3e3e3;
}

.nav-logo {
    width: 70px;
    height: auto;
}

.nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 25px;
}

.nav-list li a {
    text-decoration: none;
    color: #000;
    font-size: 16px;
    transition: 0.3s;
}

.nav-list li a:hover {
    color: #007bff;
}

/* SEARCH BOX */
.search-box {
    position: relative;
    width: 100%;
}

.search-box input {
    width: 100%;
    padding: 8px 35px 8px 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 14px;
}

.search-icon {
    position: absolute;
    right: 10px;
    top: 7px;
    font-size: 17px;
    cursor: pointer;
    color: #555;
}


/* override */
/* ================= HEADER ================= */
.main-header {
    width: 100%;
    background: #fff;
    direction: rtl;
}

.header-row {
    text-align: center;
}

.header-item {
    background: #007bff;
    padding: 15px 0;
}

.header-item a {
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    display: block;
    transition: 0.3s;
}

.header-item a:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Popup Menu */
.popup {
    background: #e3f0ff;
}

.popup .dropdown-item {
    font-size: 15px;
}

.popup .dropdown-item:hover {
    background: #d0e6ff;
}

/* ================= SUB NAVBAR ================= */

.sub-navbar {
    background: #ffffff;
    padding: 10px 0;
    border-bottom: 1px solid #e3e3e3;
    direction: rtl;
}

.nav-logo {
    width: 50px;
    height: auto;
}

/* Desktop Menu */
.nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.nav-list li a {
    text-decoration: none;
    color: #000;
    font-size: 14px;
    transition: 0.3s;
}

.nav-list li a:hover {
    color: #007bff;
}

/* SEARCH BOX */
.search-box {
    position: relative;
    width: 70%;
}

.search-box input {
    width: 100%;
    padding: 8px 35px 8px 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 10px;
}

.search-icon {
    position: absolute;
    right: 10px;
    top: 7px;
    font-size: 17px;
    cursor: pointer;
    color: #555;
}

/* ========================================= */
/* RESPONSIVE HEADER                         */
/* ========================================= */

@media (max-width: 768px) {
    .header-row {
        display: block;
    }

    .header-item {
        width: 100%;
        border-bottom: 1px solid #fff;
    }
}

/* ========================================= */
/* RESPONSIVE NAVBAR (Hamburger)             */
/* ========================================= */

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #007bff;
    display: block;
    transition: 0.3s;
}

/* Hamburger Animation */
.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Hide menu on mobile */
@media (max-width: 992px) {
    /* Hide menu + search */
    .nav-list {
        display: none;
        flex-direction: column;
        background: white;
        padding: 20px;
        border-radius: 0 0 12px 12px;
        box-shadow: 0 6px 18px rgba(0,0,0,0.1);
        margin-top: 10px;
    }

    .nav-list.open {
        display: block;
    }

    .search-box {
        display: none;
    }

    .hamburger {
        display: flex;
    }
}
/* ================= SLIDESHOW ================= */
/* .hospital-slideshow {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-image: var(--bg);
    filter: blur(3px);
    transform: scale(1);
    opacity: 0;
    transition: opacity 1s ease-in-out;
    animation: zoomIn 12s infinite;
}

.slide.active {
    opacity: 1;
}

@keyframes zoomIn {
    0% { transform: scale(1); }
    100% { transform: scale(1.15); }
}

/* Clear center content */
/* .slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
}

.slide-center-img {
    width: 300px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0,0,0,0.4);
}

.slide-content h3 {
    margin-top: 15px;
    font-size: 22px;
    color: #fff;
    text-shadow: 0 0 8px rgba(0,0,0,0.7);
    position: relative;
    z-index: 11;
} */ 



.hero-slider {
    position: relative;
    height: 80vh;
    overflow: hidden;
    direction: rtl;
  }
  
  .slides .slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 1s ease, transform 1s ease;
  }
  
  .slides .slide.active {
    opacity: 1;
    transform: translateX(0);
  }
  
  .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to left, rgba(37, 37, 37, 0.4), rgba(37, 37, 37,0.6));
  }
  
  .content {
    position: absolute;
    right: 5%;
    bottom: 20%;
    color: #fff;
    max-width: 40%;
    animation: fadeLTR 1.8s ease forwards;
    opacity: 0;
  }
  
  @keyframes fadeLTR {
    0% { opacity: 0; transform: translateX(40px); }
    100% { opacity: 1; transform: translateX(0); }
  }
  
  .content h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    font-weight: bold;
  }
  
  .content p {
    font-size: 1.3rem;
    margin-bottom: 20px;
  }
  
  .btn {
    padding: 12px 28px;
    background: #0073ff;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    transition: 0.3s;
  }
  
  .btn:hover {
    background: #005fd0;
  }
  
  /*** Pagination Dots ***/
  .pagination {
    position: absolute;
    bottom: 25px;
    right: 50%;
    transform: translateX(50%);
    display: flex;
    gap: 8px;
  }
  
  .pagination div {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.6);
    cursor: pointer;
    transition: 0.3s;
  }
  
  .pagination .active {
    background: #fff;
    transform: scale(1.2);
  }
  
  /*** Parallax ***/
  .slide[data-bg] {
    background-attachment: fixed;
  }
  
  /*** Mobile ***/
  @media(max-width: 768px) {
    .content { max-width: 90%; right: 5%; bottom: 15%; }
    .content h1 { font-size: 2rem; }
    .content p { font-size: 1.1rem; }
  }
  
/* service section */
.info-cards {
    display: flex;
    gap: 25px;
    margin: 50px auto;
    justify-content: center;
    direction: rtl;
  }
  
  .card {
    background: #ffffff;
    padding: 35px 25px;
    width: 300px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    transition: 0.3s ease;
  }
  
  .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.12);
  }
  
  .card .icon {
    font-size: 60px;
    color: #0073ff;
    margin-bottom: 20px;
  }
  
  .card h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
    color: #003f80;
    font-weight: bold;
  }
  
  .card p {
    color: #444;
    font-size: 1rem;
    line-height: 1.7;
  }
  
  /*** Responsive ***/
  @media(max-width: 900px) {
    .info-cards {
      flex-direction: column;
      align-items: center;
    }
  
    .card {
      width: 90%;
    }
  }

  /* about */
  .circle-info-section {
    background-color: #a2b5cc;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    padding: 70px 5%;
    direction: rtl;
}

/* RIGHT SIDE -------------------------- */

.ci-right {
    width: 45%;
}

.ci-right h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #003c80;
}

.ci-right p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #333;
    margin-bottom: 25px;
}

.ci-btn {
    background: #007bff;
    padding: 12px 28px;
    border-radius: 8px;
    color: #fff;
    font-size: 1.1rem;
    text-decoration: none;
    transition: 0.3s;
}

.ci-btn:hover {
    background: #0056c7;
}

/* LEFT SIDE --------------------------- */

.ci-left {
    width: 45%;
    display: flex;
    justify-content: center;
}

.circle-box {
    position: relative;
    width: 330px;
    height: 330px;
}

.big-circle {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px dashed #bcd6ff;
    position: relative;
    animation: slow-rotate 25s linear infinite;
}

@keyframes slow-rotate {
    from { transform: rotate(0); }
    to { transform: rotate(360deg); }
}

.circle-item {
    width: 70px;
    height: 70px;
    background: #ffffff;
    border-radius: 50%;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 0 12px rgba(0,0,0,0.1);
    transition: 0.3s;
    font-size: 28px;
    color: #007bff;
}

/* place icons similar to Al-Mahdi */
.circle-item[data-index="1"] { top: -20px; left: 50%; transform: translateX(-50%); }
.circle-item[data-index="2"] { right: -20px; top: 50%; transform: translateY(-50%); }
.circle-item[data-index="3"] { bottom: -20px; left: 50%; transform: translateX(-50%); }
.circle-item[data-index="4"] { left: -20px; top: 50%; transform: translateY(-50%); }

.circle-item.active {
    background: #007bff;
    color: #fff;
    box-shadow: 0 0 18px rgba(0,123,255,0.6);
}

/* CONTENT SECTION ---------------------- */

.circle-content {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ci-content-item {
    position: absolute;
    text-align: center;
    opacity: 0;
    transition: 0.4s;
    transform: translateY(10px);
}

.ci-content-item.active {
    opacity: 1;
    transform: translateY(0);
}

.ci-content-item h3 {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.ci-content-item p {
    color: #444;
    font-size: 1rem;
}

/* Responsive */
@media(max-width: 900px) {
    .circle-info-section {
        flex-direction: column-reverse;
    }
    .ci-right, .ci-left {
        width: 100%;
    }
}

/* statistics */
.service-section {
    width: 100%;
    padding: 80px 0;
    background: #f7fbff; /* light hospital blue */
    direction: rtl;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  
  /* Title */
  .section-title h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 50px;
  }
  .section-title h2 span {
    background: #c9dcff;
    padding: 2px 10px;
    border-radius: 6px;
  }
  
  /* Images Layout */
  .service-images {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 60px;
  }
  
  .img-box {
    position: relative;
  }
  .img-box img {
    width: 100%;
    max-width: 480px;
    border-radius: 20px;
  }
  
  /* Floating Decorative SVG */
  .floating-svg {
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 130px;
    opacity: 0.8;
    animation: float 4s ease-in-out infinite;
  }
  @keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-14px); }
    100% { transform: translateY(0px); }
  }
  
  /* Reveal Animations */
  .reveal-right {
    opacity: 0;
    transform: translateX(80px);
    animation: revealRight 1s forwards;
  }
  .reveal-left {
    opacity: 0;
    transform: translateX(-80px);
    animation: revealLeft 1s forwards 0.3s;
  }
  @keyframes revealRight {
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  @keyframes revealLeft {
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  /* Stats */
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 40px;
    gap: 20px;
  }
  .stat-item {
    background: white;
    padding: 25px 10px;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.07);
  }
  .stat-item h3 {
    font-size: 36px;
    font-weight: 900;
    display: inline-block;
  }
  .plus {
    font-size: 30px;
    font-weight: bold;
    margin-right: 4px;
    color: #0066ff;
  }
  .stat-item p {
    margin-top: 8px;
    font-size: 18px;
    color: #333;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .stats-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  @media (max-width: 480px) {
    .stats-grid {
      grid-template-columns: 1fr;
    }
  }

  
/* about details */
.Al-Mahdi-about {
    padding: 80px 0;
    background: #f7faff;
    direction: rtl;
}

.Al-Mahdi-container {
    max-width: 1300px;
    margin: auto;
    display: flex;
    gap: 50px;
}

.about-text {
    width: 55%;
}

.about-text h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #111;
}

.about-text p {
    margin-bottom: 15px;
    line-height: 1.9;
    color: #333;
}

.about-text h4 {
    margin-top: 25px;
    font-size: 22px;
    color: #3A52C9;
}

.about-list {
    margin: 15px 0;
    padding-right: 20px;
}

.about-list li {
    margin-bottom: 8px;
    font-size: 16px;
}

.blue-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    background: #3A52C9;
    color: white;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.blue-btn:hover {
    background: #2c3daa;
}

.about-title-icon {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #3A52C9;
    margin-bottom: 20px;
    font-weight: bold;
}

/* --- IMAGE FEATURE BOXES --- */
.about-features {
    width: 45%;
    display: grid;
    gap: 20px;
}

.feature-box {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    height: 200px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.7s ease;
}

.feature-box:hover img {
    transform: scale(1.12);
    filter: brightness(0.7);
}

.feature-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 15px 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.55), rgba(0,0,0,0));
    color: white;
}

.feature-overlay i {
    font-size: 24px;
    margin-left: 10px;
}

.feature-overlay h5 {
    font-size: 18px;
    margin: 5px 0 0;
}

/* three seps */
.process-section {
  padding: 80px 0;
  background: #ffffff;
  direction: rtl;
}

.process-title span {
  color: #7a5cff;
  font-weight: bold;
  margin-right: 10px;
}

.process-title h2 {
  margin-top: 15px;
  font-size: 28px;
  font-weight: bold;
  color: #111;
}

/* Process Cards */
.process-card {
  background: #f7faff;
  text-align: center;
  padding: 40px 25px;
  border-radius: 18px;
  position: relative;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
  transition: 0.35s ease;
}

.process-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.10);
}

/* Badge */
.step-badge {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: #7a5cff;
  color: white;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  line-height: 45px;
  font-weight: bold;
  font-size: 18px;
}

/* Icons */
.process-icon img {
  width: 75px;
  height: 75px;
  margin-bottom: 20px;
}

/* Text */
.process-card h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #222;
}

.process-card p {
  color: #555;
  font-size: 15px;
}

/* different services */
.services-section {
  background: #0073ff; /* blue background */
  color: #fff;
  padding: 60px 0;
  direction: rtl;
  text-align: center;
}

.services-title {
  font-size: 2.4rem;
  margin-bottom: 40px;
  font-weight: bold;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
  padding: 0 20px;
}

.service-card {
  background: #f9fbff;
  border-radius: 14px;
  padding: 30px 20px;
  transition: transform 0.3s, box-shadow 0.3s;
  color: #003366;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.service-icon {
  font-size: 48px;
  margin-bottom: 18px;
  color: #0073ff;
}

.service-name {
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.4;
}

/* contact */
.contact-section {
  width: 100%;
  padding: 50px 20px;
  background: #e5e8ec; 
  direction: rtl;
  text-align: center;
}

.contact-container {
  max-width: 900px;
  margin: 0 auto;
}

/* TEXT */
.contact-text {
  margin-top: 30px;
}

.contact-subtitle {
  color: #111111;
  font-size: 20px;
  margin-bottom: 10px;
}

.contact-title {
  font-size: 34px;
  font-weight: 700;
  color: #111111;
}

.highlight {
  color: #111111; 
}

.contact-map-section {
  width: 100%;
  padding: 60px 20px;
  direction: rtl;
}

.map-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
}

/* LEFT SIDE */
.map-left {
  flex: 1;
  min-width: 320px;
}

.map-left iframe {
  width: 100%;
  height: 320px;
  border: 0;
  border-radius: 12px;
}

/* ROUTING BUTTONS */
.map-buttons {
  margin-top: 15px;
  display: flex;
  gap: 10px;
}

.map-btn {
  padding: 12px 22px;
  background: #115CFA;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  transition: 0.3s;
  font-size: 15px;
}

.map-btn:hover {
  background: #0a47c4;
}

/* RIGHT SIDE ICON BOXES */
.map-right {
  flex: 1;
  min-width: 280px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.contact-box {
  background: #f6f8ff;
  padding: 25px;
  text-align: center;
  border-radius: 14px;
  border: 1px solid #dce4ff;
  transition: 0.3s;
}

.contact-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.contact-box .icon {
  font-size: 42px;
  margin-bottom: 14px;
}

.contact-box h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #0a4fd0;
}

.contact-box p {
  font-size: 16px;
  color: #333;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .map-right {
      grid-template-columns: 1fr;
  }
}

/* FAQ */
.faq-section {
  padding: 70px 20px;
  direction: rtl;
  background: #ffffff;
}

.faq-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 40px;
  align-items: flex-start;
  flex-wrap: wrap;
}

/* RIGHT IMAGE */
.faq-image-box {
  flex: 1;
  min-width: 300px;
}

.faq-image {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
  transition: transform 6s ease-in-out;
}

/* Slow subtle movement */
.faq-image-box:hover .faq-image {
  transform: scale(1.08);
}

/* LEFT SIDE FAQ LIST */
.faq-list {
  flex: 1;
  min-width: 300px;
}

.faq-title {
  font-size: 28px;
  margin-bottom: 25px;
  color: #0A4FD0;
}

/* Accordion Items */
.faq-item {
  border-radius: 10px;
  margin-bottom: 12px;
  border: 1px solid #d7e2ff;
  overflow: hidden;
  background: #f7f9ff;
}

/* Questions */
.faq-question {
  width: 100%;
  background: #e9f0ff;
  color: #000;
  padding: 16px 18px;
  text-align: right;
  border: none;
  outline: none;
  cursor: pointer;
  font-size: 17px;
  position: relative;
  font-weight: 500;
}

.faq-question::after {
  content: "+";
  position: absolute;
  left: 18px;
  font-size: 24px;
  transition: 0.3s;
}

/* When open */
.faq-item.active .faq-question::after {
  content: "-";
}

/* Answers */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #fff;
  transition: max-height 0.35s ease;
  padding: 0 18px;
}

.faq-answer p {
  padding: 15px 0;
  color: #333;
  line-height: 1.8;
  font-size: 16px;
}

/* Responsive */
@media (max-width: 768px) {
  .faq-container {
      flex-direction: column-reverse;
  }

  .faq-image {
      height: auto;
  }
}

/* footer */
.main-footer {
  background: #333333;
  color: #fff;
  padding: 60px 20px 20px;
  direction: rtl;
  font-family: inherit;
}

.footer-container {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

/* Logo */
.footer-logo {
  width: 130px;
  margin-bottom: 15px;
}

.footer-desc {
  font-size: 15px;
  line-height: 1.9;
  opacity: 0.9;
}

/* Headings */
.footer-title {
  font-size: 20px;
  margin-bottom: 18px;
  font-weight: bold;
}

/* Contact list */
.footer-list li {
  font-size: 15px;
  line-height: 2.2;
  display: flex;
  gap: 6px;
}

/* Quick links */
.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #dfe8ff;
  font-size: 15px;
  text-decoration: none;
  transition: 0.25s;
}

.footer-links a:hover {
  padding-right: 6px;
  color: #ffffff;
}

/* Map */
.footer-map img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

/* Bottom bar */
.footer-bottom {
  text-align: center;
  padding-top: 25px;
  margin-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.25);
}

.footer-bottom p {
  font-size: 14px;
  opacity: 0.85;
}

/* Responsive */
@media (max-width: 900px) {
  .footer-container {
      grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .footer-container {
      grid-template-columns: 1fr;
      text-align: center;
  }

  .footer-list li,
  .footer-links li {
      justify-content: center;
  }

  .footer-map img {
      max-width: 300px;
      margin: auto;
  }
}
