General Reset
* {
    margin: 0;
    padding: 0;
    
}

/* Body Styles */
body {
    font-family: Arial, sans-serif;
}

/* Navbar Styles */
.navbar {
     /* Adjust the navbar background */
    padding: 10px 0;
    border-style: solid;
        border-left-width: 0px !important;
        border-right-width: 0px !important;
        border-top-width: 3px !important;
        border-top-color: #ffb607;
        border-bottom-width: 3px !important;
        border-bottom-color: #ffb607;

}
.nav-item  .dropdown-item:hover{
    background-color: #fedd8a;
}
.nav-link:hover{
    background-color: rgb(253, 208, 103);
 }

/* Social Icon Styles */
.social-icon-one {
    list-style: none;
    padding: 0;
    margin: 0;
    
}

.social-icon-one li {
    display: inline-block;
    margin-right: 15px;

}

.social-icon-one li a {
    color: #e91919;
    font-size: 20px;
    transition: color 0.3s ease;
}

.social-icon-one li a:hover {
    color: #ff9e1e; /* Change on hover */
}

/* Font size and icon size */
.navbar-nav .nav-item .nav-link i {
    margin-right: 8px;
    font-size: 18px; /* Icon size */
}

/* Make the text bolder */
.navbar-nav .nav-item .nav-link {
    font-weight: 500;
}

/* Navbar collapse button (hamburger) */
/* .navbar-toggler {
    borde
} */

/* .navbar-toggler-icon {
    background-color: #fff;
} */

/* Responsive Styles */
@media (max-width: 768px) {
    .navbar-nav {
        text-align: center;
    }
    
    .social-icon-one {
        margin-top: 10px;
        text-align: center;
    }

    .social-icon-one li {
        display: inline-block;
        margin-right: 10px;
    }
}

@media (max-width: 480px) {
    .responsive-logo {
        width: 100%; 
        max-width: 400px; 
    }
} 
/* Basic Styles for the container */
.container-fluid {
    position: relative; /* To manage z-index positioning */
    width: 110%;
    
}

/* Styles for Menu 1 (Image) */
.menu-1 {
    position: relative;
    z-index: 1; /* Image goes behind the text */
}

.menu-1 img {
    width: 1690px;  
    height: 600px; 
    object-fit: cover; 
}


/* Responsive Styles for mobile screens (max-width: 480px) */
@media (max-width: 480px) {
    .menu-1 img {
        width: 120%;  
        height: 40%;  
        object-fit: cover; 
    }
}


.menu-2 {
    position: absolute; /* Position the text on top of the image */
    top: 200px; /* Position from the top of the container */
    left: 450px; /* Center the text horizontally */
    transform: translateX(-50%); /* Center text horizontally */
    text-align: center;
    color: rgb(129, 141, 252); /* Text color */
    z-index: 2; /* Ensures the text is above the image */
}


/* Responsive styles for mobile screens (max-width: 480px) */
@media (max-width: 480px) {
    .menu-2 {
        top: 100px; 
        left: 120px; 
        transform: translateX(-50%); 
        font-size: 1.2em; 
    }
}


h3 {
    font-size: 2em;
}

h2 {
    font-size: 3em;
}



/* For mobile screens or very small devices (max-width: 480px) */
 @media (max-width: 480px) {
    h3 {
        font-size: 1.2em;
    }

    h2 {
        font-size: 2em;
    }
} 

.one {
    padding: 12px 25px;  /* Adds padding inside the button */
    font-size: 1.1em;  /* Sets the font size */
    background-color: rgb(253, 208, 103);  /* Blue background color */
    color: white;  /* White text color */
    border: none;  /* Removes the border */
    border-radius: 5px;  /* Rounded corners */
    cursor: pointer;  /* Changes the cursor to a pointer on hover */
    transition: background-color 0.3s ease, transform 0.2s ease;  /* Smooth transitions */
}

/* Hover Effect */
.one:hover {
    background-color: rgb(255, 182, 7);  /* Darker blue when hovered */
    transform: scale(1.05);  /* Slightly enlarge the button when hovered */
}

