/* Fonts */
:root {
  /* --default-font: "Roboto",  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: "Raleway",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #555555; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #3fbbc0; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #444444;  /* The default color of the main navmenu links */
  --nav-hover-color: #3fbbc0; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #444444; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #3fbbc0; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

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

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

.accent-background {
  --background-color: #3fbbc0;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #65c9cd;
}

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

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: 'Garet-Book';
}

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;
}

p {
  font-family: 'Garet-Book';
}

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

@font-face {
    font-family: 'Roboto';
    src: url('/assets/font/Roboto-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Garet-Book';
    src: url('/assets/font/Garet-Book.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'LeckerliOne-Regular';
    src: url('/assets/font/LeckerliOne-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'OpenSans-Bold';
    src: url('/assets/font/OpenSans-Bold.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'PlayfairDisplay-Italic';
    src: url('/assets/font/PlayfairDisplay-Italic.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'raleway-regular';
    src: url('/assets/font/raleway-regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Raleway-Bold';
    src: url('/assets/font/Raleway-Bold.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'HeroLight-Regular';
    src: url('/assets/font/HeroLight-Regular.otf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'HeroLight-Bold';
    src: url('/assets/font/HeroLight-Bold.otf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
  font-family: 'playfair-display-regular';
  src: url('/assets/font/playfair-display-regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'playfair-display-bold';
  src: url('/assets/font/playfair-display-bold.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}


/*--------------------------------------------------------------
# Global 
--------------------------------------------------------------*/
p.small.text-muted {
  display: none;
}


/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
section {
  background-color: #fff !important;
  position: relative;
  padding-top: 10rem;
}

.header {
  color: var(--default-color);
  background-color: #151b59;
  transition: all 0.5s;
  z-index: 997;
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
  transition: background-color 0.4s ease, box-shadow 0.4s ease;
}

.header .topbar {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  height: 40px;
  padding: 0;
  transition: all 0.5s;
}

.header .branding {
  min-height: 60px;
  padding: 0 0;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 80px;
  margin-right: 45px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.header .cta-btn,
.header .cta-btn:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 20px;
  margin: 0 5px 0 30px;
  border-radius: 4px;
  transition: 0.3s;
}

.header .cta-btn:hover,
.header .cta-btn:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.sticky-top {
  top: 1.5%;
  box-shadow: none;
}

.header.scrolled {
  background: #151b59;
  box-shadow: 0px 0 18px rgba(0,0,0,0.2);
}

.stay-top {
  position: sticky;
  position: -webkit-sticky;
  top: 0;
}

/*--------------------------------------------------------------
# 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 ul li a {
    position: relative;
    overflow: hidden;
    font-family: 'playfair-display-regular';
  }

  .navmenu ul li a::after {
    content: "";
    position: absolute;
    bottom: 15px;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: #fff;
    transition: width 0.4s ease;
    margin-left: 30px;
  }

  .navmenu .dropdown ul li a::after {
    /* margin-left: 0px; */
    background-color: transparent;
  }

  .navmenu ul li a:hover::after,
  .navmenu ul li a.active::after {
    width: 70%;
  }

  .navmenu a,
  .navmenu a:focus {
    color: #fff;
    padding: 20px 30px;
    font-size: 1rem;
    /* font-family: var(--nav-font); */
    /* font-family: 'RobotoCustom', sans-serif; */
    font-weight: 500;
    /*text-transform: uppercase;*/
    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: #fff;
  }

  .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); */
    max-height: 300px;
    overflow-y: auto;
    overflow-x: hidden;
    -ms-overflow-style: none; 
    scrollbar-width: none;  
  }
  
  .navmenu .dropdown ul::-webkit-scrollbar {
    display: none; 
  }
  .navmenu .dropdown ul li {
    min-width: 200px;
    background: #fff;
    margin-bottom: 10px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: #996c4a;
  }

  .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: #555;
  }

  .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;
  }

  .header.scrolled  .navmenu ul li a,
  .header.scrolled  .navmenu ul li a:focus {
    color: #fff !important;
  }

  
  .header.scrolled  .navmenu ul li a.active::after {
    background-color: #fff;
  }

  .header.scrolled  .navmenu ul li a:hover
  {
    color: #fff !important;
  }

  .header.scrolled  .navmenu ul li a::after {
    background-color: #fff;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: #fff;
    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: var(--nav-dropdown-color);
    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: #996c4a;
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    /* color: var(--nav-dropdown-hover-color); */
    color: #996c4a;
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: #996c4a;
    color: #555;
    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;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: #fff;
  background-color:#151b59;
  font-size: 14px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 5px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  font-family: 'playfair-display-bold' !important;
  color: #fff;
  font-family: var(--heading-font);
  font-size: 33px;
  font-weight: 700;
  letter-spacing: 1px;
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #fff;
  font-size: 16px;
  color: #fff;
  margin-right: 10px;
  transition: 0.3s;
}

.footer-about > small {
  font-size: 1rem;
}

.footer .social-links a:hover {
  color: #fff;
  border-color: #fff;
}

.footer h4 {
  font-family: 'playfair-display-bold' !important;
  font-size: 25px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
  color: #fff;
}

.footer .footer-links {
  margin-bottom: 30px;
  color: #fff;
}

.footer .footer-links ul {
  /* display: flex;
  flex-direction: column;
  align-items: center; */
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  font-family: 'playfair-display-regular' !important;
  color: #fff;
  display: inline-block;
  line-height: 1;
  font-size: 17px;
}

.footer .footer-links ul a:hover {
  color: #fff;
}

.footer .footer-contact p {
  font-family: 'playfair-display-regular' !important;
  font-size: 17px;
  margin-bottom: 5px;
}

.footer-links.footer-last-col > div > p {
  font-family: 'playfair-display-bold' !important;
  font-size: 25px;
}

.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  font-family: 'playfair-display-bold' !important;
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 8px;
  font-size: 13px;
}

.footer-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin: 1.25rem 0;
}

.footer-item i {
  background-color: transparent;
  font-size: 18px;
  padding: 12px;
  border-radius: 50%;
  min-width: 42px;
  text-align: center;
}

.footer-item h4 {
  font-family: 'playfair-display-regular' !important;
  font-weight: 600;
  font-size: 16px;
  margin: 0;
  color: #fff;
}

.footer-item p {
  font-family: 'playfair-display-regular' !important;
  margin: 0;
  color: #fff;
  font-size: 17px;
}

@media(min-width: 768px) {
  .footer-last-col {
    display: flex;
    justify-content: end;
  }

  /* .footer-center-col {
    display: flex;
    flex-direction: column;
    align-items: center;
  } */
}

/*--------------------------------------------------------------
# Floating Button
--------------------------------------------------------------*/
#whatsapp-button {
  position: fixed;
  bottom: 5%;
  right: 3%;
  z-index: 999;
  width: 8%;
}

#whatsapp-button img {
  width: 50%;
  height: auto;
  cursor: pointer;
  margin-left: 50%;
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# 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);
  position: relative;
}

.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

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

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  padding: 20px 0;
}

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

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

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

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

section {
    min-height: 90vh; 
    /* display: flex; */
    align-items: center;
    justify-content: center;
    padding-top: 60px;
    padding-bottom: 60px;
    overflow: clip;
}

body.index-page .hero.section {
  margin-top: -95px;
}

body.index-page section:not(.hero) {
  margin-top: 0;
}

body.inner-page section {
  margin-top: -95px;
}

@media (max-width: 1199px) {

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

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
}

.line-title {
    position: relative;
    display: inline-block;
    font-family: 'playfair-display-bold';
    font-size: 2.3rem;
    font-weight: bold;
    color: rgb(21 27 89);
}

/* keep your existing pattern */
.line-title::before {
    content: "";
    position: absolute;
    left: -100%;
    width: 300%;
    top: 50%;
    height: 6px;
    border-top: 1px solid #151b59;
    border-bottom: 1px solid #151b59;
    transform: translateY(-50%);
    z-index: 1;
}

/* THIS is what you were missing */
.line-title span {
    position: relative;
    z-index: 2;
    background: #fff;
    padding: 12px 18px;
}

/* .section-title p::after {
  content: "";
  display: block;
  width: 75%;
  height: 3px;
  background-color:  #151b59;
  margin: 8px auto;
  border-radius: 4px;
} */


.section-title h2 span {
    position: relative;
    z-index: 2;
    background: #fff;
    padding: 0 18px;
}

.section-sub-title {
  text-align: center;
  margin-bottom: 3rem;
  font-family: 'playfair-display-bold';
  color: #fff;
}

.section-sub-title span {
  color: #f3c46f;
}

.gap-5 {
  margin-left: 3rem;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero .carousel {
  width: 100%;
  min-height: 95vh;
  padding: 0;
  margin: 0;
  position: relative;
}

.hero-container {
  margin-left: 5%;
}

@media (max-height: 500px),
(max-width: 580px) {
  .hero .carousel {
    min-height: 100vh;
  }
}

.carousel-inner {
    height: 100vh;
}

.hero .carousel-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

@keyframes zoomIn {
  0% { transform: scale(1); }
  100% { transform: scale(1.1); }
}

@keyframes zoomOut {
  0% { transform: scale(1.2); }
  100% { transform: scale(1); }
}
.hero .carousel-item:nth-child(even) img {
  transform: scale(1.2);
}

.hero .carousel-item img {
  animation-duration: 8s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in-out;
}

.hero .carousel-item.active:nth-child(odd) img {
  animation-name: zoomIn;
}

.hero .carousel-item.active:nth-child(even) img {
  transform: scale(1.2);
  animation-name: zoomOut;
}

.hero .container {
  background: color-mix(in srgb, var(--surface-color), transparent 10%);
  position: relative;
  text-align: center;
  padding-top: 30px;
  padding-bottom: 30px;
  margin-bottom: 17%;
  border-top: 4px solid var(--accent-color);
  width: 40%;
  z-index: 3;
}

@media (max-width: 1200px) {
  .hero .container {
    margin-left: 50px;
    margin-right: 50px;
  }
}

.hero h2 {
  font-family: 'playfair-display-bold';
  margin-bottom: 0;
  font-size: 36px;
  font-weight: 700;
  text-align: left;
}

.banner-floating-container p {
  font-family: 'playfair-display-regular';
  margin-top: 1rem;
  font-size: 1.2rem;
}

.hero p {
  text-align: left;
}

@media(max-width: 1200px) {
  .mobile-justify-position {
    justify-content: space-between !important;
  }
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 30px;
  }
}

.hero .btn-get-started {
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 1px;
  /* display: inline-block; */
  display: flex;
  width: fit-content;
  padding: 8px 32px;
  transition: 0.3s;
  /* margin: 10px; */
  border-radius: 5px;
  color: var(--contrast-color);
  background: var(--accent-color);
}

.hero .btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color) 90%, white 15%);
}

