@import url(styles.css);

/* Start Fonts */

@font-face {
    font-family: "ARIAL";
    src: url(../fonts/ARIAL.TTF);
}

@font-face {
    font-family: "ARIAL-Light";
    src: url(../fonts/ARIALLGT.TTF);
}

@font-face {
    font-family: "ARIAL-Med";
    src: url(../fonts/ArialMdm.ttf);
}

@font-face {
    font-family: "ARIAL-Bold";
    src: url(../fonts/ARIALBD.TTF);
}

/* End Fonts */

:root {
    --main-color: #2ECC71;
    --sec-color: #2abc67;
    --dark-color: #112A46;
    --bg-color: #F5F5F5;
}

* {
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: #000;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

a:hover {
    text-decoration: none;
    color: var(--sec-color);
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

a:focus {
    text-decoration: none;
    /* color: inherit; */
}

button,
button:hover {
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

body {
    padding: 0;
    margin: 0;
    font-family: "ARIAL";
    background: #fff;
    text-align: start;
}

section,
footer {
    /* overflow: hidden; */
    position: relative;
}

p {
    margin: 0;
    font-size: 15px;
    line-height: 25px;
}

ul {
    padding: 0;
    margin: 0;
    display: block;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

li {
    display: block;
    list-style: none;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

iframe {
    width: 100%;
    height: 100%;
}

.padding {
    padding: 0 !important;
}

img {
    max-width: 100%;
}

input,
button,
input:focus,
button:focus,
input:active,
button:active,
button:hover,
textarea:active,
textarea:focus,
select,
select:active,
select:focus {
    outline: none !important;
}

textarea {
    resize: none;
}

main {
    overflow: hidden;
    /* position: relative; */
    /* min-height: 100vh; */
}

.owl-carousel {
    direction: ltr;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    text-transform: capitalize;
}

/* Start Loading */

.loader {
    position: fixed;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 999999999999999999999999999999;
    background: #fff;
    transition: all .5s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader .loader-inner {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
}

.loader .loader-inner img {
    max-width: 250px;
}


/* End Loading */


/* Start Not-found */

.not-found .not-found-pro {
    max-width: 500px;
    margin: auto;
    text-align: center;
}

.not-found .not-found-pro img {
    max-height: 400px;
}

.not-found .not-found-pro h2 {
    font-size: 30px;
    color: var(--dark-color);
    font-weight: bold;
}

.not-found .not-found-pro h4 {
    margin: 15px 0;
    font-size: 20px;
    color: #777;
}

.not-found .not-found-pro p {
    margin: 25px 0 15px;
    font-size: 14px;
    color: #777;
    /* font-weight: bold; */
    position: relative;
}

.not-found .not-found-pro .btn.go-home {
    padding: 0;
    line-height: normal;
    min-height: auto;
    background: transparent;
    color: var(--sec-color);
    font-size: 20px;
    text-decoration: underline;
    margin: 0 auto;
}

.not-found .not-found-pro p::after {
    content: "";
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    border-bottom: 1px #f1f1f1 solid;
    margin: auto;
    width: 100%;
    bottom: 0;
    height: 1px;
    z-index: -2;
}

.not-found .not-found-pro p::before {
    content: "";
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    width: 30px;
    height: 30px;
    background: #fff;
    border-radius: 50%;
    margin: auto;
    z-index: -1;
    border: 1px #f1f1f1 solid;
}

.not-found.not-found-404 .not-found-pro h2 {
    margin: 20px 0;
}


/* End Not-found */

/* Start Sidebar */

.cursor {
    opacity: 0;
    transition: all .5s;
    display: none;
}

.mobile-menu {
    position: fixed;
    right: -100%;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    min-width: 33.3vw;
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 30.1px;
    padding-bottom: 53.1px;
    z-index: 999999;
    opacity: 0;
    transition: all .3s;
    background: var(--main-color);
}

.menu-backdrop {
    position: fixed;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: -10;
    opacity: 0;
    transition: all .3s;
}

.mobile-menu .menu-box {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    /* align-items: center; */
    /* -webkit-align-items: center; */
}

.mobile-menu .menu-box .navigation li {
    margin: 27px 0;
}

.mobile-menu .menu-box .navigation li a {
    font-size: 20px;
    color: #FFFFFF;
    line-height: 30px;
    display: block;
    text-transform: capitalize;
}


/* End Sidebar */

/* Start Header */

.head-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    -webkit-align-items: center;
    -webkit-box-align: center;
}

header.sticky {
    position: relative;
    z-index: 3;
    right: 0;
    left: 0;
    top: 0;
    width: 100%;
    padding: 0;
    transition: all .2s ease-in-out;
}

.head-inner .logo a {
    width: 11.478124999999999vw;
    display: block;
    /* max-width: 11.478124999999999vw; */
}

.menu-right .mobile-nav-toggler {
    width: 45px;
    height: 45px;
    /* UI Properties */
    background: var(--sec-color);
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-align-items: center;
    color: #fff;
    position: relative;
    border-radius: 10px;
}

.menu-right .mobile-nav-toggler .lines {
    display: block;
    width: 22px;
    overflow: hidden;
    top: 0;
    position: relative;
    margin: auto;
}

.menu-right .mobile-nav-toggler .lines i {
    display: block;
    width: 1.4rem;
    height: 2px;
    /* background: var(--main-color); */
    margin: 6px 0;
    transition: all .5s;
    position: relative;
}

body.mobile-menu-visible {
    overflow: hidden;
    /* background: var(--main-color); */
}

body.mobile-menu-visible .ScrollSmoother-wrapper {
    transform: scale(.8) translateX(32vw) translateZ(0) !important;
    height: 100vh;
}

.mobile-menu .close-btn {
    width: 50px;
    height: 50px;
    /* UI Properties */
    background: #FFFFFF 0% 0% no-repeat padding-box;
    border: 1px solid #FFFFFF;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    display: flex;
    -webkit-align-items: center;
    -webkit-box-align: center;
    position: relative;
    top: 0;
    margin: 0;
    bottom: 0;
    font-size: 22px;
    color: var(--sec-color);
    z-index: 9;
    margin-inline-start: auto;
}

.ScrollSmoother-wrapper {
    transition: all .5s;
}

body.mobile-menu-visible .mobile-menu {
    opacity: 1;
    width: 100vw;
    right: 0;
}

.menu-right .mobile-nav-toggler .lines ::after,
.menu-right .mobile-nav-toggler .lines ::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background: #fff;
    transition: all .5s;
    top: 0;
}

.menu-right .mobile-nav-toggler .lines ::after {
    transform: translateX(-50px);
    transition: all .3s;
}

.menu-right .mobile-nav-toggler:hover .lines ::after {
    transform: none;
}

.menu-right .mobile-nav-toggler:hover .lines ::before {
    transform: translateX(50px);
}

.menu-right .mobile-nav-toggler .lines .line2::after {
    transition: all .5s;
}

.menu-right .mobile-nav-toggler .lines .line3::after {
    transition: all .7s;
}

.nav-menu ul {
    display: flex;
    /* margin: 64px 0 0; */
    gap: 0 76px;
}

.nav-menu ul li a {
    text-transform: capitalize;
    color: var(--dark-color);
    transition: all .4s;
    font-size: 16px;
    font-family: 'ARIAL-Bold';
    line-height: 1.4;
    display: inline-block;
}

.nav-menu ul li {
    position: relative;
}

.nav-menu ul li .sub-menu {
    position: absolute;
    display: block;
    min-width: 220px;
    top: 100%;
    clip-path: polygon(0 0, 100% 0%, 100% 0%, 0 0);
    transition: .3s ease-out;
    /* transition-delay: 0.2s; */
    overflow: hidden;
    padding: 17px 18px;
    background: #FFFFFF;
    border-radius: 0;
    border: none;
}

.nav-menu ul li:hover .sub-menu {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.item-res-menu {
    display: none ;
}

.nav-menu ul li .sub-menu li a {
    margin: 0;
    padding: 6.5px 0;
    position: relative;
    overflow: hidden;
    display: block;
    color: var(--dark-color);
    font-size: 16px;
    font-weight: 400;
    line-height: 18.96px;
}

.nav-menu ul li .sub-menu li:last-child a {
    padding-bottom: 0;
    border: none;
}

.nav-menu ul li .sub-menu li a::before {
    display: none;
    content: "\f355";
    font-family: 'Font Awesome 6 Pro';
    font-weight: bold;
    position: absolute;
    top: 0;
    font-size: 13.64px;
    top: 47%;
    transform: translateY(-50%) translateX(15px);
    transition: all .3s;
    overflow: hidden;
    right: 0;
    opacity: 0;
}

.nav-menu ul li .sub-menu li a:hover {
    /* padding-inline-start: 14px; */
    color: var(--main-color);
}

.nav-menu ul li .sub-menu li a:hover::before {
    transform: translateY(-50%) translateX(0);
    opacity: 1;
}

.lang-h a {
    color: #fff;
    display: flex;
    flex-direction: row-reverse;
    font-size: 18px;
    line-height: 28px;
}

.lang-h a i {
    line-height: 27px;
    margin-inline-start: 8px;
}

.lang-h a span {
    text-decoration: underline;
}

.lang-h a:hover {
    color: var(--main-color);
}

.nav-menu ul li.current-menu-item a,
.nav-menu ul li a:hover {
    color: var(--sec-color);
}

.nav-menu ul li a::before {
    margin: 0 auto;
    /* content: ""; */
    position: absolute;
    right: 0;
    left: 0;
    width: 1px;
    height: 0;
    top: -5px;
    background: var(--main-color);
    transition: all .5s;
}

.nav-menu ul li.current-menu-item a::before {
    height: 40px;
}

.menu-right {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    /* margin: 57px 0 0; */
    gap: 48px;
}

.search-box-btn.search-box-outer {
    cursor: pointer;
    width: 28px;
    margin: 0;
    color: #fff;
    height: 28px;
    line-height: 28px;
    text-align: center;
}

.menu-right .img-2030 {
    margin: 0 28px;
    max-width: 44.41px;
}

.lang-h {
    color: #fff;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    line-height: 30px;
    text-transform: capitalize;
    font-size: 1.40625vw;
    font-weight: 500;
    line-height: 24px;
}

.nav-menu ul li .sub-menu li {
    margin: 0;
    padding: 0;
}

.lang-h i {
    color: #777777;
    font-weight: 300;
}

.head-inner .logo a img {
    width: 100%;
}

.header-top::after {
    content: "";
    background: url(../images/bg-header.jpg) center;
    background-size: cover;
    opacity: .3;
    position: absolute;
    inset: 0;
    z-index: -1;
}

.head-top-inner {
    display: flex;
    justify-content: flex-end;
    gap: 21px;
}

.header-top .row {
    align-items: center;
    -webkit-align-items: center;
}

.head-top-inner a {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    gap: 8px;
    color: var(--dark-color);
    font-size: 20px;
    font-family: 'ARIAL-Bold';
    line-height: 23px;
}

.head-top-inner a i {
    font-size: 22px;
}

.header-med {
    box-shadow: 0px 4px 4px 0px #00000040;
    padding: 21px 0;
    border: 0.5px solid #848484;
    transition: all .3s ease-in-out;
}

.header-top {
    position: relative;
    transition: all .3s ease-in-out;
}

.head-top-inner a:hover {
    color: var(--sec-color);
}

/* End Header */

/* Start Search-h */

.overlay-img {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.overlay-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.search-inner {
    position: relative;
    padding: 37px;
}

.search-inner .overlay-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--main-color);
    opacity: .5;
}

.search-inner .search-h {
    max-width: 320px;
    margin: 0 auto;
}

.search-inner .search-h form {
    position: relative;
}

.search-inner .search-h input {
    width: 100%;
    height: 56px;
    border-radius: 10px;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    padding: 0 11px;
    font-size: 14px;
    font-weight: 400;
    line-height: 23px;
    color: var(--dark-color);
}

.search-inner .search-h input::placeholder {
    color: #848484;
}

.search-inner .search-h button {
    position: absolute;
    right: 11px;
    top: 0;
    bottom: 0;
    padding: 0;
    border: none !important;
    background: none !important;
    outline: none !important;
    box-shadow: none !important;
    font-size: 16px;
    color: #848484;
}

/* End Search-h */

/* Start Banner-h */

.banner-h {
    padding: 48px 0;
}

.img-banner {
    height: 294px;
    max-width: 290px;
}

.img-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left center;
}

.block-banner {
    position: relative;
    height: 294px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 4px 4px 0px #2ECC7140;
    padding: 59px 16px;
    text-align: center;
}

.block-banner .text-block h3 {
    font-family: 'ARIAL-Bold';
    font-size: 16px;
    color: #000;
    line-height: 23px;
    margin-bottom: 32px;
}

.block-banner .text-block a {
    font-family: 'ARIAL-Bold';
    font-size: 20px;
    display: inline-block;
    line-height: 2;
    text-decoration: underline;
    color: var(--main-color);
}

.text-banner h1 {
    font-family: 'ARIAL-Bold';
    font-size: 24px;
    color: var(--dark-color);
    line-height: 27.6px;
    margin-bottom: 4px;
}

.text-banner {
    max-width: 316px;
}

.list-banner ul li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    -webkit-align-items: center;
    margin: 4px 0;
    padding: 8px;
    font-size: 16px;
    font-weight: 400;
    line-height: 18.4px;
    background: #F5F5F5;
    border-radius: 5px;
    color: var(--dark-color);
}

.list-banner ul li:nth-child(even) {
    /* padding: 8px 0; */
    background: transparent;
}

/* End Banner-h */

/* Start Artical-h */

.artical-h {
    padding: 6px 0 20px;
}

.title {
    margin-bottom: 32px;
    border-bottom: 1px solid #84848480;
    padding-bottom: 24px;
}

.title h2 {
    font-family: 'ARIAL-Bold';
    font-size: 24px;
    color: var(--dark-color);
    line-height: 27.6px;
    margin: 0;
}

.all-articals .slick-list {
    margin-left: -7px;
    margin-right: -7px;
}

.all-articals .item {
    padding: 0 7px;
    height: auto;
}

.artical-block {
    box-shadow: 0px 35px 25px 0px #040B140A;
    margin-bottom: 50px;
    height: auto !important;
}

.link-block {
    position: absolute;
    inset: 0;
    z-index: 2;
}

.artical-block .img-block {
    height: 326px;
    overflow: hidden;
}

.artical-block .img-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all .5s ease-in-out;
}

.artical-block:hover .img-block img {
    transform: scale(1.2) rotate(-2deg);
}

.artical-block .details {
    padding: 21px 24px;
}

.artical-block .details .details-inner h3 {
    font-family: 'ARIAL-Bold';
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 18.4px;
    color: var(--dark-color);
    transition: all .4s;
}

.artical-block .details .details-inner p {
    color: #969AA0;
    font-size: 14px;
    line-height: 16.1px;
    margin: 24px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    /* number of lines to show */
    line-clamp: 3;
    -webkit-box-orient: vertical;
    max-width: 338.16px;
}

.artical-block .details .details-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    -webkit-align-items: center;
}

