#bot-page .thank_text {
    font-family: 'SVN-Bali';
    font-size: 32px;
    color: #fff;
}

#bot-page .contribute-together {
    position: relative;
}

#bot-page .group_thanks {
    top: 10%;
}

#bot-page .group_thanks .thank_text {
    padding: 0 30px 0 20px;
    position: relative;
    width: fit-content;
}

#bot-page .group_thanks .thank_text::before {
    content: '';
    height: 2px;
    background-color: #00A59B;
    border-radius: 5px;
    position: absolute;
    bottom: 0%;
    transform: translate(0%, 100%);
    width: 90%;
}

#bot-page .group_thanks .btn_together {
    border-radius: 30px;
    background: #009F9A;
    box-shadow: 0px 8px 0px 0px #12645F;
    color: #fff;
    font-size: clamp(1rem, 0.9432rem + 0.2424vw, 1.125rem);
    font-family: 'Montserrat-Regular';
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding-top: clamp(0.8rem, 0.7296rem + 0.3005vw, 1rem);
    padding-bottom: clamp(0.8rem, 0.7296rem + 0.3005vw, 1rem);
    padding-inline: clamp(1.5rem, 1.3239rem + 0.7512vw, 2rem);
}

#bot-page .group_thanks .fanpage-btn {
    border-radius: 30px;
    background: #009F9A;
    box-shadow: 0px 5px 0px 0px #12645F;
    color: #fff;
    font-size: clamp(1rem, 0.9432rem + 0.2424vw, 1.125rem);
    font-family: 'Montserrat-Regular';
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding-top: clamp(0.8rem, 0.7296rem + 0.3005vw, 1rem);
    padding-bottom: clamp(0.8rem, 0.7296rem + 0.3005vw, 1rem);
    padding-inline: clamp(1.5rem, 1.3239rem + 0.7512vw, 2rem);
}

#footer {
    background-color: #1C5091;
    font-family: 'Montserrat-Regular';
    font-size: 16px;
    padding: 30px 12px 30px 20px;
    color: #fff;
    line-height: 130%;
}

#footer .footer_title {
    position: relative;
}

#footer .footer_title::before {
    width: fit-content;
    content: '';
    height: 2px;
    background: rgba(255, 255, 255, 0.40);
    border-radius: 5px;
    position: absolute;
    bottom: 0%;
    transform: translate(0%, 200%);
    width: 64%;
}

#bot-page .img_cloud_1,
#bot-page .img_cloud_2 {
    display: none;
}

@media only screen and (max-width: 576px) {
    #bot-page .image-container {
        position: relative;
        height: 200px;
    }
    
    #bot-page .image-container img {
        position: absolute;
        top: 0%;
        transition: transform 5s ease;
    }
}
@media only screen and (min-width: 577px) and (max-width: 768px) {
    #bot-page .image-container {
        position: relative;
        height: 300px;
    }
    
    #bot-page .image-container img {
        position: absolute;
        top: -17%;
        transition: transform 5s ease;
    }
}
@media (min-width: 768px) and (max-width: 992px) {
    #bot-page .group_thanks {
        left: 10%;
    }

    #bot-page .image-container {
        position: relative;
        height: 380px;
    }
    
    #bot-page .image-container img {
        position: absolute;
        top: -17%;
        transition: transform 5s ease;
    }
}
@media (min-width: 992px) and (max-width: 1200px) {
    #bot-page .group_thanks {
        left: 10%;
    }

    #bot-page .image-container {
        position: relative;
        height: 400px;
    }
    
    #bot-page .image-container img {
        position: absolute;
        top: -17%;
        transition: transform 5s ease;
    }
}

@media (min-width: 1200px) {
    #bot-page .thank_text {
        font-size: 64px;
    }

    #bot-page .group_thanks .thank_text::before {
        width: 92%;
    }

    #bot-page .group_thanks {
        left: 10%;
    }

    #bot-page .image-container {
        position: relative;
        height: 460px;
    }
    
    #bot-page .image-container img {
        position: absolute;
        top: -17%;
        transition: transform 5s ease;
    }
}

@media (min-width: 1400px) {
    #bot-page .img_cloud_1 {
        display: block;
        position: absolute;
        z-index: 99;
        top: 5%;
        right: 0%;
        width: 200px;
    }

    #bot-page .img_cloud_2 {
        display: block;
        position: absolute;
        z-index: 99;
        bottom: 5%;
        left: 0%;
        transform: translate(-50%, 0%);
        width: 320px;
        z-index: -1;
    }

    #bot-page .image-container {
        position: relative;
        height: 530px;
    }
    
    #bot-page .image-container img {
        position: absolute;
        top: -100px;
        transition: transform 5s ease;
    }
}

#bot-page .zoom1 {
    z-index: 3;
    transform: scale(1);
}

#bot-page .zoom2 {
    z-index: 2;
    transform: scale(0.8);
}

#bot-page .zoom3 {
    z-index: 1;
    transform: scale(0.5);
}

#bot-page .zoom1-active {
    transform: scale(0.8);
}

#bot-page .zoom2-active {
    transform: scale(0.5);
}

#bot-page .zoom3-active {
    transform: scale(0.3);
}