:root {
    /* --primary:#03078f; */
    --primary:#000375;
    /* --secondary:#7948b5; */
    --secondary:#6230a1;
    /* --blue:#3498db; */
    --blue:#13a997;
    --grey:#232323;
    --yellow:#f1c40f;
    --red: #ee0b0b;
    --orange: #e67e22;
    --bg1: #f5f8f7;
    --bg2:#edfbff;
    --bg3:#f2fffd;
    --shadow1: 0 2px 4px #00000026, 0 3px 6px #0000001f;
    --shadow2: 0 2px 6px #00000044, 0 4px 7px #00000022;
}
html {
    width: 100%;
    height: 100%;
    scroll-behavior: auto !important;
}
body {
    margin: 0;
    padding: 0;
    /* font-family: 'Open Sans', sans-serif; */
    font-family: 'Roboto', sans-serif;
    color: #333;
    overflow-x: hidden;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0; 
}
ul,
li {
    list-style: none;
    margin: 0;
    padding: 0;
}
a {
    text-decoration: none;
}
.full-img {
    width: 100%;
}
.bg-grey1 {
    background: var(--bg1);
}
.bg-grey2 {
    background: var(--bg2);
}
.bg-grey3 {
    background: var(--bg3);
}
/*===== Loader Css ===== */
.pace {
	-webkit-pointer-events: none;
	pointer-events: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
}

.pace-inactive {
	display: none;
}

.pace .pace-progress {
	background: var(--red);
	position: fixed;
	z-index: 2000;
	top: 0;
	right: 100%;
	width: 100%;
	height: 2px;
}

.pace .pace-progress-inner {
	display: block;
	position: absolute;
	right: 0px;
	width: 100px;
	height: 100%;
	box-shadow: 0 0 10px #fff, 0 0 5px #fff;
	opacity: 1.0;
	-webkit-transform: rotate(3deg) translate(0px, -4px);
	-moz-transform: rotate(3deg) translate(0px, -4px);
	-ms-transform: rotate(3deg) translate(0px, -4px);
	-o-transform: rotate(3deg) translate(0px, -4px);
	transform: rotate(3deg) translate(0px, -4px);
}

.pace .pace-activity {
	display: block;
	position: fixed;
	z-index: 2000;
	top: 15px;
	right: 15px;
	width: 14px;
	height: 14px;
	border: solid 2px transparent;
	border-top-color:var(--red);
	border-left-color:var(--red);
	border-radius: 10px;
	-webkit-animation: pace-spinner 400ms linear infinite;
	-moz-animation: pace-spinner 400ms linear infinite;
	-ms-animation: pace-spinner 400ms linear infinite;
	-o-animation: pace-spinner 400ms linear infinite;
	animation: pace-spinner 400ms linear infinite;
}

