@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
  font-family: "Poppins", sans-serif;
}

.sidebar.toggled {
  display: block;
}

@media (min-width: 768px) {
  .sidebar.toggled {
    width: 0;
    transition: width 0.2s ease;
  }

  .sidebar.toggled + .content {
    margin-left: 0;
    transition: margin-left 0.2s ease;
  }

  .sidebar-dark #sidebarToggle {
    margin-left: 2rem;
  }
}

nav {
  font-weight: 600;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.navbar-nav .nav-link {
  position: relative;
}

.navbar-nav .nav-link::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background-color: #c2c2c2;
  position: absolute;
  bottom: 5px;
  left: 0;
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}

.contact-section {
  padding: 60px 0;
}

.contact-info {
  margin-bottom: 40px;
}

.contact-info p span {
  font-weight: 600;
  color: #000;
}

.contact-form input,
.contact-form textarea {
  padding: 20px;
}

.contact-box {
  background-color: #f8f9fa;
  padding: 20px;
  border-radius: 5px;
}

.contact-box p {
  color: #555;
}

.contact-info {
  font-size: 1.1em;
}

/* Blog*/
.post-info {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: bold;
  color: #fff;
  letter-spacing: 0.1em;
}

.post-info > div {
  display: inline-block;
}

.post-info > div .seperator {
  display: inline-block;
  margin: 0 10px;
  opacity: 0.5;
}

.search-form .form-group {
  position: relative;
}

.search-form .form-group input {
  padding-right: 50px;
}

.search-form .icon {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

.block-20 {
  overflow: hidden;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  width: 100%;
  height: 350px;
  position: relative;
  display: block;
  border-radius: 8px;
}

@media (min-width: 768px) {
  .blog-entry {
    margin-bottom: 30px;
  }
}

@media (max-width: 767.98px) {
  .blog-entry {
    margin-bottom: 30px;
  }
}

.blog-entry .text {
  position: relative;
  border-top: 0;
  border-radius: 2px;
}

.blog-entry .text .desc {
  width: calc(100% - 100px);
}

.blog-entry .text .heading {
  margin-bottom: 16px;
}

.blog-entry .text .heading a {
  color: #000;
}

.blog-entry .text .heading a:hover,
.blog-entry .text .heading a:focus,
.blog-entry .text .heading a:active {
  color: #2f89fc;
}

.blog-entry .text .meta-chat {
  color: #b3b3b3;
}

.blog-entry .text .read {
  color: #000;
  font-size: 14px;
}

.blog-entry .meta {
  width: 100px;
  text-align: right;
}

.blog-entry .meta > div {
  display: block;
  margin-right: 5px;
  margin-bottom: 0px;
  font-size: 15px;
}

.block-21 .blog-img {
  display: block;
  height: 80px;
  width: 80px;
  -o-object-fit: cover;
     object-fit: cover;
}

.block-21 .text {
  width: calc(100% - 100px);
}

.block-21 .text .heading {
  font-size: 18px;
  font-weight: 300;
}

.block-21 .text .heading a {
  color: #000;
}

.block-21 .text .heading a:hover,
.block-21 .text .heading a:active,
.block-21 .text .heading a:focus {
  color: #2f89fc;
}

.block-21 .text .meta > div {
  display: inline-block;
  font-size: 12px;
  margin-right: 5px;
}

.block-21 .text .meta > div a {
  color: gray;
}

.sidebar-box {
  margin-bottom: 30px;
  padding: 25px;
  font-size: 15px;
  width: 100%;
  float: left;
  background: #fff;
}

.sidebar-box *:last-child {
  margin-bottom: 0;
}

.sidebar-box h3 {
  font-size: 18px;
  margin-bottom: 15px;
}

.btn.btn-primary.btn-outline-primary .button {
  border: 1px solid #2d5487;
  background: transparent;
  color: #2f89fc;
}

.hidden-text {
  display: none;
}

/* Home */
.carousel {
  margin-top: 60px;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.box-part {
  padding: 20px 10px;
}

.fa-solid {
  font-size: 4rem;
  color: #007bff;
}

.icon-user {
  font-size: 2rem;
}

span {
  font-size: 15px;
}

.box {
  padding: 60px 0 0 0;
}

.text {
  margin: 10px 0px;
}

.carousel-item img {
  height: 600px;
  -o-object-fit: cover;
     object-fit: cover;
}

video {
  border-radius: 10px;
  box-shadow: 2px 3px 5px rgba(0, 0, 0, 0.5);
}

@keyframes slideInFromLeft {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInFromRight {
  0% {
    transform: translateX(100%);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.custom-img {
  width: 100%;
  height: auto;
  min-height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}

.card-deck .card:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 8px rgba(0, 123, 255, 0.5);
  transition: transform 0.3s, box-shadow 0.3s;
}

.card {
  height: 100%;
}

.title:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 8px rgba(0, 123, 255, 0.5);
  transition: transform 0.3s, box-shadow 0.3s;
}

#intro-section,
.contact-section,
.about-container,
.ftco-section {
  margin-top: 80px;
}
/* Custom CSS for fixed sidebar */
#accordionSidebar {
  position: sticky;
  top: 0;
  left: 0;
  height: 100%;
  width: 250px; /* Adjust as necessary */
  z-index: 1000;
}

.height-50 {
  height: 50px;
}

.height-100 {
  height: 100px;
}

.notification-item {
  transition: background-color 0.3s ease;
}
.notification-item:hover {
  background-color: #f8f9fa; /* Light grey background on hover */
}
.notification-icon {
  font-size: 1.5rem; /* Adjust icon size */
  margin-right: 15px; /* Space between icon and line */
  display: flex;
  align-items: center; /* Center icon vertically */
}
.notification-line {
  width: 1px;
  height: 100%; /* Adjust as needed */
  background-color: #dee2e6; /* Light grey color for the line */
  margin-right: 15px; /* Space between line and text */
}
.notification-content {
  flex-grow: 1;
}
