/*
 ****** File name:      desktop_css.css
 ****** Created by:     Obed Kasule Ssebunya
 ****** Email:          obedkasule@gmail.com
 ****** Purpose:        Desktop display Css for ANT party
 ****** Date created:   2024-10-09
 ****** Version:        1.0.0
 */

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --bgColor: #fae6fc;
    --bgColorHex: 250, 230, 252;
    --colorSolid: #a21ccd;
    --colorSolidHex: 162, 28, 205;
    --colorOrange: #fb5a0a;
    --colorOrangeHex: 251, 90, 10;
    --colorRed: #db0707;
    --colorRedHex: 219, 7, 7;
    --colorSuccess: #02cf0c;
    --colorSuccessHex: 2, 207, 12;
    --colorFailure: #f20505;
    --colorFailureHex: 242, 5, 5;
}

body {
    box-sizing: border-box;
    padding: 0;
    margin: auto;
    font-family: Poppins;
    color: #000000;
    background-color: #fff;
}

a {
    text-decoration: none;
    text-transform: none;
    color: #000000;
}

.header_sec {
    position: relative;
}

.header_sec .mobile-menu {
    width: 85vw;
    height: 97vh;
    background: rgba( var(--colorSolidHex), 0.8 );
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1010;
    backdrop-filter: blur(6px);
    transition-property: width;
    animation: mob_menu_appear 1000ms;
}

.mob-menu-show {
    display: block;
}

.div-hide {
    display: none;
}

@keyframes mob_menu_appear {
    from {
        width: 0vw;
    }
    to {
        width: 85vw;
    }
}

.header_sec .mobile-menu #mob-menu-top {
    width: 100%;
    height: auto;
    padding: 10px;
    position: relative;
}

.header_sec .mobile-menu #mob-menu-top #mob-menu-img {
    position: relative;
    top: 10px;
    left: 30%;
}

.header_sec .mobile-menu #mob-menu-top img {
    width: 100px;
    height: 60px;
}

.header_sec .mobile-menu #mob-menu-top #mob-menu-close {
    position: absolute;
    top: 10px;
    right: 50px;
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
}

.header_sec .mobile-menu div li {
    padding: 10px;
    list-style-type: none;
    border-bottom: 2px solid var(--colorOrange);
}

.header_sec .mobile-menu div li a {
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
}


.top_div {
    width: 100%;
    display: flex;
    padding: 2px 0 2px 0;
    background: rgba( var( --bgColorHex ), .85);
    position: absolute;
    left: 0;
    top: 0;
    z-index: 102;
}

.top_div #logo_div {
    width: 40%;
    height: 70px;
    display: flex;
}

.top_div #logo_div #ant_logo {
    display: inline-block;
    height: 100%;
    padding: 10px 25px 0px 40px;
    border-right: 2px solid var( --colorSolid );
}

.top_div #logo_div #ant_logo a {
    height: 100%;
    background-image: url("../images/ant_logo.png");
}

.top_div #logo_div #ant_words {
    display: inline-block;
    height: 100%;
    color: var( --colorSolid );
    font-weight: 600;
    font-size: 17px;
    align-items: center;
    text-align: left;
    padding: 15px 10px 10px 20px;
}

.top_div #links_div {
    width: 50%;
    align-items: center;
    text-align: center;
}

.top_div #social_div {
    width: 25%;
    align-items: center;
    text-align: center;
}

.top_div #logo_div img {
    width: 80px;
    height: 55px;
}

.top_div #links_div div {

    margin: 6px 0px;
}

.top_div #links_div div button {

    background: #db0707;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    padding: 10px;
    text-align: center;
    width: 120px;
    border: none;
    border-radius: 5px;
    margin-right: 10px;
    display: inline-block;
    cursor: pointer;

}

.top_div #links_div div button:hover {
    color: #f2eded;
}

.top_div #links_div nav a {

    margin-right: 20px;
    font-size: 18px;
}


.top_div #links_div nav a:hover {

    font-weight: 500;
}

.top_div #social_div span,
footer .footer_more #social_div span {
    margin: 10px 1px;
    width: 38px;
    border: #db0707 1px solid;
    border-radius: 49%;
    padding: 6px 0px 4px 0px;
    text-align: center;
    display: inline-block;
    cursor: pointer;
}

