h1,
h3,
h4,
h5,
h2{
    padding: 0px !important;
    margin: 0px !important;
}
.hero {
    width: 100%;
    height: 400px;
    /* position: absolute;
    top: 0px;
    left: 0px; */
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 100px;
    border-bottom: 1px solid #333;
}
/* v2 */
.hero:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    background: url(../img/hero-back.png) repeat center center, linear-gradient(to bottom, #1d1d1d, rgba(0, 0, 0, 0.322));
    background-size: 500px;
    background-attachment: fixed;
    z-index: -1;
}

.hero:after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    /* background: linear-gradient(to bottom, #000000, #00000052); */
    background: linear-gradient(to bottom, #16a24952, #00000052);

    z-index: -1;
}

.hero .container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 10;
    padding: 16px;
}
.hero .logo-bx{
    /* width: 400px; */
    /* height: auto; */
    /* animation: logoShine 3s ease-in-out infinite; */
}
.hero .logo-bx img{
    width: 300px;
    height: auto;
    animation: logoShine 3s ease-in-out infinite;
}

@keyframes logoShine {
    0%, 100% { 
    filter: brightness(1) drop-shadow(0 0 0px rgba(255, 138, 3, 0));
    }
    50% { 
    filter: brightness(1.2) drop-shadow(0 0 15px #16a249a1);
    }
}

.hero h1.title {
    font-size: 32px;
    text-align: center;
    padding-top: 8px !important;
    color: #dfdfdf;
}


@media (max-width: 950px) {
    .hero {
        height: 300px;
    }
    .hero:before {
        background-size: 100% !important;
    }
    .hero h1.title {
        font-size: 28px;
    }
}



/*  */
.main-content-section{
    width: 100%;
    padding: 80px 16px 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column nowrap;
    background: radial-gradient(circle at center, #16a24952 0%, #16a24933 40%, #000000 100%);
    /* background: linear-gradient(to bottom, #16a249af, #00000052); */
}
.main-content-section .cont{
    width: 100%;
    max-width: 1350px;
    display: flex;
    align-items: center;
    flex-flow: column nowrap;
}
.main-content-section .cont .row{
    width: 100%;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid #333;
    padding-bottom: 16px;
}
.controller-btns-row{
    width: 100%;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    gap: 6px;
    padding-bottom: 8px;
    min-height: 50px;
    box-sizing: border-box;
}
aside .controller-btns-row .btn-ele{
    width: calc(50%);
    display: flex;
}
.controller-btns-row .btn-ele a{
    width: 100%;
    text-align: center;
    padding: 8px 16px;
    border: 1px solid #16A249;
    color: #16A249;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    text-decoration: none !important;
}
.controller-btns-row .btn-ele a.active{
    background: #16A249;
    color: #000;
}

.form-g {
    /* padding: 10px; */
    padding: 10px 0px;
    border-radius: 8px;
    display: flex;
    width: 100%;
    max-width: 450px;
    margin: auto;
    flex-flow: column;
}

.form-g input {
    width: 100%;
    padding: 10px 14px;
    border: 2px solid #333;
    border-radius: 6px;
    background-color: #161616;
    color: #fff;
    color: #918f8f;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s ease;
}

.form-g input:focus {
    border-color: #16A249;
    outline: none;
}





.main-content-section .content-box{
    width: 100%;
    padding: 60px 0px 0px;
}
.main-content-section .content-box .head .main{
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    gap: 12px;
}
.main-content-section .content-box .head .main .lin{
    width: 40px;
    height: 1px;
    background-color: #16A249;
}
.main-content-section .content-box .head h2{
    font-size: 36px;
    font-weight: 400;
}
.main-content-section .content-box .head .subtitle{
    color: #ccc;
    padding-left: 52px;
}


@media (max-width: 950px) {
    .main-content-section{
        width: 100%;
        padding: 80px 16px;
    }
    .hero .logo-bx{
        width: 280px;
        
    }
}

.main-content-section .content-bx{
    min-height: 350px;
    padding: 24px 0px 90px;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    /* align-items: center; */
    gap: 16px;
}

/* Blogs & News Content */
.card-article {
    width: 100%;
    /* max-width: 300px; */
    max-width: 492px;
    padding: 16px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    color: #fff;
    border: 1px solid #333;
    transition: all 300ms ease;
    flex: 1 1 calc(50% - 16px);
    min-width: 280px;
    box-sizing: border-box;
}

.card-article:hover {
    transform: scale(1.03);
}

.card-article .bx-main {
    z-index: 10;
    display: flex;
    height: 100%;
    flex-flow: column nowrap;
}

.card-article .f-row {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 24px;
}

.card-article .f-row.end {
    justify-content: flex-end;
}

.card-article .f-row.last {
    padding-bottom: 0px;
    padding-top: 4px;
    margin-top: auto;
}

.card-article .author,
.card-article .rtime {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.card-article .date {
    font-style: italic;
    color: #16A249;
}

.card-article .f-row .icn {
    width: 18px;
    margin-bottom: 1px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-article .sp-unq {
    padding: 4px 16px;
    border: 1px solid #333;
    background-color: #33333363;
    border-radius: 20px;
    color: #b9b9b9;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    letter-spacing: 0.9px;
}

.card-article .sp-txt {
    font-size: 14px;
}

.card-article .bx-back {
    width: 100%;
    height: 100%;
    position: absolute;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    top: 0px;
    left: 0px;
    z-index: -1;
}

.card-article .bx-back::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 1;
    background: radial-gradient(circle, #00000000 0%, #000000 90%);
}

.card-article .bx-back::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 1;
    background: #00000048;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    transition: all 300ms ease;
}
.card-article:hover .bx-back::after {
    background: #000000ad;
}
.card-article .c-row .tit {
    font-size: 18px !important;
    font-weight: bold;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    padding-bottom: 6px;
    padding-top: 60px;
}

.card-article .c-row .desc h2{
    background-image: unset !important;
    font-size: 14px !important;
    -webkit-text-fill-color: unset !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    color: #c5c5c5 !important;
    font-weight: normal !important;
}

.card-article .c-row .desc {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #d1d1d1;
    font-size: 14px !important;
    max-height: 57px;
    overflow: hidden;
    background: linear-gradient(to bottom, white 0%, rgba(255, 255, 255, 0) 55px) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}
.card-article .c-row .desc main,
.card-article .c-row .desc section,
.card-article .c-row .desc li,
.card-article .c-row .desc ul,
.card-article .c-row .desc div,
.card-article .c-row .desc button,
.card-article .c-row .desc span,
.card-article .c-row .desc a,
.card-article .c-row .desc p,
.card-article .c-row .desc h6,
.card-article .c-row .desc h5,
.card-article .c-row .desc h4,
.card-article .c-row .desc h3,
.card-article .c-row .desc h2,
.card-article .c-row .desc h1{
    font-size: 14px !important;
    font-weight: normal !important;
}
.card-article .card-link {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 100;
    cursor: pointer;
}

.unq-col {
    color: #16A249;
}

#searchResultsBox {
  scrollbar-width: thin;
  scrollbar-color:  #16A249 #161616;
}
#searchResultsBox::-webkit-scrollbar {
  width: 8px;
}
#searchResultsBox::-webkit-scrollbar-track {
  background: #161616;
}
#searchResultsBox::-webkit-scrollbar-thumb {
  background-color: #16A249;
  border-radius: 10px;
}
.search-result-item{
    color: #c7c7c7;
    transition: all 300ms ease-out;
}
.search-result-item:hover{
    color: #16A249;
}
@media (max-width: 786px){
    .card-article {
        min-width: 100%;
        max-width: 100%;
    }
    .card-article .c-row .desc {
        display: -webkit-box;
        -webkit-line-clamp: 2;
    }
}