@-webkit-keyframes pace-spinner {
	0% { -webkit-transform: rotate(0deg); transform: rotate(0deg); }
	100% { -webkit-transform: rotate(360deg); transform: rotate(360deg); }
}
@-moz-keyframes pace-spinner {
	0% { -moz-transform: rotate(0deg); transform: rotate(0deg); }
	100% { -moz-transform: rotate(360deg); transform: rotate(360deg); }
}
@-o-keyframes pace-spinner {
	0% { -o-transform: rotate(0deg); transform: rotate(0deg); }
	100% { -o-transform: rotate(360deg); transform: rotate(360deg); }
}
@-ms-keyframes pace-spinner {
	0% { -ms-transform: rotate(0deg); transform: rotate(0deg); }
	100% { -ms-transform: rotate(360deg); transform: rotate(360deg); }
}
@keyframes pace-spinner {
	0% { transform: rotate(0deg); transform: rotate(0deg); }
	100% { transform: rotate(360deg); transform: rotate(360deg); }
}
/*==== End Loader Css ====*/
header {
    width: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999;
    border-bottom: solid 1px #f0f0f0;
}
.top-header {
    width: 100%;
    padding: 10px;
    background: var(--primary );
    /* background: #f0f0f0; */
    color: #fff;
    transition: all 0.5s;
}
.top-header li {
    display: inline;
}
.top-header li:first-child {
    margin-right: 10px;
}
.top-header li a {
    color: #fff;
}
.btn-sm-1 {
    padding: 5px 10px;
    background:var(--primary);
    border-radius: 3px;
    color: #fff !important;
    transition: all 0.3s;
}
.btn-sm-1:hover {
    background: #fff;
    color: #333 !important;
}
.header {
    width: 100%;
    background: rgba(255,255,255,1);
    min-height: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
   transition: all 0.5s;
}
.header-shadow {
    box-shadow: rgba(0, 0, 0, 0.2) 0px 15px 10px -10px;
}
/* .header-shadow .top-header {
    padding: 5px;
} */
.header-shadow .header {
    min-height: 80px;
}
.logo h1 {
    font-weight: 400;
    color: var(--primary);
    text-transform: uppercase;
    line-height: 60px;
}
.logo h1 a {
    color: inherit;
}
.logo img {
    width: 100%;
    max-width: 190px;
}
.menu {
   text-align: right;
}
.menu li {
    display: inline-block;
    margin:0 5px;
}
.menu li a {
    color: #333;
    font-weight: 600;
    line-height: 60px;
    display: block;
    padding: 0 15px;
    transition: all 0.3s;
}
.menu li a:hover {
    color:var(--secondary);
}
.banner {
    width: 100%;
    position: relative;
    height: 700px;
    margin-top: 135px;
}
.banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.banner-notice {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    background: rgba(246, 202, 1, 0.9);
    text-align: center;
    padding: 10px;
}
.banner-notice p {
    font-weight: 600;
    margin: 0;   
}
.banner-notice p a {
    color: var(--primary);
    font-weight: 600;
}
.banner-cont {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}
.banner-slide {
    width: 100%;
    height: 100%;
    text-align: center;
}
.banner-slide h1 {
    font-size: 80px;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 30px;
    margin-top: 200px;
}
.banner-slide h2 {
    color: #e8e8e8;
}
.home-slider {
    width: 100%;
    max-width: 600px;
    margin: auto;
}
.home-slider .slick-prev, .home-slider .slick-next {
    display: none !important;
}
.banner-btn {
    font-size: 18px;
    color: #fff;
    background: var(--primary);
    padding: 15px 30px;
    border-radius: 4px;
    transition: all 0.3s;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
}
.banner-btn:hover {
    color: #fff;
    background: var(--secondary);
}
.link-btn {
    color:#fff;
    padding: 10px 20px;
    transition: all 0.3s;
    border-radius: 4px;
    background: var(--primary);
}
.link-btn:hover {
    background: var(--secondary);
    color: #fff;
}

.inner-sec {
    width: 100%;
    padding: 60px 0;
}
.sor-img img{
  width: 100%;
  height: 260px;
  object-fit: cover;
}
.step-cont {
    width: 100%;
    min-height: 200px;
    background: var(--bg1);
    /* border-radius: 5px; */
    transition: all 0.5s;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-bottom: solid 2px var(--bg1);
    position: relative
}
.step-cont .row {
    margin: 0;
}
.step-cont i {
    color: var(--primary);
    font-size: 40px;
}
.step-cont h4{
    font-size: 20px;
    padding-right: 15px;
    font-weight: 600;
    color: var(--grey);
    margin-bottom: 10px;
    text-transform: uppercase;
    margin-top: 15px;
}
.step-number {
    position: absolute;
    font-size: 80px;
    right: 10px;
    top: -45px;
    opacity: 0.2;
    font-weight: 900;
    transition: all 0.8s;
    color: #999;
}
.step-cont:hover  {
       box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
       border-color: var(--primary);
}
.step-cont:hover .step-number {
    top: 0;
    color: var(--secondary);
    opacity: 0.3;
}

