/********** Template CSS **********/
:root {
    --primary: #800000;
    --secondary: #34AD54;
    --light: #EEF9FF;
    --dark: #091E3E;
}


/*** Spinner ***/
.spinner {
    width: 40px;
    height: 40px;
    background: var(--primary);
    margin: 100px auto;
    -webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
    animation: sk-rotateplane 1.2s infinite ease-in-out;
}


@-webkit-keyframes sk-rotateplane {
    0% {
        -webkit-transform: perspective(120px)
    }
    50% {
        -webkit-transform: perspective(120px) rotateY(180deg)
    }
    100% {
        -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg)
    }
}

@keyframes sk-rotateplane {
    0% {
        transform: perspective(120px) rotateX(0deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg)
    }
    50% {
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg)
    }
    100% {
        transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
        -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    }
}

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Heading ***/
h1,
h2,
.fw-bold {
    font-weight: 800 !important;
}

h3,
h4,
.fw-semi-bold {
    font-weight: 700 !important;
	font-size: 1.0rem;
}

h5,
h6,
.fw-medium {
    font-weight: 600 !important;
}


/*** Button ***/
.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn-primary,
.btn-secondary {
    color: #FFFFFF;
    box-shadow: inset 0 0 0 50px transparent;
}

.btn-primary:hover {
    box-shadow: inset 0 0 0 0 var(--primary);
}

.btn-secondary:hover {
    box-shadow: inset 0 0 0 0 var(--secondary);
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 30px;
    height: 30px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}


/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
    font-family: 'Nunito', sans-serif;
    position: relative;
    /*margin-left: 45px;
	margin-left: 93px;*/
    /*padding: 15px 0;*/
    /*color: #FFFFFF;*/
	color: #fff;
    font-size: 16px;
    font-weight: 600;
    outline: none;
    transition: .5s;
	text-shadow: 0px 3px 6px #000000;
	/*padding-right:55px;
	padding-left:55px;*/

	/*text-align:center;*/
	/*padding-left:30px;
	padding-right: 27px;*/
	text-align:center;
}

.nav-item
{
		min-width:212px;
}

.navbar-nav .dropdown-menu {
    position: static;
    min-width: 212px;
}

.sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 10px 7px;
    color: var(--dark);
}



.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: #EEFF00;
	}

.navbar-dark .navbar-brand h1 {
    color: #FFFFFF;
}

.navbar-dark .navbar-toggler {
    color: var(--primary) !important;
    border-color: var(--primary) !important;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-dark {
        position: relative;
        background: #FFFFFF;
    }

    .navbar-dark .navbar-nav .nav-link,
    .navbar-dark .navbar-nav .nav-link.show,
    .sticky-top.navbar-dark .navbar-nav .nav-link {
        padding: 10px 0;
        color: var(--dark);
    }

    .navbar-dark .navbar-brand h1 {
        color: var(--primary);
    }
}

@media (min-width: 992px) {
    .navbar-dark {
        position: absolute;
        width: 100%;
        left: 0;
        border-bottom: 1px solid rgba(256, 256, 256, .1);
        z-index: 999;
		

    }
    
    .sticky-top.navbar-dark {
        position: fixed;
        background: #FFFFFF;
    }

    .navbar-dark .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        /*background: var(--primary);*/
        transition: .5s;
    }

    .navbar-dark .navbar-nav .nav-link:hover::before,
    .navbar-dark .navbar-nav .nav-link.active::before {
        width: 100%;
        left: 0;
    }

    .navbar-dark .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }
a.nav-item.nav-link.active 
{    
	/*margin-left: 24px!important;
	padding-right:55px;*/
}

    .sticky-top.navbar-dark .navbar-brand h1 {
        color: var(--primary);
    }
}

	.nav-item:hover
{
	background: transparent linear-gradient(180deg, #E30000 0%, #640000 100%) 0% 0% no-repeat padding-box;
}

/*** Carousel ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /*background: rgba(9, 30, 62, .7);*/
    z-index: 1;
}

@media (max-width: 576px) {
    .carousel-caption h5 {
        font-size: 14px;
        font-weight: 500 !important;
    }

    .carousel-caption h1 {
        font-size: 30px;
        font-weight: 600 !important;
    }
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}


/*** Section Title ***/
.section-title
{
	background: #800000 0% 0% no-repeat padding-box;
	opacity: 1;
}


.section-title.text-center::before {
    left: 50%;
    margin-left: -75px;
}

.section-title.section-title-sm::before {
    width: 90px;
    height: 3px;
}


.section-title.section-title-sm::after {
    width: 4px;
    height: 3px;
}

.section-title.text-center::after {
    /*-webkit-animation: section-title-run-center 5s infinite linear;
    animation: section-title-run-center 5s infinite linear;*/
}

.section-title.section-title-sm::after {
    /*-webkit-animation: section-title-run-sm 5s infinite linear;
    animation: section-title-run-sm 5s infinite linear;*/
}

@-webkit-keyframes section-title-run {
    0% {left: 0; } 50% { left : 145px; } 100% { left: 0; }
}

@-webkit-keyframes section-title-run-center {
    0% { left: 50%; margin-left: -75px; } 50% { left : 50%; margin-left: 45px; } 100% { left: 50%; margin-left: -75px; }
}

@-webkit-keyframes section-title-run-sm {
    0% {left: 0; } 50% { left : 85px; } 100% { left: 0; }
}


/*** Service ***/
.service-item {
    position: relative;
    height: 150px;
    padding: 0 5px;
	padding-top: 25px;
    transition: .5s;
	background-color: var(--primary)!important;
}

