@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');
*, *:before, *:after {
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;
	-ms-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}
@keyframes mymove {
   0% {
        position: absolute;
        right: 7px;
    }
    50% {
        position: absolute;
        right: 3px;
    }
    100% {
        position: absolute;
        right: 7px;
    }
}
@keyframes animateBackground {
  0% { background-size: 100% auto; }
  50% { background-size: 150% auto; }
  100% { background-size: 100% auto; }
}
@keyframes bannertext {
  0% { background: linear-gradient(to right,  #8b1b2f 0%,#0b05a2 100%); color: transparent; background-clip: text; }
  100% {background: linear-gradient(135deg,  #0b05a2 0%,#8b1b2f 100%); color: transparent; background-clip: text;}
}
@keyframes animrotation {
    0%{
        transform: rotate(0deg);
   }
    100%{
        transform: rotate(360deg);
   }
}
@keyframes zoom-in-zoom-out {
  0% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(1.1, 1.1);
  }
  100% {
    transform: scale(1, 1);
  }
}
a, img {
	border: 0px;
	outline: 0px;
}
html {
	height: 100%;
	width: 100%;
}
body {
	height: 100%;
	width: 100%;
	margin: 0px;
	padding: 0px;
	overflow-x: hidden;
	font-family: "Plus Jakarta Sans", sans-serif;
  	font-weight: 400;
  	font-style: normal;
}
.main_fluid{
	width: 100%;
	display: block;
}
.main-wrapper{
	max-width: 1360px;
	position: relative;
	margin: auto;
    padding: 0px 15px;
}
.top-header{
    background: linear-gradient(to right,  #8b1b2f 0%,#0b05a2 100%);
	padding: 12px 0px;
	display: inline-block;
    .main-wrapper{
        display: flex;
        justify-content: space-between;
        @media (max-width:767px){
            justify-content: flex-end;
            flex-wrap: wrap;
            grid-gap: 0px;
        }
        .top-leftheader{
            display:flex;
            align-items:center;
            grid-gap:25px;
            @media (max-width:767px){
                grid-gap:12px;
            }
             a {
                color: #fff;
                font-size: 12px;
                text-decoration: none;
                display: flex;
                grid-gap:7px;
                align-items: center;
            }
        }
        .top-rightheader {
            float: right;
            display: flex;
            grid-gap: 20px;
            align-items: center;
            .toplinks{
                display: flex;
                grid-gap: 20px;
                align-items: center;
                @media (max-width:767px){
                    display: none;
                }
                a{
                    color: #fff;
                    font-size: 12px;
                    text-decoration: none;
                }
            }
            ul {
                list-style-type: none;
                display: flex;
                grid-gap: 15px;
                position: relative;
                @media (max-width:460px){
                    display: none;
                }
                @media (min-width: 460px) and (max-width:767px){
                    margin-left: 15px;
                }
                li {
                    a {
                        color: #fff;
                        transition: all 0.3s;
                        &:hover {
                            color: #FFAF2E;
                            transition: all 0.3s;
                        }
                    }
                }
            }
        }
    }
}
.mobile-socialicons {
    display: none;
}
@media screen and (max-width: 460px) {
    .mobile-socialicons{
        display: block;
    }
    .mobile-socialicons ul {
        list-style-type: none;
        display: flex;
        grid-gap: 15px;
        margin-right: 20px;
        li {
            a {
                color: #8B1B2F;
                font-size: 18px;
                &:hover {
                    color: #FFAF2E;
                    transition: all 0.3s;
                }
            }
        }
    }
}
.header {
    position: relative;
    z-index: 11;
    background: #fff;
    .inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        .logo{
            @media (max-width:991px){
                margin-right: auto;
            }
        }
        .logo img{
            @media (max-width:767px){
                width: 170px;
            }
        }
        .hamburger-menu{
            display: none;
            color: #1a1a1a;
            font-size: 28px;
            margin-right: 5px;
            @media (max-width:1024px){
                display: block;
            }
        }
        .menu {
            @media (max-width:1024px){
                display: none;
            }
            ul {
                list-style-type: none;
                display: flex;
                grid-gap: 2vw;
                li {
                    position:relative;
                    padding:20px 0px;
                    a {
                        text-decoration: none;
                        color: #004AAD;
                        font-size: 14px;
                        transition: all 0.3s;
                        font-weight:500;
                        @media (min-width:1024px) and (max-width:1120px){
                            font-size: 12px;
                        }
                        &:hover {
                            color: #BB1B2F;
                            transition: all 0.3s;
                        }
                    }
                    ul.submenu1{
                        width: auto;
                        min-width: 280px;
                        background-color: #fff;
                        box-shadow: 0 6px 4px 3px rgba(0, 0, 0, 0.15);
                        position: absolute;
                        top: 100%;
                        left: 0px;
                        list-style: none;
                        display: none;
                        z-index: 99;
                        padding-bottom:15px;
                        li {
                          display: table;
                          clear: both;
                          width: 100%;
                          line-height: normal;
                          padding:0px;
                          a {
                              text-decoration: none;
                              color: #000 !important;
                              font-size: 14px;
                              padding: 10px 20px !important;
                              display: block;
                              transition: all 0.3s ease 0s;
                              text-align: left;
                              text-transform: capitalize;
                              &:hover{
                                color: #BB1B2F !important;
                              }
                            }
                        }
                    }
                }
                li:hover{
                    a{
                        color: #BB1B2F;
                    }
                    ul.submenu1{
                        display: block !important;
                    }
                }
                li.active a{
                    color: #BB1B2F;
                }
            }
        }
    }
}
.header.fixed-header{
    position: fixed;
    top: 0px;
    box-shadow: 0px -1px 14px 2px rgba(0, 0, 0, 0.08);
    padding: 4px 0px;
}
.hero-banner {
    background: url("../images/banner-bg.png") no-repeat;
    padding: 25px;
    background-size: cover;
    @media (max-width:767px){
        padding: 15px;
    }
    .item {
        position: relative;
        display:flex;
        .banner-content {
            max-width: 1260px;
            position: relative;
            margin: auto;
            display:flex;
            align-items:center;
            padding: 0px 15px;
            @media (max-width:767px){
                flex-direction: column;
                padding: 0px;
                grid-gap: 40px;
            }
            h1 {
                color: #8B1B2F;
                font-size: 58px;
                margin-bottom: 20px;
                text-align: left;
                font-weight: 400;
                @media (min-width:992px) and (max-width:1120px){
                    font-size: 30px;
                    margin-bottom: 10px;
                }
                @media (max-width:991px){
                    font-size: 28px;
                    margin-bottom: 10px;
                    text-align: center;
                }
                b{
                    background: linear-gradient(to right,  #8b1b2f 0%,#0b05a2 100%);
                    color: transparent;
                    background-clip: text;
                    display: inline-block;
                    animation: bannertext infinite ease-in-out 20s;
                }
            }
            a.arrowbtn{
                margin: 20px auto 0px;
            }
            img{
                width: 100%;
                max-width: 600px;
                @media (min-width:768px) and (max-width:1024px){
                    max-width: 370px;
                }
            }
        }
    }
    .owl-nav {
        position: absolute;
        top: 50%;
        width: 100%;
        button {
            border: 2px solid #8B1B2F !important;
            width: 50px;
            height: 50px;
            display: table;
            left: 15px;
            border-radius: 100px;
            position: absolute;
            transition: all 0.3s;
            &:hover {
                background: linear-gradient(to right,  #bb1b2f 0%,#0b05a2 100%);
                transition: all 0.3s;
                 span {
                    color: #fff;
                 }
            }
            span {
                color: #8B1B2F;
                font-size: 52px;
                line-height: 20px;
            }
        }
        button.owl-next {
            left: auto;
            right: 15px;
            position: absolute;
        }
    }
}
a.arrowbtn{
    background: #004AAD;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    padding: 12px 35px 12px 15px;
    transition: all 0.3s;
    position: relative;
    margin-top: 20px;
    border-radius: 100px;
    display: table;
    @media (max-width:767px){
        font-size: 14px;
    }
    &:after{
        transition: all .5s;
        background: url(../images/btn-arrow.svg) no-repeat;
        content: '';
        width: 20px;
        height: 20px;
        position: absolute;
        top: 16px;
        bottom: 0;
        right: 8px;
        filter: brightness(0) invert(1);
    }
    &:hover {
        background: #BB1B2F;
        color: #fff;
        transition: all 0.3s;
        &:after{
            filter: brightness(0) invert(1);
            animation: mymove 600ms ease;
            animation-iteration-count: infinite;
        }
    }
}
.line-heading {
    h4 {
        font-size: 24px;
        background: linear-gradient(to right,  #8b1b2f 0%,#0b05a2 100%);
        color: transparent;
        background-clip: text;
        text-align: center;
        margin-bottom: 20px;
        @media (max-width:767px){
            font-size: 16px;
        }
    }
    h2 {
        font-size: 42px;
        color: #004AAD;
        font-weight: 400;
        text-align: center;
        @media (min-width:768px) and (max-width:991px){
            font-size: 38px;
        }
        @media (max-width:767px){
            font-size: 26px;
        }
    }
}
.ourgroup-section{
    padding: 50px 0px;
    margin-bottom:25px;
    .ourgroup-items{
        margin-top: 50px;
        display: flex;
        grid-gap: 20px;
        @media (max-width:767px){
            display: grid;
            grid-gap: 15px;
            grid-template-columns: repeat(2, 1fr);
        }
        @media (min-width:768px) and (max-width:1024px){
            display: grid;
            grid-template-columns: repeat(3, 1fr);
        }
        .item{
            border-radius: 30px;
            border: 1px solid #EBEBEB;
            padding: 25px;
            transition: all .5s;
            @media (max-width:767px){
                padding: 15px;
            }
            &:hover{
                background: url("../images/pngwing.png") no-repeat top right, linear-gradient(135deg,  #8b1b2f 0%,#0b05a2 100%);
                transition: all .5s;
                border-radius: 10px;
                .icon{
                    border-radius: 100px;
                    transition: all .5s;
                    background: #fff;
                }
                h3, p, a{
                    color: #fff;
                    transition: all .3s;
                }
                a:after{
                    filter: brightness(0) invert(1);
                    animation: mymove 600ms ease;
                    animation-iteration-count: infinite;
                }
            }
            .icon{
                margin-bottom: 20px;
                width: 80px;
                height: 80px;
                position: relative;
                background: #F8EAEA;
                transition: all .5s;
                border-radius: 100% 44% 44% 100% / 100% 58% 82% 66%;
                svg{
                    width: 100%;
                }
                img{
                    position:absolute;
                    left: 0px;
                    right: 0px;
                    margin: auto;
                    width: auto;
                    height: 40px;
                    top: 20px;
                }
            }
            h3{
                color: #8B1B2F;
                font-size: 16px;
                margin-bottom: 10px;
                transition: all .3s;
            }
            p{
                color: #504E4E;
                font-size: 14px;
                margin-bottom: 15px;
                line-height: 24px;
                font-weight: 400;
                transition: all .3s;
            }
            a{
                color: #504E4E;
                font-size: 12px;
                font-weight: 600;
                line-height: 24px;
                text-decoration: none;
                transition: all .3s;
                position:relative;
                padding-right:30px;
                &:after{
                    transition: all .5s;
                    background: url(../images/btn-arrow.svg) no-repeat;
                    content: '';
                    width: 20px;
                    height: 20px;
                    position: absolute;
                    top: 2px;
                    bottom: 0;
                    right: 0px;
                    background-size: 65%;
                }
            }
        }
    }
}
.welcome-section{
    background: url("../images/welcome-bg.png") no-repeat right #7D3442;
    animation: animateBackground infinite ease-in-out 55s;
    padding: 85px 0px;
    margin-bottom:75px;
    @media (max-width:767px){
        padding: 50px 0px;
        background-size: cover !important;
        background: url("../images/welcome-bg.png") no-repeat left #7D3442;
    }
    h3{
        color: #fff;
        font-size: 28px;
        margin-bottom: 15px;
        text-align: center;
        font-weight: 400;
        @media (max-width:767px){
            font-size: 18px;
        }
    }
    h1{
        color: #fff;
        font-size: 42px;
        margin-bottom: 30px;
        font-weight: 400;
        text-align: center;
        @media (max-width:767px){
            font-size: 28px;
        }
    }
    p{
        color: #fff;
        font-size: 16px;
        margin-bottom: 15px;
        text-align: center;
        line-height: 28px;
    }
    h2{
        color: #fff;
        font-size: 24px;
        text-align: center;
        margin-top: 50px;
        font-weight: 400;
        @media (max-width:767px){
            font-size: 16px;
        }
    }
}

.blog-section{
    .arrowbtn{
        display: table;
        margin: 0px auto 0px;
    }
}
.publications-section{
    margin: 50px 0 100px;
    .inner{
        display: grid;
        grid-template-columns: 0.7fr 1fr;
        align-items: center;
        grid-gap: 30px;
        margin-top:50px;
        @media (max-width:991px){
            grid-template-columns: auto;
        }
        .image{
            img{
                width: 100%;
                animation: zoom-in-zoom-out 30s ease-out infinite;
            }
        }
        .content p{
            color: #525252;
            font-size: 16px;
            margin-bottom: 15px;
            line-height: 28px;
        }
    }
}
.testimonials-section {
    margin-bottom:100px;
    .inner {
        margin-top: 50px;
        @media (max-width:767px){
            margin-top: 30px;
        }
        .item {
            padding: 10px;
            iframe{
                border-radius: 20px;
                width: 100%;
            }
        }
    }
}
.testimonials-section, 
.ourpartners-section, 
.journal-section{
    .owl-nav {
        width: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        grid-gap: 10px;
        margin-top: 30px;
        button {
            border: 1px solid #8B1B2F !important;
            width: 43px;
            height: 43px;
            display: table;
            border-radius: 100px;
            transition: all 0.3s;
            &:hover {
                background: linear-gradient(to right,  #bb1b2f 0%,#0b05a2 100%);
                transition: all 0.3s;
                span{
                    color: #fff;
                     transition: all 0.3s;
                }
            }
            span {
                color: #8B1B2F;
                font-size: 52px;
                line-height: 20px;
                transition: all 0.3s;
            }
        }
    }
}

.hmvision-section{
    margin: 50px 0 100px;
    background:#EFF8FC;
    padding:50px 0px;
    .inner{
        display: grid;
        grid-template-columns:1fr  0.7fr ;
        align-items: center;
        grid-gap: 30px;
        margin-top:50px;
        @media (max-width:991px){
            grid-template-columns: auto;
        }
        .image{
            overflow: hidden;
            padding: 20px 0px;
            img{
                width: 100%;
                animation: animrotation 120s linear infinite;
            }
        }
        .content p{
            color: #525252;
            font-size: 16px;
            margin-bottom: 15px;
            line-height: 28px;
        }
    }
}

.recentissues-section {
    .issuesitems {
        margin: 65px 0;
        grid-gap: 30px;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        @media (max-width:767px){
            grid-template-columns: auto;
        }
        @media (min-width:768px) and (max-width:1024px){
            grid-template-columns: repeat(2, 1fr);
        }
        .item {
            width: 100%;
            display: grid;
            grid-template-columns: 100px 1fr;
            grid-gap: 15px;
            .image {
                width: 100%;
                img {
                    width: 100%;
                    border-radius: 10px;
                }
            }
            .info {
                display: flex;
                flex-direction: column;
                justify-content: space-between;
                ul {
                    display: flex;
                    list-style-type: none;
                    grid-column-gap: 30px;
                    margin-bottom: 15px;
                    flex-wrap: wrap;
                    grid-row-gap: 5px;
                    li {
                        font-size: 14px;
                        color: #737373;
                        position: relative;
                        white-space: nowrap;
                        &:after {
                            content: "|";
                            color: #525252;
                            font-size: 14px;
                            font-weight: 500;
                            position: absolute;
                            right: -18px;
                            top: 0px;
                        }
                        &:last-child {
                            color: #8B1B2F;
                            &:after {
                                display: none;
                            }
                        }
                    }
                }
                a {
                    color: #004AAD;
                    font-size: 18px;
                    line-height: 140%;
                    text-decoration: none;
                    transition: all 0.3s;
                    margin-top: 5px;
                    &:hover {
                        color: #8B1B2F;
                        transition: all 0.3s;
                    }
                }
            }
        }
    }
}
.articles-section {
    margin:100px 0px 100px;
    .tabs {
        width: 100%;
        margin-top: 55px;
    }
    ul#tabs-nav {
        list-style: none;
        margin: 0;
        display: flex;
        justify-content: space-between;
    }
    ul#tabs-nav li {
        padding: 15px 10px;
        width: 100%;
        text-align: center;
        cursor: pointer;
        border-bottom: 1px solid #004AAD;
    }
    ul#tabs-nav li.active {
        border: 1px solid #004AAD;
        border-bottom: 0;
    }
    ul#tabs-nav li.active a {
        color: #004AAD;
        font-weight: 500;
    }
    #tabs-nav li a {
        text-decoration: none;
        color: #9bbae4;
        font-size: 18px;
        font-weight: 400;
    }
    .tab-content {
        margin-top: 30px;
        .item {
            border-top: 1px solid #D8D8D8;
            border-bottom: 1px solid #D8D8D8;
            padding: 20px 15px;
            margin-bottom: 20px;
            position: relative;
            padding-right: 50px;
            position: relative;
            @media (max-width:767px){
                padding: 20px 0px;
                padding-right: 25px;
            }
            &:hover {
                &:after {
                    color: #8B1B2F;
                }
            }
            &:after {
                content: '\f101';
                position: absolute;
                right: 0;
                top: 40%;
                color: #181818;
                font: normal normal normal 22px / 1 FontAwesome;
            }
            a {
                color: #8B1B2F;
                font-size: 16px;
                margin-bottom: 15px;
                line-height: 28px;
                font-weight: 400;
                text-decoration: none;
                display: block;
                &:hover {
                    text-decoration: underline;
                }
            }
            p {
                color: #515151;
                font-size: 14px;
                line-height: 28px;
                font-weight: 400;
            }
        }
        .arrowbtn{
            margin: auto;
        }
    }
}

.ourpartners-section{
    background: #EFF8FC;
    padding: 50px 0px;
    margin-bottom:75px;
    .inner{
        margin-top: 50px;
    }
    .image{
        background: #fff;
        border: 1px solid #e0dfdf;
        padding: 10px;
    }
}
.journal-section{
    margin-bottom: 100px;
    .inner{
        margin-top: 55px;
        .item{
            height: 100%;
        }
        .image{
            height: 100%;
            img{
                object-fit: contain;
                max-width: 100%;
                max-height: 100%;
            }
        }
    }
}
.openaccess-section{
    background: #EFF8FC;
    padding: 50px 0px;
    .inner{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 15px;
        margin: 50px 0px 75px;
        a{
            color: #2d2d2d;
            font-size: 14px;
            text-decoration: none;
            &:hover{
                text-decoration: underline;
            }
        }
    }
}
.openaccess-section{
    background: #EFF8FC;
    padding: 50px 0px;
    .inner{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 15px;
        margin: 50px 0px 75px;
        a{
            color: #2d2d2d;
            font-size: 14px;
            position: relative;
            text-decoration: none;
            padding-left: 15px;
            @media (max-width:767px){
                font-size: 12px;
            }
            &:after{
                content: '>';
                content: '\f105';
                position: absolute;
                left: 0px;
                top: 0px;
                font: normal normal normal 18px / 1 FontAwesome;
            }
            &:hover{
                text-decoration: underline;
                color: #8B1B2F;
            }
        }
    }
}
.footer-section {
    background: #004AAD;
    padding: 50px 0px 0px;
    @media (max-width:991px){
        margin-top: 90px;
    }
    .footer {
        display: flex;
        width: 100%;
        grid-gap: 50px;
        @media (max-width:767px){
            flex-direction: column;
            grid-gap: 40px;
        }
        .left-section {
            flex-basis: 40%;
            h3 {
                font-size: 20px;
                color: #fff;
                margin-bottom: 20px;
            }
            img {
                margin-bottom: 10px;
            }
            p {
                font-size: 14px;
                color: #fff;
                line-height: 24px;
                margin-bottom:30px;
            }
            ul.footer-social {
                display: flex;
                grid-column-gap: 25px;
                list-style-type: none;
                li {
                    a {
                        font-size: 20px;
                        color: #fff;
                        &:hover {
                            color: #BB1B2F;
                            transition: all 0.3s;
                        }
                    }
                }
            }
        }
        .right-section {
            flex-basis: 40%;
            .footer-menu {
                h3 {
                    font-size: 20px;
                    color: #fff;
                    margin-bottom: 20px;
                }
                p{
                    display: flex;
                    font-size: 14px;
                    color: #fff;
                    grid-gap: 12px;
                    margin-bottom: 15px;
                    line-height: 28px;
                    align-items: baseline;
                    width: 100%;
                }
                ul {
                    list-style-type: none;
                    display: grid;
                    grid-template-columns: repeat(2, 1fr);
                    grid-column-gap: 15px;
                    margin-bottom: 20px;
                    li {
                        margin-bottom: 15px;
                        color: #fff;
                        text-decoration: none;
                        a {
                            color: #fff;
                            text-decoration: none;
                            font-size: 14px;
                            &:hover {
                                text-decoration: underline;
                                transition: all 0.3s;
                            }
                        }
                    }
                }
            }
        }
    }
    .copyright {
        border-top: 1px solid #0675d7;
        margin-top: 30px;
        p {
            color: #fff;
            font-size: 12px;
            text-align: center;
            padding: 20px 0;
        }
    }
}
.inner-banner{
    position:relative;
    height: 300px;
    img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .banner-content{
        position: absolute;
        top: 35%;
        left: 0px;
        right: 0px;
        margin: auto;
        text-align: center;
        width: 100%;
         @media (max-width:1024px){
            top: 50%;
            transform: translateY(-50%);
         }
        h1{
            color: #fff;
            font-size: 48px;
            @media (max-width:1024px){
                font-size:28px;
            }
            @media (max-width:767px){
                font-size: 26px;
            }
        }
        .breadscrum {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 20px;
            @media (max-width:1024px){
                display: none;
            }
            ul {
                list-style-type: none;
                display: flex;
                li {
                    color: #fff !important;
                    font-size: 14px;
                    padding: 0 20px !important;
                    position: relative;
                    &:after {
                        content: '/';
                        position: absolute;
                        top: 0;
                        right: 0;
                    }
                    &:last-child {
                        &:after {
                            display: none !important;
                        }
                        a {
                            color: #8B1B2F !important;
                            font-weight: 600;
                            pointer-events: none;
                        }
                    }
                    a {
                        color: #fff !important;
                        font-size: 14px;
                        text-decoration: none;
                    }
                }
            }
        }
    } 
}
.company-info{
    color: #525252;
    font-size: 16px;
    margin: 50px 0px 30px;
    line-height: 28px;
    text-align: center;
}
.contnt-image-section {
    margin: 50px 0 100px;
    .inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-gap: 30px;
        margin-top: 100px;
        @media (max-width:767px){
            grid-template-columns: auto;
        }
        .left-content {
            h2 {
                margin-bottom: 20px;
                color: #004AAD;
                font-size: 36px;
                font-weight: 400;
            }
            h3 {
                margin-bottom: 20px;
                color: #004AAD;
                font-size: 26px;
                font-weight: 400;
            }
            p {
                color: #525252;
                font-size: 16px;
                margin-bottom: 15px;
                line-height: 28px;
            }
            a.morelink {
                color: #BB1B2F;
                margin-top: 15px;
                font-size: 16px;
                text-decoration: none;
                &:hover {
                    text-decoration: underline;
                }
            }
            
        }
        .rightimage {
            @media (max-width:767px){
                grid-row: 1;
            }
            img {
                width: 100%;
                border-radius: 5px;
            }
        }
    }
}
.morecontent span {
    display: none;
}
.morelink {
    display: block;
}
.fullwidth-content{
    margin: 50px 0 100px;
    h2{
        margin-bottom: 20px;
        color: #8B1B2F;
        font-size: 38px;
        font-weight: 400;
    }
    h3{
        margin-bottom: 20px;
        color: #004AAD;
        font-size: 26px;
        font-weight: 400;
    }
    p{
        color: #525252;
        font-size: 16px;
        margin-bottom: 15px;
        line-height: 28px;
    }
    .grid-images{
        display: grid;
        grid-gap: 20px;
        grid-template-columns: repeat(7, 1fr);
        @media (max-width:767px){
            grid-template-columns: repeat(4, 1fr);
        }
        .item{
            width: 100%;
            border:1px solid #D8D8D8;
            img{
                width: 100%;
            }
        }
    }
    .artical-section{
        .item {
            border-top: 1px solid #D8D8D8;
            padding: 25px 0px;
            position: relative;
            a {
                color: #8B1B2F;
                font-size: 16px;
                margin-bottom: 15px;
                line-height: 28px;
                font-weight: 400;
                text-decoration: none;
                display: block;
                &:hover {
                    text-decoration: underline;
                }
            }
            p {
                color: #515151;
                font-size: 14px;
                line-height: 28px;
                font-weight: 400;
                margin-bottom: 0px;
            }
        }
    }
    ul{
        padding-left:20px;
        margin-top: 20px;
        li{
            color: #525252;
            font-size: 16px;
            margin-bottom: 10px;
            line-height: 28px;
        }
    }
}
.innerpage-twosection {
    margin: 50px 0 100px;
    .inner {
        display: grid;
        grid-template-columns: 1fr 0.4fr;
        grid-gap: 2vw;
        margin-top: 50px;
        position:relative;
        @media (max-width:1024px){
            grid-template-columns:auto;
        }
        .left-content {
            h2 {
                margin-bottom: 20px;
                color: #8B1B2F;
                font-size: 36px;
                font-weight: 400;
                @media (max-width:767px){
                    font-size: 26px;
                }
            }
            h3 {
                margin-bottom: 20px;
                color: #004AAD;
                font-size: 26px;
                font-weight: 400;
                @media (max-width:767px){
                    font-size: 18px;
                }
            }
            p {
                color: #525252;
                font-size: 16px;
                margin-bottom: 15px;
                line-height: 28px;
            }
            ul{
                padding-left:20px;
                li{
                    color: #525252;
                    font-size: 16px;
                    margin-bottom: 10px;
                    line-height: 28px;
                }
            }
            .profile-section{
                display: flex;
                grid-gap: 20px;
                flex-wrap: wrap;
                .photo img{
                    width: 100%;
                    max-width: 200px;
                }
                .info{
                    h2{
                        font-size: 24px;
                        margin-bottom: 15px;
                    }
                    span{
                        font-style: italic;
                    }
                    p{
                        margin-bottom: 10px;
                    }
                }
            }
            .tabs {
                margin-top: 50px;
                ul#tabs-nav {
                    display: flex;
                    list-style-type: none;
                    grid-gap: 0;
                    padding: 0;
                    @media (max-width:767px){
                        flex-direction: column;
                    }
                    li {
                        margin-bottom: 0 !important;
                        border: 1px solid #E1E0DF;
                        margin: -1px;
                        position: relative;
                        z-index: 1;
                        align-items: center;
                        display: flex;
                        a {
                            text-decoration: none;
                            color: #004AAD;
                            font-size: 16px;
                            transition: all 0.3s;
                            padding: 10px 2vw;
                            font-weight: 500;
                            display: block;
                            background: #fff;
                            text-align: center;
                            width: 100%;
                        }
                    }
                    li.active {
                        border-bottom: 0;
                        a {
                            color: #BB1B2F;
                        }
                    }
                }
                #tabs-content {
                    padding: 20px;
                    border: 1px solid #E1E0DF;
                    margin: -2px -1px -1px;
                    background: #fff;
                    position: relative;
                    z-index: 0;
                    table {
                        tr {
                            td {
                                border: 1px solid #E1E0DF;
                                padding: 15px 20px;
                            }
                        }
                    }
                    p {
                        line-height: 28px;
                        font-size: 14px;
                    }
                    .more-pdf {
                        display: flex;
                        grid-gap: 20px;
                        a {
                            font-size: 14px;
                            text-decoration: underline;
                            color: #BB1B2F;
                            i {
                                margin-right: 8px;
                            }
                            &:hover {
                                text-decoration: none;
                            }
                        }
                    }
                }
            }
            .editorialboard-list{
                display: flex;
                grid-gap: 2vw;
                border-top: 1px solid #E1E0DF;
                padding-top: 30px;
                margin-top: 30px;
                .photo img{
                    width: 100%;
                    max-width: 200px;
                }
                .info{
                    h2{
                        font-size: 24px;
                        margin-bottom: 15px;
                    }
                    span{
                        font-style: italic;
                    }
                    p{
                        margin-bottom: 10px;
                    }
                    .readmore{
                        color: #8B1B2F;
                        font-size: 16px;
                        font-weight: 600;
                        margin-top: 30px;
                        display: block;
                        &:hover{
                            text-decoration: none;
                        }
                    }
                }
            }
            .currentissues-list {
                padding: 30px;
                margin-top: 30px;
                background: #fff;
                border: 1px solid #E1E0DF;
                border-radius: 10px;
                @media (max-width:767px){
                    padding: 15px;
                }
                &:hover{
                    background: #f2f2f5;
                }
                a {
                    color: rgb(139, 27, 47);
                    font-size: 18px;
                    margin-bottom: 15px;
                    line-height: 32px;
                    font-weight: 400;
                    display: block;
                    text-decoration: none;
                    &:hover {
                        text-decoration: underline;
                    }
                }
                ul {
                    display: flex;
                    flex-wrap: wrap;
                    margin: 20px 0 30px;
                    grid-gap: 20px;
                    li {
                        padding-right: 30px;
                        margin-bottom: 0px;
                        @media (max-width:767px){
                            width: 100%;
                        }
                    }
                }
                .more-pdf {
                    display: flex;
                    grid-gap: 20px;
                    a {
                        font-size: 14px;
                        text-decoration: underline;
                        i {
                            margin-right: 8px;
                        }
                        &:hover {
                            text-decoration: none;
                        }
                    }
                }
            }
            table.feetable {
                width: 100%;
                margin-top: 30px;
                thead{
                   tr {
                        th {
                            border: 1px solid #E1E0DF;
                            padding: 15px 20px;
                            text-align: left;
                        }
                    } 
                }
                tr {
                    td {
                        border: 1px solid #E1E0DF;
                        padding: 15px 20px;
                         text-align: left;
                        &:first-child{
                            color: #8B1B2F;
                            font-weight: 700;
                        }
                    }
                }
            }
            .issuesdetails-list {
                margin-top: 30px;
                background: #fff;
                border-top: 1px solid #E1E0DF;
                padding-top: 30px;
                span{
                    color: #fff;
                    background: #8B1B2F;
                    padding: 5px 10px;
                    font-size: 14px;
                    margin-bottom: 15px;
                    display: inline-block;
                    border-radius: 10px;
                    text-transform: uppercase;
                }
                h3 {
                    color: rgb(139, 27, 47);
                    font-size: 18px;
                    margin-bottom: 15px;
                    line-height: 32px;
                    font-weight: 400;
                    display: block;
                }
                ul {
                    display: flex;
                    flex-wrap: wrap;
                    margin: 20px 0 30px;
                    grid-gap: 20px;
                    li {
                        padding-right: 30px;
                        margin-bottom: 0px;
                        @media (max-width:767px){
                            width: 100%;
                        }
                    }
                }
            }
            button.accordion {
              width: 100%;
              background-color: #fff;
              border: none;
              outline: none;
              text-align: left;
              padding: 15px 35px 15px 20px;
              font-size: 18px;
              color: #8B1B2F;
              cursor: pointer;
              transition: background-color 0.2s linear;
              border: 1px solid #8B1B2F;
              margin-bottom: 5px;
              position: relative;
            }
            button.accordion:after {
              font-family: FontAwesome;
              content: "\f150";
              font-family: "fontawesome";
              font-size: 18px;
              float: right;
              right: 10px;
              position: absolute;
              top: 18px;
            }
            button.accordion.is-open:after {
              content: "\f151";
            }
            button.accordion.is-open{
                margin-bottom: 0px;
            }
            button.accordion:hover,
            button.accordion.is-open {
              background-color: #8B1B2F;
              color: #fff;
            }
            .accordion-content {
              background-color: #fff;
              border-left: 1px solid #E1E0DF;
              border-right: 1px solid #E1E0DF;
              padding: 0 20px;
              max-height: 0;
              overflow: hidden;
              transition: max-height 0.2s ease-in-out;
              .currentissues-list{
                margin-bottom: 30px;
              }
            }
        }
        .rightside-section {
            position:relative;
            width:371px;
            @media (max-width:767px){
                width:100%;
            }
            h2 {
                color: #004AAD;
                font-size: 24px;
                font-weight: 500;
                margin-bottom: 15px;
            }
            #sidebar.fixed {
                position: fixed;
                top: 0px;
                margin-top: 100px;
                width:371px;
                z-index: 9;
                @media (max-width:1024px){
                    width:100%;
                    position: relative !important;
                    top: 0px !important;
                }
            }
            #sidebar {
                @media (max-width:1024px){
                    position: relative !important;
                    top: 0px !important;
                }
            }
            .quicklinks{
                background: #f2f2f5;
                list-style-type: none;
                padding: 20px 20px;
                border-radius: 25px;
                width:371px;
                @media (max-width:767px){
                    width:100%;
                }
                ul {
                    list-style-type: none;
                    li {
                        margin-bottom:5px;
                        a {
                            color: #000;
                            display: block;
                            text-decoration: none;
                            position: relative;
                            padding: 15px 15px 15px 30px;
                            border-radius: 10px;
                            background:#fff;
                            transition: all .3s;
                            &:after {
                                content: '\f105';
                                position: absolute;
                                left: 15px;
                                top: 17px;
                                font: normal normal normal 18px / 1 FontAwesome;
                            }
                            &:hover {
                                background:#8B1B2F;
                                color: #fff;
                                transition: all .3s;
                            }
                        }
                    }
                    li.active a{
                        background:#8B1B2F;
                        color: #fff;
                    }
                }
            }
        }
    }
}
.alphabet-section {
    margin-top: 75px;
    .alphabettabs ul.alphabet-nav{
        list-style-type: none;
        padding: 0px;
        display: flex;
        grid-gap: 10px;
        flex-wrap: wrap;
        margin-bottom:50px;
        li{
            background: #f2f2f5;
            border-radius: 100px;
            padding: 3px;
            width: 35px;
            height: 35px;
            text-align:center;
            cursor:pointer;
            &:hover{
                background: #8B1B2F;
                a{
                    color: #fff;
                }
            }
            a{
                text-decoration: none;
                font-size: 12px;
                text-transform: uppercase;
                color: #000;
                font-weight: 600;
            }
        }
        li.active{
            background: #8B1B2F;
            a{
                color: #fff;
            }
        }
    }
    .item {
        display: flex;
        grid-gap: 25px;
        margin-bottom: 30px;
        border-bottom: 1px solid #D8D8D8;
        padding-bottom: 30px;
        &:last-child {
            border-bottom: 0;
        }
        .letter {
            width: 50px;
            height: 50px;
            background: #787878;
            border-radius: 100px;
            display: flex;
            align-items: center;
            text-align: center;
            justify-content: center;
            color: #fff;
            font-size: 20px;
            font-weight: 500;
        }
        .journal-links {
            flex: 1 1 0%;
            ul {
                list-style-type: none;
                padding: 0;
                li {
                    color: #525252;
                    font-size: 16px;
                    line-height: 28px;
                    margin-bottom: 5px;
                    &:last-child {
                        margin-bottom: 0;
                    }
                    a {
                        color: #BB1B2F;
                        text-decoration: none;
                        &:hover {
                            text-decoration: underline;
                        }
                    }
                }
            }
        }
    }
}

