@charset "utf-8"; /* CSS-Dokument */ 

.container-fluid1 { 
    background-color: #E31E25; 
    color: white; 
    padding: 10px; 
    width: 100%; 
} 

.footer-link { 
    color: white; 
    text-decoration: none; 
    margin-right: 10px; 
    font-size: 14px; 
} 

.footer-link:hover { 
    text-decoration: underline; 
    color: #FDDB00; 
} 

.social-icon { 
    color: white; 
    font-size: 20px; 
    margin-left: 15px; 
    transition: color 0.5s ease; 
} 

.social-icon:hover { 
    color: #FDDB00; 
} 

.header-login-icon { 
    color: white; 
    font-size: 20px; 
    margin-left: 15px; 
    transition: color 0.5s ease; 
    display: inline-flex; 
    align-items: center; 
} 

.header-login-icon:hover { 
    color: #FDDB00; 
} 

.container-fluid2 { 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    width: 100%; 
    max-width: 1140px; 
    margin: 10px auto 0 auto; 
    padding: 0 15px; 
    box-sizing: border-box; 
} 

.logo-img { 
    margin-left: 20px; 
    margin-right: 20px; 
    flex-shrink: 0; 
} 

.navbar { 
    background-color: transparent !important; 
    box-shadow: none; 
    padding: 0; 
    width: auto; 
    display: flex; 
    justify-content: center; 
} 

.navbar-nav { 
    display: flex; 
    justify-content: center; 
    gap: 20px; 
} 

.dropdown-menu { 
    display: none; 
    margin-top: 10px; 
    opacity: 0; 
    visibility: hidden; 
    transition: opacity 0.3s ease, visibility 0s 3s; 
} 

.nav-item.dropdown { 
    position: relative; 
} 

.nav-item.dropdown .dropdown-menu { 
    transition: opacity 0.3s ease, visibility 0s 0.3s; 
} 

.nav-item.dropdown:hover .dropdown-menu { 
    display: block; 
    opacity: 1; 
    visibility: visible; 
    transition: opacity 0.3s ease, visibility 0s 0s; 
} 

.nav-item.dropdown:hover .dropdown-menu, 
.nav-item.dropdown:hover { 
    display: block; 
    opacity: 1; 
    visibility: visible; 
} 

.nav-item.dropdown:hover .dropdown-menu:hover { 
    display: block; 
} 

.nav-item { 
    margin-right: 15px; 
} 

.nav-item:last-child { 
    margin-right: 0; 
} 

.nav-item.dropdown::after { 
    content: ""; 
    position: absolute; 
    top: 100%; 
    left: 0; 
    width: 100%; 
    height: 15px; 
    background: transparent; 
    pointer-events: auto; 
} 

.custom-nav-button, 
.custom-nav-button1, 
.nav-link, 
.dropdown-item { 
    color: black; 
    font-weight: bold; 
    text-transform: uppercase; 
    transition: color 0.5s ease; 
} 

.custom-nav-button:hover, 
.nav-link:hover, 
.dropdown-item:hover { 
    color: #FDDB00; 
} 

.custom-nav-button::after, 
.nav-link::after, 
.dropdown-item::after { 
    content: none; 
} 

.nav-link.active, 
.custom-nav-button.active { 
    color: #E31E25; 
} 

.dropdown-item { 
    color: black; 
    font-weight: normal; 
} 

.dropdown-item:hover { 
    color: #FDDB00; 
} 

.custom-nav-button1::before { 
    content: ''; 
    position: absolute; 
    bottom: -5px; 
    left: 0; 
    width: 0%; 
    height: 3px; 
    background-color: #E31E25; 
    transition: all 0.5s; 
} 

.custom-nav-button1:hover::before { 
    width: 7.5%; 
} 

.custom-nav-button::before { 
    content: ''; 
    position: absolute; 
    bottom: -5px; 
    left: 0; 
    width: 0%; 
    height: 3px; 
    background-color: #E31E25; 
    transition: all 0.5s; 
} 

.custom-nav-button:hover::before { 
    width: 100%; 
} 

#search-container { 
    position: relative; 
} 

#search-form { 
    display: flex; 
    align-items: center; 
    position: relative; 
} 

