/* ---------------------------------------------------------
|                      PRODUCTS GRID                       | 
--------------------------------------------------------- */

.products-section {
    text-align: center;
    padding: 60px 20px;
    transition: all 0.3s ease;
    background-color: #fff;
    padding-bottom: 120px;
}
  
.products-section h2 {
    font-size: 40px;
    font-weight: 500;
    margin-top: 50px;
    margin-bottom: 75px;
}
  
.products-grid {
    display: flex;
    flex-wrap: wrap;
    justify-items: center;
    align-items: flex-start;
    max-width: 1344px;
    margin: 0 auto;
    height: 595px;
}
  
.product-box, .product-text {
    background: #CED4DA;
    border-radius: 24px;
    padding: 10px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: calc(33.3% - 20px);
    margin: 10px;
    position: relative;
    overflow: hidden;
    transition: width .55s ease, height .55s ease;

    contain: layout paint;
    will-change: transform;
    transform: translateZ(0);
}

.product-box {
    cursor: pointer;
}
  
.product-box img, .product-box svg {
    position: absolute;
}

.product-box p {
    margin: 20px 15px;
    font-weight: 400;
    font-size: 24px;
    z-index: 2;
}
  
.product-text {
    background-color: #fff;
    justify-content: center;
}

.product-text p {
    font-size: 16px;
    font-weight: 400;
}


/* FIRST BOX */

#main-1 {
    width: 480px; 
    left: -100px; 
    bottom: -80px;
}

#el-1-1 {
    z-index: 2;
    width: 50px;
    top: 330px;
    left: -10px;
    transition: .55s ease;
    filter: drop-shadow(0px 70px 20px rgba(0, 0, 0, 0.25));
}

.product-box1:hover #el-1-1 {
    width: 195px;
    transform: rotate(-25deg);
    top: 85px;
    left: 110px; 
}

#el-1-2 {
    width: 150px;
    top: 50px;
    right: -160px;
    transition: .55s ease;
    filter: drop-shadow(0px 70px 20px rgba(0, 0, 0, 0.25));
}

.product-box1:hover #el-1-2 {
    width: 58px;
    transform: rotate(10deg);
    top: 90px;
    right: 50px;
}

#el-1-3 {
    width: 70px;
    top: 330px;
    right: -50px;
    transition: .55s ease;
    filter: drop-shadow(0px 70px 20px rgba(0, 0, 0, 0.25));
}

.product-box1:hover #el-1-3 {
    width: 100px;
    transform: rotate(16deg);
    top: 170px;
    right: 30px;
}


/* SECOND BOX */

#main-2 {
    width: 262px; 
    transform: rotate(-15deg); 
    top: -38px; 
    right: -57px; 
    z-index: 2;
}

#bank-2-1 {
    top: 100px;
    right: -10px;
    transition: .55s ease;
    filter: drop-shadow(0px 70px 20px rgba(0, 0, 0, 0.25));
}

.product-box2:hover #bank-2-1 {
    top: 100px;
    right: 185px;
}

#bank-2-2 {
    top: 60px;
    right: 50px;
    transition: .55s ease;
    filter: drop-shadow(0px 70px 20px rgba(0, 0, 0, 0.25));
}

.product-box2:hover #bank-2-2 {
    top: 60px;
    right: 190px;
}

#bank-2-3 {
    top: 10px;
    right: 65px;
    transition: .55s ease;
    filter: drop-shadow(0px 70px 20px rgba(0, 0, 0, 0.25));
}

.product-box2:hover #bank-2-3 {
    top: 10px;
    right: 10px;
}

#el-2-1 {
    width: 80px;
    transform: rotate(-60deg);
    top: 155px;
    left: 115px;
    z-index: 3;
    transition: .55s ease;
    filter: drop-shadow(0px 70px 20px rgba(0, 0, 0, 0.25));
}

.product-box2:hover #el-2-1 {
    top: 55px;
    left: 215px;
}

#el-2-2 {
    width: 100px;
    transform: rotate(-5deg);
    top: -145px;
    left: 205px;
    z-index: 3;
    transition: .55s ease;
}

.product-box2:hover #el-2-2 {
    top: -5px;
    left: 275px;
    filter: drop-shadow(0px 70px 20px rgba(0, 0, 0, 0.25));
}

