/*=============================
	Global CSS 
===============================*/
body {
    font-weight: 400;
    font-size: 15px;
}

#scrollUp {
    bottom: 15px;
    right: 15px;
    padding: 10px 20px;
    background: #017071;
    color: #fff;
    font-size: 25px;
    width: 45px;
    height: 45px;
    text-align: center;
    line-height: 45px;
    padding: 0;
    border-radius: 3px;
    box-shadow: 0px 0px 10px #00000026;
}

#scrollUp:hover {
    background: #2C2D3F;
}

/* Color Plate */
.color-plate {
    position: fixed;
    display: block;
    z-index: 99998;
    padding: 20px;
    width: 245px;
    background: #fff;
    right: -245px;
    text-align: left;
    top: 30%;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
    -webkit-box-shadow: -3px 0px 25px -2px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: -3px 0px 25px -2px rgba(0, 0, 0, 0.2);
    box-shadow: -3px 0px 25px -2px rgba(0, 0, 0, 0.2);
}

.color-plate.active {
    right: 0;
}

.color-plate .color-plate-icon {
    position: absolute;
    left: -48px;
    width: 48px;
    height: 45px;
    line-height: 45px;
    font-size: 21px;
    border-radius: 5px 0 0 5px;
    background: #017071;
    text-align: center;
    color: #fff !important;
    top: 0;
    cursor: pointer;
    box-shadow: -4px 0px 5px #00000036;
}

.color-plate h4 {
    display: block;
    font-size: 15px;
    margin-bottom: 5px;
    font-weight: 500;
}

.color-plate p {
    font-size: 13px;
    margin-bottom: 15px;
    line-height: 20px;
}

.color-plate span {
    width: 42px;
    height: 35px;
    border-radius: 0;
    cursor: pointer;
    display: inline-block;
    margin-right: 3px;
}

.color-plate span:hover {
    cursor: pointer;
}

.color-plate span.color1 {
    background: #017071;
}

.color-plate span.color2 {
    background: #2196F3;
}

.color-plate span.color3 {
    background: #32B87D;
}

.color-plate span.color4 {
    background: #FE754A;
}

.color-plate span.color5 {
    background: #F82F56;
}

.color-plate span.color6 {
    background: #01B2B7;
}

.color-plate span.color7 {
    background: #6c5ce7;
}

.color-plate span.color8 {
    background: #85BA46;
}

.color-plate span.color9 {
    background: #273c75;
}

.color-plate span.color10 {
    background: #FD7272;
}

.color-plate span.color11 {
    background: #badc58;
}

.color-plate span.color12 {
    background: #44ce6f;
}

/*=============================
	End Global CSS 
===============================*/

/*===================
	Start Header CSS 
=====================*/
.header {
    background-color: #fff;
    position: relative;
}

.header .navbar-collapse {
    padding: 0;
}

/* Topbar */
.header .topbar {
    background-color: #fff;
    border-bottom: 1px solid #eee;
}

.header .topbar {
    padding: 15px 0;
}

.header .top-link {
    float: left;
}

.header .top-link li {
    display: inline-block;
    margin-right: 15px;
}

.header .top-link li:last-child {
    margin-right: 0px;
}

.header .top-link li a {
    color: #2C2D3F;
    font-size: 14px;
    font-weight: 400;
}

.header .top-link li:hover a {
    color: #017071;
}

.header .top-contact {
    float: right;
}

.header .top-contact li {
    display: inline-block;
    margin-right: 25px;
    color: #2C2D3F;
}

.header .top-contact li:last-child {
    margin-right: 0;
}

.header .top-contact li a {
    font-size: 14px;
}

.header .top-contact li a:hover {
    color: #017071;
}

.header .top-contact li i {
    color: #017071;
    margin-right: 8px;
}

.header .header-inner {
    background: rgba(256, 256, 256, 0.92);
    z-index: 999;
    width: 100%;
    backdrop-filter: blur(3px);
}

.get-quote {
    margin-top: 12px;
}

.get-quote .btn {
    color: #fff;
}

.header .logo {
    float: left;
    margin-top: 5px;
}

.header .navbar {
    background: none;
    box-shadow: none;
    border: none;
    margin: 0;
    height: 0px;
    min-height: 0px;
}

.header .nav li {
    margin-right: 15px;
    float: left;
    position: relative;
}

.header .nav li:last-child {
    margin: 0;
}

.header .nav li a {
    color: #2C2D3F;
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
    padding: 25px 12px;
    position: relative;
    display: inline-block;
    position: relative;
}

.header .nav li a::before {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    height: 3px;
    width: 0%;
    background: #017071;
    border-radius: 5px 5px 0 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.header .nav li.active a:before {
    opacity: 1;
    visibility: visible;
    width: 100%;
}

.header .nav li.active a {
    color: #017071;
}

.header .nav li:hover a:before {
    opacity: 1;
    width: 100%;
    visibility: visible;
}

.header .nav li:hover a {
    color: #017071;
}

.header .nav li a i {
    display: inline-block;
    margin-left: 1px;
    font-size: 13px;
}

/* Middle Header */
.header.style2 .header-inner {
    border-top: 1px solid #eee;
}

.header.style2 .logo {
    margin-top: 6px;
}

.header .middle-header {
    background: #fff;
    padding: 20px 0px;
}

.header .widget-main {
    float: right;
}

.header.style2 .get-quote {
    margin-top: 0;
}

.header .single-widget {
    position: relative;
    float: left;
    margin-right: 30px;
    padding-left: 55px;
}

.header .single-widget:last-child {
    margin: 0;
}

.header .single-widget .logo {
    margin: 0;
    padding: 0;
    margin-top: 7px;
}

.header .single-widget i {
    position: absolute;
    left: 0;
    top: 6px;
    height: 40px;
    width: 40px;
    line-height: 40px;
    color: #fff;
    background: #017071;
    border-radius: 4px;
    text-align: center;
    font-size: 15px;
}

.header .single-widget h4 {
    font-size: 15px;
    font-weight: 500;
}

.header .single-widget p {
    margin-bottom: 5px;
    text-transform: capitalize;
}

.header .single-widget.btn {
    margin-left: 0;
}

/* Dropdown Menu */
.header .nav li .dropdown {
    background: #fff;
    width: 220px;
    position: absolute;
    left: -20px;
    top: 100%;
    z-index: 999;
    -webkit-box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 3px 5px #3333334d;
    transform-origin: 0 0 0;
    transform: scaleY(0.2);
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    opacity: 0;
    visibility: hidden;
    top: 74px;
    border-left: 3px solid #017071;
}

.header .nav li:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
}

.header .nav li .dropdown li {
    float: none;
    margin: 0;
    border-bottom: 1px dashed #eee;
}

.header .nav li .dropdown li:last-child {
    border: none;
}

