/* =========================================================
   ROOT VARIABLES
========================================================= */

:root {
  --white: #ffffff;
  --black: #1f1f1f;

  --kukum: #b32020;

  --gold: #fec212;

  --light-border: #ececec;
}

/* =========================================================
   GLOBAL
========================================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;

  overflow-x: hidden;

  background: var(--white);

  color: var(--black);
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1320px;
}

/* =========================================================
   TOP HEADER
========================================================= */

.top-header {
  background: var(--white);

  border-bottom: 1px solid var(--light-border);

  height: 44px;

  display: flex;
  align-items: center;
}

.top-header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-info {
  display: flex;
  align-items: center;
  gap: 6px;

  font-size: 13px;
  font-weight: 500;

  color: var(--black);

  transition: 0.3s ease;
}

.top-info:hover {
  color: var(--gold);
}

.top-info span {
  color: var(--kukum);

  font-size: 18px;
}

/* =========================================================
   NAVBAR
========================================================= */

.custom-navbar {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 999;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 18px 0;
}

/* =========================================================
   NAVBAR WRAPPER
========================================================= */

.navbar-wrapper {
  display: flex;

  align-items: center;

  justify-content: space-between;

  position: relative;
}

/* =========================================================
   LEFT
========================================================= */

.nav-left {
  display: flex;
  align-items: center;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* =========================================================
   LOGO
========================================================= */

.nav-logo {
  width: 70px;

  transition: 0.4s ease;
}

.nav-logo:hover {
  transform: scale(1.04);
}

/* =========================================================
   BRAND NAME
========================================================= */

.brand-name {
  margin: 0;
  font-family: "Cinzel", serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--black);
  line-height: 1.1;
}

/* =========================================================
   CENTER MENU
========================================================= */

.desktop-menu {
  display: flex;

  align-items: center;

  gap: 34px;
}

.desktop-menu a {
  color: var(--black);

  font-size: 15px;

  font-weight: 500;

  position: relative;

  transition: 0.3s ease;
}

.desktop-menu a::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: -8px;

  width: 0%;
  height: 2px;

  background: var(--gold);

  transition: 0.3s ease;
}

.desktop-menu a:hover {
  color: var(--kukum);
}

.desktop-menu a:hover::after {
  width: 100%;
}

/* =========================================================
   RIGHT
========================================================= */

.nav-right {
  display: flex;

  align-items: center;

  gap: 18px;
}

/* =========================================================
   QUOTE BUTTON
========================================================= */

.quote-btn {
  background: var(--gold);

  color: var(--black);

  padding: 14px 26px;

  border-radius: 60px;

  font-size: 14px;

  font-weight: 600;

  transition: 0.4s ease;
}

.quote-btn:hover {
  background: var(--kukum);

  color: #fff;

  transform: translateY(-3px);
}

/* =========================================================
   YEARS
========================================================= */

.nav-years {
  font-size: 14px;

  font-weight: 500;

  color: var(--black);
}

.nav-years span {
  color: var(--kukum);

  font-size: 24px;

  font-weight: 700;
}

/* =========================================================
   TOGGLER
========================================================= */

.navbar-toggler {
  border: none;

  box-shadow: none !important;
}

.navbar-toggler span {
  color: var(--kukum);
  font-size: 34px;
}

.offcanvas-header {
  padding: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.offcanvas-title {
  color: var(--gold);
}

.btn-close {
  filter: invert(1);
  opacity: 0.9;
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}

.mobile-menu-links a {
  padding: 18px 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 18px;
  font-weight: 500;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);

  transition: 0.3s ease;
}

.mobile-menu-links a:hover {
  color: var(--gold);
  padding-left: 10px;
}

.mobile-menu-links a::before {
  content: "";
  width: 0;
  height: 2px;
  background: var(--gold);
  display: block;
  margin-bottom: 6px;
  transition: 0.3s ease;
}

.mobile-menu-links a:hover::before {
  width: 40px;
}

@media (max-width: 991px) {
  .nav-years {
    display: none;
  }

  .navbar-wrapper {
    justify-content: flex-start;
    gap: 14px;
  }

  .brand-name {
    margin: 0;
    font-family: "Cinzel", serif;
    font-size: 80vw;
    font-weight: 600;
    color: var(--kukum);
    line-height: 1.1;
  }

  .mobile-sidebar {
    width: 75%;
    max-width: 320px;
    background: rgba(91, 8, 8, 0.82);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }
}

/* =========================================================
   HERO SECTION
========================================================= */

.hero-section {
  position: relative;

  min-height: 88vh;

  background: url("../../images/coporate-event.jpg");

  background-size: cover;
  background-position: center;

  display: flex;
  align-items: center;

  overflow: hidden;
  padding: 1px 0 100px;
}

/* =========================================================
   HERO OVERLAY
========================================================= */

.hero-overlay {
  position: absolute;

  inset: 0;

  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.68),
    rgba(0, 0, 0, 0.38),
    rgba(0, 0, 0, 0.18)
  );
}

/* =========================================================
   HERO CONTENT
========================================================= */

.hero-content {
  position: relative;

  z-index: 2;

  max-width: 680px;

  padding-top: 100px;
}

/* =========================================================
   HERO SUBTITLE
========================================================= */

.hero-subtitle {
  color: var(--gold);

  font-size: 15px;

  letter-spacing: 4px;

  text-transform: uppercase;

  font-weight: 600;
}

/* =========================================================
   HERO TITLE
========================================================= */

.hero-title {
  font-family: "Cinzel", serif;

  font-size: 68px;

  line-height: 1.12;

  color: var(--white);

  margin-top: 22px;
}

/* =========================================================
   HERO DESCRIPTION
========================================================= */