.top_div #social_div b {
    font-size: 12px;
}

.top_div #social_div span img, footer .footer_more #social_div span img {
    width: 14px;
    height: 14px;
}

.top_div #mob_menu {
    display: none;
}


/*
 *========view for status like registration==============
 */
.status_view {
    width: 100%;
    height: 40px;
    border: 1px solid #089c28;
    border-radius: 10px;
    background-color: #d0f7d9;
    text-align: center;
    position: absolute;
    left: 0;
    top: 90px;
    z-index: 102;
}

.header_sec .header_pic {
    width: 100%;
    height: 700px;
    background-image: url("../images/header_pic_current.jpeg");
    background-repeat: no-repeat;
    background-size: 100%; /*100% 500px;*/
    background-position: left 0 top -150px;
    position: relative;
    left: 0;
    top: 0;
}

.header_sec .header_pic .top_action {
    position: absolute;
    top: 35%;
    right: 10px;
    display: flex;
}

.header_sec .header_pic .top_action .action_btn {
    padding: 20px 15px;
    color: #ffffff;
    font-weight: 500;
    font-size: 16px;
}

.header_sec .header_pic .top_action #action_donate {
    border-right: 1px solid #ffffff;
}

.header_sec .header_pic .top_action .action_btn a {
    display: block;
    width: 200px;
    padding: auto 20px;
    text-align: center;
    color: var( --colorOrange );
    font-size: 20px;
    font-weight: 600;
    border-radius: 20px;
    border: 2px solid var( --colorOrange );
}

.header_sec .header_pic .top_action .action_btn #btn_donate {
/*     background: var( --colorOrange ); */
    border: 2px solid var( --colorOrange );
}



.header_sec .details_view {
    height: 300px !important;
}

.header_sec .header_cover {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    z-index: 100;
    content: '';
    /*background: #000000;*/
    background-image: linear-gradient(to right, rgba(var(--colorSolidHex), 0.3), rgba(0, 0, 0, 0));
}

.header_sec .header_text {
    width: 35%;
    height: auto;
    position: absolute;
    top: 40%;
    left: 100px;
    display: flex;
    flex-direction: column;
    text-align: center;
    background:  rgba(var(--colorSolidHex), 0.3);
    padding-top: 9px;
    color: #ffffff;
    z-index:1001;
}

.header_sec .header_text #header_title {
    font-size: 30px;
    font-weight: 500;
}

.header_sec .header_text #sub_title {
    font-size: 18px;
}

/*
 *============fail status handler=========
 */

#failure_status {
    color: red;
    width: 100%;
    background-color: var(--bgColor);
    border: 1px solid red;
    border-left: 10px solid var(--colorSolid);
    font-size: 15px;
    font-weight: 400;
    padding: 10px 10px;
    border-radius: 5px;
}

/*
 * Css for registration modal
 */
.reg_modal {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1005;
    text-align: center;
    display: none;
    animation: appear 2s;
    backdrop-filter: blur(2px);
}

.modal_show {
    opacity: 1;
    display: block;
}

.reg_modal_show {
    opacity: 1;
    display: block;
}

.reg_modal .reg_modal_bg {
    width: 100%;
    height: 100%;
    opacity: .6;
    content: '';
    background-color: #000;
    z-index: 1010;
}

.reg_modal .reg_modal_form {
    position: absolute;
    top: 0;
    left: 0;
    margin-left: 25%;
    margin-top: 10%;
    padding-bottom: 20px;
    width: 50%;
    /*height: auto;*/
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1020;
    border-radius: 15px;
    height: 70%;
    overflow: scroll;
    scrollbar-color: #d142f5;
    scrollbar-width: auto;
}

.reg_modal .reg_modal_form #reg_header {
    margin-top: 5px;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
}

.reg_modal .reg_modal_form #reg_header img {
    width: 180px;
    height: 120px;
}

.reg_modal .reg_modal_form #reg_header span {
    font-weight: bold;
    font-size: 22px;
    margin-top: 10px;
}

.reg_modal .reg_modal_form #reg_header #modal_close {
    Position: absolute;
    right: 20px;
    top: 10px;
    font-size: 20px;
    cursor: pointer;

}

.reg_modal .reg_modal_form .reg_form_div {
    margin-top: 10px;
    text-align: left;
    width: 100%;
}