.title h1 {
    font-size: 26px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: var(--primary);
}
.title-1 h1 {
    font-size: 26px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 20px;
}
/*===== Info Graphics Css ====*/
ul.infoGraphic {
    font-size: var(--font-size);
   
  }
  ul.infoGraphic li {
    position: relative;
    /* background: var(--bg1); */
    z-index: 1;
    transition: all 0.2s;
    cursor: pointer;
    margin-right: 10px;
    height: 185px;
    border-radius: 0px;
   transition: all 0.4s;
  }
  ul.infoGraphic li:hover {
    /* box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 12px;
    border-radius: 3px; */
    transform: scale(1.1);
  }
  ul.infoGraphic li .numberWrap {
    position: absolute;
  }
  ul.infoGraphic li .number {
    font-size: 34px;
    font-weight: 800;
    width: 0.9em;
    text-align: center;
    margin-top: 50px;
    padding-left: 30px;
  }
  /* ul.infoGraphic li .number.fontColor1 {
    color: var(--secondary);
  }
  ul.infoGraphic li .number.fontColor2 {
    color: var(--primary);
  }
  ul.infoGraphic li .number.fontColor3 {
    color: var(--primary);
  }
  ul.infoGraphic li .number.fontColor4 {
    color: var(--yellow);
  }
  ul.infoGraphic li .number.fontColor5 {
    color: var(--red);
  }
  ul.infoGraphic li .number.fontColor6 {
    color: var(--orange);
  } */
  ul.infoGraphic li .coverWrap {
    transform: rotate(130deg);
    position: absolute;
    width: 10em;
    height: 15em;
    left: 2em;
    top: -4em;
    z-index: -1;
  }
  ul.infoGraphic li .coverWrap .numberCover {
    position: absolute;
    /* background: var(--bg1); */
    width: 11em;
    height: 6em;
    border-radius: 50% 50% 0 0;
    border-bottom: 3px solid #f5f8f7;
    transition: all 0.4s;
  }
  ul.infoGraphic li .coverWrap .numberCover::before {
    position: absolute;
    content: "";
    bottom: 5px;
    left: 4em;
    right: 4em;
    top: 5em;
    /* box-shadow: 0 0 30px 17px #48668577; */
    border-radius: 100px/10px;
    z-index: -1;
  }
  ul.infoGraphic li .coverWrap .numberCover::after {
    position: absolute;
    bottom: 0;
    content: "";
    left: -10%;
    width: 120%;
    height: 150%;
    background: radial-gradient(at bottom, #48668533, transparent, transparent);
    z-index: 1;
    opacity: 0.6;
  }
  ul.infoGraphic li .content {
    /* margin: 8em 3em 1em 7em; */
    margin: 0em 0em 1em 7em;
    position: relative;
  }
  ul.infoGraphic li .content h2 {
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 10px;
    text-transform: uppercase;
    min-height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: 20px;
    word-break: break-word;
  }
  ul.infoGraphic li .content p {
    font-size: 14px;
    color: #999;
  }
  
  /* ul.infoGraphic li:hover .coverWrap .numberCover {
    border-radius: 100%;
  } */
  

/*===== End Info Graphics Css ====*/
.jor-cont {
    width: 100%;
    padding: 15px;
    background: #fff;
    border:solid 1px #f0f0f0;
    border-radius: 4px;
    box-shadow: rgba(0, 0, 0, 0.04) 0px 3px 5px;
}
.jor-cont img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: top;
    transition: all 0.3s;
    border-radius: 0px;
}

.jor-cont a {
    color: inherit;
}
.jor-cont h1 {
    color:var(--grey);
    font-size: 16px;
    margin-top: 10px;
    transition: all 0.3s;
    min-height: 50px;
    display: flex;
    align-items: center;
}
.jor-cont:hover h1 {
    color: var(--primary);
}
.wp-cont {
    width: 100%;
    background: #fff;
    margin-top: 20px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
    
}
.wp-cont-img {
    width: 100%;
    height: 190px;
    overflow: hidden;
}
.wp-cont img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    transition: all 0.7s;
}
.wp-cont:hover img {
    transform: scale(1.1);
}
.wp-cont-text {
    padding: 20px 20px 10px 20px;
}
.wp-cont-link {
    font-size: 24px;
    color: var(--primary);
    font-weight: 300;
    transition: all 0.3s;
}
.wp-cont-link:hover {
    color: var(--secondary);
}
.ge-cont {
    width: 100%;
    padding: 15px;
    background:var(--bg1);
    transition: all 0.3s;
    text-align: center;
    margin-top: 20px;
}
.ge-cont img {
    width: 70%;
    height: 210px;
    object-fit: cover;
    /*opacity: 0.3;*/
    padding: 5px;
    margin-bottom: 15px;
}
.ge-cont:hover {
    box-shadow: rgba(0, 0, 0, 0.15) 0px 3px 3px 0px;
}

footer {
    width: 100%;
    padding: 30px;
    background: #111;
}

