/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "EB Garamond", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "EB Garamond", sans-serif;
  --nav-font: "Inter", sans-serif;
}

/* Global Colors -*/
:root {
  --background-color: #F6F5F4;
  --default-color: #4D4D4D;
  --heading-color: #535353;
  --accent-color: #141414;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
  --brown: #B3743B;
}

/* Nav Menu Colors - */
:root {
  --nav-color: #6a6a6a;
  --nav-hover-color: #141036;
  --nav-mobile-background-color: #ffffff;
}

/* Color Presets - */

.light-background {
  --background-color: #F6F5F4;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

.heading {
  font-family: Arial, Helvetica, sans-serif;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: Arial, Helvetica, sans-serif;
  /* font-size: 16px; */
  margin: 0;
  color: #3a312a;
  font: 18px "Lora", serif;
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: none;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
/* Header Background */
/* Generic container for consistent centering */
.head.container {
  max-width: 1400px !important;
  /* override */
  width: 100% !important;
  /* make it flexible */
  padding-left: 20px;
  padding-right: 20px;
}

/* Header background */
.head {
  background-color: #b4733a;
  /* brown */
  margin-top: 15px;
  padding: 0px 10px;
  border-radius: 13px;
}

.header {
  background-color: transparent;
  border: none
    /* brown */
}



.container {
  max-width: 100%;
  width: 97%;
}

.head {
  background-color: #b4733a;
  /* brown */
  margin-top: 15px;
  padding: 0px 10px;
  border-radius: 13px;

}

/* Logo */
.logo img {
  height: 117px;
  width: auto;
  margin-right: 10px;
  margin-top: -22px;
  margin-bottom: -46px;
  margin-left: -35px;
}

.logo h2 {
  margin: 0;
  font-size: 16px;
  line-height: 1.2;
  color: #fff;
  /* white text */
}

/* Navigation Menu */
.navmenu ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.navmenu ul li a {
  color: #E6E6E6;
  /* white text */
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  transition: color 0.3s;
}

.navmenu ul li a:hover,
.navmenu ul li a.active {
  color: #E6E6E6;
  /* yellow hover effect */
  text-decoration: none;
  text-underline-offset: 3px;
  text-decoration-thickness: 1.5px;
}

/* Right Section */
.header-social-links {
  display: flex;
  align-items: center;
  gap: 15px;
}

#searchIcon {
  font-size: 18px;
  color: #fff;
  cursor: pointer;
}

/* Donate Button */
.btn.heading {
  background-color: #fff;
  color: var(--brown);
  font-weight: bold;
  border: none;
  border-radius: 10px;
  /* rounded button */
  padding: 6px 18px;
  transition: all 0.3s ease;
}

.button {
  background-color: var(--brown);
  color: white;
  font-weight: bold;
  border: none !important;
  border-radius: 10px;
  padding: 6px 18px;
}

.btn.heading:hover {
  background-color: var(--background-color);
  /* yellow on hover */
  color: #000;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 14px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: #E6E6E6;
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: black !important;
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.section-hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 70px 20px;
  max-width: 100%;
  width: 97%;
  margin: auto;
}

.section img {
  width: 100%;
  max-width: 550px;
  height: auto;
  border-radius: 8px;
}

.section-content {
  flex: 1;
  padding: 20px;
  min-width: 300px;
  margin-left: 50px;
}

.section-content h2 {
  color: var(--brown);
  font-size: 32px;
  margin-bottom: 10px;
}

.section-content h1 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--accent-color);
}

.section-content p {
  line-height: 150%;
  margin-bottom: 20px;
  font-size: 16px;
}

.section-content p span {
  line-height: 150%;
  font-size: 16px;
  font-weight: bold;
  color: var(--accent-color);
}


/* Responsive */
@media (max-width: 768px) {
  .section-hero {
    flex-direction: column;
    text-align: center;
  }

  .section-content {
    padding: 20px 0;
  }

  .section-content h1 {
    font-size: 1.6rem;
  }

  .section-content p {
    font-size: 0.95rem;
  }
}

/*--------------------------------------------------------------
# Donate Section
--------------------------------------------------------------*/
.donation-banner {
  background-color: var(--brown);
  color: white;
  padding: 0px 20px;
}

.donation-banner .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;

  max-width: 1400px;
  margin: 0 auto;
  gap: 20px;
}

.donation-text {
  flex: 1 1 500px;
  /* grows and shrinks with min size */
}

.donation-text h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--background-color);
}

.donation-text p {
  font-size: 16px;
  margin-bottom: 20px;
}

