@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@400;700;900&family=Lancelot&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&display=swap');
@import url('https://fonts.cdnfonts.com/css/glacial-indifference-2');
                

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    overflow:scroll;
    scroll-behavior: smooth;
}

body{
    background-color: #fff;
}

@media screen and (max-width: 599px) {
    /* HEADER ELEMENTS */
.header{
    border-bottom: 1.8px solid #000000;
    background-color: #c1c1c1;
    display: flex;
    flex-direction: row;
    justify-content: end;
    align-items: center;
    flex-shrink: 1;
    gap: 10px;
    flex-wrap: wrap;
    z-index: 100;
    position: sticky;
}

.headerContent{
    border: 1px solid #000;
    margin:1.5px;
    padding: 2px;
    cursor: pointer;
}

.logo{ 
    background-color: #000;
    margin-right: auto;
    /* flex-basis: 5.5rem;
    flex-shrink: 1; */
    border-radius: 100rem;
    width: 80px;
    height: 80px;
    flex-wrap: wrap;
}

.logo-letter{
    color: #ffff;
}

#circle_a{
    font-family: "Cinzel Decorative", serif;
    font-weight: bold;
    font-size: 3.3em;
    position: relative;
    left: 5px;
    top: -3px;
}

#circle_b{
    font-family: "Cinzel Decorative", serif;
    font-weight: bold;
    font-size: 2.9em;
    position: relative;
    left: 37px;
    top: -57px
}

.toggleBtn{
    z-index: 100;
    display: flex; 
    flex-direction: column; 
    justify-content: center;
}

.closeIcon{
    display: none;
}

.navLinks {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
  background: #909090;
  color: #000000;
  list-style: none;
  transform: translateY(-100%);
  transition: transform 0.3s ease-in-out;
  padding-top: 6.5em;
  display: block;
}

.showMenu {
  transform: translateY(0);
}

.navLinks li{
    font-size: 1.5em;
    text-transform: uppercase;
    font-family: "Lora", serif;
    padding: 0.5em;
    margin: 3px;
    border-bottom: 1px solid black;
}

.navItems{
    text-decoration: none;
    color:#000;
}

.navItems:active{
    background-color: #909090;
    padding: 0.3em;
    border-radius: 0.3em;
}

.navItems:hover{
    font-weight: bold;
    color: #c1c1c1;
    padding: 0.2em;
    border-radius: 0.2em;
}

/* MAIN ELEMENTS */

.businessOrPersonal{
    display:flex; 
    justify-content: space-between;
    background-color: #c1c1c1;
}

.businessOrPersonal div{
    width: 100%;
    padding: 1em;
    border: 1px solid black;
    align-self: center;
}

.personal,
.business{
    font-weight: 700;
    font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
    color: #000000;
    display: flex;
    justify-content: center;
    text-transform: uppercase;
    text-decoration: none;
}

.hero{
    padding-top: 1.5em;
    padding-bottom: 2rem;
    background-color: #c1c1c1;
    border-bottom-left-radius: 4em;
    border-bottom: 2px solid #909090;
    border-bottom-right-radius: 4em;
    padding-left: 1em;
    padding-right: 1em;
}

.geoStatus{
    display: flex;
    justify-content: center;
    align-content: center;
    flex-shrink: 1;
    margin-left: 1.5em; 
    margin-right: 1.5em; 
    background-color: #ffff;
    border-radius: 3em;
    padding: 1em;
}

.heroCTA{
    padding-top:0.71em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
}

.heroCTA h2{
    font-weight: 400;
    font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
    align-self: center;
    text-align: center;
    line-height: 1.3em;
}

.heroCTA p{
    line-height: 1.49em;
    text-align: center;
    font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
}

.heroCTA button{
    margin-top: 1rem;
    padding: 0.6em;
    background-color: #ffffff;
    align-self: center;
    border: 1px solid #a6a6a6;
    border-radius: 11px;
    font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
    text-transform: uppercase ;
    font-weight: 900;
    letter-spacing: 2px;
}

#accType{
  margin-top: 3em;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  gap: 3em;
}
.saverAcc,
.currentAcc{
    background-color: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 2rem;
    padding: 1rem;
    margin-left: 4rem;
    margin-right: 4rem;
    display: flex;
    flex-direction: column;
    gap: 0.5em;
}

.saverAcc h2,
.currentAcc h2{
  font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
  text-align: center;
  
}

.saverAcc p,
.currentAcc p{
  font-size: 14px; font-family: 'Glacial Indifference', 'Times New Roman', Times, serif; 
  color: #070707;
}

.currentAccImg,
.saverAccImg{
  display: flex;
  justify-content: center;
  align-items: center;
}

.currentAccImg img{
  width: 350px;
  height: 250px;
  object-fit: cover;
  border-top-left-radius: 2rem;
  border-top-right-radius: 2rem;
  border-bottom-right-radius: 9rem;
  /* border-bottom-left-radius: 5rem; */
  position: relative;
  top: -9px;
  /* right: 10px; */
}

.saverAccImg img{
  width: 350px;
  height: 250px;
  object-fit: cover;
  border-top-left-radius: 2rem;
  border-top-right-radius: 2rem;
  border-bottom-left-radius: 9rem;
  /* border-bottom-left-radius: 5rem; */
  position: relative;
  top: -9px;
  /* right: 10px; */
}

.currentAccCTA button,
.saverAccCTA button{
    border-radius: 3em;
    border: 1px solid #a6a6a6;
    background-color: #fff;
    padding: 0.7rem;
    font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
}

