* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  list-style: none;
}

:root {
  --primary-color: #e20000;
  --lighter-pry-color: #e2e6f9;
  --second-color: #a0615f;
  --text-color: #000000;
  --title-color: #27408b;
  --container-bg-color: #f4f6f9;
  --border-color: #cccccc;
  --body-bg-color: #ffffff;

  --header-height: 3.5rem;
  --normal-font-size: 0.938rem;

  --font-regular: 400;
  --font-semi-bold: 600;

  /* ------z index---------- */
  --z-tooltip: 10;
  --z-fixed: 100;
}

body {
  font-family: "Poppins", sans-serif;
  font-size: var(--normal-font-size);
  background: var(--body-bg-color);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

.container {
  margin-inline: 1.5rem;
  max-width: 1120px;
}

.section {
  padding: 3rem 9% 2rem;
}

.header-1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #6F7779;
  left: 0;
  min-width: 320px;
  position: sticky;
  right: 0;
  top: 0;
  z-index: 1000;
  padding: 10px 9%;
  background: #6F7779;
  width: 100%;
  transition: top 0.3s;
}

.main-logo img {
  width: 180px;
}

.nav_button {
  display: flex;
  align-items: center;
}

.log_btn i {
  display: none;
}

.nav-btn_a {
  position: relative;
  padding: 10px 25px;
  color: var(--body-bg-color);
  font-size: 14px;
  width: 100%;
  text-align: center;
  border-radius: 20px;
  margin: auto;
  font-weight: 500;
  transition: all 0.3s ease;
  border: none;
  height: 48px;
  min-width: 189px;
  z-index: 1;
}

.nav-btn {
  padding: 10px 25px;
  color: var(--primary-color);
  font-size: 14px;
  width: 100%;
  border-radius: 20px;
  margin-left: 10px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.header-2 {
  position: fixed;
  top: 4rem;
  left: 0;
  width: 100%;
  padding: 0px 9%;
  box-shadow: 0 2px 8px hsla(220, 68%, 12%, 0.2);
  background-color: #fff;
  z-index: 999;
  transition: opacity 0.3s ease, top 0.3s ease;
}

.nav {
  height: var(--header-height);
}

.nav_data {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav_logo {
  display: inline-flex;
  align-items: center;
  font-size: 1rem;
  font-weight: 500;
  column-gap: 0.25rem;
  color: var(--title-color);
  font-size: var(--font-semi-bold);
  transition: color 0.3s;
}

.goog-te-gadget-simple img {
  display: none;
}

.goog-te-gadget-simple {
  border-radius: 10px;
}

.goog-te-gadget-simple span a {
  text-decoration: none;
  list-style: none;
}

.nav_logo i {
  font-size: 1.25rem;
}

.nav_logo:hover {
  color: var(--second-color);
}

.nav_toggle {
  position: relative;
  width: 32px;
  height: 32px;
}

.nav_toggle-menu,
.nav_toggle-close {
  font-size: 1.25rem;
  color: var(--text-color);
  position: absolute;
  display: grid;
  place-items: center;
  inset: 0;
  cursor: pointer;
  transition: opacity 0.1s transform 0.4s;
}

.nav_toggle-close {
  opacity: 0;
}

.home {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  background-size: cover;
  background-position: center;
  background-color: #fff;
  margin-top: 3rem;
  padding-top: 80px;
  color: #fff;
}

.home-img img {
  width: 40vw;
}

.home-content h1 {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.3rem;
  color: #000;
}

.home-content h3 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #e20000;
  line-height: 1.2;
}

.home span {
  color: var(--second-color);
}

.home-content p {
  font-size: 1rem;
  width: 100%;
  margin-top: 1rem;
  margin-bottom: 2rem;
  color: #000;
}

.home-btn {
  display: inline-block;
  padding: 1rem 3rem;
  background: #e20000;
  color: var(--container-bg-color);
  font-size: 16px;
  border-radius: 4rem;
  margin-top: 1rem;
  font-weight: 500;
  letter-spacing: 0.1rem;
  transition: all 0.5s ease;
}

.home-btn:hover {
  background: var(--title-color);
  font-weight: 600;
}

@media screen and (max-width: 1118px) {
  .nav_menu {
    background-color: #fff;
    position: absolute;
    left: 0;
    top: 2.5rem;
    width: 100%;
    height: calc(100vh - 3.5rem);
    overflow: auto;
    padding-block: 1.5rem 4rem;
    pointer-events: none;
    opacity: 0;
    transition: top 0.4s, opacity 0.3s;
  }
  .nav_menu::-webkit-scrollbar {
    width: 0.5rem;
  }
  .nav_menu::-webkit-scrollbar-thumb {
    background-color: hsl(220, 12%, 70%);
  }
}

.nav_link {
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
  padding: 1.25rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s;
}

.nav_link:hover {
  background-color: #403d3a;
  color: #fff;
}

.nav_link:hover i {
  color: #e20000;
}

.show-menu {
  opacity: 1;
  top: 3.5rem;
  pointer-events: initial;
}

.show-icon .nav_toggle-menu {
  opacity: 0;
  transform: rotate(90deg);
}

.show-icon .nav_toggle-close {
  opacity: 1;
  transform: rotate(90deg);
}

.dropdown_button {
  cursor: pointer;
}

.dropdown_arrow {
  font-size: 1.5rem;
  font-weight: initial;
  transition: transform 0.4s;
}

.dropdown-content,
.dropdown-group,
.dropdown-list {
  display: grid;
}

.dropdown-container {
  background-color: #403d3a;
  height: 0;
  overflow: hidden;
  transition: height 0.4s;
}

.dropdown-content {
  row-gap: 1.75rem;
}

.dropdown-group {
  padding-left: 2.5rem;
  row-gap: 0.5rem;
}

.dropdown-group:first-child {
  margin-top: 1rem;
}

.dropdown-group:last-child {
  margin-bottom: 1.25rem;
}

.dropdown-title {
  font-size: 11px;
  text-transform: uppercase;
  font-weight: var(--font-semi-bold);
  color: #e20000;
}

.dropdown-list {
  row-gap: 0.25rem;
}

.dropdown-link {
  font-size: 12px;
  font-weight: 400;
  color: #fff;
  transition: color 0.3s;
}

.dropdown-link:hover {
  color: #e20000;
}

.show-dropdown .dropdown_arrow {
  transform: rotate(180deg);
}

.bank-accounts {
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  max-width: 100%;
}

.bank-acc-container {
  display: flex;
  align-items: center;
  width: 1200px;
  background-color: #f1f2f5;
  flex-direction: column;
  padding: 30px 40px;
}

.bank-acc-container h2 {
  margin-bottom: 50px;
  font-size: 20px;
  font-weight: 400;
}

.bank-acc-container h2 span {
  font-weight: 700;
  color: #e20000;
}

.acc-box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  width: 90%;
  max-width: 1200px;
}