.hero .carousel-control-prev {
  justify-content: start;
}

@media (min-width: 640px) {
  .hero .carousel-control-prev {
    padding-left: 15px;
  }
}

.hero .carousel-control-next {
  justify-content: end;
}

@media (min-width: 640px) {
  .hero .carousel-control-next {
    padding-right: 15px;
  }
}

.hero .carousel-control-next, 
.hero .carousel-control-prev {
  width: 5%;
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
  /* background: none; */
  font-size: 26px;
  line-height: 0;
  /* background: color-mix(in srgb, var(--default-color), transparent 90%); */
  border-radius: 50px;
  color: var(--contrast-color);
  transition: 0.3s;
  width: 68px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-control-prev {
  left: 7%;
}

.carousel-control-next {
  right: 7%;
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  transition: 0.3s;
  opacity: 0.5;
}

.hero .carousel-control-prev:focus,
.hero .carousel-control-next:focus {
  opacity: 0.5;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
  opacity: 0.9;
}

.carousel-control-next-icon, .carousel-control-prev-icon {
  background-position: 35% !important; 
  background-size: 70% 100% !important;
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
    background-color: transparent;
    border-radius: 50%;
}


.hero .carousel-indicators button {
  cursor: pointer;
  background: #c2c2c2;
  border: 0;
  width: 50px;
  opacity: 1;
  transition: 0.3s;
}

.hero .carousel-indicators button.active {
  background: #fff;
}

.banner-floating-container {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9;
  text-align: center;
  padding: 20px 35px;
  background-color: rgba(0, 0, 0, 0.5);
}

.banner-floating-container h2,
.banner-floating-container h1,
.banner-floating-container p {
  text-align: left;
  color: #fff;
}

.banner-floating-container h1 {
  font-family: 'playfair-display-bold';
  font-size: 3rem;
}

.banner-floating-container p {
  width: 50%;
}

.get-start-btn-link {
  display: block;
  width: 25%;
  margin: 0 auto;
}

.get-start-btn {
  font-family: 'playfair-display-bold';
  display: block;
  color: #fff;
  background: linear-gradient(to right, #f3c46f, #ffd700);
  border-radius: 5px;
  /* margin: 20px auto 0 auto; */
  padding: 12px 18px;
  font-size: 18px;
  width: 100%;
  text-shadow:
      -1px -1px 0 #000,  
       1px -1px 0 #000,
      -1px  1px 0 #000,
       1px  1px 0 #000;
}

.get-start-btn p {
  margin-bottom: 0;
  border-radius: 8px;
  padding: 8px 14px;
}

.get-start-btn:hover,
.get-start-btn:active {
  border: 0;
  color: #fff !important;
  background-color: rgb(181, 16, 16) !important;
}

.banner-position {
  position: relative;
  width: 60%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* -----------------------------------------------
# About
------------------------------------------------ */
.about-section {
  background: #fff;
}

#about .section-title {
  margin-top: 5rem;
}

.about-row {
  display: flex;
  flex-wrap: wrap;
}

.about_content_container {
  padding-right: 3rem;
  width: 43%;
}

.about_content_container2 {
  padding-left: 3rem;
}

/* Blue band */
.about-band {
  background: #0a136d;
  padding: 5rem 0;
  position: relative;
  margin-top: 18vh;
  min-height: 62vh;
}

.about-band2 {
  background: #0a136d;
  padding: 5rem 0;
  position: relative;
  margin-top: 35vh;
  min-height: 100vh;
}

.about-image {
  position: relative;
}

.about_img1 {
  position: absolute;
  top: 0;
  transform: translateY(-50%);
  aspect-ratio: 4 / 4;
  width: 100%;
  max-width: 800px;
  max-height: 800px;
}

.about-card,
.about-card h3 {
  color: #fff;
}

.about-card h3 {
  font-family: 'playfair-display-bold';
  font-size: 2.5rem;
}

.about-card p {
  font-family: 'playfair-display-regular';
  margin-top: 2rem;
  width: 70%;
}

.about-card.carousel {
    position: relative;
    padding-bottom: 3rem;
}

.about-card.carousel.part2 {
  top: 15vh;
}

.about-card .carousel-inner {
  height: 100%;
  min-height: 320px;
}

.about-card .carousel-indicators {
    position: absolute;
    bottom: 1.0; 
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
}

/* Slight overlap effect */
@media (min-width: 768px) {
  .about-band .image-box img {
    transform: translateY(-60px);
  }

  .about-band.light .image-box img {
    transform: translateY(60px);
  }
}
/* =================================
# Product
==================================*/
@media (min-width: 992px) {
    .col-lg-2-4 {
        flex: 0 0 auto;
        width: 20%;
    }
}

.product-item-frame {
    /* border: 1px solid #ddd; */
    border-radius: 10px;
    padding: 10px;
    /* background-color: #fff; */
    transition: transform 0.3s ease;
    box-shadow: 0 0 5px rgba(0,0,0,0.05);
    text-align: center;
}

.product-item-frame img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 80px 80px 0 0;
}

.product-title {
  font-family: 'OpenSans-Bold';
  color: #996c4a;
  font-weight: 700;
}

.pagination {
  --bs-pagination-padding-x: 1.75rem;
  --bs-pagination-color: #af8a6a;
  --bs-pagination-bg: transparent;
  --bs-pagination-border-width: 0;
  --bs-pagination-border-color: none;
  --bs-pagination-border-radius: none;
}

.page-item.disabled > span {
  background-color: transparent;
  color: #af8a6a;
}

.active>.page-link, .page-link.active {
  background-color: transparent;
  border: 1px solid #af8a6a;
  border-radius: 25px;
  color: #977b63;
}

.page-item .page-link {
  font-size: 20px;
}

/* =================================
# Services
==================================*/
#services {
  overflow: visible;
  min-height: 120vh;
}

