/* Base Styles */
#home {
    background-color: #f2f6ff;
}

input::placeholder {
    color: #999;
}
.currency-converter {
    box-shadow: rgba(1, 33, 105, 0.1);
    border-radius: 16px;
}
.btn-primary {
    background-color: #012169;
    border-color: #012169;
    color: #fff;
}
.btn-primary:hover {
    background-color: #012169;
    border-color: #012169;
    color: #fff;
}



.navbar-nav .nav-link {
    position: relative;
    transition: all 0.3s ease;
    padding: var(--padding-30) var(--padding-10);
    font-size: 1.3rem;
    color: var(--color-white);
/*    font-family: var(--font-inter);*/
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;

}

.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: #00be13;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

.navbar-nav .nav-link:hover {
    color: #00be13 !important;
}

.navbar-nav .nav-link.active::after {
    width: 100%;
    background-color: #00be13;
}

.heading {
    font-weight: 700;
    font-size: 24px;
    color: #46af5c;
}
.heading-content {
    font-weight: 700;
    font-size: 78px;
}
.sub-text {
    font-size: 26px;
    width: 500px;
}
.feature-title {
    font-weight: 500;
    font-size: 18px;
    color: #1d1d1d;
}

.feature-value {
    font-weight: 700;
    font-size: 60px;
    color: #17285d;
}

/* Hero Section  */

/* Masonry Grid */
.masonry-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    align-items: start;
}

.masonry-item {
    width: 100%;
    border-radius: 0.5rem;
    object-fit: cover;
}

.masonry-item:nth-child(1) {
    height: 350px;
}
.masonry-item:nth-child(2) {
    height: 350px;
    margin-top: 3rem;
}
.masonry-item:nth-child(3) {
    height: 350px;
    margin-top: -3rem;
}
.masonry-item:nth-child(4) {
    height: 350px;
}

/* Payment Cards */
.simple-card {
    width: 300px;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.simple-card:hover {
    transform: translateY(-5px);
}

.card-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: #f0f7ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon i {
    font-size: 24px;
    color: #2a7de1;
}

.card-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    color: black;
}

.card-desc {
    align-self: stretch;
    font-size: var(--font-size-18);
    line-height: 1.875rem;
    font-weight: 500;
    color: black;
    margin: 0;
}

        .how-it-work-description{
    font-size: 1.5rem;
}

        .how-it-work-flow-description{
    font-size: 01rem;
    font-weight: bolder;
    line-height: 1.875rem;
    display: inline-block;
}

        .how-it-work-flow-wrapper{
    width: 17.875rem
}

/* Testimonials */
.testimonials-section {
    background: linear-gradient(135deg, #f8f9ff 0%, #e8ecff 100%);
    padding: 80px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.section {
    color: #46af5c;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 24px;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 20px;
}

.main-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 20px;
    line-height: 1.1;
}

.subtitle {
    font-size: 1.6rem;
    color: black;
    margin-bottom: 60px;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: none;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.testimonial-card.inactive {
    opacity: 0.4;
    transform: scale(0.95);
}

.stars {
    color: #fbbf24;
    margin-bottom: 25px;
    font-size: 18px;
}

.testimonial-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 20px;
}

.testimonial-text {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 30px;
    font-size: 1rem;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 18px;
}

.author-name {
    font-weight: 600;
    color: #1f2937;
    margin: 0;
    font-size: 1.1rem;
}

.author-role {
    color: #9ca3af;
    margin: 0;
    font-size: 0.9rem;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 50px;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #6b7280;
}

.carousel-btn:hover {
    background: #f9fafb;
    border-color: #d1d5db;
    color: #374151;
}

.carousel-btn:active {
    transform: scale(0.95);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.section-badge {
    color: #46af5c;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 24px;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 20px;
}

.faq-item {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    margin-bottom: 16px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.faq-item:hover {
    border-color: #d1d5db;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.faq-question {
    padding: 10px 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    font-weight: 500;
    color: #1f2937;
    font-size: 1.3rem;
    line-height: 1.5;
    user-select: none;
    transition: all 0.2s ease;
}

.faq-question:hover {
    color: #1e3a8a;
}

.faq-toggle {
    width: 24px;
    height: 24px;
    border: 2px solid #e5e7eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-left: 16px;
    transition: all 0.3s ease;
    background: #ffffff;
}

.faq-toggle i {
    font-size: 12px;
    color: #6b7280;
    transition: all 0.3s ease;
}

.faq-item.active .faq-toggle {
    background: #1e3a8a;
    border-color: #1e3a8a;
    transform: rotate(180deg);
}

.faq-item.active .faq-toggle i {
    color: #ffffff;
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
}

.faq-item.active .faq-answer {
    padding: 0 24px 20px 24px;
    max-height: 400px;
    opacity: 1;
}

.faq-answer p {
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
    font-size: 1.2rem;
    font-weight: 500;
}

.faq-column {
    padding: 0 12px;
}

/* Footer */
.footer-section {
    background-color: #162A5D;
    color: #ffffff;
    padding: 60px 0 30px 0;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}

.footer-logo-icon {
    width: 40px;
    height: 40px;
    background: #22c55e;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    font-weight: bold;
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    margin-left: 10px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    transform: translateY(-2px);
}

.footer-column {
    margin-bottom: 40px;
}

.footer-column h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 1);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.footer-column ul li a:hover {
    color: #ffffff;
    padding-left: 5px;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 8px;
}

.payment-icons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 15px;
}

.payment-icon {
    width: 50px;
    height: 32px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 12px;
    color: #1f2937;
}

.mastercard {
    color: white;
}

.visa {
    color: white;
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 40px 0 20px 0;
}

.footer-copyright {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

#payment {
    background-color: #012169;
    color: #fff;
}

.highSpeedsLowFeeDescription{
    font-size: 24px;
}

#download{
    padding-top:20rem !important;
}

