@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

* {
  font-family: "Inter", sans-serif;
}

:root {
  --bbx-blue: #0056b3;
  --bbx-dark-blue: #003b7a;
  --bbx-light-blue: #e6f0ff;
  --bbx-font-color: #020842;
}

/* Utility Classes */
.bg-bbx-blue {
  background-color: var(--bbx-blue);
}

body {
  background-color: #e2effe;
}

.bg-bbx-dark-blue {
  background-color: var(--bbx-dark-blue) !important;
}

.text-bbx-blue {
  color: var(--bbx-blue);
}

/*===================================================================== Navigation Bar Styling */
.top-bar {
  background-color: #002366;
  color: white;
  font-size: 0.9rem;
  padding: 8px 0;
}

.custom-nav-radius {
  border: #838588 1px solid;
  border-radius: 40px 40px 0px 0px;
  background: white !important;
}

.header-bg {
  background: linear-gradient(to right, #001f3f, #0945e4);
}

.logo {
  max-height: 80px;
}

.navbar-nav .nav-link {
  padding: 10px 15px;
  font-weight: 500;
}

.navbar-nav .nav-link:hover {
  color: var(--bbx-blue);
}

.dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* ==================================================================== HeroSection */
/* Hero Section */

.hero-section {
  position: relative;
  padding: 100px 0;
  color: white;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../Images/About/header-bg.png") no-repeat center center;
  background-size: cover;
  background-position: center;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.custom-badge {
  display: inline-block;
  padding: 1px 0px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: bold;
  color: white;
  text-align: center;
  min-width: 50px;
}

.custom-badge.primary {
  background-color: #4797fd;
}

.custom-btn {
  background-color: #0044eb;
}

.custom-btn:hover {
  background-color: #004bcc;
}

/* ====================================================================== Video Display */
/* Video Section */
/* .video-section {
  position: relative;
  background-image: url("../Images/Team/Dr-lee-video.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  border-radius: 20px;
  margin: 20px 0;
  height: 600px;
  max-width: 100%;
  max-height: 100%;
  /* transform: translateY(-100px); */
/* } */
*/ .video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.video-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  /* background-color: rgba(255, 255, 255, 0.8); */
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 10;
}

.video-play-button i {
  color: var(--bbx-blue);
  font-size: 30px;
}

.video-link {
  transform: translateY(50vh);
}

/* ================================ */
.job-dropdown-container {
  max-width: 300px;
  margin: 1rem 118px 1rem auto;
  /* Aligns to the right with margin-right: 20px */
  position: relative;
  display: flex;
  justify-content: flex-end;
  /* Ensures content inside is right-aligned */
}

@media (max-width: 450px) {
  .job-dropdown-container {
    margin: 1rem 0 1rem 0;
  }
}

.custom-job-dropdown {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 16px;
}

.job-dropdown-label {
  font-weight: 500;
  color: #333;
  white-space: nowrap;
}

.job-dropdown-toggle {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid #ced4da;
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 16px;
  font-weight: 500;
  color: #333;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.job-dropdown-toggle:hover {
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(-1px);
}

.job-dropdown-toggle:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.3);
}

.job-dropdown-toggle::after {
  display: none;
}

.job-dropdown-arrow {
  transition: transform 0.3s ease;
  color: #666;
}

.job-dropdown-toggle[aria-expanded="true"] .job-dropdown-arrow {
  transform: rotate(180deg);
}

.job-dropdown-menu {
  background: rgba(255, 255, 255, 0.95);
  border: none;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  margin-top: 4px;
  padding: 6px;
  width: 200px;
  max-height: 300px;
  overflow-y: auto;
}

.job-dropdown-item {
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 15px;
  color: #333;
  transition: all 0.2s ease;
}

.job-dropdown-item:hover {
  background: rgba(102, 126, 234, 0.1);
  color: #667eea;
}

.job-dropdown-item.active {
  background: rgba(102, 126, 234, 0.15);
  color: #667eea;
  font-weight: 600;
}

.job-dropdown-menu::-webkit-scrollbar {
  width: 6px;
}

.job-dropdown-menu::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 3px;
}

