.banner {
    position: relative;
    width: 100%;
    height: 450px;
    /* border: 1px solid #f00; */
    padding: 60px 80px;
    z-index: -1;
    padding-bottom: 0;
    /* background: linear-gradient(to bottom, #fff, #e5332da4); */
    background: linear-gradient(to bottom, #fff, #009dd663);
}

.banner .banner_content {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.banner .banner_content h1 {
    position: relative;
    width: 800px;
    font-family: 'Lemonada', cursive;
    font-size: 32px;
    line-height: 1.4;
    color: #009ED6;
}

.banner svg {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: auto;
}

/* ==================== responsive start ====================== */

@media only screen and (max-width:950px) {
    .banner {
        padding: 60px 50px;
    }

    .banner .banner_content h1 {
        width: 100%;
    }
}

@media only screen and (max-width:750px) {
    .banner {
        height: 350px;
    }

    .banner .banner_content h1 {
        font-size: 27px;
    }
}

@media only screen and (max-width:600px) {
    .banner {
        height: 300px;
    }

    .banner .banner_content h1 {
        font-size: 23px;
    }
}

@media only screen and (max-width:450px) {
    .banner {
        height: 230px;
    }
}


/* =================== profile page =================== */

.profile_page {
    position: relative;
    width: 100%;
    padding: 30px 80px;
    padding-top: 0;
    /* border: 1px solid #f00; */
    z-index: 1;
}

.profile_page .section_content {
    position: relative;
    width: 100%;
}

.profile_page .section_content form.img_compress_form {
    display: none;
}


.profile_page .section_content form {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.profile_page .section_content form .image_sec {
    position: relative;
    width: 160px;
    height: 160px;
    /* border: 1px solid #000; */
    border-radius: 15px;
}

.profile_page .section_content form .image_sec a {
    position: absolute;
    right: -15px;
    bottom: -10px;
    width: 40px;
    height: 40px;
    background: #009ED6;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 15px;
    z-index: 3;
}

.profile_page .section_content form .image_sec .imgBox {
    position: relative;
    width: 100%;
    height: 100%;
    border: 1px solid #009dd646;
    overflow: hidden;
    border-radius: 15px;
}

.profile_page .section_content form .image_sec .imgBox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.profile_page .section_content form .information_sec {
    position: relative;
    margin-top: 45px;
    width: 900px;
    min-height: 300px;
    border-radius: 10px;
    padding: 30px 30px;
    padding-bottom: 40px;
    /* border: 1px solid blue; */
    box-shadow: -5px -5px 10px rgba(229, 51, 45, 0.287), 5px 5px 5px rgba(0, 157, 214, 0.212), 15px 15px 15px rgba(0, 157, 214, 0.186);
}

.profile_page .section_content form .information_sec .section_items {
    position: relative;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.profile_page .section_content form .information_sec .section_items .heading {
    position: relative;
    width: 100%;
    margin-bottom: 15px;
    padding: 0px 15px;
}

.profile_page .section_content form .information_sec .section_items .heading h2 {
    position: relative;
    font-family: 'Lemonada', cursive;
    font-size: 19px;
    font-weight: 600;
    color: #74ba57;
}

.profile_page .section_content form .information_sec .section_items .box_type_1 {
    position: relative;
    width: 50%;
    padding: 15px 15px;
    /* border: 1px solid #000; */
}

.profile_page .section_content form .information_sec .section_items .box_type_2 {
    position: relative;
    width: 100%;
    padding: 15px 15px;
    /* border: 1px solid #000; */
}

.profile_page .section_content form .information_sec .section_items .box_type_1 .input_box {
    position: relative;
    width: 100%;
    height: 42px;
    border: 1px solid #009dd674;
    border-radius: 8px;
}

.profile_page .section_content form .information_sec .section_items .box_type_2 .input_box {
    position: relative;
    width: 100%;
    height: 65px;
    border: 1px solid #009dd674;
    border-radius: 8px;
}

.profile_page .section_content form .information_sec .section_items .box_type_1 .input_box input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    border-radius: 8px;
    background: transparent;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    color: #000;
    opacity: 0;
    padding: 6px 15px;
}

.profile_page .section_content form .information_sec .section_items .box_type_2 .input_box textarea {
    position: absolute;
    width: 100%;
    height: 100%;
    font-family: 'Poppins', sans-serif;
    background: transparent;
    border: none;
    outline: none;
    font-size: 15px;
    color: #000;
    padding: 15px;
    z-index: 1;
    resize: none;
}

.profile_page .section_content form .information_sec .section_items .box_type_1 .input_box input:focus,
.profile_page .section_content form .information_sec .section_items .box_type_1 .input_box input:valid {
    opacity: 1;
}

.profile_page .section_content form .information_sec .section_items .box_type_1 .input_box label,
.profile_page .section_content form .information_sec .section_items .box_type_2 .input_box label {
    position: absolute;
    top: 0;
    left: 0;
    line-height: 40px;
    font-size: 15px;
    font-weight: 400;
    padding: 0 15px;
    display: flex;
    pointer-events: none;
    transition: 0.5s;
    color: #444;
    font-family: 'Poppins', sans-serif;
}

.profile_page .section_content form .information_sec .section_items .box_type_1 .input_box input:focus+label,
.profile_page .section_content form .information_sec .section_items .box_type_1 .input_box input:valid+label,
.profile_page .section_content form .information_sec .section_items .box_type_2 .input_box textarea:focus+label,
.profile_page .section_content form .information_sec .section_items .box_type_2 .input_box textarea:valid+label {
    top: -8px;
    left: 10px;
    line-height: 1;
    color: #E5322D;
    padding: 0 5px;
    font-size: 13px;
    background: #fff;
}

.profile_page .section_content form .information_sec .section_items .box_type_1 .input_box span.disable,
.profile_page .section_content form .information_sec .section_items .box_type_2 .input_box span.disable {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.profile_page .section_content form .information_sec .section_items .form_btn {
    position: relative;
    width: 100%;
    margin-top: 25px;
    padding: 0px 15px;
}

.profile_page .section_content form .information_sec .section_items .form_btn button {
    position: relative;
    font-family: 'Poppins', sans-serif;
    padding: 13px 35px;
    font-size: 16px;
    line-height: 1;
    font-weight: 500;
    letter-spacing: 0.7px;
    border: none;
    color: #000;
    background-color: rgb(247, 247, 247);
    transition-property: background-color, color;
    transition: 0.3s;
    transition-delay: 0s, 0.75s;
    cursor: pointer;
    text-transform: uppercase;
}

.profile_page .section_content form .information_sec .section_items .form_btn button:hover {
    background: transparent;
    color: #fff;
    transition-delay: 0.75s, 0s;
}

.profile_page .section_content form .information_sec .section_items .form_btn button::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 2px;
    background: #009ED6;
    transform-style: linear;
    transition-property: height, width;
    transition-delay: 0.3s, 0.75s;
    transition-duration: 0.5s;
}

.profile_page .section_content form .information_sec .section_items .form_btn button:hover:before {
    width: 2px;
    height: 100%;
    transition-delay: 0s, 0.3s;
    transition-property: width, height;
    background: #E5322D;
}

.profile_page .section_content form .information_sec .section_items .form_btn button::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: #009ED6;
    transform: scaleX(0);
    transition: 0.5s;
    transition-delay: 0s;
    transform-origin: right;
    z-index: -1;
}

.profile_page .section_content form .information_sec .section_items .form_btn button:hover:after {
    transform: scaleX(1);
    transition-delay: 0.75s;
}


.profile_page .section_content form .information_sec .sec_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.profile_page .section_content form .information_sec .sec_bg img {
    position: relative;
    width: 100%;
    height: 100%;
    opacity: 0.05;
}





.profile_page .section_content .id_card_section {
    position: relative;
    width: 100%;
    margin-top: 50px;
    /* border: 1px solid green; */
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile_page .section_content .id_card_section .section_inner {
    position: relative;
    width: 900px;
    min-height: 150px;
    padding: 30px 30px;
    padding-bottom: 50px;
    /* border: 1px solid blue; */
    border-radius: 10px;
    box-shadow: -5px -5px 10px rgba(229, 51, 45, 0.287), 5px 5px 5px rgba(0, 157, 214, 0.212), 15px 15px 15px rgba(0, 157, 214, 0.186);
}

.profile_page .section_content .id_card_section .section_inner .inner_items {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.profile_page .section_content .id_card_section .section_inner .inner_items .heading {
    position: relative;
    width: 100%;
    margin-bottom: 15px;
    padding: 0px 15px;
}

.profile_page .section_content .id_card_section .section_inner .inner_items .heading h2 {
    position: relative;
    font-family: 'Lemonada', cursive;
    font-size: 19px;
    font-weight: 600;
    color: #74ba57;
}

.profile_page .section_content .id_card_section .section_inner .inner_items .blank_box_sec {
    position: relative;
    margin-top: 15px;
    display: flex;
    justify-content: center;
    text-align: center;
}

.profile_page .section_content .id_card_section .section_inner .inner_items .blank_box_sec p {
    position: relative;
    font-size: 15px;
    color: #666;
    font-family: 'Poppins', sans-serif;
}

.profile_page .section_content .id_card_section .section_inner .inner_items .card_box_sec {
    position: relative;
    width: 100%;
    margin-top: 25px;
    padding: 0px 15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.profile_page .section_content .id_card_section .section_inner .inner_items .card_box_sec .card_sec {
    position: relative;
    width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.profile_page .section_content .id_card_section .section_inner .inner_items .card_box_sec .card_sec span {
    position: relative;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: rgb(160, 160, 160);
}

.profile_page .section_content .id_card_section .section_inner .inner_items .card_box_sec .card_sec .card {
    position: relative;
    margin-top: 20px;
    width: 100%;
    transform-style: preserve-3d;
    transition: all 0.8s ease;
}
.profile_page .section_content .id_card_section .section_inner .inner_items .card_box_sec .card_sec .card .demo_card {
    position: relative;
    width: 100%;
    opacity: 0;
    display: flex;
    pointer-events: none;
}
.profile_page .section_content .id_card_section .section_inner .inner_items .card_box_sec .card_sec .card .demo_card img {
    position: relative;
    width: 100%;
    height: auto;
}

.profile_page .section_content .id_card_section .section_inner .inner_items .card_box_sec .card_sec .card:hover {
    transform: rotateY(180deg);
    transition: all 0.8s ease;
}

.profile_page .section_content .id_card_section .section_inner .inner_items .card_box_sec .card_sec .card .card_front {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    background: #fff;
    display: flex;
    border-radius: 10px;
}

.profile_page .section_content .id_card_section .section_inner .inner_items .card_box_sec .card_sec .card .card_back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    background: #fff;
    display: flex;
    border-radius: 10px;
    transform: rotateY(180deg);
}

.profile_page .section_content .id_card_section .section_inner .inner_items .card_box_sec .card_sec .card img {
    position: relative;
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: -5px -5px 10px rgba(175, 175, 175, 0.287), 8px 13px 15px rgba(114, 114, 114, 0.186);
}

.profile_page .section_content .id_card_section .section_inner .inner_items .card_box_sec .card_sec .btn_sec {
    position: relative;
    margin-top: 30px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.profile_page .section_content .id_card_section .section_inner .inner_items .card_box_sec .card_sec .btn_sec p {
    position: relative;
    margin-bottom: 15px;
    font-family: 'Ubuntu', sans-serif;
    font-size: 17px;
    font-weight: 500;
    color: #3a2f2f;
}

.profile_page .section_content .id_card_section .section_inner .inner_items .card_box_sec .card_sec .btn_sec .btns {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.profile_page .section_content .id_card_section .section_inner .inner_items .card_box_sec .card_sec .btn_sec .btns button {
    position: relative;
    width: 100%;
    height: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    color: #fff;
    border-radius: 8px;
    transition: all 0.4s;
}

.profile_page .section_content .id_card_section .section_inner .inner_items .card_box_sec .card_sec .btn_sec .btns button i {
    position: relative;
    margin-right: 6px;
}

.profile_page .section_content .id_card_section .section_inner .inner_items .card_box_sec .card_sec .btn_sec .btns button:first-child {
    background: #E5322D;
}

.profile_page .section_content .id_card_section .section_inner .inner_items .card_box_sec .card_sec .btn_sec .btns button:last-child {
    margin-top: 10px;
    background: #009ED6;
}

.profile_page .section_content .id_card_section .section_inner .inner_items .card_box_sec .card_sec .btn_sec .btns button:first-child:hover {
    background: #a70f0a;
    transition: all 0.4s;
}

.profile_page .section_content .id_card_section .section_inner .inner_items .card_box_sec .card_sec .btn_sec .btns button:last-child:hover {
    background: #0d7aa1;
    transition: all 0.4s;
}




/* ==================== responsive start ====================== */

@media only screen and (max-width:1150px) {
    .profile_page {
        padding: 30px 50px;
    }
}

@media only screen and (max-width:1000px) {

    .profile_page .section_content form .information_sec,
    .profile_page .section_content .id_card_section .section_inner {
        width: 100%;
    }
}

@media only screen and (max-width:900px) {
    .profile_page .section_content form .information_sec .section_items .box_type_1 .input_box input {
        font-size: 13px;
    }

    .profile_page .section_content form .information_sec .section_items .box_type_1 .input_box span,
    .profile_page .section_content form .information_sec .section_items .box_type_2 .input_box span {
        font-size: 13px;
    }

    .profile_page .section_content form .information_sec .section_items .box_type_1 .input_box input:focus+span,
    .profile_page .section_content form .information_sec .section_items .box_type_1 .input_box input:valid+span,
    .profile_page .section_content form .information_sec .section_items .box_type_2 .input_box textarea:focus+span,
    .profile_page .section_content form .information_sec .section_items .box_type_2 .input_box textarea:valid+span {
        top: -8px;
        font-size: 11px;
    }

    .profile_page .section_content .id_card_section .section_inner .inner_items .card_box_sec {
        margin-top: 15px;
    }

}

@media only screen and (max-width:850px) {
    .profile_page .section_content .id_card_section .section_inner .inner_items .card_box_sec {
        flex-direction: column;
        align-items: center;
    }
    .profile_page .section_content .id_card_section .section_inner .inner_items .card_box_sec .card_sec {
        margin-bottom: 40px;
    }
    .profile_page .section_content .id_card_section .section_inner .inner_items .card_box_sec .card_sec:last-child {
        margin-bottom: 0;
    }
}

@media only screen and (max-width:650px) {
    .profile_page .section_content form .image_sec {
        width: 135px;
        height: 135px;
    }

    .profile_page .section_content form .image_sec a {
        width: 35px;
        height: 35px;
        font-size: 13px;
    }

    .profile_page .section_content form .information_sec .section_items .box_type_1 {
        width: 100%;
    }

    .profile_page .section_content form .information_sec .section_items .form_btn button {
        padding: 12px 30px;
        font-size: 14px;
    }
}

@media only screen and (max-width:520px) {
    .profile_page {
        padding: 30px 20px;
    }

    .profile_page .section_content form .information_sec .section_items .heading,
    .profile_page .section_content .id_card_section .section_inner .inner_items .heading {
        padding: 0px 0px;
    }

    .profile_page .section_content form .information_sec .section_items .heading h2,
    .profile_page .section_content .id_card_section .section_inner .inner_items .heading h2 {
        font-size: 15px;
    }

    .profile_page .section_content form .information_sec .section_items .box_type_1,
    .profile_page .section_content form .information_sec .section_items .box_type_2 {
        padding: 15px 0px;
    }

    .profile_page .section_content form .information_sec .section_items .form_btn {
        padding: 0px 0px;
    }

    .profile_page .section_content form .information_sec .section_items .form_btn button {
        font-size: 12px;
    }
}

@media only screen and (max-width:430px) {

    .profile_page .section_content form .information_sec,
    .profile_page .section_content .id_card_section .section_inner {
        padding: 30px 15px;
    }

    .profile_page .section_content .id_card_section .section_inner .inner_items .card_box_sec {
        padding: 0px 5px;
    }
    .profile_page .section_content .id_card_section .section_inner .inner_items .card_box_sec .card_sec {
        width: 275px;
        margin-bottom: 30px;
    }
    .profile_page .section_content .id_card_section .section_inner .inner_items .card_box_sec .card_sec:last-child {
        margin-bottom: 0;
    }
}




.profile_page .section_content .certificate_section {
    position: relative;
    width: 100%;
    margin-top: 50px;
    /* border: 1px solid green; */
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile_page .section_content .certificate_section .section_inner {
    position: relative;
    width: 900px;
    min-height: 100px;
    padding: 30px 30px;
    padding-bottom: 50px;
    /* border: 1px solid blue; */
    border-radius: 10px;
    box-shadow: -5px -5px 10px rgba(229, 51, 45, 0.287), 5px 5px 5px rgba(0, 157, 214, 0.212), 15px 15px 15px rgba(0, 157, 214, 0.186);
}

.profile_page .section_content .certificate_section .section_inner .inner_items {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.profile_page .section_content .certificate_section .section_inner .inner_items .heading {
    position: relative;
    width: 100%;
    margin-bottom: 15px;
    padding: 0px 15px;
}

.profile_page .section_content .certificate_section .section_inner .inner_items .heading h2 {
    position: relative;
    font-family: 'Lemonada', cursive;
    font-size: 19px;
    font-weight: 600;
    color: #74ba57;
}


.profile_page .section_content .certificate_section .section_inner .inner_items .certificate_box_sec {
    position: relative;
    width: 100%;
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
}

.profile_page .section_content .certificate_section .section_inner .inner_items .certificate_box_sec .certificate_box {
    position: relative;
    width: 100%;
    padding: 15px;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.profile_page .section_content .certificate_section .section_inner .inner_items .certificate_box_sec .certificate_box form {
    display: none;
}

.profile_page .section_content .certificate_section .section_inner .inner_items .certificate_box_sec .certificate_box:last-child {
    margin-bottom: 0px;
}

.profile_page .section_content .certificate_section .section_inner .inner_items .certificate_box_sec .certificate_box .certificate {
    position: relative;
    width: 55%;
    display: flex;
    box-shadow: -5px -5px 10px rgba(133, 133, 133, 0.515), 8px 13px 15px rgba(114, 114, 114, 0.424);
}

.profile_page .section_content .certificate_section .section_inner .inner_items .certificate_box_sec .certificate_box .certificate img {
    position: relative;
    width: 100%;
    height: auto;
}


.profile_page .section_content .certificate_section .section_inner .inner_items .certificate_box_sec .certificate_box .btns_sec {
    position: relative;
    width: 45%;
    padding: 15px 0 0px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.profile_page .section_content .certificate_section .section_inner .inner_items .certificate_box_sec .certificate_box:last-child .btns_sec {
    padding: 15px 30px 0px 0px;
}

.profile_page .section_content .certificate_section .section_inner .inner_items .certificate_box_sec .certificate_box .btns_sec h5 {
    position: relative;
    font-family: 'Oswald', sans-serif;
    font-size: 22px;
    color: #4BB543;
    margin-bottom: 30px;
}

.profile_page .section_content .certificate_section .section_inner .inner_items .certificate_box_sec .certificate_box .btns_sec p {
    position: relative;
    margin-top: auto;
    font-family: 'Ubuntu', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #3a2f2f;
}

.profile_page .section_content .certificate_section .section_inner .inner_items .certificate_box_sec .certificate_box .btns_sec .btns {
    position: relative;
    margin-top: 15px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.profile_page .section_content .certificate_section .section_inner .inner_items .certificate_box_sec .certificate_box .btns_sec .btns button {
    position: relative;
    width: 100%;
    height: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    color: #fff;
    border-radius: 8px;
    transition: all 0.4s;
}

.profile_page .section_content .certificate_section .section_inner .inner_items .certificate_box_sec .certificate_box .btns_sec .btns button i {
    position: relative;
    margin-right: 6px;
}

.profile_page .section_content .certificate_section .section_inner .inner_items .certificate_box_sec .certificate_box .btns_sec .btns button:first-child {
    background: #E5322D;
}

.profile_page .section_content .certificate_section .section_inner .inner_items .certificate_box_sec .certificate_box .btns_sec .btns button:last-child {
    margin-top: 10px;
    background: #009ED6;
}

.profile_page .section_content .certificate_section .section_inner .inner_items .certificate_box_sec .certificate_box .btns_sec .btns button:first-child:hover {
    background: #a70f0a;
    transition: all 0.4s;
}

.profile_page .section_content .certificate_section .section_inner .inner_items .certificate_box_sec .certificate_box .btns_sec .btns button:last-child:hover {
    background: #0d7aa1;
    transition: all 0.4s;
}

/* ==================== responsive start ====================== */

@media only screen and (max-width:1000px) {
    .profile_page .section_content .certificate_section .section_inner {
        width: 100%;
    }
}

@media only screen and (max-width:768px) {
    .profile_page .section_content .certificate_section .section_inner .inner_items .certificate_box_sec {
        margin-top: 10px;
        align-items: center;
    }

    .profile_page .section_content .certificate_section .section_inner .inner_items .certificate_box_sec .certificate_box {
        position: relative;
        width: 350px;
        flex-direction: column;
    }

    .profile_page .section_content .certificate_section .section_inner .inner_items .certificate_box_sec .certificate_box:last-child {
        flex-direction: column-reverse;
    }

    .profile_page .section_content .certificate_section .section_inner .inner_items .certificate_box_sec .certificate_box .certificate {
        width: 100%;
    }

    .profile_page .section_content .certificate_section .section_inner .inner_items .certificate_box_sec .certificate_box .btns_sec {
        width: 100%;
        padding: 0;
        margin-top: 35px;
    }
    .profile_page .section_content .certificate_section .section_inner .inner_items .certificate_box_sec .certificate_box:last-child .btns_sec {
        padding: 0;
    }

    .profile_page .section_content .certificate_section .section_inner .inner_items .certificate_box_sec .certificate_box .certificate .certificate_overlay p {
        font-size: 16px;
    }

    .profile_page .section_content .certificate_section .section_inner .inner_items .certificate_box_sec .certificate_box .certificate .certificate_overlay a {
        margin-top: 17px;
        font-size: 30px;
    }
}

@media only screen and (max-width:520px) {
    .profile_page .section_content .certificate_section .section_inner .inner_items .heading {
        padding: 0;
    }

    .profile_page .section_content .certificate_section .section_inner .inner_items .heading h2 {
        font-size: 15px;
    }
}

@media only screen and (max-width:450px) {
    .profile_page .section_content .certificate_section .section_inner {
        padding: 30px 15px;
    }

    .profile_page .section_content .certificate_section .section_inner .inner_items .certificate_box_sec .certificate_box {
        position: relative;
        width: 100%;
        padding: 5px;
    }
}







.main_certificate_section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    overflow-x: auto;
}


.join_certificate {
    position: absolute;
    width: 1500px;
    height: auto;
    z-index: -1;
}

.join_certificate .certificate_bg {
    position: relative;
    width: 100%;
}

.join_certificate .certificate_bg img {
    position: relative;
    width: 100%;
}


.join_certificate .certificate_inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 75px;
}

.join_certificate .certificate_inner .inner_content {
    position: relative;
    width: 100%;
    height: 100%;
    /* border: 1px solid #fff; */
}

.join_certificate .certificate_inner .inner_content .icon_1 {
    position: absolute;
    top: 5px;
    left: 10px;
}

.join_certificate .certificate_inner .inner_content .icon_1 img {
    position: relative;
    width: 200px;
}

.join_certificate .certificate_inner .inner_content .icon_2 {
    position: absolute;
    top: 5px;
    right: 10px;
}

.join_certificate .certificate_inner .inner_content .icon_2 img {
    position: relative;
    width: 200px;
}


.join_certificate .certificate_inner .inner_content .certificate_head {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 20px;
}

.join_certificate .certificate_inner .inner_content .certificate_head img:nth-child(1) {
    position: relative;
    width: 630px;
}

.join_certificate .certificate_inner .inner_content .certificate_head img:nth-child(2) {
    position: relative;
    width: 320px;
    margin-top: 10px;
}

.join_certificate .certificate_inner .inner_content .certificate_head img:nth-child(3) {
    position: relative;
    width: 470px;
    margin-top: 5px;
}

.join_certificate .certificate_inner .inner_content .certificate_body {
    position: relative;
    margin-top: 20px;
    width: 100%;
    min-height: 250px;
    /* border: 1px solid #fff; */
    padding: 0px 40px;
}

.join_certificate .certificate_inner .inner_content .certificate_body .body_content {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.join_certificate .certificate_inner .inner_content .certificate_body .body_content h3 {
    position: relative;
    width: 100%;
    display: flex;
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    color: #E1B95A;
}

.join_certificate .certificate_inner .inner_content .certificate_body .body_content h3 span {
    position: relative;
    margin-left: 5px;
    margin-right: 20px;
}

.join_certificate .certificate_inner .inner_content .certificate_body .body_content p {
    position: relative;
    width: 100%;
    margin-top: 20px;
    text-align: center;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 20px;
    color: #E1B95A;
    line-height: 1.5;
    font-weight: 700;
}

.join_certificate .certificate_inner .inner_content .certificate_body .body_content p input {
    width: 400px;
    margin: 0px 10px;
    font-family: 'Roboto', sans-serif;
    text-align: center;
    border: none;
    background: transparent;
    border-bottom: 2px dotted #E1B95A;
    outline: none;
    font-size: 19px;
    color: #fff;
}

.join_certificate .certificate_inner .inner_content .certificate_body .body_content img {
    position: relative;
    width: 200px;
    margin-top: 55px;
}


.join_certificate .certificate_inner .inner_content .certificate_body .b_content_left {
    position: absolute;
    left: 30px;
    bottom: 0;
}

.join_certificate .certificate_inner .inner_content .certificate_body .b_content_left h4 {
    position: relative;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 19px;
    color: #E1B95A;
}

.join_certificate .certificate_inner .inner_content .certificate_body .b_content_right {
    position: absolute;
    right: 30px;
    bottom: 0;
    display: flex;
    align-items: flex-end;
}

.join_certificate .certificate_inner .inner_content .certificate_body .b_content_right .signature_sec {
    position: relative;
    padding-bottom: 25px;
    margin-right: 15px;
    display: flex;
    flex-direction: column;
    font-family: 'Roboto', sans-serif;
}

.join_certificate .certificate_inner .inner_content .certificate_body .b_content_right .signature_sec p {
    position: relative;
    font-size: 20px;
    font-weight: 700;
    color: #E1B95A;
}

.join_certificate .certificate_inner .inner_content .certificate_body .b_content_right .signature_sec p#founderName {
    font-size: 17px;
    margin-top: 5px;
}

.join_certificate .certificate_inner .inner_content .certificate_body .b_content_right .signature_sec img {
    position: relative;
    width: 170px;
}

.join_certificate .certificate_inner .inner_content .certificate_body .b_content_right h4 {
    position: relative;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 19px;
    color: #E1B95A;
}



.appreciation_certificate {
    position: absolute;
    width: 1500px;
    height: auto;
    /* z-index: -1; */
}

.appreciation_certificate .certificate_bg {
    position: relative;
    width: 100%;
}

.appreciation_certificate .certificate_bg img {
    position: relative;
    width: 100%;
}


.appreciation_certificate .certificate_inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 100px;
}

.appreciation_certificate .certificate_inner .inner_content {
    position: relative;
    width: 100%;
    height: 100%;
    /* border: 1px solid #fff; */
}

.appreciation_certificate .certificate_inner .inner_content .icon_1 {
    position: absolute;
    top: 5px;
    left: 10px;
    z-index: 15;
}

.appreciation_certificate .certificate_inner .inner_content .icon_1 img {
    position: relative;
    width: 200px;
}

.appreciation_certificate .certificate_inner .inner_content .icon_2 {
    position: absolute;
    top: 5px;
    right: 10px;
    z-index: 15;
}

.appreciation_certificate .certificate_inner .inner_content .icon_2 img {
    position: relative;
    width: 200px;
}


.appreciation_certificate .certificate_inner .inner_content .certificate_head {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 40px;
}

.appreciation_certificate .certificate_inner .inner_content .certificate_head img:nth-child(1) {
    position: relative;
    width: 680px;
}

.appreciation_certificate .certificate_inner .inner_content .certificate_head img:nth-child(2) {
    position: relative;
    width: 1000px;
    margin-top: 25px;
    z-index: 1;
}

.appreciation_certificate .certificate_inner .inner_content .certificate_head img:nth-child(3) {
    position: relative;
    width: 425px;
    margin-top: -60px;
    z-index: 10;
}

.appreciation_certificate .certificate_inner .inner_content .certificate_body {
    position: relative;
    margin-top: 70px;
    width: 100%;
    min-height: 250px;
    /* border: 1px solid #fff; */
    padding: 0px 40px;
}

.appreciation_certificate .certificate_inner .inner_content .certificate_body .body_content {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.appreciation_certificate .certificate_inner .inner_content .certificate_body .body_content h3 {
    position: relative;
    width: 100%;
    display: flex;
    font-family: 'Roboto', sans-serif;
    font-size: 24px;
    color: #E1B95A;
}

.appreciation_certificate .certificate_inner .inner_content .certificate_body .body_content h3 input {
    position: relative;
    width: 800px;
    margin-left: 10px;
    font-family: 'Roboto', sans-serif;
    border: none;
    background: transparent;
    border-bottom: 2px dotted #E1B95A;
    outline: none;
    font-size: 21px;
    padding-left: 25px;
    color: #fff;
}

.appreciation_certificate .certificate_inner .inner_content .certificate_body .body_content p {
    position: relative;
    width: 100%;
    margin-top: 40px;
    text-align: center;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 22px;
    color: #E1B95A;
    line-height: 1.5;
    font-weight: 700;
}

.appreciation_certificate .certificate_inner .inner_content .certificate_body .body_content img {
    position: relative;
    width: 220px;
    margin-top: 50px;
    margin-bottom: 20px;
}


.appreciation_certificate .certificate_inner .inner_content .certificate_body .b_content_left {
    position: absolute;
    left: 30px;
    bottom: 0;
}

.appreciation_certificate .certificate_inner .inner_content .certificate_body .b_content_left h4 {
    position: relative;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 19px;
    color: #E1B95A;
}

.appreciation_certificate .certificate_inner .inner_content .certificate_body .b_content_right {
    position: absolute;
    right: 30px;
    bottom: 0;
    display: flex;
    align-items: flex-end;
}

.appreciation_certificate .certificate_inner .inner_content .certificate_body .b_content_right .signature_sec {
    position: relative;
    padding-bottom: 25px;
    margin-right: 15px;
    display: flex;
    flex-direction: column;
    font-family: 'Roboto', sans-serif;
}

.appreciation_certificate .certificate_inner .inner_content .certificate_body .b_content_right .signature_sec p {
    position: relative;
    font-size: 20px;
    font-weight: 700;
    color: #E1B95A;
}

.appreciation_certificate .certificate_inner .inner_content .certificate_body .b_content_right .signature_sec p#founderName {
    font-size: 17px;
    margin-top: 5px;
}

.appreciation_certificate .certificate_inner .inner_content .certificate_body .b_content_right .signature_sec img {
    position: relative;
    width: 170px;
}

.appreciation_certificate .certificate_inner .inner_content .certificate_body .b_content_right h4 {
    position: relative;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 19px;
    color: #E1B95A;
}






/* ====================== POP UP ===================== */


/* --------------- Success --------------- */

.success_popup_wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    transform: scale(0);
    pointer-events: none;
    transition: all 0.5s;
}

.success_popup_wrapper.active {
    transform: scale(1);
    pointer-events: initial;
    transition: all 0.5s;
}

.success_popup_wrapper .success_popup {
    position: relative;
    width: 450px;
    height: 300px;
    padding: 30px 35px;
    background: #fff;
    box-shadow: 16px 20px 30px rgba(1, 148, 202, 0.281),
        -8px -9px 20px rgba(4, 151, 204, 0.281);
    border-radius: 20px;
}

.success_popup_wrapper .success_popup .popup_content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.success_popup_wrapper .success_popup .popup_content .icon {
    position: relative;
    width: 130px;
}

.success_popup_wrapper .success_popup .popup_content .icon img {
    position: relative;
    width: 100%;
}

.success_popup_wrapper .success_popup .popup_content .text {
    position: relative;
    margin-top: 15px;
}

.success_popup_wrapper .success_popup .popup_content .text p {
    position: relative;
    font-size: 16px;
    color: #4BB543;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
}

.success_popup_wrapper .success_popup .popup_content .btn_sec {
    position: relative;
    margin-top: 20px;
}

.success_popup_wrapper .success_popup .popup_content .btn_sec a {
    position: relative;
    width: 130px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: #009ED6;
    border: 2px solid #009ED6;
    color: #fff;
    font-family: 'Ubuntu', sans-serif;
    font-size: 15px;
    cursor: pointer;
    font-weight: 500;
    border-radius: 5px;
    transition: all 0.4s;
}

.success_popup_wrapper .success_popup .popup_content .btn_sec a:hover {
    background: #fff;
    color: #009ED6;
    transition: all 0.4s;
}




/* ---------------- Error --------------- */

.error_popup_wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    transform: scale(0);
    pointer-events: none;
    transition: all 0.5s;
}

.error_popup_wrapper.active {
    transform: scale(1);
    pointer-events: initial;
    transition: all 0.5s;
}


.error_popup_wrapper .error_popup {
    position: relative;
    width: 450px;
    padding: 30px 35px;
    background: #fff;
    box-shadow: 16px 20px 30px rgba(1, 148, 202, 0.281),
        -8px -9px 20px rgba(4, 151, 204, 0.281);
    border-radius: 20px;
}

.error_popup_wrapper .error_popup .popup_content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.error_popup_wrapper .error_popup .popup_content .icon {
    position: relative;
    width: 130px;
}

.error_popup_wrapper .error_popup .popup_content .icon img {
    position: relative;
    width: 100%;
}

.error_popup_wrapper .error_popup .popup_content .text {
    position: relative;
    margin-top: 15px;
}

.error_popup_wrapper .error_popup .popup_content .text p {
    position: relative;
    font-size: 16px;
    color: #F00;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
}

.error_popup_wrapper .error_popup .popup_content .btn_sec {
    position: relative;
    margin-top: 20px;
}

.error_popup_wrapper .error_popup .popup_content .btn_sec button {
    position: relative;
    width: 140px;
    height: 40px;
    background: #E5322D;
    border: none;
    color: #fff;
    font-family: 'Ubuntu', sans-serif;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    border-radius: 5px;
}


/* --------------- Warning --------------- */

.warning_popup_wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    transform: scale(0);
    pointer-events: none;
    transition: all 0.5s;
}

.warning_popup_wrapper.active {
    transform: scale(1);
    pointer-events: initial;
    transition: all 0.5s;
}

.warning_popup_wrapper .warning_popup {
    position: relative;
    width: 450px;
    height: 300px;
    padding: 30px 35px;
    background: #fff;
    box-shadow: 16px 20px 30px rgba(1, 148, 202, 0.281),
        -8px -9px 20px rgba(4, 151, 204, 0.281);
    border-radius: 20px;
}

.warning_popup_wrapper .warning_popup .close {
    position: absolute;
    top: 20px;
    right: 25px;

}

.warning_popup_wrapper .warning_popup .close a {
    position: relative;
    font-size: 19px;
    color: #333;
    cursor: pointer;
}

.warning_popup_wrapper .warning_popup .popup_content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.warning_popup_wrapper .warning_popup .popup_content .icon {
    position: relative;
    width: 100px;
}

.warning_popup_wrapper .warning_popup .popup_content .icon img {
    position: relative;
    width: 100%;
}

.warning_popup_wrapper .warning_popup .popup_content .text {
    position: relative;
    margin-top: 20px;
}

.warning_popup_wrapper .warning_popup .popup_content .text p {
    position: relative;
    font-size: 16px;
    color: #F00;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
}

.warning_popup_wrapper .warning_popup .popup_content .btn_sec {
    position: relative;
    width: 100%;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.warning_popup_wrapper .warning_popup .popup_content .btn_sec button {
    position: relative;
    width: 150px;
    height: 45px;
    border: none;
    font-size: 16px;
    color: #fff;
    cursor: pointer;
    font-weight: 500;
    border-radius: 5px;
    font-family: 'Ubuntu', sans-serif;
}

.warning_popup_wrapper .warning_popup .popup_content .btn_sec button:first-child {
    background: #4BB543;
    border: 2px solid #4BB543;
    transition: all 0.4s;
}

.warning_popup_wrapper .warning_popup .popup_content .btn_sec button:first-child:hover {
    background: #fff;
    color: #4BB543;
    transition: all 0.4s;
}

.warning_popup_wrapper .warning_popup .popup_content .btn_sec button:last-child {
    background: #009ED6;
    border: 2px solid #009ED6;
    transition: all 0.4s;
}

.warning_popup_wrapper .warning_popup .popup_content .btn_sec button:last-child:hover {
    background: #fff;
    color: #009ED6;
    transition: all 0.4s;
}


/* --------------- Image Upload --------------- */

.image_popup_wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    transform: scale(0);
    pointer-events: none;
    transition: all 0.5s;

}

.image_popup_wrapper.active {
    transform: scale(1);
    pointer-events: initial;
    transition: all 0.5s;
}

.image_popup_wrapper .image_popup {
    position: relative;
    width: 450px;
    padding: 35px;
    background: #fff;
    box-shadow: 16px 20px 30px rgba(1, 148, 202, 0.281),
        -8px -9px 20px rgba(4, 151, 204, 0.281);
    border-radius: 20px;
}

.image_popup_wrapper .image_popup .popup_content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.image_popup_wrapper .image_popup .popup_content .icon {
    position: relative;
    width: 170px;
    height: 170px;
    border: 3px solid #4BB543;
    border-radius: 50%;
    overflow: hidden;
}

.image_popup_wrapper .image_popup .popup_content .icon img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image_popup_wrapper .image_popup .popup_content .text {
    position: relative;
    margin-top: 20px;
}

.image_popup_wrapper .image_popup .popup_content .text p {
    position: relative;
    font-size: 16px;
    color: #444;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
}

.image_popup_wrapper .image_popup .popup_content .btn_sec {
    position: relative;
    width: 100%;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.image_popup_wrapper .image_popup .popup_content .btn_sec button {
    position: relative;
    width: 150px;
    height: 45px;
    border: none;
    font-size: 16px;
    color: #fff;
    cursor: pointer;
    font-weight: 500;
    border-radius: 5px;
    font-family: 'Ubuntu', sans-serif;
}

.image_popup_wrapper .image_popup .popup_content .btn_sec button:first-child {
    background: #E5322D;
    border: 2px solid #E5322D;
    transition: all 0.4s;
}

.image_popup_wrapper .image_popup .popup_content .btn_sec button:first-child:hover {
    background: #fff;
    color: #E5322D;
    transition: all 0.4s;
}

.image_popup_wrapper .image_popup .popup_content .btn_sec button:last-child {
    background: #009ED6;
    border: 2px solid #009ED6;
    transition: all 0.4s;
}

.image_popup_wrapper .image_popup .popup_content .btn_sec button:last-child:hover {
    background: #fff;
    color: #009ED6;
    transition: all 0.4s;
}


/* --------------- Edit Image --------------- */

.image_edit_popup_wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 990;
    transform: scale(0);
    pointer-events: none;
    transition: all 0.5s;
}

.image_edit_popup_wrapper.active {
    transform: scale(1);
    pointer-events: initial;
}

.image_edit_popup_wrapper .image_popup {
    position: relative;
    width: 650px;
    height: 360px;
    padding: 30px;
    background: #fff;
    box-shadow: 16px 20px 30px rgba(1, 148, 202, 0.281),
        -8px -9px 20px rgba(4, 151, 204, 0.281);
    border-radius: 20px;
}

.image_edit_popup_wrapper .image_popup .close_btn {
    position: absolute;
    top: 8px;
    right: 10px;
}


.image_edit_popup_wrapper .image_popup .popup_content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
}

.image_edit_popup_wrapper .image_popup .popup_content .content_left {
    position: relative;
    width: 300px;
    height: 300px;
    border: 2px solid #444;
    border-radius: 10px;
    overflow: hidden;
}

.image_edit_popup_wrapper .image_popup .popup_content .content_left img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image_edit_popup_wrapper .image_popup .popup_content .content_left {
    position: relative;
    width: 300px;
    height: 300px;
    border: 2px solid #000;
    border-radius: 10px;
}


.image_edit_popup_wrapper .image_popup .popup_content .content_right {
    position: relative;
    width: calc(100% - 300px);
    height: 100%;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
}

.image_edit_popup_wrapper .image_popup .popup_content .content_right .rotate_form {
    display: none;
}

.image_edit_popup_wrapper .image_popup .popup_content .content_right .upper_btns {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.image_edit_popup_wrapper .image_popup .popup_content .content_right .upper_btns button {
    position: relative;
    width: 100%;
    height: 40px;
    border-radius: 5px;
    font-size: 15px;
    font-family: 'Ubuntu', sans-serif;
    background: #E5322D;
    border: 2px solid #E5322D;
    color: #fff;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.4s;
}

.image_edit_popup_wrapper .image_popup .popup_content .content_right .upper_btns button i {
    font-size: 14px;
    margin-right: 5px;
}

.image_edit_popup_wrapper .image_popup .popup_content .content_right .upper_btns button:hover {
    color: #E5322D;
    background: #fff;
    transition: all 0.4s;
}


.image_edit_popup_wrapper .image_popup .popup_content .content_right .bottom_btns {
    position: relative;
    width: 100%;
    margin-top: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.image_edit_popup_wrapper .image_popup .popup_content .content_right .bottom_btns button {
    position: relative;
    font-size: 15px;
    font-family: 'Ubuntu', sans-serif;
    height: 40px;
    cursor: pointer;
    border-radius: 5px;
}

.image_edit_popup_wrapper .image_popup .popup_content .content_right .bottom_btns button:nth-child(1) {
    width: 100%;
    margin-bottom: 10px;
    color: #fff;
    background: #009ED6;
    border: 2px solid #009ED6;
    transition: all 0.4s;
}

.image_edit_popup_wrapper .image_popup .popup_content .content_right .bottom_btns button:nth-child(1):hover {
    color: #009ED6;
    background: #fff;
    transition: all 0.4s;
}

.image_edit_popup_wrapper .image_popup .popup_content .content_right .bottom_btns button:nth-child(2) {
    width: 48%;
    color: #fff;
    background: #4BB543;
    border: 2px solid #4BB543;
    transition: all 0.4s;
}

.image_edit_popup_wrapper .image_popup .popup_content .content_right .bottom_btns button:nth-child(2):hover {
    color: #4BB543;
    background: #fff;
    transition: all 0.4s;
}

.image_edit_popup_wrapper .image_popup .popup_content .content_right .bottom_btns button:nth-child(3) {
    width: 48%;
    color: #fff;
    background: #333;
    border: 2px solid #333;
    transition: all 0.4s;
}

.image_edit_popup_wrapper .image_popup .popup_content .content_right .bottom_btns button:nth-child(3):hover {
    color: #333;
    background: #fff;
    transition: all 0.4s;
}