/* ================================ */
/* RESPONSIVE BREAKPOINTS */
/* ================================ */

/* Extra Large Screens (1400px and up) */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }

    .heading-content {
        font-size: 80px;
    }

    .feature-value {
        font-size: 70px;
    }
}

/* Large Screens (992px to 1199px) */
@media (max-width: 1199.98px) {
    .heading-content {
        font-size: 64px;
    }

    .sub-text {
        width: 400px;
        font-size: 20px;
    }

    .feature-value {
        font-size: 50px;
    }

    .simple-card {
        width: 280px;
        padding: 20px;
    }

    .card-title {
        font-size: 20px;
    }
}

/* Medium Screens (768px to 991px) */
@media (max-width: 991.98px) {
    .navbar-nav {
        text-align: center;
        margin-top: 1rem;
    }

    .navbar-nav .nav-link {
        padding: 10px 0;
        font-size: 16px;
    }

    .heading-content {
        font-size: 48px;
        line-height: 1.2;
    }

    .heading {
        font-size: 20px;
    }

    .sub-text {
        width: 100%;
        font-size: 18px;
        max-width: 500px;
    }

    .feature-value {
        font-size: 40px;
    }

    .feature-title {
        font-size: 16px;
    }

    /* Hero Section Adjustments */
    #home {
        height: 100vh !important;
        padding: 30px 0 150px 0 !important;
    }

    .currency-converter {
        margin-top: 2rem;
    }

    /* Stats container positioning */
    #home .container:last-child {
        position: absolute;
        top: 100% !important;
        left: 50%;
        transform: translate(-50%, -50%);
        padding: 35px;
    }

    /* Payment section adjustments */
    #payment {
        height: auto !important;
        margin-bottom: 100px !important;
        padding: 60px 0 !important;
    }

    #payment .row {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        width: 100% !important;
        max-width: none !important;
        margin-top: 3rem;
    }

    .simple-card {
        width: 100%;
        max-width: 300px;
        margin: 0 auto 2rem auto;
    }

    .card-icon img{
        width: 50px !important;
        height: 50px !important;
    }

    .trusted-section-icon svg{
        width: 60px !important;
    }
    .feature-value svg{
        width: 35px !important;
    }

    /* Masonry adjustments */
    .masonry-item:nth-child(2) {
        margin-top: 0;
    }

    .masonry-item:nth-child(3) {
        margin-top: 0;
    }

    .masonry-item {
        height: 250px !important;
    }

    /* Testimonials */
    .main-title {
        font-size: 2.5rem;
    }

    .testimonials-section {
        padding: 60px 0;
        min-height: auto;
    }

    .testimonial-card {
        margin-bottom: 30px;
        padding: 30px 20px;
    }

    /* FAQ */
    .faq-section {
        padding: 60px 0;
    }

    .faq-column {
        padding: 0;
    }

    .faq-item {
        margin-bottom: 12px;
    }

    /* Footer */
    .footer-section {
        padding: 40px 0 20px 0;
    }

    .footer-column {
        margin-bottom: 30px;
    }

    .social-icons {
        justify-content: center;
        margin-bottom: 30px;
    }

    .payment-icons {
        align-items: center;
        gap: 12px;
        margin-top: 15px;
    }
    .visa{
        margin-top: 5px;
    }
}