.readMore {
    display: block;
    color: var(--main-color);
    border-bottom: 1px var(--main-color) solid;
    font-size: 14px;
    font-weight: 400;
    line-height: 18.4px;
    padding: 0px;
    margin: 5px 0px;

}

.date-h {
    color: var(--dark-color);
    font-size: 14px;
    font-weight: 400;
    line-height: 16.1px;
}

.artical-block:hover .details .details-inner h3 {
    color: var(--sec-color);
}

/* End Artical-h */

/* Start Current-h */

.current-block {
    margin: 0 0 25px;
    box-shadow: 0px 4px 4px 0px #2ECC7140;
    border-radius: 5px;
    overflow: hidden;
    border-inline-start: 4px var(--main-color) solid;
    padding: 24px 16px;
    max-width: 884px;
}

.current-block .name {
    display: block;
    font-family: 'ARIAL-Bold';
    font-size: 20px;
    color: var(--dark-color);
    line-height: 23px;
    margin-bottom: 24px;
}

.current-block p {
    font-family: 'ARIAL-Bold';
    font-size: 16px;
    line-height: 26px;
    color: #848484;
}

.current-block .foot-block {
    display: flex;
    margin-top: 15px;
    align-items: center;
    -webkit-align-items: center;
    gap: 44px;
}