#search-hover-area { 
    display: flex; 
    align-items: center; 
    justify-content: flex-end; 
    position: relative; 
    min-width: 60px; 
    height: 40px; 
    padding: 10px; 
    transition: all 0.3s ease; 
} 

#search-input { 
    width: 0; 
    opacity: 0; 
    padding: 0; 
    margin-right: 0; 
    border: 1px solid #ccc; 
    border-radius: 4px; 
    transition: width 0.3s ease, opacity 0.3s ease, padding 0.3s ease; 
    position: relative; 
    z-index: 1; 
    background: white; 
} 

#search-toggle { 
    background: none; 
    border: none; 
    color: #E31E25; 
    font-size: 22px; 
    cursor: pointer; 
    transition: color 0.3s ease, transform 0.3s ease; 
    z-index: 2; 
    margin-left: 5px; 
} 

#search-hover-area:hover #search-input, 
#search-hover-area:focus-within #search-input { 
    width: 160px; 
    opacity: 1; 
    padding: 5px 10px; 
    margin-right: 10px; 
} 

#search-hover-area:hover #search-toggle, 
#search-hover-area:focus-within #search-toggle { 
    transform: translateX(0); 
} 

#search-toggle:hover + #search-input { 
    display: inline-block; 
    width: 150px; 
    transition: width 0.3s ease; 
} 

#search-toggle:hover { 
    color: darkred; 
} 

#search-container form { 
    display: flex; 
    align-items: center; 
    margin: 0; 
} 

.container-fluid2 .row { 
    display: flex; 
    flex-wrap: wrap; 
    align-items: center; 
} 

.container-fluid2 .row > div:first-child { 
    flex: 0 0 auto; 
    display: flex; 
    align-items: center; 
} 

.container-fluid2 .row > div:last-child { 
    flex: 1; 
    display: flex; 
    align-items: center; 
} 

.container-fluid3 { 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    height: 45px; 
    background-color: #E31E25; 
    color: #FDDB00; 
    padding: 10px; 
    width: 100%; 
    font-size: 25px; 
    font-weight: bold; 
    letter-spacing: 2px; 
    text-shadow: 2px 2px 0px black, -1px -1px 0px black, 1px -1px 0px black, -1px 1px 0px black; 
} 

.container-fluid4 {
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin: 0;
}

#carouselExampleIndicators1 {
  width: 100%;
  max-width: 100%; 
  margin: 0 auto; 
  padding-top: 50px; 
  overflow: hidden; 
}

.carousel-inner,
.carousel-item,
.carousel-slide-image {
  height: 600px;
  width: 100%;
}

.carousel-slide-image {
  background-size: cover;
  background-position: center;
  position: relative;
}

.custom-caption-box {
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 15px 20px;
  border-radius: 8px;
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  max-width: 90%;
  width: fit-content;
  z-index: 10;
}

.carousel-inner {
  position: relative;
  height: 600px; 
}

.carousel-item img {
  width: 100%; 
  height: 600px; 
  object-fit: cover; 
  object-position: center; 
}

.carousel-caption {
  position: absolute; 
  bottom: 20px; 
  left: 20px;  
  right: 20px;   
  background-color: rgba(0, 0, 0, 0.5); 
  padding: 15px;      
  border-radius: 5px; 
  color: white;  
  opacity: 0;    
  transform: translateY(50px); 
  transition: opacity 1s ease-out, transform 1s ease-out; 
  display: block; 
}

.carousel-item.active .carousel-caption {
  opacity: 1;  
  transform: translateY(0); 
}

.container-fluid5 { 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    height: 45px; 
    background-color: #E31E25; 
    color: #FDDB00; 
    padding: 10px; 
    width: 100%; 
    font-size: 25px; 
    font-weight: bold; 
    letter-spacing: 2px; 
    text-shadow: 2px 2px 0px black, -1px -1px 0px black, 1px -1px 0px black, -1px 1px 0px black; 
    margin-top: 10px; 
    margin-bottom: 10px; 
} 

.news-thumbnail { 
    color: #E31E25; 
    width: 100%; 
    height: 200px; 
    object-fit: cover; 
    object-position: center; 
    border-radius: 10px; 
    box-shadow: 0 4px 8px rgba(0,0,0,0.15); 
    transition: transform 0.3s ease, box-shadow 0.3s ease; 
} 