.service_container {
  background: url(../img/clients/KL_Food_Product_Banner_g.jpg) fixed center center;
  background-size: cover;
  padding: 150px 0;
  overflow: visible;
  position: relative;
  z-index: 99;
  margin-top: 3rem;
}

#services h1,
#services h5 {
  color: #fff;
  text-shadow: 4px 3px black;
}

#services h1 {
  font-size: 2rem;
  font-family: 'playfair-display-bold';
}

#services h5 {
  font-family: 'playfair-display-regular';
  margin-top: 2rem;
}

.services_infor h2 {
  font-family: 'playfair-display-bold';
  font-size: 1.2rem;
  margin-top: 4rem;
  display: inline-block;
  position: relative;
  color: #fff;
}

.services_infor h2::after {
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    background-color: #fff;
    margin-top: 8px;
    border-radius: 4px;
}

.services_infor_row {
  display:flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-.5 * var(--bs-gutter-x));
  margin-left: calc(-.5 * var(--bs-gutter-x));
  position: absolute;
  width: 100%;
}

.service_img_container {
    background: transparent;
    border-radius: 10px;
    overflow: hidden;
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
    transition: transform 0.3s ease;
    height: 100%;
    padding: 2rem;
}

.service_img {
  position: relative;
  width: 70%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

div.services_infor_row > div:nth-child(1) > div > .service_img {
  margin-left: auto;
}

.service_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service_img:hover img {
  transform: scale(1.1);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.service_img:hover .overlay {
    opacity: 1;
}

.service_img .overlay p {
  color: #fff;
}

@media(max-width: 1650px) {
  #services {
    overflow: visible;
    min-height: 165vh;
  }
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 0;
  font-size: 18px;
  font-weight: 500;
  margin: 0 10px;
  line-height: 1;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: var(--accent-color);
}

.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 5px;
  }
}