.header .nav li .dropdown li a {
    padding: 12px 15px;
    color: #666;
    display: block;
    font-weight: 400;
    text-transform: capitalize;
    background: transparent;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.header .nav li .dropdown li a:before {
    display: none;
}

.header .nav li .dropdown li:last-child a {
    border-bottom: 0px;
}

.header .nav li .dropdown li:hover a {
    color: #1A76D1;
}

.header .nav li .dropdown li a:hover {
    border-color: transparent;
    color: #017071;
}

/* Right Bar */
.header.style2 .main-menu {
    display: inline-block;
}

.header .right-bar {
    float: right;
}

.header .right-bar {
    padding-top: 20px;
}

.header .right-bar {
    display: inline-block;
}

.header .right-bar a {
    color: #fff;
    height: 35px;
    width: 35px;
    line-height: 35px;
    text-align: center;
    background: #017071;
    border-radius: 4px;
    display: block;
    font-size: 12px;
}

.header .right-bar li a:hover {
    color: #fff;
    background: #27AE60;
}

.header .search-top.active .search i:before {
    content: "\eee1";
    font-size: 15px;
}

/* Search */
.header .search-form {
    position: absolute;
    right: 0;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
    top: 74px;
    box-shadow: 0px 0px 10px #0000001c;
    border-radius: 4px;
    overflow: hidden;
    transform: scale(0);
}

.header .search-top.active .search-form {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.header .search-form input {
    width: 282px;
    height: 50px;
    line-height: 50px;
    padding: 0 70px 0 20px;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
    border-radius: 3px;
    border: none;
    background: #fff;
    color: #2C2D3F;
}

.header .search-form button {
    position: absolute;
    right: 0;
    height: 50px;
    top: 0;
    width: 50px;
    background: #1A76D1;
    border: none;
    color: #fff;
    border-radius: 0 4px 4px 0;
    border-left: 1px solid transparent;
}

.header .search-form button:hover {
    background: #fff;
    color: #1A76D1;
    border-color: #e6e6e6;
}

/* Header Sticky */
.header.sticky .header-inner {
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    bottom: initial;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
    animation: fadeInDown 0.5s both 0.1s;
    box-shadow: 0px 0px 13px #00000054;
}

/*=========================
	End Header CSS
===========================*/

/*===========================
	Start Hero Area CSS
=============================*/
.margin-top {
    margin-top: 78px;
}

.slider .single-slider {
    margin-top: 75px;
    height: fit-content;
    padding-bottom: 50px;
    padding-top: 50px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url('/img/cplj_background_white.jpg');
}

.slider .single-slider .text {
    margin-top: 60px;
}

.slider.index2 .single-slider .text {
    margin-top: 150px;
}

.slider .single-slider h1 {
    color: #2C2D3F;
    font-size: 38px;
    font-weight: 700;
    margin: 0;
    padding: 0;
    line-height: 42px;
}

.slider .single-slider h1 span {
    color: #017071;
}

.slider .single-slider p {
    color: #2C2D3F;
    margin-top: 27px;
    font-weight: 400;
}

.slider .single-slider .button {
    margin-top: 30px;
}

.slider .single-slider .btn {
    color: #fff;
    background: #017071;
    font-weight: 500;
    display: inline-block;
    margin: 0;
    margin-right: 10px;
}

.slider .single-slider .btn:last-child {
    margin: 0;
}

.slider .single-slider .btn.primary {
    background: #2C2D3F;
    color: #fff;
}

.slider .single-slider .btn.primary:before {
    background: #017071;
}

.slider .owl-carousel .owl-nav {
    margin: 0;
    position: absolute;
    top: 50%;
    width: 100%;
    margin-top: -25px;
}

.slider .owl-carousel .owl-nav div {
    height: 50px;
    width: 50px;
    line-height: 50px;
    text-align: center;
    background: #017071;
    color: #fff;
    font-size: 26px;
    position: absolute;
    margin: 0;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
    padding: 0;
    border-radius: 50%;
}

.slider .owl-carousel .owl-nav div:hover {
    background: #2C2D3F;
    color: #fff;
}

.slider .owl-carousel .owl-controls .owl-nav .owl-prev {
    left: 20px;
}

.slider .owl-carousel .owl-controls .owl-nav .owl-next {
    right: 20px;
}

/* Slider Animation */
.owl-item.active .single-slider h1 {
    animation: fadeInUp 1s both 0.6s;
}

.owl-item.active .single-slider p {
    animation: fadeInUp 1s both 1s;
}

.owl-item.active .single-slider .button {
    animation: fadeInDown 1s both 1.5s;
}

/*===========================
	End Hero Area CSS
=============================*/

/*=======================
	Start Blog CSS
=========================*/
.blog {
    background: #fff;
}

.blog .blog-title {
    text-align: center;
}

.blog .single-news {
    background: #fff;
    position: relative;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
    box-shadow: 0px 0px 10px #00000014;
}

.blog .single-news img {
    width: 100%;
    margin: 0;
    padding: 0;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.blog .single-news .news-head {
    position: relative;
    display: block;
    float: left;
    width: 100%;
    /* position: relative; */
    overflow: hidden;
}

.news-head img {
    object-fit: cover;
    overflow: hidden;
    height: 300px;
    width: 100% !important;

    float: left;
    vertical-align: middle;
}

.blog .single-news .news-content {
    text-align: left;
    background: #fff;
    z-index: 99;
    position: relative;
    padding: 30px;
    left: 0;
    z-index: 0;
}

.blog .single-news .news-content:before {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0%;
    background: #017071;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.blog .single-news:hover .news-content:before {
    opacity: 1;
    visibility: visible;
    width: 100%;
}

.blog .single-news .news-body h2 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 24px;
}

.blog .single-news .news-body h2 a {
    color: #2C2D3F;
    font-weight: 500;
}

.blog .single-news .news-body h2 a:hover {
    color: #017071;
}

.blog .single-news .news-content p {
    font-weight: 400;
    text-transform: capitalize;
    font-size: 13px;
    letter-spacing: 0px;
    line-height: 23px;
}

.blog .single-news .news-body .date {
    display: inline-block;
    font-size: 14px;
    margin-bottom: 5px;
    background: #017071;
    color: #fff;
    padding: 4px 15px;
    border-radius: 3px;
    font-size: 14px;
    margin-bottom: 10px;
}

.blog.grid .single-news {
    margin-top: 30px;
}

/* Blog Sidebar */
.main-sidebar {
    height: 100%;
    background: #fff;
}

.main-sidebar .single-widget {
    margin-bottom: 30px;
    padding: 35px;
    background: #fff;
    -webkit-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.10);
    -moz-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.10);
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.10);
    border-radius: 8px;
}

.main-sidebar .single-widget .title {
    position: relative;
    font-size: 18px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 30px;
    display: block;
    background: #fff;
    padding-left: 12px;
}

.main-sidebar .single-widget .part_title {
    position: relative;
    font-size: 15px;
    font-weight: 500;
    text-transform: capitalize;
    display: block;
    background: #fff;
}

.main-sidebar .single-widget .title::before {
    position: absolute;
    content: "";
    left: 0;
    bottom: -1px;
    height: 100%;
    width: 3px;
    background: #017071;
}

.main-sidebar .single-widget:last-child {
    margin: 0;
}

.main-sidebar .search {
    position: relative;
}

.main-sidebar .search input {
    width: 100%;
    height: 45px;
    box-shadow: none;
    text-shadow: none;
    font-size: 14px;
    border: none;
    color: #222;
    background: transparent;
    padding: 0 70px 0 20px;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
    border-radius: 0;
    border: 1px solid #eee;
    border-radius: 5px;
}

.main-sidebar .search .button {
    position: absolute;
    right: 30px;
    height: 44px;
    width: 50px;
    line-height: 45px;
    box-shadow: none;
    text-shadow: none;
    text-align: center;
    border: none;
    font-size: 14px;
    color: #fff;
    background: #017071;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
    border-radius: 0 5px 5px 0;
}

.main-sidebar .search .button:hover {
    background: #000;
}

/* Category List */
.main-sidebar .categor-list {
    margin-top: 15px;
}

.main-sidebar .categor-list li {
    margin-bottom: 10px;
}

.main-sidebar .categor-list li:last-child {
    margin-bottom: 0px;
}

.main-sidebar .categor-list li a {
    display: inline-block;
    color: #333;
    font-size: 14px;
}

.main-sidebar .categor-list li a:hover {
    color: #017071;
    padding-left: 7px;
}

.main-sidebar .categor-list li a i {
    display: inline-block;
    margin-right: 0px;
    font-size: 9px;
    transform: translateY(-1px);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.main-sidebar .categor-list li a:hover i {
    margin-right: 6px;
    opacity: 1;
    visibility: visible;
}

/* Recent Posts */
.main-sidebar .single-post {
    position: relative;
    border-bottom: 1px solid #ddd;
    display: inline-block;
    padding: 17px 0;
    display: block;
}

.main-sidebar .single-post:last-child {
    padding-bottom: 0px;
    border: none;
}

.main-sidebar .single-post .image img {
    float: left;
    width: 80px;
    height: 80px;
    margin-right: 20px;
    overflow: hidden;
    object-fit: none;
}

.main-sidebar .single-post .content {
    padding-left: 100px;
}

.main-sidebar .single-post #sidebar-publication {
    padding-left: 0px !important;
}