.news-thumbnail:hover { 
    transform: scale(1.03); 
    box-shadow: 0 6px 12px rgba(0,0,0,0.2); 
} 

.carousel-caption-link { 
    text-decoration: none; 
    color: inherit; 
} 

.carousel-caption-link:hover .carousel-caption { 
    background-color: rgba(0, 0, 0, 0.7); 
} 

.carousel-caption h5, 
.carousel-caption p { 
    margin: 0; 
} 

.single-bg {
  margin-top: 15px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 60px 0;
    position: relative;
}

.single-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
}

.single-post {
    position: relative;
    z-index: 1;
}

.single-title { 
    color: white; 
    font-size: 32px; 
    font-weight: bold; 
    text-align: center; 
    letter-spacing: 2px; 
    margin-top: 10px; 
    margin-bottom: 10px; 
} 

.text-muted { 
    text-align: center; 
    color: white!important; 
    font-size: 14px;
    font-weight: bold;
} 

.single-content { 
    max-width: 800px; 
    margin: 20px auto; 
    padding: 30px; 
    background-color: #ffffff; 
    border-radius: 10px; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.2); 
}

.single-content img { 
    display: block; 
    margin: 0 auto 20px auto; 
    margin-bottom: 40px; 
    max-width: 100%; 
    height: auto; 
    border-radius: 10px; 
    box-shadow: 0 0 10px rgba(0,0,0,0.1); 
} 

.social-follow {
    margin-top: 40px;
    text-align: center;
}

.social-text {
    font-size: 16px;
    margin-bottom: 15px;
    color: white;
    font-weight: 500;
}

.social-icons a {
    display: inline-block;
    margin: 0 10px;
    font-size: 20px;
    color: #FDDB00;
    background: #E31E25;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: #E31E25;
    background: #FDDB00;
    transform: translateY(-3px);
}

.carousel-slide-link { 
    display: block; 
    width: 100%; 
    height: 100%; 
    text-decoration: none; 
    color: inherit; 
    cursor: pointer; 
} 

.carousel-caption.custom-caption-box { 
    position: absolute !important; 
    bottom: 10px !important; 
    left: 50% !important; 
    transform: translateX(-50%) !important; 
    text-align: center !important; 
    max-width: 700px !important; 
    width: fit-content !important; 
    padding: 40px 50px !important; 
    background-color: rgba(0, 0, 0, 0.7) !important; 
    border-radius: 8px !important; 
    box-sizing: border-box; 
} 

.carousel-item:hover .carousel-caption.custom-caption-box { 
    transform: translate(-50%, -50%); 
    opacity: 1; 
} 

.container-fluid6 .row { 
    display: flex; 
    flex-wrap: wrap; 
    margin-left: -10px; 
    margin-right: -10px; 
} 

.container-fluid6 .col-md-3 { 
    display: flex; 
    flex-direction: column; 
    padding: 0 10px; 
    margin-bottom: 20px; 
} 

.news-link { 
    color: #E31E25; 
    text-decoration: none !important; 
    color: inherit; 
    display: flex; 
    flex-direction: column; 
    justify-content: flex-start; 
    height: 100%; 
    padding: 10px; 
    box-sizing: border-box; 
} 

.news-link h5 { 
    color: #E31E25; 
    min-height: 48px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    text-align: center; 
    font-size: 16px; 
    font-weight: bold; 
    margin-top: 10px; 
    transition: color 0.4s ease, transform 0.3s ease, text-shadow 0.3s ease; 
} 

.news-link:hover h5 { 
    color: #E31E25; 
    transform: scale(1.05); 
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2); 
    text-decoration: none; 
} 

.container-fluid7 h3 { 
    background-color: #E31E25; 
    color: #FDDB00; 
    text-align: center; 
    font-size: 25px; 
    font-weight: bold; 
    letter-spacing: 2px; 
    text-shadow: 2px 2px 0px black, -1px -1px 0px black, 1px -1px 0px black, -1px 1px 0px black; 
    padding: 10px; 
    border-radius: 5px; 
    margin-bottom: 20px; 
} 