.portfolio .portfolio-content {
  position: relative;
  overflow: hidden;
}

.portfolio .portfolio-content img {
  transition: 0.3s;
}

.portfolio .portfolio-content .portfolio-info {
  opacity: 0;
  position: absolute;
  inset: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(0, 0, 0, 0.6);
  padding: 15px;
}

.portfolio .portfolio-content .portfolio-info h4 {
  font-size: 20px;
  padding: 5px 10px;
  font-weight: 400;
  color: #ffffff;
  display: inline-block;
  background-color: #ac8f20;
}

.portfolio .portfolio-content .portfolio-info p {
  position: absolute;
  bottom: 10px;
  text-align: center;
  display: inline-block;
  left: 0;
  right: 0;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.portfolio .portfolio-content .portfolio-info .preview-link,
.portfolio .portfolio-content .portfolio-info .details-link {
  position: absolute;
  left: calc(50% - 40px);
  font-size: 26px;
  top: calc(50% - 14px);
  color: #fff;
  transition: 0.3s;
  line-height: 1.2;
}

.portfolio .portfolio-content .portfolio-info .preview-link:hover,
.portfolio .portfolio-content .portfolio-info .details-link:hover {
  color: var(--accent-color);
}

.portfolio .portfolio-content .portfolio-info .details-link {
  left: 50%;
  font-size: 34px;
  line-height: 0;
}

.portfolio .portfolio-content:hover .portfolio-info {
  opacity: 1;
}

.portfolio .portfolio-content:hover img {
  transform: scale(1.1);
}
/* =================================
# Contact
==================================*/
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.info-item i {
  background-color: #151b59; 
  color: white;
  font-size: 18px;
  padding: 12px;
  border-radius: 50%;
  min-width: 42px;
  text-align: center;
}

.info-item h4 {
  font-family: 'playfair-display-bold';
  font-weight: 600;
  font-size: 20px;
  margin: 0;
  color: #000;
}

.info-item p {
  font-family: 'playfair-display-regular';
  margin: 0;
  color: #777;
  font-size: 17px;
}

.center-bar {
  width: 100%;
  max-width: 5px;
  height: 100%;
  background-color: #151b59;
}

.social_icon {
  max-width: 52px;
  height: auto;
  aspect-ratio: 1/1;
  margin: 0 5px;
}

.button-group {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin: 30px 0;
}

.pill-btn {
    font-family: 'playfair-display-bold'; 
    background-color: #e6e2e1; 
    color: #1a237e; 
    border: none;
    border-radius: 999px; 
    padding: 12px 36px;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
    cursor: pointer;
    width: max-content;
    transition: all 0.3s ease;
}

.pill-btn:hover {
    background-color: #d8d4d3;
}

.pill-btn.active {
  background-color: #1a237e;
  color: #fff;
}

.form-row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -5px;
    margin-left: -5px;
}