.down-pdf {
    display: inline-flex;
    align-items: center;
    -webkit-align-items: center;
    font-family: 'ARIAL-Bold';
    font-size: 16px;
    color: #000;
    line-height: 23px;
    gap: 4px;
}

.down-pdf .icon {
    max-width: 25px;
}

.more-h {
    text-align: center;
    margin-top: 42px;
}

.showMore {
    display: inline-flex;
    border-radius: 10px;
    border-bottom: 1px solid var(--main-color);
    padding: 16px;
    font-family: 'ARIAL-Bold';
    font-size: 20px;
    color: var(--main-color);
    line-height: 23px;
}

.showMore:hover {
    background: var(--sec-color);
    color: #fff;
}

.current-h {
    padding-bottom: 47px;
}

.sidebar-items .sidebar-title {
    background: var(--sec-color);
    border-radius: 10px;
    padding: 9px 11px;
}

.sidebar-items .sidebar-title h3 {
    margin: 0;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    color: #fff;
    gap: 6px;
    font-size: 20px;
    font-weight: 400;
    line-height: 25px;
}

.sidebar-items .sidebar-title h3 i {
    font-size: 17.42px;
    position: relative;
    top: 1px;
}

.sidebar-items .sidebar-list {
    margin: 16px 0 35px;
}

