@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,700,800');
@import url('https://fonts.googleapis.com/css?family=Lobster');
html {
  font-size: 62.5%;
}
			 
body {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
}
h1 {
  margin-bottom: 0.5em;
  font-size: 3.6rem;
}

.news {
	margin-top: 5em;
}

.weather {
  margin-bottom: 25rem;
  font-size: 1.6rem;
  line-height: 2.6;
}

.bdz {
  margin-bottom: 13rem;
  line-height: 2.6;
}

@keyframes changeColor {
	0% { color: white; }
	50% { color: green; }
	100% { color: white; }
}

.green-icon {
	animation: changeColor 4s linear infinite;
}

@keyframes changeColor2 {
	0% { color: white; }
	50% { color: red; }
	100% { color: white; }
}

.red-icon {
	animation: changeColor2 4s linear infinite;
}
	
.overlay::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  background-color: rgba(0, 0, 0, .3);
}
.header-area {
  position: relative;
  height: 110vh;
  background-image: url('images/Tvardica_view.jpg'); /* Added 'url()' to specify the image path */
  background-attachment: fixed;
  background-position: center center;
  background-repeat: no-repeat; /* Corrected the typo: 'no-repear' to 'no-repeat' */
  background-size: cover;
}
.banner {
  display: flex;
  align-items: center;
  position: relative;
  height: 100%;
  color: #fff;
  text-align: center;
  z-index: 1;
}
.banner h1 {
  font-weight: 800;
}
.banner p {
  font-weight: 700;
}


/* Customize the header styling */
.toast-header {
    background-color: #F8F9FA; /* Set the header background color */
	font-size: 10px; /* Adjust the font size as needed */
    color: #99999; /* Set the header text color */
    font-weight: bold; /* Make the header text bold */
    padding: 4px; /* Add padding for the header */
}
	
.toast {
  background-color: #FFFFFF; /* Set your desired background color */
  color: #333; /* Set the text color */
  font-size: 16px; /* Adjust the font size as needed */
  padding: 2px; /* Add padding for better visual appearance */
  border-radius: 2px; /* Optional: Add border-radius for rounded corners */
  text-align: left; /* Align text to the left */
}


.navbar {
  position: absolute;
  left: 0;
  top: 0;
  padding: 0;
  width: 100%;
  transition: background 0.6s ease-in;
  z-index: 99999;
}

.navbar-dark .navbar-nav .nav-link {
  position: relative;
  color: #fff;
  font-size: 1.6rem;
}
.navbar-dark .navbar-nav .nav-link:focus, .navbar-dark .navbar-nav .nav-link:hover {
  color: #fff;
}
.navbar .dropdown-menu {
  padding: 0;
  background-color: rgba(0, 0, 0, .9);
}
.navbar .dropdown-menu .dropdown-item{
  position: relative;
  padding: 10px 20px;
  color: #fff;
  font-size: 1.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  transition: color 0.2s ease-in;
}
.navbar .dropdown-menu .dropdown-item:last-child {
  border-bottom: none;
}
.navbar .dropdown-menu .dropdown-item:hover {
  background: transparent;
  color: #007B5E;
}

.navbar .dropdown-menu .dropdown-item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  top: 0;
  width: 5px;
  background-color: #007B5E;
  opacity: 0;
  transition: opacity 0.2s ease-in;
}
.navbar .dropdown-menu .dropdown-item:hover::before {
  opacity: 1;
}

.navbar .dropdown-menu .dropdown-item.bg-danger-hover {
  background-color: transparent;
  color: #dc3545; /* Red color on hover */
}

.navbar .dropdown-menu .dropdown-item.bg-danger-hover:hover {
  background-color: #dc3545; /* Red color on hover */
  color: #fff;
}