.form-row>.col, .form-row>[class*=col-] {
    padding-right: 5px;
    padding-left: 5px;
}

textarea.form-control {
  height: 20vh;
}

.form-control {
    font-family: 'playfair-display-regular';
    display: block;
    width: 100%;
    height:  4rem;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s 
ease-in-out, box-shadow .15s 
ease-in-out;
}

.submit-btn {
    font-family: 'playfair-display-regular';
    background: #151b59;
    color: var(--contrast-color);
    border: 0;
    padding: 13px 50px;
    transition: 0.4s;
    border-radius: 4px;
    display: block;
    margin: 2rem auto;
}

.submit-btn:hover,
.submit-btn:focus,
.submit-btn:active {
  color: #fff !important;
  background-color: hsl(236deg 41.72% 39.56%) !important;
}

/* =================================
# Why Choose Us
==================================*/
.whyUs-row {
    background-color: #151b59;
    display: flex;
    justify-content: center;
    gap: 24px;
    margin: 30px auto;
    padding: 5rem;
    flex-wrap: wrap;
    overflow: visible;
}

.whyUs-card {
    width: auto;
    transition: transform 0.5s ease;
}

.whyUs-card:hover {
    transform: translateY(-25px);
}

.whyUs-media {
    position: relative;
    width: 100%;
    border-radius: 0 75px 0 0;
    overflow: hidden;
}