.service-item .service-icon {
    margin-bottom: 30px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-radius: 2px;
    /*transform: rotate(-45deg);*/
}

.service-item .service-icon i {
    /*transform: rotate(45deg);*/
}

.service-item a.btn {
    position: absolute;
    width: 60px;
    bottom: -48px;
    left: 50%;
    margin-left: -30px;
    opacity: 0;
}

.service-item:hover a.btn {
    bottom: -38px;
    opacity: 1;
}


/*** Testimonial ***/
.testimonial-carousel .owl-dots {
    margin-top: 15px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: #DDDDDD;
    border-radius: 2px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--primary);
}

.testimonial-carousel .owl-item.center {
    position: relative;
    z-index: 1;
}

.testimonial-carousel .owl-item .testimonial-item {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: #FFFFFF !important;
    box-shadow: 0 0 30px #DDDDDD;
}


/*** Team ***/
.team-item {
    transition: .5s;
}

.team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.team-social a.btn {
    position: relative;
    margin: 0 3px;
    margin-top: 100px;
    opacity: 0;
}

.team-item:hover {
    box-shadow: 0 0 30px #DDDDDD;
}

.team-item:hover .team-social {
    background: rgba(9, 30, 62, .7);
}

.team-item:hover .team-social a.btn:first-child {
    opacity: 1;
    margin-top: 0;
    transition: .3s 0s;
}

.team-item:hover .team-social a.btn:nth-child(2) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .05s;
}

.team-item:hover .team-social a.btn:nth-child(3) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .1s;
}

.team-item:hover .team-social a.btn:nth-child(4) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .15s;
}

.team-item .team-img img,
.blog-item .blog-img img  {
    transition: .5s;
}

.team-item:hover .team-img img,
.blog-item:hover .blog-img img {
    transform: scale(1.15);
}


/*** Miscellaneous ***/
@media (min-width: 991.98px) {
    .facts {
        position: relative;
        margin-top: -75px;
        z-index: 1;
    }
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

.bg-header {
    background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.link-animated a {
    transition: .5s;
}

.link-animated a:hover {
    padding-left: 10px;
}

@media (min-width: 767.98px) {
    .footer-about {
        margin-bottom: -75px;
    }
}
#topBar
{
	top: 0px;
	left: 0px;
	height: 33px;
	/* UI Properties */
	background: #800000 0% 0% no-repeat padding-box;
	opacity: 1;
}
#topBar ul, #topBar ol, #overflowMenu ul, #overflowMenu ol, .flex-direction-nav ul, .flex-direction-nav ol, .flexslider ul, .flexslider ol, .menuWrapper ul, .menuWrapper ol, #breadcrumb ul, #breadcrumb ol, .printShare ul, .printShare ol, .accordian ul, .accordian ol, .socialBox ul, .socialBox ol {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 0px;
}

#topBar #accessibility ul li {
    float: left;
    position: relative;
}
#topBar #accessibility>ul>li {
    border-left: 1px solid #c2c0c1;
}
#topBar ul li, #topBar ol li, #overflowMenu ul li, #overflowMenu ol li, .flex-direction-nav ul li, .flex-direction-nav ol li, .flexslider ul li, .flexslider ol li, .menuWrapper ul li, .menuWrapper ol li, #breadcrumb ul li, #breadcrumb ol li, .printShare ul li, .printShare ol li, .accordian ul li, .accordian ol li, .socialBox ul li, .socialBox ol li {
    list-style-type: none;
    padding-bottom: 0;
}

.header_row
{
	margin-top: 13px;
    padding-top: 8px;
	margin-bottom: 10px;
}

.header_text {
	
	text-align: left;
	font: normal normal bold 24px/27px Times New Roman;
	letter-spacing: 0px;
	color: #FFFFFF;
	text-transform: uppercase;
	opacity: 1;
}
.textheadingmain {
    text-align: left;
	font: italic normal normal 18px/21px Times New Roman;
	letter-spacing: 0px;
	color: #FFFFFF;
	opacity: 1;
}

#topBar #accessibility ul li a.skipContent {
	letter-spacing: 0px;
	color: #FFFFFF;
	text-transform: capitalize;
}
#topBar #accessibility ul li a {
    color: #fff;
    font-size: .8em;
    padding: 0 10px;
    line-height: 30px;
    display: block;
    /*font-weight: 600;*/
}

.header_mainepanel {
    margin: 0px 0px 0px 0px;
    padding: 0px 0px 0px 0px;
    background-color: #fff;
    background-image: url(assets/images/orange_top.png);
    background-size: cover;
}

.container {
    position: relative;
    margin: 0 auto;
    display: block;
    max-width: 98%;
    padding-right: 15px;
    padding-left: 15px;
}

a
{
	color:#000;
	text-decoration: none;
}

.bggrey
{
	background-color:#f3f3f3;
}

.text-white a:hover
{
	color:#fff;
}


#topBar ul, #topBar ol, #overflowMenu ul, #overflowMenu ol, .flex-direction-nav ul, .flex-direction-nav ol, .flexslider ul, .flexslider ol, .menuWrapper ul, .menuWrapper ol, #breadcrumb ul, #breadcrumb ol, .printShare ul, .printShare ol, .accordian ul, .accordian ol, .socialBox ul, .socialBox ol {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 0px;
}