#el-2-3 {
    width: 67px;
    transform: rotate(32deg);
    top: 50px;
    right: -80px;
    z-index: 3;
    transition: .55s ease;
    filter: drop-shadow(0px 70px 20px rgba(0, 0, 0, 0.25));
}

.product-box2:hover #el-2-3 {
    top: 50px;
    right: -5px;
}


/* THIRD BOX */

#main-3 {
    width: 360px; 
    left: -40px; 
    top: 89px;
    z-index: 2;
}

#graph-3-1 {
    left: -10px;
    top: 80px;
    transition: .55s ease;
    filter: drop-shadow(0px 70px 20px rgba(0, 0, 0, 0.25));
}

.product-box3:hover #graph-3-1 {
    left: 200px;
    top: 80px;
}

#el-3-1 {
    width: 238px;
    transform: rotate(17deg);
    z-index: 3;
    bottom: 10px;
    right: -250px;
    transition: .55s ease;
    filter: drop-shadow(0px 70px 20px rgba(0, 0, 0, 0.25));
}

.product-box3:hover #el-3-1 {
    right: 50px;
}

#el-3-2 {
    width: 96px;
    transform: rotate(-14deg);
    z-index: 3;
    bottom: 95px;
    left: -100px;
    transition: .55s ease;
    filter: drop-shadow(0px 70px 20px rgba(0, 0, 0, 0.25));
}

.product-box3:hover #el-3-2 {
    left: 35px;
}


/* FOURTH BOX */

#main-4 {
    width: 350px; 
    transform: rotate(-11deg); 
    top: 20px; 
    right: -40px;
    z-index: 2;
}

#bank-4-1 {
    bottom: 10px;
    right: 100px;
    transition: .55s ease;
    filter: drop-shadow(0px 70px 20px rgba(0, 0, 0, 0.25));
}

.product-box4:hover #bank-4-1 {
    right: 240px;
}

#bank-4-2 {
    bottom: 100px;
    right: 30px;
    transition: .55s ease;
    filter: drop-shadow(0px 70px 20px rgba(0, 0, 0, 0.25));
}

.product-box4:hover #bank-4-2 {
    right: 140px;
}

#bank-4-3 {
    bottom: 55px;
    right: 40px;
    transition: .55s ease;
    filter: drop-shadow(0px 70px 20px rgba(0, 0, 0, 0.25));
}

.product-box4:hover #bank-4-3 {
    right: 180px;
}

#el-4-1 {
    width: 105px;
    transform: rotate(-30deg);
    top: -135px;
    right: 80px;
    z-index: 3;
    transition: .55s ease;
}

.product-box4:hover #el-4-1 {
    top: -18px;
    filter: drop-shadow(0px 70px 20px rgba(0, 0, 0, 0.25));
}

#el-4-2 {
    width: 86px;
    transform: rotate(20deg);
    bottom: -85px;
    right: 40px;
    z-index: 3;
    transition: .55s ease;
    filter: drop-shadow(0px 70px 20px rgba(0, 0, 0, 0.25));
}

.product-box4:hover #el-4-2 {
    bottom: -10px;
}

#el-4-3 {
    width: 45px;
    transform: rotate(-18deg);
    bottom: 50px;
    right: -55px;
    z-index: 3;
    transition: .55s ease;
    filter: drop-shadow(0px 70px 20px rgba(0, 0, 0, 0.25));
}

.product-box4:hover #el-4-3 {
    right: 5px;
}


/* FIFTH BOX */

.slide-left-products-custom {
    opacity: 0;
    transform: translateX(100px) translateY(-166px);
    transition: all 0.3s ease-out;
}

.slide-left-products-custom.show {
    opacity: 1;
    transition-delay: .3s;
    transform: translateX(0) translateY(-166px);
}

#main-5-1 {
    bottom: -20px;
    left: -20px;
    transition: .55s ease;
}

.product-box5:hover #main-5-1 {
    bottom: 0px;
    left: 0px;
}

#main-5-2 {
    top: 0px;
    right: 0px;
    transition: .55s ease;
}

.product-box5:hover #main-5-2 {
    top: 20px;
}