/* Small Screens (576px to 767px) */
@media (max-width: 767.98px) {
    .container-fluid {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .heading-content {
        font-size: 36px;
        line-height: 1.1;
    }

    .heading {
        font-size: 18px;
    }

    .sub-text {
        font-size: 16px;
    }

    .feature-value {
        font-size: 32px;
    }

    .feature-title {
        font-size: 14px;
    }

    /* Hero section mobile */
    #home {
        padding: 20px 0 120px 0 !important;
    }

    .currency-converter {
        margin-top: 2rem;
        padding: 1rem;
    }

    /* Stats cards mobile layout */
    .row.text-center .col-md-3 {
        margin-bottom: 1.5rem;
    }

    /* Trusted by section */
    #trusted-by {
        padding-top: 120px !important;
        margin-top: 150px !important;
    }

    /* Payment cards stack vertically */
    #payment .row {
        flex-direction: column;
        align-items: center;
    }

    .simple-card {
        width: 100%;
        max-width: 280px;
        margin-bottom: 1.5rem;
    }

    .card-title {
        font-size: 18px;
        padding: 0 1rem !important;
    }

    /* Steps section mobile */
    #steps .d-flex {
        flex-direction: column;
        gap: 2rem;
    }

    .arrow {
        transform: rotate(90deg);
        margin: 1rem 0;
    }



    /* Download section */
    #download .row {
        text-align: center;

    }

    #download .col-md-6:first-child {
        order: 2;
        margin-top: 2rem;
        margin-bottom: 7rem;
        top: 6rem;
    }

    #download .col-md-6:last-child {
        order: 1;
    }

    /* Masonry mobile */
    .masonry-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .masonry-item {
        height: 200px !important;
        margin-top: 0 !important;
    }

    /* Testimonials mobile */
    .main-title {
        font-size: 2rem;
    }

    .section,
    .section-badge {
        font-size: 18px;
        display: block;
        font-weight: 650;
    }

    .testimonial-card {
        padding: 25px 15px;
    }

    .testimonial-title {
        font-size: 1.2rem;
    }

    .carousel-controls {
        margin-top: 30px;
    }

    .carousel-btn {
        width: 45px;
        height: 45px;
    }

    /* FAQ mobile */
    .faq-question {
        padding: 15px 18px;
/*        font-size: 0.9rem;*/
    }

    .faq-toggle {
        margin-left: 10px;
    }

    .faq-item.active .faq-answer {
        padding: 0 18px 15px 18px;
    }

    /* Footer mobile */
    .footer-logo {
        justify-content: center;
        text-align: center;
    }

    .footer-column {
        text-align: center;
    }
}

.simple-card{
    min-height: 250px;
}

/* Extra Small Screens (below 576px) */
@media (max-width: 575.98px) {
    .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    .fuelling-dreams-across {
        font-size: 2.75rem !important;
        line-height: 3rem !important;
    }

    .heading-content {
        font-size: 28px;
        line-height: 1;
    }

    .heading {
        font-size: 16px;
    }

    .sub-text {
        font-size: 14px;
    }

    .feature-value {
        font-size: 24px;
    }

    .feature-title {
        font-size: 15px !important;
    }

    /* Navbar mobile */
    .navbar-brand img {
        height: 45px;
    }

    .navbar-brand{
        display: block;
        margin-left: auto;
        margin-right: auto;
    }

    .btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .how-it-work-flow-description{
        font-size: 0.8rem;
        font-weight: unset;
        line-height: 1.875rem;
        display: inline-block;
    }

    /* Hero mobile */
    #home {
        padding: 15px 0 100px 0 !important;
        height: 850px !important;
    }

    .currency-converter {
        padding: 0.75rem;
        justify-content: center;
        display: flex;
    }

    .currency-converter input {
        font-size: 1rem !important;
    }

    /* Stats mobile */
    #home .container:last-child .col-lg-10 {
        padding: 1rem 1rem;
    }

    /* Payment cards extra small */
    .simple-card {
        min-height: auto;
/*        max-width: 260px;*/
        padding: 20px 15px;
    }

    .card-desc {
        line-height: 1rem !important;
    }

    .card-icon {
        width: 50px;
        height: 50px;
    }

    .card-title {
        font-size: 16px;
    }

    .card-desc {
        font-size: 13px;
    }

    /* Steps mobile */
    #steps img {
        max-width: 80px;
    }

    #steps h5 {
        font-size: 1rem;
    }

    #steps small {
/*        font-size: 0.8rem;*/
    }

    /* Download mobile */
    #download .d-flex img {
        max-width: 140px;
    }

    #download{
     padding-top:4rem !important;
    }

    /* Testimonials extra small */
    .main-title {
        font-size: 1.8rem;
        line-height: 1.1;
    }

    .testimonial-card {
        padding: 20px 12px;
    }

    .author-avatar {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

        .highSpeedsLowFeeDescription{
        font-size: 18px !important;
    }


    .author-name {
        font-size: 1rem;
    }

    .author-role {
        font-size: 0.8rem;
    }

    /* FAQ extra small */
    .main-title {
        max-width: 100%;
    }

    .subtitle {
        max-width: 100%;
    }

    .faq-question {
        padding: 12px 15px;
/*        font-size: 0.85rem;*/
    }

    .faq-toggle {
        width: 20px;
        height: 20px;
        margin-left: 8px;
    }

    /* Footer extra small */
    .footer-column h5 {
        font-size: 1rem;
    }

    .footer-column p,
    .footer-column a {
        font-size: 0.85rem;
    }

    .social-icon {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .payment-icon {
        width: 45px;
        height: 28px;
    }

    /* Stats container positioning */
    #home .container:last-child {
        padding: 35px;

    }
}


