.page-loader {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    background: black;
}

.page-loader .image {
    position: relative;
    width: 150px;
    height: auto;
    border-radius: 150px;
    animation: animate_page_loader 2s ease infinite;
}

@keyframes animate_page_loader {
    0% {
        transform: scale(0.5);
        opacity: 0.5
    }
    50% {
        transform: scale(1);
        opacity: 1
    }
    100% {
        transform: scale(0.5);
        opacity: 0.5
    }
}

.google-translate-btn {
    position: fixed;
    bottom: 0px;
    left: 5%;
    padding: 5px 10px;
    color: white;
    background: #CCA354;
    font-size: 14px;
    z-index: 1500;
    border-radius: 5px 5px 0px 0px;
    border: none;
}

.google-translate-container {
    position: fixed;
    bottom: 100px;
    left: 5%;
    width: 200px;
    padding: 20px 20px;
    border-radius: 5px;
    background: white;
    z-index: 1500;
    display: none;
}

.google-translate-container .close-btn {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 30px;
    height: 30px;
    border-radius: 30px;
    border: 1px solid white;
    color: white;
    background: rgba(0, 0, 0, 0);
    font-size: 14px;
    /* z-index:2000; */
}

.google-translate-container select {
    color: black;
}

.whatsapp-icon {
    position: fixed;
    bottom: 130px;
    left: 10px;
    width: 70px;
    height: auto;
    z-index: 1500;
}

.telegram-icon {
    position: fixed;
    bottom: 50px;
    left: 10px;
    width: 70px;
    height: auto;
    z-index: 1500;
}

.home {
    position: relative;
}

.home .certificate-section {
    position: relative;
    width: 100%;
    margin-bottom: 30px;
}

.home .certificate-section .certificate-container {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    /* background:green; */
}

.home .certificate-section .certificate-container .image {
    width: 50%;
    height: auto;
}

.home .certificate-section .download-btn-container {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.home .certificate-section .download-btn-container .download-btn {
    position: relative;
    padding: 10px 20px;
    border: 1px solid white;
    border-radius: 5px;
    font-size: 14px;
    background: rgba(0, 0, 0, 0);
    color: white;
}

.home .video-testimonials {
    position: relative;
    width: 80%;
    margin: auto;
    padding: 50px 0px;
}

.home .video-testimonials .title {
    position: relative;
    width: 100%;
    text-align: center;
    margin-bottom: 40px;
    color: white;
}

.home .video-testimonials .video-testimonial-container {
    position: relative;
    width: 100%;
}

.home .video-testimonials .video-testimonial-container .item {
    width: 200px;
    height: 200px;
    background: black;
}

.home .video-testimonials .video-testimonial-container .item video {
    position: relative;
    width: 100%;
    height: 200px;
}


/** Small screens start ***/

@media only screen and (max-width: 690px) {
    .whatsapp-icon {
        width: 50px;
        bottom: 120px;
    }
    .telegram-icon {
        width: 50px;
    }
    .home .certificate-section .certificate-container .image {
        width: 90%;
    }
    .home .video-testimonials .video-testimonial-container .item {
        width: 100%;
    }
}


/*** Small screens end ***/