.job-dropdown-menu::-webkit-scrollbar-thumb {
  background: rgba(102, 126, 234, 0.3);
  border-radius: 3px;
}

.job-dropdown-menu::-webkit-scrollbar-thumb:hover {
  background: rgba(102, 126, 234, 0.5);
}

.job-dropdown-menu {
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.job-dropdown-menu.show {
  opacity: 1;
  transform: translateY(0);
}

/* ==================================================================== Country */
.country-dropdown {
  width: 150px;
  display: inline-block;
  background-color: transparent;
  /* Light background for visibility */
  border: transparent;
  color: black;
}

.country-dropdown {
  width: 150px;
  display: inline-block;
  color: white !important;
  /* White text for selected option */
  background-color: #33333300;
  /* Dark background to match footer */
  border: 1px solid #55555500;
  border-radius: 4px;
  padding: 5px;
}

.country-dropdown:focus {
  outline: none;
  border-color: #777;
}

/* Styling for the dropdown options */
.country-dropdown option {
  background-color: #333;
  /* Dark background for options */
  color: white;
  /* White text for options */
}

/* ==================================================================== Footer */
/* Footer Section */
.bottom-footer-section {
  background: linear-gradient(to right, #0948ed, #0948ed);
}

.footer {
  background-color: #001845;
  color: white;
  padding: 60px 0 30px;
  border-radius: 0 0 30px 30px;
}

.footer-heading {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-bottom {
  font-size: 0.9rem;
  color: white;
  padding: 10px 0px;
  margin: 5px 10px;
  background: #0945e5;
  height: 50px;
}

.captcha-container {
  background: white;
  color: black;
  width: 215px;
  border-radius: 5px;
  padding: 0 5px;
}

.captcha-logo {
  height: 50px;
  width: 50px;
}

/* CTA Buttons */
.btn-bbx {
  background-color: white;
  color: var(--bbx-blue);
  border: 2px solid white;
  border-radius: 30px;
  padding: 8px 25px;
  font-weight: 500;
  transition: all 0.3s;
}

.btn-bbx:hover {
  background-color: transparent;
  color: white;
}

.btn-bbx-outline {
  background-color: transparent;
  color: white;
  border: 2px solid white;
  border-radius: 30px;
  padding: 8px 25px;
  font-weight: 500;
  transition: all 0.3s;
}

.btn-bbx-outline:hover {
  background-color: white;
  color: var(--bbx-blue);
}

.btn-bbx-blue {
  background-color: var(--bbx-blue);
  color: white;
  border: none;
  border-radius: 30px;
  padding: 8px 25px;
  font-weight: 500;
  transition: all 0.3s;
}

.btn-bbx-blue:hover {
  background-color: var(--bbx-dark-blue);
  color: white;
}

/* Newsletter Input */
.newsletter-input {
  border-radius: 30px 0 0 30px;
  border: none;
  padding: 10px 15px;
}

.newsletter-btn {
  border-radius: 0 30px 30px 0;
  background-color: var(--bbx-blue);
  color: white;
  border: none;
  padding: 10px 20px;
}

/* Back to top button */
.back-to-top {
  position: fixed;
  bottom: 50px;
  right: 20px;
  background-color: #0044eb;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 20%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 999;
}

.back-to-top:hover {
  background-color: var(--bbx-dark-blue);
}

/* ====================================== */
/* Dropdown Menu Customization */
.dropdown-menu {
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 15px;
}

.dropdown-item {
  padding: 8px 15px;
  transition: all 0.2s;
}

.dropdown-item:hover {
  background-color: var(--bbx-light-blue);
  color: var(--bbx-blue);
}

.parent {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(5, 1fr);
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.div1 {
  grid-area: 1 / 1 / 4 / 3;
}

.div2 {
  grid-area: 1 / 3 / 2 / 4;
}

.div3 {
  grid-area: 1 / 3 / 5 / 5;
}

.div4 {
  grid-area: 1 / 5 / 2 / 6;
}

.div5 {
  grid-area: 4 / 1 / 5 / 3;
}

.div6 {
  grid-area: 2 / 5 / 5 / 6;
}

/* ===== MOBILE NAV MENU ===== */
.offcanvas {
  max-width: 320px;
}

.mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav-list li {
  border-bottom: 1px solid var(--medium-gray);
}

.mobile-nav-list li a {
  display: block;
  padding: 1rem 0;
  color: var(--text-color);
  font-weight: 500;
}

.mobile-nav-list li a:hover {
  color: var(--primary-color);
}

.mobile-nav-list .dropdown-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-nav-list .dropdown-menu {
  position: static !important;
  border: none;
  box-shadow: none;
  padding-left: 1rem;
}

.mobile-nav-list .dropdown-item {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--medium-gray);
}

.mobile-nav-list .dropdown-item:last-child {
  border-bottom: none;
}

/* GENERAL RESET */
body {
  font-family: "Inter", "Segoe UI", sans-serif;
  scroll-behavior: smooth;
}

/* TOP BAR */
.top-bar {
  background: linear-gradient(to right, #001f3f, #0945e4);
  color: white;
  font-size: 0.85rem;
  padding: 0.4rem 1rem;
  box-shadow: 0 1px 4px rgba(27, 19, 19, 0.1);
}

.top-bar a {
  color: #fff;
  text-decoration: underline;
}

.top-bar i {
  font-size: 0.6rem;
}

/* NAVBAR */
.navbar {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  background-color: #ffffffcc;
  backdrop-filter: blur(6px);
  border-bottom: 1px solid #e5e5e5;
}

.logo {
  max-height: 48px;
}

/* NAV LINKS */
.navbar-nav .nav-link {
  font-weight: 500;
  color: #020842;
  margin-right: 0.75rem;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
  color: #007bff;
}

/* DROPDOWN */
.dropdown-menu {
  border-radius: 10px;
  padding: 0.5rem;
  border: 1px solid #eaeaea;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.dropdown-item {
  font-size: 0.95rem;
  padding: 0.5rem 1rem;
}

.dropdown-item:hover {
  background-color: #f8f9fa;
  color: #0044eb;
}

/* BUTTON */
.btn-outline-primary {
  border-radius: 2rem;
  font-weight: 500;
  padding: 0.5rem 1.2rem;
  transition: all 0.3s ease-in-out;
}

.btn-outline-primary:hover {
  background-color: #007bff;
  color: #fff;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  .top-bar .w-75,
  .navbar .w-75 {
    width: 100% !important;
    padding: 0 1rem;
  }

  .top-bar .d-flex {
    flex-direction: row;
    align-items: center;
    gap: 0.4rem;
  }

  .navbar-brand {
    margin: 0 auto;
    text-align: center;
  }

  .navbar-toggler {
    border: none;
    font-size: 1.25rem;
  }

  .navbar-collapse {
    background-color: #fff;
    padding: 1rem;
    border-radius: 0 0 15px 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  }

  .nav-link {
    text-align: center;
    padding: 0.5rem 0;
  }

  .btn.btn-outline-primary {
    width: 100%;
    margin-top: 0.8rem;
  }
}

.btn-custom-color {
  background-color: #0044eb;
  color: white;
}

.btn-custom-color:hover {
  color: #0044eb;
}

.dropdown-item:hover {
  background-color: #efecfd;
  border-radius: 12px;
  color: #007bff;
}

.footer-links {
  list-style: disc;
  color: #0044eb;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: white;
}

.new-dropdown-container {
  position: relative;
  z-index: 99999;
  width: 320px;
}

.new-dropdown-button {
  width: 80%;
  /* padding: 12px 16px; */
  background-color: transparent;
  color: white;
  border: none;
  border-radius: 4px 4px 0 0;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.2s ease;
}

/* .new-dropdown-button:hover {
    background-color: #1d4ed8;
} */

.new-dropdown-button.new-open {
  border-radius: 4px 4px 0 0;
}

.new-dropdown-arrow {
  transition: transform 0.2s ease;
  font-size: 12px;
}

.new-dropdown-button.new-open .new-dropdown-arrow {
  transform: rotate(180deg);
}

.new-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: white;
  border-top: none;
  border-radius: 10px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  max-height: auto;
  overflow-y: auto;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  z-index: 9999;
  transform: translateY(-5px);
  transition: all 0.2s ease;
}

.new-dropdown-menu.new-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.new-dropdown-item {
  padding: 12px 16px;
  color: #374151;
  cursor: pointer;
  font-size: 14px;
  transition: background-color 0.15s ease;
}

.new-dropdown-item:last-child {
  border-bottom: none;
}

.new-dropdown-item:hover {
  background-color: #f9fafb;
}

.new-dropdown-item.new-selected {
  background-color: #e5ecfd;
  border-radius: 12px;
  margin: 10px;
  color: #1d4ed8;
  font-weight: 500;
}

/* Custom scrollbar */
.new-dropdown-menu::-webkit-scrollbar {
  width: 6px;
}

.new-dropdown-menu::-webkit-scrollbar-track {
  background: #f3f4f6;
}

.new-dropdown-menu::-webkit-scrollbar-thumb {
  background: #d1d5db;
  border-radius: 3px;
}

.new-dropdown-menu::-webkit-scrollbar-thumb:hover {
  background: #9ca3af;
}

.new-language-dropdown-container {
  position: relative;
  width: 180px;
  margin-right: 100px;
}

.new-language-dropdown-button {
  width: 100%;
  padding: 12px 16px;
  background-color: transparent;
  color: white;
  border: none;
  border-radius: 4px 4px 0 0;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.2s ease;
}

/* .new-language-dropdown-button:hover {
    background-color: #1d4ed8;
} */

.new-language-dropdown-button.new-open {
  border-radius: 4px 4px 0 0;
}

.new-language-dropdown-arrow {
  transition: transform 0.2s ease;
  font-size: 12px;
}

.new-language-dropdown-button.new-open .new-language-dropdown-arrow {
  transform: rotate(180deg);
}

.new-language-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: white;
  /* border: 1px solid #e5e7eb; */
  border-top: none;
  border-radius: 10px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  max-height: 350px;
  overflow-y: auto;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-5px);
  transition: all 0.2s ease;
  z-index: 9999;
}

.new-language-dropdown-menu.new-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.new-language-dropdown-item {
  padding: 12px 16px;
  color: #374151;
  cursor: pointer;
  font-size: 14px;
  /* border-bottom: 1px solid #f3f4f6; */
  transition: background-color 0.15s ease;
}

.new-language-dropdown-item:last-child {
  border-bottom: none;
}

.new-language-dropdown-item:hover {
  background-color: #f9fafb;
}

.new-language-dropdown-item.new-selected {
  background-color: #e5ecfd;
  border-radius: 12px;
  margin: 10px;
  color: #1d4ed8;
  font-weight: 500;
}

/* Custom scrollbar */
.new-language-dropdown-menu::-webkit-scrollbar {
  width: 6px;
}

.new-language-dropdown-menu::-webkit-scrollbar-track {
  background: #f3f4f6;
}

.new-language-dropdown-menu::-webkit-scrollbar-thumb {
  background: #d1d5db;
  border-radius: 3px;
}

.new-language-dropdown-menu::-webkit-scrollbar-thumb:hover {
  background: #9ca3af;
}

/* New Footer Country Dropdown */
.new-footer-country-container {
  position: absolute;
  width: 180px;
  display: inline-block;
  z-index: 9999;
  background-color:#0948ED ;
}

.new-footer-country-button {
  width: 100%;
  padding: 12px 16px;
  background-color: transparent;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 9999;
  transition: background-color 0.2s ease;
}

.new-footer-country-button.new-footer-open {
  border-radius: 4px;
}

.new-footer-country-arrow {
  transition: transform 0.2s ease;
  font-size: 12px;
}

.new-footer-country-button.new-footer-open .new-footer-country-arrow {
  transform: rotate(180deg);
}

.new-footer-country-menu {
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  background-color: white;
  border: 1px solid #e5e7eb;
  border-bottom: none;
  border-radius: 4px 4px 0 0;
  box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1);
  max-height: 250px;
  border-radius: 10px;
  overflow-y: auto;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(5px);
  transition: all 0.2s ease;
  z-index: 9999;
}

