@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{
    overflow-x: hidden;
    /* background: #F6F5ED; */
}

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;
    bottom: 20px;
    z-index: 99;
    width: 70%;
    margin: auto;
    left: 50%;
    transform: translateX(-50%);
}
.msgbox .alertdiv{
    background: #fff;
    padding: 12px  10px;
    text-align: center;
    border-radius: 5px;
    width: fit-content;
    margin: auto;
}
.msgbox .alertdiv.success{
    background: #7acb7a;
}
.msgbox .alertdiv.failed{
    background: #ff8d8d;
}
.msgbox .alertdiv p{font-family: var(--secondary-font); color: #fff;margin: 0;font-size: 16px;letter-spacing: 0.5px;font-weight: 300;display: flex;align-items: center;gap: 5px;}
.msgbox .alertdiv.success p{}
.msgbox .alertdiv.success p i{color: green; font-size: 16px; line-height: 1;}
.msgbox .alertdiv.failed p{}
.msgbox .alertdiv.failed p i{color: red;font-size: 16px;line-height: 1;}
.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: var(--secondary-color);
}
.headerleft{
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: start;
}
.headerleft a.searchicon{
    font-size: 25px;
    transition: .3s linear;
}
.headerleft a.searchicon:hover{
    color: var(--primary-color);
}
.headerleft .headeremail{
    font-size: 14px;
    color: #fff;
}
.headerleft .headeremail i{
    margin: 0 8px 0 0;
    line-height: 1;
    color: #fff;
}
.headercenter{
    margin: 5px 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 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{}
.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: 15px;
    transition: .3s linear;
    line-height: 1;
    padding: 41px 0;
    position: relative;
    z-index: 1;
    color: #000;
    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;
    text-align: justify;
}
.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;
    text-align: justify;
}


/*=======================
        footer
=======================*/
footer{
    padding: 50px 50px 30px;
    background: var(--primary-color);
}
.footerbox iframe{
    width: 100%;
    height: 290px;
}

.footerbox .cont-info{
    font-size: 16px;
    font-weight: 100;
    color: #fff;
    padding: 15px 0 0;
    display: block;
    letter-spacing: 1px;
}
.footerbox .cont-info a{
    color: #fff;
    letter-spacing: 1px;
    font-size: 15px;
    font-weight: 100;
}
.footerbox .cont-info a i{
    margin: 0 10px 0 0;
    color: #001d62;
    font-size: 1.3em;
}
.footerbox{}
.footerbox-title{
    color: #fff;
    font-size: 22px;
    margin: 0 0 10px;
    letter-spacing: 1px;
}
.footerbox p{
    color: #aaa;
    font-size: 14px;
}
.usefullinks{color: #fff;
    font-size: 22px;
    letter-spacing: 2px;
    margin: 0 0 15px;
    font-family: var(--secondary-font);
}
footer .footer-menu{
    /* text-align: center; */}footer .footer-menu li{
}footer .footer-menu li a{
    font-size: 14px;
    position: relative;
    transition: .2s linear;
    display: inline-block;
    font-weight: 400;
    color: #999;
    letter-spacing: 0.5px;
}
footer .footer-menu li a:is(:hover, .active){
    color: #fff;
}footer .footer-menu li a:before{
    content: "";
    width: 100%;
    height: 1px;
    background: #fff;
    position: absolute;
    bottom: 0;
    left: 0;
    border-radius: 20px;
    transform: scaleX(0);
    transition: .2s linear;
}footer .footer-menu li a.active:before,
footer .footer-menu li a:hover:before{
    transform: scaleX(1);
}
.footer-map{
    display: flex;
    align-items: center;
    justify-content: start;
    margin: 20px 0 0;
}
.footer-map iframe{
    width: 100%;
    height: 140px;
    border-radius: 20px;
}
.footer-mapiframe{width: 100%;height: 300px;display: block;border-radius: 50px;border-bottom-left-radius: 0;
}

.copyright{margin: 40px 0 0;border-top: 1px solid #f7931d4f;padding: 30px 0 0;text-align: center;}
.copyright p{
    font-size: 15px;
    display: block;
    color: #fff;
    font-weight: 200;
    letter-spacing: 1px;
}
.copyright p a{
    color: var(--secondary-color);
    font-weight: 400;
    display: inline-block;
}
.copyright p a:hover{
    color: #fff;
}


/*=========== 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{
    list-style: disc;
    list-style-position: inside;
}
.pagecontent ul li{padding: 0 0 15px;text-align: justify;}
.pagecontent ul li strong{color: var(--secondary-color);}

.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{}