#main-5-3 {
    width: 144px; 
    transform: rotate(-39deg); 
    top: 145px; 
    left: 115px;
    transition: .55s ease;
    z-index: 3;
    filter: drop-shadow(0px 70px 20px rgba(0, 0, 0, 0.25));
}

.product-box5:hover #main-5-3 {
    transform: rotate(-47deg); 
    left: 135px;
}

#main-5-4 {
    width: 60px; 
    transform: rotate(-27deg); 
    top: 125px; 
    left: 250px;
    z-index: 3;
    transition: .55s ease;
    filter: drop-shadow(0px 70px 20px rgba(0, 0, 0, 0.25));
}

.product-box5:hover #main-5-4 {
    width: 55px;
    transform: rotate(-22deg); 
    top: 135px;
}

#main-5-5 {
    width: 80px; 
    transform: rotate(9deg); 
    top: 80px; 
    left: 335px;
    transition: .55s ease;
    z-index: 3;
    filter: drop-shadow(0px 70px 20px rgba(0, 0, 0, 0.25));
} 

.product-box5:hover #main-5-5 {
    transform: rotate(3deg); 
    left: 315px;
}

#el-5-1 {
    transition: .55s ease;
    filter: drop-shadow(0px 70px 20px rgba(0, 0, 0, 0.25));
    width: 30px;
    top: 175px; 
    left: 135px;
}

.product-box5:hover #el-5-1 {
    width: 118px;
    top: 85px; 
    left: 205px;
    transform: rotate(-46deg);
}

#el-5-2 {
    transition: .55s ease;
    filter: drop-shadow(0px 70px 20px rgba(0, 0, 0, 0.25));
    transform: rotate(-45deg);
    width: 30px;
    top: 200px; 
    right: -35px; 
}

.product-box5:hover #el-5-2 {
    transform: rotate(-45deg);
    width: 131px;
    top: 230px; 
    right: -15px;
}


/* PRODUCTS MEDIA */

@media only screen and (max-width: 1140px) {
    .products-grid {
        height: 950px;
    }

    .product-box, .product-text {
        width: calc(50% - 20px);
    }

    .product-box1 {
        order: 1;
    }

    .product-box2 {
        order: 2;
    }

    .product-box3 {
        order: 4;
        transform: translateY(-166px) !important;
    }

    .product-box4 {
        order: 3;
    }

    .product-box5 {
        order: 5;
    }

    .product-box6 {
        order: 6;
        transform: translateY(-166px) !important;
    }
}