.main-sidebar .single-post .content h5 {
    line-height: 18px;
}

.main-sidebar .single-post .content h5 a {
    color: #2C2D3F;
    font-weight: 500;
    font-size: 14px;
    font-weight: 500;
    margin-top: 10px;
    display: block;
    margin-bottom: 10px;
    margin-top: 0;
}

.main-sidebar .single-post .content h5 a:hover {
    color: #017071;
}

.main-sidebar .single-post .content .comment li {
    color: #888;
    display: inline-block;
    margin-right: 15px;
    font-weight: 400;
    font-size: 14px;
}

.main-sidebar .single-post .content .comment li:last-child {
    margin-right: 0;
}

.main-sidebar .single-post .content .comment li i {
    display: inline-block;
    margin-right: 5px;
}

/* Blog Tags */
.main-sidebar .side-tags .tag {
    margin-top: 40px;
}

.main-sidebar .side-tags .tag li {
    display: inline-block;
    margin-right: 7px;
    margin-bottom: 20px;
}

.main-sidebar .side-tags .tag li a {
    background: #fff;
    color: #333;
    padding: 8px 14px;
    text-transform: capitalize;
    border-radius: 0;
    font-size: 13px;
    background: #F6F7FB;
    border-radius: 4px;
}

.main-sidebar .side-tags .tag a:hover {
    color: #fff;
    background: #017071;
    border-color: transparent;
}

/* News Single */
.news-single {
    padding: 0px 0 90px;
    background: #f8f8f8;
}

.news-single .single-main {
    background: #fff;
    padding: 30px;
    -webkit-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.10);
    -moz-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.10);
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.10);
    border-radius: 8px;
}

.news-single .news-title {
    font-size: 1.5rem;
    margin: 20px 0;
}

.news-single .news-title a {
    color: #252525;
    font-weight: 600;
}

.news-single .news-title a:hover {
    color: #017071;
}

/* Blog Meta */
.news-single {
    background: #fff;
}

.news-single .meta {
    margin-top: 25px;
    overflow: hidden;
    border-top: 1px solid #ebebeb;
    border-bottom: 1px solid #ebebeb;
    width: 100%;
    padding: 10px 0;
    margin-bottom: 15px;
}

.news-single .meta span {
    margin-right: 10px;
    display: inline-block;
}

.news-single .meta span:last-child {
    margin: 0;
}

.news-single .meta span,
.news-single .meta span a {
    color: #2C2D3F;
    font-weight: 400;
}

.cite-as {
    margin-left: 0.15em !important;
    margin-right: 0.1em !important;
}

#citation-wrapper {
    margin-left: 0px !important;
    margin-right: 0.1em !important;
}

.news-single .meta span i {
    margin-right: 5px;
    color: #017071;
}

.news-single .meta-left {
    float: left;
}

.news-single .meta-left .author img {
    width: 45px;
    height: 45px;
    border-radius: 100%;
    margin-right: 12px;
}

.news-single .meta-left .author {
    float: left;
    margin-top: 10px;
    width: 100%;
}

.news-single .meta-left span.date {
    margin-top: 10px;
}

.news-single .meta-right {
    float: left;
    margin-top: 10px;
    width: 100%;
}

.news-single .news-content {
    margin: 20px 0;
}

.news-single .news-content p {
    margin-bottom: 10px;
}

.news-single .news-content p:last-child {
    margin: 0;
}

.publication-text {
    font-family: 'Domine', serif;
    font-size: 14px;
    margin-bottom: 20px;
    cursor: text !important;
    margin-left: -15px;
}

.publication-text a:hover {
    color: black;
    text-decoration: underline;
}

.publication-text h1 {
    font-size: x-large;
    color: black;
    margin-left: 2.4rem;
    /* text-indent: -1.6rem; */
}

.publication-text h2 {
    font-size: large;
    color: black;
    margin-left: 2.4rem;
    /* text-indent: -1.6rem; */
}

.publication-text h3,
.publication-text h4,
.publication-text h5,
.publication-text h6 {
    font-size: larger;
    color: black;
    margin-left: 2.4rem;
    /* text-indent: -1.6rem; */
}

.publication-text p {
    margin-left: 4rem;
}

.publication-text li {
    padding-bottom: 0.7rem;
}

/* .news-single .publication-text ol {
    margin-left: -1.2rem;
} */

/* .news-single .publication-text span {

} */
/* Image Gallery */
.news-single .image-gallery {
    margin-bottom: 20px;
}

.news-single .image-gallery .single-image {
    overflow: hidden;
}

.news-single .image-gallery .single-image:hover img {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    transform: scale(1.2);
}

/* Blockqoute */
.news-single blockquote {
    /* background-image: url('img/blockqoute-bg.jpg'); */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 30px;
    overflow: hidden;
}

.news-single blockquote::before {
    opacity: 0.9;
}

.news-single .publication-text blockquote p {
    color: #fff;
    margin: 0;
    line-height: 26px;
    font-size: 15px;
    position: relative;
}

.news-single .blog-bottom {
    overflow: hidden;
}

/* Social Share */
.news-single .social-share {
    float: left;
}

.news-single .social-share li {
    float: left;
}

.news-single .social-share li span {
    padding-left: 5px;
}

.news-single .social-share li.facebook a {
    background: #5d82d1;
}

.news-single .social-share li.twitter a {
    background: #40bff5;
}

.news-single .social-share li.google-plus a {
    background: #eb5e4c;
}

.news-single .social-share li.linkedin a {
    background: #238cc8;
}

.news-single .social-share li.pinterest a {
    background: #e13138;
}

.news-single .social-share li a {
    padding: 10px 20px;
    display: block;
    color: #fff;
}

.news-single .social-share li a:hover {
    background: #2B343E;
}

/* Prev Next Button */
.news-single .prev-next {
    text-align-last: right;
    float: right;
}

.news-single .prev-next li {
    display: inline-block;
    padding: 0;
    margin-right: 5px;
}

.news-single .prev-next li:last-child {
    border: none;
}

.news-single .prev-next li a {
    display: block;
    padding: 0.2rem 0.5rem 0.2rem 0.5rem;
    height: 40px;
    line-height: 30px;
    text-align: center;
    border: 1px solid #c4c4c4;
    color: #555;
    border-radius: 4px;
}

.news-single .prev-next li a:hover {
    color: #fff;
    background: #017071;
    border-color: transparent;
}

/*===================
	End Blog CSS
=====================*/

/*=========================
   Start Contact Us CSS
===========================*/
.contact-us .inner {
    box-shadow: 0px 0px 10px #00000024;
    border-radius: 5px;
    overflow: hidden;
}

.contact-us .contact-us-left {
    width: 100%;
    height: 100%;
}

.contact-us .contact-us-form {
    padding: 50px 40px;
}

.contact-us .contact-us-form h2 {
    position: relative;
    font-size: 32px;
    color: #333;
    font-weight: 600;
    line-height: 27px;
    text-transform: capitalize;
    margin-bottom: 12px;
    padding-bottom: 20px;
    text-align: left;
}

.contact-us .contact-us-form h2:before {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    height: 2px;
    width: 50px;
    background: #017071;
}

.contact-us .contact-us-form p {
    font-size: 14px;
    color: #333;
    font-weight: 400;
    text-align: left;
    margin-bottom: 50px;
}

.contact-us .form {
    margin-top: 30px;
}

.contact-us .form .form-group {
    margin-bottom: 22px;
}

.contact-us .form .form-group input {
    width: 100%;
    height: 50px;
    border: 1px solid #eee;
    text-transform: capitalize;
    padding: 0px 18px;
    color: #555;
    font-size: 14px;
    font-weight: 400;
    border-radius: 4px;
}