/* Focus Effect */
.one:focus {
    outline: none;  /* Removes the default focus outline */
    box-shadow: 0 0 8px rgb(250, 217, 139);;  /* Custom blue focus outline */
}


@media (max-width: 480px) {
    .one {
        width: 180px;  /* Makes the button full width on very small screens */
        font-size: 13px;  /* Increase font size further for readability */
        /* padding: 10px 25px;  */
    }
}


/* Basic styling for container */
.container {
    padding: 30px;
    max-width: 1200px;
    margin: 0 auto;
    font-family: Arial, sans-serif;
}

/* Heading styles */
h1 {
    font-size: 2.5em; /* Larger heading font size */
    color: #f8b408; /* Dark color for the heading */
    text-align: center;
    margin-bottom: 20px;
}

/* Paragraph styling */
p {
    font-size: 1.2em; /* Adjust paragraph font size */
    line-height: 1.6;
    color: #34495E; /* Dark grey color for text */
    text-align: justify; /* Justify the text for better readability */
    margin-bottom: 20px;
}



/* For Mobile Devices (max-width: 480px) */
@media (max-width: 480px) {
    .container {
        padding: 15px; /* Further reduce padding for small screens */
    }

    h1 {
        font-size: 1.8em; /* Reduce heading size for mobile */
    }

    p {
        font-size: 1em; /* Further reduce paragraph font size for small screens */
    }
}


/* General styling for the section */
.causes-section {
    padding: 50px 0;
    
    color: white;
}

.auto-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Causes Block Styles */
.causes-block {
    margin-bottom: 30px;
}

.causes-block .inner-box {
    border-radius: 5px;
    overflow: hidden;
    
    transition: transform 0.3s ease-in-out;
}

.causes-block:hover .inner-box {
    transform: scale(1.05); /* Slight zoom effect on hover */
}

.causes-block .image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.causes-block .lower-box {
    padding: 20px;
}

.causes-block .content h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #fff;
}

.causes-block .content .text {
    font-size: 1em;
    color: #bbb;
    margin-bottom: 20px;
}

.donate-bar {
    
    height: 10px;
    margin-bottom: 10px;
}

.donate-bar .bar-inner {
    background-color: #8cbefc;
    height: 100%;
}

.donate-bar .count-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 0.9em;
}

.causes-info {
    font-size: 1.2em;
    font-weight: bold;
    color: #f8bd2a;
}



/* For Mobile Devices (max-width: 480px) */
@media (max-width: 480px) {
    .causes-block {
        margin-bottom: 15px;
    }

    .causes-block .content h3 {
        font-size: 1.2em;
    }

    .causes-block .content .text {
        font-size: 0.8em;
    }

    .causes-info {
        font-size: 0.9em;
    }
}




/* General Styling for Contact Section */
.contact_section {
    padding: 60px 0;
    background-color: #f8f9fa;
    font-family: Arial, sans-serif;
}

.contact_taital {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 40px;
    color: #333;
}

/* Contact Section Form */
.contact_main {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact_main .form-group {
    margin-bottom: 20px;
}

.email-bt,
.massage-bt {
    width: 100%;
    padding: 12px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 1em;
}

.massage-bt {
    resize: vertical;
}

.send_bt {
    text-align: center;
    margin-top: 20px;
}

.send_bt a {
    background-color: #007bff;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2em;
}

.send_bt a:hover {
    background-color: #0056b3;
}

/* Footer Section */
.footer_section {
    
    color: white;
    padding: 60px 0;
}

.location_bg {
    background-color: #ffb607;
    height: 190px;
}

.location_main {
    text-align: center;
}

.location_main ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    margin: 0;
}

.location_main ul li {
    margin: 0 20px;
}

.location_main ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.2em;
}

.location_main ul li img {
    width: 25px;
    margin-right: 10px;
}

.map-responsive {
    padding: 10px;
    overflow: hidden;
    max-width: 100%;
    height: auto;
}

.map-responsive iframe {
    width: 100%;
    height: 400px;
    border: none;
}