.reg_modal .reg_modal_form .reg_form_div form {
    text-align: left;
    width: 100%;
    margin: 20px;
}

.reg_modal .reg_modal_form .reg_form_div form .reg_form_section{
    display: flex;
    flex-direction: column;
    align-items: left;
    text-align: left;
    margin-top: 7px;
}

.reg_modal .reg_modal_form .reg_form_div form .reg_form_section input,
.reg_modal .reg_modal_form .reg_form_div form .reg_form_section select{
        width:40%;
        height: 25px;
        border: 2px solid #d142f5;
        border-radius: 10px;
        display: inline-block;
        outline: none;
        font-size: 16px;
        font-weight: bolder;
        color: #a4a6a5;
        padding: 3px 5px;
}

.reg_modal .reg_modal_form .reg_form_div form div label{
    font-weight: bold;
}

.reg_modal .reg_modal_form .reg_form_div form .reg_form_section span {
    color: red;
}

.reg_modal .reg_modal_form .reg_form_div form #reg_form_btns{
    margin-top: 20px;
}

.reg_modal .reg_modal_form .reg_form_div form div button{
    width: 30%;
    height: 45px;
    border: none;
    border-radius: 30px;
    font-size: 20px;
    font-weight: bolder;
    transition: background 1s;
}

.reg_modal .reg_modal_form .reg_form_div form #reg_form_btns .submit_btn {
    color: #34cceb;
}

.reg_modal .reg_modal_form .reg_form_div form #reg_form_btns .submit_btn:hover {
    color: #ffffff;
    background-color: #069c09;
}

..reg_modal .reg_modal_form .reg_form_div form #reg_form_btns .cancel_btn {
    color: #eb3d34;
}

.reg_modal .reg_modal_form .reg_form_div form #reg_form_btns .cancel_btn:hover {
    background-color: #eb3d34;
    color: #ffffff;
}


/*=========css for login modal ===================*/
.modal_admin {
    position: absolute;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1000;
    text-align: center;
    /*display: none;*/
    animation: appear 2s;
    backdrop-filter: blur(3px);
}

.modal_show {
    opacity: 1;
    display: block;
}
.modal_admin .modal_bg {
    width: 100%;
    height: 100%;
    opacity: .6;
    content: '';
    background-color: #000;
    z-index: 1010;
}


.modal_admin .admin_sign_modal {
    position: absolute;
    top: 0;
    left: 0;
    margin-left: 25%;
    margin-top: 10%;
    padding-bottom: 20px;
    width: 50%;
    height: auto;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1020;
    border-radius: 15px;
}


.modal_admin .login_text {
    margin: 30px 0;
    font-size: 25px;
    font-weight: bold;
}

.modal_admin .admin_sign_modal .form_div {
    width: 100%;
    display: flex;
    margin: 10px 10px 10px 20px;
    justify-content: center;
    align-items: center;
}

.modal_admin .admin_sign_modal .form_div .form_left {
    margin: 20px 5px;
    width: 40%;
    font-weight: 400;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #a903fc;
    font-size: 21px;
    text-align: center;
}

#login_image img {
    width: 200px;
    height: 130px;
    margin-top: 10px;
}

.modal_admin .admin_sign_modal .form_div form {
    width: 40%;
    padding: 20px 40px;
    border-left: 1px solid #a505f5;
    display: flex;
    flex-direction: column;
    gap: 5px;
}


.modal_admin .admin_sign_modal form .form_section {
    width: 100%;
    height: 45px;
    border: 1px solid #a505f5; /*#2294d6;*/
    border-radius: 30px;
    text-align: left;
}

.modal_admin .admin_sign_modal form .form_section span {
    width:20%;
    display: inline-block;
    background-color: #fae6fc;
    height: 100%;
    border-radius: 30px 0 0 30px;
    text-align: center;
}


.modal_admin .admin_sign_modal form .form_section img {
    width: 35px;
    height: 35px;
}


.modal_admin .admin_sign_modal form .form_section input {
        width:70%;
        display: inline-block;
        border: none;
        outline: none;
        font-size: 16px;
        font-weight: bolder;
        color: #a4a6a5;
}