.donation-text .btn {
  background-color: white;
  color: var(--accent-color);
  border: none;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s ease;
}

.donation-text .btn:hover {
  background-color: #f1f1f1;
}

.donation-image {
  flex: 0 1 150px;
  /* keeps image from getting too huge */
  text-align: center;
}

.donation-image img {
  max-width: 200px;
  height: auto;
  margin-right: 70px;
}

/* 📱 Responsive */
@media (max-width: 768px) {
  .donation-banner .container {
    flex-direction: column;
    text-align: center;
  }

  .donation-text {
    flex: 1 1 100%;
  }

  .donation-image {
    flex: 0 1 auto;
    margin-top: 15px;
  }

  .donation-text h2 {
    font-size: 24px;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
/* .about button {
  background-color: var(--brown);
  color: white;
  margin-top: 10px;
  border-radius: 10px;
  font-weight: bold;
  font-size: 15px;
}

.about button:hover {
  background-color: var(--brown);
  color: white;
  margin-top: 10px;
  border-radius: 10px;
  font-weight: bold;
  font-size: 15px;
}

.about {
  padding-top: 0px;
}

.about h6 {
  color: var(--brown);
  font-size: 25px;
  font-weight: 200;
}

.about h5 {
  font-weight: bold;
  font-size: 25px;
}

.about p {
  text-align: justify;
} */

/*--------------------------------------------------------------
# Term Section
--------------------------------------------------------------*/
.term h6 {
  color: var(--brown);
  font-size: 25px;
  font-weight: 200;
}

.term h5 {
  font-weight: bold;
  font-size: 32px;
  color: var(--accent-color);
}

.term h7 {
  font-weight: bold;
  font-size: 18px;
  color: var(--accent-color);
  margin-top: 4px;
  ;
}

.term ul li {
  padding: 5px;
  text-decoration: underline;
  font-size: 15px;
}

.term p {
  text-align: center;
  padding-bottom: 10%;
  font-size: 16px;
  color: var(--default-color);
  line-height: 150%;
}

.term p span {
  color: var(--accent-color);
  font-size: 16px;
  font-weight: bold;
}

/*--------------------------------------------------------------
# Latest News Section
--------------------------------------------------------------*/
.latest-news {
  display: flex;
  flex-wrap: wrap;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
  margin: 0 auto;
  border: 1px solid #DAC7B5;
  padding-top: 0px;
  padding-bottom: 0px;
  margin-bottom: 30px;
}

/* Left Sidebar */
.news-sidebar {
  /* background: #f9fafb; */
  flex: 1 1 250px;
  padding: 15px;
  padding-bottom: 0px;
  display: flex;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  background-color: #FFFFFF;
  flex-direction: column;
  align-items: flex-start;
  /* border-right: 1px solid #ddd; */
}

.news-sidebar .icon {
  margin-bottom: 15px;
  margin-top: -2px;
  border: none;
}

.news-sidebar h5 {
  margin: 0 0 8px;
  font-weight: bold;
  font-size: 20px;
  color: var(--accent-color);
}

.news-sidebar .last-updated {
  font-size: 14px;
  color: var(--default-color);
}

/* News List */
.news-list {
  display: flex;
  flex-direction: column;
  /* Set your desired height */
  overflow-y: auto;
  /* Enables scrolling */
}

.news-item {
  padding: 15px;
  border-bottom: 1px solid #ddd;
  color: #282828;
  font-size: 16px;
  line-height: 150%;
}

.news {
  padding: 15px;
  border-bottom: 1px solid #ddd;
  background-color: #FFFFFF;
  color: var(--accent-color);
  font-size: 16px;
  line-height: 150%;
}

.news-item:last-child {
  border-bottom: none;
}

/* Optional: style scrollbar */
.news-list::-webkit-scrollbar {
  width: 8px;
}

.news-list::-webkit-scrollbar-thumb {
  background: #aaa;
  border-radius: 4px;
}

.news-list::-webkit-scrollbar-thumb:hover {
  background: #888;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .latest-news {
    flex-direction: column;
  }

  .news-sidebar {
    align-items: center;
    text-align: center;
  }
}

/*--------------------------------------------------------------
# Latest Upcoming Dates
--------------------------------------------------------------*/
.upcoming h5 span {
  color: var(--brown);
  font-size: 32px;
  font-weight: lighter;
  line-height: 130%;
}

.upcoming h5 {
  color: var(--accent-color);
  font-weight: bold;
  font-size: 32px;
  line-height: 130%;
}

.upcoming p {
  /* color: var(--default-color); */
  font-size: 14px;
  line-height: 150%;
}

.card {
  background: #fff;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  overflow: hidden;

}

/* .card:hover {
      transform: translateY(-3px);
    } */

/* Top Section */
.card-header {
  display: flex;
  background: #fff;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-bottom: 1px solid #eee;
}

.card-header img {
  width: 35px;
  height: 35px;
}

.case-title {
  font-weight: 400;
  font-size: 16px;
  color: #141414;

}

/* Content */
.card-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.card-content div {
  min-width: 100px;
}

.dates {
  font-size: 14px;
  font-weight: 400;
  color: #4D4D4D;
  margin: 0;
}

.labels {
  font-size: 14px;
  color: #141414;
  font-weight: 400;
  margin: 0.2rem 0 0;
}

.arrow {
  font-size: 1rem;
  color: #292D32;
  margin-left: auto;
  cursor: pointer;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  color: var(--accent-color);
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background-color: #F9F9F9;
  padding: 15px;
  justify-content: center;
  margin-top: 5px;
}

/* Responsive */
@media (max-width: 600px) {
  .card-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .arrow {
    align-self: flex-end;
  }
}

/*--------------------------------------------------------------
# Calender Section
--------------------------------------------------------------*/
.calender {
  display: flex;
  justify-content: center;
  padding: 0px;
  margin-bottom: 10%;
}

.calender .container {
  max-width: 100%;
  overflow-x: auto;
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  padding: 20px 0 0;
  margin-top: 50px;

}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1400px;
  margin: auto;
  padding: 0 20px;
  margin-bottom: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-title {
  font-size: 1.1rem;
  margin: 0;
  line-height: 1.3;
}

.highlight-yellow {
  color: #4E1818;
  font-weight: bold;
}

.highlight-white {
  color: var(--background-color);
  font-weight: bold;
}

.footer-tagline {
  color: var(--accent-color);
  font-size: 14px;
  margin-top: 10px;
  line-height: 150%;
}

.footer-links {
  list-style: none;
  font-size: 14px;
  padding: 0;
  margin-top: 25px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  color: var(--default-color);
  line-height: 150%;
}

.footer-links a {
  color: var(--heading-color);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--accent-color);
  text-decoration: none;
}