.bank-box {
  text-decoration: none;
  text-align: center;
  background-color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 30px 32px;
  border: 1px solid #8b8a8a;
  border-radius: 1px;
  transition: background-color 0.3s;
}

.bank-box a {
  text-decoration: none;
  list-style: none;
}

.icon {
  margin-bottom: 10px;
}

.icon i {
  font-size: 1.5rem;
  color: #e20000;
}

.title {
  margin-bottom: 10px;
  font-size: 1.2rem;
  color: #0c0d0c;
}

.bank-box:hover {
  border: 1px solid #e20000;
}
.bank-box:hover .title {
  color: #e20000;
}

.acc-text {
  font: 14px;
  color: #000;
}

.icons-section {
  width: 100%;
  margin-top: -5rem;
}

.icons-section h1 {
  text-align: center;
  padding-top: 5%;
  font-size: 60px;
  font-weight: 600;
  margin-bottom: 20px;
}

.icons-section p {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 30px;
}

.icons-section p span a {
  color: var(--primary-color);
}

.icons-section p span a:hover {
  text-decoration: underline;
}

.icon-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(50px, 1fr));
  grid-gap: 5px;
}

.icon-service {
  text-align: center;
  padding: 25px 10px;
  border-radius: 5px;
  font-size: 14px;
  cursor: pointer;
  background: transparent;
}

.imag {
  margin-bottom: 0;
  padding-bottom: 0;
}

.imag img {
  filter: grayscale(100%);
}

.icon-service a {
  margin-top: -30px;
  color: var(--title-color);
  font-size: 14px;
  font-weight: 500;
}

.icon-service:hover .imag img {
  filter: grayscale(0);
}

.helping {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 20px;
}

.help-content {
  padding: 20px 30px;
  background: #f2f2f2;
  height: auto;
  display: flex;
  align-items: left;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  width: 100%;
  max-width: 600px;
  box-sizing: border-box;
}