.modal_admin .admin_sign_modal form div .form_btn {
    width: 49%;
    height: 45px;
    border: none;
    border-radius: 30px;
    font-size: 20px;
    font-weight: bolder;
    transition: background 200ms;
}

.modal_admin .admin_sign_modal form div .submit_btn {
    color: #34cceb;
}

.modal_admin .admin_sign_modal form div .submit_btn:hover {
    color: #ffffff;
    background-color: #069c09;
}

.modal_admin .admin_sign_modal form div .cancel_btn {
    color: #eb3d34;
}

.modal_admin .admin_sign_modal form div .cancel_btn:hover {
    background-color: #eb3d34;
    color: #ffffff;
}
@keyframes appear {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
/*========== end of css for login modal===========*/

/*
 * ==========css for other pages
 */
.image_top {
    background-image: url("../images/top_image1.jpeg");
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 500px;
    position: relative;
}

.image_top #image_header {
    background-color: rgba( var(--bgColorHex ), 0.3);
    width: 500px;
    height:200px;
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    margin:auto;
}

.top_sub_menu {
    width: 60%;
    height: 100px;
    margin: auto auto;
    background-color: rgba(var(--bgColorHex), 0.9);
    color: var(--colorSolid);
    border: 1px solid var(--colorSolid);
    display: flex;
    border-radius: 5px;
    text-align: center;
    position: absolute;
    bottom: -50px;
    left: 20%;
    z-index: 1000;
}



.top_sub_menu a {
    height: 100%;
    width: 100%;
    color: var(--colorSolid);
    text-align: center;
    font-size: 22px;
    font-weight: 600;
    margin: auto;
    transition-property: color background;
    transition-duration: 500ms;
}

.top_sub_menu a span {
    display: inline-block;
    width: 100%;
    height: 70%;
    margin-top: 4%;
    border-right: 1px solid var(--colorSolid);
    line-height: 75px;
    text-align: center;
}
#link_1 {
    color: #ffffff;
    background: var(--colorSolid);
}

#link_2 {
    background: #ffffff;
    color: #000000;
}

#link_3 {
    color: #ffffff;
    background: var(--colorOrange);
}

.top_sub_menu a:hover {
    color: #edece8;
    background: rgba( var(--colorSolidHex), 0.6 );
}

/*
 * ==========content section
 */

.page_content {
    margin: 10px 10px 15px 10px;
    position: relative;
}

.home_content {
    margin: 0;
    padding: 40px 40px;
    height: auto;
    background: rgba( var( --colorSolidHex), 0.08 );
}

.party_statement {
    /*background: rgba( var(--colorSolidHex), 0.6 );*/
    height: 500px;
    position: relative;
}

.party_statement .header {
    position: absolute;
    top: 10px;
    left: 20px;
    color: #ffffff;
    font-weight: 500;
    font-size: 28px;
    margin-left: 100px;
}

.party_statement .activities {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
}

.party_statement .activities #left_act {
    display: inline-block;
    height: 500px;
    background: url("../images/left_act.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    flex-grow: 1;
    position: relative;
    transition: all 300ms ease-in;
}

.party_statement .activities #miduro_act {
    display: inline-block;
    height: 500px;
    background: url("../images/miduro_act.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    flex-grow: 1;
    position: relative;

}

.party_statement .activities #right_act {
    display: inline-block;
    height: 500px;
    background: url("../images/right_act.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    flex-grow: 1;
    position: relative;
}

.party_statement .activities #left_act:hover {
    background-size: scale(1.2);
}


.party_statement .activities #left_act div, .party_statement .activities #miduro_act div, .party_statement .activities #right_act div {
    position: absolute;
    bottom: 0;
    left: 0;
    background-image: linear-gradient(  rgba(0, 0, 0, 0), rgba(var(--colorSolidHex), .8) );
    width: 100%;
    height: 30%;
    color: #ffffff;
    font-size: 20px;
    font-weight: 400;
    text-align: center;
}

.party_statement .activities #left_act a, .party_statement .activities #miduro_act a, .party_statement .activities #right_act a {
    width: 200px;
    height: 40px;
    position: absolute;
    bottom: 30px;
    right: 50px;
    background: #ffffff;
    color: var(--colorSolid);
    font-size: 19px;
    font-weight: 500;
    border-radius: 20px;
    line-height: 40px;
    text-align: center;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    transition-property: font-weight box-shadow;
    transition-duration: 300ms;
}