.sidebar-items .sidebar-list ul li a {
    display: block;
    border: 1px solid #2ECC7133;
    margin: 8px 0;
    background: #F5F5F5;
    border-radius: 10px;
    padding: 12px 20px;
    color: var(--dark-color);
    font-size: 14px;
    font-weight: 400;
    line-height: 18.4px;
    text-transform: capitalize;
    transition: all .4s ease-in-out;
}

.sidebar-items .sidebar-list ul li a:hover {
    background: var(--main-color);
    color: #fff;
}

.sidebar-items .sidebar-list ul li a span {
    display: block;
    font-size: 14px;
    font-weight: 400;
    line-height: 18.4px;
    color: var(--sec-color);
    margin-bottom: 8px;
}

/* End Current-h */

/* Start Footer */

footer {
    background: var(--sec-color);
    padding: 46px 0;
}

.foot-col h3 {
    font-family: 'ARIAL-Bold';
    font-size: 20px;
    color: #fff;
    line-height: 23px;
    margin-bottom: 13px;
}

.foot-col .link-f li a {
    display: flex;
    color: #fff;
    margin-bottom: 19px;
    font-size: 16px;
    font-weight: 400;
    line-height: 18.4px;
}

.foot-col .link-f li a::before {
    content: "\f39b";
    font-family: 'Font Awesome 6 Pro';
    font-weight: 300;
    font-size: 22px;
    margin-inline-end: 24px;
}

.foot-col .link-f li:last-child a {
    margin: 0;
}

.letterNews p {
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    line-height: 32.4px;
    letter-spacing: -0.01em;
    margin-bottom: 24px;
}

.letterNews .letter-form form {
    position: relative;
}

.letter-form {
    max-width: 396px;
}