/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .masonry-item,
    .simple-card,
    .testimonial-card {
        border-radius: 16px;
    }

    .card-icon img,
    .footer-logo img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

.fuelling-dreams-across {
/*    width: 41.5rem;*/
    position: relative;
    font-size: 4.75rem;
    line-height: 6.25rem;
    display: inline-block;
/*    font-family: var(--font-inter);*/
    color: var(--color-white);
    text-align: left;
}

.downloadApp{
    position: relative;
    border-radius: var(--br-10);
    background-color: var(--color-mediumseagreen);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 6px var(--padding-14);
    box-sizing: border-box;
    gap: var(--gap-10);
    cursor: pointer;
    text-align: left;
    font-size: 1.30rem;
    color: white;
/*    font-family: var(--font-inter);*/
    text-decoration-line: none;
    font-weight: bolder;
    border: none;
}

.feature-title {
    position: relative;
    font-size: 1.125rem;
/*    font-family: var(--font-inter);*/
    color: var(--color-gray);
    font-weight: bolder;
}

.line-icon{
    height: 2.25rem;
}

.trusted-section{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 3.25rem;
    text-align: left;
    font-size: var(--font-size-24);
    color: var(--color-gray);
/*    font-family: var(--font-inter);*/
}

.trusted-section-icon {
    position: relative;
    border-radius: 100px;
    height: 5.875rem;
}

.close-up-person-doing-online-s {
    width: 100%;
    position: relative;
    border-radius: 63%;
    background-color: var(--color-white);
    border: 10px solid var(--color-mediumseagreen);
    box-sizing: border-box;
    height: 16.125rem;
}


.password-guidelines{
    background-color: #F8F9FD;
    color: dimgrey;
    padding: 10px;
    border-radius: 16px;
    margin-left: 5px;
    margin-right: 5px;
}

.trusted-by-title{
    font-size: 1.5rem;
}

.trusted-by-description{
    font-size: var(--font-size-18);
    line-height: 1.875rem;
    font-weight: 500;
    display: inline-block;
    margin-top: 10px;
}

/*----------------*/
.close-up-person-doing-online-s {
/*    position: absolute;*/
/*    top: 0rem;*/
    left: 63%;
    border-radius: var(--br-40);
    background-color: white;
    border: 10px solid #172b5d;
    box-sizing: border-box;
    width: 50%;
    height: 40%;
}
.close-up-person-doing-online-s1 {

/*    top: 23rem;*/
/*    left: 0rem;*/
    border-radius: var(--br-40);
    background-color: var(--color-white);
    border: 10px solid var(--color-mediumseagreen);
    box-sizing: border-box;
    width: 50%;
    height: 40%;
}
.asdasd-1-icon {

    top: -29rem;
    left: 3.875rem;
    border-radius: 40px;
    width: 39.375rem;
    height: 27.438rem;
    object-fit: cover;

    width: 90%;
    position: relative;
    border-radius: 40px;
    max-width: 100%;
    overflow: hidden;
    max-height: 100%;
    object-fit: cover;
}
.close-up-person-doing-online-s-parent {

/*    top: 26.75rem;*/
/*    left: 43.125rem;*/
    width: 90%;
    height: 37.875rem;
}

.download-app-section-btn-wrapper{
    top: 19.688rem;
    left: 0rem;
    box-shadow: 0px 0px 25px rgba(1, 33, 105, 0.1);
    border-radius: 20px;
    background-color: white;
    width: 13.188rem;
    height: 4.375rem;
    display: flex
    ;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 10px 24px;
}

/*----*/
.ellipse-overlay-img {
    position: absolute;
    bottom: 0;
    left: 42%;
    transform: translateX(-49%);
    z-index: 2;
    width: 546px;

}

@media (max-width: 767.98px) {
    .ellipse-overlay-img {
        position: absolute;
        bottom: -6px;
        left: 48%;
        transform: translateX(-50%);
        z-index: 2;
        width: 379px;
    }

    .ellipse-div {
        width: 100%;
        height: 22rem !important;
        position: relative;
        border-radius: 50%;
        background-color: #172b5d;
    }
}

.ellipse-div {
    width: 100%;
    height: 36rem;
    position: relative;
    border-radius: 50%;
    background-color: #172b5d;
}


.app-store{
    font-size: 1.5rem;
}

.download-app-section-btn-wrapper:hover{
    background-color: gainsboro;
}