.footer-right h3 {
  margin-top: 0;
  font-size: 14px;
  color: var(--default-color);
}

.footer-right p {
  margin: 5px 0;
  color: var(--accent-color);
  font-size: 14px;
  line-height: 150%;
}

.footer-bottom {
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  text-align: right;
  padding: 15px 20px;
  color: var(--heading-color);
  font-size: 0.8rem;
  max-width: 1400px;
  margin: auto;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .footer-bottom {
    text-align: center;
  }
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/


.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 25px 0;
  position: relative;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title h1 {
  font-size: 24px;
  font-weight: 700;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  /* background-color: var(--background-color); */
  padding: 40px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  margin-bottom: 60px;
  position: relative;
  font-size: 32px;
}

.section-title .section-title-container {
  padding-bottom: 10px;
  border-bottom: 2px solid var(--default-color);
}

.section-title h2 {
  font-size: 32px;
  font-weight: 0;
}

.section-title p {
  margin-bottom: 0;
}

.section-title p a {
  color: var(--default-color);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.5px;
  border-bottom: 1.5px solid var(--default-color);
  font-family: var(--nav-font);
  font-weight: 500;
  padding-bottom: 2px;
}



/*--------------------------------------------------------------
# Slider Section
--------------------------------------------------------------*/
.slider {
  background-color: transparent;

}

.slider .swiper-slide {
  min-height: 500px;
  position: relative;
  display: flex;
  align-items: flex-end;
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: 30px;
}

.slider .swiper-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media (max-width: 575px) {
  .slider .swiper-slide {
    min-height: 300px;
  }
}


.search-widget form {
  background: var(--background-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 75%);
  padding: 3px 10px;
  position: relative;
  border-radius: 50px;
  transition: 0.3s;
}

.search-widget form input[type=text] {
  border: 0;
  padding: 4px 10px;
  border-radius: 4px;
  width: calc(100% - 40px);
  background-color: var(--background-color);
  color: var(--default-color);
}

.search-widget form input[type=text]:focus {
  outline: none;
}

.search-widget form button {
  background: none;
  color: var(--default-color);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  font-size: 16px;
  padding: 0 16px;
  transition: 0.3s;
  line-height: 0;
}

.search-widget form button i {
  line-height: 0;
}

.search-widget form button:hover {
  color: var(--accent-color);
}

.search-widget form:is(:focus-within) {
  border-color: var(--accent-color);
}

/*--------------------------------------------------------------
# Documentation Section 
--------------------------------------------------------------*/
/* .cases-section {
  padding: 20px 0;
} */

/* .cases-section .container {
  display: flex;
  justify-content: space-between;
  gap: 40px;
} */
/* 
.cases-left {
  flex: 3;
  margin-bottom: 50px;
}

.cases-right {
  flex: 1;
  border-radius: 8px;
  padding: 0px;
} */

.section-title {
  font-size: 28px;
  color: #B3743B;
  /* highlight color */
  margin-bottom: 5px;
}

.section-subtitle {
  font-size: 32px;
  color: var(--accent-color);
  font-weight: bold;
  margin-bottom: 15px;
}

.term-description {
  font-size: 16px;
  color: var(--default-color);
  margin-bottom: 25px;
  line-height: 150%;
}

.case-category {
  border-bottom: 1px solid #E6E6E6;
  border-top-left-radius: 8px; 
  border-top-right-radius: 8px;
  color: var(--accent-color);
  padding: 12px;
  font-size: 20px;
  font-weight: bold;
  line-height: 130%;
  letter-spacing: 0%;
  margin: 20px 0 10px;
}

.case-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.case-list li {
  border-bottom: 1px solid #E6E6E6;
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 150%;
  letter-spacing: 10%;
}

.case-list li a {
  font-size: 16px;
  color: #141414;
}

.case-list li img {
  margin-right: 12px;
}

.archived-title {
  font-size: 20px;
  font-weight: bold;
  color: var(--accent-color);
  margin-bottom: 15px;
}

.archived-list li a {
  font-size: 14px;
  color: var(--default-color);
}

.archived-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.archived-list li {
  border: 1px solid #E6E6E6;
  padding: 12px;
  cursor: pointer;
}

/*--------------------------------------------------------------
# Search Section 
--------------------------------------------------------------*/
.gsc-input:focus,
.gsc-input:active {
  border: none !important;
  outline: none !important;
  box-shadow: none;
}

.gsc-clear-button {
  display: none !important;
}

input[type="text"],
input[type="search"] {
  font: 13px / 15px "Roboto Condensed", sans-serif;
  text-transform: uppercase;
  width: 100%;
  padding: 8px 10px;
  float: left;
  color: #999 !important;
  border: none !important;
  outline: none !important;
}

/* inner pages */


a {
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  text-decoration: none;
  color: #3b718d;
}

a:hover {
  color: #2c5469;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Lora", serif;
  line-height: 1.2em;
  margin: 0 0 1.2em;
}

p {
  margin: 0 0 1.2em;
}

q {
  quotes: none;
}

.holder {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}


.two-columns {
  background: #fff;
  overflow: hidden;
  padding: 70px 0 9px;
  margin: 0 0 60px;
}

.two-columns.detail {
  padding: 92px;
  padding-bottom: 0px;
  margin: 0;
}

.two-columns.detail .aside-area {
  margin: 0;
  float: right;
  width: 24.4%;
}


.two-columns.detail .news-area {
  width: 73%;
}

.two-columns.detail .news-area h1 {
  font-size: 36px;
  line-height: 40px;
  color: #3a312a;
  margin: 0 0 28px;
}

.two-columns.detail .news-area .news-heading {
  padding: 0 0 13px;
}

.two-columns.detail .news-area .news-heading p {
  margin: 0 0 20px;
}

.two-columns.detail .news-area h2 {
  font-size: 30px;
  line-height: 36px;
  margin: 0 0 33px;
  text-transform: none;
  font-weight: 700;
}

.two-columns.detail .news-frame {
  padding: 0;
}

.main-content h1,
h2,
h3 {
  font-weight: 700;
  color: #3a312a;
}

h3 {
  font-size: 20px;
  line-height: 25px;
}

* {
  max-height: 1000000px;
}

* {
  box-sizing: border-box;
}

.aside-block {
  background: #f2f2f2;
  padding: 24px 8px 18px;
  margin: 0 0 37px;
}

.aside-block .heading {
  text-align: left;
}

.aside-block .heading h2 {
  font-size: 17px;
  line-height: 16px;
  text-align: center;
  font-weight: 700;
  color: #3a312a;
  margin: 0 0 16px;
  text-transform: uppercase;
}

.aside-block .heading .text {
  font: 16px/21px "Roboto Condensed", sans-serif;
  margin-left: 10px;
}

.aside-block .text-center button[type="submit"] {
  display: inline-block;
  vertical-align: top;
  float: none;
  min-width: 100px;
  width: auto;
}

.aside-block h3 {
  font: 16px/17px "Roboto Condensed", sans-serif;
  margin: 0;
  text-transform: none;
  margin: 0 0 14px;
}

.aside-block .input-holder {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin: 0 0 13px;
}



.aside-block .input-holder.style .input-area {
  padding: 0 111px 0 0;
}

.aside-block .input-holder.style input[type="text"] {
  width: 100%;
  float: left;
}

.aside-block .input-holder.style button[type="submit"] {
  float: right;
}

.aside-block .input-holder.search input[type="text"],
.aside-block .input-holder.search input[type="search"] {
  padding: 4px 10px 4px 29px;
}

.aside-block .input-holder.search .input-placeholder-text {
  top: 4px;
  background: url(../images/icon-search-grey.png) no-repeat;
  padding-left: 24px;
}


.news-area {
  width: 100%;
  float: left;
}


@media only screen and (max-width: 1100px) {
  .wrap {
    overflow: visible;
    width: auto;
    position: relative;
  }



  .two-columns {
    padding: 35px 0;
    margin: 0;
  }

  .two-columns h2 {
    padding: 0;
    margin: 0 0 33px;
  }

  .two-columns.detail {
    padding: 55px 0;
  }

  .two-columns.detail .news-area {
    width: 100%;
    padding: 0 0 63px;
  }

  .two-columns.detail .news-area h1 {
    margin: 0 0 27px;
  }

  .two-columns.detail .news-area h2 {
    padding: 0;
    margin: 0 0 42px;
  }

  .two-columns.detail .news-area .news-heading {
    padding: 0 0 11px;
  }

  .two-columns.detail .aside-area {
    width: 100%;
    margin: 0;
    overflow: hidden;
  }

  .two-columns.detail .aside-area .aside-block {
    white-space: nowrap;
    width: 64.6%;
    margin: 0;
    float: left;
    min-height: 145px;
    padding: 41px 16px 35px;
  }

  .two-columns.detail .aside-area .aside-block:after {
    content: "";
    vertical-align: middle;
    display: inline-block;
    min-height: 145px;
  }

  .two-columns.detail .aside-area .aside-block:first-child {
    width: 32.6%;
    margin: 0 2.8% 0 0;
  }

  .two-columns.detail .aside-area .aside-block:first-child .heading h2 {
    margin: 0 0 15px;
  }

  .two-columns.detail .aside-area .aside-block:first-child .text-center {
    text-align: center;
    float: none;
  }

  .two-columns.detail .aside-area .aside-block .block-area {
    display: inline-block;
    vertical-align: middle;
    white-space: normal;
    width: 100%;
  }

  .two-columns.detail .aside-area .aside-block .heading h2 {
    margin: 0 0 9px;
  }

  .two-columns.detail .aside-area .aside-block .heading .text {
    width: 66%;
    text-align: center;
    margin: 0 auto;
  }

  .two-columns.detail .aside-area .aside-block .text-center {
    text-align: right;
    float: right;
  }

  .two-columns.detail .aside-area .aside-block .input-holder.search {
    width: 100%;
    margin: 0 0 10px;
  }

  .two-columns.detail .aside-area .input-frame {
    width: 100%;
    overflow: hidden;
    padding: 0 3px;
  }

  .two-columns.detail .aside-area .input-frame .input-holder {
    width: auto;
    float: none;
    padding: 0 107px 0 0;
    margin: 0;
    overflow: visible;
  }
}


/* For very large screens - keep content centered */

@media (min-width: 1600px) {
  .container {
    max-width: 1400px;
    /* optional larger limit */
  }
}

.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.card {
  background: #fff;
  border-radius: 8px;
  /* padding: 1rem 1.5rem; */
}

.right {
  border: 1px solid #E6E6E6;
  border-radius: 8px;
}

.left {
   border: 1px solid #DAC7B5;
  border-radius: 8px;
}

/* Responsive */
@media (max-width: 768px) {
  .grid {
    grid-template-columns: 1fr;
  }
}

/* Desktop layout */
@media (min-width: 992px) {
  .cases-left {
    width:100%;
    float: left;
  }
  .cases-right {
    width: 100%;
    float: center;
  }
}

.cases-sections {
  padding: 20px 0;
}

.cases-sections .container {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.cases-lefts {
  flex: 3;
  margin-bottom: 50px;
}

.cases-rights {
  flex: 1;
  border-radius: 8px;
  padding: 0px;
}