/* For Mobile Devices (max-width: 480px) */
@media (max-width: 480px) {
    .contact_taital {
        font-size: 1.8em;
    }

    .contact_main {
        padding: 20px;
    }

    .email-bt,
    .massage-bt {
        font-size: 0.85em;
    }

    .send_bt a {
        padding: 8px 15px;
        font-size: 0.9em;
    }

    .location_main ul {
        flex-direction: column;
        padding: 0;
    }

    .location_main ul li {
        margin-bottom: 10px;
    }
}

.wave-separator{
    height: 9px;
    width: 100%;
    background: url(images/bg-header.png) repeat-x bottom;
    /* position: absolute; */
    /* bottom: -9px; */
    /* z-index: 25; */
    background-color: #ffb607;
  }


@media screen and (max-width: 480px) {
    .row {
      flex-direction: column;
    }
    .col {
      width: 100%;
      padding: 10px;
    }
    i {
      font-size: 30px;
    }
    h3 {
      font-size: 18px;
    }
    p {
      font-size: 13px;
    }
  }

  
  
  /* Base styles */
.container-2 {
    position: relative; /* This will help with layering the child elements */
  }
  
  .box-1 {
    position: relative; /* Ensures the image is on the correct layer */
    width: 100%;
    overflow: hidden;
  }
  
  .box-1 img {
    /* width: 1670px;
    height: 800px; */
    /* object-fit: cover; */
    z-index: 1; /* Image is on the bottom layer */
  }
  
  .box-2 {
    position: absolute; /* This will position it over the image */
    top: 50%; /* Centers the text vertically */
    left: 50%; /* Centers the text horizontally */
    transform: translate(-50%, -50%); /* Adjust to center text perfectly */
    /* background-color: rgba(0, 0, 0, 0.5);  */
    padding: 20px;
    text-align: center;

    color: white;
    z-index: 2; /* This places the text on top of the image */
  }
  
  h1 {
    font-size: 100px;
    margin: 0;
  }
  
  /* Media Queries */
  
  /* For devices with a width of 768px or less (tablets and below) */
  /* @media (max-width: 768px) {
    .box-1 img {
      height: 300px; 
    }
  
    h1 {
      font-size: 2rem;
    }
  
    .box-2 {
      top: 60%; 
      padding: 15px;
    }
  } */
  
  /* For devices with a width of 480px or less (phones and below) */
  @media (max-width: 480px) {
    .box-1 img {
        /* width: 612px;  
        height: 427px;   */
        /* object-fit: cover;  */
        width: 700px; 
        max-width: 410px; 
    }
  
    h1 {
      font-size: 1.1rem; /* Further reduce font size for mobile */
    }
  
    .box-2 {
      top: 300px; /* Further adjust text position for mobile */
      padding: 10px;
    }
  }
  


  /* Base styles */