.party_statement .activities #left_act a:hover, .party_statement .activities #miduro_act a:hover, .party_statement .activities #right_act a:hover {
    font-weight: 700;
    box-shadow: none;

}


.page_content #content_header, .home_content #content_header,  .news_content #content_header {
    width: 19%;
    height: 40px;
    background: var(--bgColor);
    color: var(--colorSolid);
    font-size: 23px;
    font-weight: 500;
    padding: 5px;
}

.page_content .content_summary {
    width: 400px;
    position: absolute;
    right: 100px;
    top: 100px;
    background: var( --bgColor );
    padding: 5px 25px;
    border-radius: 15px 15px 0 0;
}

.page_content .content_summary #header {
    display: inline-block;
    width: 300px;
    margin-top: 20px;
    font-size: 20px;
    font-weight: 600;
}

.page_content .content_summary #core_summary p {
    padding: 20px 15px 20px 25px;
    border-top: 2px solid var( --colorOrange );
    border-bottom: 1px solid var( --colorOrange );
}

.page_content .content_detail {
    padding: 15px 150px 15px 120px;
    border-top: 2px solid var(--colorSolid);
    margin: auto auto 50px auto;
}

.page_content .content_detail #policy_pic {
    width: 800px;
    height: 1000px;
    content: '';
    background-image: url('../images/agenda2.png');
    background-repeat: no-repeat;
    background-size: 100%;
}

.page_content .content_detail  h3{
    font-size: 20px;
}

.page_content .content_detail p {
    width: 1000px;
    margin: -30px 200px;
    padding-bottom: 50px;
    font-size: 16px;
    line-height: 25px;
}
.home_content .content_detail {
    width: 80%;
    margin: auto;
    display: flex;
    flex-direction: row;
    /*border-top: 2px solid var(--colorSolid);*/
    padding: 30px 15px 25px 10px;
    justify-content: space-between;
    background: #ffffff;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
/*     border: 1px solid var( --colorSolid ); */
}

.home_content .content_detail .content {
    display: flex;
    width: 80%;
    justify-content: space-around;
    border-right: 1px solid var( --colorSolid );
}

.home_content .content_detail .content_links {
    margin: 50px auto;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.home_content .content_detail .content_links a {
    width: 95%;
    background: var( --colorRed );
    padding: 15px;
    color: #ffffff;
    height: auto;
    list-style-type: none;
    margin-top: 40px;
    border: none;
    border-radius: .5rem;
    font-size: 18px;
    font-weight: 500;
}

/*.home_content .content_detail .content_links li a {
    width: 100%;
    height: 100%;
    padding: 20px;

}*/


.home_content .content_detail .content .latest_word #heading {
    color: var(--colorSolid );
    font-size: 22px;
    font-weight: 500;
}

.home_content .content_detail .content .latest_word #the_details {
    font-size: 17px;
}

.home_content .content_detail .content .main_img, .home_content .content_detail .latest_word {
    width: 45%;
    height: auto;
/*     overflow: hidden; */
}

.home_content .content_detail .content .main_img {
    width: 500px;
    height: 450px;
/*     background-image: url( '{% static "ant_default/images/mm.png"" %}' ); */
    background-size: cover;
/*     box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); */
}

/*.home_content .content_detail .main_img img {
    width: 600px;
    height: 500px;
}*/

/*
 * ============links section on home page
 */
.home_links {
    display: flex;
    flex-direction: row;
    justify-content: center;
    height: 100px;
    background: rgba( var(--colorOrangeHex), 0.2);
    align-items: center;
}

.home_links a{
    flex-grow: 1;
    height: 100%;
    text-align: center;
    font-size: 20px;
    font-weight: 400;
    transition-property: background color;
    transition-duration: 500ms;
}

.home_links a span{
    width: 100%;
    height: 70%;
    display: inline-block;
    line-height: 70px;
    text-align: center;
    margin-top: 5%;
    border-right: 1px solid var(--colorSolid);
}

.home_links a:hover {
    background: rgba( var(--colorOrangeHex), 0.8);
    color: #ffffff;
}

/*
 * ============section quote
 */
.party_quote {
    height: 300px;
    background: rgba( var(--colorSolidHex), 0.1 );
    padding: 50px 10px;
    position: relative;
}