.help-content h2 {
  margin: 0px 0px 8px;
  font-size: 32px;
}

.help-content p {
  font-size: 15px;
  padding: 0px 0px 0px 11.25px;
  text-align: left !important;
}

.help-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  margin-top: 20px;
}

.help-box {
  background: #fff;
  border: 1px solid #ddd;
  padding: 10px 0px;
  text-align: center;
}

.help-text {
  font-size: 16px;
  color: #333;
}

.help-title {
  font-size: 24px;
  margin-bottom: 10px !important;
  color: #e20000;
  font-weight: 600;
}

.help-icon {
  font-size: 32px;
  margin-bottom: 10px !important;
  margin-top: 20px !important;
  color: #e20000;
}

.help-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  overflow: hidden;
  max-width: 600px;
  margin-bottom: 20px;
}

.help-img img {
  width: 100%;
  height: auto;
}



.bank {
  position: relative;
  display: flex;
  align-items: center;
  gap: 50px;
  justify-content: center;
  margin-bottom: 2rem;
  background-size: cover;
  background-position: center;
  background-color: #f7f7f7;
  margin-top: 3rem;
  padding-top: 80px;
  color: #fff;
}


.bank-img img {
  width: 40vw;
}

.bank-content h1 {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.3rem;
  color: #000;
}

.bank-content h3 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #e20000;
  line-height: 1.2;
}

.bank span {
  color: var(--second-color);
}

.bank-content p {
  font-size: 1rem;
  width: 100%;
  margin-top: 1rem;
  margin-bottom: 2rem;
  color: #000;
}

.bank-btn {
  display: inline-block;
  padding: 1rem 3rem;
  background: #e20000;
  color: #fff;
  font-size: 16px;
  border-radius: 4rem;
  margin-top: 1rem;
  font-weight: 500;
  letter-spacing: 0.1rem;
  transition: all 0.5s ease;
}

.bank-btn:hover {
  background: #292828;
  font-weight: 600;
}

.business {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 20px;
}

.business-content {
  padding: 20px 40px;
  background: #f2f2f2;
  height: auto;
  display: flex;
  align-items: left;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  width: 100%;
  max-width: 600px;
  box-sizing: border-box;
}

.business-content h2 {
  margin: 0px 0px 8px;
  font-size: 32px;
}

.business-content h4 {
  margin: 0px 0px 8px;
  font-size: 18px;
  color: #8b8a8a;
}

.business-content p {
  font-size: 15px;
  padding: 0px 0px 0px 11.25px;
  text-align: left !important;
}

.help-btn {
  display: inline-block;
  padding: 10px 20px;
  background: #e20000;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  border-radius: 4rem;
  margin-top: 1rem;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.1rem;
  transition: all 0.5s ease;
}

.business-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  overflow: hidden;
  max-width: 600px;
  margin-bottom: 20px;
}

.business-img img {
  width: 100%;
  height: auto;
}

.loan {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: #f6f6f6;
}

.loan-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  overflow: hidden;
  max-width: 600px;
  margin-bottom: 20px;
}

.loan-img img {
  width: 100%;
  height: auto;
}

.loan-content {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 20px;
}

.loan-container {
  display: flex;
  gap: 50px;
}

.loan-icon {
  font-size: 3rem;
  color: #e20000;
}

.loan-text {
  display: flex;
  flex-direction: column;
  max-width: 600px;
}

.loan-text h3 {
  margin: 0;
  font-size: 20px;
  margin-bottom: 20px;
}

.loan-text p {
  margin: 0;
  font-size: 14px;
}

.small-biz-accounts {
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  max-width: 100%;
}

.small-biz-container {
  display: flex;
  align-items: center;
  width: 1200px;
  background-color: #f1f2f5;
  flex-direction: column;
  padding: 30px 40px;
}

.small-biz-container h2 {
  margin-bottom: 50px;
  font-size: 20px;
  font-weight: 400;
}

.small-biz-acc-container h2 span {
  font-weight: 700;
  color: #e20000;
}

.small-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  width: 90%;
  max-width: 1200px;
}

.small-biz-box {
  text-decoration: none;
  text-align: center;
  background-color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 30px 32px;
  border: 1px solid #8b8a8a;
  border-radius: 1px;
  transition: background-color 0.3s;
}

.small-biz-box a {
  text-decoration: none;
  list-style: none;
}

.small-icon {
  margin-bottom: 10px;
}

.small-icon i {
  font-size: 1.5rem;
  color: #e20000;
}