footer h4 {
    color: #fff;
    margin-bottom: 15px;
    font-weight: 400;
}
.f-links li {
    margin-bottom: 5px;
}
.f-links li a {
    color: #d5d5d5;
    font-size: 14px;
    transition: all 0.3s;
}
.f-links li a:hover {
    color: #fff;
}
.f-social li {
    display: inline-block;
    margin-right: 12px;
}
.f-social li a {
    font-size: 28px;
    color: #d5d5d5;
    transition: all 0.3s;
}
.f-social li a:hover {
    color: #fff;;
}
.btm-f-brd {
    border-top: solid 1px #666;
}
.mobile-menu-icon {
    display: none;
}

.top-editor-sec {
    width: 100%;
}
.sub-hdg {
    width: 100%;
    min-height: 40px;
    font-size: 18px;
    color: #fff;
    background: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 400;
}
.top-editor-sec h2 {
    font-size: 16px;
    margin-bottom: 10px;
}
.top-editor-sec p {
font-size: 14px;
margin-bottom: 5px;
color: #888;
}
.top-editor-sec img {
    width: 100%;
    height: 76px;
    max-width: 76px;
    object-fit: cover;
    border-radius: 50%;
}
.top-editor-sec-row {
    padding: 15px;
    border-bottom: solid 1px #f0f0f0;
    background: var(--bg1);
}
.track-article-sec {
    background: var(--bg1);
    min-height: 200px;
}
.track-article-sec-row {
    padding: 15px;
}
.jor-list {
    width: 100%;
    padding: 20px;
    background: var(--bg1);
    min-height: 500px;
}
.jor-page-links {
    display: flex;
    background-color: var(--primary);
    width: 100%;
    min-height: 48px;
    align-items: center;
    /* border-bottom: var(--primary) solid 1px; */
    box-sizing: border-box;
    border-radius: 4px;
    
}
.jor-page-links li {
    min-height: 48px;
    align-items: center;
    display: flex;
    margin-right: 15px;
}
.jor-page-links li a {
    color:#fff;
    display: flex;
    min-height: 48px;
    padding-left: 15px;
    padding-right: 15px;
    justify-content: center;
    align-items: center;
}
.jor-page-links li.active  {
    border-bottom: var(--secondary) solid 0px;
}
.jor-page-links li.active a {
    background-color: #fff;
    color: var(--primary);
    font-weight: 600;
}
.jor-list-cont {
    width: 100%;
    padding: 20px;
}
.jor-archive-list {
    margin-top: 30px;
   
}
.jor-archive-list li {
    display: inline-block;
    margin-bottom: 40px;
    margin-right: 10px;
}
.jor-archive-list li a {
    padding: 10px 25px;
    color: #333;
    border:solid 1px #333;
    transition: all 0.3s;
}
.jor-archive-list li a:hover {
    background: #333;
    color: #fff;
}
.jor-impact {
    width: 100%;
    border:solid 2px #333;
    min-height: 40px;
    line-height: 40px;
    transition: all 0.3s;
}
.jor-impact-left {
    background-color: #333;
    color: #fff;
    transition: all 0.3s;
}
.jor-impact-right a {
  color: #333;
  display: block;
}
.jor-impact:hover {
    border-color: var(--secondary);
}
.jor-impact:hover .jor-impact-left {
    background-color: var(--secondary);
}
.page-title-sec {
    margin-top: 135px;
    padding: 20px;
    min-height: 50px;
    background: var(--primary);
    color: #fff;
}
.j-list {
    padding-left: 20px;
    margin-top: 10px;
}
.j-list li {
    position: relative;
    margin-bottom: 6px;
    padding-left: 15px;
}
.j-list li::before {
    position: absolute;
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: var(--primary);
    top: 8px;
    left: 0;
}
.contact p {
    font-size: 18px;
}
.contact a {
    color: var(--primary);
    font-size: 20px;
}
.contact-form {
    width: 100%;
    border:solid 1px #f0f0f0;
    padding: 20px;
    border-radius: 4px;
    margin-top: 20px;
    background-color: #f9f9f9;
    box-shadow: 0 3px 6px rgba(0,0,0,6%);
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    font-weight: 500;
    margin-bottom: 5px;
}

.contact-form button {
    border: none;
    outline: none;
}