.container-fluid7 .col-md-6 { 
    padding: 0 10px; 
    margin-bottom: 20px; 
} 

.container-fluid7 .row { 
    display: flex; 
    flex-wrap: wrap; 
    margin-left: -10px; 
    margin-right: -10px; 
} 

.container-fluid7 .col-6 { 
    padding: 0 10px; 
    margin-bottom: 20px; 
} 

.container-fluid7 .news-link { 
    color: #E31E25; 
    text-decoration: none !important; 
    display: flex; 
    flex-direction: column; 
    justify-content: flex-start; 
    align-items: center; 
    text-align: center; 
    height: 100%; 
    padding: 5px; 
    box-sizing: border-box; 
} 

.container-fluid7 .news-thumbnail { 
    width: 90%; 
    height: 140px; 
    object-fit: cover; 
    object-position: center; 
    border-radius: 10px; 
    box-shadow: 0 4px 8px rgba(0,0,0,0.15); 
    transition: transform 0.3s ease, box-shadow 0.3s ease; 
} 

.container-fluid7 .news-thumbnail:hover { 
    transform: scale(1.03); 
    box-shadow: 0 6px 12px rgba(0,0,0,0.2); 
} 

.container-fluid7 .news-link h6 { 
    color: #E31E25; 
    font-size: 14px; 
    font-weight: bold; 
    margin-top: 8px; 
    min-height: 40px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    transition: transform 0.3s ease, text-shadow 0.3s ease; 
} 

.container-fluid7 .news-link:hover h6 { 
    transform: scale(1.03); 
    text-shadow: 1px 1px 2px rgba(0,0,0,0.15); 
} 

.scroll-to-top { 
    position: fixed; 
    bottom: 50px; 
    right: 20px; 
    font-size: 20px; 
    background-color: #FDDB00; 
    color: #E31E25; 
    padding: 10px 15px; 
    border-radius: 10px; 
    display: none; 
    text-decoration: none; 
    text-align: center; 
    cursor: pointer; 
    font-family: Arial, sans-serif; 
    z-index: 10;
} 

.scroll-to-top:hover { 
    background-color: #E31E25; 
    color: #FDDB00; 
} 

#datetime { 
    font-size: 14px; 
    color: white; 
} 

.footer-copyright { 
    font-size: 14px; 
    color: white; 
} 

html, body { 
    height: 100%; 
    margin: 0; 
    padding: 0; 
} 

main { 
    flex: 1; 
} 

.footer { 
    background-color: #E31E25; 
    color: white; 
    padding: 10px 20px; 
    width: 100%; 
    flex-shrink: 0; 
    margin-top: 15px; 
} 



.video-section { 
    position: relative; 
    height: 85vh; 
    overflow: hidden; 
} 

.bg-video { 
    position: absolute; 
    top: 50%; 
    left: 50%; 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transform: translate(-50%, -50%); 
} 

.overlay { 
    position: absolute; 
    width: 100%; 
    height: 100%; 
    background: rgba(0,0,0,0.4); 
} 

.content { 
    position: absolute; 
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex; 
    justify-content: center; 
    align-items: center; 
    gap: 140px;
    z-index: 2;
}

.info-box { 
    flex: 0 0 520px;
    background: rgba(0,0,0,0.1);
    color: white;
    padding: 25px; 
    max-width: 520px; 
    border-radius: 15px; 
    backdrop-filter: blur(12px); 
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.info-box h2 {
    color: white;
    font-size: 28px;
    margin-bottom: 15px;
}

.info-box p {
    color: rgba(255,255,255,0.9);
    transition: color 0.5s ease;
}

.post-list a,
.quick-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-list a:hover,
.quick-links a:hover {
    color: #FDDB00;
}

.post-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.post-list li {
    margin-bottom: 10px;
}

.post-list a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: color 0.5s ease;
}

.post-list a:hover {
    text-decoration: underline;
}

.quick-links {
    list-style: none;
    padding: 0;
}

.quick-links li {
    margin-bottom: 10px;
    font-size: 20px; 
    display: flex; 
    align-items: center;
}

.quick-links li::before {
    content: "•"; 
    color: white;
    font-size: 20px;
    margin-right: 10px;
}

