/* global start */
@import url('https://fonts.googleapis.com/css2?family=Marcellus&display=swap');

:root {
    --color-primary: #2563eb;
    --color-content: #6b7b84;
    --font-marcellus: "Marcellus", serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-marcellus);
}

p {
    color: var(--color-content);
}

a {
    text-decoration: none;
    color: #000;
}

a:hover {
    color: var(--color-primary);
}

.color-primary {
    color: var(--color-primary);
}

.color-content {
    color: var(--color-content);
}

.background-primary {
    background-color: var(--color-primary);
}

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

@media (min-width: 1200px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1264px;
    }
}
.content p{
	color: #212529;	
}

.form-control:focus {
    box-shadow: unset;
}

/* @media only screen and (max-width: 768px){ */
/* @media only screen and (min-width: 768.1px) and (max-width: 992px){ */
/* @media only screen and (min-width: 350px) and (max-width: 400px) { */

/* global end */

/* header start */
.navbar-brand img{
	width: 230px;
}
.navbar-nav .nav-item .nav-link {
    color: #fff;
    font-weight: 500;
}

.navbar-nav .nav-item .nav-link:hover {
    color: yellow;
}

.dropdown-menu {
    background-color: #000;
    border-radius: 0;
}

.dropdown-menu li a {
    color: #fff;
	font-weight: 500;
}

.dropdown-menu li a:hover {
    color: yellow;
    background-color: var(--color-primary);
}

.navbar-toggler:focus {
    box-shadow: unset;
}

@media (min-width: 992px) {
    .dropdown:hover .dropdown-menu {
        display: block;
    }
}

@media only screen and (max-width: 768px) {
    .offcanvas.offcanvas-start {
        width: 350px !important;
    }
}

@media only screen and (min-width: 350px) and (max-width: 400px) {
    .offcanvas.offcanvas-start{
        width: 310px !important;
    }
}

/* header end */

/* footer start */
.footer-fluid1 {
    display: flex;
    justify-content: center;
}

.footer-fluid1 a {
    margin-left: 1rem;
    margin-right: 1rem;
    color: #000;
    font-weight: 500;
}

.footer-fluid1 a:hover {
/*     text-decoration: underline; */
	color: var(--color-primary);
}

@media only screen and (max-width: 768px) {
    .footer-fluid1 {
        flex-direction: column;
    }

    .footer-fluid1 a {
        margin-bottom: 10px;
    }
	
	.footer-fluid2{
		font-size: 0.8rem;
	}
	
}
/* footer end */

/* margin padding start */

.border-bottom-last:last-child {
    border-bottom: 0 !important;
}

.padding-first-last:first-child {
    padding-top: 0 !important;
}

.padding-first-last:last-child {
    padding-bottom: 0 !important;
}

@media only screen and (max-width: 768px) {
    .border-start {
        border-left: 0 !important;
    }
}

/* margin padding end */

/* news start */
ol li {
    margin-bottom: 1.2rem;
}

ol li:last-child {
    margin-bottom: 0;
}

ol li::marker {
    color: var(--color-primary);
    font-weight: 500;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background-color: var(--color-primary);
}

.news-carousel .owl-nav {
    text-align: end;
}

.news-carousel .owl-nav button {
    width: 30px;
    height: 30px;
    border: 1px solid var(--color-primary) !important;
    color: var(--color-primary) !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    font-size: 30px !important;
}

.news-carousel .owl-nav button:hover {
    background-color: var(--color-primary) !important;
    color: #fff !important;
}

.news-carousel .owl-nav button span {
    margin-top: -5px;
}

.news-category a {
    text-transform: uppercase;
    color: var(--color-primary);
    font-weight: 500;
}
.news-category a:hover {
    text-decoration: underline;
}
.sidebar{
    position: sticky;
    top: 30px;
}

.content strong{
	color: var(--bs-heading-color);
} 

/* news end */

/* extra start */
.page-numbers {
        margin: 0px 4px;
        border: 1px solid var(--color-primary);
        padding: 4px 7px;
        background-color: #fff;
    }
    .page-numbers:hover, .page-numbers.current {
        color: #fff;
        background-color: var(--color-primary);
    }
li#wp-admin-bar-wp-logo {
            display: none;
        }
/* extra end */