.latest-articles-sec {
    padding-top: 10px;
    padding-bottom: 50px;
}
.la-main {
    width: 100%;
    padding: 15px;
    border:solid 1px #f0f0f0;
    min-height: 100px;
    position: relative;
    border-radius: 4px;
    margin-bottom: 50px;
}
.la-title {
    position: absolute;
    top: -20px;
    width: 50%;
    max-width: 70%;
    left: 1%;
    min-height: 40px;
    background-color: var(--primary);
    display: flex;
    align-items: center;
    padding-left: 10px;
    border-radius: 3px;
}
.la-title h1 {
    font-size: 18px;
    color: #fff;
    font-weight: 400;
}
.la-main h2 {
    font-size: 16px;
    font-weight: 400;
    margin-top: 20px;
} 
.la-main p, .la-main a {
    margin-bottom: 5px;
    font-size: 14px;
    color: #666;
}
.la-main span {
    font-weight: 400;
}

.la-list {
    margin-top: 10px;
}
.la-list li {
    display: inline;
    margin-right: 10px;
    margin-top: 5px;
}

.la-list li a {
    padding: 5px;
    background: #e8e8e8;
    transition: all 0.3s;
}

.la-list li:last-child a {
   background:var(--blue);
   color: #fff;
}
.la-list li a:hover {
    background: #333;
    color: #fff;
}

.la-list li:last-child a:hover {
    background: #14796d;
}

.abstract {
    width: 100%;
    /* padding: 15px; */
    transition: height 0.35s ease-in-out;
    overflow: hidden;
}

.abstract:not(.active) {
    display: none;
  }

.abstract h4 {
    font-size: 18px;
    margin-bottom: 10px;
    margin-top: 20px;
}

.abstract p {
    font-size: 14px;
}

@media (max-width:1399px) {
    /* .step-right {
        padding-left: 10px;
    } */
}
@media (max-width:1199px) {
    .home-steps .col {
        flex: 1 0 33.3333%;
    }
    .step-cont {
        margin-bottom: 40px;
    }
    .menu li {
        margin: 0;
    }
}

@media (max-width:991px) {
    .top-header {
        display: none;
    }
    .home-steps .col {
        flex: 1 0 100%;
    }
    .banner-slide h1 {
        font-size: 46px;
    }
    .menu {
        position: fixed;
        width: 100%;
        height: 100%;
        top: 80px;
        left: -150%;
        bottom: 0;
        background: #fff;
        z-index: 999;
        text-align: left;
        padding-top: 20px;
        transition: all 0.5s;
        padding-left: 30px;
    }
    .menu li {
        display: block;
    }
    .menu-show {
        left: 0;
    }
    .mobile-menu-icon {
        display: block;
        position: fixed;
        width: 40px;
        height: 30px;
        right: 15px;
        top: 32px;
        cursor: pointer;
        transition: all 0.5s;
    }
    /* .header-shadow .mobile-menu-icon {
       top: 50px;
    } */
    .navbar-toggler span,
    .navbar-toggler span::after,
    .navbar-toggler span::before {
        display: block;
        content: '';
        background-color: #333;
        height: 2px;
        width: 20px;
        transition: all ease-in-out 0.3s;
    }

    .navbar-toggler span {
        margin-top: 12px;
    }

    .navbar-toggler span::before {
        transform: translateY(-8px);
    }

    .navbar-toggler span::after {
        transform: translateY(5px);
    }

    .navbar-toggler.open-navbar-toggler span::before {
        transform: translateY(0) rotate(45deg);
    }

    .navbar-toggler.open-navbar-toggler span::after {
        transform: translateY(-2px) rotate(-45deg);
    }

    .navbar-toggler.open-navbar-toggler span {
        background-color: transparent;
    }
    footer {
        padding: 10px;
    }
    footer h4 {
        margin-top: 30px;
    }
    .banner {
        margin-top: 91px;
    }
   
    .jor-page-links {
        display: block;
        padding-top: 10px;
        /* overflow-x: scroll;
        white-space:nowrap; */
    }
    .jor-page-links li {
        display: block;
        padding-left: 15px;
        min-height: 40px;
    }
    .jor-page-links li.active  {
        border-bottom: 0px;
    }
    .page-title-sec {
        margin-top: 90px;
    }

}
@media (max-width:768px) {
    .jor-list {
        margin-bottom: 40px;
    }
}
@media (max-width:575px) {
    
    .banner {
        height: 550px;
    }
   
}