.contact-us .form .form-group textarea {
    width: 100%;
    height: 100px;
    border: 1px solid #eee;
    text-transform: capitalize;
    padding: 18px;
    color: #555;
    font-size: 14px;
    font-weight: 400;
    border-radius: 4px;
}

.contact-us .form .form-group.login-btn {
    margin: 0;
}

.contact-us .form button {
    border: none;
}

.contact-us .form .btn {
    display: inline-block;
    margin-right: 10px;
    color: #fff;
    line-height: 20px;
    width: 100%;
}

.contact-us .form .btn:hover {
    background: #017071;
    color: #fff;
}

.contact-us .contact-us-form .checkbox {
    text-align: left;
    margin: 0;
    margin-top: 20px;
    display: inline-block;

}

.contact-us .contact-us-form .checkbox label {
    font-size: 14px;
    font-weight: 400;
    color: #333;
    position: relative;
    padding-left: 20px;
}

.contact-us .contact-us-form .checkbox label:hover {
    cursor: pointer;
}

.contact-us .contact-us-form .checkbox label input {
    display: none;
}

.contact-us .contact-us-form .checkbox label::before {
    position: absolute;
    content: "";
    left: 0;
    top: 5px;
    width: 15px;
    height: 15px;
    border: 1px solid #017071;
    border-radius: 100%;
}

.contact-us .contact-us-form .checkbox label::after {
    position: relative;
    content: "";
    width: 7px;
    height: 7px;
    left: -16px;
    top: -15px;
    opacity: 0;
    visibility: hidden;
    transform: scale(0);
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
    display: block;
    font-size: 9px;
    background: #017071;
    border-radius: 100%;
}

.contact-us .contact-us-form .checkbox label.checked::after {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.contact-us .contact-info {
    margin-top: 50px;
}

.contact-us .single-info {
    background: #017071;
    padding: 40px 60px;
    height: 150px;
    border-radius: 10px;
    position: relative;
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
}

.contact-us .single-info:before {
    position: absolute;
    z-index: -1;
    content: '';
    bottom: -10px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 80%;
    height: 90%;
    background: #017071;
    opacity: 0;
    filter: blur(10px);
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
}

.contact-us .single-info:hover:before {
    opacity: 0.8;
}

.contact-us .single-info:hover {
    transform: translateY(-5px);
}

.contact-us .single-info i {
    font-size: 42px;
    color: #fff;
    position: absolute;
    left: 40px;
}

.contact-us .single-info .content {
    margin-left: 45px;
}

.contact-us .single-info .content h3 {
    color: #fff;
    font-size: 18px;
    font-weight: 600;

}

.contact-us .single-info .content p {
    color: #fff;
    margin-top: 5px;
}

/* Google Map */
.contact-us #myMap {
    height: 100%;
    width: 100%;
}

/*=========================
   End Contact Us CSS
===========================*/

/*========================
	Start Error 404 CSS
==========================*/
.error-page {
    text-align: center;
    background: #fff;
    border-top: 1px solid #eee;
}

.error-page .error-inner {
    display: inline-block;
}

.error-page .error-inner h1 {
    font-size: 140px;
    text-shadow: 3px 5px 2px #3333;
    color: #017071;
    font-weight: 700;
}

.error-page .error-inner h1 span {
    display: block;
    font-size: 25px;
    color: #333;
    font-weight: 600;
    text-shadow: none;
}

.error-page .error-inner p {
    padding: 20px 15px;
}

.error-page .search-form {
    width: 100%;
    position: relative;
}

.error-page .search-form input {
    width: 400px;
    height: 50px;
    padding: 0px 78px 0 30px;
    border: none;
    background: #f6f6f6;
    border-radius: 5px;
    display: inline-block;
    margin-right: 10px;
    font-weight: 400;
    font-size: 14px;
}

.error-page .search-form input:hover {
    padding-left: 35px;
}

.error-page .search-form .btn {
    width: 80px;
    height: 50px;
    border-radius: 5px;
    cursor: pointer;
    background: #017071;
    display: inline-block;
    position: relative;
    top: -2px;
}

.error-page .search-form .btn i {
    font-size: 16px;
}

/*========================
	End Error 404 CSS
==========================*/

/*===========================
	Start Mail Success CSS
=============================*/
.mail-seccess {
    text-align: center;
    background: #fff;
    border-top: 1px solid #eee;
}

.mail-seccess .success-inner {
    display: inline-block;
}

.mail-seccess .success-inner h1 {
    font-size: 100px;
    text-shadow: 3px 5px 2px #3333;
    color: #017071;
    font-weight: 700;
}

.mail-seccess .success-inner h1 span {
    display: block;
    font-size: 25px;
    color: #333;
    font-weight: 600;
    text-shadow: none;
    margin-top: 20px;
}

.mail-seccess .success-inner p {
    padding: 20px 15px;
}

.mail-seccess .success-inner .btn {
    color: #fff;
}

/*===========================
	End Mail Success CSS
=============================*/

/*=========================
	Start Newsletter CSS
===========================*/
.newsletter {
    background: #EDF2FF;
}

.newsletter .subscribe-text h6 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #2C2D3F;
}

.newsletter .subscribe-form {
    position: relative;
}

.newsletter .common-input {
    height: 60px;
    width: 300px;
    border: none;
    color: #333;
    box-shadow: none;
    text-shadow: none;
    border-radius: 5px;
    padding: 0px 25px;
    font-weight: 500;
    font-size: 14px;
    background: #fff;
    font-weight: 400;
}

.newsletter .btn {
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
    display: inline-block;
    height: 60px;
    line-height: 60px;
    padding: 0;
    width: 180px;
    position: relative;
    top: -2px;
    border-radius: 5px;
    margin-left: 10px;
    font-size: 13px;
    font-weight: 500;
    box-shadow: 0px 5px 15px rgba(188, 199, 255, 0.75);
}

.newsletter .btn:before {
    border-radius: 5px;
}

.newsletter .button:hover {
    box-shadow: none;
}

/*=========================
	End Newsletter CSS
===========================*/

/*=========================
	Start About Us CSS
===========================*/
.about-area {
    position: relative;
    z-index: 1;
}

.about-image {
    width: 100%;
    height: 100%;
    /* background-image: url(img/about-img.jpg); */
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.about-image img {
    display: none;
}

.about-content {
    max-width: 555px;
    padding-top: 60px;
    padding-bottom: 60px;
    padding-left: 50px;
}

.about-content span {
    display: block;
    margin-bottom: 5px;
    color: #017071;
    font-size: 17px;
}

.about-content h2 {
    margin-bottom: 0;
    line-height: 1.3;
    font-size: 40px;
    font-weight: 600;
}

.about-content p {
    margin-top: 10px;
    margin-bottom: 0;
}

.about-content ul {
    padding-left: 0;
    list-style-type: none;
    margin-top: 25px;
    margin-bottom: 0;
}

.about-content ul li {
    margin-bottom: 16px;
    position: relative;
    padding-left: 34px;
}

.about-content ul li i {
    width: 25px;
    height: 25px;
    line-height: 25px;
    text-align: center;
    border-radius: 100%;
    background-color: #0170712B;
    color: #017071;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    display: inline-block;
    font-size: 11px;
    position: absolute;
    left: 0;
    top: -2px;
}

.about-content ul li:hover i {
    background-color: #017071;
    color: #ffffff;
}

.about-content ul li:last-child {
    margin-bottom: 0;
}

.about-content .btn {
    margin-top: 30px;
}

/* Start Our Vision Area CSS */
.our-vision-area {
    position: relative;
    z-index: 1;
    padding-bottom: 70px;
}

.single-vision-box {
    margin-bottom: 30px;
    background-color: #ffffff;
    -webkit-box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.2);
    box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.2);
    padding: 25px 20px;
    position: relative;
    z-index: 1;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    overflow: hidden;
}