.quick-links li a:hover::before {
    color: white;
}

.post-item {
    margin-bottom: 15px;
}

.post-item a {
    display: flex;
    gap: 12px;
    align-items: center;
    text-decoration: none;
    color: white;
}

.post-thumb img {
    width: 75px;
    height: 75px;
    object-fit: cover;
    border-radius: 8px;
}

.post-thumb {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    margin-right: 15px;
    margin-bottom: 10px;
}

.post-content {
    display: flex;
    flex-direction: column;
}

.post-date {
    font-size: 15px;
    opacity: 0.8;
    transition: color 0.5s ease;
}

.post-title {
    font-size: 20px;
    font-weight: 600;
    transition: color 0.5s ease;
}

.post-item a:hover .post-title {
    color: #FDDB00;
}

.quick-links li {
    margin-bottom: 10px;
}

.quick-links a {
    font-size: 16px;
    text-decoration: none;
    color: white;
    font-weight: 600;
}

.quick-links a:hover {
    color: #FDDB00;
    text-decoration: underline; 
}

@media (max-width: 768px) {
  .container-fluid7 .col-md-6,
  .container-fluid7 .col-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .container-fluid7 .news-thumbnail {
    height: 120px;
  }

  .container-fluid7 .news-link h6 {
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .container-fluid1 .row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .container-fluid1 .col-12 {
    margin-bottom: 5px;
  }

  .container-fluid1 .text-left,
  .container-fluid1 .text-right {
    text-align: center;
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
  }

  .container-fluid2 {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .container-fluid2 .row {
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }

  .container-fluid2 .col-12 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
  }

  .logo-img {
    margin: 0 10px 0 0;
    width: 80px;
    height: auto;
  }

  .navbar {
    justify-content: center;
  }

  .navbar-toggler {
    font-size: 20px;
    padding: 6px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
  }

  .navbar-brand.custom-nav-button1 {
    font-size: 16px;
    font-weight: bold;
    color: #000;
    text-align: center;
    margin: 0;
    padding: 0;
	margin-right: 10px;
  }

  .navbar-nav {
    flex-direction: column;
    gap: 10px;
  }

  .nav-item {
    margin-right: 0;
  }

  .dropdown-menu {
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    background-color: transparent;
    box-shadow: none;
    padding: 0;
  }

  .dropdown-item {
    padding-left: 20px;
  }

  .custom-nav-button,
  .nav-link {
    font-size: 16px;
  }

  .navbar-nav .nav-item .nav-link.active {
    color: #E31E25 !important;
    font-weight: bold;
  }

  #search-hover-area {
    justify-content: center;
    padding: 5px;
  }

  #search-input {
    width: 100% !important;
    opacity: 1 !important;
    margin-right: 0;
  }

  #search-toggle {
    display: none;
  }

  .container-fluid3 {
    font-size: 18px;
    height: auto;
    padding: 10px;
    text-align: center;
  }
	
	html, body {
    height: 100vh;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
  }

  main {
    flex: 1 0 auto;
  }

  .footer {
    margin-top: auto;
    flex-shrink: 0;
  }
	
  footer.footer .row {
    text-align: center !important;
  }
  
  footer.footer .col-md-4 {
    text-align: center !important;
    margin-bottom: 10px;
    width: 100% !important; 
  }
  
  footer.footer .col-md-4:last-child {
    margin-bottom: 0;
  }
	
	.scroll-to-top {
    font-size: 16px;
    padding: 8px 12px;
    z-index: 10;
  }
}