@media only screen and (max-width: 790px) {
    .products-grid {
        height: 1800px;
    }

    .product-box, .product-text {
        width: calc(100% - 20px);
        transform: translate(0, 0) !important;
    }

    .product-box p {
        text-align: center;
    }

    /* FIRST BOX */

    .product-box1 {
        order: 1;
    }

    #main-1 {
        bottom: -100px;
    }

    #el-1-1 {
        top: 85px;
        right: 200px;
        left: auto;
        transform: rotate(-25deg);
        width: 195px;
    }
    
    .product-box1:hover #el-1-1 {
        width: 195px;
        top: 85px;
        right: 200px;
        left: auto;
    }

    @media only screen and (max-width: 630px) {
        #el-1-1 {
            width: 95px;
        }
            
        .product-box1:hover #el-1-1 {
            width: 95px;
        }
    }

    #el-1-2 {
        width: 58px;
        transform: rotate(10deg);
        top: 90px;
        right: 50px;
    }

    #el-1-3 {
        width: 100px;
        transform: rotate(16deg);
        top: 170px;
        right: 30px;
    }

    @media only screen and (max-width: 335px) {
        #el-1-1, #el-1-2, #el-1-3 {
            display: none;
        }
    }

    /* SECOND BOX */

    .product-box2 {
        order: 2;
        height: 260px !important;
    }

    #main-2 {
        left: 50%;
        transform: translateX(-100px) rotate(-15deg); 
        top: auto;
        bottom: -100px;
    }

    #bank-2-1 {
        bottom: 10px;
        left: 20px;
        top: auto;
        right: auto;
    }
    
    .product-box2:hover #bank-2-1 {
        bottom: 10px;
        left: 20px;
        top: auto;
        right: auto;
    }
    
    #bank-2-2 {
        top: auto;
        right: 50px;
        bottom: 110px;
    }
    
    .product-box2:hover #bank-2-2 {
        top: auto;
        right: 50px;
        bottom: 110px;
    }
    
    #bank-2-3 {
        top: auto;
        right: 90px;
        bottom: 40px;
    }
    
    .product-box2:hover #bank-2-3 {
        top: auto;
        right: 90px;
        bottom: 40px;
    }
    
    #el-2-1 {
        width: 80px;
        transform: rotate(-60deg);
        top: 145px;
        left: 55px;
    }
    
    .product-box2:hover #el-2-1 {
        width: 80px;
        transform: rotate(-60deg);
        top: 145px;
        left: 55px;
    }
    
    #el-2-2 {
        width: 100px;
        transform: rotate(-15deg);
        top: 25px;
        left: 65px;
        filter: drop-shadow(0px 70px 20px rgba(0, 0, 0, 0.25));
    }
    
    .product-box2:hover #el-2-2 {
        width: 100px;
        transform: rotate(-15deg);
        top: 25px;
        left: 65px;
    }

    @media only screen and (max-width: 480px) {
        #el-2-2 {
            width: 50px;
            left: 25px;
        }

        .product-box2:hover #el-2-2 {
            width: 50px;
            left: 25px;
        }
    }
    
    #el-2-3 {
        width: 67px;
        transform: rotate(32deg);
        top: 50px;
        right: 40px;
    }
    
    .product-box2:hover #el-2-3 {
        width: 67px;
        transform: rotate(32deg);
        top: 50px;
        right: 40px;
    }

    @media only screen and (max-width: 335px) {
        #el-2-1, #el-2-2, #el-2-3 {
            display: none;
        }
    }

    /* THIRD BOX */

    .product-box3 {
        order: 3;
    }

    #graph-3-1 {
        left: 200px;
        top: 80px;
    }

    #el-3-1 {
        right: 50px;
    }

    #el-3-2 {
        left: 35px;
    }

    @media only screen and (max-width: 515px) {
        .product-box3 #el-3-1 {
            width: 120px;
        }
    }

    @media only screen and (max-width: 335px) {
        .product-box3 {
            height: 260px !important;
        }

        #main-3 {
            width: 250px;
            left: -40px;
            top: auto;
            bottom: -10px;
        }

        #graph-3-1, #el-3-1, #el-3-2 {
            display: none;
        }
    }

    /* FOURTH BOX */

    .product-box4 {
        order: 4;
        height: 260px !important;
    }

    #main-4 {
        width: 350px; 
        top: auto;
        bottom: -100px; 
        right: 50%;
        z-index: 2;
        transform: rotate(-11deg) translateX(150px);
    }

    #bank-4-1 {
        right: 170px;
    }
    
    .product-box4:hover #bank-4-1 {
        right: 170px;
    }
    
    #bank-4-2 {
        right: 90px;
    }
    
    .product-box4:hover #bank-4-2 {
        right: 90px;
    }
    
    #bank-4-3 {
        right: 100px;
    }

    .product-box4:hover #bank-4-3 {
        right: 100px;
    }

    #el-4-1 {
        width: 85px;
        top: 85px;
        left: 80px;
        filter: drop-shadow(0px 70px 20px rgba(0, 0, 0, 0.25));
    }
    
    .product-box4:hover #el-4-1 {
        top: 85px;
    }
    
    #el-4-2 {
        width: 86px;
        transform: rotate(20deg);
        bottom: -10px;
        left: 20px;
    }
    
    .product-box4:hover #el-4-2 {
        bottom: -10px;
    }
    
    #el-4-3 {
        width: 45px;
        bottom: 30px;
        right: 15px;
    }
    
    .product-box4:hover #el-4-3 {
        right: 15px;
    }

    @media only screen and (max-width: 460px) {
        #el-4-1 {
            width: 45px;
            top: 70px;
            left: 40px;
        }
        
        .product-box4:hover #el-4-1 {
            top: 70px;
        }
    }

    @media only screen and (max-width: 335px) {
        #bank-4-1, #bank-4-2, #bank-4-3, #el-4-1, #el-4-2, #el-4-3 {
            display: none;
        }
    }

    /* FIFTH BOX */

    .product-box5 {
        order: 5;
    }

    .product-box5:hover #main-5-1 {
        bottom: -20px;
        left: -20px;
    }
    
    .product-box5:hover #main-5-2 {
        top: 0px;
    }
    
    .product-box5:hover #main-5-3 {
        transform: rotate(-39deg); 
        left: 115px;
    }

    #main-5-4 {
        width: 60px; 
        transform: rotate(-27deg); 
        top: 125px; 
        left: 325px;
    }
    
    .product-box5:hover #main-5-4 {
        width: 60px; 
        transform: rotate(-27deg); 
        top: 125px; 
    }
    
    #main-5-5 {
        width: 80px; 
        left: 455px;
    } 
    
    .product-box5:hover #main-5-5 {
        transform: rotate(9deg); 
        left: 455px;
    }

    #el-5-1 {
        width: 118px;
        top: 85px; 
        left: 205px;
        transform: rotate(-46deg);
    }
    
    #el-5-2 {
        transform: rotate(-45deg);
        width: 131px;
        top: 230px; 
        left: 350px;
    }
    
    .product-box5:hover #el-5-2 {
        transform: rotate(-45deg);
        width: 131px;
        top: 230px; 
        left: 350px;
    }

    @media only screen and (max-width: 620px) {
        #el-5-1, #el-5-2 {
            display: none;
        }

        #main-5-4 {
            top: 125px; 
            left: 245px;
        }
        
        #main-5-5 {
            left: 335px;
        } 
        
        .product-box5:hover #main-5-5 {
            left: 335px;
        }
    }

    @media only screen and (max-width: 510px) {
        #main-5-4 {
            top: 125px; 
            left: 25px;
        }
        
        #main-5-5 {
            left: auto;
            right: 70px;
        } 
        
        .product-box5:hover #main-5-5 {
            left: auto;
            right: 70px;
        }
    }

    @media only screen and (max-width: 460px) {
        #main-5-5 {
            display: none;
        }
    }

    @media only screen and (max-width: 335px) {
        #main-5-4, #main-5-5, #el-5-1, #el-5-2 {
            display: none;
        }

        #main-5-3 {
            left: 20px;
            top: 120px;
        }

        .product-box5:hover #main-5-3 {
            transform: rotate(-39deg); 
            left: 20px;
            top: 120px;        
        }
    }

    /* SIXTH BOX */

    .product-box6 {
        order: 6;
        cursor: default;
        height: 120px !important;
        padding: 0;
        width: 100% !important;
    }

    @media only screen and (max-width: 335px) {
        .product-box6 {
            height: 160px !important;
        }
    }

    @media only screen and (max-width: 240px) {
        .product-box6 {
            height: 200px !important;
        }
    }
}