.navbar.fixed-top {
  position: fixed;
  -webkit-animation: navbar-animation 0.6s;
  animation: navbar-animation 0.6s;
  background-color: rgba(0, 0, 0, .9);
}
.navbar.fixed-top.navbar-dark .navbar-nav .nav-link.active {
  color: #007B5E;
}
.navbar.fixed-top.navbar-dark .navbar-nav .nav-link::after {
  background-color: #007B5E;
}
.content {
  padding: 120px 0;
}
@media screen and (max-width: 768px) {

  .navbar-nav {
    display: none; /* Hide the navbar on small screens */
    
  }
  .navbar.fixed-top .navbar-nav {
    background: transparent;
  }
}
@media screen and (min-width: 767px) {
  .banner {
    padding: 0 150px;
  }
  .banner h1 {
    font-size: 5rem;
  }
  .banner p {
    font-size: 2rem;
  }
  .navbar-dark .navbar-nav .nav-link {
    padding: 23px 15px;
  }
  .navbar-dark .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 15px;
    left: 30%;
    right: 30%;
    height: 1px;
    background-color: #fff;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    transition: transform 0.1s ease-in;
  }
  .navbar-dark .navbar-nav .nav-link:hover::after {
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
  }
  .dropdown-menu {
    min-width: 200px;
    -webkit-animation: dropdown-animation 0.3s;
    animation: dropdown-animation 0.3s;
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
  }
}
@-webkit-keyframes navbar-animation {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes navbar-animation {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
@-webkit-keyframes dropdown-animation {
  0% {
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    transform: scaleY(0);
  }
  75% {
    -webkit-transform: scaleY(1.1);
    -ms-transform: scaleY(1.1);
    transform: scaleY(1.1);
  }
  100% {
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1);
  }
}
@keyframes dropdown-animation {
  0% {
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    transform: scaleY(0);
  }
  75% {
    -webkit-transform: scaleY(1.1);
    -ms-transform: scaleY(1.1);
    transform: scaleY(1.1);
  }
  100% {
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1);
  }
}

.card {
  -webkit-transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55) 0s;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55) 0s;
}

.card:hover {
  -webkit-transform: translateY(-7px);
          transform: translateY(-7px);
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}

 .weatherwidget-io {
    background-color: transparent !important; /* Use !important to override inline styles */
  }

.announcement-text {
  font-size: 14px;
  text-align: left !important;
}

.bigNav-text {
  font-size: 19px;
  text-align: right !important;
}

.bg-purple {
	
	background:#5D3FD3 ;
}

.bg-green {
	background: #2ecc71 ;
}



.blog-post {
  -webkit-transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55) 0s;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55) 0s;
}

