:root {
    ---font-family: "Bitter", serif;
    ---manrope-font: "Manrope", sans-serif;
    ---menu-title-size: 20px;
    ---menu-font-color: #01aa3f;
    ---menu-bg-color: #f1f1f1;
    ---menu-text-color: #858585;
}

.nav-content_container {
    display: flex;
    gap: 21px;
}

.content-container {
    flex: 4;
}

.banner-section {
    position: relative;
}

.banner-section img {
    height: 257px;
    width: 100%;
    object-fit: cover;
    filter: blur(2px);
}

.banner-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.banner-text {
    position: absolute;
    top: 50%;
    left: 50%;
    font-weight: bold;
    font-size: 47px;
    font-family: "Bitter", serif;
    transform: translate(-50%, -50%);
    color: white;
    z-index: 2;
}

.content-container .about_desc {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.content-container .about_desc p {
    text-align: justify;
    font-family: var(---manrope-font);
    color: #959595;
}

.content-container .about_desc .about-img {
    margin-bottom: 20px;
    object-fit: cover;
}

.content-container .about_desc .about-img img {
    object-fit: cover;
}

.nav-menu-content {
    flex: 1;
    height: 672px;
    padding: 10px 15px;
    background-color: var(---menu-bg-color);
    display: flex;
    flex-direction: column;
    text-align: start;
}

.nav-menu-content .side-menu-nav {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
}

.nav-menu-content .side-menu-nav .side-menu-title {
    font-family: var(---font-family);
    font-size: var(---menu-title-size);
    color: var(---menu-font-color);
    font-weight: bold;
    margin-bottom: 5px;
}

.side-menu-nav .side-menu-items {
}

.side-menu-nav .side-menu-items .item {
    /* border: 2px solid red; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 10px;
}

.side-menu-nav .side-menu-items .item:hover {
    color: white !important;
}

.side-menu-nav .side-menu-items .item .menu-title {
    height: 34px;
    background-color: white;
    border-radius: 5px;
    display: flex;
    align-items: center;
    padding: 10px 10px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.side-menu-nav .side-menu-items .item .menu-title:hover {
    background-color: #0e9841;
    color: white;
}

.side-menu-nav .side-menu-items .item .menu-title a {
    width: 100%;
    color: var(---menu-text-color);
}

.side-menu-nav .side-menu-items .item .menu-title a:hover {
    color: white;
}

/* Extra Large Screens (1700px and above) */
@media (min-width: 1700px) {
    .container {
        width: 1670px;
    }
    .nav-menu-content {
        padding: 60px 20px;
    }
    .banner-text {
        font-size: 50px;
    }
}

/* Large Screens (1440px to 1700px) */
@media (max-width: 1700px) and (min-width: 1440px) {
    .container {
        width: 1410px;
    }
    .banner-text {
        font-size: 45px;
    }
    .nav-menu-content {
        padding: 50px 15px;
    }
}

/* Medium-Large Screens (1300px to 1440px) */
@media (max-width: 1440px) and (min-width: 1300px) {
    .container {
        width: 1270px;
    }
    .banner-text {
        font-size: 42px;
    }
}

/* Medium Screens (1100px to 1200px) */
@media (max-width: 1200px) and (min-width: 1100px) {
    .container {
        width: 1070px;
    }
    .nav-menu-content {
        padding: 40px 10px;
    }
}

/* Small-Large Screens (992px to 1100px) */
@media (max-width: 1100px) {
    .banner-text {
        font-size: 38px;
    }
}

/* Tablets (768px to 992px) */
@media (max-width: 992px) and (min-width: 768px) {
    .container {
        width: 870px;
    }
    .nav-menu-content {
        height: auto;
        padding: 30px 10px;
    }
    .side-menu-nav .side-menu-title {
        font-size: 18px;
    }
    .side-menu-nav .side-menu-items .item .menu-title {
        height: 30px;
        padding: 8px 10px;
    }
}

/* Small Tablets (600px to 768px) */
@media (max-width: 768px) {
    .nav-content_container {
        flex-direction: column;
    }
    .nav-menu-content {
        flex: unset;
        height: auto;
    }
    .banner-section img {
        height: 200px;
    }
    .banner-text {
        font-size: 35px;
        text-align: center;
    }
    .side-menu-nav .side-menu-items .item {
        /* border: 2px solid red; */
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin-bottom: 10px;
    }
}

/* Large Mobile Devices (480px to 600px) */
@media (max-width: 600px) {
    .banner-section img {
        height: 180px;
    }
    .nav-menu-content {
        padding: 20px 10px;
    }
    .side-menu-nav .side-menu-items .item .menu-title {
        padding: 5px;
        font-size: 14px;
    }
    .nav-menu-content {
        height: auto;
        padding: 20px 10px;
        background-color: #f4f4f4; /* Optionally, you can adjust the background for mobile view */
    }

    .nav-menu-content .side-menu-nav {
        margin-bottom: 8px;
    }

    .nav-menu-content .side-menu-nav .side-menu-title {
        font-size: var(---menu-title-size-mobile);
    }

    .side-menu-nav .side-menu-items {
        padding-top: 0px;
    }

    .side-menu-nav .side-menu-items .item {
        margin-bottom: 8px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        margin-bottom: 8px;
        padding: 0px;
    }

    /* .side-menu-nav .side-menu-items .item .menu-title {
        padding: 8px 8px;
    } */

    .side-menu-nav .side-menu-items .item .menu-title:hover {
        background-color: #0e9841;
        color: white !important;
    }

    .side-menu-nav .side-menu-items .item .menu-title a {
        /* color: #333; */
    }

    .side-menu-nav .side-menu-items .item .menu-title a:hover {
        color: white;
    }
}

/* Small Mobile Devices (320px to 480px) */
@media (max-width: 480px) {
    .banner-section img {
        height: 150px;
    }
    .banner-text {
        font-size: 28px;
        padding: 10px;
    }
    .nav-menu-content {
        padding: 15px 5px;
    }
    .side-menu-nav .side-menu-items .item .menu-title {
        font-size: 12px;
    }

    .side-menu-nav .side-menu-items .item {
        /* border: 2px solid red; */
        display: flex;
        flex-direction: column;
        justify-content: center;
        /* margin-bottom: 10px; */
    }
}

/* Very Small Devices (Below 320px) */
@media (max-width: 320px) {
    .banner-text {
        font-size: 24px;
    }
    .side-menu-nav .side-menu-items .item .menu-title {
        padding: 3px;
        font-size: 10px;
    }
}

/* .side-menu{
    height: 672px;
    border: 3px solid green;
  } */

/* Side Menu */
/* .side-menu-title{
    font-family: 'bitter', serif;
    font-size: 20px;
    font-weight: bold;
    text-align: left; 
    padding: 10px 0px;
    color: #01AA3F; 
  }
  
  .side-menu{
    grid-column: span 3;
    background-color: #F1F1F1;
  }
  
  .side-menu-items{
  display: flex;
  flex-direction: column;
  gap: 10px;
  }
  
  .side-bar .side-menu-nav .item{
  background-color: white;
  border-radius: 5px;
  }
  
  .side-bar .side-menu-nav .item:hover{
  background-color: #0E9841;
  color: white !important;
  }
  
  .side-bar .side-menu-nav .item a{
  text-decoration: none;
  color: #858585;
  font-family: 'Roboto', sans-serif;
  } 
  
  .side-bar .side-menu-nav .item a:hover{
  color: white;
  }
  
  .nav-vertical {
  margin: 0px 20px;
  padding: 40px 0;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  height: 100%; 
  }
  .side-bar {
  grid-column: span 12;
  height: 100vh;
  position: relative;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  }
  
  .side-bar .menu {
  width: 100%;
  }
  
  .side-bar .menu .item {
  position: relative;
  cursor: pointer;
  }
  
  .side-bar .menu .item a {
  color: var(--white-color);
  font-size: 16px;
  text-decoration: none;
  display: block;
  padding: 5px 10px;
  line-height: 40px;
  }
  
  .side-bar .menu .item:hover {
  border-radius: 5px;
  background: #0E9841;
  color: white;
  transition: 0.3s ease;
  }
  
  .side-bar .menu .item i {
  margin-right: 15px;
  }
  
  .side-bar .menu .item a .dropdown {
  position: absolute;
  right: 0;
  transition: 0.3s ease;
  }
  
  .side-bar .menu .item .sub-menu {
  background: rgb(255, 255, 255, 0.1);
  display: none;
  }
  
  .side-bar .menu .item .sub-menu a {
  padding-left: 80px;
  }
  
  .side-menu-items .top_socialicons{
  text-align: left;
  } */

/* BREADCRUMB */
ul.breadcrumb {
    padding: 10px 0px;
    list-style: none;
    /* background-color: #eee; */
}

ul.breadcrumb li {
    display: inline;
    font-size: 18px;
}

ul.breadcrumb li + li:before {
    padding-left: 7px;
    color: #737373;
    content: ">\00a0";
}

ul.breadcrumb li a:hover {
    color: #01447e;
    text-decoration: underline;
}

.first-text a {
    color: #4e8abf;
    font-weight: normal;
    font-size: 20px;
    font-family: "Manrope", sans-serif;
    text-decoration: none;
}

.second-text a {
    color: #737373;
    font-weight: normal;
    font-size: 20px;
    font-family: "Manrope", sans-serif;
    text-decoration: none;
}

.main-title {
    text-align: left;
    font-size: 30px;
    font-weight: bold;
    font-family: "Bitter", serif;
    color: #01aa3f;
}

/* 
    @media screen and (max-width: 479px) {
      .banner-text{
        font-size: var(---title-font-size);
      }
  
      .first-text a{
        font-size: var(---media-sub-title);
      }
  
      .second-text a{
        font-size: var(---media-sub-title);
      }
  
      .main-title{
        font-size: var(---media-title);
      }
    } */