/* ---------------------------------------------------------
|                        ACCORDION                         | 
--------------------------------------------------------- */


.accordion-container {
    width: 100%;
    position: relative;
}

.accordion-container img {
    position: relative !important;
}

.fade {
    opacity: 0;
    transition: opacity 0.2s ease;
}
  
.fade.show {
    opacity: 1;
}
  
.accordion-btn {
    width: 100%;
    padding: 1rem 1.5rem;
    margin-bottom: 5px;
    background-color: #CED4DA2E;
    color: #fff;
    border: none;
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.3s ease;
    height: 80px;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 5%;
    position: relative;
    cursor: pointer;
}

.accordion-btn:hover {
    background-color: #FFFFFF33;
}

.accordion-btn svg {
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
}

.accordion-container .white-box {
    background: white;
    color: #111827;
    border-radius: 15px;
    margin-bottom: 5px;
    position: relative;
    z-index: 10;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column;
    overflow: hidden;
    transition: 0.4s ease;
    padding-bottom: 10px;
}

.accordion-container .white-box-inner {
    padding: 25px 40px;
}

.accordion-container .white-box .minus {
    position: absolute;
    top: 25px;
    right: 30px;
}

.accordion-container .white-box h2 {
    font-size: 22px;
    font-weight: 600;
    text-align: left;
}

.accordion-container .white-box p {
    font-size: 16px;
    line-height: 150%;
    font-weight: 400;
    margin-top: 30px;
    text-align: left;
}

.accordion-container .white-box ul {
    margin-top: 20px;
    margin-left: 20px;
}