body.ar .main-content-section,
body.ar .nav-menu{
    direction: rtl;
}
body.ar .main-content-section .content-box .head .subtitle {
    padding-left: 0px;
    padding-right: 52px;
    padding-top: 7px;
    font-size: 18px;
}
#qr-popup-modal h2,
#qr-popup-modal p,
body.ar #qr-popup-modal h2,
body.ar #qr-popup-modal p{
    text-align: center !important;
}

body.ar #qr-popup-modal h2{
    padding-bottom: 10px !important;
}

.midcontent{
    width: 100%;
    display: flex;
    flex-flow: row nowrap;
}

.midcontent aside{
    width: 500px;
    padding: 60px 16px 20px 0px;
    min-width: 400px;
    display: flex;
}
.midcontent aside .contbx{
    width: 100%;
    border-right: 1px solid #ffffff3d;
    padding-right: 16px;
}

.breadcrumb_nav.all{
    padding: 0px 0px 24px;
    font-size: 18px !important;
    color: #16A249;
}
.breadcrumb_nav.all .cont{
    width: 100%;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    gap: 10px;
}
.breadcrumb_nav.all a{
    color: #737373;
    color: #e7e7e7;
    text-decoration: none !important;
    transition: all 300ms ease;
}
.breadcrumb_nav.all a:hover{
    color: #16A249;
}
.card-custom{
    width: 100%;
    border: 1px solid #333;
    background-color: #161616;
    padding: 24px 10px;
    border-radius: 12px;
}