#topBar .govBranding ul li:first-child {
    border-right: 1px solid #c2c0c1;
}
#topBar .govBranding ul li {
    float: left;
}
#topBar ul li, #topBar ol li, #overflowMenu ul li, #overflowMenu ol li, .flex-direction-nav ul li, .flex-direction-nav ol li, .flexslider ul li, .flexslider ol li, .menuWrapper ul li, .menuWrapper ol li, #breadcrumb ul li, #breadcrumb ol li, .printShare ul li, .printShare ol li, .accordian ul li, .accordian ol li, .socialBox ul li, .socialBox ol li {
    list-style-type: none;
    padding-bottom: 0;
}
#topBar .govBranding ul li a {
    display: block;
    font-size: .78em;
    font-weight: 600;
    /*text-transform: uppercase;*/
    padding: 0 10px;
    line-height: 35px;
    color: #000;
}
#topBar #accessibility ul li {
    float: left;
    position: relative;
}
/*
#topBar #accessibility ul li .textSizing ul li a {
   
    border-radius: 3px;
    line-height: normal;
    font-size: .8em;
    border: 1px solid #8c8b8b;
    padding: 2px 5px;
    font-weight: 700;
}
*/
#topBar #accessibility ul li.highContrast.dark a {
    background: #000;
    color: #fff;
    border: 1px solid #000;
    border-right: none;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.push-right {
    float: right !important;
}
.push-left {
    float: left !important;
}
.tcon {
    display: none;
}
.hide {
    display: none;
}

.bg-primary {
    background-color: #008ad2!important;
}

.text-primary {
    text-align: left;
	font: normal normal 800 16px/20px Inter;
	letter-spacing: 0px;
	opacity: 1;
	color: #fff!important;
	padding: 10px 0px 0px 10px;
}

.btn:hover {
    color: var(--bs-btn-hover-color);
    background-color: #008ad2;
    border-color: #7a0000;
}

.btn:hover {
    color: var(--bs-btn-hover-color);
    background-color: #008ad2;
    border-color: #7a0000;
}


.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: #7a0000;
    --bs-btn-border-color: #7a0000;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #0b5ed7;
    --bs-btn-hover-border-color: #0a58ca;
    --bs-btn-focus-shadow-rgb: 49,132,253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #0a58ca;
    --bs-btn-active-border-color: #0a53be;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #7a0000;
    --bs-btn-disabled-border-color: #7a0000;
}
.fts-35
{
	font-size: 35px;
}