.accordion-container .white-box ul li {
    font-size: 16px;
    font-weight: 600;
    line-height: 180%;
    text-align: left;
}

.accordion-container .fade {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.accordion-container .fade.show {
    opacity: 1;
}

.accordion-container .hidden-btn {
    visibility: hidden;
    height: 0;
    padding: 0;
    margin: 0;
    overflow: hidden;
}

@media only screen and (max-width: 346px) {
    .accordion-btn {
        font-size: 16px;
    }

    .accordion-btn svg {
        width: 18px;
    }
}



/* ---------------------------------------------------------
|                         ACCORDIONS                       | 
--------------------------------------------------------- */

.accounts-section, .collections-section, .payout-section, .exchange-section, .gateway-section {
    width: 100%;
    height: auto;
    transition: 0.3s;
    position: relative;
}

.accounts-section img, .collections-section img, .payout-section img, .exchange-section img, .gateway-section img {
    position: absolute;
}

.collections-section, .exchange-section {
    background-color: #CED4DA3D;
}

.payout-section {
    background-color: #617181;
    color: #fff
}

.gateway-section {
    background-color: #1E8687;
    color: #fff;
}

.accounts-section .content, .collections-section .content, .payout-section .content, .exchange-section .content, .gateway-section .content {
    width: 100%; 
    max-width: 1344px;
    margin: auto;
    display: flex;
    padding: 100px 20px;
    position: relative;
}

.accounts-section .content {
    padding-bottom: 200px;
}

.collections-section .content {
    padding-bottom: 150px;
}

.accounts-section .left, .accounts-section .right, .collections-section .left, .collections-section .right,
.payout-section .left, .payout-section .right, .exchange-section .left, .exchange-section .right,
.gateway-section .left, .gateway-section .right {
    width: 50%;
    padding: 0 20px;
    position: relative;
} 

.exchange-section .small-black-button {
    margin-bottom: 10px;
}

.accounts-section .left {
    padding-top: 100px;
}

.accounts-section h2, .collections-section h2, .payout-section h2, .exchange-section h2, .gateway-section h2 {
    font-weight: 500;
    font-size: 40px;
    line-height: 100%;
    letter-spacing: 0%;
}

.accounts-section .left p, .collections-section .left p, .payout-section .left p, .exchange-section .left p, .gateway-section .left p {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0%;
    max-width: 410px;  
    margin: 50px 0; 
    text-align: left;
}

.collections-section .left p {
    margin: 0 0 30px 0; 
}

.payout-section .left p {
    margin: 30px 0;
}

.exchange-section .left p, .gateway-section .left p {
    margin: 50px 0 20px 0; 
}

.accounts-section .left h3, .collections-section .left h3, .payout-section .left h3, .exchange-section h3, .gateway-section h3 {
    font-weight: 600;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #1E8687;
    max-width: 415px;
    margin-bottom: 50px;
}

.collections-section .left h3 {
    margin: 50px 0; 
}

.payout-section .left h3 {
    color: #fff;
    margin: 50px 0 0;
}

.collections-section .left ul, .payout-section .left ul, .exchange-section .left ul, .gateway-section .left ul {
    margin-left: 15px;
    margin-bottom: 50px;
}

.collections-section .left li, .payout-section .left li, .exchange-section .left li, .gateway-section .left li {
    font-weight: 600;
    font-size: 16px;
    line-height: 180%;
    letter-spacing: 0%;    
    text-align: left;
}

#accordion-container-1 .accordion-btn, #accordion-container-2 .accordion-btn, #accordion-container-4 .accordion-btn {
    color: #232323;
}

#accordion-container-1 .accordion-btn svg path, #accordion-container-2 .accordion-btn svg path, #accordion-container-4 .accordion-btn svg path {
    stroke: #CED4DA;
}

.top-img {
    display: none;
    width: 130px;
    margin-bottom: 30px;
}

.top-img img {
    width: 100%;
    position: relative !important;
}

.white-box-images {
    display: flex; 
    gap: 20px; 
    margin-top: 20px;
    flex-wrap: wrap;
    justify-content: start;
}

@media only screen and (max-width: 600px) {
    .white-box-images {
        display: none;
    }
}