.single-vision-box .icon {
    margin-bottom: 20px;
    text-align: center;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 100%;
    background-color: #017071;
    color: #ffffff;
    font-size: 25px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.single-vision-box h3 {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    margin-bottom: 0;
    position: relative;
    font-size: 20px;
    font-weight: 700;
}

.single-vision-box p {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    margin-top: 12px;
    margin-bottom: 0;
}

.single-vision-box::before {
    width: 0;
    height: 100%;
    z-index: -1;
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    background-color: #017071;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.single-vision-box::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    border: 10px solid #ffffff;
    left: -80px;
    bottom: -80px;
    border-radius: 50%;
    z-index: -1;
    opacity: 0.15;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.single-vision-box:hover {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
}

.single-vision-box:hover::before {
    width: 100%;
}

.single-vision-box:hover .icon {
    background-color: #fff;
    color: #017071;
}

.single-vision-box:hover h3 {
    color: #ffffff;
}

.single-vision-box:hover p {
    color: #ffffff;
}

.single-vision-box:hover::after {
    left: -50px;
    bottom: -50px;
}

/* End Our Vision CSS */

/* Our Mission Area CSS */
.our-mission-area {
    position: relative;
    z-index: 1;
}

.our-mission-image {
    width: 100%;
    height: 100%;
    /* background-image: url(img/mission-img.jpg); */
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.our-mission-image img {
    display: none;
}

.our-mission-content {
    max-width: 555px;
    margin-left: auto;
    padding-top: 60px;
    padding-bottom: 60px;
    padding-right: 50px;
}

.our-mission-content .sub-title {
    display: block;
    margin-bottom: 5px;
    color: #017071;
    font-size: 17px;
}

.our-mission-content h2 {
    margin-bottom: 0;
    line-height: 1.3;
    font-size: 40px;
    font-weight: 600;
}

.our-mission-content p {
    margin-top: 10px;
    margin-bottom: 0;
}

.our-mission-content ul {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-left: 0;
    list-style-type: none;
    margin-right: -15px;
    margin-left: -15px;
    margin-bottom: 0;
    margin-top: 0;
}

.our-mission-content ul li {
    -ms-flex: 0 0 50%;
    -webkit-box-flex: 0;
    flex: 0 0 50%;
    max-width: 50%;
    color: #7d7d7d;
    font-size: 14.5px;
    line-height: 1.7;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 25px;
}

.our-mission-content ul li .icon {
    margin-bottom: 13px;
    -webkit-box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.3);
    box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.3);
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    color: #017071;
    font-size: 20px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.our-mission-content ul li span {
    display: block;
    color: #121521;
    text-transform: uppercase;
    margin-bottom: 5px;
    font-weight: 600;
    font-size: 17px;
}

.our-mission-content ul li:hover .icon {
    background-color: #017071;
    color: #ffffff;
    border-radius: 100%;
}

/* End Our Mission CSS */

/*=========================
	End About Us CSS
===========================*/

/*=========================
	Start Footer CSS
===========================*/
.footer {
    position: relative;
}

.footer .footer-top {
    padding: 25px 0px 0px 0px;
    position: relative;
    background: white;
}

.footer .footer-top:before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: #000;
    opacity: 0.05;
}

.footer .single-footer .social {
    margin-top: 25px;
}

.footer .single-footer .social li {
    display: inline-block;
    margin-right: 10px;
}

.footer .single-footer .social li:last-child {
    margin-right: 0px;
}

.footer .single-footer .social li a {
    height: 34px;
    width: 34px;
    line-height: 34px;
    text-align: center;
    border: 1px solid #fff;
    text-align: center;
    padding: 0;
    border-radius: 100%;
    display: block;
    color: #fff;
    font-size: 16px;
}

.footer .single-footer .social li a:hover {
    color: #017071;
    background: #fff;
    border-color: transparent;
}

.footer .single-footer.f-link li a i {
    margin-right: 10px;
}

.footer .single-footer.f-link li {
    display: block;
    margin-bottom: 12px;
}

.footer .single-footer.f-link li:last-child {
    margin: 0;
}

.footer .single-footer.f-link li a {
    display: block;
    color: #fff;
    text-transform: capitalize;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
    font-weight: 400;
}

.footer .single-footer.f-link li a:hover {
    padding-left: 8px;
}

.footer .single-footer h2 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 40px;
    padding-bottom: 20px;
    text-transform: capitalize;
    position: relative;
}

.footer .single-footer h2::before {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0px;
    height: 3px;
    width: 50px;
    background: #fff;
}

.footer .single-footer .time-sidual {
    margin-top: 15px;
}

.footer .single-footer .time-sidual {
    overflow: hidden;
}

.footer .single-footer .time-sidual li {
    display: block;
    color: #fff;
    width: 100%;
    margin-bottom: 5px;
}

.footer .single-footer .time-sidual li span {
    display: inline-block;
}

.footer .single-footer .day-head .time {
    font-weight: 400;
    float: right;
}

.footer .single-footer p {
    color: #fff;
}

.footer .single-footer .newsletter-inner {
    margin-top: 20px;
    position: relative;
}

.footer .single-footer .newsletter-inner input {
    background: transparent;
    border: 1px solid #fff;
    height: 50px;
    line-height: 42px;
    width: 100%;
    margin-right: 15px;
    color: #fff;
    padding-left: 18px;
    padding-right: 70px;
    display: inline-block;
    border-radius: 0px;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
    font-weight: 400;
    border-radius: 5px;
}

.footer .single-footer .newsletter-inner input:hover {
    padding-left: 22px;
}

.footer input::-webkit-input-placeholder {
    opacity: 1;
    color: #fff !important;
}

.footer input::-moz-placeholder {
    opacity: 1;
    color: #fff !important;
}

.footer input::-ms-input-placeholder {
    opacity: 1;
    color: #fff !important;
}

.footer input::input-placeholder {
    opacity: 1;
    color: #fff !important;
}

.footer .single-footer .newsletter-inner .button {
    position: absolute;
    right: 0;
    top: 0;
    height: 50px;
    line-height: 50px;
    width: 50px;
    background: #fff;
    border-left: 1px solid #fff;
    text-shadow: none;
    box-shadow: none;
    display: inline-block;
    border-radius: 0px;
    border: none;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
    border-radius: 0 5px 5px 0;
    color: #017071;
    font-size: 25px;
}