.new-footer-country-menu.new-footer-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.new-footer-country-item {
  padding: 12px 16px;
  color: #374151;
  cursor: pointer;
  font-size: 14px;
  border-top: 1px solid #f3f4f6;
  transition: background-color 0.15s ease;
  z-index: 9999;
}

.new-footer-country-item:first-child {
  border-top: none;
}

.new-footer-country-item:hover {
  background-color: #f9fafb;
}

.new-footer-country-item.new-footer-selected {
  background-color: #e5ecfd;
  border-radius: 12px;
  margin: 10px;
  color: #1d4ed8;
  font-weight: 500;
  z-index: 9999;
}

/* Custom scrollbar */
.new-footer-country-menu::-webkit-scrollbar {
  width: 6px;
}

.new-footer-country-menu::-webkit-scrollbar-track {
  background: #f3f4f6;
}

.new-footer-country-menu::-webkit-scrollbar-thumb {
  background: #d1d5db;
  border-radius: 3px;
}

.new-footer-country-menu::-webkit-scrollbar-thumb:hover {
  background: #9ca3af;
}

@media screen and (max-width: 768px) {
  .new-language-dropdown-container,
  .just-text {
    display: none;
    /* Hide element on mobile */
  }

  .new-dropdown-container {
    width: 220px;
    /* Hide element on mobile */
  }

  .new-language-dropdown-container {
    position: relative;
    width: 180px;
    margin-right: 0px;
  }

  .new-dropdown-button {
    width: 90%;
  }

  .navbar-brand {
    margin: 0;
    text-align: center;
  }
}