.party_quote .quoting {
    width: 80%;
    height: 60%;
    margin: 10px auto;
    background: #ffffff;
    border-left: 20px solid var(--colorSolid);
    border-radius: 5px;
    box-shadow: 3px 6px 10px 2px rgba(0, 0, 0, 0.2), 2px 8px 23px 2px rgba(0, 0, 0, 0.19);
    padding: 10px 20px 5px 40px;
    font-weight: 500;
    font-size: 15px;
    color: var(--colorSolid);
}

.party_quote #quote_action {
    position: absolute;
    bottom: 40px;
    right: 50px;
    display: flex;
}

.party_quote #quote_action div {
    width: 200px;
    color: #ffffff;
    padding: 10px;
    display: inline-block;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    transition: box-shadow 200ms ease;
}

.party_quote #quote_action div:nth-child(1) {
    background: var(--colorSolid);
    border-radius: 10px 0 0 10px;

}

.party_quote #quote_action div:nth-child(2) {
    background: #ffffff;
    color: var(--colorSolid);
    border-radius: 0 10px 10px 0;
    cursor: pointer;

}

.party_quote #quote_action div:hover {
    box-shadow: none;
}

/*
 * ============= section for big photo
 */
.photo_news {
    height: 600px;
    margin-top: 0px;
    background-image: url('../images/Arua_campaigns.jpeg');
    background-size: cover;
    position: relative;
}

.photo_news #photo_cover {
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to right, rgba(var(--colorSolidHex), 1), rgba(0, 0, 0, 0));
    content: '';
    z-index: 100;
}

.photo_news #photo_header {
    color: #ffffff;
    position: absolute;
    left: 20px;
    top: 20px;
    font-size: 52px;
    font-weight: 300;
}

.photo_news .photo_news_list {
    position: absolute;
    left: 60px;
    bottom: 50px;
    display: flex;
    flex-direction: row;
}

.photo_news .photo_news_list .news_item {
    padding: 15px;
    display: flex;
    flex-direction: column;
    margin: 20px;
    border-top: 0.5px solid var( --colorOrange );
    border-bottom: 5px solid var( --colorOrange );
}

.photo_news #news_header {
    color: #ffffff;
    font-size: 25px;
    font-weight: 500;
    text-transform: capitalize;
}

.photo_news #news_exerpt {
    color: #ffffff;
    font-size: 16px;
    width: 600px;
    height: 150px;
    overflow: hidden;
    text-align: justify;
    font-weight: 400;
}

.photo_news #news_exerpt a {
    padding: 5px 30px;
    text-align: center;
    border: 1px solid #ffffff;
    border-radius: 25px;
    margin-bottom: 10px;
}

.photo_news #press_re {
    position: absolute;
    bottom: 50px;
    right: 50px;
    width: 200px;
    height: 40px;
    background: var(--colorOrange);
    text-align: center;
    border-radius: 10px;
    font-weight: 500;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    transition-property: box-shadow color;
    transition-duration: 300ms;
}

.photo_news #press_re a {
    width: 100%;
    height: 100%;
    line-height: 40px;
    text-align: center;
    padding: 30px;
    color: #ffffff;
}

.photo_news #press_re:hover {
    box-shadow: none;
    color: #e0e0e0;
}

/*
 * ************* lisitng for articles ************
 */

/* ============== css for posts card divisions ===================== */
.main_content_top {
    height: auto;
    display: flex;
}

.main_content_top .main_content_div {
    width: 70%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    padding: 15px 0px 15px 5px;
    border-right: 1px solid var( --colorSolid );
    margin: 20px 10px 15px 20px;
}

.main_content_top .main_content_div #cat_header {
    font-weight: 500;
    font-size: 20px;
}

.main_content_top .main_content_div #cat_name {
    font-size: 18px;
    padding-left: 20px;
}

.main_content_top .main_content_div .card_div {
    width: 48%;
    height: auto;
    margin: 15px 10px 15px 5px;
    display: flex;
    transition-duration: 500ms;
}

.main_content_top .main_content_div .card_div:hover {

    box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);

}