.hero-description {
  margin-top: 26px;

  font-size: 18px;

  line-height: 1.9;

  color: rgba(255, 255, 255, 0.92);

  max-width: 650px;
}

/* =========================================================
   HERO BUTTONS
========================================================= */

.hero-buttons {
  display: flex;
  gap: 16px;

  margin-top: 40px;
}

/* PRIMARY BUTTON */

.primary-btn {
  background: var(--gold);

  color: var(--black);

  padding: 16px 34px;

  border-radius: 60px;

  font-weight: 600;

  transition: 0.4s ease;
}

.primary-btn:hover {
  background: var(--white);

  transform: translateY(-4px);

  color: var(--kukum);
}

/* SECONDARY BUTTON */

.secondary-btn {
  border: 1px solid rgba(255, 255, 255, 0.35);

  color: var(--white);

  padding: 16px 34px;

  border-radius: 60px;

  transition: 0.4s ease;
}

.secondary-btn:hover {
  background: rgba(255, 255, 255, 0.08);

  transform: translateY(-4px);

  color: var(--white);
}

/* =========================================================
   FLOATING BUTTONS
========================================================= */

.floating-buttons {
  position: fixed;

  right: 24px;
  bottom: 30px;

  z-index: 999;

  display: flex;
  flex-direction: column;

  gap: 14px;
}

.floating-buttons a {
  width: 56px;
  height: 56px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.92);

  backdrop-filter: blur(10px);

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--kukum);

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);

  transition: 0.4s ease;
}

.floating-buttons a:hover {
  background: var(--gold);

  transform: translateY(-4px);
}

/* =========================================================
   MOBILE FIXED BAR
========================================================= */

.mobile-fixed-bar {
  position: fixed;

  bottom: 0;
  left: 0;

  width: 100%;

  background: var(--white);

  z-index: 999;

  display: flex;

  border-top: 1px solid #ececec;
}

.mobile-fixed-bar a {
  flex: 1;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  padding: 10px 0;

  color: var(--black);

  font-size: 12px;

  font-weight: 500;

  gap: 3px;
}