.small-title {
  margin-bottom: 10px;
  font-size: 1.2rem;
  color: #0c0d0c;
}

.small-biz-box:hover {
  border: 1px solid #e20000;
}
.small-biz-box:hover .small-title {
  color: #e20000;
}

.small-text {
  font: 14px;
  color: #000;
}

.get-in-touch {
  margin-bottom: 1rem;
}

.get-in-touch .get-in-touch-heading {
  text-align: center;
  padding-bottom: 15px;
  font-size: 40px;
  color: #fff;
  margin-bottom: 0.5rem;
}

.get-in-touch .get-in-touch-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 10px;
}

.get-in-touch .get-in-touch-container .get-in-touch-box {
  border-radius: 10px;
  background: none;
  text-align: center;
  padding: 30px 20px;
}

.get-in-touch .get-in-touch-container .get-in-touch-box h3 {
  font-size: 16px;
  color: var(--first-color);
  padding: 10px 0;
}

.get-in-touch .get-in-touch-container .get-in-touch-box p {
  font-size: 15px;
  color: var(--text-color);
  padding: 10px 0;
}

.get-in-touch .get-in-touch-container .get-in-touch-box .btn {
  margin-top: 10px;
  display: inline-block;
  color: #000;
  font-size: 17px;
  border-radius: 5px;
  padding: 8px 25px;
  font-weight: 500;
  margin-top: 0;
}

.get-in-touch .get-in-touch-container .get-in-touch-box .btn:hover {
  color: var(--second-color);
  text-decoration: underline;
}

.book {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
}



.book-btn {
  display: inline-block;
  padding: 1rem 3rem;
  background: #e20000;
  color: #fff;
  font-size: 16px;
  border-radius: 4rem;
  margin-top: 1rem;
  font-weight: 500;
  letter-spacing: 0.1rem;
  transition: all 0.5s ease;
  text-decoration: none;
}

.book-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #2e2e2e;
  line-height: 1.2;
}

.book-content p {
  font-size: 1rem;
  margin-top: 1rem;
  margin-bottom: 2rem;
  color: #000;
}

.single-account {
  display: flex;
  flex-direction: column;
}

.account-heading {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding-left: 46px;
  margin-bottom: 30px;
}

.account-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  gap: 1rem;
}

.acc-card {
  width: calc(80% - 20px);
  background: #fff;
  text-align: center;
  padding: 15px 30px 30px 30px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
  margin-bottom: 20px;
}

.acc-top {
  height: 130px;
  background: #eb3b0a;
  color: #fff;
  padding: 12px 0 0 0;
  width: 100%;
}

.acc-top .acc-title {
  font-size: 26px;
  text-transform: uppercase;
  font-weight: 600;
}

.acc-price-sec {
  margin-top: -10px;
}

.acc-price-sec span {
  color: #fff;
}
.acc-price-sec .price {
  font-size: 40px;
}

.acc-details .plan {
  margin-top: 25px;
  font-size: 15px;
  font-weight: 600;
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.acc-details .plan span {
  font-weight: 400;
  color: #000000;
}

.acc-details .plan::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  left: 0;
  top: -12px;
  background: #ddd;
}

.acc-card button {
  height: 42px;
  display: block;
  outline: none;
  border: none;
  margin-top: 30px;
  width: 100%;
  color: #fff;
  border-radius: 4px;
  letter-spacing: 1px;
  background: #e20000;
  font-size: 18px;
  cursor: pointer;
}

.acc-card button:hover {
  background: #3a3a3c;
}

.account-text p {
  font-size: 16px;
  text-align: justify;
}






/* * ===============Trust Piloit Section ============= */

.reviews {
  background: #ddd;
}

.review-container {
  height: 100%;
  display: grid;
  place-items: center;
  padding: 5rem 3%;
  background: #fff;
  border-radius: 20px;
}

.reviews-wrapper {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.reviews-box {
  background: #f3f5fe;
  width: calc(33% - 10px);
  padding: 25px;
  border-radius: 3px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.15);
}

.reviews-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
}

.reviews-content .reviews-image {
  height: 35px;
  width: 100px;
  padding: 3px;
  background: transparent;
  border-radius: 5px;
}

.reviews-stars {
  display: flex;
}

.reviews-stars span {
  background-color: #00b67a;
  padding: 3px 4px;
  display: inline-flex;
  align-items: center;
  margin-right: 1px;
}