.main_content_top .main_content_div .card_div .card_content {
    width: 49%;
    height: auto;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.main_content_top .main_content_div .card_div .card_content #heading {
    background: rgba( 256, 256, 256, .75 );
    position: absolute;
    bottom: 0;
    left: 0;
    width:100%;
    height: auto;
    padding: 5px;
    font-weight: 600;
    font-size: 18px;

}

.main_content_top .main_content_div .card_div .wordings {
    width: 47%;
    text-align: justify;
    padding: 5px 0 8px 5px;
    font-size: 16px;
}

.main_content_top .main_content_div .card_div .wordings #read_article {
    width: 100%;
    text-align: right;
    margin-bottom: 5px;
}

.main_content_top .main_content_div .card_div .wordings .card_footer{
    font-weight: bold;
    font-size: 14px;
}

.main_content_top .main_content_div .card_div .wordings a {
    width: 180px;
    padding: 7px 20px;
    text-align: center;
    color: #ffffff;
    background: var( --colorSolid );
    font-size: 13px;
    border-radius: 8px;
}

/* ============== End card divisions ===================== */

/*================= lists for posts =============== */
 .main_content_top .post_list {
    width: 28%;
    display: flex;
    flex-direction: column;
}

 .main_content_top .post_list #viewed_header {
     font-size: 20px;
     font-weight: 500;
     color: var( --colorSolid );
}

.main_content_top .post_list a #most_viewed #viewed_photo {
    transition: all .2s;
}

.main_content_top .post_list a:hover  #most_viewed #viewed_photo {
    transform: scale( 1.2 )
}

.main_content_top .post_list #most_viewed {
    width: 90%;
    display: flex;
    flex-direction: row;
    margin: 5px auto;
}

.main_content_top .post_list #most_viewed #viewed_photo {
    width: 50px;
    height: 40px;
    background-size: 100%;
}

.main_content_top .post_list #most_viewed #viewed_details {
    margin: auto 10px;
}

.main_content_top .post_list #most_viewed #viewed_details #viewed_title {
    font-size: 13px;
    font-weight: 500;
}

.main_content_top .post_list #video_frame {
    width: 90%;
}

.main_content_top .main_content_div #video_frame {
    display: flex;
    flex-direction: column;
    margin-right: 20px;
    margin-bottom: 25px;
}

.main_content_top .main_content_div #video_frame iframe {
    width: 400px;
    height: 250px
}

.main_content_top .post_list #video_frame iframe {
    width: 100%;
    height: 250px;
}

/*
 * ********* designs for new or article diplays**********************
 */
.news_list_sec {
    width: 80%;
    height: auto;
    margin: auto;
}
.news_list_sec .news_sec_header {
    font-weight: 500;
    font-size: 18px;
}

.news_list_sec {

}

/*
 * ****** search for articles
 */
.article_search {
    position: relative;
}

.article_search #header_search {
    Position: absolute;
    right: 20px;
}


/*
 * ==========operation status==================
 */
.op_status_success {
    width: 60%;
    height: 50px;
    margin: 50px auto;
    text-align: center;
    background: rgba( var(--colorSuccessHex), 0.1 );
    border: 1px solid var(--colorSuccess);
    border-radius: 6px;
}

.op_status_failure {
    width: 60%;
    height: 50px;
    margin: 50px auto;
    text-align: center;
    background: rgba( var(--colorFailureHex), 0.1 );
    border: 1px solid var(--colorFailure);
    border-radius: 6px;
}

.op_status_success #success_op {
    width: 100%;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-left: 15px solid var(--colorSuccess);
}

.op_status_failure #failure_op {
    width: 100%;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-left: 15px solid var(--colorFailure);
}

.op_status_success #success_op span:nth-child(1), .op_status_failure #failure_op span:nth-child(1){
    font-weight: 600;
}

.op_status_success #success_op span:nth-child(2) {
    color: var(--colorSuccess);
    font-weight: 600;
}

.op_status_failure #failure_op span:nth-child(2){
    color: var(--colorFailure);
    font-weight: 600;
}

/*
 * ***********single article or reading
 */
.article_content {
    width: 75%;
    margin: 70px auto;
}

.article_content #article_head {
    width: 100%;
    height: auto;
    text-align: center;
}

.article_content #article_head .heading {
    font-size: 40px;
    font-weight:500;
    text-transform: capitalize;

}

.article_content #article_head .art_pic {
    width: 100%;
    height: 600px;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
}