.mobile-fixed-bar span {
  font-size: 22px;

  color: var(--kukum);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {
  .top-center {
    display: none;
  }

  .desktop-menu {
    display: none !important;
  }

  .navbar-brand {
    position: relative;

    left: unset;

    transform: unset;

    margin: auto;
  }

  .hero-section {
    text-align: center;
  }

  .hero-content {
    margin: auto;

    padding-top: 60px;
  }

  .hero-title {
    font-size: 52px;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .top-header {
    height: auto;

    padding: 8px 0;
  }

  .top-header-wrapper {
    justify-content: center;
  }

  .top-info:last-child {
    display: none;
  }

  .hero-title {
    font-size: 38px;
  }

  .hero-description {
    font-size: 16px;

    line-height: 1.8;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .nav-logo {
    width: 36px;
  }

  .brand-name {
    font-size: 16px;
  }

  .nav-years {
    font-size: 12px;
  }

  .nav-years span {
    font-size: 18px;
  }
}

/* =========================================================
   WELCOME SECTION
========================================================= */

.welcome-section {
  padding: 120px 0;

  background: #ffffff;

  overflow: hidden;
}

/* =========================================================
   IMAGE WRAPPER
========================================================= */

.welcome-image-wrapper {
  position: relative;
}

/* =========================================================
   IMAGE
========================================================= */

.welcome-image {
  width: 100%;

  border-radius: 24px;

  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* =========================================================
   EXPERIENCE BADGE
========================================================= */

.experience-badge {
  position: absolute;

  bottom: -30px;
  right: 30px;

  width: 160px;
  height: 160px;

  background: var(--gold);

  border-radius: 50%;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  text-align: center;

  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.experience-badge span {
  font-size: 42px;

  font-weight: 700;

  color: var(--kukum);

  line-height: 1;
}

/* =========================================================
   CONTENT
========================================================= */

.welcome-content {
  padding-left: 50px;
}

/* =========================================================
   SUBTITLE
========================================================= */

.section-subtitle {
  color: var(--kukum);

  font-size: 14px;

  font-weight: 600;

  text-transform: uppercase;

  letter-spacing: 3px;
}

/* =========================================================
   TITLE
========================================================= */

.section-title {
  font-family: "Cinzel", serif;

  font-size: 48px;

  line-height: 1.3;

  color: var(--black);

  margin-top: 18px;
}

/* =========================================================
   TEXT
========================================================= */

.welcome-text {
  margin-top: 24px;

  font-size: 16px;

  line-height: 1.9;

  color: #555;
}

/* =========================================================
   HIGHLIGHTS
========================================================= */

.welcome-highlights {
  margin-top: 30px;

  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 18px;
}

/* =========================================================
   HIGHLIGHT ITEM
========================================================= */

.highlight-item {
  display: flex;
  align-items: center;

  gap: 10px;

  font-size: 15px;

  font-weight: 500;

  color: var(--black);
}

.highlight-item span {
  color: var(--kukum);

  font-size: 22px;
}

/* =========================================================
   BUTTON
========================================================= */

.welcome-btn {
  display: inline-flex;

  margin-top: 40px;

  background: var(--gold);

  color: var(--black);

  padding: 16px 34px;

  border-radius: 60px;

  font-weight: 600;

  transition: 0.4s ease;
}

.welcome-btn:hover {
  background: var(--kukum);

  color: #fff;

  transform: translateY(-4px);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {
  .welcome-content {
    padding-left: 0;

    margin-top: 80px;
  }

  .section-title {
    font-size: 38px;
  }
}

@media (max-width: 768px) {
  .welcome-section {
    padding: 90px 0;
  }

  .section-title {
    font-size: 32px;
  }

  .welcome-highlights {
    grid-template-columns: 1fr;
  }

  .experience-badge {
    width: 130px;
    height: 130px;

    bottom: -20px;
  }

  .experience-badge span {
    font-size: 32px;
  }
}

/* =========================================================
   SERVICES SECTION
========================================================= */

.services-section {
  padding: 120px 0;

  background: #faf7f2;
}

/* =========================================================
   SECTION HEADING
========================================================= */

.section-heading {
  max-width: 700px;

  margin: auto;
}

/* =========================================================
   SERVICE CARD
========================================================= */

.service-card {
  background: #fff;

  padding: 45px 35px;

  border-radius: 24px;

  text-align: center;

  height: 100%;

  transition: 0.4s ease;

  border: 1px solid rgba(0, 0, 0, 0.04);

  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
}

.service-card:hover {
  transform: translateY(-10px);

  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

/* =========================================================
   ICON
========================================================= */

.service-icon {
  width: 85px;
  height: 85px;

  margin: auto;

  border-radius: 50%;

  background: rgba(254, 194, 18, 0.12);

  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon span {
  font-size: 38px;

  color: var(--kukum);
}

/* =========================================================
   CARD TITLE
========================================================= */

.service-card h3 {
  margin-top: 28px;

  font-size: 24px;

  font-family: "Cinzel", serif;

  color: var(--black);
}

/* =========================================================
   CARD TEXT
========================================================= */

.service-card p {
  margin-top: 16px;

  font-size: 15px;

  line-height: 1.8;

  color: #666;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 768px) {
  .services-section {
    padding: 90px 0;
  }

  .service-card {
    padding: 35px 28px;
  }

  .service-card h3 {
    font-size: 22px;
  }
}

/* =========================================================
   WHY SECTION
========================================================= */

.why-section {
  padding: 120px 0;

  background: #ffffff;

  overflow: hidden;
}

/* =========================================================
   CONTENT
========================================================= */

.why-content {
  padding-right: 40px;
}

/* =========================================================
   TEXT
========================================================= */

.why-text {
  margin-top: 24px;

  font-size: 16px;

  line-height: 1.9;

  color: #666;
}

/* =========================================================
   POINTS
========================================================= */

.why-points {
  margin-top: 40px;

  display: flex;

  flex-direction: column;

  gap: 28px;
}

/* =========================================================
   ITEM
========================================================= */

.why-item {
  display: flex;

  gap: 20px;
}

/* =========================================================
   ICON
========================================================= */

.why-icon {
  width: 70px;
  height: 70px;

  min-width: 70px;

  border-radius: 50%;

  background: rgba(254, 194, 18, 0.14);

  display: flex;
  align-items: center;
  justify-content: center;
}

.why-icon span {
  font-size: 32px;

  color: var(--kukum);
}

/* =========================================================
   ITEM TITLE
========================================================= */

.why-item h4 {
  font-size: 22px;

  font-family: "Cinzel", serif;

  margin-bottom: 8px;

  color: var(--black);
}

/* =========================================================
   ITEM TEXT
========================================================= */

.why-item p {
  font-size: 15px;

  line-height: 1.8;

  color: #666;
}

/* =========================================================
   IMAGE WRAPPER
========================================================= */

.why-image-wrapper {
  position: relative;
}

/* =========================================================
   IMAGE
========================================================= */

.why-image {
  width: 100%;

  border-radius: 26px;

  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* =========================================================
   FLOATING CARD
========================================================= */

.why-floating-card {
  position: absolute;

  bottom: 30px;
  left: -30px;

  background: #fff;

  padding: 30px;

  border-radius: 24px;

  width: 260px;

  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.why-floating-card h3 {
  font-size: 42px;

  color: var(--kukum);

  font-weight: 700;
}

.why-floating-card p {
  margin-top: 10px;

  font-size: 15px;

  line-height: 1.7;

  color: #666;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {
  .why-content {
    padding-right: 0;
  }

  .why-image-wrapper {
    margin-top: 70px;
  }
}

@media (max-width: 768px) {
  .why-section {
    padding: 90px 0;
  }

  .why-item {
    gap: 16px;
  }

  .why-icon {
    width: 60px;
    height: 60px;

    min-width: 60px;
  }

  .why-icon span {
    font-size: 26px;
  }

  .why-item h4 {
    font-size: 20px;
  }

  .why-floating-card {
    position: relative;

    left: 0;
    bottom: 0;

    width: 100%;

    margin-top: 20px;
  }
}

/* =========================================================
   MENU SECTION
========================================================= */

.menu-section {
  padding: 120px 0;

  background: #faf7f2;
}

/* =========================================================
   MENU CARD
========================================================= */

.menu-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  transition: 0.4s ease;
  height: 100%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  display: block;
  text-decoration: none;
}

.menu-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.menu-card:hover h3 {
  color: var(--kukum);
}

/* =========================================================
   IMAGE
========================================================= */

.menu-card img {
  width: 100%;

  height: 260px;

  object-fit: cover;
}

/* =========================================================
   CONTENT
========================================================= */

.menu-card-content {
  padding: 30px;
}

/* =========================================================
   TITLE
========================================================= */

.menu-card-content h3 {
  font-family: "Cinzel", serif;

  font-size: 26px;

  color: var(--black);
}

/* =========================================================
   TEXT
========================================================= */

.menu-card-content p {
  margin-top: 14px;

  font-size: 15px;

  line-height: 1.8;

  color: #666;
}

/* =========================================================
   BUTTON WRAP
========================================================= */

.menu-btn-wrap {
  margin-top: 60px;
}

/* =========================================================
   BUTTON
========================================================= */

.menu-btn {
  display: inline-flex;

  background: var(--gold);

  color: var(--black);

  padding: 16px 36px;

  border-radius: 60px;

  font-weight: 600;

  transition: 0.4s ease;
}

.menu-btn:hover {
  background: var(--kukum);

  color: #fff;

  transform: translateY(-4px);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 768px) {
  .menu-section {
    padding: 90px 0;
  }

  .menu-card img {
    height: 220px;
  }

  .menu-card-content {
    padding: 24px;
  }

  .menu-card-content h3 {
    font-size: 22px;
  }
}

/* =========================================================
   CTA FORM SECTION
========================================================= */

.cta-form-section {
  padding: 60px 0;

  background: #ffffff;
}

/* =========================================================
   WRAPPER
========================================================= */

.cta-wrapper {
  display: grid;

  grid-template-columns: 1fr 1fr;

  border-radius: 30px;

  overflow: hidden;

  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.08);
}

/* =========================================================
   LEFT FORM
========================================================= */

.cta-form-box {
  background: #ffffff;

  padding: 70px;
}

/* =========================================================
   FORM TITLE
========================================================= */

.cta-form-title {
  font-family: "Cinzel", serif;

  font-size: 46px;

  line-height: 1.3;

  margin-top: 18px;

  color: var(--black);
}

/* =========================================================
   FORM
========================================================= */

.cta-form-box form {
  margin-top: 40px;
}

/* =========================================================
   FORM GROUP
========================================================= */

.form-group {
  margin-bottom: 20px;
}

/* =========================================================
   INPUTS
========================================================= */

.form-group input,
.form-group select {
  width: 100%;

  height: 60px;

  border: none;

  outline: none;

  padding: 0 22px;

  border-radius: 14px;

  background: #f7f4ef;

  font-size: 15px;

  color: var(--black);

  transition: 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
  border: 1px solid var(--gold);

  background: #fff;
}

/* =========================================================
   BUTTON
========================================================= */

.cta-submit-btn {
  width: 100%;

  height: 60px;

  border: none;

  border-radius: 60px;

  background: var(--gold);

  color: var(--black);

  font-size: 16px;

  font-weight: 600;

  transition: 0.4s ease;
}

.cta-submit-btn:hover {
  background: var(--kukum);

  color: #fff;

  transform: translateY(-3px);
}

/* =========================================================
   RIGHT CONTENT
========================================================= */

.cta-content-box {
  position: relative;

  background: url("../../images/coporate-event.jpg") center center/cover
    no-repeat;

  min-height: 100%;
}

/* =========================================================
   OVERLAY
========================================================= */

.cta-content-overlay {
  position: absolute;

  inset: 0;

  background: linear-gradient(
    135deg,
    rgba(179, 32, 32, 0.9),
    rgba(75, 8, 8, 0.82)
  );
}

/* =========================================================
   CONTENT INNER
========================================================= */

.cta-content-inner {
  position: relative;

  z-index: 2;

  height: 100%;

  padding: 70px;

  display: flex;

  flex-direction: column;

  justify-content: center;
}

/* =========================================================
   LIGHT SUBTITLE
========================================================= */

.section-subtitle.light {
  color: var(--gold);
}

/* =========================================================
   CONTENT TITLE
========================================================= */

.cta-content-title {
  font-family: "Cinzel", serif;

  font-size: 50px;

  line-height: 1.3;

  color: #fff;

  margin-top: 20px;
}

/* =========================================================
   CONTENT TEXT
========================================================= */

.cta-content-text {
  margin-top: 28px;

  font-size: 16px;

  line-height: 1.9;

  color: rgba(255, 255, 255, 0.92);
}

/* =========================================================
   HIGHLIGHTS
========================================================= */

.cta-highlights {
  margin-top: 35px;

  display: flex;

  flex-direction: column;

  gap: 18px;
}

/* =========================================================
   ITEM
========================================================= */

.cta-highlight-item {
  display: flex;

  align-items: center;

  gap: 12px;

  color: #fff;

  font-size: 15px;

  font-weight: 500;
}

.cta-highlight-item span {
  color: var(--gold);

  font-size: 22px;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {
  .cta-wrapper {
    grid-template-columns: 1fr;
  }

  .cta-content-box {
    min-height: 500px;
  }
}

@media (max-width: 768px) {
  .cta-form-section {
    padding: 90px 0;
  }

  .cta-form-box,
  .cta-content-inner {
    padding: 40px 30px;
  }

  .cta-form-title {
    font-size: 34px;
  }

  .cta-content-title {
    font-size: 34px;
  }
}

/* =========================================================
   CAPTCHA BOX
========================================================= */

.captcha-box {
  background: #f7f4ef;

  border-radius: 14px;

  padding: 18px 20px;

  margin-bottom: 22px;
}

.captcha-box label {
  display: flex;

  align-items: center;

  gap: 12px;

  font-size: 15px;

  font-weight: 500;

  color: var(--black);

  cursor: pointer;
}

.captcha-box input {
  width: 18px;
  height: 18px;

  accent-color: var(--kukum);
}

/* =========================================================
   FOOTER
========================================================= */

.footer-section {
  position: relative;

  padding-top: 100px;

  background: linear-gradient(135deg, #5e0b0b, #2d0505);

  overflow: hidden;
  border-top: 4px solid var(--gold);
}

/* =========================================================
   OVERLAY
========================================================= */

.footer-overlay {
  position: absolute;

  inset: 0;

  background: radial-gradient(
    circle at top right,
    rgba(254, 194, 18, 0.12),
    transparent 30%
  );
}

/* =========================================================
   FOOTER LOGO
========================================================= */

.footer-logo {
  width: 68px;
}

/* =========================================================
   ABOUT
========================================================= */

.footer-about {
  position: relative;

  z-index: 2;
}

.footer-about h3 {
  margin-top: 10px;
  font-family: "Cinzel", serif;
  font-size: 24px;
  color: #fff;
}

.footer-about p {
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.82);
}

/* =========================================================
   SOCIAL
========================================================= */

.footer-social {
  display: flex;

  gap: 14px;

  margin-top: 30px;
}

.footer-social a {
  width: 46px;
  height: 46px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.08);

  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff;

  transition: 0.4s ease;
}

.footer-social a:hover {
  background: var(--gold);

  color: var(--black);

  transform: translateY(-4px);
}

/* =========================================================
   LINKS
========================================================= */

.footer-links {
  position: relative;

  z-index: 2;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 24px;

  font-family: "Cinzel", serif;

  color: #fff;

  margin-bottom: 30px;
}

.footer-links a {
  display: block;
  color: rgba(255, 255, 255, 0.82);
  transition: 0.3s ease;
  padding-bottom: 4px;
}

.footer-links a:hover {
  color: var(--gold);

  padding-left: 6px;
}

/* =========================================================
   CONTACT
========================================================= */

.footer-contact {
  position: relative;

  z-index: 2;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.8;
  word-break: break-word;
}

.footer-contact-item span {
  color: var(--gold);
  font-size: 18px;
}

/* =========================================================
   BOTTOM
========================================================= */

.footer-bottom {
  margin-top: 80px;

  padding: 30px 0;

  border-top: 1px solid rgba(255, 255, 255, 0.12);

  display: flex;

  justify-content: space-between;

  flex-wrap: wrap;

  gap: 10px;
}

.footer-bottom p {
  margin: 0;

  font-size: 14px;

  color: rgba(255, 255, 255, 0.75);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 768px) {
  .footer-section {
    padding-top: 80px;
    border-top: 4px solid var(--gold);
  }

  .footer-about h3 {
    font-size: 26px;
  }

  .footer-links h4,
  .footer-contact h4 {
    font-size: 22px;
  }

  .footer-bottom {
    text-align: center;

    justify-content: center;
  }
}

.footer-bottom {
  position: relative;
}

.footer-bottom::before {
  content: "";

  position: absolute;

  top: -1px;
  left: 50%;

  transform: translateX(-50%);

  width: 120px;
  height: 2px;

  background: var(--gold);
}

/* =========================================================
   INNER HERO
========================================================= */

.inner-hero-section {
  position: relative;

  padding: 180px 0 120px;

  overflow: hidden;
}

/* =========================================================
   ABOUT HERO BACKGROUND
========================================================= */

.about-hero {
  background: url("../../images/Marriage-event.jpg") center center/cover
    no-repeat;
}

/* =========================================================
   OVERLAY
========================================================= */

.inner-hero-overlay {
  position: absolute;

  inset: 0;

  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.72),
    rgba(0, 0, 0, 0.45),
    rgba(0, 0, 0, 0.22)
  );
}

/* =========================================================
   CONTENT
========================================================= */

.inner-hero-content {
  position: relative;

  z-index: 2;

  max-width: 760px;
}

/* =========================================================
   TITLE
========================================================= */

.inner-hero-title {
  font-family: "Cinzel", serif;

  font-size: 68px;

  line-height: 1.2;

  color: #fff;

  margin-top: 20px;
}

/* =========================================================
   TEXT
========================================================= */

.inner-hero-text {
  margin-top: 26px;

  font-size: 18px;

  line-height: 1.9;

  color: rgba(255, 255, 255, 0.92);

  max-width: 650px;
}

/* =========================================================
   BREADCRUMB
========================================================= */

.breadcrumb-wrap {
  margin-top: 34px;

  display: flex;

  align-items: center;

  gap: 10px;
}

.breadcrumb-wrap a {
  color: var(--gold);

  font-weight: 500;
}

.breadcrumb-wrap span {
  color: rgba(255, 255, 255, 0.55);
}

.breadcrumb-wrap p {
  margin: 0;

  color: #fff;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 768px) {
  .inner-hero-section {
    padding: 140px 0 90px;
  }

  .inner-hero-title {
    font-size: 40px;
  }

  .inner-hero-text {
    font-size: 15px;
  }
}

/* =========================================================
   ABOUT STORY SECTION
========================================================= */

.about-story-section {
  padding: 120px 0;

  background: #ffffff;

  overflow: hidden;
}

/* =========================================================
   IMAGE WRAP
========================================================= */

.about-story-image-wrap {
  position: relative;
}

/* =========================================================
   IMAGE
========================================================= */

.about-story-image {
  width: 100%;

  border-radius: 28px;

  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* =========================================================
   BADGE
========================================================= */

.about-story-badge {
  position: absolute;

  bottom: -35px;
  left: 35px;

  background: #fff;

  width: 220px;

  padding: 28px;

  border-radius: 24px;

  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.about-story-badge span {
  display: block;

  font-size: 42px;

  font-weight: 700;

  color: var(--kukum);

  margin-bottom: 10px;
}

/* =========================================================
   CONTENT
========================================================= */

.about-story-content {
  padding-left: 50px;
}

/* =========================================================
   TEXT
========================================================= */

.about-story-text {
  margin-top: 24px;

  font-size: 16px;

  line-height: 1.9;

  color: #666;
}

/* =========================================================
   POINTS
========================================================= */

.about-story-points {
  margin-top: 35px;

  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 20px;
}

/* =========================================================
   POINT ITEM
========================================================= */

.about-point {
  display: flex;

  align-items: center;

  gap: 10px;

  font-size: 15px;

  font-weight: 500;

  color: var(--black);
}

.about-point span {
  color: var(--kukum);

  font-size: 22px;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {
  .about-story-content {
    padding-left: 0;

    margin-top: 90px;
  }
}

@media (max-width: 768px) {
  .about-story-section {
    padding: 90px 0;
  }

  .about-story-points {
    grid-template-columns: 1fr;
  }

  .about-story-badge {
    width: 180px;

    padding: 22px;

    left: 20px;
  }

  .about-story-badge span {
    font-size: 34px;
  }
}

/* =========================================================
   VISION SECTION
========================================================= */

.vision-section {
  padding: 120px 0;

  background: #faf7f2;
}

/* =========================================================
   CARD
========================================================= */

.vision-card {
  background: #fff;

  padding: 55px 45px;

  border-radius: 28px;

  height: 100%;

  transition: 0.4s ease;

  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.vision-card:hover {
  transform: translateY(-10px);

  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

/* =========================================================
   ICON
========================================================= */

.vision-icon {
  width: 90px;
  height: 90px;

  border-radius: 50%;

  background: rgba(254, 194, 18, 0.14);

  display: flex;
  align-items: center;
  justify-content: center;
}

.vision-icon span {
  font-size: 42px;

  color: var(--kukum);
}

/* =========================================================
   TITLE
========================================================= */

.vision-card h3 {
  margin-top: 32px;

  font-size: 34px;

  font-family: "Cinzel", serif;

  color: var(--black);
}

/* =========================================================
   TEXT
========================================================= */

.vision-card p {
  margin-top: 22px;

  font-size: 16px;

  line-height: 1.9;

  color: #666;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 768px) {
  .vision-section {
    padding: 90px 0;
  }

  .vision-card {
    padding: 40px 30px;
  }

  .vision-card h3 {
    font-size: 28px;
  }
}

/* =========================================================
   TRUST SECTION
========================================================= */

.trust-section {
  padding: 120px 0;

  background: #ffffff;

  overflow: hidden;
}

/* =========================================================
   IMAGE GRID
========================================================= */

.trust-image-grid {
  position: relative;

  padding-right: 60px;
}

/* =========================================================
   IMAGES
========================================================= */

.trust-img {
  width: 100%;

  object-fit: cover;

  border-radius: 28px;

  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.trust-img.large {
  height: 560px;
}

.trust-img.small {
  width: 240px;

  height: 260px;

  position: absolute;

  right: 0;
  bottom: 40px;

  border: 8px solid #fff;
}

/* =========================================================
   CONTENT
========================================================= */

.trust-content {
  padding-left: 40px;
}

/* =========================================================
   TEXT
========================================================= */

.trust-text {
  margin-top: 24px;

  font-size: 16px;

  line-height: 1.9;

  color: #666;
}

/* =========================================================
   BOX WRAP
========================================================= */

.trust-box-wrap {
  margin-top: 40px;

  display: flex;

  flex-direction: column;

  gap: 24px;
}

/* =========================================================
   BOX
========================================================= */

.trust-box {
  display: flex;

  align-items: flex-start;

  gap: 20px;

  background: #faf7f2;

  padding: 24px;

  border-radius: 22px;

  transition: 0.4s ease;
}

.trust-box:hover {
  transform: translateX(8px);

  background: #fff6da;
}

/* =========================================================
   ICON
========================================================= */

.trust-box span {
  font-size: 34px;

  color: var(--kukum);
}

/* =========================================================
   TITLE
========================================================= */

.trust-box h4 {
  font-size: 24px;

  font-family: "Cinzel", serif;

  margin-bottom: 10px;

  color: var(--black);
}

/* =========================================================
   TEXT
========================================================= */

.trust-box p {
  margin: 0;

  font-size: 15px;

  line-height: 1.8;

  color: #666;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {
  .trust-content {
    padding-left: 0;

    margin-top: 90px;
  }
}

@media (max-width: 768px) {
  .trust-section {
    padding: 90px 0;
  }

  .trust-image-grid {
    padding-right: 0;
  }

  .trust-img.large {
    height: 420px;
  }

  .trust-img.small {
    width: 160px;

    height: 180px;
  }

  .trust-box {
    padding: 20px;
  }

  .trust-box h4 {
    font-size: 20px;
  }
}

/* =========================================================
   COUNTER SECTION
========================================================= */

.counter-section {
  position: relative;

  padding: 120px 0;

  background: url("../../images/veg-meals.jpeg") center center/cover no-repeat;

  overflow: hidden;
}

/* =========================================================
   OVERLAY
========================================================= */

.counter-overlay {
  position: absolute;

  inset: 0;

  background: linear-gradient(
    135deg,
    rgba(91, 8, 8, 0.88),
    rgba(35, 5, 5, 0.82)
  );
}

/* =========================================================
   BOX
========================================================= */

.counter-box {
  position: relative;

  z-index: 2;
}

/* =========================================================
   NUMBER
========================================================= */

.counter-number {
  font-size: 72px;

  font-weight: 700;

  color: var(--gold);

  line-height: 1;

  font-family: "Cinzel", serif;
}

/* =========================================================
   TEXT
========================================================= */

.counter-box p {
  margin-top: 18px;

  font-size: 17px;

  color: rgba(255, 255, 255, 0.9);

  font-weight: 500;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 768px) {
  .counter-section {
    padding: 90px 0;
  }

  .counter-number {
    font-size: 52px;
  }

  .counter-box p {
    font-size: 15px;
  }
}

/* =========================================================
   HOSPITALITY SECTION
========================================================= */

.hospitality-section {
  padding: 120px 0;

  background: #ffffff;

  overflow: hidden;
}

/* =========================================================
   CONTENT
========================================================= */

.hospitality-content {
  padding-right: 50px;
}

/* =========================================================
   TEXT
========================================================= */

.hospitality-text {
  margin-top: 24px;

  font-size: 16px;

  line-height: 1.9;

  color: #666;
}

/* =========================================================
   POINTS
========================================================= */

.hospitality-points {
  margin-top: 40px;

  display: flex;

  flex-direction: column;

  gap: 22px;
}

/* =========================================================
   POINT
========================================================= */

.hospitality-point {
  display: flex;

  align-items: center;

  gap: 16px;

  font-size: 16px;

  font-weight: 500;

  color: var(--black);
}

.hospitality-point span {
  width: 54px;
  height: 54px;

  border-radius: 50%;

  background: rgba(254, 194, 18, 0.14);

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--kukum);

  font-size: 26px;
}

/* =========================================================
   IMAGE WRAP
========================================================= */

.hospitality-image-wrap {
  position: relative;
}

/* =========================================================
   IMAGE
========================================================= */

.hospitality-image {
  width: 100%;

  border-radius: 30px;

  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {
  .hospitality-content {
    padding-right: 0;

    margin-bottom: 70px;
  }
}

@media (max-width: 768px) {
  .hospitality-section {
    padding: 90px 0;
  }
}

/* =========================================================
   MENU HERO
========================================================= */

.menu-hero {
  background: url("../../images/Menu_list.jpg") center center/cover no-repeat;
}

/* =========================================================
   MENU INTRO
========================================================= */

.menu-intro-section {
  padding: 110px 0 60px;

  background: #ffffff;
}

/* =========================================================
   CONTENT
========================================================= */

.menu-intro-content {
  max-width: 850px;

  margin: auto;
}

/* =========================================================
   TEXT
========================================================= */

.menu-intro-text {
  margin-top: 28px;

  font-size: 17px;

  line-height: 1.9;

  color: #666;
}

/* =========================================================
   MENU NAV SECTION
========================================================= */

.menu-nav-section {
  position: sticky;

  top: 95px;

  z-index: 99;

  background: #ffffff;

  padding-bottom: 30px;
}

/* =========================================================
   WRAPPER
========================================================= */

.menu-nav-wrapper {
  display: flex;

  align-items: center;

  justify-content: center;

  flex-wrap: wrap;

  gap: 18px;
}

/* =========================================================
   LINKS
========================================================= */

.menu-nav-wrapper a {
  padding: 14px 28px;

  background: #faf7f2;

  border-radius: 60px;

  color: var(--black);

  font-size: 15px;

  font-weight: 500;

  transition: 0.4s ease;

  border: 1px solid transparent;
}

.menu-nav-wrapper a:hover {
  background: var(--gold);

  color: var(--black);

  transform: translateY(-3px);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 768px) {
  .menu-nav-section {
    top: 78px;

    padding-bottom: 24px;
  }

  .menu-nav-wrapper {
    justify-content: flex-start;

    overflow-x: auto;

    flex-wrap: nowrap;

    padding-bottom: 10px;

    scrollbar-width: none;
  }

  .menu-nav-wrapper::-webkit-scrollbar {
    display: none;
  }

  .menu-nav-wrapper a {
    white-space: nowrap;

    padding: 12px 22px;

    font-size: 14px;
  }
}

/* =========================================================
   MENU CARD SECTION
========================================================= */

.menu-card-section {
  padding: 80px 0 120px;

  background: #ffffff;
}

/* =========================================================
   CARD
========================================================= */

.menu-category-card {
  background: #fff;

  border-radius: 30px;

  overflow: hidden;

  height: 100%;

  transition: 0.4s ease;

  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.menu-category-card:hover {
  transform: translateY(-10px);

  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* =========================================================
   IMAGE
========================================================= */

.menu-card-image {
  height: 240px;

  overflow: hidden;
}

.menu-card-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: 0.5s ease;
}

.menu-category-card:hover img {
  transform: scale(1.08);
}

/* =========================================================
   CONTENT
========================================================= */

.menu-card-content {
  padding: 35px;
}

/* =========================================================
   TITLE
========================================================= */

.menu-card-content h3 {
  font-size: 34px;

  font-family: "Cinzel", serif;

  color: var(--kukum);

  margin-bottom: 25px;
}

/* =========================================================
   LIST
========================================================= */

.menu-card-content ul {
  padding-left: 20px;

  margin: 0;
}

.menu-card-content ul li {
  margin-bottom: 14px;

  color: #444;

  line-height: 1.7;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 768px) {
  .menu-card-section {
    padding: 70px 0 90px;
  }

  .menu-card-image {
    height: 220px;
  }

  .menu-card-content {
    padding: 28px;
  }

  .menu-card-content h3 {
    font-size: 28px;
  }
}

/* =========================================================
   CONTACT INFO SECTION
========================================================= */

.contact-info-section {
  padding: 100px 0;

  background: #ffffff;
}

/* =========================================================
   CARD
========================================================= */

.contact-info-card {
  background: #faf7f2;

  padding: 45px 30px;

  border-radius: 28px;

  text-align: center;

  height: 100%;

  transition: 0.4s ease;

  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
}

.contact-info-card:hover {
  transform: translateY(-10px);

  background: #fff8e5;

  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

/* =========================================================
   ICON
========================================================= */

.contact-icon {
  width: 80px;
  height: 80px;

  margin: auto auto 24px;

  border-radius: 50%;

  background: rgba(165, 77, 33, 0.08);

  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon span {
  font-size: 38px;

  color: var(--kukum);
}

/* =========================================================
   TITLE
========================================================= */

.contact-info-card h3 {
  font-size: 28px;

  font-family: "Cinzel", serif;

  margin-bottom: 18px;

  color: var(--black);
}

/* =========================================================
   TEXT
========================================================= */

.contact-info-card p {
  margin: 0;

  font-size: 15px;

  line-height: 1.9;

  color: #666;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 768px) {
  .contact-info-section {
    padding: 80px 0;
  }

  .contact-info-card {
    padding: 36px 24px;
  }

  .contact-info-card h3 {
    font-size: 24px;
  }
}

/* =========================================================
   CONTACT FORM SECTION
========================================================= */

.contact-form-section {
  padding: 20px 0 120px;

  background: #ffffff;
}

/* =========================================================
   FORM BOX
========================================================= */

.contact-form-box {
  background: #faf7f2;

  padding: 50px;

  border-radius: 32px;

  height: 100%;
}

/* =========================================================
   FORM
========================================================= */

.contact-form-box form {
  margin-top: 40px;
}

/* =========================================================
   INPUTS
========================================================= */

.contact-form-box .form-group {
  margin-bottom: 20px;
}

.contact-form-box input,
.contact-form-box select,
.contact-form-box textarea {
  width: 100%;

  border: none;

  outline: none;

  background: #fff;

  border-radius: 16px;

  padding: 18px 22px;

  font-size: 15px;

  color: var(--black);

  transition: 0.3s ease;
}

.contact-form-box textarea {
  resize: none;
}

.contact-form-box input:focus,
.contact-form-box select:focus,
.contact-form-box textarea:focus {
  border: 1px solid var(--gold);
}

/* =========================================================
   BUTTON
========================================================= */

.contact-submit-btn {
  width: 100%;

  height: 60px;

  border: none;

  border-radius: 60px;

  background: var(--gold);

  color: var(--black);

  font-size: 16px;

  font-weight: 600;

  transition: 0.4s ease;
}

.contact-submit-btn:hover {
  background: var(--kukum);

  color: #fff;

  transform: translateY(-3px);
}

/* =========================================================
   MAP
========================================================= */

.contact-map-box {
  height: 100%;

  border-radius: 32px;

  overflow: hidden;

  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.contact-map-box iframe {
  width: 100%;

  height: 100%;

  min-height: 760px;

  border: 0;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 768px) {
  .contact-form-section {
    padding: 10px 0 90px;
  }

  .contact-form-box {
    padding: 35px 26px;
  }

  .contact-map-box iframe {
    min-height: 420px;
  }
}

/* =========================================================
   CAPTCHA
========================================================= */

.captcha-wrapper{

    margin-bottom:24px;
}

.captcha-image{

    width:180px;

    height:50px;

    border-radius:12px;

    margin-bottom:14px;

    border:1px solid #eee;
}


/* =========================================================
   HONEYPOT
========================================================= */

.honeypot-field{

    display:none;
}


/* =========================================================
   TEXTAREA FIX
========================================================= */

.contact-form-box textarea{

    width:100%;

    border:none;

    outline:none;

    background:#f5f1eb;

    border-radius:18px;

    padding:18px 0px;

    font-size:15px;

    color:var(--black);

    resize:none;

    min-height:140px;

    transition:.3s ease;

    font-family:'Poppins', sans-serif;
}


/* =========================================================
   CAPTCHA INPUT FIX
========================================================= */

.captcha-wrapper input{

    width:100%;

    border:none;

    outline:none;

    background:#f5f1eb;

    border-radius:18px;

    padding:18px 22px;

    font-size:15px;

    color:var(--black);

    transition:.3s ease;
}


/* =========================================================
   FOCUS EFFECT
========================================================= */

.contact-form-box textarea:focus,
.captcha-wrapper input:focus{

    background:#fff;

    border:1px solid var(--gold);

    box-shadow:
    0 0 0 4px rgba(254,194,18,0.10);
}

#customToast{

    position:fixed;

    top:30px;
    right:30px;

    background:#fff;

    border-left:5px solid var(--gold);

    padding:18px 24px;

    border-radius:18px;

    display:flex;

    align-items:center;

    gap:14px;

    box-shadow:
    0 20px 60px rgba(0,0,0,0.12);

    z-index:99999;

    opacity:0;

    visibility:hidden;

    transform:translateY(-20px);

    transition:.4s ease;
}


#customToast.active{

    opacity:1;

    visibility:visible;

    transform:translateY(0);
}

/* =========================================================
   GALLERY GRID
========================================================= */

.gallery-grid-section{

    padding:30px 0 120px;

    background:#ffffff;
}


/* =========================================================
   MASONRY
========================================================= */

.gallery-masonry{

    column-count:3;

    column-gap:24px;
}


/* =========================================================
   ITEM
========================================================= */

.gallery-item{

    margin-bottom:24px;

    overflow:hidden;

    border-radius:28px;

    break-inside:avoid;

    cursor:pointer;

    box-shadow:
    0 10px 40px rgba(0,0,0,0.06);
}


/* =========================================================
   IMAGE
========================================================= */

.gallery-item img{

    width:100%;

    height:auto;

    display:block;

    transition:.5s ease;

    object-fit:cover;

    max-height:520px;
    
    overflow:hidden;

    border-radius:28px;

    margin-bottom:24px;

    break-inside:avoid;

    background:#fff;
}


.gallery-item:hover img{

    transform:scale(1.06);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:991px){

    .gallery-masonry{

        column-count:2;
    }

}


@media(max-width:768px){

    .gallery-grid-section{

        padding:20px 0 90px;
    }

    .gallery-intro-section{

        padding:90px 0 30px;
    }

    .gallery-masonry{

        column-count:1;
    }

}