.footer .single-footer .newsletter-inner .button i {
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.footer .single-footer .newsletter-inner .button:hover i {
    color: #2C2D3F;
}

.footer .copyright {
    background: #017071;
    padding: 25px 0px 25px 0px;
    text-align: center;
}

.footer .copyright .copyright-content p {
    color: #fff;
}

.footer .copyright .copyright-content p a {
    color: #fff;
    font-weight: 400;
    text-decoration: underline;
    display: inline-block;
    margin-left: 4px;
}

/*=========================
	End Footer CSS
===========================*/

/* =====================================
Template Name: 	Mediplus.
Author Name: Naimur Rahman
Website: http://wpthemesgrid.com/
Description: Mediplus - Doctor HTML Template.
Version:	1.1
========================================*/

/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
html {
    font-family: 'Poppins', sans-serif;
    -moz-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

html,
body {
    height: 100%;
    margin: 0;
}

* {
    padding: 0;
    margin: 0;
}

body {
    margin: 0;
}

img {
    max-width: 100%;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
    display: block;
}

audio,
canvas,
progress,
video {
    display: inline-block;
    vertical-align: baseline;
}

audio:not([controls]) {
    display: none;
    height: 0;
}

[hidden],
template {
    display: none;
}

a {
    text-decoration: none;
}

a:active,
a:hover {
    outline: 0;
    text-decoration: none;
}

.slicknav_menu {
    display: none;
}

.table {
    display: table;
    width: 100%;
    height: 100%;
}

.table-cell {
    display: table-cell;
    vertical-align: middle;
}

img {
    border: 0;
}

svg:not(:root) {
    overflow: hidden;
}

figure {
    margin: 1em 40px;
}

hr {
    box-sizing: content-box;
    height: 0;
}

pre {
    overflow: auto;
}

button,
input,
optgroup,
select,
textarea {
    color: inherit;
    font: inherit;
    margin: 0;
}

button {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
    cursor: pointer;
}

button[disabled],
html input[disabled] {
    cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

input {
    line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
    box-sizing: border-box;
    padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

legend {
    border: 0;
    padding: 0;
}

textarea {
    overflow: auto;
}

optgroup {
    font-weight: bold;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

td,
th {
    padding: 0;
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
optgroup,
textarea {
    color: #424646;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    margin: 0;
}

p {
    color: #757575;
    margin: 0;
    line-height: 24px;
    font-weight: 400;
    margin-bottom: 15px;
}

a,
button,
input {
    font-weight: 400;
}

img,
a,
input,
h1,
h2,
h3,
h4,
h5,
h6 {
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

dfn,
cite,
em,
i {
    font-style: italic;
}

address {
    margin: 0 0 1.5em;
}

pre {
    background: #eee;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 1.6em;
    max-width: 100%;
    overflow: auto;
    padding: 1.6em;
}

code,
kbd,
tt,
var {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-size: 0.9375rem;
}

abbr,
acronym {
    border-bottom: 1px dotted #666;
    cursor: help;
}

mark,
ins {
    background: #fff9c0;
    text-decoration: none;
}

big {
    font-size: 125%;
}


h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 500;
    color: #2C2D3F;
    margin-bottom: 1rem;
}

a,
button {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    outline: none;
    box-shadow: none;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

@-webkit-keyframes dash {
    62.5% {
        opacity: 0;
    }

    to {
        stroke-dashoffset: 0;
    }
}

@keyframes dash {
    62.5% {
        opacity: 0;
    }

    to {
        stroke-dashoffset: 0;
    }
}

.btn {
    color: #fff !important;
    padding: 13px 25px;
    font-size: 14px;
    font-weight: 500;
    background: #017071;
    position: relative;
    box-shadow: none;
    display: inline-block;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    border: none;
    border-radius: 0;
    border-radius: 4px;
}

.btn:hover {
    color: #fff;
}

.btn:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2C2D3F;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 50%;
    transform-origin: 50%;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
    border-radius: 4px;
}

.btn:hover:before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}

.section {
    padding: 25px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 250px;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 24px;
    position: relative;
    color: #2C2D3F;
}

.section-title p {
    font-size: 15px;
    color: #888;
    margin-top: 15px;
}

/* Overlay */
.overlay {
    position: relative;
}

.overlay:before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: #468364;
    opacity: 0.8;
}

/* Pagination CSS */
.pagination {
    text-align: left;
    margin: 50px 0 0 0;
    display: block;
}

.pagination.center {
    text-align: center;
}

.pagination .pagination-list li {
    margin-right: 5px;
    display: inline-block;
}

.pagination .pagination-list li:last-child {
    margin-right: 0px;
}

.pagination .pagination-list li a {
    background: #F6F7FB;
    color: #666;
    padding: 6px 18px;
    font-weight: 400;
    border: 1px solid #e1e1e1;
    font-size: 16px;
    border-radius: 4px;
}

.pagination .pagination-list li.active a,
.pagination .pagination-list li:hover a {
    background: #468364;
    color: #fff;
    border-color: transparent;
}

.pagination .pagination-list li a i {
    font-size: 15px;
}

.blog-grids.pagination {
    margin-top: 50px;
    text-align: center;
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
html {
    box-sizing: border-box;
}

*,
*:before,
*:after {
    /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
    box-sizing: inherit;
}

body {
    background: #fff;
    /* Fallback for when there is no custom background color defined. */
    position: relative;
}

hr {
    background-color: #ccc;
    border: 0;
    height: 1px;
    margin-bottom: 1.5em;
}

ul,
ul li {
    list-style: none;
    padding: 0;
    margin: 0;
}

li>ul,
li>ol {
    margin-bottom: 0;
    margin-left: 1.5em;
}

dt {
    font-weight: bold;
}

dd {
    margin: 0 1.5em 1.5em;
}

img {
    height: auto;
    max-height: 500px;
    /* Make sure images are scaled correctly. */
    max-width: 100%;
    /* Adhere to container width. */
}

figure {
    margin: 1em 0;
    /* Extra wide images within figure tags don't overflow the content area. */
}

table {
    margin: 0 0 1.5em;
    width: 100%;
}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
    border: 1px solid;
    border-color: #ccc #ccc #bbb;
    border-radius: 3px;
    background: #e6e6e6;
    color: rgba(0, 0, 0, 0.8);
    line-height: 1;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
    color: #666;
    border: 1px solid #ccc;
    border-radius: 3px;
    padding: 7px;
    font-weight: 400;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
    color: #111;
    font-weight: 400;
}

select {
    border: 1px solid #ccc;
    margin-left: 5px;
}

textarea {
    width: 100%;
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a {
    color: inherit;
}

a:visited {
    color: inherit;
}

a:hover,
a:focus,
a:active {
    color: inherit;
}

a:hover,
a:active {
    outline: 0;
}

/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/
.main-navigation {
    clear: both;
    display: block;
    float: left;
    width: 100%;
}

.main-navigation ul {
    display: none;
    list-style: none;
    margin: 0;
    padding-left: 0;
}

.main-navigation ul ul {
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
    float: left;
    position: absolute;
    top: 100%;
    left: -999em;
    z-index: 99999;
}

.main-navigation ul ul ul {
    left: -999em;
    top: 0;
}

.main-navigation ul ul li:hover>ul,
.main-navigation ul ul li.focus>ul {
    left: 100%;
}

.main-navigation ul ul a {
    width: 200px;
}

.main-navigation ul li:hover>ul,
.main-navigation ul li.focus>ul {
    left: auto;
}

.main-navigation li {
    float: left;
    position: relative;
}

.main-navigation a {
    display: block;
    text-decoration: none;
}

@media screen and (min-width: 37.5em) {
    .menu-toggle {
        display: none;
    }

    .main-navigation ul {
        display: block;
    }
}

.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
    margin: 0 0 1.5em;
    overflow: hidden;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
    float: left;
    width: 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
    float: right;
    text-align: right;
    width: 50%;
}

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
    /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    clip-path: none;
    color: #21759b;
    display: block;
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: bold;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
    /* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
    outline: 0;
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
    display: inline;
    float: left;
    margin-right: 1.5em;
}

.alignright {
    display: inline;
    float: right;
    margin-left: 1.5em;
}

.aligncenter {
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
    content: "";
    display: table;
    table-layout: fixed;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
    clear: both;
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widget {
    margin: 0 0 1.5em;
    /* Make sure select elements fit in widgets. */
}

.widget select {
    max-width: 100%;
}

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.sticky {
    display: block;
}

.hentry {
    margin: 0 0 1.5em;
}

.updated:not(.published) {
    display: none;
}

.page-content,
.entry-content,
.entry-summary {
    margin: 1.5em 0 0;
}

.page-links {
    clear: both;
    margin: 0 0 1.5em;
}

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comment-content a {
    word-wrap: break-word;
}

.bypostauthor {
    display: block;
}

/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
    /* Theme Footer (when set to scrolling) */
    display: none;
}

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
.infinity-end.neverending .site-footer {
    display: block;
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
    border: none;
    margin-bottom: 0;
    margin-top: 0;
    padding: 0;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
    max-width: 100%;
}

/* Video Animations */

@-webkit-keyframes waves {
    0% {
        -webkit-transform: scale(0.2, 0.2);
        transform: scale(0.2, 0.2);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }

    50% {
        opacity: 0.9;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
    }

    100% {
        -webkit-transform: scale(0.9, 0.9);
        transform: scale(0.9, 0.9);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }
}

@keyframes waves {
    0% {
        -webkit-transform: scale(0.2, 0.2);
        transform: scale(0.2, 0.2);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }

    50% {
        opacity: 0.9;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
    }

    100% {
        -webkit-transform: scale(0.9, 0.9);
        transform: scale(0.9, 0.9);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }
}



@-webkit-keyframes lineanim {
    50% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
        -webkit-transform-origin: top left;
        transform-origin: top left
    }

    50.1% {
        -webkit-transform-origin: bottom left;
        transform-origin: bottom left
    }

    100% {
        -webkit-transform: scaleY(0);
        transform: scaleY(0);
        -webkit-transform-origin: bottom left;
        transform-origin: bottom left
    }
}

@keyframes lineanim {
    50% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
        -webkit-transform-origin: top left;
        transform-origin: top left
    }

    50.1% {
        -webkit-transform-origin: bottom left;
        transform-origin: bottom left
    }

    100% {
        -webkit-transform: scaleY(0);
        transform: scaleY(0);
        -webkit-transform-origin: bottom left;
        transform-origin: bottom left
    }
}