.article_content #article_head .art_pic span{
    width: 100%;
    position: absolute;
    bottom: -20px;
    left: 0;
    font-size: 13px;
}

.article_content #article_head #art_category {
    margin-top: 30px;
    text-align: left;
}

.article_content #article_head #art_category button {
    color: #fff;
    font-weight: 600;
    font-size: 13px;
    background: var( --colorSolid );
    border: none;
    border-radius: .5rem;
    margin: 10px;
    padding: 10px 30px;
}

.article_content .art_content #art_exerpt {
    padding: 30px 200px;
    color: rgba( var( --colorSolidHex ), .9 );
    background: rgba( var( --colorOrangeHex ), .1 );
    font-size: 22px;
}

.article_content .art_content #para {
    text-align: left ;
}

.main_content_top .main_article_div {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    height: auto;
    margin: 20px;

}

.main_content_top .main_article_div #article_frame {
    position: relative;
    padding: 10px 20px;
    margin: 20px;
    width: 350px;
    box-shadow: 20px 10px 30px rgba( 0, 0, 0, 0.5 );
    border-top: 1px solid var(--colorSolid );
    border-left: 1px solid var(--colorSolid );
    border-radius: 10px;
}

.main_content_top .main_article_div #article_frame #article_photo {
    width: 100%;
    height: 200px;
    content: "";
    background-image: url( "../images/ant_logo.png" );
    background-size: 70%;
    background-repeat: no-repeat;
}


.main_content_top .main_article_div #article_frame #article {

    font-weight: 500;
}
/*
 * ======footer section
 */
footer {
    height: auto;
    background-color: var( --bgColor );
    border-top: 1px solid #ffffff;
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 10px 20px;
}

footer .footer_div {
    width: 25%;
}

footer .footer_more {
    width: 46%;
}

footer .footer_div .footer_logo {
    background-image: url( '../images/ant_logo.png' );
    background-repeat: no-repeat;
    background-size: 40%;
    background-position: center;
    height: 200px;
}

footer .footer_div #footer_header, footer .footer_more #footer_header {
    color: var( --colorSolid );/*#9033ff;/*#8d3fea; /*#760df5;/*#9033ff;*/
    font-size: 20px;
    font-weight: 600;
    display: flex;
    flex-direction: column;
}

footer .footer_div #footer_header  span img{
    width: 140px;
    height: 80px;
}

footer .footer_div div #e_span {
    font-weight: bold;
    margin-right: 30px;
    /*color: #a505f5;*/
}

footer .footer_div #f_contact {
    width: 100%;
}

footer .footer_div #f_contact #f_detail {
    display: inline-block;
    font-weight: 600;
    width: 30%;
    margin-right: 10px;
}

footer .footer_div #f_contact a {
    width: 380px;
    height: 45px;
    display: block;
    margin-top: 10px;
    border: 1px solid var(--colorSolid);
    border-radius: 50px;
    line-height: 45px;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
}


footer .footer_div #f_contact #f_more {
    width: 60%;
    text-align: left;
}

footer .footer_more #other_links {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-content: space-between;
}

footer .footer_more #other_links #link_list {
    width: 40%;
    text-decoration: none;
    list-style-type: none;
}

footer .footer_more #header_search, .article_search #header_search  {
    width: 658.5px;
    height: 35px;
    margin-top: 5px;
    padding: 0px 0px 0px 10px;
    border: 1px solid #8d3fea; /*#2294d6;*/
    border-radius: 30px;
}

footer .footer_more #header_search #search_form, .article_search #header_search #search_form {
    width: 100%;
}

footer .footer_more #header_search #search_input, .article_search #header_search #search_input {
    width: 500px;
    font-size: 20px;
    border: 0px;

}

footer .footer_more #header_search #search_input:focus {
    outline: none;
}

footer .footer_more #header_search #search_form button, .article_search #header_search #search_form button {
    width: 150px;
    height: 37px;
    background-color: #a21ccd;
    border: 1px solid #a21ccd;
    border-radius: 0px 30px 30px 0px;
    font-size: 18px;
    font-weight: bold;
    color: #ffffff;
    text-align: center;
    cursor: pointer;

}

.bottom_footer {
    height:auto;
    padding: 5px;
    background: var(--colorSolid);
    color: #ffffff;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
}

