.certificate_wrapper-search-box {
    background-color: rgba(255, 255, 255, 0.3);
    height: 48px;
    width: 380px;
    border-radius: 30px;
}

.certificate_wrapper-search-box input {
    font-size: 13px;
    color: white;
}

.certificate_wrapper-search-box input:focus {
    outline: unset;
}

.certificate_wrapper-search-box input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.certificate_wrapper-search-box button {
    border-radius: 20px;
    font-size: 12px;
    background-color: #41b9a2;
    line-height: 30px;
}

.certificate_wrapper-search-box button i::before {
    vertical-align: middle;
    font-size: 16px;
}

.certificate_wrapper-search-box button:focus {
    outline: unset;
}
.certificate_image-container {
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
}

.certificate_image-container img {
    max-width: 100%;
    width: auto !important;
}
.certificate_image-wrapper {
    top: -20%;
}
.certificate_wrapper {
    top: 0;
    min-height: 700px;
}
.certificate_wrapper-loading {
    top: 10px;
    left: 50%;
}

/* loading */
.loader {
    width: 50px;
    aspect-ratio: 1;
    display: grid;
    border: 4px solid #0000;
    border-radius: 50%;
    border-right-color: #25b09b;
    animation: l15 1s infinite linear;
}
.loader::before,
.loader::after {
    content: "";
    grid-area: 1/1;
    margin: 2px;
    border: inherit;
    border-radius: 50%;
    animation: l15 2s infinite;
}
.loader::after {
    margin: 8px;
    animation-duration: 3s;
}

@keyframes l15 {
    100% {
        transform: rotate(1turn);
    }
}

@media screen and (max-width: 1400px) {
    .certificate_wrapper {
        min-height: 600px;
    }
}
@media screen and (max-width: 1200px) {
    .certificate_wrapper {
        min-height: 465px;
    }
}

@media screen and (max-width: 992px) {
    .certificate_wrapper-search-box {
        width: 60%;
    }
    .certificate_wrapper {
        min-height: 400px;
    }
}

@media screen and (max-width: 768px) {
    .blog_wrapper .blog_wrapper-search-box {
        width: 80%;
    }
}

@media screen and (max-width: 576px) {
    .certificate_wrapper-search-box {
        width: 80%;
    }
    .certificate_wrapper {
        min-height: 300px;
    }
}

@media screen and (max-width: 390.99px){
    .certificate_wrapper-search-box button i {
        display: none;
    }
}