@media only screen and (max-width: 1000px) {
    .accounts-section .content, .collections-section .content, .payout-section .content, .exchange-section .content, .gateway-section .content {
        flex-direction: column;
        padding: 50px 0px;
    }

    .accounts-section .left, .accounts-section .right, .collections-section .left, .collections-section .right,
    .payout-section .left, .payout-section .right, .exchange-section .left, .exchange-section .right,
    .gateway-section .left, .gateway-section .right {
        width: 100%;
        margin: 30px 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding-bottom: 0px !important;
    }

    .accounts-section .left {
        padding-top: 0;
    }    

    .top-img {
        display: block;
    }
}

/* Payment accounts */

#user-accounts {
    width: 160px;
    transform: rotate(-25deg) translateY(-50%);
    top: 0;
    left: 0;
}

#finger-accounts {
    width: 305px;
    transform: rotate(10deg) translate(-150%);
    left: 50%;
    bottom: 0;
}

#circle-accounts {
    width: 230px;
    top: 0;
    right: 0;
    transform: translate(50%, -30%);
}

.accounts-section .top-img img {
    transform: rotate(10deg);
}

@media only screen and (max-width: 1000px) {
    #user-accounts, #finger-accounts, #circle-accounts {
        display: none;
    }

    .accounts-section .content {
        padding-top: 0;
    }
}

/* Сollections */

#basket-collections {
    width: 100px;
    transform: rotate(21deg);
    top: -50px;
    right: 10px;
}

#qr-collections {
    width: 250px;
    transform: rotate(-30deg);
    bottom: -30px;
    left: 25%;
    z-index: 2;
}

#circle-collections {
    width: 140px;
    filter: drop-shadow(0px 70px 20px rgba(0, 0, 0, 0.15));
    bottom: 0;
    transform: translateY(50%);
    left: 38%;
    z-index: 3;
}

#circle-white-collections {
    width: 200px;
    top: 0;
    left: 10%;
    transform: translateY(-35%);
}

@media only screen and (max-width: 1000px) {
    #basket-collections, #qr-collections, #circle-collections, #circle-white-collections {
        display: none;
    }
}

/* Payout accounts */

#dollar-payout {
    transform: rotate(-30.5deg) translateY(50%);
    width: 90px;
    bottom: 0;
    left: 5%;
    z-index: 2;
}

#eiro-payout {
    transform: rotate(30deg);
    width: 60px;
    bottom: 8%;
    left: 15%;   
}

#yen-payout {
    transform: rotate(-27deg);
    width: 60px;
    top: 5%;
    right: 3%;
}

#lighting-payout {
    width: 260px;
    bottom: -80px;
    left: 25%;
    z-index: 2;
}

#circle-white-payout {
    width: 200px;
    bottom: 0;
    right: 1%;
    transform: translateY(80%);
    z-index: 2;
}

@media only screen and (max-width: 1000px) {
    #dollar-payout, #eiro-payout, #yen-payout, #lighting-payout, #circle-white-payout {
        display: none;
    }
}

/* Currency accounts */

#lira-exchange {
    width: 120px;
    left: 1%;
    bottom: 20px;
}

#sync-exchange {
    width: 250px;
    transform: rotate(-52deg);
    bottom: -40px;
    left: 20%;
    z-index: 2;
}

#yen-exchange {
    width: 60px;
    transform: rotate(-22deg);
    bottom: 170px;
    left: 40%;
}

@media only screen and (max-width: 1000px) {
    #lira-exchange, #sync-exchange, #yen-exchange {
        display: none;
    }
}

/* Payment gateway */

#code-gateway {
    width: 400px;
    transform: rotate(15deg);
    z-index: 2;
    bottom: -30px;
    left: 15%;
}

#togge-gateway {
    width: 80px;
    left: 4%;
    bottom: 80px;
}

#circle-gateway {
    width: 100px;
    filter: drop-shadow(0px 70px 20px rgba(0, 0, 0, 0.15));
    bottom: -40px;
    right: -30px;
    z-index: 2;
}

@media only screen and (max-width: 1000px) {
    #code-gateway, #togge-gateway, #circle-gateway {
        display: none;
    }
}


.exchange-section h3 {
    margin-top: 30px;
}

.gateway-section h3 {
    margin-top: 30px;
    color: #fff;
}