.blog-post .blog-img .overlay {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.blog-post .blog-img .post-meta {
  bottom: 5%;
  right: 5%;
  z-index: 1;
}


.blog-post .content h1, .blog-post .content h2, .blog-post .content h3, .blog-post .content h4, .blog-post .content h5, .blog-post .content h6 {
  line-height: 1.2;
}

.blog-post .content .title {
  font-size: 18px;
}

.blog-post .content .title:hover {
  color: #6dc77a !important;
}

.blog-post .content .author .name:hover {
  color: #6dc77a !important;
}

.blog-post:hover {
  -webkit-transform: translateY(-7px);
          transform: translateY(-7px);
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
}

.blog-post:hover .blog-img .overlay {
  opacity: 0.65;
}

.blog-post:hover .blog-img .post-meta {
  opacity: 1;
}

.blog-post .post-meta .like i,
.profile-post .like i {
  -webkit-text-stroke: 2px #dd2427;
  -webkit-text-fill-color: transparent;
}

.blog-post .post-meta .like:active i, .blog-post .post-meta .like:focus i,
.profile-post .like:active i,
.profile-post .like:focus i {
  -webkit-text-stroke: 0px #dd2427;
  -webkit-text-fill-color: #dd2427;
}

.avatar.avatar-ex-sm {
    height: 36px;
}

.announcement.announcement-ex-sm {
    height: 86px;
}


/* BDJ CSS */

.timetable-header small {
	font-size: .65em;
	text-transform: uppercase;
}

.timetable-text strong {

	text-transform: uppercase
}

.timetableItem {
	font-size: .65em;
	position: relative;
	opacity: 1;
	transition: opacity .5s ease;
	padding: 4px 4px 4px 4px;
	border-bottom: solid 1px gray;
	margin: 0 0 4px 0
}


.timetableItem:last-child {
	border: none;
	padding-bottom: 0;
	margin: 0
}

.timetableItem:hover {
  background: rgba(239, 239, 239, 0.2); /* Use rgba to include opacity */

}


/* Footer */

section {
    padding: 60px 0;
    margin: 0 auto; /* Center the section horizontally */
}

section .section-title {
    text-align: center;
    color: #007b5e;
    margin-bottom: 50px;
    text-transform: uppercase;
}

#footer {
    background: #007b5e; /* Your existing background color */
/*    background-image: url('images/1.jpg'); /* Replace 'your-image-url.jpg' with your image file */
/*    background-size: cover; /* Adjust as needed */
/*   background-position: center; /* Adjust as needed */
    padding: 20px; /* Adjust as needed */ 
    text-align: left; /* Adjust as needed */
    color: #fff; /* Adjust text color as needed */
/*    opacity: 0.2; /* Adjust the opacity as needed */
}
#footer h2{
	padding-left: 20px;
    padding-bottom: 6px;
    margin-bottom: 20px;
    color:#ffffff;
}
#footer a {
    color: #ffffff;
    text-decoration: none !important;
    background-color: transparent;
    -webkit-text-decoration-skip: objects;
}
#footer ul.social li{
	padding: 3px 0;
}
#footer ul.social li a i {
    margin-right: 5px;
	font-size:25px;
	-webkit-transition: .5s all ease;
	-moz-transition: .5s all ease;
	transition: .5s all ease;
}
#footer ul.social li:hover a i {
	font-size:30px;
	margin-top:-10px;
}
#footer ul.social li a,
#footer ul.quick-links li a{
	color:#ffffff;
}
#footer ul.social li a:hover{
	color:#eeeeee;
}
#footer ul.quick-links li{
	padding: 3px 0;
	-webkit-transition: .5s all ease;
	-moz-transition: .5s all ease;
	transition: .5s all ease;
}
#footer ul.quick-links li:hover{
	padding: 3px 0;
	margin-left:5px;
	font-weight:700;
}
#footer ul.quick-links li a i{
	margin-right: 5px;
}
#footer ul.quick-links li:hover a i {
    font-weight: 700;
}

#footer form {
    display: flex;
    flex-direction: column;
    max-width: 300px;
    margin: 0 auto;
}

#footer input,
#footer textarea {
    padding: 4px;
    margin-bottom: 6px;
    border: 1px solid #fff;
    border-radius: 3px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 10px;
}

#footer input[type="submit"] {
    background-color: #fff;
    color: #007b5e;
    cursor: pointer;
    border: none;
    border-radius: 3px;
    padding: 8px;
    font-weight: bold;
    font-size: 10px;
}

#footer input[type="submit"]:hover {
    background-color: #005b47;
    color: #fff;
}

@media (max-width:767px){
	#footer h5 {
    padding-left: 0;
    border-left: transparent;
    padding-bottom: 0px;
    margin-bottom: 10px;
}

/* Admin CSS */

.panel-body .btn:not(.btn-block) { width:120px;margin-bottom:10px; }      



/* Info Cards */
.info-card {
  padding-bottom: 10px;
}

.info-card h6 {
  font-size: 28px;
  color: #012970;
  font-weight: 700;
  margin: 0;
  padding: 0;
}

.card-icon {
  font-size: 32px;
  line-height: 0;
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  flex-grow: 0;
}

.sales-card .card-icon {
  color: #4154f1;
  background: #f6f6fe;
}

.revenue-card .card-icon {
  color: #2eca6a;
  background: #e0f8e9;
}

.customers-card .card-icon {
  color: #ff771d;
  background: #ffecdf;
}