.whyUs-media img {
    width: 100%;
    max-width: 420px;
    display: block;
}

.whyUs-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s ease;
}

.whyUs-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #fff;
  text-align: center;
}

.whyUs-content h5{
  font-family: 'playfair-display-bold';
  color: #fff;
  font-size: 1.5rem
}

.whyUs-content p{
  font-family: 'playfair-display-regular';
  font-size: 1.25rem;
  margin-top: 1.5rem;
  width: 90%;
}

.whyUs-card:hover .whyUs-overlay {
    opacity: 1;
    visibility: visible;
}

.whyus-title {
  font-family: 'OpenSans-Bold';
  color: #996c4a;
  margin-bottom: 1.25rem;
}

#why_us .card-box {
  padding: 30px 35px;
  height: 100%;
  border: 5px solid #fff;
  border-radius: 15px;
  background-color: #fff;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: #adadad 5px 5px 13px 0px;
}

/* =================================
# Mission & Vision
==================================*/
.call-to-action {
  margin-top: 95px !important;
  padding: 120px 0;
  position: relative;
  clip-path: inset(0);
}

.call-to-action .pin-img {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.call-to-action:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.call-to-action .container {
  position: relative;
  z-index: 3;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

/* =================================
# Product Page
==================================*/
.services-intro {
  color: rgb(21 27 89);
  font-family: 'playfair-display-regular';
  line-height: 1.5;
}

.state-table {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px 40px; /* row gap / column gap */
  max-width: 900px;
  margin: 0 auto;
}

.state-btn {
  border: none;
  background: #e7e2e2;
  color: #1d2c7b;
  padding: 14px 0;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'playfair-display-regular';
}

.state-btn:hover {
  background: #d6d1d1;
}

.state-btn.active {
  background: #1d2c7b;
  color: #ffffff;
}

.section-title.special {
  margin-top: 5rem;
  text-align: left;
}

.location-point {
  display: flex;
  align-items: center;
  gap: 15px;
}

.map-markpoint-area {
  max-width: 55px;
  height: auto;
  opacity: 0.7;
}

.location-point span {
  font-size: 1.5rem;
  color: #1d2c7b;
  font-family: 'playfair-display-regular';
}

.contact-row a {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 1rem;
}

.special-contact-row {
  display: flex;
  align-items: center;
  margin-right: 3rem;
}

.contact-row a p{
  margin: unset;
  font-size: 2rem;
  color: #1d2c7b;
  /* font-family: 'playfair-display-regular'; */
  margin-left: 15px;
}

.location-contact > div {
  margin-bottom: 3rem;
}

.whatsapp-icon {
  background-color: #25D366; 
  color: #ffffff;  
  width: 45px;
  height: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 30px;
}

.location-point {
  max-width: 33.333%;
}

.area-infor-container > div.row {
  margin-top: 3rem;
}

.area-infor-container {
  display: none;
}

.area-infor-container.active {
  display: block;
}

.big-map {
  position: relative;
}

.overlay-map-marker {
  width: fit-content;
  left: 0;
  top: 0;
  position: absolute;
  transform: translate(-50%, -100%);
  transition: top 0.3s ease, left 0.3s ease;
}

.map-marker-icon {
  width: 150px;
}

/* desktop default */
.state-select {
  display: none;
}

@media (max-width: 768px) {
  .state-table {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* mobile only */
@media (max-width: 576px) {
  .state-table {
    display: none;
  }

  .state-select {
    display: block;
    margin-bottom: 20px;
  }

  .state-select select {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border-radius: 6px;
  }

  .line-title::before {
    width: unset;
  }

  #services {
    min-height: 190vh;
  }

  .whyUs-media {
    border-radius: 0 55px 0 0;
  }

  .whyUs-content h5 {
    font-size: 1.2rem;
  }

  .whyUs-content p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .state-table {
    grid-template-columns: 1fr;
  }

  .map-marker-icon {
    max-width: 55px;
    width: 100%;
  }
}


/* General Media Query */

@media(max-width: 992px)
{
  #whatsapp-button {
    width: 20%;
  }

  .progress-img,
  .progress-img2 {
    position: relative;
    height: 100%;
    min-height: 600px;
  }
}

@media(max-width: 767.9px) 
{
  .footer-about {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer .footer-about .logo span {
    text-align: center;
  }

  .footer .footer-links,
  #footer > div.container.footer-top > div > div.col-12.col-lg-4.col-md-3.footer-links.footer-last-col > div > p.font-semibold.text-lg.mb-2 {
    text-align: center;
  }

  .footer .footer-links ul {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-links.footer-last-col {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .section-title {
    font-size: 2rem;
  }

  .banner-floating-container p {
    width: 95%;
  }

  .hero .carousel-control-next, .hero .carousel-control-prev {
    width: 8%;
  }

  .carousel-control-prev {
    left: 0;
  }

  .hero .carousel-control-next {
    right: 0;
  }

  #services h5 {
    font-size: 16px;
    line-height: 1.5;
  }

  .services-intro {
    font-size: 18px;
  }

  .progress-img,
  .progress-img2 {
    position: relative;
    height: 100%;
    min-height: 450px;
  }

  .project-frame {
    width: 70%;
  }

  .services_infor h2 {
    font-size: 2rem;
  }

  .contact-card-container {
    margin-top: 3rem;
  }

  .google-map {
    margin-left: -10%;
    width: 120%;
    min-height: 300px;
  }

  .mobile-row-gap {
    margin-bottom: 3rem;
  }

  .about-gap-5 {
    margin-left: 0;
    padding: 0 15px;
  }

  .whatsapp-icon {
      font-size: 30px;
      width: 45px;
      height: 45px;   
  }

  .location-point {
      max-width:  45%;
  }

  .location-point:nth-child(even) {
      margin-left: 15px;
  }

  .map-markpoint-area {
      max-width: 40px;
  }

  .location-point span {
      font-size: 1.25rem;
  }

  .pill-btn {
    font-size: 14px;
  }

  .info-item i {
    font-size: 14px;
  }

  .about_content_container,
  .about_content_container2 {
    width: 90%;
    padding-right: unset;
    padding-left: unset;
  }

  .about-band {
    margin-top: 5vh;
    min-height: 75vh;
  }

  .about-band2 {
    padding-top: 0;
  }

  .about-card.carousel.part2 {
    top: 10vh;
  }

  .about-card h3 {
    font-size: 2rem;
  }

  .about-card p {
    width: 95%;
  }

  .info-item h4 {
    font-size: 18px;
  }

  .about-image {
    position: absolute;
    left: 50%;
    bottom: -35%;
    width: 70%;
    transform: translateX(-50%);
  }

  .about_img1 {
    position: unset;
    top: unset;
    transform: unset;
    width: 100%;
    height: 100%;
    max-width: 800px;
    max-height: 400px;
  }

  .m-about-img2 {
    bottom: 0%;
  }

  #services {
    height: 120vh;
  }

  .service_img {
    width: 100%;
  }

  .contact-info {
    width: 60%;
    margin: 0 auto;
  }
}

@media(max-width: 630px)
{
  .google-map {
    margin-left: unset;
    width: 100%;
  }
}

@media(max-width: 576px)
{
  .hero h2 {
    font-size: 24px
  }

  .banner-floating-container h1 {
    font-size: 24px;
  }

  .banner-floating-container h1 span {
    font-size: 22px
  }

  .banner-floating-container p {
    font-size: 16px;
  }

  #whatsapp-button {
    width: 30%;
  }

  .banner-floating-container {
    width: 100%;
  }

  .project-frame {
    width: 100%;
  }

  /* Banner Part Adjust mobile */
  .banner-position {
    width: 100%;
  }

  .get-start-btn-link {
    width: 100%;
  }

  .get-start-btn {
    width: 60%;
    margin: 0 auto;
  }

  .service_img_container {
      padding: 1rem;
  }

  .services_infor_row {
      top: 110%;
  }

  .services_infor h2 {
    font-size: 1.6rem;
  }
  

  .contact-info {
    width: 100%;
    margin: 0 auto;
  }

  .m-social-container {
    margin: 2rem auto 0 auto;
    width: fit-content;
  }

  .footer .footer-about .logo span {
    font-size: 26px;
  }

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

  .location-point span {
      font-size: 1rem;
  }
}

@media(max-width: 520px) 
{
  .get-start-btn {
    padding: 12px 18px;
  }

  .progress-img,
  .progress-img2 {
    position: relative;
    height: 100%;
    min-height: 400px;
  }
}

@media(max-width: 460px) 
{
  .progress-img,
  .progress-img2 {
    position: relative;
    height: 100%;
    min-height: 360px;
  }
}

@media(max-width: 400px) 
{
  .hero h2 {
    font-size: 17px
  }

  .banner-floating-container h1 {
    font-size: 17px;
  }

  .banner-floating-container h1 span {
    font-size: 16px
  }

  .banner-floating-container p {
    font-size: 14px;
  }

  .progress-img,
  .progress-img2 {
    position: relative;
    height: 100%;
    min-height: 310px;
  }
}

@media(max-width: 360px) 
{
  .progress-img,
  .progress-img2 {
    position: relative;
    height: 100%;
    min-height: 280px;
  }
}