﻿.around-world-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    max-height: 900px;
    height: 100vh;
    padding: 1rem;
    box-sizing: border-box;
}

.around-world-wrapper-cont {
    display: grid;
    align-items: center;
    justify-items: center;
    grid-template-columns: auto 35%;
    justify-content: center;
    width: 100%;
    gap: 129px;
    box-sizing: border-box;
}

    .around-world-wrapper-cont .text-content h1 {
        color: #000;
        font-family: "Aeonik Pro TRIAL";
        font-size: 40px;
        font-style: normal;
        margin-bottom: 1rem;
        font-weight: 700;
        line-height: 150%;
    }

    .around-world-wrapper-cont .text-content p {
        color: #000;
        font-family: "Aeonik Pro TRIAL";
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: 150%;
    }

    .around-world-wrapper-cont .img-cont .globe-cont {
        height: 55px;
        padding: 12px 24px;
        border-radius: 16px;
        background: #FFF;
        position: absolute;
        top: 20%;
        left: -20%;
        box-shadow: 12px 12px 24px 0px rgba(0, 0, 0, 0.12);
    }

        .around-world-wrapper-cont .img-cont .globe-cont h3 {
            font-size: 15.6px;
            font-style: normal;
            font-weight: 400;
            line-height: normal;
        }

/* Responsive styles */
@media (max-width: 1200px) {
    .around-world-wrapper-cont {
        grid-template-columns: auto 40%;
        gap: 80px;
    }

        .around-world-wrapper-cont .text-content h1 {
            font-size: 36px;
        }

        .around-world-wrapper-cont .text-content p {
            font-size: 18px;
        }
}

@media (max-width: 992px) {
    .around-world-wrapper-cont {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

        .around-world-wrapper-cont .img-cont {
            order: -1;
        }

        .around-world-wrapper-cont .text-content h1 {
            font-size: 32px;
        }

        .around-world-wrapper-cont .text-content p {
            font-size: 16px;
        }

        .around-world-wrapper-cont .img-cont .globe-cont {
            top: 10%;
            left: auto;
            right: 0;
            transform: translateX(-50%);
        }
}

@media (max-width: 768px) {
    .around-world-wrapper {
        
        padding: 2rem;
    }

    .around-world-wrapper-cont {
        gap: 20px;
    }

        .around-world-wrapper-cont .text-content h1 {
            font-size: 28px;
        }

        .around-world-wrapper-cont .text-content p {
            font-size: 14px;
        }

        .around-world-wrapper-cont .img-cont .globe-cont {
            top: 0;
            right: 0;
            left: 50%;
            transform: translateX(-50%);
            height: 45px; 

            padding: 10px 20px; 
        }

    .trip-img {
        width: 80%;
    }
}

@media (max-width: 576px) {
    .around-world-wrapper {
        
        padding: 2rem;
    }

    .around-world-wrapper-cont .text-content h1 {
        font-size: 24px;
    }

    .around-world-wrapper-cont .text-content p {
        font-size: 12px;
    }

    .around-world-wrapper-cont .img-cont .globe-cont {
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        height: 35px; 
        padding: 8px 16px; 
    }

    .trip-img {
        width: 70%; 
    }
}
.fees-saving-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    
    height: 900px;
    padding: 1rem;
    box-sizing: border-box;
}

.fees-saving-container {
    display: grid;
    align-items: center;
    justify-items: center;
    grid-template-columns:  35% auto;
    justify-content: center;
    width: 100%;
    gap: 121px;
    box-sizing: border-box;
}

    .fees-saving-container .text-section h1 {
        color: #000;
        font-family: "Aeonik Pro TRIAL";
        font-size: 40px;
        font-style: normal;
        margin-bottom: 1rem;
        font-weight: 700;
        line-height: 150%;
    }

    .fees-saving-container .text-section p {
        color: #000;
        font-family: "Aeonik Pro TRIAL";
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: 150%;
    }

    .fees-saving-container .image-section .icon-container {
        height: 55px;
        padding: 12px 24px;
        border-radius: 16px;
        background: #FFF;
        position: absolute;
        bottom: 0%;
        
        right:-23%;
        bottom:10%;
        box-shadow: 12px 12px 24px 0px rgba(0, 0, 0, 0.12);
    }

        .fees-saving-container .image-section .icon-container h3 {
            font-size: 15.6px;
            font-style: normal;
            font-weight: 400;
            line-height: normal;
        }

/* Responsive styles */
@media (max-width: 1200px) {
    .fees-saving-container {
        grid-template-columns: auto 40%;
        gap: 80px;
    }

        .fees-saving-container .text-section h1 {
            font-size: 36px;
        }

        .fees-saving-container .text-section p {
            font-size: 18px;
        }
}

@media (max-width: 992px) {
    .fees-saving-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

        .fees-saving-container .image-section {
            order: -1;
        }

        .fees-saving-container .text-section h1 {
            font-size: 32px;
        }

        .fees-saving-container .text-section p {
            font-size: 16px;
        }

        .fees-saving-container .image-section .icon-container {
            bottom: 10%;
        }
}

@media (max-width: 768px) {
    .fees-saving-wrapper {
       
        padding: 2rem;
    }

    .fees-saving-container {
        gap: 20px;
    }

        .fees-saving-container .text-section h1 {
            font-size: 28px;
        }

        .fees-saving-container .text-section p {
            font-size: 14px;
        }

        .fees-saving-container .image-section .icon-container {
            bottom: 5%;
            height: 45px; 
            padding: 10px 20px; 
        }

    .compass-image {
        width: 80%; 
    }
}