.latest-blog.banner {
    background-attachment: fixed;
    background-image: url(../images/latest-blog-bg-home-v1.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
	height:394px;
}
section.section-padding {
    padding: 50PX 0PX;
}

.latest-blog .tabs-container .tabs-menu {
    float: left;
    width: 100%;
}
.latest-blog .tabs-container .tabs-menu ul {
    float: left;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

.latest-blog .tabs-container .tabs-menu ul li {
    float: left;
    height: 150px;
    position: relative;
    width: 25%;
}

.latest-blog .tabs-container .tabs-menu ul li:hover a, .latest-blog .tabs-container .tabs-menu ul li.active a {
    background-color: #fff;
    -webkit-box-shadow: 0 0 14px 0 rgb(0 0 0 / 7%);
    -moz-box-shadow: 0 0 14px 0 rgba(0, 0, 0, 0.07);
    box-shadow: 0 0 14px 0 rgb(0 0 0 / 7%);
    /*color: #282828;*/
}

.latest-blog .tabs-container .tabs-menu ul li a {
    /*color: #fff;*/
    height: 100%;
    left: 0;
    position: absolute;
    text-align: center;
    top: 0;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    width: 100%;
    z-index: 9;
}

.latest-blog .tabs-container .tabs-menu ul li a .title {
	left: 0;
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}


.latest-blog .tabs-container .tabs-menu ul li:hover a i.yellow, .latest-blog .tabs-container .tabs-menu ul li.active a i.yellow {
    background-position: 0 -50px;
}
.latest-blog .tabs-container .tabs-menu ul li a i.yellow {
    background-position: 0 0;
}
.latest-blog .tabs-container .tabs-menu ul li a i {
	color:#fff;
    background-image: url(../images/features-icons-home-v1.png);
    background-position: 500px 500px;
    background-repeat: no-repeat;
    display: inline-block;
    height: 50px;
    margin-bottom: 21px;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    width: 62px;
}
.latest-blog .tabs-container .tabs-menu ul li a:hover i {
	color:#041776;
	-moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
}
.bg-yellow {
    background-color: #f9b81e!important;
}
.bg-green {
    background-color: #42850f!important;
}
.latest-blog .tabs-container .tabs-menu h3 {
    text-transform: none!important;
    font-size: 18px;
}
.bg-light-green {
    background-color: #84bb45;
}

.latest-blog .tabs-container .tabs-menu ul li a i.green {
    background-position: -310px 0;
}
.latest-blog .tabs-container .tabs-menu ul li a i.light-green {
    background-position: -62px 0;
}
.bg-blue {
    background-color: #00adef;
}
.latest-blog .tabs-container .tabs-menu ul li a i.blue {
    background-position: -124px 0;
}
.bg-red {
    background-color: #f56363;
}
.latest-blog .tabs-container .tabs-menu ul li a i.red {
    background-position: -186px 0;
}
.bg-violet {
    background-color: #b032e4;
}
.latest-blog .tabs-container .tabs-menu ul li:hover a i.violet, .latest-blog .tabs-container .tabs-menu ul li.active a i.violet {
    background-position: -248px -50px;
}
.latest-blog .tabs-container .tabs-menu ul li a i.violet {
    background-position: -248px 0;
}
.bg-pink {
    background-color: #5a43c5;
}
.latest-blog .tabs-container .tabs-menu ul li a i.pink:hover {
    background-position: -384px -52px;
}
.bg-icee {
    background-color: #b1912a;
}
.latest-blog .tabs-container .tabs-menu ul li a i.icee {
    background-position: -440px 0;
}
section.section-padding {
    padding: 50PX 0PX;
}
article, aside, details, figcaption, figure, footer, header, main, menu, nav, section, summary {
    display: block;
    font-size: 14px;
    color: #3e3e3e;
}

#header-carousel
{
	background: transparent url('../images/banner.jpg') 0% 0% no-repeat padding-box;
	height: 715px;
	opacity:100%;
	-webkit-background-size: cover; 
	-moz-background-size: cover; 
	-o-background-size: cover; 
	background-size: cover;
}

.link_class
{
	font: normal normal normal 14px/17px Inter;
	letter-spacing: 0px;
	opacity: 1;
	line-height:30px;
}

.link_class a
{
	text-decoration: underline;
}

.link_class li {
  list-style: none;
}

.link_class li::before {
  content: "\2022";
  color: #800000;
  font-weight: bold;
  display: inline-block; 
  width: 1em;
  margin-left: -1em;
}

.bluecolor
{
	color: #0070F0;
}

.border-radius
{
	border-radius: 50%;
    overflow: hidden;
	padding:5px;	padding-left: 40px!important;
}
.border-right{	border-right: 1px dotted #fff}
.bot_copyright
{
	text-align: center;
	font: normal normal medium 14px/17px Inter;
	letter-spacing: 0px;
	color: #FFFFFF;
	opacity: 1;
}

.flash_head
{
	font: normal normal 400 14px/17px Inter;
	letter-spacing: 0px;
	color: #FFFFFF;
	opacity: 1;
	padding:8px;
}

.flash_news
{
	text-decoration: underline;
	font: normal normal bold 14px/17px Inter;
	letter-spacing: 0px;
	color: #7A0000;
	opacity: 1;
	padding:6px;
	background-color:#d9b2b2;
}

.link_div
{
	background: #8000000D 0% 0% no-repeat padding-box;
	border: 1px solid #7A00001A;
	opacity: 1;
}

.pcss3t {
	margin: 0;
	padding: 0;
	border: 0;
	outline: none;
	font-size: 0;
	text-align: left;
}
.pcss3t > input {
	position: absolute;
	left: -9999px;
}
.pcss3t > label {
	position: relative;
	display: inline-block;
	margin: 0;
	padding: 0;
	border: 0;
	outline: none;
	cursor: pointer;
	transition: all 0.1s;
	-o-transition: all 0.1s;	
	-ms-transition: all 0.1s;	
	-moz-transition: all 0.1s;	
	-webkit-transition: all 0.1s;
}
.pcss3t > label i {
	display: block;
	float: left;
	margin: 16px 8px 0 -2px;
	padding: 0;
	border: 0;
	outline: none;
	font-family: FontAwesome;
	font-style: normal;
	font-size: 17px;
}
.pcss3t > input:checked + label {
	cursor: default;
}
.pcss3t > ul {
	list-style: none;
	position: relative;
	display: block;
	overflow: hidden;
	margin: 0;
	padding: 0;
	border: 0;
	outline: none;
	font-size: 13px;
}
.pcss3t > ul > li {
	position: absolute;
	width: 100%;
	overflow: auto;
	padding: 0px;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	opacity: 0;
	transition: all 0.5s;
	-o-transition: all 0.5s;	
	-ms-transition: all 0.5s;	
	-moz-transition: all 0.5s;	
	-webkit-transition: all 0.5s;
}
.pcss3t > .tab-content-first:checked ~ ul .tab-content-first,
.pcss3t > .tab-content-2:checked ~ ul .tab-content-2,
.pcss3t > .tab-content-3:checked ~ ul .tab-content-3,
.pcss3t > .tab-content-4:checked ~ ul .tab-content-4,
.pcss3t > .tab-content-5:checked ~ ul .tab-content-5,
.pcss3t > .tab-content-6:checked ~ ul .tab-content-6,
.pcss3t > .tab-content-7:checked ~ ul .tab-content-7,
.pcss3t > .tab-content-8:checked ~ ul .tab-content-8,
.pcss3t > .tab-content-9:checked ~ ul .tab-content-9,
.pcss3t > .tab-content-last:checked ~ ul .tab-content-last {
	z-index: 1;
	top: 0;
	left: 0;
	opacity: 1;
	-webkit-transform: scale(1,1);
	-webkit-transform: rotate(0deg);
}


/*----------------------------------------------------------------------------*/
/*                                 EXTENSIONS                                 */
/*----------------------------------------------------------------------------*/

/**/
/* auto height */
/**/
.pcss3t-height-auto > ul {
	height: auto !important;
}
.pcss3t-height-auto > ul > li {
	position: static;
	display: none;
	height: auto !important;
}
.pcss3t-height-auto > .tab-content-first:checked ~ ul .tab-content-first,
.pcss3t-height-auto > .tab-content-2:checked ~ ul .tab-content-2,
.pcss3t-height-auto > .tab-content-3:checked ~ ul .tab-content-3,
.pcss3t-height-auto > .tab-content-4:checked ~ ul .tab-content-4,
.pcss3t-height-auto > .tab-content-5:checked ~ ul .tab-content-5,
.pcss3t-height-auto > .tab-content-last:checked ~ ul .tab-content-last {
	display: block;
}


/**/
/* grid */
/**/
.pcss3t .grid-row {
	margin-top: 20px;
}
.pcss3t .grid-row:after {
	content: '';
	display: table;
	clear: both;
}
.pcss3t .grid-row:first-child {
	margin-top: 0;
}
.pcss3t .grid-col {
	display: block;
	float: left;
	margin-left: 2%;
}
.pcss3t .grid-col:first-child {
	margin-left: 0;
}
.pcss3t .grid-col .inner {
	padding: 10px 0;
	border-radius: 5px;
	background: #f2f2f2;
	text-align: center;
}
.pcss3t .grid-col-1 {
	width: 15%;
}
.pcss3t .grid-col-2 {
	width: 32%;
}
.pcss3t .grid-col-3 {
	width: 49%;
}
.pcss3t .grid-col-4 {
	width: 66%;
}
.pcss3t .grid-col-5 {
	width: 83%;
}
.pcss3t .grid-col-offset-1 {
	margin-left: 19%;
}
.pcss3t .grid-col-offset-1:first-child  {
	margin-left: 17%;
}
.pcss3t .grid-col-offset-2 {
	margin-left: 36%;	
}
.pcss3t .grid-col-offset-2:first-child {
	margin-left: 34%;
}
.pcss3t .grid-col-offset-3 {
	margin-left: 53%;
}
.pcss3t .grid-col-offset-3:first-child {
	margin-left: 51%;
}
.pcss3t .grid-col-offset-4 {
	margin-left: 70%;
}
.pcss3t .grid-col-offset-4:first-child {
	margin-left: 68%;
}
.pcss3t .grid-col-offset-5:first-child {
	margin-left: 85%;
}


/**/
/* typography */
/**/
.pcss3t .typography {
	color: #666;
}
.pcss3t .typography h1,
.pcss3t .typography h2,
.pcss3t .typography h3,
.pcss3t .typography h4,
.pcss3t .typography h5,
.pcss3t .typography h6 {
	margin: 40px 0 0 0;
	padding: 0;
	font-family: Gabriela, Georgia, serif;
	text-align: left;
	color: #333;
}
.pcss3t .typography h1 {
	font-size: 40px;
	line-height: 60px;
	text-shadow: 3px 3px rgba(0,0,0,0.1);
}
.pcss3t .typography h2 {
	font-size: 32px;
	line-height: 48px;
	text-shadow: 2px 2px rgba(0,0,0,0.1);
}
.pcss3t .typography h3 {
	font-size: 26px;
	line-height: 38px;
	text-shadow: 1px 1px rgba(0,0,0,0.1);
}
.pcss3t .typography h4 {
	font-size: 20px;
	line-height: 30px;
}
.pcss3t .typography h5 {
	font-size: 15px;
	line-height: 23px;
	text-transform: uppercase;
}
.pcss3t .typography h6 {
	font-size: 13px;
	line-height: 20px;
	font-weight: 700;
	text-transform: uppercase;
}
.pcss3t .typography p {
	margin: 20px 0 0 0;
	padding: 0;
	line-height: 20px;
	text-align: left;
}
.pcss3t .typography ul,
.pcss3t .typography ol {
	
}
.pcss3t .typography li {
	
}
.pcss3t .typography li ul,
.pcss3t .typography li ol {
	
}
.pcss3t .typography ul li:before {
	
}
.pcss3t .typography ol {
	counter-reset: list1;
}
.pcss3t .typography ol > li:before {
	counter-increment:list1;
	content: counter(list1)'.';
	position: absolute;
	top: 0;
	left: 0;
}
.pcss3t .typography a {
	
	
}
.pcss3t .typography a:hover {
	text-decoration: none;
}
.pcss3t .typography .pic {
	padding: 4px;
	border: 1px dotted #ccc;
}
.pcss3t .typography .pic img {
	display: block;
}
.pcss3t .typography .pic-right {
	
}
.pcss3t .typography .link {
	text-decoration: underline;
	color: #1889e6;
	cursor: pointer;
}
.pcss3t .typography .link:hover {
	text-decoration: none;
}
.pcss3t .typography h1:first-child,
.pcss3t .typography h2:first-child,
.pcss3t .typography h3:first-child,
.pcss3t .typography h4:first-child,
.pcss3t .typography h5:first-child,
.pcss3t .typography h6:first-child,
.pcss3t .typography p:first-child {
	margin-top: 0;
}
.pcss3t .typography .text-center {
	text-align: center;
}
.pcss3t .typography .text-right {
	text-align: right;
}


/**/
/* steps */
/**/
.pcss3t-steps > label {
	cursor: default;
}


/**/
/* animation effects */
/**/
.pcss3t-effect-scale > ul > li {
	-webkit-transform: scale(0.1,0.1);
}
.pcss3t-effect-rotate  > ul > li {
	-webkit-transform: rotate(180deg);
}
.pcss3t-effect-slide-top > ul > li {
	top: -40px;
}
.pcss3t-effect-slide-right > ul > li {
	left: 80px;
}
.pcss3t-effect-slide-bottom > ul > li {
	top: 40px;
}
.pcss3t-effect-slide-left > ul > li {
	left: -80px;
}



/*----------------------------------------------------------------------------*/
/*                                   LAYOUTS                                  */
/*----------------------------------------------------------------------------*/

/**/
/* top right */
/**/
.pcss3t-layout-top-right {
	text-align: right;
}


/**/
/* top center */
/**/
.pcss3t-layout-top-center {
	text-align: center;
}


/**/
/* top combi */
/**/
.pcss3t > .right {
	float: right;
}



/*----------------------------------------------------------------------------*/
/*                                    ICONS                                   */
/*----------------------------------------------------------------------------*/

/**/
/* icons positions */
/**/
.pcss3t-icons-top > label {
	text-align: center;
}
.pcss3t-icons-top > label i {
	float: none;
	margin: 0 auto -10px;
	padding-top: 17px;
	font-size: 23px;
	line-height: 23px;
	text-align: center;
}
.pcss3t-icons-right > label i {
	float: right;
	margin: 0 -2px 0 8px;
}
.pcss3t-icons-bottom > label {
	text-align: center;
}
.pcss3t-icons-bottom > label i {
	float: none;
	margin: -10px auto 0;
	padding-bottom: 17px;
	font-size: 23px;
	line-height: 23px;
	text-align: center;
}
.pcss3t-icons-only > label i {
	float: none;
	margin: 0 auto;
	font-size: 23px;
}





/**/
/* phone */
/**/
@media screen and (max-width: 767px) {
	.pcss3t > label {
		display: block;
	}
	.pcss3t > .right {
		float: none;
	}
}



/*----------------------------------------------------------------------------*/
/*                                   THEMES                                   */
/*----------------------------------------------------------------------------*/

/**/
/* default */
/**/
.pcss3t > label {	
	padding: 0 20px;
	background: #e5e5e5;
	font-size: 13px;
	/*line-height: 49px;*/
	font: normal normal 200 14px/18px Inter;
    letter-spacing: 0px;
    color: #1C1C1C;
    opacity: 1;
	padding:8px;
	padding-left:52px;
	padding-right:52px;
}
.pcss3t > label:hover {
	background: #f2f2f2;
}
.pcss3t > input:checked + label {
	background: #ffffff;
}
.pcss3t > ul {
	background: #fff;
	text-align: left;
}
.pcss3t-steps > label:hover {
	background: #e5e5e5;	
}


/**/
/* theme 1 */
/**/
.pcss3t-theme-1 > label {
	margin: 0 5px -1px 0;
	/*border-radius: 5px;*/
	background: #F1EFEF 0% 0% no-repeat padding-box;
	/*box-shadow: 0 2px rgb(0 0 0 / 20%);*/
	/*color: #167ac6;
	font-size: 16px;*/
	border-top: 4px solid #f2f2f2;
    border-bottom: 5px solid #fff;
  
}
.pcss3t-theme-1 > label:hover {
	background: #fff;
	opacity: 1;
}
.pcss3t-theme-1 > input:checked + label {
	text-align: center;
	font: normal normal 600 14px/18px Inter;
	letter-spacing: 0px;
	color: #1C1C1C;
	opacity: 1;
	margin-bottom: 0;
	/*padding-bottom: 5px;
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 0;
	color: #000;
	font-weight: bold;
	opacity: 1;*/
	border-top: 4px solid #7A0000;
	background: #fff;
    border-left: 1px solid #7A0000;
    border-right: 1px solid #7A0000;
}
.pcss3t-theme-1 > ul {
	/*border-radius: 5px;
	box-shadow: 0 3px rgba(0,0,0,0.2);
	*/
}
.pcss3t-theme-1 > .tab-content-first:checked ~ ul {
	border-top-left-radius: 0;
}
@media screen and (max-width: 767px) {
	.pcss3t-theme-1 > label {
		margin-right: 0;
	}
	.pcss3t-theme-1 > input:checked + label {
		margin-bottom: 5px;
		padding-bottom: 0;
		border-radius: 5px;
	}
	.pcss3t-theme-1 > .tab-content-first:checked ~ ul {
		border-top-left-radius: 5px;
	}
}


/**/
/* theme 2 */
/**/
.pcss3t-theme-2 {
	padding: 5px;
	background: rgba(0,0,0,0.2);
}
.pcss3t-theme-2 > label {
	margin-right: 0;
	margin-bottom: 0;
	background: none;
	border-radius: 0;
	text-shadow: 1px 1px 1px rgba(0,0,0,0.2);
	color: #fff;
	opacity: 1;
}
.pcss3t-theme-2 > label:hover {
	background: rgba(255,255,255,0.2);
}
.pcss3t-theme-2 > input:checked + label {
	padding-bottom: 0;
	background: #fff;
	background: linear-gradient(to bottom, #e5e5e5 0%, #ffffff 100%);
	background: -o-linear-gradient(top, #e5e5e5 0%, #ffffff 100%);
	background: -ms-linear-gradient(top, #e5e5e5 0%, #ffffff 100%);
	background: -moz-linear-gradient(top, #e5e5e5 0%, #ffffff 100%);
	background: -webkit-linear-gradient(top, #e5e5e5 0%, #ffffff 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#e5e5e5', endColorstr='#ffffff', GradientType=0);
	text-shadow: 1px 1px 1px rgba(255,255,255,0.5);
	color: #822bd9;
}
.pcss3t-theme-2 > ul {
	margin: 0 -5px -5px;
	border-radius: 0;
	box-shadow: none;
}
@media screen and (max-width: 767px) {
	.pcss3t-theme-2 > ul {
		margin-top: 5px;
	}
}


/**/
/* theme 3 */
/**/
.pcss3t-theme-3 {
	background: rgba(0,0,0,0.8);	
}
.pcss3t-theme-3 > label {
	background: none;
	border-right: 1px dotted rgba(255,255,255,0.5);
	text-align: center;
	color: #fff;
	opacity: 0.6;
}
.pcss3t-theme-3 > label:hover {
	background: none;
	color: #d9d92b;
	opacity: 0.8;
}
.pcss3t-theme-3 > input:checked + label {
	background: #d9d92b;
	color: #000;
	opacity: 1;
}
.pcss3t-theme-3 > ul {
	border-top: 4px solid #d9d92b;
	border-bottom: 4px solid #d9d92b;
	border-radius: 0;
	box-shadow: none;
}


/**/
/* theme 4 */
/**/
.pcss3t-theme-4 > label {
	margin: 0 10px 10px 0;
	border-radius: 5px;
	background: #78c5fd;
	background: linear-gradient(to bottom, #78c5fd 0%, #2c8fdd 100%);
	background: -o-linear-gradient(top, #78c5fd 0%, #2c8fdd 100%);
	background: -ms-linear-gradient(top, #78c5fd 0%, #2c8fdd 100%);
	background: -moz-linear-gradient(top, #78c5fd 0%, #2c8fdd 100%);
	background: -webkit-linear-gradient(top, #78c5fd 0%, #2c8fdd 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#78c5fd', endColorstr='#2c8fdd', GradientType=0);
	box-shadow: inset 0 1px rgba(255,255,255,0.5), 0 1px rgba(0,0,0,0.5);
	line-height: 39px;
	text-shadow: 0 1px rgba(0,0,0,0.5);
	color: #fff;
}
.pcss3t-theme-4 > label:hover {
	background: #90cffc;
	background: linear-gradient(to bottom, #90cffc 0%, #439bde 100%);
	background: -o-linear-gradient(top, #90cffc 0%, #439bde 100%);
	background: -ms-linear-gradient(top, #90cffc 0%, #439bde 100%);
	background: -moz-linear-gradient(top, #90cffc 0%, #439bde 100%);
	background: -webkit-linear-gradient(top, #90cffc 0%, #439bde 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#90cffc', endColorstr='#439bde', GradientType=0);
}
.pcss3t-theme-4 > input:checked + label {
	top: 1px;
	background: #5f9dc9;
	background: linear-gradient(to bottom, #5f9dc9 0%, #2270ab 100%);
	background: -o-linear-gradient(top, #5f9dc9 0%, #2270ab 100%);
	background: -ms-linear-gradient(top, #5f9dc9 0%, #2270ab 100%);
	background: -moz-linear-gradient(top, #5f9dc9 0%, #2270ab 100%);
	background: -webkit-linear-gradient(top, #5f9dc9 0%, #2270ab 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5f9dc9', endColorstr='#2270ab', GradientType=0);
	box-shadow: inset 0 1px 1px rgba(0,0,0,0.5), 0 1px rgba(255,255,255,0.5);
	text-shadow: none;
}
.pcss3t-theme-4 > ul {
	border-radius: 5px;
	box-shadow: 0 2px 2px rgba(0,0,0,0.3);
}
@media screen and (max-width: 767px) {
	.pcss3t-theme-4 > label {
		margin-right: 0;
	}
}


/**/
/* theme 5 */
/**/
.pcss3t-theme-5 {
	padding: 15px;
	border-radius: 5px;
	background: #ad6395;
	background: linear-gradient(to right, #ad6395 0%, #a163ad 100%);
	background: -o-linear-gradient(left, #ad6395 0%, #a163ad 100%);
	background: -ms-linear-gradient(left, #ad6395 0%, #a163ad 100%);
	background: -moz-linear-gradient(left, #ad6395 0%, #a163ad 100%);
	background: -webkit-linear-gradient(left, #ad6395 0%, #a163ad 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5f9dc9', endColorstr='#a163ad', GradientType=1);
}
.pcss3t-theme-5 > label {
	margin-right: 10px;
	margin-bottom: 15px;
	background: none;
	border-radius: 5px;
	text-align: center;
	color: #fff;
	opacity: 1;
}
.pcss3t-theme-5 > label:hover {
	background: rgba(255,255,255,0.15);
}
.pcss3t-theme-5 > input:checked + label {
	background: rgba(255,255,255,0.3);
	color: #000;
}
.pcss3t-theme-5 > input:checked + label:after {
	content: '';
	position: absolute;
	top: 100%;
	left: 50%;
	margin-top: 10px;
	margin-left: -6px;
	border-right: 6px solid transparent;
	border-bottom: 6px solid #fff;
	border-left: 6px solid transparent;
}
.pcss3t-theme-5 > ul {
	margin: 0 -15px -15px;
	border-radius: 0 0 5px 5px;
	box-shadow: none;
}
@media screen and (max-width: 767px) {
	.pcss3t-theme-5 > input:checked + label:after {
		display: none;
	}
}


/*----------------------------------------------------------------------------*/
/*                               CUSTOMIZATION                                */
/*----------------------------------------------------------------------------*/

/**/
/* height */
/**/
.pcss3t > ul,
.pcss3t > ul > li {
	min-height: 340px;
}
.newslinktext
{
	background: #8000000D 0% 0% no-repeat padding-box;
    border: 1px solid #7A0000;
}
.marquee a
{
	text-decoration: underline;
	font: normal normal bold 14px/17px Inter;
	letter-spacing: 0px;
	color: #7A0000;
	opacity: 1;
}

#star-six {
      width: 0;
      height: 0;
      border-left: 50px solid transparent;
      border-right: 50px solid transparent;
      border-bottom: 100px solid red;
      position: relative;
    }
#star-six:after {
  width: 0;
  height: 0;
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
  border-top: 100px solid red;
  position: absolute;
  content: "";
  top: 30px;
  left: -50px;
}

.imp_notice
{
	text-align: left;
	text-decoration: underline;
	font: normal normal 200 14px/17px Inter;
	letter-spacing: 0px;
	color: #0070F0;
	opacity: 1;
}

.imp_notice_span
{
	text-align: left;
	font: normal normal 200 14px/17px Inter;
	letter-spacing: 0px;
	color: #1C1C1C;
	opacity: 1;
}

.imp_notice_head
{
	text-align: left;
	font: normal normal 600 14px/17px Inter;
	letter-spacing: 0px;
	color: #1C1C1C;
	opacity: 1;
}
.search_div
{
	margin-left:20px; 
	background: #6d6767 0% 0% no-repeat padding-box; 
	opacity: 1; 
	backdrop-filter: blur(30px); 
	-webkit-backdrop-filter: blur(30px);
}

.dropbtn {
  color: white;
  font-size: 16px;
  border: none;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 40px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  color: black;
  
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {background-color: #ddd;}

.dropdown:hover .dropdown-content {display: block;}

.dropdown-item
{
	border-bottom:1px dashed #A1A1A1;
}

.dropdown-item:hover 
{
	background-color:#800000 0% 0% no-repeat padding-box;
}

.dropdown-item_acc {
    display: block;
    width: 100%;
    padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
    clear: both;
    font-weight: 400;
    color: var(--bs-dropdown-link-color);
    text-align: inherit;
    text-decoration: none;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
}

.dropdown-item_acc a span
{
	color:#000;
}.cms-content {    background: #F5F5F5 0% 0% no-repeat padding-box;    opacity: 1;    text-align: justify;    padding-left: 10px;    padding-right: 10px;	margin-top: 10px;}
#header-carousel_inner {    background: transparent url(../images/inner_banner.jpg) 0% 0% no-repeat padding-box;    height: 384px;    opacity: 100%;}

ul.sidebar-links {
    background: #fff!important;
    padding: 0px 0px 0px 0px;
    margin: 0;
    margin-bottom: 30px;
    color: #000;
    float: left;
}

ul.sidebar-links li {
    list-style-type: none;
    border-top: 1px solid #dcdcdc;
    border-left: 3px solid #800000;
    margin: 1px 0px;
    cursor: pointer;
    float: left;
    width: 100%;
    border-bottom: 5px;
    padding: 0px 10px;
    border-bottom: 1px solid #fff;
    transition: all 0.4s ease-in-out 0s;
}

ul.sidebar-links li a {
    box-shadow: inset 0 0 0 0 #c19514;
    color: #800000;
    padding: 10px 0px;
    margin: 0px 0px 0px 0px;
    width: 100%!important;
    font-size: 15px;
    float: left;
    line-height: 20px!important;
    text-decoration: none;
}

ul.sidebar-links li a:hover {
    color: #fff!important;
    width: 100%;
}

ul.sidebar-links li:hover 
{
  color: #fff!important;
  border-left: 3px solid #800000;
  box-shadow: inset 430px 0 0 0 #800000;
}


ul.sidebar-links li a {
    box-shadow: inset 0 0 0 0 #c19514;
    color: #000000;
    padding: 10px 0px;
    margin: 0px 0px 0px 0px;
    width: 100%!important;
    font-size: 15px;
    float: left;
    line-height: 20px!important;
    text-decoration: none;
}

ul.breadcrumb li+li:before {
    padding: 8px;
    color: black;
    content: "/\00a0";
}


ul.breadcrumb {
    padding: 10px 16px;
    list-style: none;
    background-color: #fff;
    border-bottom: 1px solid #000;
}
.breadcrumb {
    padding: 8px 15px;
    margin-bottom: 20px;
    list-style: none;
    background-color: #f5f5f5;
    margin: 0;
    display: block;
}
.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    padding: 0 0;
    margin-bottom: 1rem;
    list-style: none;
}

.dropdown-menu
{
	--bs-dropdown-bg:rgba(33, 37, 41, 0.8)!important;
	--bs-dropdown-border-radius: 0!important;
	--bs-dropdown-link-color:#000;
	--bs-dropdown-font-size: 12px;
    --bs-dropdown-width: 10.0rem;
	--bs-dropdown-min-height: 100.0rem;	
	height:360px;
}

.dropdown-item.active, .dropdown-item:active
{
	    background-color: #f2e5e5!important;
		color: #8f1010;
}
.dropdown-item:focus, .dropdown-item:hover
{
	    background-color: #f2e5e5!important;
		color: #8f1010!important;	
}
.dropdown-item {
    border-bottom: 1px dashed #f2e5e5!important;
}
/*
.navbar-nav {
    padding-left: 55px;
    padding-right: 55px;
}
*/
.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    --bs-gutter-x: 0rem;
}

.dropdown-item {
    white-space:wrap!important;
}

.icon-bar {
  position: fixed;
  top: 370px!important;
  float: right;
  right:0%;
  z-index: 9999;
  -webkit-transform: translateY(-85%);
  -ms-transform: translateY(-805);
  transform: translateY(-85%);
}

.icon-bar a {
      display: block;
    text-align: center;
    padding: 8px;
    transition: all 0.3s ease;
    color: white;
    font-size: 16px;
}

.icon-bar a:hover {
  background-color: #000;
}

.facebook {
  background: #3B5998;
  color: white;
}

.twitter {
  background: #55ACEE;
  color: white;
}

.google {
  background: #dd4b39;
  color: white;
}

.linkedin {
  background: #007bb5;
  color: white;
}

.youtube {
  background: #bb0000;
  color: white;
}

.content {
  margin-left: 75px;
  font-size: 30px;
}        