@media (max-width: 1024px) and (orientation: portrait) {
  .container-fluid1 .row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .container-fluid1 .col-12 {
    margin-bottom: 5px;
  }

  .container-fluid1 .text-left,
  .container-fluid1 .text-right {
    text-align: center;
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
  }

  .container-fluid2 {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .container-fluid2 .row {
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }

  .container-fluid2 .col-12 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
  }

  .logo-img {
    margin: 0 10px 0 0;
    width: 80px;
    height: auto;
  }

  .navbar {
    justify-content: center;
  }

  .navbar-toggler {
    font-size: 20px;
    padding: 6px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
  }

  .navbar-brand.custom-nav-button1 {
    font-size: 16px;
    font-weight: bold;
    color: #000;
    text-align: center;
    margin: 0;
    padding: 0;
	margin-right: 10px;
  }

  .navbar-nav {
    flex-direction: column;
    gap: 10px;
  }

  .nav-item {
    margin-right: 0;
  }

  .dropdown-menu {
    display: none;
  }

  .nav-item.show .dropdown-menu {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .dropdown-item {
    padding-left: 20px;
  }

  .custom-nav-button,
  .nav-link {
    font-size: 16px;
  }

  .navbar-nav .nav-item .nav-link.active {
    color: #E31E25 !important;
    font-weight: bold;
  }

  #search-hover-area {
    justify-content: center;
    padding: 5px;
  }

  #search-input {
    width: 100% !important;
    opacity: 1 !important;
    margin-right: 0;
  }

  #search-toggle {
    display: none;
  }

  .container-fluid3 {
    font-size: 18px;
    height: auto;
    padding: 10px;
    text-align: center;
  }
	
	html, body {
    height: 100vh;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
  }

  main {
    flex: 1 0 auto;
  }

    .footer {
    margin-top: auto;
    flex-shrink: 0;
  }
	
  footer.footer .row {
    text-align: center !important;
  }
  
  footer.footer .col-md-4 {
    text-align: center !important;
    margin-bottom: 10px;
    width: 100% !important;
  }
  
  footer.footer .col-md-4:last-child {
    margin-bottom: 0;
  }
	
	.scroll-to-top {
    font-size: 16px;
    padding: 8px 12px;
    z-index: 10;
  }
}

@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
  .container-fluid1 .row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .container-fluid1 .col-12 {
    margin-bottom: 5px;
  }

  .container-fluid1 .text-left,
  .container-fluid1 .text-right {
    text-align: center;
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
  }

  .container-fluid2 {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .container-fluid2 .row {
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }

  .container-fluid2 .col-md-4,
  .container-fluid2 .col-md-8 {
    flex: unset;
    max-width: unset;
    padding: 0;
  }

  .container-fluid2 .col-12 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: nowrap;
  }

  .logo-img {
    width: 80px;
    height: auto;
    margin: 0;
  }

  .navbar {
    justify-content: center;
  }

  .navbar-brand.custom-nav-button1 {
    font-size: 16px;
    font-weight: bold;
    color: #000;
    text-align: center;
    margin: 0;
    padding: 0;
	margin-right: 10px;
  }

  .navbar-toggler {
    font-size: 20px;
    padding: 6px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
  }

  .navbar-nav {
    flex-direction: column;
    gap: 10px;
  }

  .nav-item {
    margin-right: 0;
  }

  .dropdown-menu {
    position: absolute !important;
    opacity: 0;
    visibility: hidden;
    display: none !important;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }

  .nav-item:hover .dropdown-menu {
    display: block !important;
    opacity: 1;
    visibility: visible;
  }

  .dropdown-item {
    padding-left: 20px;
  }

  .custom-nav-button,
  .nav-link {
    font-size: 16px;
  }

  .navbar-nav .nav-item .nav-link.active {
    color: #E31E25 !important;
    font-weight: bold;
  }

  #search-hover-area {
    justify-content: center;
    padding: 5px;
  }

  #search-input {
    width: 100% !important;
    opacity: 1 !important;
    margin-right: 0;
  }

  #search-toggle {
    display: none;
  }

  .container-fluid3 {
    font-size: 18px;
    height: auto;
    padding: 10px;
    text-align: center;
  }
	
  html, body {
    height: 100vh;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
  }

  main {
    flex: 1 0 auto;
  }

  .footer {
    margin-top: auto;
    flex-shrink: 0;
  }
	
  footer.footer .row {
    text-align: center !important;
  }
  
  footer.footer .col-md-4 {
    text-align: center !important;
    margin-bottom: 10px;
    width: 100% !important; 
  }
  
  footer.footer .col-md-4:last-child {
    margin-bottom: 0;
  }
	
	.scroll-to-top {
    font-size: 16px;
    padding: 8px 12px;
    z-index: 10;
  }
}