.newsletter{
    border: 1px solid #333;
    background-color: #161616;
    padding: 24px 10px;
    border-radius: 12px;
    margin-top: 34px;
}
.newsletter .head{
    text-align: center;
}
.newsletter .head .tit{
    font-size: 24px;
    color: #d1d1d1;
    padding-bottom: 8px;
}
.newsletter .head .para{
    color: #d1d1d1;
}
.btn-st-1{
    margin-top: 10px;
    color: #16A249 !important;
    background-color: #161616 !important;
    border-color: #16A249 !important;
    cursor: pointer;
    transition: all 300ms ease !important;
}
.btn-st-1:hover{
    background-color: #16A249 !important;
    border-color: #16A249 !important;
    color: #161616 !important;
}

.download-card{
    border: 1px solid #333;
    background-color: #161616;
    padding: 24px 10px;
    border-radius: 12px;
    margin-top: 34px;
}
.download-card .tit{
    text-align: center;
    font-size: 24px;
    color: #d1d1d1;
    padding-bottom: 8px;
}
.download-card .d-row{
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
}
.download-card .d-row .d-btn{
    width: calc(50%);
    border: 2px solid #333;
    border-radius: 8px;
    transition: all 300ms ease;
}
.download-card .d-row .d-btn:hover{
    border: 2px solid #16A249;
}
.download-card .d-row .d-btn a {
    padding: 12px;
    font-size: 24px;
    color: #e7e7e7;
    text-decoration: none !important;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    gap: 8px;
}
.download-card .d-row .d-btn a .icn{
    color: #16A249;
}
.download-card .d-row .d-btn a .txt {
    font-size: 16px;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    color: #16A249;
}
.social-card{
    border: 1px solid #333;
    background-color: #161616;
    padding: 24px 10px;
    border-radius: 12px;
    margin-top: 34px;
}
.social-card .tit{
    text-align: center;
    font-size: 24px;
    color: #d1d1d1;
    padding-bottom: 8px;
}
.social-card .d-row{
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}
.social-card .d-row a{
    font-size: 24px;
    color: #737373;
    transition: all 300ms ease;
}
.social-card .d-row a:hover{
    color: #16A249;
}
.icn-flep i{
    transform: rotate(180deg);
    display: inline-block;
}
.body.ar .midcontent aside {
    padding: 60px 0px 20px 16px;
}
.body.ar .midcontent aside .contbx {
    border-right: 0px !important;
    border-left: 1px solid #333;
    padding-right: 0px;
    padding-left: 16px;
}
@media (max-width: 950px) {
    .midcontent{
        flex-flow: column nowrap;
    }
    .body.ar .midcontent aside,
    .midcontent aside{
        width: 100%;
        padding: 0px;
    }
    .body.ar .midcontent aside .contbx {
        border-right: 0px !important;
        border-left: 0px !important;
        padding-right: 0px;
        padding-left: 0px;
    }
    .midcontent aside .contbx{
        border-right: 0px;
        padding-right: 0px;
    }
    .social-card{
        display: none;
    }
    .controller-btns-row .btn-ele{
        max-width: 150px;
    }
    .download-card .d-row{
        justify-content: center;
    }
    .download-card .d-row .d-btn {
        max-width: 150px;
    }
    .midcontent aside{
        min-width: 100% !important;
    }
    .main-content-section .content-box .head h2 {
        font-size: 28px;
    }
}


body.ar{
    direction: rtl !important;
}