@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');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}
:root{
    --primary-font: "Poppins", sans-serif;
    --primary-color: #000;
    --secondary-color: #8d3e03;
}
html,
body{}

body::-webkit-scrollbar{
    width: 5px;
    background: var(--primary-color);
}
body::-webkit-scrollbar-thumb{
    background: #000;
}
a{text-decoration: none;color: #000; display: block;}
ul{padding: 0; margin: 0; list-style-type: none;}
p,h1,h2,h3,h4,h5,h6{margin: 0;}
.pagebtn{
    font-size: 14px;
    background: var(--secondary-color);
    color: #fff;
    font-weight: 500;
    padding: 6px 8px 6px 8px;
    border-radius: 5px;
    display: inline-flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
}
.pagebtn i{
    font-size: 24px;
    line-height: 1;
    width: 30px;
    height: 30px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    color: var(--primary-color);
}
.msgbox{
    position: fixed;
    top: 20px;
    z-index: 99;
    width: auto;
    margin: auto;
    left: 50%;
    transform: translateX(-50%);
    margin-top: -20px;
    opacity: 0;
    visibility: visible;
    pointer-events: none;
    transition: .3s linear;
}
.msgbox.active{
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    margin-top: 0;
}
.msgbox p{
    background: #fff;
    padding: 5px  10px;
    text-align: center;
    border-radius: 5px;
    width: fit-content;
    margin: auto;
    box-shadow: 0 3px 8px rgb(0 0 0 / 5%);
}
.msgbox .success{
    color: green;
}
.msgbox .failed{
    color: #fd0000;
}
.msgbox p{font-weight: 400;color: #fff;margin: 0;font-size: 16px;letter-spacing: 0.5px;display: flex;align-items: center;gap: 5px;box-shadow: 0 3px 5px rgb(0 0 0 / 15%);padding: 10px 30px;}
.msgbox .loading-wrapper{background: #bb8100;padding: 10px;display: flex;align-items: center;justify-content: center;width: 50%;margin: auto;border-radius: 10px;}
.msgbox .loading-wrapper .loading_span{
    width: 30px;
    height: 30px;
    border: 2px solid #bb8100;
    border-top: 2px solid #fff;
    border-bottom: 2px solid #fff;
    border-radius: 50px;
    animation: circle 1s linear infinite;
}
@keyframes circle{
    0%{transform: rotate(0deg);}
    100%{transform: rotate(360deg);}
}
.msgbox .loading-wrapper p{
    color: #fff;
    letter-spacing: 1px;
    margin-left: 10px;
}


.preloader{
    background: var(--secondary-color);
    position: fixed;
    width: 100%;
    height: 100vh;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}
.preloader span{
    width: 150px;
    height: 150px;
    border: 1px solid #fff;
    border-radius: 50%;
    border-top: 1px solid transparent;
    border-bottom: 1px solid transparent;
    animation: circle 1s linear infinite alternate;
}
@keyframes circle{
    0%{transform: rotate(0deg);}
    100%{transform: rotate(360deg);}
}


.slick-dots{
    left: 50%;
    transform: translateX(-50%);
    bottom: 10px;
    width: auto;
    display: flex;
    gap: 0;
    justify-content: end;
    align-items: end;
    border-radius: 50px;
}
.slick-dots li{
    width: 10px;
    height: 10px;
    background: #aaa;
    border-radius: 6px;
    display: block;
    transition: .2s linear;
}
.slick-dots li.slick-active{
    background: var(--primary-color);
}
.slick-dots li button{
    display: none;
}


/*=======================
    page breadcrumb
=======================*/
.page-breadcrumb{
    background: var(--secondary-color);
    padding: 0 50px;
}
.page-breadcrumb:after{
    content: "";
}
.page-breadcrumb .breadcrumb-col{display: flex;align-items: start;justify-content: start;padding: 10px 0;flex-direction: column;}
.page-breadcrumb .breadcrumb-col h3{
    color: #fff;
    font-size: 34px;
    letter-spacing: 1px;
    font-weight: 700;
    padding: 0 0 15px;
    display: none;
}
.page-breadcrumb .breadcrumb-col span{
    font-weight: 800;
    margin: 30px 0 0;
    color: #fff;
}
.page-breadcrumb .breadcrumb-col ul{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.page-breadcrumb .breadcrumb-col ul li{
    font-size: 14px;
    color: #fff;
}
.page-breadcrumb .breadcrumb-col ul li a{
    color: #fff;
}
.page-breadcrumb .breadcrumb-col ul li:not(:first-child) a:before{
    content: "/";
    margin: 0 5px;
    color: #b5b5b5;
}

.page-breadcrumb .breadcrumb-col ul li:not(:last-child) a{
    color: #b5b5b5;
}

.maintitle{
    text-align: center;
    margin: 0 0 20px;
}
.maintitle h3{
    font-weight: 500;
    color: var(--primary-color);
    font-size: 32px;
}
.maintitle h3 span{
    color: var(--secondary-color);
    font-weight: 700;
}
.maintitle .journal{
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.maintitle .journal:before,
.maintitle .journal:after{
    content: "";
    width: 100px;
    height: 1px;
    display: inline-block;
    background: var(--secondary-color);
}
.maintitle .journal:before{}
.maintitle .journal:after{}
.maintitle .journal i{
    color: var(--secondary-color);
}



/*=======================
        header
=======================*/
header{
    width: 100%;
    position: relative;
    top: 0;
    left: 0;
    z-index: 9;
    transition: position .5s linear;
}
header.fix{
    box-shadow: 0 2px 5px 2px #00000014;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    background: #fff;
}
header.fix .topheader{
    display: none;
}
.topheader{
    background: var(--third-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
}
.th-left{}
.th-left p{
    color: #fff;
    font-size: 14px;
    line-height: 1;
}
.th-left p i{
    color: var(--secondary-color);
    margin-right: 5px;
}
.th-right{
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 15px;
}
.th-right .icons{
    color: #fff;
    transition: .3s ease-in;
    font-size: 14px;
    line-height: 1;
}
.th-right .icons:hover{
    color: var(--secondary-color);
}

header .topheader{
    padding: 5px 0;
    background:linear-gradient(135deg,#667eea,#764ba2);
/*    background: var(--secondary-color);*/
}
.headerleft{
}
.headerleft p{
    color: #fff;
    font-size: 13px;
    font-weight: 200;
}
.headerleft p span{
    font-weight: 500;
}

.headercenter{
    margin: 10px 0;
}
.headercenter .websitelogo{
    width: 140px;
    margin: auto;
}
.headerright{
    display: flex;
    align-items: center;
    justify-content: end;
    height: 100%;
    gap: 20px;
}
.headerright .contactno{
    font-size: 14px;
    color: #fff;
}
.headerright .contactno.logout{
    background: #fff;
    border-radius: 3px;
    color: #754fa7;
    font-size: 12px;
    font-weight: 500;
    padding: 2px 5px;
}
.headerright .contactno i{
    margin-right: 10px;
}

.topheader-center{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.topheader-center a{
    color: #fff;
    width: 25px;
    height: 25px;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    transition: .3s linear;
    font-size: 14px;
}
.topheader-center a:hover{
    color: var(--secondary-color);
    background: #fff;
}

.header-menu{
    box-shadow: 0 3px 8px rgb(0 0 0 / 10%);
}
.header-menu .menu{
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 20px;
}
.header-menu .menu .menulist{
    display: inline-block;
    position: relative;
    z-index: 1;
}
.header-menu .menu .menulist .menulink{
    font-size: 14px;
    transition: .3s linear;
    line-height: 1;
    padding: 22px 0;
    position: relative;
    z-index: 1;
    color: #444;
    text-transform: capitalize;
    font-weight: 500;
}
.header-menu .menu .menulist .menulink:after{
    content: "";
    width: 100%;
    height: 1px;
    background: #000;
    position: absolute;
    bottom: 20%;
    left: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: .3s linear;
}
.header-menu .menu .menulist .menulink:hover:after{
}
.header.fix header-menu .menu .menulist .menulink{color: #000;font-weight: 500;letter-spacing: 0.4px;}
.header.fix header-menu .menu .menulist{margin-left: 16px;}
.header-menu .menu .menulist .menulink:hover{color: var(--secondary-color);}
.header-menu .menu .menulist .menulink i{
    font-size: 0.9em;
    color: #000;);
}
.header.fix header-menu .menu .menulist .menulink i{color: #000;}
.header-menu .menu .menulist .menulink:hover i{color: var(--secondary-color);}

.header-menu .menu .menulist.enuirylist{}
.header-menu .menu .menulist.enuirylist .menulink.enquirylink{
    background: #fff;
    padding: 5px 10px 5px 20px;
    border-radius: 50px;
    color: #000;
    font-weight: 500;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 1;
    transition: .3s linear;
    overflow: hidden;
}
.header-menu .menu .menulist.enuirylist .menulink.enquirylink:before{
    content: "";
    width: 0;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50px;
    z-index: -1;
    transition: .3s linear;
    background: #000;
}
.header-menu .menu .menulist.enuirylist .menulink.enquirylink i{
    width: 25px;
    height: 25px;
    display: inline-block;
    background: #000;
    border-radius: 50px;
    line-height: 25px;
    text-align: center;
    font-size: 20px;
    transform: rotate(-30deg);
    transition: .2s linear;
}
.header-menu .menu .menulist.enuirylist .menulink.enquirylink:hover{
    color: #fff;
}
.header-menu .menu .menulist.enuirylist .menulink.enquirylink:hover:before{
    width: 100%;
}
.header-menu .menu .menulist.enuirylist .menulink.enquirylink:hover i{
    transform: rotate(0);
    background: #fff;
    color: #000;
}

/*====== submenu start here =======*/
.header-menu .submenu{
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--primary-color);
    width: 280px;
    margin: 40px 0 0;
    visibility: hidden;
    opacity: 0;
    transition: .2s linear;
    z-index: 99999;
    text-align: left;
    z-index: 9999;
    box-shadow: 0 2px 10px -4px rgb(0,0,0,0.2);
    padding: 10px 0;
}
.header-menu .menu .menulist:hover .submenu{
    opacity: 1;
    visibility: visible;
    pointer-events: auto;   
    margin: 0;   
}
.header-menu .submenu .sublist{
    display: block;
}
.header-menu .submenu .sublist .sublink{
    color: #fff;
    padding: 8px 20px;
    border-radius: 3px;
    transition: .2s linear;
    letter-spacing: 0.8px;
    font-size: 14px;
    text-transform: uppercase;
}
.header-menu .submenu .sublist .sublink:hover{
    color: #fff;
    transform: translateX(10px);
}
/*====== submenu end here =======*/

/*====== mobile menu start here =======*/

.mobheader{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
}
.mobheader .moblogo{width: 20%;}
.mobheader .moblogo img{width: 100px;}
.mobheader .mobtoggle{
    color: #000;
    width: 25px;
    height: 20px;
    position: relative;
    z-index: 1;
}
.mobheader .mobtoggle span{
    width: 25px;
    height: 1px;
    background: #000;
    display: inline-block;
    position: absolute;
    right: 0;
}
.mobheader .mobtoggle span:nth-child(1){}
.mobheader .mobtoggle span:nth-child(2){margin: 8px 0 0;}
.mobheader .mobtoggle span:nth-child(3){
    margin: 16px 0 0;
}
.mobsearch-box{
    width: 40px;
    height: 40px;
    border: 1px solid var(--primary-color);
    padding: 8px;
}
.mobsearch{
    width: 30px;
    height: 23px;
    position: relative;
    z-index: 1;
    display: none;
}
.mobsearch span{
    display: inline-block;
    position: absolute;
    z-index: 1;
}
.mobsearch span:nth-child(1){
    width: 18px;
    height: 18px;
    border-radius: 50px;
    border: 1px solid #000;
    top: 0;
    left: 0;
}
.mobsearch span:nth-child(2){
    width: 1px;
    height: 10px;
    background: #000;
    top: 14px;
    left: 60%;
    transform: rotate(-42deg);
}
.mobheader .mobheader-right{
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobmenu{
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    z-index: 9999;
    background: #fff;
    transition: .3s linear;
    overflow: auto;
}
.mobmenu.active{
    box-shadow: -2px 0 10px 0 #0000002e;
    right: 0;
}
.mobmenu .close-mobmenu{
    position: absolute;
    top: 10px;
    left: 10px;
    color: #000;
    font-size: 22px;
}

.mobmenuhead{text-align: center;padding: 15px 10px;border-bottom: 1px solid #ddd;}
.mobmenuhead h3{font-size: 16px;text-transform: uppercase;letter-spacing: 1px;font-weight: 700;}
.mobul{
    padding: 15px;
}
.mobul .mobli{
    padding: 0 0 10px;
}
.mobul .mobli .moba{
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #666;
    font-size: 16px;
    letter-spacing: .5px;
}
.mobsmneu{
    padding: 0 10px 0;
    display: none;
}
.mobsmneu .mobslist{
    padding: 5px 0 0;
}
.mobsmneu .mobslist .mobslink{
    font-size: 15px;
    letter-spacing: .4px;
    color: #666;
}
/*====== mobile menu end here =======*/


.searchpanel{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(0 0 0 / 50%);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: .3s linear;
}
.searchpanel.active{
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.close-searchpanel{
    position: absolute;
    top: 0;
    right: 0;
    color: #fff;
    font-size: 30px;
}
.close-searchpanel:before,
.close-searchpanel:after{}
.close-searchpanel:before{}
.close-searchpanel:after{}
.innersearchpanel{
    width: 100%;
    padding: 5% 10%;
    background: #151617;
    margin-top: -8%;
    transition: .3s linear;
}
.searchpanel.active .innersearchpanel{
    margin-top: 0;
}
.searchpanel-header{
    position: relative;
    z-index: 1;
}
.searchpanel-header img{width: 150px;margin: 0 0 10%;}
.innersearchpanel form{
}
.innersearchpanel form h3{
    font-size: 22px;
    font-weight: 300;
    color: #fff;
    letter-spacing: 1px;
}
.innersearchpanel form .fields{
    position: relative;
    z-index: 1;
}
.innersearchpanel form .fields input{
    width: 100%;
    border: 0;
    border-bottom: 1px solid #b48b482e;
    padding: 15px 0;
    outline: none;
    background: transparent;
    color: #fff;
    font-size: 20px;
}
.innersearchpanel form .fields input::after{
    content: "alsdfj";
}
.innersearchpanel form .fields input::placeholder{
    color: #cdcdcd;
    letter-spacing: 0.5px;
    font-weight: 300;
    font-size: 25px;
}
.innersearchpanel form .fields button{
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 10px 0;
    border: none;
    outline: none;
    background: transparent;
    color: #fff;
    font-size: 23px;
}
.innersearchpanel form .fields .emptyinput{
    position: absolute;
    bottom: 14px;
    line-height: 1;
    right: 28px;
    display: none;
}


.sidebar-shadow{
    position: fixed;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 30%);
    z-index: 998;
    transition: left .3s ease-in;
}
.sidebar-shadow.active{
    left: 0;
}
.sidebar-contact-info{
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100%;
    background: #fff;
    z-index: 999;
    transition: right .3s ease-in;
    transition-delay: .2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sidebar-contact-info.active{
    right: 0;
}
.sidebar-inner{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}
.sidebar-inner .sidelogo{}
.sidebar-inner .sidelogo img{width: 150px;}
.sidebar-inner h3{
    font-weight: 600;
    font-size: 1.4em;
    padding: 30px 0 15px;
    font-family: var(--secondary-font);
}
.sidebar-inner .number{font-weight: 500;letter-spacing: 1px;font-size: 20px;}
.sidebar-inner p{
    padding: 10px 0;
    font-weight: 500;
    letter-spacing: 1px;
    text-align: center;
}
.sidebar-inner .email{
    font-weight: 500;
    letter-spacing: 1px;
    font-size: 20px;
}
.sidebar-inner .social{
    padding: 50px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}
.sidebar-inner .social a{
    border: 1px solid #ddd;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50px;
    position: relative;
    color: #aaa;
}
.sidebar-inner .social a:hover{
    border-color: transparent;
    color: #000;
}
.sidebar-inner .social a:after{
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 50px;
    border: 1px dashed #000;
    position: absolute;
    top: 0;
    left: 0;
    animation: socialcircle 3s linear infinite reverse;
    opacity: 0;
}
.sidebar-inner .social a:hover:after{
    opacity: 1;
}
@keyframes socialcircle{
    0%{transform: rotate(360deg);}
    100%{transform: rotate(0deg);}
}
.close-sidebar{
    width: 30px;
    height: 30px;
    position: absolute;
    top: 10px;
    right: 20px;
}
.close-sidebar span{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    background: #000;
    height: 100%;
    border-radius: 50px;
    transition: .3s ease;
}
.close-sidebar span:nth-child(1){
    transform: translate(-50%, -50%) rotate(45deg);
}
.close-sidebar span:nth-child(2){
    transform: translate(-50%, -50%) rotate(-45deg);
}

.close-sidebar:hover span:nth-child(1){
    transform: translate(-50%, -50%) rotate(90deg);
}
.close-sidebar:hover span:nth-child(2){
    transform: translate(-50%, -50%) rotate(-90deg);
}




/*====== slider start here =======*/
.slider-wrapper{
    display: flex;
    height: 400px;
    overflow: hidden;
}
.slider-wrapper .sliderbox{
    text-align: center;
    padding: 0 10px;
    flex: 1;
    transition: 0.5s linear;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    background-size: cover;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.slider-wrapper .sliderbox:before{
    content: "";
    width: 100%;
    height: 100%;
    background: #0000007d;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transform-style: preserve-3d;
}
.slider-wrapper .sliderbox:hover{
    flex: 3;
}
.slider-wrapper .sliderbox .overlay{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    width: 420px;
}
.slider-wrapper .sliderbox .overlay h3{
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    transition: .3s linear;
    opacity: 0;
    transform: translateY(-30px);
}
.slider-wrapper .sliderbox .overlay p{
    font-size: 14px;
    color: #fff;
    transition: .3s linear;
    transform: translateY(20px);
    opacity: 0;
    line-height: 1.4;
    font-weight: 300;
}
.slider-wrapper .sliderbox:hover .overlay h3{
    transform: translateY(-5px);
    opacity: 1;
}
.slider-wrapper .sliderbox:hover .overlay p{
    transform: translateY(5px);
    opacity: 1;
}

.appointment{padding: 50px 0;}
.appointment span{color: var(--secondary-color);font-weight: 300;text-transform: uppercase;letter-spacing: 1px;}
.appointment h2{
    font-weight: 700;
    font-size: 36px;
    line-height: 1.2;
    color: #fff;
    padding: 0 0 15px;
}


/*====== slider end here =======*/







/*====== home about us start here =======*/
.homeaboutus{padding: 50px 0;}
.homeaboutus-content{
    text-align: center;
}
.homeaboutus-content p{
    font-size: 15px;
    line-height: 1.7;
}
.homeaboutus-content .btnbox{
    padding: 20px 0 0;
}
.homeaboutus-content a{
    font-size: 15px;
    color: var(--secondary-color);
    display: inline-flex;
    align-items: center;
    gap: 0px;
}
.homeaboutus-content a i{font-size: 20px;line-height: 1;}
.homeaboutus-content a:hover{}
/*====== home about us end here =======*/


.recent-articles{
    padding: 50px 0;
    background: #8d3e0312;
}
.recent-articles-content{margin: 0 0 20px;}
.recent-articles-content figure{
    border-radius: 10px;
    overflow: hidden;
    margin: 0 0 10px;
}
.recent-articles-content figure img{width: 100%;}
.recent-articles-content .content{}
.recent-articles-content .content h3{
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary-color);
    padding: 0 0 10px;
}
.recent-articles-content .content p{
    font-size: 14px;
    color: #838383;
}
.recent-articles-content .btnbox{
    padding: 10px 0 0;
}
.recent-articles-content .btnbox a{
    font-size: 13px;
    color: var(--secondary-color);
    font-weight: 500;
    display: flex;
    align-items: center;
    line-height: 1;
}
.recent-articles-content .btnbox a:hover{}
.recent-articles-content .btnbox a i{
    font-size: 18px;
    line-height: 1;
}


.editorprofile{
    padding: 50px 0;
}
.editorprofile .profile-img{}
.editorprofile .profile-img img{width: 100%;}
.editorprofile .content{
    padding: 0 0 15px;
}
.editorprofile .content p{
    font-size: 15px;
    line-height: 1.7;
    padding: 0 0 8px;
}


/*=========== contact page =======*/
.contactpage{
    padding: 40px 0 50px;
}
.contactpage .contmap{margin: 50px 0 0;padding: 20px;background: #fff;border-radius: 20px;box-shadow: 0 0 10px 0 rgb(0 0 0 / 15%);}
.contactpage .contmap iframe{width: 100%;height: 400px;border-radius: 20px;display: block;}
.continfo{}
.continfo span{
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 24px;
}

.rightbox{
}
.rightbox a{
    font-size: 15px;
    color: #000;
    font-weight: 400;
    display: block;
    margin: 10px 0 0;
}

.form{
}
.form h3{
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 22px;
    font-weight: 700;
    color: #000;
    margin: 0 0 20px;
}
.form .maintitle{
    text-align: start;
}
.form .maintitle .tag{}
.form .maintitle h2{}
.form .maintitle h2 span{}
.form form{}
.form form .fields{margin: 0 0 25px;position: relative;z-index: 1;}
.form form .fields label{font-size: 14px;font-weight: 500;letter-spacing: 1px;color: var(--primary-color);
}
.form form .fields :is(input, select){background: none;color: #000;font-weight: 400;border: none;border-bottom: 1px solid #e7e7e7;font-size: .9em;padding: 15px 15px 15px 35px;border-radius: 0;}
.form form .fields input[type='number']::-webkit-outer-spin-button,
.form form .fields input[type='number']::-webkit-inner-spin-button{
    -webkit-appearance: none;-moz-appearance: none;appearance: none;
}
.form form .fields select option{
    color: #000;
}
.form form .fields textarea{border: none;border-bottom: 1px solid #e7e7e7;background: none;height: 100px;font-size: .9em;font-weight: 400;border-radius: 0;color: #000;padding: 15px 15px 15px 35px;}
.form form .fields select::placeholder,
.form form .fields textarea::placeholder,
.form form .fields input::placeholder{
    color: #bbb;
    font-weight: 400;
    font-size: 14px;
}
.form form .fields :is(input, select, textarea):focus{
    box-shadow: none;
    border-color: var(--secondary-color);
}
.form form .fields i{
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    color: var(--secondary-color);
    font-size: 20px;
}
.form form .fields.textarea i{
    top: 30px;
}
.form form .fields-btn{}
.form form .fields-btn button{
    font-size: 14px;
    border: 1px solid var(--secondary-color);
    color: var(--secondary-color);
    font-weight: 500;
    padding: 8px 8px 8px 10px;
    border-radius: 5px;
    display: inline-flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    background: transparent;
}
.form form .fields-btn button:hover{
    background: var(--secondary-color);
    color: #fff;
}
.form form .fields-btn button i{
    font-size: 24px;
    line-height: 1;
    width: 30px;
    height: 30px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    color: var(--primary-color);
}


.reviewers{
    padding: 40px 0;
}
.reviewers-box{
    text-align: center;
    margin: 0 0 30px;
}
.reviewers-box figure{
    text-align: center;
    margin: 0 0 010px;
}
.reviewers-box figure img{
    width: 50%;
}
.reviewers-box .content{}
.reviewers-box .content h3{
    font-weight: 600;
    font-size: 20px;
    color: var(--secondary-color);
    padding: 0 0 5px;
}
.reviewers-box .content p{
    font-size: 15px;
}

.pagecontent-wrapper,
.subpages-wrapper{
    padding: 40px 0;
}
.subpages-wrapper .maintitle{}
.subpages-wrapper .maintitle h3{}
.subpages-wrapper .maintitle h3 span{}
.subpages-wrapper .maintitle .journal{}
.subpages-wrapper .maintitle .journal i{}
.subpages-wrapper .subpage-leftside{}
.subpages-wrapper .subpage-leftside h3{
    font-size: 24px;
    font-weight: 600;
    padding: 0 0 5px;
    border-bottom: 1px solid #ddd;
    line-height: 1;
    margin: 0 0 10px;
}
.subpages-wrapper .subpage-leftside ul{}
.subpages-wrapper .subpage-leftside ul li{}
.subpages-wrapper .subpage-leftside ul li a{
    font-size: 14px;
    background: #8d3e0312;
    border-radius: 5px;
    padding: 10px;
    margin: 0 0 5px;
    transition: .3s linear;
    color: var(--secondary-color);
    font-weight: 500;
}
.subpages-wrapper .subpage-leftside ul li a:hover{
    font-weight: 700;
}
.pagecontent{}
.pagecontent > strong{}
.pagecontent p > strong{
    color: var(--secondary-color);
    font-weight: 600;
    margin: 0 0 0px;
    display: inline-block;
}
.pagecontent h2{
    font-size: 22px;
    font-weight: 600;
    color: var(--secondary-color);
    margin: 20px 0 5px;
}
.pagecontent h3{}
.pagecontent h4{}
.pagecontent h5{
    font-size: 15px;
    padding: 0 0 10px;
}
.pagecontent p{
    font-size: 15px;
    text-align: justify;
    padding: 0 0 10px;
}
.pagecontent ul{}
.pagecontent ul li{}
.pagecontent ul li strong{}

.subinnerpage-content{}
.subinnerpage-content .top-content{
    padding: 0 0 20px;
}
.subinnerpage-content .top-content p{
    font-weight: 500;
    font-size: 15px;
    padding: 0 0 5px;
}
.subinnerpage-content .top-content h3{
    padding: 20px 0 0;
    font-weight: 600;
    font-size: 18px;
}
.subinnerpage-content .innerpage-tbl{}
.subinnerpage-content .innerpage-tbl table{}
.subinnerpage-content .innerpage-tbl table thead{}
.subinnerpage-content .innerpage-tbl table thead tr{}
.subinnerpage-content .innerpage-tbl table thead tr th{
    font-size: 14px;
    font-weight: 500;
    color: #555;
}
.subinnerpage-content .innerpage-tbl table tbody{}
.subinnerpage-content .innerpage-tbl table tbody tr{}
.subinnerpage-content .innerpage-tbl table tbody tr td{
    color: #555;
    font-size: 14px;
}
.subinnerpage-content .innerpage-tbl table tbody tr td p{
    font-size: 15px;
    color: #555;
}
.subinnerpage-content .innerpage-tbl table tbody tr td span{
    font-size: 15px;
    color: #555;
}
.subinnerpage-content .innerpage-tbl table tbody tr td span b{
    font-weight: 600;
}
.subinnerpage-content .innerpage-tbl table tbody tr td .viewbtn{
    background: var(--secondary-color);
    display: inline-block;
    padding: 8px 10px;
    border-radius: 3px;
    color: #fff;
    line-height: 1;
}
.subinnerpage-content .innerpage-tbl table tbody tr td .viewbtn:hover{}






.loginpage-wrapper{
    min-height:100vh;
    background:linear-gradient(135deg,#667eea,#764ba2);
    padding: 50px;
}
.loginbox{
    background: #fff;
    padding: 20px;
    border-radius: 10px;
}
.loginbox-logo{
    text-align: center;
    padding: 0 0 20px;
}
.loginbox-logo img{width: 150px;}
.loginbox-title{
    text-align: center;
}
.loginbox-title h3{
    font-size: 22px;
    font-weight: 600;
}
.loginbox-title p{
    color: #666;
    font-size: 14px;
}
.loginbox-frm{
    padding: 20px 0 0;
}
.loginbox-frm .fields{
    padding: 0 0 10px;
}
.loginbox-frm .fields label{
    font-size: 14px;
    padding: 0 0 5px;
}
.loginbox-frm .fields input{
    padding: 10px 15px;
    border-radius: 5px;
}
.loginbox-frm .fields input:focus{
    box-shadow: none;
    border-color: #ddd;
}
.loginbox-frm .fields-btn{}
.loginbox-frm .fields-forget{
    text-align: end;
    padding: 0 0 10px;
}
.loginbox-frm .fields-forget a{
    font-size: 12px;
    color: #777;
}
.otp-btn button,
.fields-btn button{
    border-radius: 5px;
    padding:12px;
    font-weight: 400;
    background:#667eea;
    border:none;
    transition: .3s linear;
    width: 100%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.otp-btn button:disabled:after,
.fields-btn button:disabled:after{
    content: "";
    width: 20px;
    height: 20px;
    border: 3px solid #fff;
    border-top: 3px solid transparent;
    display: block;
    border-radius: 50px;
    animation: moving .5s linear infinite;
}
@keyframes moving{
    to{transform: rotate(360deg);}
}
.otp-btn button:disabled,
.fields-btn button:disabled{
    cursor: not-allowed;
    opacity: .7;
}
.otp-btn button:hover,
.fields-btn button:hover{
    background:#5a67d8;
}

.loginbox-line{
text-align:center;
margin:22px 0;
position:relative;
}
.loginbox-line::before,
.loginbox-line::after{content:'';position:absolute;top:50%;width: 27%;height:1px;background:#ddd;}
.loginbox-line::before{left:0;}
.loginbox-line::after{right:0;}
.loginbox-line span{background:#fff;padding:0 10px;color:#777;font-size:.85rem;}
.loginbox-social-login{
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
}
.loginbox-social-login a{
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid #ddd;
    border-radius:5px;
    padding:10px;
    text-decoration:none;
    color:#444;
    font-weight:500;
    gap: 5px;
    width: 50%;
}
.loginbox-social-login a i{
}

.donthave-account{
    text-align: center;
    padding: 15px 0 0;
}
.donthave-account p{
    color: #fff;
    font-size: 13px;
}
.donthave-account a{
    color: #fff;
    font-weight: 500;
    text-decoration: underline;
}
.dashboard-page{
    padding: 40px 0;
}
.dashboard-page .dashboard-link{
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 10px;
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: #eee;
    gap: 10px;
    transition: .3s linear;
}
.dashboard-page .dashboard-link i{
    display: block;
    font-size: 30px;
    color: #bbb;
    transition: .3s linear;
}
.dashboard-page .dashboard-link:hover{
    background: linear-gradient(135deg, #667eea, #764ba2, #6b8cff, #9f7aea);
    background-size: 400% 400%;
    animation: gradientMove 6s ease infinite;
    color: #fff;
}

@keyframes gradientMove {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}





.linktree-page{padding: 40px 0 60px;}
.linktree-page .fields{
    margin: 0 0 10px;
}
.linktree-page .fields label{
    color: #666;
    font-size: 14px;
    font-weight: 500;
}
.linktree-page .fields input{}
.linktree-page .fields :is(input,textarea):focus{
    box-shadow: none;
    border-color: #ddd;
}
.linktree-page .fields input::placeholder{
    color: #bbb;
    font-size: 13px;
}
.linktree-page .fields input[type='number']::-webkit-outer-spin-button,
.linktree-page .fields input[type='number']::-webkit-inner-spin-button{
    -moz-appearance: none;
    appearance: none;
}
.linktree-page .fields textarea{}
.linktree-page .fields :is(input,textarea){}

.linktree-page .linkbody{}
.linktree-page .linkbody .innerlinkbody{
    display: flex;
    gap: 15px;
    margin: 0 0 10px;
}
.linktree-page .linkbody .innerlinkbody:last-child{margin: 0;}
.linktree-page .linkbody .innerlinkbody:first-child a{display: none;}
.linktree-page .linkbody .innerlinkbody a{color: rgb(255 0 0 / 50%); transform: translateY(5px); }
.linktree-page .linkbody .innerlinkbody input{flex: 8; font-size: 14px;}
.linktree-page .linkbody .innerlinkbody input:nth-child(1){}
.linktree-page .linkbody .innerlinkbody input:nth-child(2){}
.linktree-page .linkbody .innerlinkbody input:nth-child(3){flex: 1;}
.linktree-page .itemfooter{
    padding: 10px 0 0;
}
.linktree-page .itemfooter .addnewrow{
    font-size: 14px;
    color: #754da5;
    font-weight: 600;
}
.linktree-page .fields-btn{
    text-align: end;
}
.linktree-page .fields-btn button{
    padding: 10px 40px;
    border: none;
    background: linear-gradient(135deg,#667eea,#764ba2);
    border-radius: 5px;
    color: #fff;
    transition: .3s linear;
}
.linktree-page .fields-btn button:hover{
    background: linear-gradient(105deg,#764ba2, #667eea);
}
.imgquestion{
    border: 1px dashed rgb(0 0 0 / 80%);
    border-radius: 8px;
    width: 100%;
    height: 150px;
    text-align: center;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 5px;
}
.imgquestion img{
    height: 100%;
}
.imgquestion .imgclose{
    position: absolute;
    top: 0;
    right: 5px;
    color: #b70000;
    display: none;
}
.imgquestion .imgclose.active{
    display: block; 
}


footer{
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #daf4ff;
    padding: 5px 10px;
    text-align: center;
}
footer p{font-size: 13px;font-weight: 500;color: #999;}
footer p span{color: #666; cursor: pointer;}


.login-innerwrapper{
    display: none;
}
.login-innerwrapper .otp-overlay {
    background: #fff;
    border-radius: 10px;
}

.login-innerwrapper .otp-modal {
  text-align: center;
  padding: 10px 30px;
}
.login-innerwrapper .otp-modal img{width: 100px;display: none;}
.login-innerwrapper .logo {
  height: 45px;
  margin-bottom: 15px;
}

.login-innerwrapper .close-btn {
  position: absolute;
  right: 15px;
  top: 12px;
  border: none;
  background: none;
  font-size: 22px;
  cursor: pointer;
}

.login-innerwrapper h2 {
  margin: 10px 0;
  font-size: 25px;
  font-weight: 600;
}

.login-innerwrapper .subtitle {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
}
.login-innerwrapper .subtitle strong{
    font-weight: 600;
    color: green;
}
.login-innerwrapper .otp-inputs {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}

.login-innerwrapper .otperror{}
.login-innerwrapper .otperror p{
    font-size: 14px;
    padding: 10px 0 0;
}
.login-innerwrapper .otperror p.failed{color: red;}
.login-innerwrapper .otperror p.success{color: green;}
.login-innerwrapper .otp-box {
  width: 48px;
  height: 48px;
  font-size: 20px;
  text-align: center;
  border: 1px solid #ddd;
  border-radius: 8px;
}

.login-innerwrapper .otp-box:focus {
  outline: none;
  border-color: #667eea;
}

.login-innerwrapper .verify-btn {
  width: 100%;
  background: #667eea;
  color: #fff;
  border: none;
  padding: 12px;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  outline: none;
  border: none;
}

.login-innerwrapper .verify-btn:hover {
  background: #5a67d8;
}

.login-innerwrapper .resend {
  margin-top: 15px;
  font-size: 13px;
}

.login-innerwrapper .resend a {
  color: #5a67d8;
  text-decoration: none;
  display: inline;
  font-weight: 500;
}

.login-innerwrapper .login-overlaywrapper{
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 25%);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    visibility: hidden;
    opacity: 0;
}
.login-innerwrapper .login-overlaywrapper.active{
    pointer-events: auto;
    visibility: visible;
    opacity: 1;
}
.login-innerwrapper .login-overlaywrapper .movingcircle{
    width: 50px;
    height: 50px;
    border: 6px solid #fff;
    border-radius: 50%;
    border-top: 6px solid transparent;
    animation: movein .6s linear infinite;
}
@keyframes movein {
    to{transform: rotate(360deg);}
}

.loginmsg{}
.otpmsg p,
.loginmsg p{
    padding: 10px 0;
    font-size: 15px;
    font-weight: 500;
}
.otpmsg .success,
.loginmsg .success{color: #008000d1;}
.otpmsg .failed,
.loginmsg .failed{color: #ff0000ad;}
.dashboard-content{
    padding: 30px 0 0;
    background: #f4f4f4;
}
.dashboard-content h3{
    font-size: 20px;
    font-weight: 600;
    padding: 0 0 10px;
}
.atc-btns{
    display: inline;
    margin-left: 10px;
}
.treelink-wrapper{
    background: #677CE7;
    width: 100%;
    height: 100vh;
    padding: 15px;
    overflow: auto;
}
.treelink-wrapper .treelink-box{
    background: rgb(255 255 255 / 10%);
    padding: 30px 20px 10px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.treelink-wrapper .treelink-box:before{
    content: "";
    width: 100%;
    height: 140px;
    background: rgb(255 255 255);
    position: absolute;
    top:0;
    left: 0;
    z-index: -1;
}
.treelink-wrapper .treelink-box:after{
    content: "";
    width: 500px;
    height: 230px;
    background: #7689e9;
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    border-radius: 50%;
}
.treelink-wrapper .treelink-box figure{
    margin: 0;
    width: 100px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    border: 3px solid #fff;
    overflow: hidden;
    outline: 5px solid rgb(0 0 0 / 5%);
    margin: 0 auto 20px;
    background: #fff;
}
.treelink-wrapper .treelink-box figure img{width: 100%;height: 100%;object-fit: contain;object-position: center;}
.treelink-box-username{
    text-align: center;
}
.treelink-box-username h3{
    font-size: 20px;
    font-weight: 600;
    color: #fff;
}
.treelink-box-username p{
    font-size: 14px;
    line-height: 1.3;
    color: #fff;
    padding: 10px 0;
    font-weight: 300;
}
.treelink-box-username .linkicons{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 0 20px;
}
.treelink-box-username .linkicons a{
    color: #fff;
}
.treelink-wrapper .treelink-box .link-url{}
.treelink-wrapper .treelink-box .link-url a{
    background: #fff;
    padding: 10px;
    margin: 0 0 10px;
    text-align: center;
    font-size: 15px;
    transition: .3s linear;
}
.treelink-wrapper .treelink-box .link-url a:hover{
    background: #526ae2;
    color: #fff;
}
.invalid-data{
    text-align: center;
}
.invalid-data p{
    font-size: 22px;
    font-weight: 400;
    color: #a80000;
}
.invalid-data a{
    color: #fff;
    text-decoration: underline;
    font-size: 14px;
}

table thead{}
table thead tr{
    padding: 20px !important;
}
table thead tr th{
    background: #eee !important;
    font-weight: 600 !important;
    border: none !important;
    font-size: 15px !important;
    padding: 10px !important;
}
table thead tr th:first-child{
    border-radius: 5px 0 0 5px;
}
table thead tr th:nth-child(2){
    text-align: center !important;
}
table thead tr th:last-child{
    border-radius: 0 5px 5px 0;
}
table tbody tr{
    vertical-align: middle;
}
table tbody tr:last-child{
    border-bottom: none !important;
}
table tbody tr:hover > *{
    background: #f9f9f9 !important;
}
table tbody tr td:nth-child(2){
    text-align: center !important;
}

.dt-layout-row{
    margin-bottom: 0 !important;
}
table tbody tr td a{font-size: 18px;}
table tbody tr td .editbtn{color: green;}
table tbody tr td .delbtn{color: red;}
table tbody tr td .form-check-input:focus{
    box-shadow: none;
}
.tox-tinymce{height: 300px !important}



table tbody tr td.box,
table thead tr th.box{width: 3%;}
table tbody tr td.number,
table thead tr th.number{width: 4%; text-align: center !important;}
table tbody tr td.image,
table thead tr th.image{width: 10%; text-align: center !important;}
table tbody tr td.order,
table thead tr th.order{width: 10%; text-align: center !important;}
table tbody tr td.status,
table thead tr th.status{width: 10%; text-align: center !important;}
table tbody tr td.action,
table thead tr th.action{width: 10%; text-align: center !important;}