@media (max-width: 576px) {
    .fees-saving-wrapper {
        
        padding: 2rem;
    }

    .fees-saving-container .text-section h1 {
        font-size: 24px;
    }

    .fees-saving-container .text-section p {
        font-size: 12px;
    }

    .fees-saving-container .image-section .icon-container {
        bottom: 5%;
        height: 35px;
        padding: 8px 16px; 
    }

    .compass-image {
        width: 70%; 
    }
}


.open-zenbank-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 900px;
    flex-direction: column;
    padding: 1rem;
    box-sizing: border-box;
}

.open-zenbank-wrapper-header {
    color: #000;
    text-align: center;
    margin-bottom: 100px;
    font-size: 2.5rem; /* 40px equivalent */
    font-style: normal;
    font-weight: 700;
    line-height: 1.2; /* 120% */
}

.open-zenbank-wrapper-cont {
    display: grid;
    align-items: center;
    justify-items: center;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem; /* Optional: add some space between items */
}

.open-zenbank-wrapper-item h4 {
    margin-top: 40px;
    color: #000;
    font-variant-numeric: lining-nums tabular-nums;
    font-family: "Aeonik Pro TRIAL";
    font-size: 1.5rem; /* 24px equivalent */
    font-style: normal;
    font-weight: 700;
    line-height: 1.2; /* 120% */
}

.open-zenbank-wrapper-item img {
    max-width: 100%;
    height: auto;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .open-zenbank-wrapper {
        padding: 2rem;
        height: auto;
    }

    .open-zenbank-wrapper-header {
        font-size: 2rem; /* 32px equivalent */
        margin-bottom: 50px;
    }

    .open-zenbank-wrapper-cont {
        grid-template-columns: 1fr; /* Stack items vertically */
    }

    .open-zenbank-wrapper-item h4 {
        font-size: 1.25rem; /* 20px equivalent */
    }
}

.currency-wrapper {
    background: #6935D3;
}
    .currency-wrapper .text-content {
        color: white;
    }
    @media (min-width: 900px) {
        .currency-wrapper {
            background: #6935D3;
            height: 900px !important;
        }

            

        .currency-wrapper-cont {
            display: grid;
            align-items: center;
            justify-items: center;
            grid-template-columns: 35% auto;
            justify-content: center;
            width: 100%;
            gap: 0px 213px;
            box-sizing: border-box;
        }

            .currency-wrapper-cont .text-content button {
                margin: 0;
            }

            .currency-wrapper-cont .text-content h1 {
                font-family: "Aeonik Pro TRIAL";
                font-size: var(--Text-size-H1, 56px);
                font-style: normal;
                font-weight: var(--black, 700);
                line-height: 150%;
            }
    }

.manage-your-maney-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 900px;
    padding: 1rem;
    box-sizing: border-box;
}

.manage-your-maney-wrapper-cont {
    display: grid;
    align-items: center;
    justify-items: center;
    grid-template-columns: auto 35%;
    justify-content: center;
    width: 100%;
    gap: 121px;
    box-sizing: border-box;
}

.currency-cont-item {
    display: flex;
    max-width: 100%;
    height: 96px;
    padding: 13.779px 18.373px;
    border-radius: 14.582px;
    background: #FFF;
    box-shadow: 11.604px 11.604px 23.207px 0px rgba(0, 0, 0, 0.12);
    justify-content: center;
    align-items: flex-start;
    gap: 11.483px;
    flex-shrink: 0;
}

    .currency-cont-item img {
        width: 55px;
        height: 55px;
        border-radius: 50%;
    }

    .currency-cont-item:nth-child(1) {
        width: 480px;
    }

    .currency-cont-item:nth-child(2) {
        width: 440px;
    }

    .currency-cont-item:nth-child(3) {
        width: 350px;
    }

.manage-your-maney-wrapper-cont .text-content h1 {
    color: #000;
    margin-bottom: 1rem;
    font-family: "Aeonik Pro TRIAL";
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%; /* 60px */
}

.manage-your-maney-wrapper-cont .text-content p {
    color: #000;
    font-family: "Aeonik Pro TRIAL";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

.manage-your-maney-wrapper-cont .text-content button {
    background: #6935D3;
}

.fees-saving-container .text-section button {
    background: #6935D3;
}

.currency-cont .all-in-one-cont {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    top: 0;
    transform: translateY(-50%);
    border-radius: 50%;
    background: #6935D3;
}

.all-in-one-cont h3 {
    font-size: 1rem;
    text-align: center;
    font-style: normal;
    font-weight: 700;
    color: white;
    line-height: 150%;
}

/* Media Queries */
@media (max-width: 768px) {
    .manage-your-maney-wrapper {
        padding: 2rem;
        height: auto;
        text-align:center;
    }

    .manage-your-maney-wrapper-cont {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .currency-cont-item {
        width: 100%;
        height: auto;
        padding: 10px;
    }

        .currency-cont-item img {
            width: 40px;
            height: 40px;
        }

    .manage-your-maney-wrapper-cont .text-content h1 {
        font-size: 1.5rem;
    }

    .manage-your-maney-wrapper-cont .text-content p {
        font-size: 1rem;
    }

    .all-in-one-cont {
        width: 60px;
        height: 60px;
    }

        .all-in-one-cont h3 {
            font-size: 0.75rem;
        }
    .currency-cont-item:nth-child(1) {
        width: 340px;
    }

    .currency-cont-item:nth-child(2) {
        width: 300px;
    }

    .currency-cont-item:nth-child(3) {
        width: 210px;
    }
}


