/* Define font family */
@font-face {
    font-family: 'Inkburrow';
    src: url('inc/inkburrow.woff2') format('woff2'), /* Modern Browsers */
         url('inc/inkburrow.woff') format('woff'); /* Older Browsers */
    /* Add additional src entries for other font formats if needed */
}
.blogShort{ border-bottom:1px solid #ddd;}
.add{ padding: 10%; height: 300px;}

.nav-sidebar { 
    width: 100%;
    padding: 8px 0; 
    border-right: 1px solid #ddd;
}
.nav-sidebar a {
    color: #333;
    -webkit-transition: all 0.08s linear;
    -moz-transition: all 0.08s linear;
    -o-transition: all 0.08s linear;
    transition: all 0.08s linear;
}
.nav-sidebar .active a { 
    cursor: default;
    background-color: #34ca78; 
    color: #fff; 
}
.nav-sidebar .active a:hover {
    background-color: #37D980;   
}
.nav-sidebar .text-overflow a,
.nav-sidebar .text-overflow .media-body {
    white-space: nowrap;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis; 
}
.iframe-container {
  display: flex;
  justify-content: center;
 height: 100vh;
}
.btn-blog {
    color: #ffffff;
    background-color: #37d980;
    border-color: #37d980;
    border-radius:0;
    margin-bottom:10px
}
.btn-blog:hover,
.btn-blog:focus,
.btn-blog:active,
.btn-blog.active,
.open .dropdown-toggle.btn-blog {
    color: white;
    background-color:#34ca78;
    border-color: #34ca78;
}
h2{color:#34ca78;}
.margin10{margin-bottom:10px; margin-right:10px;}
 


/* Style the header with a grey background and some padding */
.header {
  overflow: hidden;
  background-color: #f1f1f1;
  padding: 20px 10px;
}

/* Style the header links */
.header a {
  float: left;
  color: black;
  text-align: center;
  padding: 12px;
  text-decoration: none;
  font-size: 18px;
  line-height: 25px;
  border-radius: 4px;
}

/* Style the logo link (notice that we set the same value of line-height and font-size to prevent the header to increase when the font gets bigger */
.header a.logo {
  font-size: 25px;
  font-weight: bold;
}
.logo-bg {
   
    padding:1px;
     background-color: #f1f1f1; 
      border-bottom:1px solid #ddd;
} 
.well2 {
    min-height: 650px; /* Set a default minimum height */
    padding: 5px; /* Set minimal padding on all sides */
    margin-bottom: 20px;
    background-color: #f5f5f5;
    border: 1px solid #e3e3e3;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
            box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
    overflow: hidden; /* Hide overflowing content */
    position: relative; /* Ensure relative positioning for absolute elements */
}

.fadein { 
    position: absolute;
    width: 300%; /* Set width to accommodate all images */
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    transition: transform 0.5s ease; /* Add transition for smooth sliding */
}

.fadein img {
    width: calc(100% / 3); /* Set width of each image to one-third of container width */
    height: auto;
    object-fit: cover;
    display: block; /* Ensure images are displayed as blocks */
}
/* Change the background color on mouse-over */
.header a:hover {
  background-color: #ddd;
  color: black;
}

/* Style the active/current link*/
.header a.active {
  background-color: dodgerblue;
  color: white;
}

/* Float the link section to the right */
.header-right {
  float: right;
}
/* Default size for the logo */
.logo {
    width: 100%; /* Adjust the width as needed */
    height: auto; /* Maintain aspect ratio */
}

/* Add media queries for responsiveness - when the screen is 500px wide or less, stack the links on top of each other */
@media screen and (max-width: 600px) {
  .header a {
    float: none;
    display: block;
    text-align: left;
  }
  .header-right {
    float: none;
  }
} 