/*!
 * SlickNav Responsive Mobile Menu v1.0.10
 * (c) 2016 Josh Cope
 * licensed under MIT
 */
.slicknav_btn,
.slicknav_nav .slicknav_item {
    cursor: pointer;
}

.slicknav_menu,
.slicknav_menu * {
    box-sizing: border-box;
}

.slicknav_btn {
    position: relative;
    display: block;
    float: right;
    padding: .438em .625em;
    line-height: 1.125em
}

.slicknav_btn .slicknav_icon-bar+.slicknav_icon-bar {
    margin-top: .188em
}

.slicknav_menu .slicknav_menutxt {
    display: block;
    line-height: 1.188em;
    float: left;
    color: #fff;
    font-weight: 700;
}

.slicknav_menu .slicknav_icon {
    float: left;
    width: 1.125em;
    height: .875em;
    margin: .188em 0 0 .438em
}

.slicknav_menu .slicknav_icon:before {
    background: 0 0;
    width: 1.125em;
    height: .875em;
    display: block;
    content: "";
    position: absolute
}

.slicknav_menu .slicknav_no-text {
    margin: 0
}

.slicknav_menu .slicknav_icon-bar {
    display: block;
    width: 1.125em;
    height: .125em;
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    border-radius: 1px;
    -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, .25);
    -moz-box-shadow: 0 1px 0 rgba(0, 0, 0, .25);
    box-shadow: 0 1px 0 rgba(0, 0, 0, .25)
}

.slicknav_menu:after,
.slicknav_menu:before {
    content: " ";
    display: table
}

.slicknav_menu:after {
    clear: both
}

.slicknav_nav li,
.slicknav_nav ul {
    display: block
}

.slicknav_nav .slicknav_arrow {
    font-size: .8em;
    margin: 0 0 0 .4em
}

.slicknav_nav .slicknav_item a {
    display: inline
}

.slicknav_nav .slicknav_row,
.slicknav_nav a {
    display: block
}

.slicknav_nav .slicknav_parent-link a {
    display: inline
}

.slicknav_menu {
    font-size: 16px;
    background: #4c4c4c;
    padding: 5px
}

.slicknav_nav,
.slicknav_nav ul {
    list-style: none;
    overflow: hidden;
    padding: 0
}

.slicknav_menu .slicknav_icon-bar {
    background-color: #fff
}

.slicknav_btn {
    margin: 5px 5px 6px;
    text-decoration: none;
    text-shadow: 0 1px 1px rgba(255, 255, 255, .75);
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    background-color: #222
}

.slicknav_nav {
    clear: both;
    color: #fff;
    margin: 0;
    font-size: .875em
}

.slicknav_nav ul {
    margin: 0 0 0 20px
}

.slicknav_nav .slicknav_row,
.slicknav_nav a {
    padding: 5px 10px;
    margin: 2px 5px
}

.slicknav_nav a {
    text-decoration: none;
    color: #fff
}

.slicknav_nav .slicknav_txtnode {
    margin-left: 15px
}

.slicknav_nav .slicknav_item a,
.slicknav_nav .slicknav_parent-link a {
    padding: 0;
    margin: 0
}

.slicknav_brand {
    float: left;
    color: #fff;
    font-size: 18px;
    line-height: 30px;
    padding: 7px 12px;
    height: 44px
}

#cplj-divider {
    background-color: #017071 !important;
    border: 0;
    height: 5px;
    margin-bottom: 1em;
    margin-top: 1em;
}

.chapter-selection {
    border-bottom: 1px solid #ebebeb;
}

/* c5 */
.text-heading {
    display: block;
    color: black;
    font-weight: 600;
    margin-left: 4rem;
    text-indent: -4.2rem;
    margin-bottom: 1rem;
    margin-top: 1rem;
}

/* c26 c8*/
.text-subheading {
    display: block;
    color: black;
    font-weight: 600;
    margin-left: 1.1rem;
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.news {
    padding-bottom: 75px;
}

#supported_by {
    font-size: 8pt;
}

.page-buttons {
    text-align: left;
    align-content: center;
}

.right {
    text-align: right;
}



.download {
    margin: 1rem 5px 1rem 5px;
}

.author a {
    text-decoration: underline;
}

.author a:hover {
    color: #017071;
    text-decoration: underline;
}


html {
    scroll-padding-top: 8rem;
}

.accordion-wrapper {
    display: block;
    /* box-shadow: 0px 2px 4px 0px rgba(0,0,0,0.2); */
    /* max-width: 500px; */
    margin: 0 auto;
    /* margin-top: 12px; */
    /* margin-bottom: 12px; */
}

.accordion+.title {
    user-select: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px;
}

.accordion~.title strong {
    line-height: 24px;
}

.accordion~.title .side-icon {
    display: block;
}

.accordion:checked~.title .side-icon {
    display: none;
}

.accordion~.title .down-icon {
    display: none;
}

.accordion:checked~.title .down-icon {
    display: block;
}

.accordion~.content {
    display: none;
    padding-bottom: 3px;
    padding-top: 3px;
    cursor: pointer;
}

.accordion:checked~.content,
.toc {
    display: block;
    max-height: 500px;
    overflow: overlay;
}

.inline {
    display: inline;
}

.inline p {
    display: inline;
}

#license .p {
    display: inline;
}

.supported_by_logos {
    height: 75px;
    align-items: center;
}

/* h5 {
    margin-bottom: 0px;
} */

.body-text a {
    text-decoration: underline;
}

.body-text a:hover {
    color: black;
}

.news_full {
    border-bottom: 1px solid #ebebeb;
    margin-bottom: 2rem;
}

.news_list {
    margin-top: 2rem;
}

.news_full img {
    width: auto;
}

.news-single .news-meta {
    overflow: hidden;
    width: 100%;
    padding: 10px 0;
}

.news-single .news-meta span {
    margin-right: 10px;
    display: inline-block;
}

.news-single .news-meta span,
.news-single .news-meta span a {
    color: #2C2D3F;
    font-weight: 400;
}

.lecture-title {
    font-size: 1em;
}

.single-news .publication-head {
    position: relative;
    overflow: hidden;
    max-width: 95%;
}

.index-card {
    margin-bottom: 25px;
}

.journal_part {
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
}

.journal_part .title {
    border-top: #00000054 1px;
    font-size: 18px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 10px;
    margin-top: 10px;
    display: block;
    background: #fff;
}

.journal_chapter {
    padding: 5px 0px 5px;
}

.journal_chapter h5 {
    font-size: medium;
}

.journal_chapter a {
    text-decoration: none;
}

.journal_chapter a:hover {
    text-decoration: underline;
}

.toc a:hover {
    text-decoration: underline;
}

.toc p {
    margin-left: 0.8rem;
    text-indent: -0.8rem;
    margin-bottom: 5px;
    line-height: 1rem;
}

.toc-indent {
    margin-left: 2.3rem !important;
    text-indent: -1.4rem !important;
}