@media (max-width: 991px) {
  .container-fluid5 {
    font-size: 20px;
  }

  .custom-caption-box {
    max-width: 90% !important;
    padding: 30px 20px !important;
  }

  .news-thumbnail {
    height: 180px;
  }
	
	.scroll-to-top {
    font-size: 16px;
    padding: 8px 12px;
    z-index: 10;
  }
}

@media (max-width: 768px) {
  .carousel-slide-image {
    height: 350px;
  }

  .carousel-inner {
    height: 350px;
  }

  .carousel-caption.custom-caption-box {
    bottom: 10px !important;
    padding: 25px 15px !important;
    font-size: 14px;
  }

  .carousel-caption.custom-caption-box h5 {
    font-size: 16px;
  }

  .carousel-caption.custom-caption-box p {
    font-size: 12px;
  }

  .container-fluid5 {
    font-size: 18px;
    padding: 8px;
  }

  .news-thumbnail {
    height: 150px;
  }

  .col-md-3 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .navbar-nav {
    flex-direction: column;
    gap: 10px;
  }

  .custom-nav-button, .custom-nav-button1 {
    font-size: 14px;
  }
	
	.scroll-to-top {
    font-size: 16px;
    padding: 8px 12px;
    z-index: 10;
  }
}

@media (max-width: 480px) {
  .carousel-slide-image {
    height: 280px;
  }

  .carousel-inner {
    height: 280px;
  }

  .carousel-caption.custom-caption-box {
    padding: 20px 10px !important;
  }

  .carousel-caption.custom-caption-box h5 {
    font-size: 14px;
  }

  .carousel-caption.custom-caption-box p {
    font-size: 11px;
  }

  .container-fluid5 {
    font-size: 16px;
  }

  .news-thumbnail {
    height: 140px;
  }

  .news-link h5 {
    font-size: 14px;
  }

  .scroll-to-top {
    font-size: 16px;
    padding: 8px 12px;
    z-index: 10;
  }
}

@media (max-width: 992px) and (orientation: landscape) {

  .carousel,
  .carousel-inner,
  .carousel-item,
  .carousel-slide-image {
    height: 100vh !important;
    width: 100vw;
    position: relative;
  }

  .carousel-slide-image {
    background-size: cover !important;
    background-position: center !important;
  }

  .carousel-caption.custom-caption-box {
    position: absolute !important;
    bottom: 20px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    max-width: 90% !important;
    width: fit-content !important;
    padding: 20px 25px !important;
    background-color: rgba(0, 0, 0, 0.7) !important;
    border-radius: 8px !important;
    color: white !important;
    z-index: 1000 !important;
    text-align: center !important;
    display: block !important;
  }

  .carousel-caption.custom-caption-box h5 {
    font-size: 16px !important;
    margin-bottom: 8px;
  }

  .carousel-caption.custom-caption-box p {
    font-size: 12px !important;
    margin: 0;
  }
	
  .carousel-indicators {
  z-index: 1100;
  position: absolute;
}
}

@media (max-width: 1024px) {

  .content {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 30px 20px;
  }

  .info-box {
    flex: unset;
    width: 100%;
    max-width: 700px;
  }

  .video-section {
    height: auto;
    min-height: 100vh;
  }
}

@media (max-width: 768px) {

  .content {
    gap: 30px;
    padding: 20px 15px;
  }

  .info-box {
    padding: 20px;
    border-radius: 12px;
  }

  .info-box h2 {
    font-size: 22px;
  }

  .post-title {
    font-size: 16px;
  }

  .post-date {
    font-size: 13px;
  }

  .quick-links a {
    font-size: 15px;
  }

  .quick-links li {
    font-size: 16px;
  }

  .video-section {
    min-height: 100vh;
    padding: 30px 0;
  }
}

@media (max-width: 480px) {

  .content {
    gap: 25px;
    padding: 15px 10px;
  }

  .info-box {
    padding: 15px;
  }

  .info-box h2 {
    font-size: 20px;
  }

  .post-item a {
    gap: 10px;
  }

  .post-thumb,
  .post-thumb img {
    width: 50px;
    height: 50px;
  }

  .post-title {
    font-size: 15px;
  }

  .post-date {
    font-size: 12px;
  }

  .quick-links a {
    font-size: 14px;
  }

  .quick-links li {
    font-size: 14px;
  }
}