.video-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  /* background-color: rgba(255, 255, 255, 0.8); */
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 10;
}

/* ===========================================Global Declaration */
.font-primary-color {
  color: var(--bbx-font-color) !important;
}

.font-secondary-color {
  color: #0057a7;
}

.paragraph-font {
  color: #49515b;
}

.paragraph-font-bold-text {
  color: #020842 !important;
}

.number-font {
  font-family: "Oswald", sans-serif;
  color: #0044eb;
}

.btn-primary-bg {
  background-color: #0044eb;
  color: white;
  border: none;
}

.btn-primary-bg:hover {
  background-color: #0059ff;
  color: white;
}

.btn-secondary-bg {
  background-color: white;
  color: #0044eb !important;
  border: none;
}

.btn-secondary-bg:hover {
  color: #439eff;
  background-color: #fff;
}

/* ==================================================Accordion CSS */

.accordion {
  /* max-width: 900px; */
  margin: auto;
  background: #fff;
  /* border-radius: 8px; */
  /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
}

.accordion-item {
  border: 0;
}

.accordion-header {
  cursor: pointer;
  padding: 20px;
  font-weight: bold;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.icon-box {
  width: 28px;
  height: 28px;
  line-height: 28px;
  text-align: center;
  border-radius: 4px;
  background-color: #ccc;
  font-size: 20px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.accordion-header.active .icon-box {
  background-color: #0044eb;
  color: white;
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 20px;
  border-radius: 5px;
  background: #f1f6fc;
}

.accordion-body.open {
  padding: 20px;
  max-height: 500px !important;
}

.accordion-body .answer {
  display: flex;
  align-items: flex-start;
}

.answer-icon {
  font-size: 30px;
  font-weight: bolder;
  margin-right: 12px;
  transform: translateY(-10px);
}

.subscribe-container {
    background-color: white;
    padding: 10px 20px;
    border-radius: 35px;
    display: flex;
    align-items: center;
    width: fit-content;
    margin: 0 auto;
    
    white-space: nowrap;
}

.subscribe-input {
  border: none;
  background: none;
  color: white;
  font-family: Arial, sans-serif;
/*  padding: 5px;*/
  outline: none;
  width: 100px;
}

.subscribe-button {
    background-color: #0044eb;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    /*  margin-left: -47px;*/
    font-family: Arial, sans-serif;
}

.subscribe-button:hover {
  background-color: #104e8b;
}

.fa-envelope {
  color: black;
  margin-right: 10px;
}

/* Default for extra-small devices (mobile) */
.col-lg-3 {
  width: 100%;
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
  .col-lg-3 {
    width: 50%;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .col-lg-3 {
    width: 33.33%;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .col-lg-3 {
    width: 25%;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .col-lg-3 {
    width: 22%; /* Your original width */
  }
}
