@media (max-width: 576px) {
  .contact-details {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
    flex-direction: column;
  }

  .faq {
    display: flex;
    padding: 1rem;
    gap: 4rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    color: #6d1346;
  }

  .faq h2 {
    font-size: 1rem;
  }

  .faq p {
    font-size: 0.8rem;
  }

  .questions {
    width: 100%;
  }

  .question {
    min-height: 7rem;
    border-bottom: 1px solid grey;
  }

  .seperate-questions {
    height: 65vh;
    width: 1px;
    background-color: rgb(174, 172, 172);
    display: none;
  }

  .f-a-q h1 {
    text-align: center;
    color: #bb9a54;
    font-size: 1.2rem;
  }
  .f-a-q .cta {
    display: flex;
    flex-direction: column;
    gap: 0rem;
  }
  .f-a-q .cta h2 {
    color: white;
  }

  .f-a-q .cta a {
    background-color: #bb9a54;
    padding: 1rem;
    text-decoration: none;
    color: white;
    font-weight: 700;
    transition: 0.3s ease;
  }

  .f-a-q .cta a:hover {
    background-color: #6d1346;
  }

  .contacts-page {
    display: flex;
    height: fit-content;
    flex-direction: column;
    width: 100%;
    padding: 1rem;
    box-sizing: border-box;
    gap: 2rem;
  }
  .about {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
  }

  .logo img {
    height: auto;
    width: 10rem;
    margin-top: 1rem;
  }

  .contact-main {
    width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
  }

  .contact-main h6 {
    color: #bb9a54;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    text-align: center;
  }
  .contact-main h2 {
    color: #6d1346;
    margin-top: 0rem;
    text-align: center;
  }

  .general-contact {
    border: 1px solid grey;
  }

  .general-contact h1 {
    width: 100%;
    font-size: 1rem;
    text-align: center;
    background-color: #6d1346;
    padding-bottom: 0.5rem;
    padding-top: 0.5rem;
    color: white;
    margin-top: 0rem;
  }

  .general-contact p {
    color: #6d1346;
    font-weight: 800;
    padding-left: 1rem;
  }
  .general-contact h3 {
    color: #6d1346;
    padding-left: 1rem;
  }
  .contact-details {
    height: fit-content;
    width: 100%;
    background-color: rgb(255, 255, 255);
    display: flex;
    gap: 1rem;
    justify-content: center;
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
  }

  .contact-box {
    height: 10rem;
    width: 100%;
    border: 1px solid grey;
  }

  .contact-box h4 {
    margin-top: 0rem;
    background-color: #6d1346;
    color: white;
    padding: 0.4rem;
    width: 100%;
    box-sizing: border-box;
  }

  .contact-box p {
    padding-left: 0.4rem;
    color: #6d1346;
    font-weight: 600;
  }

  .download-links {
    height: 50vh;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: none;
    justify-content: none;
    padding-left: 2rem;
    padding-right: 2rem;
    padding-top: 2rem;
    box-sizing: border-box;
    gap: 1rem;
  }

  .downloads {
    border: 1px solid grey;
    padding-bottom: 1rem;
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    text-align: center;
    box-sizing: border-box;
    height: 8rem;
  }

  .docs {
    display: flex;
    flex-direction: column;
    height: 100vh;
    text-align: center;
    width: 100%;
  }

  .docs p {
    color: #bb9a54;
    font-weight: 600;
    font-size: 0.9rem;
  }

  .docs h3 {
    color: #6d1346;
    font-size: 1rem;
    margin-top: 0rem;
  }

  hr {
    width: 100%;
    color: #6d1346;
  }

  .downloads a {
    text-decoration: none;
    font-weight: 500;
    color: #6d1346;
  }

  .downloads h3 {
    width: 100%;
    color: #6d1346;
  }

  .download-links {
    height: fit-content;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .downloads {
    border: 1px solid grey;
    padding-bottom: 1rem;
    display: flex;
    flex-direction: column;
  }

  body.menu-open {
    overflow: hidden; /* ✅ lock background */
  }

  .top-bar nav,
  .quick-actions-links,
  header nav {
    display: none;
  }

  /* Show hamburger button */
  .menu-toggle {
    display: block;
    font-size: 1.5rem;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    margin-left: auto;
  }

  .mobile-menu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    background: #6d1346;
    position: absolute;
    top: 5rem; /* space below top bar */
    left: 0;
    right: 0;
    bottom: 0; /* make it fill until bottom */
    z-index: 999;

    overflow-y: auto; /* ✅ allow vertical scrolling */

    /* animation state */
    transform: translateX(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  }

  /* When menu is active */
  .mobile-menu.show {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-menu a {
    display: block;
    margin: 0.8rem 0;
    color: white;
    text-decoration: none;
    font-weight: bold;
    width: 100%;
    transition: 0.3s ease;
  }

  .mobile-menu a:hover {
    color: #bb9a54;
    padding-left: 0.5rem;
  }

  .mobile-menu.show {
    display: flex;
  }

  .top-bar {
    background-color: #b6215f;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 1rem;
    padding-right: 1rem;
    height: 3rem;
    color: white;
    position: fixed;
    width: 100%;
    box-sizing: border-box;
  }

  .top-bar a,
  header a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 0.8rem;
    margin: 0 0.5rem 0rem 0.1rem;
    transition: 0.3s ease;
  }

  .top-bar a:hover,
  header a:hover,
  footer a:hover {
    color: #bb9a54;
  }

  .quick-button {
    background-color: #6d1346;
    padding: 0rem;
    text-transform: uppercase;
  }

  .one {
    background-color: #6d1346;
    border-bottom-left-radius: 0px;
    border-top-left-radius: 0px;
    box-sizing: border-box;
  }

  .two {
    border-bottom-left-radius: 0px;
    border-top-left-radius: 0px;
    box-sizing: border-box;
  }

  .two:hover {
    background-color: #6d1346;
  }

  header {
    background-color: #6d1346;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 5rem;
    color: white;
    box-sizing: border-box;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  header img {
    position: absolute;
    left: 1rem;
    height: 60%;
  }

  .hero {
    background-image: url(/src/bg1.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 100vh;
    background-attachment: fixed;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-sizing: border-box;
    width: 100%;
  }

  .hero-content {
    height: 30rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero-txt {
    color: white;
    max-width: 30rem;
  }

  .hero-txt h1 {
    font-size: 2rem;
  }

  .hero-txt p {
    font-size: 1.5rem;
    font-weight: 300;
  }

  .hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
  }

  .international {
    background-color: #6d1346;
    height: fit-content;
    width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
    color: white;
  }

  .prospective {
    background-color: #bb9a54;
    height: fit-content;
    width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
    color: white;
  }

  .cta-page {
    height: fit-content;
    width: 100%;
    padding-left: 3rem;
    padding-right: 3rem;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  .cta {
    width: 100%;
    height: fit-content;
    background-color: #6d1346;
    padding-left: 2rem;
    padding-right: 2rem;
    padding-bottom: 1rem;
    padding-top: 1rem;
    margin-top: 1rem;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0rem;
    text-align: center;
  }

  .cta img {
    height: auto;
    width: 100px;
  }

  .seperator {
    background-color: rgb(43, 172, 116);
    height: 90%;
    width: 0.1rem;
  }

  .cont {
    height: 100%;
    width: 100%;
    color: white;
  }

  .sep {
    height: 0.2rem;
    width: 100%;
    background-color: white;
  }

  .status {
    height: fit-content;
    width: 100%;
    margin-top: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
  }

  .deadline {
    height: 100%;
    width: 90%;
    background-color: #bb9a54;
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .contacts {
    height: 100%;
    width: 90%;
    background-color: #6d1346;
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .apply-cta {
    height: 100%;
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
    gap: 0.6rem;
  }

  .status h2 {
    border-bottom: 0.1rem solid white;
    width: 100%;
    font-size: 0.8rem;
    color: white;
  }

  .apply-cta a {
    text-decoration: none;
    height: 3rem;
    width: 100%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
  }

  .btn1 {
    background-color: #6d1346;
  }

  .btn2 {
    background-color: #bb9a54;
  }

  .btn1:hover {
    background-color: #bb9a54;
  }

  .btn2:hover {
    background-color: #6d1346;
  }

  .info {
    height: fit-content;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
  }

  .info img {
    height: auto;
    width: 150px;
  }

  .desc {
    height: 100%;
    color: #6d1346;
    max-width: 100%;
    text-align: center;
  }

  .desc h2 {
    font-size: 1rem;
  }
  .desc p {
    font-size: 1rem;
  }

  .info .seperator {
    background-color: #6d1346;
    height: 100%;
    width: 0.1rem;
  }
  .high {
    color: white;
    display: flex;
    flex-direction: column;
  }
  .high h2 {
    width: 100%;
    border-bottom: 2px solid white;
  }

  .keys {
    gap: 2rem;
    display: flex;
    flex-direction: column;
  }

  .highlights {
    max-width: 100%;
  }

  .why-us {
    height: fit-content;
    width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 0rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    box-sizing: border-box;
    color: #6d1346;
  }
  .why-us h2 {
    border-bottom: 4px solid #6d1346;
    width: fit-content;
  }

  .points {
    height: fit-content;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding-bottom: 1.5rem;
    gap: 1rem;
  }

  .box1 {
    height: fit-content;
    width: 100%;
    border: 2px solid #6d1346;
    padding: 1rem;
  }

  .services {
    background-image: url(/src/bg4.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 80vh;
    padding-left: 5rem;
    padding-right: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
  }

  .opening-hours {
    height: 50vh;
    padding-left: 5rem;
    padding-right: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .working-days {
    height: 30%;
    width: 100%;
    border: 1px solid #b6215f;
  }

  footer {
    height: fit-content;
    width: 100%;
    background-color: #6d1346;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
    color: white;
    position: relative;
  }

  footer img {
    position: absolute;
    opacity: 0.2;
    width: 100%;
  }

  footer .links {
    width: 100%;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .seperate {
    height: 0.1rem;
    width: 100%;
    background-color: white;
    margin-top: 4rem;
  }

  .bottom {
    width: 100%;
    margin-top: 4rem;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
  }

  footer a {
    color: white;
    text-decoration: none;
  }

  .div {
    width: 100%;
  }

  .div h2 {
    font-size: 1rem;
  }

  .div li {
    font-size: 0.8rem;
  }
}

@media (min-width: 577px) and (max-width: 768px) {
  /* Hide desktop navs */

  .faq {
    display: flex;
    padding: 1rem;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    color: #6d1346;
  }

  .faq h2 {
    font-size: 1rem;
  }

  .faq p {
    font-size: 0.8rem;
  }

  .questions {
    width: 40%;
    height: 80vh;
  }

  .question {
    min-height: 7rem;
    border-bottom: 1px solid grey;
  }

  .seperate-questions {
    height: 65vh;
    width: 1px;
    background-color: rgb(174, 172, 172);
    display: none;
  }

  .cta {
    box-sizing: border-box;
  }

  .f-a-q h1 {
    text-align: center;
    color: #bb9a54;
    font-size: 1.2rem;
  }
  .f-a-q .cta {
    display: flex;
    flex-direction: column;
    gap: 0rem;
  }
  .f-a-q .cta h2 {
    color: white;
  }

  .f-a-q .cta a {
    background-color: #bb9a54;
    padding: 1rem;
    text-decoration: none;
    color: white;
    font-weight: 700;
    transition: 0.3s ease;
  }

  .f-a-q .cta a:hover {
    background-color: #6d1346;
  }

  .about {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
  }

  .logo img {
    height: auto;
    width: 10rem;
    margin-top: 1rem;
  }

  .contact-main {
    width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
  }

  .contact-main h6 {
    color: #bb9a54;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    text-align: center;
  }
  .contact-main h2 {
    color: #6d1346;
    margin-top: 0rem;
    text-align: center;
  }

  .general-contact {
    border: 1px solid grey;
  }

  .general-contact h1 {
    width: 100%;
    font-size: 1rem;
    text-align: center;
    background-color: #6d1346;
    padding-bottom: 0.5rem;
    padding-top: 0.5rem;
    color: white;
    margin-top: 0rem;
  }

  .general-contact p {
    color: #6d1346;
    font-weight: 800;
    padding-left: 1rem;
  }
  .general-contact h3 {
    color: #6d1346;
    padding-left: 1rem;
  }
  .contact-details {
    height: fit-content;
    width: 100%;
    background-color: rgb(255, 255, 255);
    display: flex;
    gap: 1rem;
    justify-content: center;
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
  }

  .contact-box {
    height: 10rem;
    width: 100%;
    border: 1px solid grey;
  }

  .contact-box h4 {
    margin-top: 0rem;
    background-color: #6d1346;
    color: white;
    padding: 0.4rem;
    width: 100%;
    box-sizing: border-box;
  }

  .contact-box p {
    padding-left: 0.4rem;
    color: #6d1346;
    font-weight: 600;
  }

  .download-links {
    height: 50vh;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: none;
    justify-content: none;
    padding-left: 2rem;
    padding-right: 2rem;
    padding-top: 2rem;
    box-sizing: border-box;
    gap: 1rem;
  }

  .downloads {
    border: 1px solid grey;
    padding-bottom: 1rem;
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    text-align: center;
    box-sizing: border-box;
    height: 8rem;
  }

  .docs {
    display: flex;
    flex-direction: column;
    height: 100vh;
    text-align: center;
    width: 100%;
  }

  .docs p {
    color: #bb9a54;
    font-weight: 600;
    font-size: 0.9rem;
  }

  .docs h3 {
    color: #6d1346;
    font-size: 1rem;
    margin-top: 0rem;
  }

  hr {
    width: 100%;
    color: #6d1346;
  }

  .downloads a {
    text-decoration: none;
    font-weight: 500;
    color: #6d1346;
  }

  .downloads h3 {
    width: 100%;
    color: #6d1346;
  }

  body.menu-open {
    overflow: hidden; /* ✅ lock background */
  }

  .top-bar nav,
  .quick-actions-links,
  header nav {
    display: none;
  }

  /* Show hamburger button */
  .menu-toggle {
    display: block;
    font-size: 1.5rem;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    margin-left: auto;
  }

  .mobile-menu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    background: #6d1346;
    position: absolute;
    top: 5rem; /* space below top bar */
    left: 0;
    right: 0;
    bottom: 0; /* make it fill until bottom */
    z-index: 999;

    overflow-y: auto; /* ✅ allow vertical scrolling */

    /* animation state */
    transform: translateX(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  }

  /* When menu is active */
  .mobile-menu.show {
    transform: translateY(0); /* slide down */
    opacity: 1;
    pointer-events: auto; /* clickable */
  }

  .mobile-menu a {
    display: block;
    margin: 0.8rem 0;
    color: white;
    text-decoration: none;
    font-weight: bold;
    width: 100%;
    transition: 0.3s ease;
  }

  .mobile-menu a:hover {
    color: #bb9a54;
    padding-left: 0.5rem;
  }

  .mobile-menu.show {
    display: flex;
  }

  .top-bar {
    background-color: #b6215f;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 1rem;
    padding-right: 1rem;
    height: 3rem;
    color: white;
    width: 100%;
    box-sizing: border-box;
    position: fixed;
  }

  .top-bar a,
  header a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 0.8rem;
    margin: 0 0.5rem 0rem 0.1rem;
    transition: 0.3s ease;
  }

  .top-bar a:hover,
  header a:hover,
  footer a:hover {
    color: #bb9a54;
  }

  .quick-button {
    background-color: #6d1346;
    padding: 0;
  }

  .one {
    border-bottom-left-radius: 0px;
    border-top-left-radius: 0px;
    width: fit-content;
    box-sizing: border-box;
  }

  .two {
    border-bottom-right-radius: 0px;
    border-top-right-radius: 0px;
    box-sizing: border-box;
  }

  .two:hover {
    background-color: #6d1346;
  }

  header {
    background-color: #6d1346;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 6rem;
    color: white;
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
  }

  header img {
    position: absolute;
    left: 5rem;
    height: 50%;
  }

  .hero {
    background-image: url(/src/bg1.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: fit-content;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .hero-content {
    height: 30rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero-txt {
    color: white;
    max-width: 30rem;
  }

  .hero-txt h1 {
    font-size: 2rem;
  }

  .hero-txt p {
    font-size: 1.2rem;
    font-weight: 300;
  }

  .hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
  }

  .international {
    background-color: #6d1346;
    height: 15rem;
    width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
    color: white;
  }

  .prospective {
    background-color: #bb9a54;
    height: 15rem;
    width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
    color: white;
  }

  .cta-page {
    height: fit-content;
    width: 100%;
    padding-left: 3rem;
    padding-right: 3rem;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  .cta {
    width: 100%;
    height: fit-content;
    padding-left: 2rem;
    padding-right: 2rem;
    padding-bottom: 1rem;
    padding-top: 1rem;
    margin-top: 1rem;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0rem;
    text-align: center;
  }

  .cta img {
    height: auto;
    width: 90px;
    display: none;
  }

  .seperator {
    background-color: rgb(43, 172, 116);
    height: 90%;
    width: 0.1rem;
  }

  .cont {
    height: 100%;
    width: 100%;
    color: white;
  }

  .sep {
    height: 0.2rem;
    width: 100%;
    background-color: white;
  }

  .status {
    height: fit-content;
    width: 100%;
    margin-top: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
  }

  .deadline {
    height: 100%;
    width: 50%;
    background-color: #bb9a54;
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .contacts {
    height: 100%;
    width: 50%;
    background-color: #6d1346;
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .apply-cta {
    height: 100%;
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding-left: 0rem;
    padding-right: 0rem;
    gap: 0.6rem;
  }

  .status h2 {
    border-bottom: 0.1rem solid white;
    width: 100%;
    font-size: 0.8rem;
    color: white;
  }

  .apply-cta a {
    text-decoration: none;
    height: 3rem;
    width: 100%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
  }

  .btn1 {
    background-color: #6d1346;
  }

  .btn2 {
    background-color: #bb9a54;
  }

  .btn1:hover {
    background-color: #bb9a54;
  }

  .btn2:hover {
    background-color: #6d1346;
  }

  .info {
    height: fit-content;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
  }

  .info img {
    height: auto;
    width: 150px;
  }

  .desc {
    height: 100%;
    color: #6d1346;
    max-width: 100%;
    text-align: center;
  }

  .desc h2 {
    font-size: 1rem;
  }
  .desc p {
    font-size: 1rem;
  }

  .info .seperator {
    background-color: #6d1346;
    height: 100%;
    width: 0.1rem;
  }
  .high {
    color: white;
    display: flex;
    flex-direction: column;
  }
  .high h2 {
    width: 100%;
    border-bottom: 2px solid white;
  }

  .keys {
    gap: 2rem;
    display: flex;
    flex-direction: column;
  }

  .highlights {
    max-width: 100%;
  }

  .why-us {
    height: fit-content;
    width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 0rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    box-sizing: border-box;
    color: #6d1346;
  }
  .why-us h2 {
    border-bottom: 4px solid #6d1346;
    width: fit-content;
  }

  .points {
    height: fit-content;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding-bottom: 1.5rem;
    gap: 1rem;
  }

  .box1 {
    height: fit-content;
    width: 100%;
    border: 2px solid #6d1346;
    padding: 1rem;
  }

  .services {
    background-image: url(/src/bg4.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 80vh;
    padding-left: 5rem;
    padding-right: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .opening-hours {
    height: 50vh;
    padding-left: 5rem;
    padding-right: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .working-days {
    height: 30%;
    width: 100%;
    border: 1px solid #b6215f;
  }

  footer {
    height: fit-content;
    width: 100%;
    background-color: #6d1346;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
    color: white;
    position: relative;
  }

  footer img {
    position: absolute;
    opacity: 0.2;
    width: 100%;
  }

  footer .links {
    width: fit-content;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 2rem;
  }

  .seperate {
    height: 0.1rem;
    width: 100%;
    background-color: white;
    margin-top: 4rem;
  }

  .bottom {
    width: 100%;
    margin-top: 4rem;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
  }

  footer a {
    color: white;
    text-decoration: none;
  }

  .div {
    width: 100%;
  }

  .div h2 {
    font-size: 1rem;
  }

  .div li {
    font-size: 0.8rem;
  }
}

/* Tablets*/
@media (min-width: 769px) and (max-width: 991px) {
  .faq {
    display: flex;
    padding: 1rem;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    color: #6d1346;
  }

  .faq h2 {
    font-size: 1rem;
  }

  .faq p {
    font-size: 0.8rem;
  }

  .questions {
    width: 40%;
    height: 80vh;
  }

  .question {
    min-height: 7rem;
    border-bottom: 1px solid grey;
  }

  .seperate-questions {
    height: 80vh;
    width: 1px;
    background-color: rgb(174, 172, 172);
  }

  .cta {
    box-sizing: border-box;
  }

  .f-a-q h1 {
    text-align: center;
    color: #bb9a54;
    font-size: 1.2rem;
  }
  .f-a-q .cta {
    display: flex;
    flex-direction: column;
    gap: 0rem;
  }
  .f-a-q .cta h2 {
    color: white;
  }

  .f-a-q .cta a {
    background-color: #bb9a54;
    padding: 1rem;
    text-decoration: none;
    color: white;
    font-weight: 700;
    transition: 0.3s ease;
  }

  .f-a-q .cta a:hover {
    background-color: #6d1346;
  }

  .contacts-page {
    display: flex;
    height: fit-content;
    flex-direction: column;
    gap: 2rem;
  }
  .about {
    display: flex;
    gap: 8rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
  }

  .logo img {
    height: auto;
    width: 10rem;
  }

  .contact-main {
    width: 30%;
  }

  .contact-main h6 {
    color: #bb9a54;
    margin-bottom: 0.5rem;
    font-size: 0.8rem;
  }
  .contact-main h2 {
    color: #6d1346;
    margin-top: 0rem;
    font-size: 1rem;
  }

  .general-contact {
    border: 1px solid grey;
  }

  .general-contact h1 {
    width: 100%;
    font-size: 0.7rem;
    text-align: center;
    background-color: #6d1346;
    padding-bottom: 0.5rem;
    padding-top: 0.5rem;
    color: white;
    margin-top: 0rem;
  }

  .general-contact h3 {
    font-size: 0.9rem;
  }

  .general-contact p {
    color: #6d1346;
    font-weight: 800;
    padding-left: 1rem;
    font-size: 0.8rem;
  }
  .general-contact h3 {
    color: #6d1346;
    padding-left: 1rem;
  }
  .contact-details {
    height: fit-content;
    width: 100%;
    background-color: rgb(255, 255, 255);
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: start;
    padding-left: 3rem;
  }

  .contact-box {
    height: fit-content;
    width: fit-content;
    border: 1px solid grey;
  }

  .contact-box h4 {
    margin-top: 0rem;
    background-color: #6d1346;
    color: white;
    padding: 0.4rem;
    width: 100%;
    box-sizing: border-box;
  }

  .contact-box p {
    padding-left: 0.4rem;
    color: #6d1346;
    font-weight: 600;
  }

  .download-links {
    height: fit-content;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding-left: 1rem;
    gap: 1rem;
  }

  .downloads {
    border: 1px solid grey;
    padding-bottom: 1rem;
    display: flex;
    flex-direction: column;
    width: 12rem;
    height: 7rem;
  }

  .top-bar {
    background-color: #b6215f;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 1rem;
    padding-right: 1rem;
    height: 3rem;
    color: white;
  }

  .top-bar a,
  header a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 0.7rem;
    margin: 0 0.5rem 0rem 0.1rem;
    transition: 0.3s ease;
  }

  .top-bar a:hover,
  header a:hover,
  footer a:hover {
    color: #bb9a54;
  }

  .quick-button {
    background-color: #6d1346;
    padding: 0.3rem 1rem;
  }

  .one {
    background-color: #6d1346;
    border-bottom-left-radius: 12px;
    border-top-left-radius: 12px;
  }

  .two {
    background-color: #bb9a54;
    border-bottom-right-radius: 12px;
    border-top-right-radius: 12px;
  }

  .two:hover {
    background-color: #6d1346;
  }

  header {
    background-color: #6d1346;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 5rem;
    color: white;
  }

  header img {
    position: absolute;
    left: 1rem;
    height: 60%;
  }

  .hero {
    background-image: url(/src/bg1.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: fit-content;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .hero-content {
    height: 30rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero-txt {
    color: white;
    max-width: 30rem;
  }

  .hero-txt h1 {
    font-size: 2rem;
  }

  .hero-txt p {
    font-size: 1.2rem;
    font-weight: 300;
  }

  .hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
  }

  .international {
    background-color: #6d1346;
    height: 100%;
    width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
    color: white;
  }

  .prospective {
    background-color: #bb9a54;
    height: 100%;
    width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
    color: white;
  }

  .cta-page {
    height: fit-content;
    width: 100%;
    padding-left: 3rem;
    padding-right: 3rem;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  .cta {
    width: 100%;
    height: fit-content;
    background-color: #6d1346;
    padding-left: 2rem;
    padding-right: 2rem;
    padding-bottom: 1rem;
    padding-top: 1rem;
    margin-top: 1rem;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    text-align: center;
  }

  .cta img {
    height: auto;
    width: 200px;
  }

  .seperator {
    background-color: rgb(43, 172, 116);
    height: 90%;
    width: 0.1rem;
  }

  .cont {
    height: 100%;
    width: 100%;
    color: white;
  }

  .cont p {
    font-size: 0.7rem;
  }

  .cont h2 {
    font-size: 1rem;
    text-align: left;
  }

  .sep {
    height: 0.2rem;
    width: 100%;
    background-color: white;
  }

  .status {
    height: fit-content;
    width: 100%;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
  }

  .deadline {
    height: 100%;
    width: 50%;
    background-color: #bb9a54;
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .contacts {
    height: 100%;
    width: 50%;
    background-color: #6d1346;
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .apply-cta {
    height: 100%;
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding-left: 0rem;
    padding-right: 0rem;
    gap: 0.6rem;
  }

  .status h2 {
    border-bottom: 0.1rem solid white;
    width: 100%;
    font-size: 0.8rem;
    color: white;
  }

  .apply-cta a {
    text-decoration: none;
    height: 2rem;
    width: 100%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
  }

  .btn1 {
    background-color: #6d1346;
  }

  .btn2 {
    background-color: #bb9a54;
  }

  .btn1:hover {
    background-color: #bb9a54;
  }

  .btn2:hover {
    background-color: #6d1346;
  }

  .info {
    height: fit-content;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
  }

  .info img {
    height: auto;
    width: 150px;
  }

  .desc {
    height: 100%;
    color: #6d1346;
    max-width: 100%;
    text-align: center;
  }

  .desc h2 {
    font-size: 1rem;
  }
  .desc p {
    font-size: 1rem;
  }

  .info .seperator {
    background-color: #6d1346;
    height: 100%;
    width: 0.1rem;
  }
  .high {
    color: white;
    display: flex;
    flex-direction: column;
  }
  .high h2 {
    width: 100%;
    border-bottom: 2px solid white;
    text-align: left;
    font-size: 1rem;
  }

  .keys {
    gap: 2rem;
    display: flex;
  }

  .keys li {
    font-size: 0.8rem;
  }

  .highlights {
    max-width: 100%;
  }

  .why-us {
    height: fit-content;
    width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 0rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    box-sizing: border-box;
    color: #6d1346;
  }
  .why-us h2 {
    border-bottom: 4px solid #6d1346;
    width: fit-content;
  }

  .points {
    height: fit-content;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding-bottom: 1.5rem;
    gap: 1rem;
  }

  .box1 {
    height: 15rem;
    width: 20%;
    border: 2px solid #6d1346;
    padding: 1rem;
  }

  .box1 h2 {
    font-size: 1rem;
  }

  .box1 p {
    font-size: 0.8rem;
  }

  .services {
    background-image: url(/src/bg4.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 80vh;
    padding-left: 5rem;
    padding-right: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .opening-hours {
    height: 50vh;
    padding-left: 5rem;
    padding-right: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .working-days {
    height: 30%;
    width: 100%;
    border: 1px solid #b6215f;
  }

  footer {
    height: fit-content;
    width: 100%;
    background-color: #6d1346;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
    color: white;
    position: relative;
  }

  footer img {
    position: absolute;
    opacity: 0.2;
    width: 100%;
  }

  footer .links {
    width: 100%;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 2rem;
  }

  .seperate {
    height: 0.1rem;
    width: 100%;
    background-color: white;
    margin-top: 4rem;
  }

  .bottom {
    width: 100%;
    margin-top: 4rem;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
  }

  footer a {
    color: white;
    text-decoration: none;
  }

  .div {
    width: 100%;
  }

  .div h2 {
    font-size: 1rem;
  }

  .div li {
    font-size: 0.8rem;
  }
  .docs {
    display: flex;
    flex-direction: column;
    height: fit-content;
    text-align: center;
    padding-bottom: 2rem;
  }

  .docs p {
    color: #bb9a54;
    font-weight: 600;
    font-size: 0.9rem;
  }

  .docs h3 {
    color: #6d1346;
    font-size: 1rem;
    margin-top: 0rem;
  }

  hr {
    width: 100%;
    color: #6d1346;
  }

  .downloads a {
    text-decoration: none;
    font-weight: 500;
    color: #6d1346;
  }

  .downloads h3 {
    width: 100%;
    color: #6d1346;
  }
}

/* Laptops*/
@media (min-width: 992px) and (max-width: 1200px) {
  .faq {
    display: flex;
    padding: 2rem;
    gap: 4rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    color: #6d1346;
  }

  .faq h2 {
    font-size: 1rem;
  }

  .faq p {
    font-size: 0.8rem;
  }

  .questions {
    width: 40%;
    height: 70vh;
  }

  .question {
    min-height: 7rem;
    border-bottom: 1px solid grey;
  }

  .seperate-questions {
    height: 65vh;
    width: 1px;
    background-color: rgb(174, 172, 172);
  }

  .cta {
    box-sizing: border-box;
  }

  .f-a-q h1 {
    text-align: center;
    color: #bb9a54;
    font-size: 1.2rem;
  }
  .f-a-q .cta {
    display: flex;
    flex-direction: column;
    gap: 0rem;
  }
  .f-a-q .cta h2 {
    color: white;
  }

  .f-a-q .cta a {
    background-color: #bb9a54;
    padding: 1rem;
    text-decoration: none;
    color: white;
    font-weight: 700;
    transition: 0.3s ease;
  }

  .f-a-q .cta a:hover {
    background-color: #6d1346;
  }

  .download-links {
    height: fit-content;
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 1rem;
  }

  .downloads {
    border: 1px solid grey;
    padding-bottom: 1rem;
    display: flex;
    flex-direction: column;
  }

  .top-bar {
    background-color: #b6215f;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 1rem;
    padding-right: 1rem;
    height: 3rem;
    color: white;
  }

  .top-bar a,
  header a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 0.7rem;
    margin: 0 0.5rem 0rem 0.1rem;
    transition: 0.3s ease;
  }

  .top-bar a:hover,
  header a:hover,
  footer a:hover {
    color: #bb9a54;
  }

  .quick-button {
    background-color: #6d1346;
    padding: 0.3rem 1rem;
  }

  .one {
    background-color: #6d1346;
    border-bottom-left-radius: 12px;
    border-top-left-radius: 12px;
  }

  .two {
    background-color: #bb9a54;
    border-bottom-right-radius: 12px;
    border-top-right-radius: 12px;
  }

  .two:hover {
    background-color: #6d1346;
  }

  header {
    background-color: #6d1346;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 5rem;
    color: white;
  }

  header img {
    position: absolute;
    left: 1rem;
    height: 60%;
  }

  .hero {
    background-image: url(/src/bg1.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: fit-content;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .hero-content {
    height: 30rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero-txt {
    color: white;
    max-width: 30rem;
  }

  .hero-txt h1 {
    font-size: 2rem;
  }

  .hero-txt p {
    font-size: 1.2rem;
    font-weight: 300;
  }

  .hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
  }

  .international {
    background-color: #6d1346;
    height: fit-content;
    width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
    color: white;
  }

  .prospective {
    background-color: #bb9a54;
    height: fit-content;
    width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
    color: white;
  }

  .cta-page {
    height: fit-content;
    width: 100%;
    padding-left: 3rem;
    padding-right: 3rem;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  .cta {
    width: 100%;
    height: fit-content;
    background-color: #6d1346;
    padding-left: 2rem;
    padding-right: 2rem;
    padding-bottom: 1rem;
    padding-top: 1rem;
    margin-top: 1rem;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0rem;
    text-align: center;
  }

  .cta img {
    height: auto;
    width: 90px;
    display: none;
  }

  .seperator {
    background-color: rgb(43, 172, 116);
    height: 90%;
    width: 0.1rem;
  }

  .cont {
    height: 100%;
    width: 100%;
    color: white;
  }

  .sep {
    height: 0.2rem;
    width: 100%;
    background-color: white;
  }

  .status {
    height: fit-content;
    width: 100%;
    margin-top: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
  }

  .deadline {
    height: 100%;
    width: 50%;
    background-color: #bb9a54;
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .contacts {
    height: 100%;
    width: 50%;
    background-color: #6d1346;
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .apply-cta {
    height: 100%;
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding-left: 0rem;
    padding-right: 0rem;
    gap: 0.6rem;
  }

  .status h2 {
    border-bottom: 0.1rem solid white;
    width: 100%;
    font-size: 0.8rem;
    color: white;
  }

  .apply-cta a {
    text-decoration: none;
    height: 3rem;
    width: 100%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
  }

  .btn1 {
    background-color: #6d1346;
  }

  .btn2 {
    background-color: #bb9a54;
  }

  .btn1:hover {
    background-color: #bb9a54;
  }

  .btn2:hover {
    background-color: #6d1346;
  }

  .info {
    height: fit-content;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
  }

  .info img {
    height: auto;
    width: 150px;
  }

  .desc {
    height: 100%;
    color: #6d1346;
    max-width: 100%;
    text-align: center;
  }

  .desc h2 {
    font-size: 1rem;
  }
  .desc p {
    font-size: 1rem;
  }

  .info .seperator {
    background-color: #6d1346;
    height: 100%;
    width: 0.1rem;
  }
  .high {
    color: white;
    display: flex;
    flex-direction: column;
  }
  .high h2 {
    width: 100%;
    border-bottom: 2px solid white;
  }

  .keys {
    gap: 2rem;
    display: flex;
    flex-direction: column;
  }

  .highlights {
    max-width: 100%;
  }

  .why-us {
    height: fit-content;
    width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 0rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    box-sizing: border-box;
    color: #6d1346;
  }
  .why-us h2 {
    border-bottom: 4px solid #6d1346;
    width: fit-content;
  }

  .points {
    height: fit-content;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding-bottom: 1.5rem;
    gap: 1rem;
  }

  .box1 {
    height: fit-content;
    width: 100%;
    border: 2px solid #6d1346;
    padding: 1rem;
  }

  .services {
    background-image: url(/src/bg4.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 80vh;
    padding-left: 5rem;
    padding-right: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .opening-hours {
    height: 50vh;
    padding-left: 5rem;
    padding-right: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .working-days {
    height: 30%;
    width: 100%;
    border: 1px solid #b6215f;
  }

  footer {
    height: fit-content;
    width: 100%;
    background-color: #6d1346;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
    color: white;
    position: relative;
  }

  footer img {
    position: absolute;
    opacity: 0.2;
    width: 100%;
  }

  footer .links {
    width: 100%;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 2rem;
  }

  .seperate {
    height: 0.1rem;
    width: 100%;
    background-color: white;
    margin-top: 4rem;
  }

  .bottom {
    width: 100%;
    margin-top: 4rem;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
  }

  footer a {
    color: white;
    text-decoration: none;
  }

  .div {
    width: 100%;
  }

  .div {
    width: 100%;
  }

  .div h2 {
    font-size: 1rem;
  }

  .div li {
    font-size: 0.8rem;
  }

  .download-links {
    height: 50vh;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: none;
    justify-content: none;
    padding-left: 2rem;
    padding-top: 2rem;
    text-align: left;
    gap: 1rem;
  }

  .downloads {
    border: 1px solid grey;
    padding-bottom: 1rem;
    display: flex;
    flex-direction: column;
    width: 20rem;
    align-items: center;
    text-align: center;
    height: 8rem;
  }

  .docs {
    display: flex;
    flex-direction: column;
    height: fit-content;
    text-align: center;
  }

  .docs p {
    color: #bb9a54;
    font-weight: 600;
    font-size: 0.9rem;
  }

  .docs h3 {
    color: #6d1346;
    font-size: 1rem;
    margin-top: 0rem;
  }

  hr {
    width: 100%;
    color: #6d1346;
  }

  .downloads a {
    text-decoration: none;
    font-weight: 500;
    color: #6d1346;
  }

  .downloads h3 {
    width: 100%;
    color: #6d1346;
  }
}

/* Desktops*/
@media (min-width: 1201px) {
  .faq {
    display: flex;
    padding: 2rem;
    gap: 4rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    color: #6d1346;
  }

  .faq h2 {
    font-size: 1rem;
  }

  .faq p {
    font-size: 0.8rem;
  }

  .questions {
    width: 40%;
  }

  .question {
    min-height: 7rem;
    border-bottom: 1px solid grey;
  }

  .seperate-questions {
    height: 65vh;
    width: 1px;
    background-color: rgb(174, 172, 172);
  }

  .cta {
    box-sizing: border-box;
  }

  .f-a-q h1 {
    text-align: center;
    color: #bb9a54;
    font-size: 1.2rem;
  }
  .f-a-q .cta {
    display: flex;
    flex-direction: column;
    gap: 0rem;
  }
  .f-a-q .cta h2 {
    color: white;
  }

  .f-a-q .cta a {
    background-color: #bb9a54;
    padding: 1rem;
    text-decoration: none;
    color: white;
    font-weight: 700;
    transition: 0.3s ease;
  }

  .f-a-q .cta a:hover {
    background-color: #6d1346;
  }

  .download-links {
    height: 50vh;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: none;
    justify-content: none;
    padding-left: 2rem;
    padding-top: 2rem;
    text-align: left;
    gap: 1rem;
  }

  .downloads {
    border: 1px solid grey;
    padding-bottom: 1rem;
    display: flex;
    flex-direction: column;
    width: 20rem;
    align-items: center;
    text-align: center;
    height: 8rem;
  }

  .bottom {
    width: 100%;
    margin-top: 4rem;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    text-align: center;
  }

  .docs {
    display: flex;
    flex-direction: column;
    height: fit-content;
    text-align: center;
  }

  .docs p {
    color: #bb9a54;
    font-weight: 600;
    font-size: 0.9rem;
  }

  .docs h3 {
    color: #6d1346;
    font-size: 1rem;
    margin-top: 0rem;
  }

  hr {
    width: 100%;
    color: #6d1346;
  }

  .downloads a {
    text-decoration: none;
    font-weight: 500;
    color: #6d1346;
  }

  .downloads h3 {
    width: 100%;
    color: #6d1346;
  }
}