@media (max-width:767px){
    .social_fix, .share_side{
        display: none;
    }
    .mobilebanner{
        display: block;
    }
}
@media (max-width:991px){
    .mobile-hamburger{
        font-size: 22px;
        color: #212B5C;
        display: block;
        margin-right: 10px;
    }
}
.adderss-form {
    margin: 75px;
    @media (max-width:1024px){
        margin: 75px 0px;
    }
}
.adderss-form .inner-container {
    display: grid;
    grid-template-columns: 0.90fr 1fr;
    grid-gap: 20px;
    @media (max-width:767px){
       grid-template-columns: auto;
    }
}
.adderss-form .getintouch {
    background: #fff;
    border-radius: 5px;
    padding: 25px;
    box-sizing: border-box;
}
.adderss-form .getintouch h2 {
    margin-top: 0;
    color: #8B1B2F;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}
.adderss-form .getintouch p {
    font-size: 16px;
    line-height: 28px;
    color: #525252;
}
.adderss-form .getintouch .address {
    border-top: 1px solid #525252;
    padding-top: 40px;
    margin-top: 30px;
}
.adderss-form .getintouch .address .item {
    margin-bottom: 30px;
    padding-left: 70px;
    position: relative;
}
.adderss-form .getintouch .address .item {
    padding-left: 70px;
}
.adderss-form .getintouch .address .item .icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    color: #fff;
    justify-content: center;
    background: #8B1B2F;
    font-size: 20px;
    position: absolute;
    border-radius: 100px;
    padding: 15px;
    left: 0;
}
.adderss-form .getintouch .address .item .icon img {
    width: 100%;
}
.adderss-form .getintouch .address .item:last-child {
    margin-bottom: 0;
}
.adderss-form .getintouch .address .item h4 {
    margin-top: 0;
    color: #525252;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}
.adderss-form .getintouch .address .item p {
    margin-bottom: 0;
}
.form {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 30px;
    box-shadow: 0 0 7px 1px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
}
.form h2 {
    margin-top: 0;
    color: #004AAD;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}
.form p {
    font-size: 16px;
    line-height: 28px;
    color: #525252;
}
.form form {
    margin-top: 20px;
}
.form form .section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
    margin-bottom: 20px;
}
.form form .field {
    width: 100%;
    display: inline-block;
}
.form form .field input,
.form form .field select,
.form form .field textarea {
    width: 100%;
    border-radius: 5px;
    border: 1px solid #ccc;
    height: 45px;
    padding: 10px;
}
.form form .field textarea {
    height: 75px;
    margin: 20px 0px 30px;
}
.form form .get_btn{
    background: #8B1B2F;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    padding: 15px 30px 15px 30px;
    transition: all 0.3s;
    position: relative;
    margin-top: 20px;
    border-radius: 100px;
    display: table;
    border:0px;
}
.mobile_menu_icon {
    float: right;
    font-size:18px;
    font-weight: 600;
    color: #fff;
    margin:14px 15px 0px 0px;
    cursor: pointer;
    padding: 7px 12px;
    display:none;
    border-radius:2px;
    background: #073a7c;
}
.mobile_menu{
    width:100%;
    height:100%;
    background:#fff;
    overflow-y: auto;
    z-index:99999;
    position:fixed;
    display:block;
    top:-100%;
    transition:ease all .5s;
    /*border-right:2px solid #2259da;*/
}
.mslidemenu_close{
    width:100%;
    float:left;
    padding:20px 15px;
    cursor:pointer;
    color:#fff;
    text-transform:uppercase;
    font-size:18px;
    background:#004AAD;
}
.mslidemenu_close i{
    float:right;
}
ul.parent {
    list-style: none;
    width: 100%;
    float: left;
    margin-top:0px;
}
ul.parent li{
    width: 100%;
    float: left;
    position: relative;
}
ul.parent li a{
    display: inline;
    width: 100%;
    height:100%;
    outline:none;
    display:table;
    border-bottom:1px solid #f0f0f0;
    padding:14px 12px; 
    color: #333745;
    font-size: 14px;
    text-decoration: none;
    text-transform:uppercase;
    font-weight: bold;;
    position: relative;
}
ul.parent li span{
    color: #333745;
    font-size:20px;
    font-weight:bold;
    margin-top:0px;
    padding:0px;
    line-height:0px;
}
ul.parent li a:hover, .hpl_cats ul.parent li a:hover span {
    text-decoration: none;
    color: #2259da;
}
ul.parent ul {
    padding-right: 0px;
    list-style: none;
    display:none;
    background-color: #f1f1f1;
}
ul.parent ul li{
    background-color: #f1f1f1;
    position:relative;
}
ul.parent ul ul li{
    background-color: #fff;
}
ul.parent ul li:last-child{
    border-bottom: 0px dotted #ccc;
}
.menul li a span{
    position:absolute;
    float:right;
    right: 0px;
    z-index: 1;
    padding: 13px;
}
.menul li a span:before {
    position: absolute;
    top: -3px;
    right: 15px;
    font-size: 18px;
    content: '\f105';
    font: normal normal normal 22px / 1 FontAwesome;
    transition: all .5s;
}
.menul li.open a span:before {
    content: '\f107';
    transition: all .5s;
}