.reviews-stars span svg {
  width: 16px;
  height: 16px;
}

.reviews-stars span svg .tp-star__shape {
  fill: #fff;
}

.reviews-stars span:last-child {
  margin-right: 0;
}

.reviews-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 3px;
  border: none;
}

.reviews-image img {
  border-color: #fff;
}


/* * ===============Scroll Section ============= */

.scrollup {
  position: fixed;
  right: 1rem;
  bottom: -30%;
  background-color: var(--title-color);
  display: inline-flex;
  font-size: 1.35rem;
  padding: 0.35rem;
  border-radius: 0.25rem;
  color: var(--body-bg-color);
  z-index: var(--z-tooltip);
  transition: 0.3s;
}

.scrollup:hover {
  transform: translateY(-0.25rem);
  color: var(--lighter-pry-color);
}

.show-scroll {
  bottom: 5rem;
}

/* * ===============footer Section ============= */

footer {
  padding: 5rem 9% 2rem;
  display: flex;
  background: #6F7779;
}

.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 2rem;
}

.footer__title {
  font-size: 0.858rem;
  margin-bottom: 1rem;
  text-transform: capitalize;
  color: #e6e6e6;
}

.footer__links {
  list-style: none;
  padding: 0;
}

.footer__link {
  color: #fff;
  text-decoration: none;
  margin-bottom: 0.5rem;
  display: block;
  transition: color 0.3s;
}

.footer__link:hover {
  color: #e20000;
}

.footer-risk {
  border-top: 1px solid black;
  padding-top: 20px;
  text-align: justify;
}

.footer-risk p {
  margin-bottom: 1rem;
  font-size: 10px;
}

.footer-risk p span {
  font-size: 22px;
  color: #fff;
  font-weight: 500;
  letter-spacing: -1px;
}

.footer__social {
  display: flex;
  gap: 1rem;
}

.footer__social img {
  width: 35px;
  height: 35px;
  filter: grayscale(100%);
}
.footer__social .footer__social-link:hover img {
  filter: grayscale(0);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  padding: 1rem 0;
  border-top: 1px solid #444;
  border-bottom: 1px solid #444;
  margin-top: 2rem;
}

.footer-logo {
  height: 40px;
  filter: grayscale(100%);
}

.footer-bottom-links {
  display: flex;
  gap: 1rem;
}

.footer-bottom-links .footer__link {
  margin-bottom: 0;
}

/* ----------Scren BreakPoint------------- */

@media screen and (min-width: 1118px) {
  /* nav */
  .nav {
    height: 7rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
  }

  .nav_logo {
    display: initial;
  }

  .nav_toggle {
    display: none;
  }

  .nav_list {
    display: flex;
    column-gap: 3rem;
    height: 100%;
  }
  /* nav li {
        display: flex;
    } */
  .nav_link {
    padding: 0;
    text-transform: capitalize;
  }

  .nav_link:hover {
    background-color: initial;
  }

  /* --Dropdown-- */
  .dropdown_button {
    column-gap: 0.25rem;
    pointer-events: none;
  }

  .dropdown-container {
    height: max-content;
    position: absolute;
    left: 0;
    right: 0;
    top: 6.5rem;
    background-color: var(--body-bg-color);
    box-shadow: 0 6px 8px hsla(220, 68%, 12%, 0.05);
    pointer-events: none;
    opacity: 0;
    transition: top 0.4s opacity 0.3s;
  }

  .dropdown-content {
    grid-template-columns: repeat(4, max-content);
    column-gap: 6rem;
    max-width: 1120px;
    margin-inline: auto;
  }

  .dropdown-group {
    padding: 4rem 0;
    align-content: baseline;
    row-gap: 1.25rem;
  }
  .dropdown-group:first-child,
  .dropdown-group:last-child {
    margin: 0;
  }

  .dropdown-list {
    row-gap: 0.75rem;
  }
  .dropdown-title {
    font-size: 13px;
    color: #000;
  }
  .dropdown-link {
    font-size: 12px;
    font-weight: 500;
    color: #2c2c30;
  }
  .dropdown-link:hover {
    color: #e20000;
  }
  .dropdown_item {
    cursor: pointer;
  }

  /* Rotate dropdown icon */
  .dropdown_item:hover .dropdown_arrow {
    transform: rotate(180deg);
  }

  /* Show dropdown menu */
  .dropdown_item:hover > .dropdown-container {
    top: 4rem;
    opacity: 1;
    pointer-events: initial;
    cursor: initial;
  }

  .dropdown_arrow {
    display: none;
  }
}