.video-player {
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid #ebebeb;
}

.author-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
}

.author-image img {
    width: 100%;
    height: auto;
}

.tags a {
    text-transform: capitalize;
    text-decoration: underline;
}

.tags a:hover {
    color: black;
}

.tag-title {
    text-transform: capitalize;
}

.result-count {
    margin-bottom: 1rem;
    border-bottom: 1px solid #ebebeb;
}

#menu-logo {
    max-height: 63px;
    max-width: 100%;
    width: auto;
}


/* ##### Responsive Menu ##### */


#menuToggle {
    display: block;
    position: relative;
    top: 25px;
    left: 154%;

    z-index: 1;

    -webkit-user-select: none;
    user-select: none;
}

#menuToggle a {
    text-decoration: none;
    color: #017071;

    transition: color 0.3s ease;
}

#menuToggle a:hover {
    color: #232323;
}


#menuToggle input {
    display: block;
    width: 40px;
    height: 32px;
    position: absolute;
    top: -7px;
    left: -5px;

    cursor: pointer;

    opacity: 0;
    /* hide this */
    z-index: 2;
    /* and place it over the hamburger */

    -webkit-touch-callout: none;
}

/*
 * Just a quick hamburger
 */
#menuToggle span {
    display: block;
    width: 33px;
    height: 4px;
    margin-bottom: 5px;
    position: relative;

    background: #017071;
    border-radius: 3px;

    z-index: 1;

    transform-origin: 4px 0px;

    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0),
        background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0),
        opacity 0.55s ease;
}

#menuToggle span:first-child {
    transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2) {
    transform-origin: 0% 100%;
}

/* 
 * Transform all the slices of hamburger
 * into a crossmark.
 */
#menuToggle input:checked~span {
    opacity: 1;
    transform: rotate(45deg) translate(-2px, -1px);
    background: #232323;
}

/*
 * But let's hide the middle one.
 */
#menuToggle input:checked~span:nth-last-child(3) {
    opacity: 0;
    transform: rotate(0deg) scale(0.2, 0.2);
}

/*
 * Ohyeah and the last one should go the other direction
 */
#menuToggle input:checked~span:nth-last-child(2) {
    transform: rotate(-45deg) translate(0, -1px);
}

/*
 * Make this absolute positioned
 * at the top left of the screen
 */
#menu {
    position: absolute;
    width: -webkit-fill-available;
    min-width: 600px;
    margin: 19px 0 0 -356px;
    padding: 50px;
    padding-left: 80px;

    background: rgba(256, 256, 256, 0.98);
    backdrop-filter: blur(3px);
    list-style-type: none;
    -webkit-font-smoothing: antialiased;
    /* to stop flickering of text in safari */

    transform-origin: 100% 0%;
    transform: translate(+200%, 0);

    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
}

#menu li {
    padding: 10px 0;
    font-size: 22px;
}

#menuToggle input:checked~ul {
    transform: none;
}

.full-size-search {

    margin-bottom: 3rem;

    .search {
        position: relative;
    }

    .search input {
        width: 100%;
        height: 45px;
        box-shadow: none;
        text-shadow: none;
        font-size: 14px;
        border: none;
        color: #222;
        background: transparent;
        padding: 0 70px 0 20px;
        -webkit-transition: all 0.4s ease;
        -moz-transition: all 0.4s ease;
        transition: all 0.4s ease;
        border-radius: 0;
        border: 1px solid #eee;
        border-radius: 5px;
    }

    .search .button {
        position: absolute;
        right: 0px;
        height: 44px;
        width: 50px;
        line-height: 45px;
        box-shadow: none;
        text-shadow: none;
        text-align: center;
        border: none;
        font-size: 14px;
        color: #fff;
        background: #017071;
        -webkit-transition: all 0.4s ease;
        -moz-transition: all 0.4s ease;
        transition: all 0.4s ease;
        border-radius: 0 5px 5px 0;
    }

    .search .button:hover {
        background: #000;
    }
}

.gallery {
    display: flex;
    flex-flow: wrap;
}

.gallery-item {
    margin-top: 0;
    flex-grow: 1;
    min-width: 200px;
    max-width: 200px;
    position: relative;
    height: fit-content;
}

.gallery-item:before {
    content: "";
    padding-top: 100%;
    display: block;
}

.gallery-item img {
    padding: 1rem;
    display: block;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

#uni-vienna {
    min-width: 280px;
    max-width: 280px;
    max-height: 200px;
}

#fnr {
    min-width: 300px;
    max-width: 300px;
    max-height: 200px;
}

#uni-lu {
    min-width: 180px;
    max-width: 180px;
    max-height: 200px;
}

.news-sidebar .content {
    display: inline;
}

.popup-tag {
    position: fixed;
    display: none;

    padding: 5px 10px;
    font-size: 13px;

    border-radius: 4px;
    color: #fff;
    background: rgba(1, 112, 113, .8);
    backdrop-filter: blur(3px);
}

.body-text img {
    padding-bottom: 25px;
}

#citation-text {
    display: inline;
}

button {
    padding: 0.2rem 0.5rem 0.2rem 0.5rem;
    height: 40px;
    line-height: 30px;
    text-align: center;
    border: 1px solid #c4c4c4;
    color: #555;
    border-radius: 4px;
    background-color: white;
}

button:hover {
    color: #fff;
    background: #017071;
    border-color: transparent;
}


#article-text {
    overflow: hidden;
}

.sticky_toc {
    position: -webkit-sticky;
    /* For Safari */
    position: sticky;
    top: 85px;
    /* Adjust this value to control how far from the top the div should stick */
}

.sticky_structure {
    position: -webkit-sticky;
    /* For Safari */
    position: sticky;
    top: 85px;
    /* Adjust this value to control how far from the top the div should stick */
}

.highlight-links a {
    text-decoration: underline;
}

.highlight-links a:hover {
    color: #017071;
}

.footnote-popup {
    display: none;
    position: absolute;
    padding: 10px;
    z-index: 1000;
    max-width: 400px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);

    color: #333;
    padding: 5px 10px;
    font-size: 12px;
    background-color: rgba(246, 247, 251, .85);
    backdrop-filter: blur(3px);
    border-radius: 4px;
}

.toggle {
    cursor: pointer;
}

.rotate {
    transform: rotate(90deg);
    transition: transform 0.2s ease-in-out;
}

.hidden {
    display: none;
}

.highlighted {
    font-weight: 500;
    color: #017071;
}

.content-preview {
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 15px;
    background: rgba(246, 247, 251, .85);
}

.search-result {
    border-bottom: 1px solid #eee;
    margin-bottom: 15px;
}

.publication-text ol li::marker {
    content: counter(list-item) " ";
}

.publication-text ol li {
    text-align: justify;
    padding-left: 0.4rem;
}

.overview {
    margin-left: 0px;
}

.autocite-checkbox {
    margin-left: 5px;
    margin-right: 10px;
}

/* Customize the label (the container) */
.autocite-container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 0px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default checkbox */
.autocite-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 23px;
    width: 23px;
    background-color: #eee;
    border-radius: 4px;
}

/* On mouse-over, add a grey background color */
.autocite-container:hover input~.checkmark {
    background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.autocite-container input:checked~.checkmark {
    background-color: #017071;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.autocite-container input:checked~.checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.autocite-container .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.contributor-separator {
    padding-top: 10px;
    border-top: #ddd solid 1px;
    font-size: 18px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 10px;
    margin-top: 10px;
    display: block;
    background: #fff;
}

.first-separator {
    border-top: none;
}

.abstract {
    margin-top: 10px;
    border-top: 1px solid #ebebeb;
    padding-top: 20px;
    text-align: justify;
}

#abstract {
    padding-bottom: 10px;
}

.overview-abstract-title {
    padding-left: 1px;
}

.justify {
    text-align: justify;
}

.video-player .description {
    margin-top: 15px;
}

.start:not(:first-of-type) {
    margin-left: 1.2rem;
}