.joinUsImg{
  border-top-left-radius: 2rem;
  border-top-right-radius: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.joinUsImg img {
  width: 250px;
  height: 200px;
  position: relative;
  top: 0px;
  object-fit: cover;
}

.joinUsText{
  margin-left: 2.5em;
  margin-right: 2.5em;
  font-size: 14px; 
  font-family: 'Glacial Indifference', 'Times New Roman', Times, serif; 
  border-top: 1px solid  #c1c1c1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.30em;
}

.joinUsText h2{
  padding-left: 1em;
}

.joinUsText p{
  text-align: end;
  border-top-left-radius: 2em;
}

.cardContainer{
    background-color: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 2rem;
    padding: 1rem;
    margin-left: 2rem;
    margin-right: 2rem;
    display: block;
    position: relative;
    top: -15px;
    overflow: hidden;
}

.textContainer{
    background-color: #fff;
    padding: 1rem;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.textContainer h3{
    font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
    padding-bottom: 1em;
}

.textContainer p{
    font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
    padding-bottom: 0.51em;
    line-height: 1.4em;
}

  .investment {
    background-color: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-bottom-right-radius: 2rem;
    padding: 1rem;
    margin-top: 4.5em;
    margin-left: 4rem;
    margin-right: 4rem;
    display: flex;
    flex-direction: column;
    gap: 0.5em;
}

  .investmentImg {
    background-image: url('../icons/dashboard_24dp_E8EAED_FILL0_wght400_GRAD0_opsz24.svg');
    background-color: #e8eaed;
    border-radius: 2em;
    position:relative;
    top: -10px;
    width: 300px;
    height: 200px;
    background-repeat: repeat-y;
    background-size: contain;
    background-position: 90%;
    background-position: right;
  }
  .investmentImg img{
    width: 300px;
    height: 200px;
    object-fit: cover;
    object-position: center center;
    border-radius: 2em;
    position: relative;
    top: -34px;
    right: 60px;
    
    /* border-bottom-left-radius: 5rem; */
  }

  .investmentText {
    padding-top: 1em;
    text-align: justify;
    position: relative;
    top: -25px;
    right: -40px;
    display: flex;
    flex-direction: column;
    gap: 0.5em;
    font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
  }

  .investmentCTA button{
    border-radius: 3em;
    border: 1px solid #a6a6a6;
    background-color: #fff;
    padding: 0.7rem;
    font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
  }
  /* BANK CARDS */

  .bankCard{
    display: flex;
    flex-direction: column;
    place-items: center center;
  }
  .bankCards{
    height: 250px;
    max-height: 250px;
    display: flex;
    flex-direction: column;
    margin: auto
  }
  .backimg{
    position: relative;
    width: 300px;
    height: 400px;
    bottom: 30px;
  }

  .frontimg{
    position: relative;
    width: 300px;
    height: 400px;
    top: -400px;
    right: 30px;
  }

  .bankCardText{
    font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0.5em;
  }

  .bankCardText h2{
    text-align: center;
    padding-bottom: 0.2em;
  }

  .bankCardText p{
    padding-top: 0.2em;
    padding-right: 1.2em;
    padding-left: 1.2em;
  }

  .bankCardCTA{
    display: flex;
    flex-direction: row;
    justify-items: space-between;
    align-content: center;
  }
  .bankCardCTA button{
    cursor: pointer;
    font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
    background-color: #c1c1c1;
    padding: 0.7em;
    border: none;
    width: 120px;
    margin: 0.6em;
    border-radius: 0.6em;
  }

  .bankCardCTA a{
    cursor: pointer;
    background-color: red;
  }

  .featuresContainer{
    display: flex;
    gap: 1em;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }

  .features{
    border: 1px solid #909090;
  }

  .features img{
    width: 100px;
    height: 150px;
    margin-left: 25px;
  }

  .featuresText{
    background-color: #c1c1c1;
    padding: 0.50em;
    width: 100%;
    height: 100%;
    font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
  }

  .featuresText h3{
    height: 30px;
  }

  .swiper-container {
    margin: 20px auto;
    overflow: hidden;
  }
  
  .swiper-wrapper {
    display: flex;
    flex-wrap: nowrap;
  }
  
  .swiper-slide {
    flex-shrink: 0;
    flex-basis: 40%;
    margin: 7px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .swiper-slide-last {
    margin: 1px;
  }

  .swiper-slide img {
    width: 250px;
    height: 225px;
    object-fit: cover;
    border-radius: 10px;
  }
  
  .swiper-slideText {
    background-color: rgba(0, 0, 0, 0.1);
    width: 250px;
    padding: 10px;
    color: #000;
    height: 280px;
    border-radius: 1em;
  }

  .swiper-slideText-blog{
    color: #909090;
    font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
    font-size: 12px;
    display: flex;
    justify-content: space-between;
    align-content: center;
    gap: 1rem;
  }
  
  .swiper-slideText h2 {
    font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
    font-size: 18px;
    margin-bottom: 2px;
    height: 45px;
  }
  
  .swiper-slideText p {
    font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
    font-size: 14px;
  }

  .swiper-slideText button{
    background-color: #fff;
    padding: 0.71em;
    box-shadow: rgba(0, 0, 0, 0.1);
    border: 1px solid #fff;
    border-radius: 0.61em;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    margin-top: 1em;
  }

  .swiper-slideText a{
    font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
    color: #000;
    text-decoration: none;
    cursor: pointer;
  }

.testimonial{
    display: flex;
    flex-direction: column;
    
}

#testimonial{
    display: flex;
    flex-direction: column;
    gap: 0.50em;
}

.testimonialsHeader{
    font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
    padding: 0.2em;
    padding-left: 0.50em;
    color: #000;
}

.testimonials{
    margin: 1em;
    margin-left: 1em;
    margin-right: 1em;
    /* border: 1px solid #c1c1c1; */
    border-radius: 0.6em;
    padding: 1em;
    border: 1px solid #ddd;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 0.40em;
}

.role{
    display: flex;
    flex-direction: row;
    gap: 0.61em;
}

.testimonials img{
    width: 60px;
    height: 60px;
    object-fit: cover;
    object-position: 70% 25%;
    border: 2px solid #cdac49;
    border-radius: 20rem;
}

.testimonialsText{
    font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
    height: 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-self: center;
    gap: 0.10em;
}

.testimonials p{
    font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
    height: 100%;
}

.getStarted{
    margin-top: 5em;
    margin-left: 0.50em
}


.getStartedPhysical,
.getStartedOnline{
    padding: 1em;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 1em;
    position: relative; /* add this */
    transition: transform 0.5s ease-in-out;
}

.getStartedOnline{
  display: none;
}

/* .getStartedPhysical.active,
.getStartedOnline.active {
    transform: translateX(0); /* add this 
}

.getStartedPhysical.inactive,
.getStartedOnline.inactive {
    transform: translateX(-100%); /* add this 
} */

.getStartedPhysicalHeader,
.getStartedOnlineHeader{
    font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
    font-size: 28px;
    display: none;
}

.getStartedPhysicalHeader h3,
.getStartedOnlineHeader h3{
    text-align: center;
}

.linedUp {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1em;
  }

  .linedUp p {
    align-self: center;
    font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
    /* width: 130px; */
  }
  
  .circledUp1,
  .circledUp2,
  .circledUp3,
  .circledUp4 {
    border: 2px solid #909090;
    background-color: #c1c1c1;
    width: 30px; /*40px*/
    height: 30px; /*40px*/
    border-radius: 100rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .circledUp1 span,
  .circledUp2 span,
  .circledUp3 span,
  .circledUp4 span {
    font-size: 18px; /*32px*/
    font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
    color: #fff;
  }

.slogan h2 {
    font-family: 'Lancelot', 'Times New Roman', Times, serif;
    height: 100%;
    margin: 5rem;
    font-style: italic;
    text-align: center;
}

.mobileApp{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background-color: #c1c1c1;
}

/* .phoneApp{
   display: flex;
   justify-content: center;
   align-content: center;
   padding-right: 6rem;
    background-color: #fff;
}

.phoneApp img{
    width: 400px;
    height: 400px;
} */

.phoneFunction{
    background-color: #c1c1c1;
    border:  3px solid #ddd;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 0.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 1em;
    margin-left: 2rem;
    margin-right: 2rem;
    padding: 1em; 
}

.phoneFunction h2{
    font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
    text-transform: uppercase;
    color: #fff;
    padding-bottom: 0.7em;
}

.phoneFunction p{
    font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
    line-height: 1.3em;
}

.phoneFunction ul{
    padding: 1rem;
    padding-top: 0;
    list-style-position: inside;
    font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
}

.phoneFunction ul li{
    padding-top: 0.7em;
}

  /* FOOTER ELEMENTS */
  footer{
    background-color: #c1c1c1;
  }

.storeButtons {
    display: flex;
    gap: 20px;
    background-color: #c1c1c1;
    padding:0.91em;
}
.storeButton {
    display: flex;
    align-items: center;
    background-color: #909090;
    border-radius: 10px;
    margin: auto;
    padding: 10px 20px;
    color: #000;
    font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
    font-size: 16px;
    text-decoration: none;
}
.storeButton img {
    height: 40px;
    width: 40px;
    margin-right: 10px;
}

.accordion {
    background-color: #c1c1c1;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    border-top: 2px solid #fff;
}
.accordion-item {
    border-bottom: 1px solid #fff;
}

/* .accordion-item:last-child {
    border-bottom: none;
} */

.accordion-header {
    padding: 20px;
    font-size: 18px;
    font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.accordion-header:hover {
    background-color: #a6a6a6;
}
.arrowUp {
    display: none;
}

.arrowDown{
    display: block;
}
.accordion-content {
    font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
    display: none;
    padding: 0 20px 20px 20px;
    font-size: 16px;
}
.accordion-content a {
    color: #6d6968;
    font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
    text-decoration: none;
    display: block;
    margin: 5px 0;
}
.accordion-content a:hover {
    text-decoration: underline;
    color: #909090;
}

.connect {
    background-color: #c1c1c1;
    padding: 1em;
}

.connect h3{
    font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
}

.connect .socialMedia{
    display: flex;
    justify-content: center;
    align-content: center;
    gap: 0.5rem
}

.license{
    padding: 0.41em;
    margin-left: 4rem;
    margin-right: 4rem;
    border-top-right-radius: 0.6em;
    border-top-left-radius: 0.4em;
    border-top: 1px solid #fff; 
    border-left: 1px solid #fff; 
    border-right: 1px solid #fff; 
    font-family: 'Glacial Indifference', 'Times New Roman', Times, serif; 
    text-align: center;
    font-weight: 400; 
    font-size: 0.90em;
    background-color: #fff;
}

}

@media screen and (min-width: 600px) and (max-width: 767px){
    .header{
        border-bottom: 1.8px solid #000000;
        background-color: #c1c1c1;
        display: flex;
        flex-direction: row;
        justify-content: end;
        align-items: center;
        flex-shrink: 1;
        gap: 10px;
        flex-wrap: wrap;
        z-index: 100;
        position: sticky;
    }
    
    .headerContent{
        border: 1px solid #000;
        margin:1.5px;
        padding: 2px;
        cursor: pointer;
    }
    
    .logo{ 
        background-color: #000;
        margin-right: auto;
        /* flex-basis: 5.5rem;
        flex-shrink: 1; */
        border-radius: 100rem;
        width: 80px;
        height: 80px;
        flex-wrap: wrap;
    }
    
    .logo-letter{
        color: #ffff;
    }
    
    #circle_a{
        font-family: "Cinzel Decorative", serif;
        font-weight: bold;
        font-size: 3.3em;
        position: relative;
        left: 5px;
        top: -3px;
    }
    
    #circle_b{
        font-family: "Cinzel Decorative", serif;
        font-weight: bold;
        font-size: 2.9em;
        position: relative;
        left: 37px;
        top: -57px
    }
    
    .toggleBtn{
        z-index: 100;
        display: flex; 
        flex-direction: column; 
        justify-content: center;
    }
    
    .closeIcon{
        display: none;
    }
    
    .navLinks {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 99;
      background: #909090;
      color: #000000;
      list-style: none;
      transform: translateY(-100%);
      transition: transform 0.3s ease-in-out;
      padding-top: 5em;
      display: inline-block;
    }
    
    .showMenu {
      transform: translateY(0);
    }
    
    .navLinks li{
        font-size: 1.5em;
        text-transform: uppercase;
        font-family: "Lora", serif;
        padding: 0.5em;
        margin: 3px;
        border-bottom: 1px solid black;
    }
    
    .navItems{
        text-decoration: none;
        color:#000;
    }
    
    .navItems:active{
        background-color: #909090;
        padding: 0.3em;
        border-radius: 0.3em;
    }
    
    .navItems:hover{
        font-weight: bold;
        color: #c1c1c1;
        padding: 0.2em;
        border-radius: 0.2em;
    }

    /* MAIN ELEMENTS */

.businessOrPersonal{
  display:flex; 
  justify-content: space-between;
  background-color: #c1c1c1;
}

.businessOrPersonal div{
  width: 100%;
  padding: 1em;
  border: 1px solid black;
  align-self: center;
}

.personal,
.business{
  font-weight: 700;
  font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
  color: #000000;
  display: flex;
  justify-content: center;
  text-transform: uppercase;
  text-decoration: none;
}

.hero{
  padding-top: 1.5em;
  padding-bottom: 2rem;
  background-color: #c1c1c1;
  border-bottom-left-radius: 6em;
  border-bottom: 2px solid #909090;
  border-bottom-right-radius: 6em;
  padding-left: 1em;
  padding-right: 1em;
}

.geoStatus{
  display: flex;
  justify-content: center;
  align-content: center;
  margin-left: 1.5em; 
  margin-right: 1.5em; 
  background-color: #ffff;
  border-radius: 3em;
  padding: 1em;
}

.heroCTA{
  padding-top:0.71em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
}

.heroCTA h2{
  font-weight: 400;
  font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
  align-self: center;
  text-align: center;
  line-height: 1.3em;
}

.heroCTA p{
  line-height: 1.49em;
  text-align: center;
  font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
}

.heroCTA button{
  margin-top: 1rem;
  padding: 0.6em;
  background-color: #ffffff;
  align-self: center;
  border: 1px solid #a6a6a6;
  border-radius: 11px;
  font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
  text-transform: uppercase ;
  font-weight: 900;
  letter-spacing: 2px;
}

#accType{
margin-top: 3em;
display: flex;
justify-content: center;
flex-direction: column;
align-items: center;
gap: 3em;
}
.saverAcc,
.currentAcc{
  background-color: #fff;
  border: 1px solid #ddd;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 2rem;
  padding: 1rem;
  margin-left: 4rem;
  margin-right: 4rem;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}

.saverAcc h2,
.currentAcc h2{
font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
text-align: center;

}

.saverAcc p,
.currentAcc p{
font-size: 14px; font-family: 'Glacial Indifference', 'Times New Roman', Times, serif; 
color: #070707;
}

.currentAccImg,
.saverAccImg{
display: flex;
justify-content: center;
align-items: center;
}

.currentAccImg img{
width: 500px;
height: 250px;
object-fit: cover;
object-position: 50% 10%;
border-top-left-radius: 2rem;
border-top-right-radius: 2rem;
border-bottom-right-radius: 9rem;
/* border-bottom-left-radius: 5rem; */
position: relative;
top: -9px;
/* right: 10px; */
}

.saverAccImg img{
width: 500px;
height: 250px;
object-fit: cover;
object-position: 50% 10%;
border-top-left-radius: 2rem;
border-top-right-radius: 2rem;
border-bottom-left-radius: 9rem;
/* border-bottom-left-radius: 5rem; */
position: relative;
top: -9px;
/* right: 10px; */
}

.currentAccCTA button,
.saverAccCTA button{
  border-radius: 3em;
  border: 1px solid #a6a6a6;
  background-color: #fff;
  padding: 0.7rem;
  font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
}

.joinUsImg{
border-top-left-radius: 2rem;
border-top-right-radius: 2rem;
display: flex;
justify-content: center;
align-items: center;
}
.joinUsImg img {
width: 250px;
height: 200px;
position: relative;
top: 0px;
object-fit: cover;
}

.joinUsText{
margin-left: 2.5em;
margin-right: 2.5em;
font-size: 14px; 
font-family: 'Glacial Indifference', 'Times New Roman', Times, serif; 
border-top: 1px solid  #c1c1c1;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
gap: 0.30em;
}

.joinUsText h2{
padding-left: 1em;
}

.joinUsText p{
text-align: end;
border-top-left-radius: 2em;
}

.cardContainer{
  background-color: #fff;
  border: 1px solid #ddd;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 2rem;
  padding: 1rem;
  margin-left: 2rem;
  margin-right: 2rem;
  display: block;
  position: relative;
  top: -15px;
  overflow: hidden;
}

.textContainer{
  background-color: #fff;
  padding: 1rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.textContainer h3{
  font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
  padding-bottom: 1em;
}

.textContainer p{
  font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
  padding-bottom: 0.51em;
  line-height: 1.4em;
}

.investment {
  background-color: #fff;
  border: 1px solid #ddd;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-bottom-right-radius: 2rem;
  padding: 1rem;
  margin-top: 4.5em;
  margin-left: 4rem;
  margin-right: 4rem;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}

.investmentImg {
  background-image: url('../icons/dashboard_24dp_E8EAED_FILL0_wght400_GRAD0_opsz24.svg');
  background-color: #e8eaed;
  border-radius: 2em;
  position:relative;
  bottom: -10px;
  width: 320px;
  height: 250px;
  padding-bottom: 3em;
  background-repeat: repeat-y;
  background-size: contain;
  background-position: 90%;
  background-position: right;
}
.investmentImg img{
  width: 300px;
  height: 200px;
  object-fit: cover;
  object-position: center center;
  border-radius: 2em;
  position: relative;
  bottom: -34px;
  left: 60px;
  
  /* border-bottom-left-radius: 5rem; */
}

.investmentText {
  padding-top: 1em;
  text-align: justify;
  position: relative;
  top: -25px;
  right: -40px;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
}

.investmentCTA button{
  border-radius: 3em;
  border: 1px solid #a6a6a6;
  background-color: #fff;
  padding: 0.7rem;
  font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
}
/* BANK CARDS */

.bankCard{
  display: flex;
  flex-direction: column;
  place-items: center center;
}
.bankCards{
  height: 250px;
  max-height: 250px;
  display: flex;
  flex-direction: column;
  margin: auto
}
.backimg{
  position: relative;
  width: 300px;
  height: 400px;
  bottom: 30px;
}

.frontimg{
  position: relative;
  width: 300px;
  height: 400px;
  top: -400px;
  right: 30px;
}

.bankCardText{
  font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0.5em;
}

.bankCardText h2{
  text-align: center;
  padding-bottom: 0.2em;
}

.bankCardText p{
  padding-top: 0.2em;
  padding-right: 1.2em;
  padding-left: 1.2em;
}

.bankCardCTA{
  display: flex;
  flex-direction: row;
  justify-items: space-between;
  align-content: center;
}
.bankCardCTA button{
  cursor: pointer;
  font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
  background-color: #c1c1c1;
  padding: 0.7em;
  border: none;
  width: 120px;
  margin: 0.6em;
  border-radius: 0.6em;
}

.bankCardCTA a{
  cursor: pointer;
  background-color: red;
}

.featuresContainer{
  display: flex;
  gap: 1em;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.features{
  border: 1px solid #909090;
}

.features img{
  width: 100px;
  height: 150px;
  margin-left: 25px;
}

.featuresText{
  background-color: #c1c1c1;
  padding: 0.50em;
  width: 100%;
  height: 100%;
  font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
}

.featuresText h3{
  height: 30px;
}

.swiper-container {
  margin: 20px auto;
  overflow: hidden;
}

.swiper-wrapper {
  display: flex;
  flex-wrap: nowrap;
}

.swiper-slide {
  flex-shrink: 0;
  flex-basis: 15%;
  margin: 7px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.swiper-slide-last {
  margin: 1px;
}

.swiper-slide img {
  width: 250px;
  height: 225px;
  object-fit: cover;
  border-radius: 10px;
}

.swiper-slideText {
  background-color: rgba(0, 0, 0, 0.1);
  width: 250px;
  padding: 10px;
  color: #000;
  height: 280px;
  border-radius: 1em;
}

.swiper-slideText-blog{
  color: #909090;
  font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
  font-size: 12px;
  display: flex;
  justify-content: space-between;
  align-content: center;
  gap: 1rem;
}

.swiper-slideText h2 {
  font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
  font-size: 18px;
  margin-bottom: 2px;
  height: 45px;
}

.swiper-slideText p {
  font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
  font-size: 14px;
}

.swiper-slideText button{
  background-color: #fff;
  padding: 0.71em;
  box-shadow: rgba(0, 0, 0, 0.1);
  border: 1px solid #fff;
  border-radius: 0.61em;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  margin-top: 1em;
}

.swiper-slideText a{
  font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.testimonial{
  display: flex;
  flex-direction: column;
  
}

#testimonial{
  display: flex;
  flex-direction: column;
  gap: 0.50em;
}

.testimonialsHeader{
  font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
  padding: 0.2em;
  padding-left: 0.50em;
  color: #000;
}

.testimonials{
  margin: 1em;
  margin-left: 1em;
  margin-right: 1em;
  /* border: 1px solid #c1c1c1; */
  border-radius: 0.6em;
  padding: 1em;
  border: 1px solid #ddd;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 0.40em;
}

.role{
  display: flex;
  flex-direction: row;
  gap: 0.61em;
}

.testimonials img{
  width: 60px;
  height: 60px;
  object-fit: cover;
  object-position: 70% 25%;
  border: 2px solid #cdac49;
  border-radius: 20rem;
}

.testimonialsText{
  font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
  height: 35px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: center;
  gap: 0.10em;
}

.testimonials p{
  font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
  height: 100%;
}

.getStarted{
  margin-top: 5em;
  margin-left: 0.50em
}


.getStartedPhysical,
.getStartedOnline{
  padding: 1em;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1em;
  position: relative; /* add this */
  transition: transform 0.5s ease-in-out;
}

.getStartedOnline{
display: none;
}

/* .getStartedPhysical.active,
.getStartedOnline.active {
  transform: translateX(0); /* add this 
}

.getStartedPhysical.inactive,
.getStartedOnline.inactive {
  transform: translateX(-100%); /* add this 
} */

.getStartedPhysicalHeader,
.getStartedOnlineHeader{
  font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
  font-size: 28px;
  display: none;
}

.getStartedPhysicalHeader h3,
.getStartedOnlineHeader h3{
  text-align: center;
}

.linedUp {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1em;
}

.linedUp p {
  align-self: center;
  font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
  /* width: 130px; */
}

.circledUp1,
.circledUp2,
.circledUp3,
.circledUp4 {
  border: 2px solid #909090;
  background-color: #c1c1c1;
  width: 30px; /*40px*/
  height: 30px; /*40px*/
  border-radius: 100rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.circledUp1 span,
.circledUp2 span,
.circledUp3 span,
.circledUp4 span {
  font-size: 18px; /*32px*/
  font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
  color: #fff;
}

.slogan h2 {
  font-family: 'Lancelot', 'Times New Roman', Times, serif;
  height: 100%;
  margin: 5rem;
  font-style: italic;
  text-align: center;
}

.mobileApp{
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background-color: #c1c1c1;
}

/* .phoneApp{
 display: flex;
 justify-content: center;
 align-content: center;
 padding-right: 6rem;
  background-color: #fff;
}

.phoneApp img{
  width: 400px;
  height: 400px;
} */

.phoneFunction{
  background-color: #c1c1c1;
  border:  3px solid #ddd;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 0.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 1em;
  margin-left: 2rem;
  margin-right: 2rem;
  padding: 1em; 
}

.phoneFunction h2{
  font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
  text-transform: uppercase;
  color: #fff;
  padding-bottom: 0.7em;
}

.phoneFunction p{
  font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
  line-height: 1.3em;
}

.phoneFunction ul{
  padding: 1rem;
  padding-top: 0;
  list-style-position: inside;
  font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
}

.phoneFunction ul li{
  padding-top: 0.7em;
}

/* FOOTER ELEMENTS */
footer{
  background-color: #c1c1c1;
}

.storeButtons {
  display: flex;
  gap: 20px;
  background-color: #c1c1c1;
  padding:0.91em;
}
.storeButton {
  display: flex;
  align-items: center;
  background-color: #909090;
  border-radius: 10px;
  margin: auto;
  padding: 10px 20px;
  color: #000;
  font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
  font-size: 16px;
  text-decoration: none;
}
.storeButton img {
  height: 40px;
  width: 40px;
  margin-right: 10px;
}

.accordion {
  background-color: #c1c1c1;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  border-top: 2px solid #fff;
}
.accordion-item {
  border-bottom: 1px solid #fff;
}

/* .accordion-item:last-child {
  border-bottom: none;
} */

.accordion-header {
  padding: 20px;
  font-size: 18px;
  font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.accordion-header:hover {
  background-color: #a6a6a6;
}
.arrowUp {
  display: none;
}

.arrowDown{
  display: block;
}
.accordion-content {
  font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
  display: none;
  padding: 0 20px 20px 20px;
  font-size: 16px;
}
.accordion-content a {
  color: #6d6968;
  font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
  text-decoration: none;
  display: block;
  margin: 5px 0;
}
.accordion-content a:hover {
  text-decoration: underline;
  color: #909090;
}

.connect {
  background-color: #c1c1c1;
  padding: 1em;
}

.connect h3{
  font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
}

.connect .socialMedia{
  display: flex;
  justify-content: center;
  align-content: center;
  gap: 0.5rem
}

.license{
  padding: 0.41em;
  margin-left: 4rem;
  margin-right: 4rem;
  border-top-right-radius: 0.6em;
  border-top-left-radius: 0.4em;
  border-top: 1px solid #fff; 
  border-left: 1px solid #fff; 
  border-right: 1px solid #fff; 
  font-family: 'Glacial Indifference', 'Times New Roman', Times, serif; 
  text-align: center;
  font-weight: 400; 
  font-size: 0.90em;
  background-color: #fff;
}
 }

@media screen and (min-width: 768px) and (max-width: 991px) {
  .header{
    border-bottom: 1.8px solid #000000;
    background-color: #c1c1c1;
    display: flex;
    flex-direction: row;
    justify-content: end;
    align-items: center;
    flex-shrink: 1;
    gap: 10px;
    flex-wrap: wrap;
    z-index: 100;
    position: sticky;
}

.headerContent{
    border: 1px solid #000;
    margin:1.5px;
    padding: 2px;
    cursor: pointer;
}

.logo{ 
    background-color: #000;
    margin-right: auto;
    /* flex-basis: 5.5rem;
    flex-shrink: 1; */
    border-radius: 100rem;
    width: 80px;
    height: 80px;
    flex-wrap: wrap;
}

.logo-letter{
    color: #ffff;
}

#circle_a{
    font-family: "Cinzel Decorative", serif;
    font-weight: bold;
    font-size: 3.3em;
    position: relative;
    left: 5px;
    top: -3px;
}

#circle_b{
    font-family: "Cinzel Decorative", serif;
    font-weight: bold;
    font-size: 2.9em;
    position: relative;
    left: 37px;
    top: -57px
}

.toggleBtn{
    display: none;
}

.navLinks {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  list-style-type: none;
  padding-left: 1em;
  padding-right: 1em;
}

#home {
  display: none;
}

.navLinks li{
    text-transform: uppercase;
    font-family: "Glacial Indifference", 'Times New Roman', Times, serif;
    padding: 0.5em;
    margin: 3px;
    color: #000;
}

.navItems{
    text-decoration: none;
    color:#000;
}

.navItems:active{
    background-color: #909090;
    padding: 0.3em;
    border-radius: 0.3em;
}

.navItems:hover{
    font-weight: bold;
    color: #c1c1c1;
    padding: 0.2em;
    border-radius: 0.2em;
}

/* MAIN ELEMENTS */

.businessOrPersonal{
  display:flex; 
  justify-content: space-between;
  background-color: #c1c1c1;
}

.businessOrPersonal div{
  width: 100%;
  padding: 1em;
  border: 1px solid black;
  align-self: center;
}

.personal,
.business{
  font-weight: 700;
  font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
  color: #000000;
  display: flex;
  justify-content: center;
  text-transform: uppercase;
  text-decoration: none;
}

.hero{
  padding-top: 1.5em;
  padding-bottom: 2rem;
  background-color: #c1c1c1;
  border-bottom-left-radius: 4em;
  border-bottom: 2px solid #909090;
  border-bottom-right-radius: 4em;
  padding-left: 1em;
  padding-right: 1em;
}

.geoStatus{
  display: flex;
  justify-content: center;
  align-content: center;
  margin-left: 1.5em; 
  margin-right: 1.5em; 
  background-color: #ffff;
  border-radius: 3em;
  padding: 1em;
}

.heroCTA{
  padding-top:0.71em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
}

.heroCTA h2{
  font-weight: 400;
  font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
  align-self: center;
  text-align: center;
  line-height: 1.3em;
}

.heroCTA p{
  line-height: 1.49em;
  text-align: center;
  font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
}

.heroCTA button{
  margin-top: 1rem;
  padding: 0.6em;
  background-color: #ffffff;
  align-self: center;
  border: 1px solid #a6a6a6;
  border-radius: 11px;
  font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
  text-transform: uppercase ;
  font-weight: 900;
  letter-spacing: 2px;
}

#accType{
margin-top: 3em;
display: flex;
justify-content: center;
flex-direction: column;
align-items: center;
gap: 3em;
}
.saverAcc,
.currentAcc{
  background-color: #fff;
  border: 1px solid #ddd;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 2rem;
  padding: 1rem;
  margin-left: 4rem;
  margin-right: 4rem;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}

.saverAcc h2,
.currentAcc h2{
font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
text-align: center;

}

.saverAcc p,
.currentAcc p{
font-size: 14px; font-family: 'Glacial Indifference', 'Times New Roman', Times, serif; 
color: #070707;
}

.currentAccImg,
.saverAccImg{
display: flex;
justify-content: center;
align-items: center;
}

.currentAccImg img{
width: 350px;
height: 250px;
object-fit: cover;
border-top-left-radius: 2rem;
border-top-right-radius: 2rem;
border-bottom-right-radius: 9rem;
/* border-bottom-left-radius: 5rem; */
position: relative;
top: -9px;
/* right: 10px; */
}

.saverAccImg img{
width: 350px;
height: 250px;
object-fit: cover;
border-top-left-radius: 2rem;
border-top-right-radius: 2rem;
border-bottom-left-radius: 9rem;
/* border-bottom-left-radius: 5rem; */
position: relative;
top: -9px;
/* right: 10px; */
}

.currentAccCTA button,
.saverAccCTA button{
  border-radius: 3em;
  border: 1px solid #a6a6a6;
  background-color: #fff;
  padding: 0.7rem;
  font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
}

.joinUsImg{
border-top-left-radius: 2rem;
border-top-right-radius: 2rem;
display: flex;
justify-content: center;
align-items: center;
}
.joinUsImg img {
width: 250px;
height: 200px;
position: relative;
top: 0px;
object-fit: cover;
}

.joinUsText{
margin-left: 2.5em;
margin-right: 2.5em;
font-size: 14px; 
font-family: 'Glacial Indifference', 'Times New Roman', Times, serif; 
border-top: 1px solid  #c1c1c1;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
gap: 0.30em;
}

.joinUsText h2{
padding-left: 1em;
}

.joinUsText p{
text-align: end;
border-top-left-radius: 2em;
}

.cardContainer{
  background-color: #fff;
  border: 1px solid #ddd;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 2rem;
  padding: 1rem;
  margin-left: 2rem;
  margin-right: 2rem;
  display: block;
  position: relative;
  top: -15px;
  overflow: hidden;
}

.textContainer{
  background-color: #fff;
  padding: 1rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.textContainer h3{
  font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
  padding-bottom: 1em;
}

.textContainer p{
  font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
  padding-bottom: 0.51em;
  line-height: 1.4em;
}

.investment {
  background-color: #fff;
  border: 1px solid #ddd;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-bottom-right-radius: 2rem;
  padding: 1rem;
  margin-top: 4.5em;
  margin-left: 4rem;
  margin-right: 4rem;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}

.investmentImg {
  background-image: url('../icons/dashboard_24dp_E8EAED_FILL0_wght400_GRAD0_opsz24.svg');
  background-color: #e8eaed;
  border-radius: 2em;
  position:relative;
  top: -10px;
  width: 300px;
  height: 200px;
  background-repeat: repeat-y;
  background-size: contain;
  background-position: 90%;
  background-position: right;
}
.investmentImg img{
  width: 300px;
  height: 200px;
  object-fit: cover;
  object-position: center center;
  border-radius: 2em;
  position: relative;
  top: -34px;
  right: 60px;
  
  /* border-bottom-left-radius: 5rem; */
}

.investmentText {
  padding-top: 1em;
  text-align: justify;
  position: relative;
  top: -25px;
  right: -40px;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
}

.investmentCTA button{
  border-radius: 3em;
  border: 1px solid #a6a6a6;
  background-color: #fff;
  padding: 0.7rem;
  font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
}
/* BANK CARDS */

.bankCard{
  display: flex;
  flex-direction: column;
  place-items: center center;
}
.bankCards{
  height: 250px;
  max-height: 250px;
  display: flex;
  flex-direction: column;
  margin: auto
}
.backimg{
  position: relative;
  width: 300px;
  height: 400px;
  bottom: 30px;
}

.frontimg{
  position: relative;
  width: 300px;
  height: 400px;
  top: -400px;
  right: 30px;
}

.bankCardText{
  font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0.5em;
}

.bankCardText h2{
  text-align: center;
  padding-bottom: 0.2em;
}

.bankCardText p{
  padding-top: 0.2em;
  padding-right: 1.2em;
  padding-left: 1.2em;
}

.bankCardCTA{
  display: flex;
  flex-direction: row;
  justify-items: space-between;
  align-content: center;
}
.bankCardCTA button{
  cursor: pointer;
  font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
  background-color: #c1c1c1;
  padding: 0.7em;
  border: none;
  width: 120px;
  margin: 0.6em;
  border-radius: 0.6em;
}

.bankCardCTA a{
  cursor: pointer;
  background-color: red;
}

.featuresContainer{
  display: flex;
  gap: 1em;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.features{
  border: 1px solid #909090;
}

.features img{
  width: 100px;
  height: 150px;
  margin-left: 25px;
}

.featuresText{
  background-color: #c1c1c1;
  padding: 0.50em;
  width: 100%;
  height: 100%;
  font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
}

.featuresText h3{
  height: 30px;
}

.swiper-container {
  margin: 20px auto;
  overflow: hidden;
}

.swiper-wrapper {
  display: flex;
  flex-wrap: nowrap;
}

.swiper-slide {
  flex-shrink: 0;
  flex-basis: 40%;
  margin: 7px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.swiper-slide-last {
  margin: 1px;
}

.swiper-slide img {
  width: 250px;
  height: 225px;
  object-fit: cover;
  border-radius: 10px;
}

.swiper-slideText {
  background-color: rgba(0, 0, 0, 0.1);
  width: 250px;
  padding: 10px;
  color: #000;
  height: 280px;
  border-radius: 1em;
}

.swiper-slideText-blog{
  color: #909090;
  font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
  font-size: 12px;
  display: flex;
  justify-content: space-between;
  align-content: center;
  gap: 1rem;
}

.swiper-slideText h2 {
  font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
  font-size: 18px;
  margin-bottom: 2px;
  height: 45px;
}

.swiper-slideText p {
  font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
  font-size: 14px;
}

.swiper-slideText button{
  background-color: #fff;
  padding: 0.71em;
  box-shadow: rgba(0, 0, 0, 0.1);
  border: 1px solid #fff;
  border-radius: 0.61em;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  margin-top: 1em;
}

.swiper-slideText a{
  font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.testimonial{
  display: flex;
  flex-direction: column;
  
}

#testimonial{
  display: flex;
  flex-direction: column;
  gap: 0.50em;
}

.testimonialsHeader{
  font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
  padding: 0.2em;
  padding-left: 0.50em;
  color: #000;
}

.testimonials{
  margin: 1em;
  margin-left: 1em;
  margin-right: 1em;
  /* border: 1px solid #c1c1c1; */
  border-radius: 0.6em;
  padding: 1em;
  border: 1px solid #ddd;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 0.40em;
}

.role{
  display: flex;
  flex-direction: row;
  gap: 0.61em;
}

.testimonials img{
  width: 60px;
  height: 60px;
  object-fit: cover;
  object-position: 70% 25%;
  border: 2px solid #cdac49;
  border-radius: 20rem;
}

.testimonialsText{
  font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
  height: 35px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: center;
  gap: 0.10em;
}

.testimonials p{
  font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
  height: 100%;
}

.getStarted{
  margin-top: 5em;
  margin-left: 0.50em
}


.getStartedPhysical,
.getStartedOnline{
  padding: 1em;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1em;
  position: relative; /* add this */
  transition: transform 0.5s ease-in-out;
}

.getStartedOnline{
display: none;
}

/* .getStartedPhysical.active,
.getStartedOnline.active {
  transform: translateX(0); /* add this 
}

.getStartedPhysical.inactive,
.getStartedOnline.inactive {
  transform: translateX(-100%); /* add this 
} */

.getStartedPhysicalHeader,
.getStartedOnlineHeader{
  font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
  font-size: 28px;
  display: none;
}

.getStartedPhysicalHeader h3,
.getStartedOnlineHeader h3{
  text-align: center;
}

.linedUp {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1em;
}

.linedUp p {
  align-self: center;
  font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
  /* width: 130px; */
}

.circledUp1,
.circledUp2,
.circledUp3,
.circledUp4 {
  border: 2px solid #909090;
  background-color: #c1c1c1;
  width: 30px; /*40px*/
  height: 30px; /*40px*/
  border-radius: 100rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.circledUp1 span,
.circledUp2 span,
.circledUp3 span,
.circledUp4 span {
  font-size: 18px; /*32px*/
  font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
  color: #fff;
}

.slogan h2 {
  font-family: 'Lancelot', 'Times New Roman', Times, serif;
  height: 100%;
  margin: 5rem;
  font-style: italic;
  text-align: center;
}

.mobileApp{
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background-color: #c1c1c1;
}

/* .phoneApp{
 display: flex;
 justify-content: center;
 align-content: center;
 padding-right: 6rem;
  background-color: #fff;
}

.phoneApp img{
  width: 400px;
  height: 400px;
} */

.phoneFunction{
  background-color: #c1c1c1;
  border:  3px solid #ddd;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 0.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 1em;
  margin-left: 2rem;
  margin-right: 2rem;
  padding: 1em; 
}

.phoneFunction h2{
  font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
  text-transform: uppercase;
  color: #fff;
  padding-bottom: 0.7em;
}

.phoneFunction p{
  font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
  line-height: 1.3em;
}

.phoneFunction ul{
  padding: 1rem;
  padding-top: 0;
  list-style-position: inside;
  font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
}

.phoneFunction ul li{
  padding-top: 0.7em;
}

/* FOOTER ELEMENTS */
footer{
  background-color: #c1c1c1;
}

.storeButtons {
  display: flex;
  gap: 20px;
  background-color: #c1c1c1;
  padding:0.91em;
}
.storeButton {
  display: flex;
  align-items: center;
  background-color: #909090;
  border-radius: 10px;
  margin: auto;
  padding: 10px 20px;
  color: #000;
  font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
  font-size: 16px;
  text-decoration: none;
}
.storeButton img {
  height: 40px;
  width: 40px;
  margin-right: 10px;
}

.accordion {
  background-color: #c1c1c1;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  border-top: 2px solid #fff;
}
.accordion-item {
  border-bottom: 1px solid #fff;
}

/* .accordion-item:last-child {
  border-bottom: none;
} */

.accordion-header {
  padding: 20px;
  font-size: 18px;
  font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.accordion-header:hover {
  background-color: #a6a6a6;
}
.arrowUp {
  display: none;
}

.arrowDown{
  display: block;
}
.accordion-content {
  font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
  display: none;
  padding: 0 20px 20px 20px;
  font-size: 16px;
}
.accordion-content a {
  color: #6d6968;
  font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
  text-decoration: none;
  display: block;
  margin: 5px 0;
}
.accordion-content a:hover {
  text-decoration: underline;
  color: #909090;
}

.connect {
  background-color: #c1c1c1;
  padding: 1em;
}

.connect h3{
  font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
}

.connect .socialMedia{
  display: flex;
  justify-content: center;
  align-content: center;
  gap: 0.5rem
}

.license{
  padding: 0.41em;
  margin-left: 4rem;
  margin-right: 4rem;
  border-top-right-radius: 0.6em;
  border-top-left-radius: 0.4em;
  border-top: 1px solid #fff; 
  border-left: 1px solid #fff; 
  border-right: 1px solid #fff; 
  font-family: 'Glacial Indifference', 'Times New Roman', Times, serif; 
  text-align: center;
  font-weight: 400; 
  font-size: 0.90em;
  background-color: #fff;
}
 }

@media screen and (min-width: 992px) and (max-width: 1200px) {
  .header{
    border-bottom: 1.8px solid #000000;
    background-color: #c1c1c1;
    display: flex;
    flex-direction: row;
    justify-content: end;
    align-items: center;
    flex-shrink: 1;
    gap: 10px;
    flex-wrap: wrap;
    z-index: 100;
    position: sticky;
}

.headerContent{
    border: 1px solid #000;
    margin:1.5px;
    padding: 2px;
    cursor: pointer;
}

.logo{ 
    background-color: #000;
    margin-right: auto;
    /* flex-basis: 5.5rem;
    flex-shrink: 1; */
    border-radius: 100rem;
    width: 80px;
    height: 80px;
    flex-wrap: wrap;
}

.logo-letter{
    color: #ffff;
}

#circle_a{
    font-family: "Cinzel Decorative", serif;
    font-weight: bold;
    font-size: 3.3em;
    position: relative;
    left: 5px;
    top: -3px;
}

#circle_b{
    font-family: "Cinzel Decorative", serif;
    font-weight: bold;
    font-size: 2.9em;
    position: relative;
    left: 37px;
    top: -57px
}

.toggleBtn{
    display: none;
}

.navLinks {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  list-style-type: none;
  padding-left: 1em;
  padding-right: 1em;
}

#home {
  display: none;
}

.navLinks li{
    text-transform: uppercase;
    font-family: "Glacial Indifference", 'Times New Roman', Times, serif;
    padding: 0.5em;
    margin: 3px;
}

.navItems{
    text-decoration: none;
    color:#000;
}

.navItems:active{
    background-color: #909090;
    padding: 0.3em;
    border-radius: 0.3em;
}

.navItems:hover{
    font-weight: bold;
    color: #c1c1c1;
    padding: 0.2em;
    border-radius: 0.2em;
}

/* MAIN ELEMENTS */

.businessOrPersonal{
  display:flex; 
  justify-content: space-between;
  background-color: #c1c1c1;
}

.businessOrPersonal div{
  width: 100%;
  padding: 1em;
  border: 1px solid black;
  align-self: center;
}

.personal,
.business{
  font-weight: 700;
  font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
  color: #000000;
  display: flex;
  justify-content: center;
  text-transform: uppercase;
  text-decoration: none;
}

.hero{
  padding-top: 1.5em;
  padding-bottom: 2rem;
  background-color: #c1c1c1;
  border-bottom-left-radius: 4em;
  border-bottom: 2px solid #909090;
  border-bottom-right-radius: 4em;
  padding-left: 1em;
  padding-right: 1em;
}

.geoStatus{
  display: flex;
  justify-content: center;
  align-content: center;
  margin-left: 1.5em; 
  margin-right: 1.5em; 
  background-color: #ffff;
  border-radius: 3em;
  padding: 1em;
}

.heroCTA{
  padding-top:0.71em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
}

.heroCTA h2{
  font-weight: 400;
  font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
  align-self: center;
  text-align: center;
  line-height: 1.3em;
}

.heroCTA p{
  line-height: 1.49em;
  text-align: center;
  font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
}

.heroCTA button{
  margin-top: 1rem;
  padding: 0.6em;
  background-color: #ffffff;
  align-self: center;
  border: 1px solid #a6a6a6;
  border-radius: 11px;
  font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
  text-transform: uppercase ;
  font-weight: 900;
  letter-spacing: 2px;
}

#accType{
margin-top: 3em;
display: flex;
justify-content: center;
flex-direction: column;
align-items: center;
gap: 3em;
}
.saverAcc,
.currentAcc{
  background-color: #fff;
  border: 1px solid #ddd;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 2rem;
  padding: 1rem;
  margin-left: 4rem;
  margin-right: 4rem;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}

.saverAcc h2,
.currentAcc h2{
font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
text-align: center;

}

.saverAcc p,
.currentAcc p{
font-size: 14px; font-family: 'Glacial Indifference', 'Times New Roman', Times, serif; 
color: #070707;
}

.currentAccImg,
.saverAccImg{
display: flex;
justify-content: center;
align-items: center;
}

.currentAccImg img{
width: 350px;
height: 250px;
object-fit: cover;
border-top-left-radius: 2rem;
border-top-right-radius: 2rem;
border-bottom-right-radius: 9rem;
/* border-bottom-left-radius: 5rem; */
position: relative;
top: -9px;
/* right: 10px; */
}

.saverAccImg img{
width: 350px;
height: 250px;
object-fit: cover;
border-top-left-radius: 2rem;
border-top-right-radius: 2rem;
border-bottom-left-radius: 9rem;
/* border-bottom-left-radius: 5rem; */
position: relative;
top: -9px;
/* right: 10px; */
}

.currentAccCTA button,
.saverAccCTA button{
  border-radius: 3em;
  border: 1px solid #a6a6a6;
  background-color: #fff;
  padding: 0.7rem;
  font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
}

.joinUsImg{
border-top-left-radius: 2rem;
border-top-right-radius: 2rem;
display: flex;
justify-content: center;
align-items: center;
}
.joinUsImg img {
width: 250px;
height: 200px;
position: relative;
top: 0px;
object-fit: cover;
}

.joinUsText{
margin-left: 2.5em;
margin-right: 2.5em;
font-size: 14px; 
font-family: 'Glacial Indifference', 'Times New Roman', Times, serif; 
border-top: 1px solid  #c1c1c1;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
gap: 0.30em;
}

.joinUsText h2{
padding-left: 1em;
}

.joinUsText p{
text-align: end;
border-top-left-radius: 2em;
}

.cardContainer{
  background-color: #fff;
  border: 1px solid #ddd;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 2rem;
  padding: 1rem;
  margin-left: 2rem;
  margin-right: 2rem;
  display: block;
  position: relative;
  top: -15px;
  overflow: hidden;
}

.textContainer{
  background-color: #fff;
  padding: 1rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.textContainer h3{
  font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
  padding-bottom: 1em;
}

.textContainer p{
  font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
  padding-bottom: 0.51em;
  line-height: 1.4em;
}

.investment {
  background-color: #fff;
  border: 1px solid #ddd;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-bottom-right-radius: 2rem;
  padding: 1rem;
  margin-top: 4.5em;
  margin-left: 4rem;
  margin-right: 4rem;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}

.investmentImg {
  background-image: url('../icons/dashboard_24dp_E8EAED_FILL0_wght400_GRAD0_opsz24.svg');
  background-color: #e8eaed;
  border-radius: 2em;
  position:relative;
  top: -10px;
  width: 300px;
  height: 200px;
  background-repeat: repeat-y;
  background-size: contain;
  background-position: 90%;
  background-position: right;
}
.investmentImg img{
  width: 300px;
  height: 200px;
  object-fit: cover;
  object-position: center center;
  border-radius: 2em;
  position: relative;
  top: -34px;
  right: 60px;
  
  /* border-bottom-left-radius: 5rem; */
}

.investmentText {
  padding-top: 1em;
  text-align: justify;
  position: relative;
  top: -25px;
  right: -40px;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
}

.investmentCTA button{
  border-radius: 3em;
  border: 1px solid #a6a6a6;
  background-color: #fff;
  padding: 0.7rem;
  font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
}
/* BANK CARDS */

.bankCard{
  display: flex;
  flex-direction: column;
  place-items: center center;
}
.bankCards{
  height: 250px;
  max-height: 250px;
  display: flex;
  flex-direction: column;
  margin: auto
}
.backimg{
  position: relative;
  width: 300px;
  height: 400px;
  bottom: 30px;
}

.frontimg{
  position: relative;
  width: 300px;
  height: 400px;
  top: -400px;
  right: 30px;
}

.bankCardText{
  font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0.5em;
}

.bankCardText h2{
  text-align: center;
  padding-bottom: 0.2em;
}

.bankCardText p{
  padding-top: 0.2em;
  padding-right: 1.2em;
  padding-left: 1.2em;
}

.bankCardCTA{
  display: flex;
  flex-direction: row;
  justify-items: space-between;
  align-content: center;
}
.bankCardCTA button{
  cursor: pointer;
  font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
  background-color: #c1c1c1;
  padding: 0.7em;
  border: none;
  width: 120px;
  margin: 0.6em;
  border-radius: 0.6em;
}

.bankCardCTA a{
  cursor: pointer;
  background-color: red;
}

.featuresContainer{
  display: flex;
  gap: 1em;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.features{
  border: 1px solid #909090;
}

.features img{
  width: 100px;
  height: 150px;
  margin-left: 25px;
}

.featuresText{
  background-color: #c1c1c1;
  padding: 0.50em;
  width: 100%;
  height: 100%;
  font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
}

.featuresText h3{
  height: 30px;
}

.swiper-container {
  margin: 20px auto;
  overflow: hidden;
}

.swiper-wrapper {
  display: flex;
  flex-wrap: nowrap;
}

.swiper-slide {
  flex-shrink: 0;
  flex-basis: 40%;
  margin: 7px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.swiper-slide-last {
  margin: 1px;
}

.swiper-slide img {
  width: 250px;
  height: 225px;
  object-fit: cover;
  border-radius: 10px;
}

.swiper-slideText {
  background-color: rgba(0, 0, 0, 0.1);
  width: 250px;
  padding: 10px;
  color: #000;
  height: 280px;
  border-radius: 1em;
}

.swiper-slideText-blog{
  color: #909090;
  font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
  font-size: 12px;
  display: flex;
  justify-content: space-between;
  align-content: center;
  gap: 1rem;
}

.swiper-slideText h2 {
  font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
  font-size: 18px;
  margin-bottom: 2px;
  height: 45px;
}

.swiper-slideText p {
  font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
  font-size: 14px;
}

.swiper-slideText button{
  background-color: #fff;
  padding: 0.71em;
  box-shadow: rgba(0, 0, 0, 0.1);
  border: 1px solid #fff;
  border-radius: 0.61em;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  margin-top: 1em;
}

.swiper-slideText a{
  font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.testimonial{
  display: flex;
  flex-direction: column;
  
}

#testimonial{
  display: flex;
  flex-direction: column;
  gap: 0.50em;
}

.testimonialsHeader{
  font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
  padding: 0.2em;
  padding-left: 0.50em;
  color: #000;
}

.testimonials{
  margin: 1em;
  margin-left: 1em;
  margin-right: 1em;
  /* border: 1px solid #c1c1c1; */
  border-radius: 0.6em;
  padding: 1em;
  border: 1px solid #ddd;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 0.40em;
}

.role{
  display: flex;
  flex-direction: row;
  gap: 0.61em;
}

.testimonials img{
  width: 60px;
  height: 60px;
  object-fit: cover;
  object-position: 70% 25%;
  border: 2px solid #cdac49;
  border-radius: 20rem;
}

.testimonialsText{
  font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
  height: 35px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: center;
  gap: 0.10em;
}

.testimonials p{
  font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
  height: 100%;
}

.getStarted{
  margin-top: 5em;
  margin-left: 0.50em
}


.getStartedPhysical,
.getStartedOnline{
  padding: 1em;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1em;
  position: relative; /* add this */
  transition: transform 0.5s ease-in-out;
}

.getStartedOnline{
display: none;
}

/* .getStartedPhysical.active,
.getStartedOnline.active {
  transform: translateX(0); /* add this 
}

.getStartedPhysical.inactive,
.getStartedOnline.inactive {
  transform: translateX(-100%); /* add this 
} */

.getStartedPhysicalHeader,
.getStartedOnlineHeader{
  font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
  font-size: 28px;
  display: none;
}

.getStartedPhysicalHeader h3,
.getStartedOnlineHeader h3{
  text-align: center;
}

.linedUp {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1em;
}

.linedUp p {
  align-self: center;
  font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
  /* width: 130px; */
}

.circledUp1,
.circledUp2,
.circledUp3,
.circledUp4 {
  border: 2px solid #909090;
  background-color: #c1c1c1;
  width: 30px; /*40px*/
  height: 30px; /*40px*/
  border-radius: 100rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.circledUp1 span,
.circledUp2 span,
.circledUp3 span,
.circledUp4 span {
  font-size: 18px; /*32px*/
  font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
  color: #fff;
}

.slogan h2 {
  font-family: 'Lancelot', 'Times New Roman', Times, serif;
  height: 100%;
  margin: 5rem;
  font-style: italic;
  text-align: center;
}

.mobileApp{
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background-color: #c1c1c1;
}

/* .phoneApp{
 display: flex;
 justify-content: center;
 align-content: center;
 padding-right: 6rem;
  background-color: #fff;
}

.phoneApp img{
  width: 400px;
  height: 400px;
} */

.phoneFunction{
  background-color: #c1c1c1;
  border:  3px solid #ddd;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 0.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 1em;
  margin-left: 2rem;
  margin-right: 2rem;
  padding: 1em; 
}

.phoneFunction h2{
  font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
  text-transform: uppercase;
  color: #fff;
  padding-bottom: 0.7em;
}

.phoneFunction p{
  font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
  line-height: 1.3em;
}

.phoneFunction ul{
  padding: 1rem;
  padding-top: 0;
  list-style-position: inside;
  font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
}

.phoneFunction ul li{
  padding-top: 0.7em;
}

/* FOOTER ELEMENTS */
footer{
  background-color: #c1c1c1;
}

.storeButtons {
  display: flex;
  gap: 20px;
  background-color: #c1c1c1;
  padding:0.91em;
}
.storeButton {
  display: flex;
  align-items: center;
  background-color: #909090;
  border-radius: 10px;
  margin: auto;
  padding: 10px 20px;
  color: #000;
  font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
  font-size: 16px;
  text-decoration: none;
}
.storeButton img {
  height: 40px;
  width: 40px;
  margin-right: 10px;
}

.accordion {
  background-color: #c1c1c1;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  border-top: 2px solid #fff;
}
.accordion-item {
  border-bottom: 1px solid #fff;
}

/* .accordion-item:last-child {
  border-bottom: none;
} */

.accordion-header {
  padding: 20px;
  font-size: 18px;
  font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.accordion-header:hover {
  background-color: #a6a6a6;
}
.arrowUp {
  display: none;
}

.arrowDown{
  display: block;
}
.accordion-content {
  font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
  display: none;
  padding: 0 20px 20px 20px;
  font-size: 16px;
}
.accordion-content a {
  color: #6d6968;
  font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
  text-decoration: none;
  display: block;
  margin: 5px 0;
}
.accordion-content a:hover {
  text-decoration: underline;
  color: #909090;
}

.connect {
  background-color: #c1c1c1;
  padding: 1em;
}

.connect h3{
  font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
}

.connect .socialMedia{
  display: flex;
  justify-content: center;
  align-content: center;
  gap: 0.5rem
}

.license{
  padding: 0.41em;
  margin-left: 4rem;
  margin-right: 4rem;
  border-top-right-radius: 0.6em;
  border-top-left-radius: 0.4em;
  border-top: 1px solid #fff; 
  border-left: 1px solid #fff; 
  border-right: 1px solid #fff; 
  font-family: 'Glacial Indifference', 'Times New Roman', Times, serif; 
  text-align: center;
  font-weight: 400; 
  font-size: 0.90em;
  background-color: #fff;
}
 }

 @media screen and (min-width: 1201px) {
    .header{
      border-bottom: 1.8px solid #000000;
      background-color: #c1c1c1;
      display: flex;
      flex-direction: row;
      justify-content: end;
      align-items: center;
      flex-shrink: 1;
      gap: 10px;
      flex-wrap: wrap;
      z-index: 100;
      position: sticky;
  }
  
  .headerContent{
      border: 1px solid #000;
      margin:1.5px;
      padding: 2px;
      cursor: pointer;
  }
  
  .logo{ 
      background-color: #000;
      margin-right: auto;
      /* flex-basis: 5.5rem;
      flex-shrink: 1; */
      border-radius: 100rem;
      width: 80px;
      height: 80px;
      flex-wrap: wrap;
  }
  
  .logo-letter{
      color: #ffff;
  }
  
  #circle_a{
      font-family: "Cinzel Decorative", serif;
      font-weight: bold;
      font-size: 3.3em;
      position: relative;
      left: 5px;
      top: -3px;
  }
  
  #circle_b{
      font-family: "Cinzel Decorative", serif;
      font-weight: bold;
      font-size: 2.9em;
      position: relative;
      left: 37px;
      top: -57px
  }
  
  .toggleBtn{
      display: none;
  }
  
  .navLinks {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    list-style-type: none;
    padding-left: 1em;
    padding-right: 1em;
  }
  
  #home {
    display: none;
  }
  
  .navLinks li{
      text-transform: uppercase;
      font-family: "Glacial Indifference", 'Times New Roman', Times, serif;
      padding: 0.5em;
      margin: 3px;
  }
  
  .navItems{
      text-decoration: none;
      color:#000;
  }
  
  .navItems:active{
      background-color: #909090;
      padding: 0.3em;
      border-radius: 0.3em;
  }
  
  .navItems:hover{
      font-weight: bold;
      color: #c1c1c1;
      padding: 0.2em;
      border-radius: 0.2em;
  }
  
  /* MAIN ELEMENTS */
  
  .businessOrPersonal{
    display:flex; 
    justify-content: space-between;
    background-color: #c1c1c1;
  }
  
  .businessOrPersonal div{
    width: 100%;
    padding: 1em;
    border: 1px solid black;
    align-self: center;
  }
  
  .personal,
  .business{
    font-weight: 700;
    font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
    color: #000000;
    display: flex;
    justify-content: center;
    text-transform: uppercase;
    text-decoration: none;
  }
  
  .hero{
    padding-top: 1.5em;
    padding-bottom: 2rem;
    background-color: #c1c1c1;
    border-bottom-left-radius: 4em;
    border-bottom: 2px solid #909090;
    border-bottom-right-radius: 4em;
    padding-left: 1em;
    padding-right: 1em;
  }
  
  .geoStatus{
    display: flex;
    justify-content: center;
    align-content: center;
    margin-left: 1.5em; 
    margin-right: 1.5em; 
    background-color: #ffff;
    border-radius: 3em;
    padding: 1em;
  }
  
  .heroCTA{
    padding-top:0.71em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
  }
  
  .heroCTA h2{
    font-weight: 400;
    font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
    align-self: center;
    text-align: center;
    line-height: 1.3em;
  }
  
  .heroCTA p{
    line-height: 1.49em;
    text-align: center;
    font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
  }
  
  .heroCTA button{
    margin-top: 1rem;
    padding: 0.6em;
    background-color: #ffffff;
    align-self: center;
    border: 1px solid #a6a6a6;
    border-radius: 11px;
    font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
    text-transform: uppercase ;
    font-weight: 900;
    letter-spacing: 2px;
  }
  
  #accType{
  margin-top: 3em;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  gap: 3em;
  }
  .saverAcc,
  .currentAcc{
    background-color: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 2rem;
    padding: 1rem;
    margin-left: 4rem;
    margin-right: 4rem;
    display: flex;
    flex-direction: column;
    gap: 0.5em;
  }
  
  .saverAcc h2,
  .currentAcc h2{
  font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
  text-align: center;
  
  }
  
  .saverAcc p,
  .currentAcc p{
  font-size: 14px; font-family: 'Glacial Indifference', 'Times New Roman', Times, serif; 
  color: #070707;
  }
  
  .currentAccImg,
  .saverAccImg{
  display: flex;
  justify-content: center;
  align-items: center;
  }
  
  .currentAccImg img{
  width: 350px;
  height: 250px;
  object-fit: cover;
  border-top-left-radius: 2rem;
  border-top-right-radius: 2rem;
  border-bottom-right-radius: 9rem;
  /* border-bottom-left-radius: 5rem; */
  position: relative;
  top: -9px;
  /* right: 10px; */
  }
  
  .saverAccImg img{
  width: 350px;
  height: 250px;
  object-fit: cover;
  border-top-left-radius: 2rem;
  border-top-right-radius: 2rem;
  border-bottom-left-radius: 9rem;
  /* border-bottom-left-radius: 5rem; */
  position: relative;
  top: -9px;
  /* right: 10px; */
  }
  
  .currentAccCTA button,
  .saverAccCTA button{
    border-radius: 3em;
    border: 1px solid #a6a6a6;
    background-color: #fff;
    padding: 0.7rem;
    font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
  }
  
  .joinUsImg{
  border-top-left-radius: 2rem;
  border-top-right-radius: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  }
  .joinUsImg img {
  width: 250px;
  height: 200px;
  position: relative;
  top: 0px;
  object-fit: cover;
  }
  
  .joinUsText{
  margin-left: 2.5em;
  margin-right: 2.5em;
  font-size: 14px; 
  font-family: 'Glacial Indifference', 'Times New Roman', Times, serif; 
  border-top: 1px solid  #c1c1c1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.30em;
  }
  
  .joinUsText h2{
  padding-left: 1em;
  }
  
  .joinUsText p{
  text-align: end;
  border-top-left-radius: 2em;
  }
  
  .cardContainer{
    background-color: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 2rem;
    padding: 1rem;
    margin-left: 2rem;
    margin-right: 2rem;
    display: block;
    position: relative;
    top: -15px;
    overflow: hidden;
  }
  
  .textContainer{
    background-color: #fff;
    padding: 1rem;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  .textContainer h3{
    font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
    padding-bottom: 1em;
  }
  
  .textContainer p{
    font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
    padding-bottom: 0.51em;
    line-height: 1.4em;
  }
  
  .investment {
    background-color: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-bottom-right-radius: 2rem;
    padding: 1rem;
    margin-top: 4.5em;
    margin-left: 4rem;
    margin-right: 4rem;
    display: flex;
    flex-direction: column;
    gap: 0.5em;
  }
  
  .investmentImg {
    background-image: url('../icons/dashboard_24dp_E8EAED_FILL0_wght400_GRAD0_opsz24.svg');
    background-color: #e8eaed;
    border-radius: 2em;
    position:relative;
    top: -10px;
    width: 300px;
    height: 200px;
    background-repeat: repeat-y;
    background-size: contain;
    background-position: 90%;
    background-position: right;
  }
  .investmentImg img{
    width: 300px;
    height: 200px;
    object-fit: cover;
    object-position: center center;
    border-radius: 2em;
    position: relative;
    top: -34px;
    right: 60px;
    
    /* border-bottom-left-radius: 5rem; */
  }
  
  .investmentText {
    padding-top: 1em;
    text-align: justify;
    position: relative;
    top: -25px;
    right: -40px;
    display: flex;
    flex-direction: column;
    gap: 0.5em;
    font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
  }
  
  .investmentCTA button{
    border-radius: 3em;
    border: 1px solid #a6a6a6;
    background-color: #fff;
    padding: 0.7rem;
    font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
  }
  /* BANK CARDS */
  
  .bankCard{
    display: flex;
    flex-direction: column;
    place-items: center center;
  }
  .bankCards{
    height: 250px;
    max-height: 250px;
    display: flex;
    flex-direction: column;
    margin: auto
  }
  .backimg{
    position: relative;
    width: 300px;
    height: 400px;
    bottom: 30px;
  }
  
  .frontimg{
    position: relative;
    width: 300px;
    height: 400px;
    top: -400px;
    right: 30px;
  }
  
  .bankCardText{
    font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0.5em;
  }
  
  .bankCardText h2{
    text-align: center;
    padding-bottom: 0.2em;
  }
  
  .bankCardText p{
    padding-top: 0.2em;
    padding-right: 1.2em;
    padding-left: 1.2em;
  }
  
  .bankCardCTA{
    display: flex;
    flex-direction: row;
    justify-items: space-between;
    align-content: center;
  }
  .bankCardCTA button{
    cursor: pointer;
    font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
    background-color: #c1c1c1;
    padding: 0.7em;
    border: none;
    width: 120px;
    margin: 0.6em;
    border-radius: 0.6em;
  }
  
  .bankCardCTA a{
    cursor: pointer;
    background-color: red;
  }
  
  .featuresContainer{
    display: flex;
    gap: 1em;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
  
  .features{
    border: 1px solid #909090;
  }
  
  .features img{
    width: 100px;
    height: 150px;
    margin-left: 25px;
  }
  
  .featuresText{
    background-color: #c1c1c1;
    padding: 0.50em;
    width: 100%;
    height: 100%;
    font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
  }
  
  .featuresText h3{
    height: 30px;
  }
  
  .swiper-container {
    margin: 20px auto;
    overflow: hidden;
  }
  
  .swiper-wrapper {
    display: flex;
    flex-wrap: nowrap;
  }
  
  .swiper-slide {
    flex-shrink: 0;
    flex-basis: 40%;
    margin: 7px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  .swiper-slide-last {
    margin: 1px;
  }
  
  .swiper-slide img {
    width: 250px;
    height: 225px;
    object-fit: cover;
    border-radius: 10px;
  }
  
  .swiper-slideText {
    background-color: rgba(0, 0, 0, 0.1);
    width: 250px;
    padding: 10px;
    color: #000;
    height: 280px;
    border-radius: 1em;
  }
  
  .swiper-slideText-blog{
    color: #909090;
    font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
    font-size: 12px;
    display: flex;
    justify-content: space-between;
    align-content: center;
    gap: 1rem;
  }
  
  .swiper-slideText h2 {
    font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
    font-size: 18px;
    margin-bottom: 2px;
    height: 45px;
  }
  
  .swiper-slideText p {
    font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
    font-size: 14px;
  }
  
  .swiper-slideText button{
    background-color: #fff;
    padding: 0.71em;
    box-shadow: rgba(0, 0, 0, 0.1);
    border: 1px solid #fff;
    border-radius: 0.61em;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    margin-top: 1em;
  }
  
  .swiper-slideText a{
    font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
    color: #000;
    text-decoration: none;
    cursor: pointer;
  }
  
  .testimonial{
    display: flex;
    flex-direction: column;
    
  }
  
  #testimonial{
    display: flex;
    flex-direction: column;
    gap: 0.50em;
  }
  
  .testimonialsHeader{
    font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
    padding: 0.2em;
    padding-left: 0.50em;
    color: #000;
  }
  
  .testimonials{
    margin: 1em;
    margin-left: 1em;
    margin-right: 1em;
    /* border: 1px solid #c1c1c1; */
    border-radius: 0.6em;
    padding: 1em;
    border: 1px solid #ddd;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 0.40em;
  }
  
  .role{
    display: flex;
    flex-direction: row;
    gap: 0.61em;
  }
  
  .testimonials img{
    width: 60px;
    height: 60px;
    object-fit: cover;
    object-position: 70% 25%;
    border: 2px solid #cdac49;
    border-radius: 20rem;
  }
  
  .testimonialsText{
    font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
    height: 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-self: center;
    gap: 0.10em;
  }
  
  .testimonials p{
    font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
    height: 100%;
  }
  
  .getStarted{
    margin-top: 5em;
    margin-left: 0.50em
  }
  
  
  .getStartedPhysical,
  .getStartedOnline{
    padding: 1em;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 1em;
    position: relative; /* add this */
    transition: transform 0.5s ease-in-out;
  }
  
  .getStartedOnline{
  display: none;
  }
  
  /* .getStartedPhysical.active,
  .getStartedOnline.active {
    transform: translateX(0); /* add this 
  }
  
  .getStartedPhysical.inactive,
  .getStartedOnline.inactive {
    transform: translateX(-100%); /* add this 
  } */
  
  .getStartedPhysicalHeader,
  .getStartedOnlineHeader{
    font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
    font-size: 28px;
    display: none;
  }
  
  .getStartedPhysicalHeader h3,
  .getStartedOnlineHeader h3{
    text-align: center;
  }
  
  .linedUp {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1em;
  }
  
  .linedUp p {
    align-self: center;
    font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
    /* width: 130px; */
  }
  
  .circledUp1,
  .circledUp2,
  .circledUp3,
  .circledUp4 {
    border: 2px solid #909090;
    background-color: #c1c1c1;
    width: 30px; /*40px*/
    height: 30px; /*40px*/
    border-radius: 100rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .circledUp1 span,
  .circledUp2 span,
  .circledUp3 span,
  .circledUp4 span {
    font-size: 18px; /*32px*/
    font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
    color: #fff;
  }
  
  .slogan h2 {
    font-family: 'Lancelot', 'Times New Roman', Times, serif;
    height: 100%;
    margin: 5rem;
    font-style: italic;
    text-align: center;
  }
  
  .mobileApp{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background-color: #c1c1c1;
  }
  
  /* .phoneApp{
   display: flex;
   justify-content: center;
   align-content: center;
   padding-right: 6rem;
    background-color: #fff;
  }
  
  .phoneApp img{
    width: 400px;
    height: 400px;
  } */
  
  .phoneFunction{
    background-color: #c1c1c1;
    border:  3px solid #ddd;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 0.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 1em;
    margin-left: 2rem;
    margin-right: 2rem;
    padding: 1em; 
  }
  
  .phoneFunction h2{
    font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
    text-transform: uppercase;
    color: #fff;
    padding-bottom: 0.7em;
  }
  
  .phoneFunction p{
    font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
    line-height: 1.3em;
  }
  
  .phoneFunction ul{
    padding: 1rem;
    padding-top: 0;
    list-style-position: inside;
    font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
  }
  
  .phoneFunction ul li{
    padding-top: 0.7em;
  }
  
  /* FOOTER ELEMENTS */
  footer{
    background-color: #c1c1c1;
  }
  
  .storeButtons {
    display: flex;
    gap: 20px;
    background-color: #c1c1c1;
    padding:0.91em;
  }
  .storeButton {
    display: flex;
    align-items: center;
    background-color: #909090;
    border-radius: 10px;
    margin: auto;
    padding: 10px 20px;
    color: #000;
    font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
    font-size: 16px;
    text-decoration: none;
  }
  .storeButton img {
    height: 40px;
    width: 40px;
    margin-right: 10px;
  }
  
  .accordion {
    background-color: #c1c1c1;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    border-top: 2px solid #fff;
  }
  .accordion-item {
    border-bottom: 1px solid #fff;
  }
  
  /* .accordion-item:last-child {
    border-bottom: none;
  } */
  
  .accordion-header {
    padding: 20px;
    font-size: 18px;
    font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .accordion-header:hover {
    background-color: #a6a6a6;
  }
  .arrowUp {
    display: none;
  }
  
  .arrowDown{
    display: block;
  }
  .accordion-content {
    font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
    display: none;
    padding: 0 20px 20px 20px;
    font-size: 16px;
  }
  .accordion-content a {
    color: #6d6968;
    font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
    text-decoration: none;
    display: block;
    margin: 5px 0;
  }
  .accordion-content a:hover {
    text-decoration: underline;
    color: #909090;
  }
  
  .connect {
    background-color: #c1c1c1;
    padding: 1em;
  }
  
  .connect h3{
    font-family: 'Glacial Indifference', 'Times New Roman', Times, serif;
  }
  
  .connect .socialMedia{
    display: flex;
    justify-content: center;
    align-content: center;
    gap: 0.5rem
  }
  
  .license{
    padding: 0.41em;
    margin-left: 4rem;
    margin-right: 4rem;
    border-top-right-radius: 0.6em;
    border-top-left-radius: 0.4em;
    border-top: 1px solid #fff; 
    border-left: 1px solid #fff; 
    border-right: 1px solid #fff; 
    font-family: 'Glacial Indifference', 'Times New Roman', Times, serif; 
    text-align: center;
    font-weight: 400; 
    font-size: 0.90em;
    background-color: #fff;
  }
   }