.custom-bg {
    background: linear-gradient(to bottom, #1d5962, #39766c);
}

.custom-bg2 {
    background: linear-gradient(to bottom, #1d5962, #39766c, rgba(255, 255, 255, 0));
}

.custom-bg3 {
    background: linear-gradient(to bottom,#8cd1d70a, #69b3ab);
}

.pacifico-regular {
    font-family: "Caveat", cursive;
    font-weight: 400;
}

.card-bg{
    background-color: azure;
}

@media (min-width: 576px) {
    .w-sm-50 {
      width: 50%;
    }
}

.round{
    border-radius: 20px;
}

.marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
  }

  .marquee p {
    display: inline-block;
    animation: marquee 1s linear infinite;
  }

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

.heading{
    color:#39766c;
}

.secondary-text{
    color:#39766c!important;
    font-weight: 400;
}


.main-banner {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    top: 0px;
  }
  #bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .sidebar {
    height: 100vh;
    background-color: #f8f9fa;
    padding: 1rem;
  }
  .content {
      padding: 1rem;
  }

  .code-block {
    background-color: #2d2d2d;
    color: #f8f8f2;
    padding: 1rem;
    border-radius: 5px;
    overflow-x: auto;
    font-family: monospace;
}
.code-block .keyword { color: #66d9ef; }
.code-block .string { color: #e6db74; }
.code-block .comment { color: #75715e; }
.code-block .function { color: #a6e22e; }

@media (min-width: 768px) {
  .offcanvas {
      visibility: visible !important;
  }
}

.dropdown-submenu {
  position: relative;
}

.dropdown-submenu .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -1px;
}
.embed-responsive {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden;
}

.embed-responsive::before {
    content: "";
    display: block;
    padding-top: 56.25%; /* Aspect ratio: 16:9 */
}

.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.blog-detail img {
    margin-bottom: 10px; /* Adjust as needed */
}

.blog-detail h2,
.blog-detail p {
    margin-bottom: 15px; /* Reduce space */
}

.blog-detail .embed-responsive {
    margin-top: 20px; /* Add or reduce space as needed */
}