.letterNews .letter-form form input {
    width: 100%;
    height: 54px;
    padding: 0 74px;
    border-radius: 10px;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.letterNews .letter-form form .icon {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: 4px 8px;
    width: 44.46px;
    height: 44.46px;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #EBEDF0;
    font-size: 18.08px;
    color: #000;
}

.letterNews .letter-form form button {
    position: absolute;
    right: 0;
    top: 0;
    margin: 10px 8px;
    background: #EBEDF0;
    border-radius: 10px;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    padding: 8px;
    font-size: 16px;
    font-weight: 400;
    line-height: 18.4px;
    text-align: left;
}

.pages-h a {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    margin-top: 25px;
    color: #fff;
    gap: 12px;
    font-family: 'ARIAL-Bold';
    font-size: 20px;
    line-height: 23px;
}

.pages-h a .icon {
    width: 26px;
}

.s-h {
    display: flex;
    flex-wrap: wrap;
    margin-top: 16px;
    gap: 10px;
}

.s-h a {
    display: flex;
    width: 32px;
    height: 32px;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
}

.foot-col .link-f li a:hover {
    color: var(--dark-color);
}

.sidebar-items .sidebar-list ul li a:hover span {
    color: #fff;
}

.current-block:hover .name {
    color: var(--sec-color);
}

header.sticky.active .header-med {
    position: fixed;
    right: 0;
    left: 0;
    top: 0;
    background: #fff;
    transition: all .3s ease-in-out;
}

.head-inner .logo {
    display: none;
}

.all-articals .slick-list .slick-track {
    display: flex;
}

.logo a {
    display: block;
}

.logo a img {
    max-height: 100px;
}

.down-pdf .icon svg {
    width: 100%;
}

.current-block .foot-block .readMore {
    font-size: 20px;
    line-height: 23px;
}

@media (min-width: 1200px) {
    .container {
        max-width: 1240px;
    }
}

/* End Footer */

/* Start Login-page */

.login-page {
    padding: 168px 0 137px;
}

.login-page .row {
    align-items: center;
    -webkit-align-items: center;
}

.login-img {
    max-width: 415px;
    margin-inline-start: auto;
    /* height: 522px; */
}

.form-h h1 {
    color: var(--main-color);
    font-size: 32px;
    font-family: 'ARIAL-Bold';
    line-height: 36.8px;
    margin-bottom: 24px;
}

.form-h .form-group {
    margin-top: 24px;
}

.form-h .form-group label {
    font-family: 'ARIAL-Bold';
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 18.4px;
}

.form-h .form-group .form-control {
    border: 1px solid #848484;
    height: 48px;
    border-radius: 10px;
    padding: 14px 16px;
    font-size: 14px;
    font-weight: 400;
    line-height: 16.1px;
    transition: all .4s;
}

.form-h .form-group .form-control::placeholder {
    color: #848484;
    transition: all .4s;
}

.form-h .form-group .form-control:focus {
    border-color: var(--main-color);
    box-shadow: none;
}

.form-h .form-group .form-control:focus::placeholder {
    transform: translateX(20px);
    opacity: 0;
}

.btn-form {
    width: 100%;
    margin: 8px 0;
}

.btn {
    background: var(--main-color);
    height: 48px;
    border-radius: 10px;
    color: #fff;
    font-family: 'ARIAL-Bold';
    font-size: 20px;
    line-height: 23px;
    text-transform: capitalize;
    text-align: center;
    box-shadow: none !important;
    outline: none !important;
}

.form-or {
    color: #857171;
    margin: 24px 0;
    font-family: 'ARIAL-Bold';
    font-size: 20px;
    line-height: 23px;
    text-align: center;
}

.login-account {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 8px 0;
    height: 48px;
    border-radius: 10px;
    border: 1px solid var(--dark-color);
    font-size: 14px;
    line-height: 23px;
    text-transform: capitalize;
    text-align: center;
    gap: 8px;
    text-transform: capitalize;
    color: var(--dark-color);
}

.dont-acc , .forgot-password {
    margin-top: 74px;
    display: block;
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 16.1px;
    color: #848484;
}

.forgot-password{
    margin-top: 10px;
}

.btn:hover {
    background: var(--sec-color);
    color: #fff;
}

.agree-h {
    margin-top: 21px;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
}

.agree-h input {
    width: 23px;
    height: 23px;
    border: 1px solid #848484;
    accent-color: var(--main-clor);
}

.agree-h span {
    width: calc(100% - 23px);
    padding-inline-start: 42px;
    color: #848484;
    font-size: 14px;
    font-weight: 400;
    line-height: 16.1px;
}

.agree-h span a {
    display: block;
    color: inherit;
}

.agree-h span a:hover {
    color: var(--main-color);
}

.req-form .login-account {
    max-width: 284px;
    margin: 8px auto 0;
}

/* End Login-page */

/* Start Articlas-page */

.body-inner {
    padding: 65px 0;
}

.breadcrumb {
    margin: 0;
    padding-top: 64px;
}

.text-bread ul {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    flex-wrap: wrap;
}

.text-bread ul li a,
.text-bread ul li span {
    font-family: 'ARIAL-Bold';
    font-size: 20px;
    font-weight: 700;
    line-height: 23px;
    color: var(--dark-color);
}

.text-bread ul li a::after {
    content: '/';
    margin: 0 8px;
    color: var(--dark-color);
}

.text-bread ul li:first-child a {
    color: var(--main-color);
}

.all-pages {
    display: flex;
    justify-content: flex-end;
    margin-top: 14px;
}

.all-pages .next-page {
    display: inline-flex;
    align-items: center;
    -webkit-align-items: center;
    font-family: 'ARIAL-Bold';
    font-size: 20px;
    color: var(--main-color);
    line-height: 23px;
    text-align: center;
}

.all-pages .next-page span {
    min-width: 61.98px;
    margin-inline-end: 2px;
}

.all-pages .next-page i {
    width: 22.5px;
    height: 22.5px;
    background: var(--main-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: all .4s;
}

.all-pages .next-page:hover i {
    transform: translateX(6px);
}

/* End Articlas-page */

/* Start Profile-page */

.text-banner.text-profile {
    max-width: 601px;
}

.text-banner.text-profile .list-banner ul li {
    padding: 15px 8px;
}

.text-banner.text-profile .list-banner ul li span,
.text-banner.text-profile .list-banner ul li strong {
    width: 50%;
    flex: 0 0 50%;
}

.text-profile .btns-flex {
    margin-top: 53px;
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.text-profile .btns-flex .btn {
    align-items: center;
    display: inline-flex;
    -webkit-align-items: center;
    justify-content: center;
    padding: 16px;
    gap: 16px;
    min-height: 56px;
}

.btn-red {
    background: #DD2025CC;
}

.profile-btn .btn {
    display: inline-flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 16px;
    min-height: 56px;
}

.profile-btn {
    display: flex;
    justify-content: flex-end;
}

.head-top-inner .user-name .icon {
    width: 48px;
    height: 48px;
    overflow: hidden;
    border-radius: 50%;
}

.head-top-inner .user-name .icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.head-top-inner .user-name {
    gap: 8px;
    font-size: 14px;
    font-weight: 400;
    line-height: 16.1px;
    color: #000;
    margin-inline-end: 11px;
}

/* End Profile-page */

/* Start Incomplete-page */

.incomplete-page.body-inner {
    padding-top: 32px;
}

.incomplete-info {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    background: #2ECC7166;
    max-width: 714px;
    padding: 10px 16px;
    border-radius: 10px;
    gap: 8px;
    color: var(--dark-color);
    font-size: 20px;
    font-weight: 400;
    line-height: 23px;
    min-height: 54px;
}

.incomplete-info i {
    font-size: 28.67px;
    color: var(--main-color);
    font-weight: 300;
}

.incomplete-info a {
    color: inherit;
    font-family: 'ARIAL-Bold';
}

.incomplete-inner .incomplete-info {
    margin-bottom: 25px;
}

.table-h {
    max-width: 1053px;
}

.table-h table {
    width: 100%;
}

.table-h table th,
.table-h table td {
    border: 1px solid var(--main-color);
    background: #F5F5F5;
    /* text-align: center; */
    padding: 22px 15px;
}

.table-h table th {
    color: #000;
    font-size: 20px;
    font-weight: 400;
    line-height: 23px;
}

.table-h table td {
    color: #000;
    font-size: 14px;
    font-weight: 400;
    line-height: 16.1px;
}

.table-h table tr td:nth-child(1) {
    font-size: 20px;
    line-height: 23px;
}

.table-h table td a {
    color: #DD2025;
}

.table-h table tr th:nth-child(1),
.table-h table tr td:nth-child(1) {
    padding: 22px 30px;
}

button.btn-delete {
    display: table;
    margin: 0 auto;
    padding: 0;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    background: none !important;
    font-size: 19.5px;
    color: #DD2025CC;
}

/* End Incomplete-page */

/* Start Authors-page */

.sidebar-right.sidebar-author {
    max-width: 472px;
}

.sidebar-right.sidebar-author .sidebar-items .sidebar-title {
    background: #2ECC7166;
    border-inline-start: 3px solid var(--main-color);
    padding: 18px 16px;
}

.sidebar-right.sidebar-author .sidebar-items .sidebar-title h3 {
    color: var(--dark-color);
    font-size: 16px;
    line-height: 18.4px;
    font-family: 'ARIAL-Bold';
}

.sidebar-right.sidebar-author .sidebar-items .sidebar-list ul li a {
    display: flex;
    border: 1px solid #2ECC7133;
    padding: 13px 32px;
    align-items: center;
    -webkit-align-items: center;
    justify-content: space-between;
}

.sidebar-right.sidebar-author .sidebar-items .sidebar-list ul li a span {
    margin: 0;
    color: var(--dark-color);
    font-size: 14px;
    text-transform: capitalize;
    line-height: 16.1px;
    transition: all .4s;
    max-width: calc(100% - 30px);
}

.sidebar-right.sidebar-author .sidebar-items .sidebar-list ul li a strong {
    width: 25px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    background: #848484B2;
    font-size: 14px;
    font-weight: 400;
    line-height: 16.1px;
    color: #fff;
    transition: all .4s;
}

.guide-authors {
    background: #2ECC7133;
    margin-top: 48px;
    max-width: 292px;
    padding: 9px 12px;
}

.guide-authors a {
    display: inline-flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    background: #2ECC7166;
    padding: 8px;
    border-radius: 5px;
    color: #000;
    font-size: 14px;
    font-weight: 400;
    line-height: 16.1px;
}

.autho-img {
    max-width: 470px;
    margin-inline-start: auto;
}

.sidebar-right.sidebar-author .sidebar-items .sidebar-list ul li a:hover span {
    color: #fff;
}

.sidebar-right.sidebar-author .sidebar-items .sidebar-list ul li a:hover strong {
    background: var(--sec-color);
}

/* End Authors-page */

/* Start Author-entering */

.form-author .form-group {
    margin-bottom: 17px;
    align-items: center;
    -webkit-align-items: center;
}

.form-author .form-group label {
    color: #000;
    font-size: 14px;
    font-weight: 400;
    line-height: 16.1px;
    text-transform: capitalize;
}

.form-author .form-group .col-md-9 {
    position: relative;
}

.form-author .form-group .form-control {
    border: 1px solid #2ECC71;
    padding: 8px 12px;
    height: 48px;
    line-height: 32px;
    font-size: 20px;
    font-weight: 400;
    color: var(--dark-color);
    border-radius: 0;
}

.nice-select:after {
    left: auto;
    right: 18px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 24px;
    height: 24px;
    line-height: 24px;
    background: #2ECC7180;
    text-align: center;
    border-radius: 5px;
    color: #fff;
    font-weight: 300;
    font-size: 18px;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
}

.form-author .form-group i {
    position: absolute;
    right: 0;
    top: 14px;
    margin: auto 33px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #848484;
}

.form-author .form-group i.color-praimey {
    color: var(--main-color);
}

.form-author .form-group label span {
    color: #DD2025;
}

.form-author .form-group textarea.form-control {
    height: 94px;
}

.form-author .form-group .check-radio {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    gap: 26px;
}

.title-form {
    margin: 53px 0;
}

.title-form h3 {
    margin: 0;
    color: #000;
    font-size: 16px;
    font-family: 'ARIAL-Bold';
    line-height: 18.4px;
}

.form-author .form-group .check-radio label {
    display: flex;
    gap: 6px;
    align-items: center;
    -webkit-align-items: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 16.1px;
    position: relative;
}

.form-author .form-group .check-radio label input {
    width: 12px;
    height: 12px;
    accent-color: var(--main-color);
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
}

.form-author .form-group .check-radio label u {
    text-decoration: none;
    padding-inline-start: 18px;
}

.form-author .form-group .check-radio label u::before {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    top: 0;
    left: 0;
    border: 1px solid var(--main-color);
    border-radius: 50%;
    transition: all .3s;
}

.form-author .form-group .check-radio label input:checked+u::before {
    background: var(--main-color);
    box-shadow: inset 0px 0px 0px 2px #fff;
}

.form-author .form-group .agree-h {
    max-width: 358px;
}

.form-author .form-group .agree-h span {
    color: #000000;
}

.form-author .form-group button.btn.btn-form {
    display: table;
    width: auto;
    margin-inline-start: auto;
    font-size: 16px;
    padding: 16px;
    height: auto;
}

.form-author .form-group .form-control:focus {
    box-shadow: none;
}

/* End Author-entering */

/* Start Board-page */

.board-block {
    display: flex;
    padding: 25px 16px;
    align-items: center;
    -webkit-align-items: center;
    gap: 30px;
    max-width: 726px;
}

.board-block .img {
    width: 164px;
    height: 164px;
    overflow: hidden;
    border-radius: 10px;
}

.board-block .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.board-block .details {
    box-shadow: 0px 4px 4px 0px #00000040;
    padding: 16px;
    border-radius: 5px;
    max-width: calc(100% - 194px);
    width: 100%;
}

.board-block .details .user-name {
    margin-bottom: 15px;
}

.board-block .details .user-name h3 {
    font-family: 'ARIAL-Bold';
    font-size: 16px;
    margin-bottom: 16px;
    line-height: 18.4px;
    color: var(--dark-color);
}

.board-block .details .user-name span {
    color: var(--dark-color);
    font-size: 14px;
    font-weight: 400;
    line-height: 16.1px;
}

.board-block .details .detail-info a {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    margin: 4px 0;
    gap: 7px;
}

.board-block .details .detail-info a i {
    width: 29.17px;
    font-size: 24.06px;
    color: var(--main-color);
    height: 35px;
    line-height: 35px;
}

.board-block .details .detail-info a span {
    font-family: 'ARIAL-Bold';
    font-size: 16px;
    line-height: 18.4px;
    color: #848484;
}

.board-img {
    max-width: 290px;
    margin-inline-start: auto;
}

/* End Board-page */

/* Start Volums-page */

.info-volume {
    display: flex;
    margin-bottom: 24px;
    color: var(--dark-color);
    font-size: 14px;
    font-weight: 400;
    line-height: 16.1px;
    max-width: 500px;
    gap: 6px;
}

.info-volume .icon {
    width: 24px;
}

.info-volume span {
    max-width: calc(100% - 30px);
}

.sidebar-items .sidebar-list.no-bg a {
    background: transparent;
    display: flex;
    align-items: center;
    -webkit-align-items: center;

    font-size: 20px;
    font-weight: 400;
    line-height: 23px;
    margin: 0;
    border-radius: 0;
    border: 1px solid #848484;
    padding: 10px;
}

.sidebar-items .sidebar-list.no-bg a .icon {
    width: 48px;
    margin-inline-start: -10px;
}

.sidebar-items .sidebar-list.no-bg a u {
    width: calc(100% - 48px);
    text-decoration: none;
    padding-inline-start: 11px;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    gap: 9px;
}

.sidebar-items .sidebar-list.no-bg a u strong {
    padding: 5px 10px;
    color: #F5F5F5;
    font-size: 14px;
    font-weight: 400;
    line-height: 16.1px;
    background: #84848499;
    border-radius: 10px;
}

.sidebar-items .sidebar-list.no-bg ul li:first-child a {
    border-bottom: 0;
}

/* End Volums-page */

/* Start Contact-page */

.title-contact.title {
    padding: 0;
    border: none;
    margin-bottom: 50px;
    max-width: 1240px;
}

.title-contact.title h1 {
    font-family: 'ARIAL-Bold';
    font-size: 32px;
    color: var(--dark-color);
    line-height: 36.8px;
    margin-bottom: 40px;
}

.title-contact.title p {
    color: #848484;
    font-size: 20px;
    font-weight: 400;
    line-height: 23px;
    letter-spacing: 0.05em;
}

.contact-info a {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    margin-bottom: 18px;
    gap: 27px;
}

.contact-info a .icon {
    width: 65px;
    height: 65px;
    line-height: 65px;
    text-align: center;
}

.contact-info a .details {
    max-width: calc(100% - 82px);
}

.contact-info a .details h3 {
    font-family: 'ARIAL-Bold';
    font-size: 20px;
    color: var(--dark-color);
    line-height: 23px;
    margin-bottom: 13px;
}

.contact-info a .details span {
    font-family: 'ARIAL-Bold';
    font-size: 16px;
    color: #848484;
    line-height: 18.4px;
}

.form-h.form-author .form-goup {
    position: relative;
    margin-bottom: 15px;
}

.form-h.form-author .form-goup .form-control {
    border: 0.5px solid #848484;
    border-radius: 10px;
    height: 65px;
    padding: 20px;
    padding-inline-start: 53px;
}

.form-h.form-author .form-goup i {
    position: absolute;
    left: 0;
    top: 0;
    margin: 21px;
    color: var(--main-color);
    font-size: 22px;
    font-weight: 300;
}

.form-h.form-author .form-goup .form-control::placeholder {
    color: #848484;
}

.form-h.form-author .form-goup textarea.form-control {
    height: 220px;
}

.form-h.form-author .form-goup .agree-h {
    margin-top: 70px;
    margin-bottom: 40px;
}

.form-h.form-author .form-goup .agree-h span {
    padding-inline-start: 14px;
}

/* End Contact-page */

/* Start Archive-page2 */

.archive-inner2 .archive-inner-top {
    margin-bottom: 60px;
}

.archive-inner2 .archive-inner-top .archive-p {
    margin-bottom: 43px;
    max-width: 793px;
}

.archive-inner2 .archive-inner-top .archive-p p {
    font-family: 'ARIAL-Bold';
    font-size: 16px;
    color: var(--dark-color);
    line-height: 18.4px;
    margin-bottom: 16px;
}

.archive-inner2 .archive-inner-top .archive-p h4 {
    margin: 0;
    font-size: 20px;
    font-weight: 400;
    line-height: 23px;
    color: #848484;
}

.archive-inner2 .archive-inner-top .archive-authors {
    margin-bottom: 43px;
    max-width: 624px;
}

.archive-inner2 .archive-inner-top .archive-authors .title-authors {
    margin-bottom: 16px;
}

.archive-inner2 .archive-inner-top .archive-authors .title-authors h3 {
    font-family: 'ARIAL-Bold';
    font-size: 16px;
    color: var(--dark-color);
    line-height: 18.4px;
    margin: 0;
}

.archive-inner2 .archive-inner-top .archive-authors ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-inline-start: 20px;
}

.archive-inner2 .archive-inner-top .archive-authors ul li {
    width: 33.33%;
    flex: 0 0 auto;
    list-style: auto;
    font-size: 20px;
    font-weight: 400;
    line-height: 23px;
    display: list-item;
    color: var(--dark-color);
}

.archive-inner2 .archive-inner-top .archive-authors ul li::marker {
    color: var(--main-color);
}

.archive-inner2 .archive-lists {margin-bottom: 60px;max-width: 793px;}

.archive-inner2 .archive-lists ul li {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    font-size: 20px;
    line-height: 23px;
    color: var(--dark-color);
    margin-bottom: 24px;
}

.archive-inner2 .archive-lists ul li .num {
    width: 34px;
    height: 34px;
    line-height: 34px;
    text-align: center;
    background: var(--main-color);
    color: #fff;
    font-family: 'ARIAL-Bold';
    font-size: 16px;
    border-radius: 10px;
}

.archive-inner2 .archive-lists ul li:last-child {
    margin: 0;
}

.archive-inner2 .archive-lists ul li span {
    max-width: calc(100% - 34px);
    padding-inline-start: 15px;
}

.title-abs {
    margin-bottom: 15px;
}

.title-abs h2 {
    font-family: 'ARIAL-Bold';
    font-size: 20px;
    color: var(--dark-color);
    line-height: 23px;
    margin: 0;
}

.archive-abstract .abstract-text {
    box-shadow: 0px 4px 4px 0px #2ECC7140;
    border-inline-start: 4px solid var(--main-color);
    border-radius: 5px;
    padding-inline-start: 16px;
    margin-top: 23px;
    padding-bottom: 80px;
}

.archive-abstract .abstract-text p {
    color: var(--dark-color);
    font-size: 14px;
    font-weight: 400;
    line-height: 16.1px;
    max-width: 808px;
}

.archive-abstract {
    margin-bottom: 41px;
}

.archive-keywords .keywords-text ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.archive-keywords .keywords-text ul li {
    /* width: 25%; */
    flex: 0  auto;
    color: var(--dark-color);
    font-size: 20px;
    font-weight: 400;
    line-height: 23px;
    padding-inline-end: 20px;
}

.archive-sidebar-inner .board-img {
    margin-bottom: 45px;
}

.archive-sidebar-inner .archive-sidebar-in {
    margin-bottom: 64px;
}

.archive-sidebar-inner .archive-sidebar-in span {
    font-family: 'ARIAL-Bold';
    font-size: 20px;
    color: var(--main-color);
    line-height: 23px;
}

.archive-sidebar-inner .archive-sidebar-in h3 {
    display: flex;
    justify-content: space-between;
    margin: 16px 0 0;
}

.archive-sidebar-inner .archive-sidebar-in h3 span {
    color: var(--dark-color);
}

.sidebar-right.sidebar-archive .sidebar-items .sidebar-title {
    border-radius: 0;
    padding: 13px 20px;
    margin-bottom: 37px;
} 
/* End Archive-page2 */

.temp-alert {
    position: absolute;
    background-color: red;
    color: white;
    border-radius: 10px;
    top: 40%;
    left: 20%;
    padding: 25px;
    border: 1px solid #ccc;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    z-index: 1000; /* Ensure it appears on top */
}


.save-auther{
    background-color: #337ab7 !important;
}
.reset-auther{
    background-color: #f0ad4e !important;
}

.table-scroll {
    overflow-x: auto;
    display: block;
    width: 100%;
    white-space: nowrap;

}

.table {
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
}

.delete-row:hover{
    cursor: pointer;
}