@media screen and (min-width: 1152px) {
  .container {
    margin-inline: auto;
  }
}

@media screen and (max-width: 1070px) {
  .header-1 {
    padding: 20px 5%;
  }

  .section {
    padding: 2rem 3%;
  }

  .reviews-box {
    width: calc(50% - 10px);
    margin: 10px 0;
  }
}

@media screen and (max-width: 667px) {
  .header-2 {
    top: 6rem;
  }

  .main-logo {
    width: 40px;
    margin-right: 3px;
  }

  .nav_button a {
    display: none;
    padding: 6px 14px;
    margin-right: 8px;
    font-size: 10px;
  }

  #menu-icon {
    margin-right: 1px;
  }

  #google_translate_element {
    width: 25px;
  }

  .log_btn i {
    display: block;
    color: #e20000;
    font-size: 25px;
    margin-right: 15px;
  }

  .home {
    flex-direction: column;
  }

  .home-content {
    order: 2;
    padding: 1rem;
    text-align: center;
  }

  .home-content h1 {
    font-size: 1rem;
  }

  .home-content h3 {
    font-size: 2rem;
  }

  .home-content p {
    font-size: 0.9rem;
    text-align: center;
  }

  .home-img img {
    width: 90vw;
    margin-top: 4rem;
  }

  .icon-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .icons-section h1 {
    font-size: 30px;
  }

  .icons-section p {
    font-size: 15px;
  }


  .footer-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer__title {
    font-size: 1.125rem;
  }

  .footer__link {
    margin-bottom: 0.75rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .footer-bottom-links {
    flex-direction: column;
    gap: 0.5rem;
  }

  .reviews-box {
    width: 100%;
  }

}

@media screen and (max-width: 300px) {
  .dropdown-group {
    padding-left: 1.5rem;
  }

  .news-article {
    flex: 1 1 100%;
  }
}

@media screen and (max-width: 667px) {
  .box {
    grid-template-columns: 1fr;
    width: 94%;
  }
  .bank-acc-container {
    width: 100%;
  }

  .bank-acc-container h2 {
    font-size: 16px;
  }

  .helping {
    flex-direction: column;
    overflow: hidden;
  }

  .help-grid {
    grid-template-columns: 1fr;
  }

  .help-content {
    align-items: center;
    text-align: center;
  }

  .help-box {
    padding: 10px 20px;
  }

  .help-img img {
    width: 100%;
  }

  .help-content h2 {
    margin: 0px 0px 8px;
    font-size: 20px;
  }

  .bank {
    flex-direction: column;
  }

  .bank-content {
    order: 2;
    padding: 1rem;
    text-align: center;
  }

  .bank-content h1 {
    font-size: 1rem;
  }

  .bank-content h3 {
    font-size: 2rem;
  }

  .bank-content p {
    font-size: 0.9rem;
    text-align: center;
  }

  .bank-img img {
    width: 90vw;
    margin-top: 4rem;
  }

  .business {
    flex-direction: column;
    overflow: hidden;
  }
  .business-content {
    align-items: center;
    text-align: center;
  }

  .business-box {
    padding: 10px 20px;
  }

  .business-img img {
    width: 100%;
  }

  .business-content h2 {
    margin: 0px 0px 8px;
    font-size: 20px;
  }

  .loan {
    flex-direction: column;
    overflow: hidden;
  }

  .loan-content {
    align-items: center;
    text-align: center;
  }

  .loan-img img {
    width: 100%;
  }

  .small-biz-container {
    width: 100%;
  }

  .small-biz-container h2 {
    font-size: 16px;
  }

  .small-box {
    grid-template-columns: 1fr;
  }

  .book{
    flex-direction: column;
    text-align: left;
  }

  .book-content h3 {
    font-size: 1.7rem;
  }

  .book-content p {
    font-size: 0.9rem;
    text-align: left;
  }

  .account-content {
    grid-template-columns: 1fr;
  }
  .account-text {
    text-align: justify;
  }
  .account-text h3 {
    font-size: 20px;
    color: #333;
  }
  
  .account-text p {
    font-size: 18px;
  }
    
    .acc-card {
      width: 70%; /* One card per row */
      margin-bottom: 20px;
    }
  
    .acc-details .plan {
      font-size: 14px;
    }
  
    .acc-card button {
      font-size: 16px;
    }
}