.container-3 {
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
  }
  
  .row {
    display: flex;
    flex-wrap: wrap; /* Allows columns to stack on small screens */
    justify-content: space-between;
  }
  
  .col-6 {
    width: 50%;
    padding: 10px;
  }
  
  .col-6 img {
    width: 800px;
    height: 400px;
    object-fit: cover;
  }
  
  h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #fda116;
  }
  
  p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
  }
  
  strong {
    font-weight: bold;
  }
  
  /* Media Queries */
  
  /* For devices with a width of 768px or less (tablets and below) */
  /* @media (max-width: 768px) {
    .col-6 {
      width: 100%; 
      padding: 15px; 
    }
  
    h1 {
      font-size: 2rem; 
    }
  
    p {
      font-size: 1.1rem; 
    }
  } */
  
  /* For devices with a width of 480px or less (phones and below) */
  @media (max-width: 480px) {
    .col-6 img {
        width: 700px; 
        max-width: 380px;
      }
      .col-6 {
        width: 700px; 
        max-width: 1380px;
        object-fit: cover;
        text-align: center;
        padding: 15px; 
      }
      h1 {
        font-size: 1.8em; /* Reduce heading size for mobile */
    }

    p {
        font-size: 1em; /* Further reduce paragraph font size for small screens */
    }
  
    
  }


  /* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
  }
  
  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .stats-item {
    
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
  }
  
  .stats-item .purecounter {
    font-size: 2rem;
    font-weight: bold;
    color: #1d4ed8; /* Tailwind blue */
  }
  
  .stats-item p {
    font-size: 1.1rem;
    color: #333;
    margin-top: 10px;
  }
  
  .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  
  .col-lg-3, .col-md-6 {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
  }
  
  @media (min-width: 768px) {
    .col-md-6 {
      width: 48%;
    }
  }
  
  @media (min-width: 992px) {
    .col-lg-3 {
      width: 23%;
    }
  }
  
  

  .container-4 img {
    width: 100%;
    height: 650px;
    display: block;
    margin: 0 auto;
  }
  
  
  
 /* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
  }
  
  /* Container for the table */
  .container-5 {
    padding: 20px;
    margin-top: 20px;
  }
  
  /* Table Styling */
  table {
    width: 100%;
    max-width: 1000px;
    border-collapse: collapse;
    height: 350px;
  }
  
  table th, table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #ddd;
  }
  
  table th {
    background-color: #f4f4f4;
    color: #333;
  }
  
  table tbody tr:nth-child(even) {
    background-color: #f9f9f9;
  }
  
  table tbody tr:hover {
    background-color: #f1f1f1;
  }
  
  h2 {
    margin-bottom: 20px;
    font-size: 2rem;
    text-align: center;
    color: #333;
  }
  
  /* Responsive Table - On smaller screens, we will stack the table */
  .table-responsive {
    overflow-x: auto;
  }
  
  /* Media Query for small screens (Below 768px) */
  @media (max-width: 767px) {
    table thead {
      display: none; /* Hide table headers */
    }
  
    table, table tbody, table tr, table td {
      display: block;
      width: 100%;
    
    }
  
    table td {
      text-align: right;
      position: relative;
      padding-left: 50%; /* Create space for labels */
    }
  
    table td:before {
      content: attr(data-label); /* Add data labels to each cell */
      position: absolute;
      left: 10px;
      font-weight: bold;
      color: #333;
    }
  }



  .container-6, .container-7, .container-8 {
    padding: 20px;
  }
  
  /* Image Styling */
  img {
    width: 100%;
    height: auto;
    border-radius: 8px; /* Optional: Add rounded corners to images */
  }
  
  /* Responsive Design */
  .row-cols-4 {
    display: flex;
    flex-wrap: wrap;
    /* gap: 15px; */
  }
  .col:hover{
    transform: scale(1.05);
  }
  
  

  @media (max-width: 768px) {
    .row-cols-4 {
      display: grid;
      grid-template-columns: 1fr;
      gap: 15px;
    }
  
    .col img {
      width: 100%;
      height: 200px; /* Optional: Set a fixed height for images on small screens */
      max-width: 300px;
      object-fit: cover;
    }
  }
  


  .container-9 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px;
  }
  
  .section-title {
    text-align: center;
    margin-bottom: 40px;
  }
  
  .section-title h2 {
    font-size: 2.5em;
    font-weight: bold;
  }
  
  .section-title p {
    font-size: 1.1em;
    color: #777;
  }
  
  .info-wrap {
    background-color: #f4f4f4;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .info-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
  }
  
  .info-item i {
    font-size: 1.5em;
    color: #007BFF;
    margin-right: 15px;
  }
  
  .info-item h3 {
    font-size: 1.2em;
    font-weight: bold;
  }
  
  .info-item p {
    font-size: 1em;
    color: #555;
  }
  
  form .form-control {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
  }
  
  form button {
    background-color: #007BFF;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  form button:hover {
    background-color: #0056b3;
  }
  
  /* Media Queries for Responsiveness */
  
  /* Tablet devices (landscape and portrait) */
  @media (max-width: 1024px) {
    .container-9 {
      padding: 20px;
    }
  
    .section-title h2 {
      font-size: 2em;
    }
  
    .section-title p {
      font-size: 1em;
    }
  
    .col-lg-5,
    .col-lg-7 {
      width: 100%;
      margin-bottom: 30px;
    }
  
    .info-wrap {
      padding: 15px;
    }
  
    .info-item i {
      font-size: 1.3em;
    }
  
    form .form-control {
      padding: 8px;
    }
  
    form button {
      padding: 10px 25px;
    }
  }
  
  /* Mobile devices */
  @media (max-width: 768px) {
    .section-title h2 {
      font-size: 1.5em;
    }
  
    .section-title p {
      font-size: 0.9em;
    }
  
    .col-lg-5,
    .col-lg-7 {
      width: 100%;
    }
  
    .info-wrap {
      padding: 10px;
    }
  
    .info-item {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .info-item i {
      font-size: 1.2em;
      margin-bottom: 8px;
    }
  
    form .form-control {
      padding: 8px;
    }
  
    form button {
      padding: 10px 20px;
    }
  
    iframe {
      width: 100%;
      height: 200px;
    }
  }
  
  /* Small Mobile devices */
  @media (max-width: 480px) {
    .section-title h2 {
      font-size: 1.2em;
    }
  
    .section-title p {
      font-size: 0.8em;
    }
  
    .info-wrap {
      padding: 10px;
    }
  
    .info-item {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .info-item i {
      font-size: 1.2em;
      margin-bottom: 8px;
    }
  
    form .form-control {
      padding: 8px;
    }
  
    form button {
      padding: 10px 15px;
    }
  
    iframe {
      width: 100%;
      height: 150px;
    }
  }





.container-11 {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.animation-section {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.image-container-1 {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

/* img {
  width: 100%;
  max-width: 300px; 
  height: auto;
  opacity: 0; 
  transition: opacity 1s ease-in-out; 
} */

/* Adding animation class to trigger image fading */
.animate-img.visible {
  opacity: 1;
}

.content {
  text-align: center;
  padding: 20px;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #333;
}

p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .image-container-1 {
    flex-direction: column;
    gap: 10px;
  }

  h1 {
    font-size: 2rem;
  }

  p {
    font-size: 1rem;
  }
}



.pic img {
  width: 100%; /* Make the image responsive */
  height: auto; /* Adjust the height automatically to maintain aspect ratio */
  max-height: 600px; /* Maintain the fixed maximum height */
}

.container-12 {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

h1 {
  font-size: 2.5rem;
  margin-top: 30px;
  text-align: center;
  font-weight: 700;
}

/* p {
  font-size: 1.1rem;
  text-align: center;
  color: #333;
  line-height: 1.6;
  margin-bottom: 20px;
} */



/* ul li::before {
  content: "✔️"; 
  margin-right: 10px;
} */

/* Media Queries */

/* For tablet devices */

/* For mobile devices */
/* @media (max-width: 768px) { */
  /* .pic img {
    height: 300px; 
   }

  h1 {
    font-size: 1.8rem;
  }

  p {
    font-size: 1rem;
  }

  ul li {
    font-size: 0.9rem;
  }
} */ 

/* For very small devices (e.g., phones in portrait mode) */
@media (max-width: 480px) {
  .pic img {
    width: 700px; 
    max-width: 410px; 
  }

  
}


/* Base Styles */
.container-13 {
  padding: 0;
  margin: 0;
  
}

.nav-link {
  color: white;
  font-size: 19px;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.nav-link i {
  margin-right: 10px;
}

/* Header Section */
.container-14 {
  background-color: #ffb607;
  height: 90px;
}

.container-13 .row {
  display: flex;
  /* justify-content: space-between; */
  align-items: center;
  height: 100%;
}

.container-14 .col {
  display: flex;
  align-items: center;
}

/* Footer Section */
.footer__copyright__social a {
  color: white;
  margin: 0 10px;
  font-size: 20px;
}

.footer__copyright__social a:hover {
  color: #ffb607;
}

/* Media Queries */
/* @media screen and (max-width: 1200px) {
  .container .row {
      flex-direction: column;
      text-align: center;
  }

  .container .col {
      margin-bottom: 10px;
  }

  .footer__copyright__social {
      text-align: center;
  }

  .footer__copyright__social a {
      font-size: 18px;
  }
}

@media screen and (max-width: 768px) {
  .container .row {
      flex-direction: column;
      padding: 10px;
  }

  .container .col {
      margin-bottom: 10px;
  }

  .footer__copyright__text p {
      font-size: 12px;
  }

  .footer__copyright__social a {
      font-size: 16px;
      margin: 5px;
  }
} */

@media screen and (max-width: 480px) {
  .container-13 .row {
      flex-direction: column;
      padding: 1px;
  }

  .footer__copyright__text p {
      font-size: 10px;
  }

  .footer__copyright__social a {
      font-size: 14px;
      margin: 5px;
  }

  .footer__copyright__social a {
      font-size: 14px;
  }
}


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

 .services {
  text-align: center;
  /* background-color: #fff; */
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.services:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
} 

.icon {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
  width: 80px;
  margin-bottom: 20px;
  border-radius: 50%;
  /* background-color: #ffb607; */
}

.icon i {
  font-size: 40px;
  color: white;
}

.text h3 {
  font-size: 18px;
  color: #333;
  margin-bottom: 15px;
}

.text p {
  font-size: 14px;
  color: #777;
}

@media screen and (max-width: 768px) {
  .ftco-section .row {
      display: flex;
      flex-direction: column;
      align-items: center;
  }

  .col-md-3 {
      flex: 1 1 100%; /* This will give a 1-column layout */
      margin: 10px 0;
  }

  .services {
      padding: 20px;
  }

  .icon i {
      font-size: 35px;
  }

  .text h3 {
      font-size: 16px;
  }

  .text p {
      font-size: 13px;
  }
}


.container-16 {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.col-lg-8 {
  flex: 0 0 66.66667%;
  max-width: 66.66667%;
}

.col-lg-4 {
  flex: 0 0 33.33333%;
  max-width: 33.33333%;
}

.sidebar-box {
  margin-bottom: 30px;
}

.blog-entry {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin-bottom: 30px;
}

.block-20 {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.text {
  padding: 15px;
}

.meta {
  font-size: 14px;
  color: #777;
}

.meta a {
  color: #777;
  text-decoration: none;
}

.meta a:hover {
  color: #ffb607;
}

.heading {
  font-size: 24px;
  font-weight: bold;
  margin-top: 10px;
}

.heading a {
  color: #333;
  text-decoration: none;
}

.heading a:hover {
  color: #ffb607;
}

.btn-outline-primary {
  border: 1px solid #ffb607;
  color: #ffb607;
  padding: 10px 20px;
  text-decoration: none;
}

.btn-outline-primary:hover {
  background-color: #ffb607;
  color: white;
}

/* Sidebar */
.sidebar-box h3.heading-2 {
  font-size: 22px;
  margin-bottom: 15px;
}

/* Tag Cloud */
.tagcloud a {
  margin: 5px;
  padding: 5px 10px;
  background-color: #f4f4f4;
  color: #333;
  text-decoration: none;
}

.tagcloud a:hover {
  background-color: #ffb607;
  color: white;
}

/* Media Queries for Responsiveness */

/* Tablet screens */
@media screen and (max-width: 1024px) {
  .col-lg-8 {
      flex: 0 0 100%;
      max-width: 100%;
  }

  .col-lg-4 {
      flex: 0 0 100%;
      max-width: 100%;
  }

  .block-20 {
      height: 180px;
  }

  .heading {
      font-size: 20px;
  }

  .sidebar-box h3.heading-2 {
      font-size: 20px;
  }

  .meta {
      font-size: 12px;
  }
}

/* Mobile screens */
@media screen and (max-width: 768px) {
  .container {
      padding: 10px;
  }

  .row {
      flex-direction: column;
  }

  .col-lg-8, .col-lg-4 {
      max-width: 100%;
      flex: 0 0 100%;
  }

  .block-20 {
      height: 160px;
  }

  .heading {
      font-size: 18px;
  }

  .meta {
      font-size: 12px;
  }

  .btn-outline-primary {
      font-size: 14px;
  }

  .sidebar-box h3.heading-2 {
      font-size: 18px;
  }
}

/* Small mobile screens */
@media screen and (max-width: 480px) {
  .container {
      padding: 5px;
  }

  .block-20 {
      height: 150px;
  }

  .heading {
      font-size: 16px;
  }

  .btn-outline-primary {
      font-size: 12px;
  }

  .sidebar-box h3.heading-2 {
      font-size: 16px;
  }

  .meta {
      font-size: 10px;
  }

  .tagcloud a {
      font-size: 12px;
  }
}










