@charset "UTF-8";
/* ------------------------------------------------

Page    : Start.ly CSS
Version : 1.0
Author  : Surjith S M
URI     : http://themeforest.net/user/surjithctly

TABLE OF CONTENTS
-----------------

1. Header
2. navbar
3. One Page
4. Cards
5. Portfolio
6. Video
7. Team
8. Contact
9. Footer

Copyright © All rights Reserved
Surjith S M / @surjithctly

-------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

html, body {
  height: 100%;
  min-height: 100%;
  font-family: 'Dosis', Arial, Sans-serif;
  font-family: "Inter", sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Playfair Display", serif;
}

@media (max-width: 767px) {
  h1 {
    font-size: 2rem;
  }
  h3 {
    font-size: 1.5rem;
  }
  .display-3 {
    font-size: 3rem;
  }
}

a {
  color: #2575fc;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

a:hover, a:focus, a:active {
  color: #023386;
  text-decoration: none;
}

.link-muted {
  color: #464a4c;
}

.text-light {
  color: rgba(255, 255, 255, 0.7);
}

.link-reverse {
  color: #fff;
}

.link-reverse:hover {
  color: #fff;
  opacity: 0.7;
}

.font-bold {
  font-weight: 700;
}

.my-md {
  margin-top: 2.5em !important;
  margin-bottom: 2.5em !important;
}

.my-lg {
  margin-top: 5em !important;
  margin-bottom: 5em !important;
}

.py-lg {
  padding-top: 5em !important;
  padding-bottom: 5em !important;
}

.mt-lg {
  margin-top: 5em !important;
}

.mb-lg {
  margin-bottom: 5em !important;
}

.mb-4 {
  margin-bottom: 2rem !important;
}

.display-5 {
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.5;
}

.bg-light {
  background-color: #f7f7f9;
}

.bg-white {
  background-color: #fff !important;
}

.bg-primary {
  background-color: #2575fc !important;
}

.light-text {
  color: #b5bcc0;
}

.form-control::-webkit-input-placeholder {
  color: #636c72;
  opacity: 0.5;
}

.form-control::-moz-placeholder {
  color: #636c72;
  opacity: 0.5;
}

.form-control:-ms-input-placeholder {
  color: #636c72;
  opacity: 0.5;
}

.form-control::placeholder {
  color: #636c72;
  opacity: 0.5;
}

.form-control::-webkit-input-placeholder {
  color: #636c72;
  opacity: 0.5;
}

/*FONT*/
.sans-serif-font {
  font-family: "Dosis", Arial, Sans-serif !important;
}

/*-----------------------------------
 * Section
 *-----------------------------------*/
.section {
  padding-top: 3em;
  padding-bottom: 3em;
}

.section-title {
  margin: 4em auto;
}

.btn {
  text-transform: uppercase;
  font-size: 16px;
  font-family: "Oswald", "Impact", sans-serif;
  border-radius: 9px;
}

.btn-sm {
  font-size: 14px;
  letter-spacing: 0;
}

.btn-lg {
  padding: 1rem 2.5rem;
}

.btn-primary,
.btn-primary:focus {
  background-color: #2575fc;
  border-color: #2575fc;
  color: #fff;
}

.btn-primary:hover, .btn-primary:active,
.btn-primary:focus:hover,
.btn-primary:focus:active {
  color: #fff;
  background-color: #0c65fc;
  border-color: #0c65fc;
}

.btn-outline,
.btn-outline:focus {
  color: #fff;
  background-image: none;
  background-color: transparent;
  border-color: #fff;
}

.btn-outline:hover, .btn-outline:active,
.btn-outline:focus:hover,
.btn-outline:focus:active {
  color: #292b2c;
  background-color: #fff;
  border-color: #fff;
}

.light-theme .btn-outline,
.light-theme .btn-outline:focus, .light-theme
.btn-outline:focus,
.light-theme
.btn-outline:focus:focus {
  color: #000;
  border-color: #000;
}

.light-theme .btn-outline:hover, .light-theme .btn-outline:active,
.light-theme .btn-outline:focus:hover,
.light-theme .btn-outline:focus:active, .light-theme
.btn-outline:focus:hover, .light-theme
.btn-outline:focus:active,
.light-theme
.btn-outline:focus:focus:hover,
.light-theme
.btn-outline:focus:focus:active {
  color: #fff;
  background-color: #000;
  border-color: #000;
}

.btn-outline-primary {
  color: #2575fc;
  background-image: none;
  background-color: transparent;
  border-color: #2575fc;
}

.btn-outline-primary:hover, .btn-outline-primary:active {
  color: #fff;
  background-color: #2575fc;
  border-color: #2575fc;
}

/*-----------------------------------
 * Wrappers
 *-----------------------------------*/
.wrapper {
  width: 100%;
  height: 100%;
}

.background {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.background.overlay:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.3);
}

.body-padding {
  margin: 30px;
  height: calc(100% - 60px);
  min-height: calc(100% - 60px);
}

@media (max-width: 767px) {
  .body-padding {
    margin: 15px;
    height: calc(100% - 30px);
    min-height: calc(100% - 30px);
  }
}

.bg-one {
  background-image: url("../images/bg-one.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.bg-minimal {
  background-image: url("../images/minimal.jpg");
  background-repeat: no-repeat;
  background-position: right top;
  background-size: cover;
}

.content-section {
  height: 100%;
  margin-right: 80px;
}

@media (max-width: 767px) {
  .content-section {
    margin-right: 0;
  }
}

.center-content {
  text-align: center;
}

.center-content.text-light {
  color: #fff;
}

.center-content .lead {
  margin: 0 auto;
  max-width: 500px;
}

.padding {
  padding: 35px;
}

.animation {
  height: 100%;
  min-height: 100%;
  overflow: hidden;
}

/*-----------------------------------
 * Sidebar
 *-----------------------------------*/
.sidebar {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
}

.sidebar.sidebar-dark {
  background-color: rgba(0, 0, 0, 0.3);
}

.sidebar.sidebar-light {
  background-color: transparent;
}

@media (max-width: 767px) {
  .sidebar.sidebar-dark, .sidebar.sidebar-light {
    background-color: transparent;
  }
}

.hamburger-menu {
  width: 80px;
  height: 50px;
  padding: 17px 25px;
  margin: 10px auto;
  cursor: pointer;
  position: absolute;
  top: 0;
}

.hamburger {
  position: relative;
  width: 100%;
  height: 100%;
}

.hamburger-line {
  position: absolute;
  right: 0;
  width: 100%;
  height: 3px;
  background-color: #fff;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}

.sidebar-light .hamburger-line {
  background-color: #000;
}

.hamburger-line-1 {
  top: 0;
  width: 60%;
}

.hamburger-line-2,
.hamburger-line-3 {
  top: 0;
  bottom: 0;
  margin: auto;
}

.hamburger-line-4 {
  bottom: -1px;
  width: 80%;
}

.sidebar-open .hamburger-line-1,
.sidebar-open .hamburger-line-4 {
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
}

.sidebar-open .hamburger-line-2 {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.sidebar-open .hamburger-line-3 {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.social-links {
  margin-bottom: 50px;
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  white-space: nowrap;
}

@media (max-width: 767px) {
  .social-links {
    display: none;
  }
}

.social-links a {
  font-family: "Oswald", "Impact", sans-serif;
  vertical-align: middle;
  margin-left: 10px;
  margin-right: 10px;
  padding: 10px;
  font-size: 13px;
  letter-spacing: 5px;
  -webkit-transition: color .3s ease;
  -o-transition: color .3s ease;
  transition: color .3s ease;
  text-transform: uppercase;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
}

.social-links a:hover, .social-links a:focus {
  color: #fff;
}

.sidebar-light .social-links a {
  color: rgba(0, 0, 0, 0.5);
}

.sidebar-light .social-links a:hover, .sidebar-light .social-links a:focus {
  color: #000;
}

[class^='vline'] {
  width: 1px;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  position: absolute;
  top: 0;
  bottom: 0;
  -webkit-transform: scaleY(0);
  -ms-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: top left;
  -ms-transform-origin: top left;
  transform-origin: top left;
  -webkit-animation-name: lineanim;
  animation-name: lineanim;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
}

.light-theme [class^='vline'] {
  background: rgba(0, 0, 0, 0.1);
}

.vline-1 {
  left: 20%;
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.vline-2 {
  left: 40%;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

.vline-3 {
  left: 60%;
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.vline-4 {
  left: 80%;
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s;
}

/*-----------------------------------
 * Content
 *-----------------------------------*/
.fullscreen-content {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow-y: auto;
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: -webkit-transform 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -o-transition: transform 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: transform 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: transform 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86), -webkit-transform 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.sidebar-open .fullscreen-content {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

.fullscreen-content.dark-bg {
  background: #000;
  color: #fff;
}

.fullscreen-content.dark-bg a:not(.btn) {
  color: #fff;
}

.fullscreen-content.dark-bg a:not(.btn):hover, .fullscreen-content.dark-bg a:not(.btn):focus {
  color: rgba(255, 255, 255, 0.7);
}

.fullscreen-content.light-bg {
  background: #fff;
  color: #000;
}

.fullscreen-content.light-bg a:not(.btn) {
  color: #000;
}

.fullscreen-content.light-bg a:not(.btn):hover, .fullscreen-content.light-bg a:not(.btn):focus {
  color: rgba(0, 0, 0, 0.7);
}

@media (min-width: 992px) and (max-width: 1199px) {
  .fullscreen-content {
    padding: 0 50px;
  }
}

/* Feature Block
 * ------------- */
.feature-block {
  text-align: center;
  margin: 2em auto;
}

.feature-block i {
  margin-bottom: 0.3em;
}

.feature-block p {
  margin-top: 1em;
}

.dark-bg .feature-block p {
  color: rgba(255, 255, 255, 0.8);
}

.light-bg .feature-block p {
  color: rgba(0, 0, 0, 0.8);
}

.section-title {
  text-align: center;
  margin-top: 4em;
  margin-bottom: 4em;
}

.section-title .section-heading {
  font-weight: 700;
  text-transform: uppercase;
}

.section-title p {
  max-width: 600px;
  margin: 0 auto;
}

.team-block {
  text-align: center;
  margin-bottom: 3em;
}

.dark-bg .team-block p {
  color: rgba(255, 255, 255, 0.8);
}

.light-bg .team-block p {
  color: rgba(0, 0, 0, 0.8);
}

.team-block > .animation {
  display: inline-block;
}

/* Slick Slider
 * ------------- */
.slick-slide .img-holder {
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}

/* Countdown Timer
 * --------------- */
.countdown-wrap {
  margin: 40px 0 20px 0;
}

.countdown-wrap p {
  font-size: 22px;
  margin-bottom: 0;
}

@media (max-width: 500px) {
  .countdown-wrap {
    margin: 10px 0;
  }
}

.countdown {
  padding: 0;
  margin-bottom: 10px;
  text-align: center;
  list-style: none;
}

.countdown li {
  display: inline-block;
  text-align: center;
  background: rgba(0, 0, 0, 0.3);
  padding: 20px 20px 15px;
  margin-right: 15px;
  border-radius: 5px;
  margin-bottom: 20px;
  list-style: none;
  min-width: 150px;
}

.light-theme .countdown li {
  background: transparent;
}

@media (max-width: 767px) {
  .countdown li {
    min-width: 170px;
  }
}

@media (max-width: 500px) {
  .countdown li {
    min-width: 110px;
  }
}

@media (max-width: 500px) {
  .countdown li {
    font-size: 30px;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-right: 10px;
    margin-bottom: 10px;
  }
}

.countdown li span {
  font-size: 70px;
  font-weight: bold;
  color: #FFF;
  line-height: 1.0;
  position: relative;
}

.light-theme .countdown li span {
  color: #000;
}

@media (max-width: 992px) {
  .countdown li span {
    font-size: 60px;
  }
}

@media (max-width: 767px) {
  .countdown li span {
    font-size: 40px;
  }
}

@media (max-width: 500px) {
  .countdown li span {
    font-size: 30px;
  }
}

.countdown li p {
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  font-size: 15px;
}

.light-theme .countdown li p {
  color: rgba(0, 0, 0, 0.55);
}

.countdown_title {
  margin: 20px 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
}

.light-theme .countdown_title {
  color: #000;
}

/* Google Map
 * ------------- */
.google-map {
  height: 560px;
  margin-top: 5em;
}

/* Modal Popup
 * ------------- */
.modal .modal-dialog {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
}

.modal-open .modal.show.modal-center {
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center !important;
  -webkit-align-items: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
}

.modal-open .modal.show.modal-center .modal-dialog {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.modal-dark .modal-content {
  background-color: #141414;
  color: #fff;
}

.modal-dark .close {
  color: #fff;
  text-shadow: none;
}

.modal .close {
  position: absolute;
  right: 7px;
  top: 7px;
}

.modal .modal-header {
  border-bottom: 0;
}

.modal .modal-title {
  font-size: 50px;
  font-weight: 700;
  text-align: center;
}

.recaptcha-field {
  display: flex;
  justify-content: center;
  margin: 0.4rem 0 1.2rem;
}

@media (max-width: 360px) {
  .recaptcha-field {
    transform: scale(0.88);
    transform-origin: center top;
    margin-bottom: 0.2rem;
  }
}

.modal-backdrop.show {
  opacity: .9;
}

body.modal-open div#fscontent {
  filter: blur(3px);
}

/* Video BG
 * ------------- */
.video-container {
  position: relative;
  bottom: 0%;
  left: 0%;
  height: 100%;
  width: 100%;
  overflow: hidden;
}

.video-container .filter {
  z-index: 100;
  position: absolute;
  background: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
}

.video-container video {
  position: fixed;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -100;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  background: url("../images/poster.jpg") no-repeat;
  background-size: cover;
  -webkit-transition: 1s opacity;
  -o-transition: 1s opacity;
  transition: 1s opacity;
}

/* Forms
 * ------------- */
.md-form {
  position: relative;
  margin-bottom: 2em;
}

.form-group button {
  cursor: pointer;
}

.form-control,
.form-control:focus {
  background-color: transparent;
  border-color: transparent;
  border-radius: 0;
  color: #fff;
  font-family: 'Dosis', Arial, Sans-serif;
}

.light-theme .form-control, .light-theme
.form-control:focus {
  color: #000;
}

.input-material {
  font-size: 18px;
  padding: 10px 10px 10px 5px;
  display: block;
  border: none;
  border-bottom: 1px solid #757575;
}

/* LABEL  */
label {
  color: #999;
  font-size: 14px;
  font-weight: normal;
  position: absolute;
  pointer-events: none;
  left: 5px;
  top: 10px;
  -webkit-transition: 0.2s ease all;
  -o-transition: 0.2s ease all;
  transition: 0.2s ease all;
}

/* active state */
.input-material:focus ~ label,
.input-material ~ label.active {
  top: -20px;
  font-size: 14px;
  color: #fff;
}

.light-theme .input-material:focus ~ label, .light-theme
.input-material ~ label.active {
  color: #000;
}

.bar {
  position: relative;
  display: block;
}

.bar:before,
.bar:after {
  content: '';
  height: 1px;
  width: 0;
  bottom: 1px;
  position: absolute;
  background: #fff;
  -o-transition: 0.2s ease all;
  transition: 0.2s ease all;
  -moz-transition: 0.2s ease all;
  -webkit-transition: 0.2s ease all;
}

.light-theme .bar:before, .light-theme
.bar:after {
  background: #000;
}

.bar:before {
  left: 50%;
}

.bar:after {
  right: 50%;
}

/* active state */
.input-material:focus ~ .bar:before,
.input-material:focus ~ .bar:after {
  width: 50%;
}

/* active state */
.input-material:focus ~ .highlight {
  -webkit-animation: inputHighlighter 0.3s ease;
  -moz-animation: inputHighlighter 0.3s ease;
  animation: inputHighlighter 0.3s ease;
}

/* ANIMATIONS  */
@-webkit-keyframes inputHighlighter {
  from {
    background: #0f3f6b;
  }
  to {
    width: 0;
    background: transparent;
  }
}
@keyframes inputHighlighter {
  from {
    background: #0f3f6b;
  }
  to {
    width: 0;
    background: transparent;
  }
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes shake {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}

@keyframes shake {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}

.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

/*-----------------------------------
 * Animations
 *-----------------------------------*/
@-webkit-keyframes lineanim {
  50% {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-transform-origin: top left;
    transform-origin: top left;
  }
  50.1% {
    -webkit-transform-origin: bottom left;
    transform-origin: bottom left;
  }
  100% {
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: bottom left;
    transform-origin: bottom left;
  }
}
@keyframes lineanim {
  50% {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-transform-origin: top left;
    transform-origin: top left;
  }
  50.1% {
    -webkit-transform-origin: bottom left;
    transform-origin: bottom left;
  }
  100% {
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: bottom left;
    transform-origin: bottom left;
  }
}

@-webkit-keyframes show-img-1 {
  0%,
  66.6% {
    visibility: hidden;
  }
  100%,
  66.7% {
    visibility: visible;
  }
}

@keyframes show-img-1 {
  0%,
  66.6% {
    visibility: hidden;
  }
  100%,
  66.7% {
    visibility: visible;
  }
}

@-webkit-keyframes show-btn-1 {
  0%,
  50% {
    visibility: hidden;
  }
  100%,
  50.1% {
    visibility: visible;
  }
}

@keyframes show-btn-1 {
  0%,
  50% {
    visibility: hidden;
  }
  100%,
  50.1% {
    visibility: visible;
  }
}

@-webkit-keyframes slide-bg-2 {
  33.3% {
    -webkit-transform-origin: left top;
    transform-origin: left top;
    -webkit-transform: scale(0.05, 1);
    transform: scale(0.05, 1);
  }
  66.6% {
    -webkit-transform-origin: left center;
    transform-origin: left center;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  66.7% {
    -webkit-transform-origin: right center;
    transform-origin: right center;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  100% {
    -webkit-transform-origin: right center;
    transform-origin: right center;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
  }
}

@keyframes slide-bg-2 {
  33.3% {
    -webkit-transform-origin: left top;
    transform-origin: left top;
    -webkit-transform: scale(0.05, 1);
    transform: scale(0.05, 1);
  }
  66.6% {
    -webkit-transform-origin: left center;
    transform-origin: left center;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  66.7% {
    -webkit-transform-origin: right center;
    transform-origin: right center;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  100% {
    -webkit-transform-origin: right center;
    transform-origin: right center;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
  }
}

@-webkit-keyframes slide-bg-1 {
  50% {
    -webkit-transform-origin: left center;
    transform-origin: left center;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  50.1% {
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
  100% {
    -webkit-transform-origin: right center;
    transform-origin: right center;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }
}

@keyframes slide-bg-1 {
  50% {
    -webkit-transform-origin: left center;
    transform-origin: left center;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  50.1% {
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
  100% {
    -webkit-transform-origin: right center;
    transform-origin: right center;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }
}

.animation {
  position: relative;
}

.w-auto {
  width: auto!important;
}

[data-aos=slide-effect-2]:after {
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

[data-aos=slide-effect-2] > .animation-inner,
[data-aos=slide-effect-2] > img {
  visibility: hidden;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  position: relative;
}

[data-aos=slide-effect-2].aos-animate > .animation-inner,
[data-aos=slide-effect-2].aos-animate > img {
  -webkit-animation-name: show-img-1;
  animation-name: show-img-1;
}

[data-aos=slide-effect-2]:after {
  content: ' ';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
  -webkit-transform: scale(0.05, 0);
  -ms-transform: scale(0.05, 0);
  transform: scale(0.05, 0);
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

[data-aos=slide-effect-2].anim-dark:after {
  background-color: #133f6a;
}

[data-aos=slide-effect-2].anim-light:after {
  background-color: #fff;
}

[data-aos=slide-effect-2].aos-animate:after {
  -webkit-animation-name: slide-bg-2;
  animation-name: slide-bg-2;
}

/*Button*/
[data-aos=slide-effect-btn] {
  display: inline-block;
  position: relative;
}

[data-aos=slide-effect-btn] a {
  visibility: hidden;
  -webkit-animation-duration: 1.2s;
  animation-duration: 1.2s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

[data-aos=slide-effect-btn]:after {
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

[data-aos=slide-effect-btn]:after {
  content: ' ';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  -webkit-transform-origin: left center;
  -ms-transform-origin: left center;
  transform-origin: left center;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-animation-duration: 1.2s;
  animation-duration: 1.2s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

[data-aos=slide-effect-btn].anim-dark:after {
  background-color: #000;
}

[data-aos=slide-effect-btn].anim-light:after {
  background-color: #fff;
}

[data-aos=slide-effect-btn].aos-animate a {
  -webkit-animation-name: show-btn-1;
  animation-name: show-btn-1;
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}

[data-aos=slide-effect-btn].aos-animate:after {
  -webkit-animation-name: slide-bg-1;
  animation-name: slide-bg-1;
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}

.sidebar.sidebar-dark {
    background-color: rgba(19, 63, 106, 0.5);
}

@media (max-width: 767px) {
  .sidebar.sidebar-dark {
    top: 14px;
    right: 14px;
    bottom: auto;
    width: 56px;
    height: 56px;
    border-radius: 9px;
    background-color: rgba(20, 68, 107, 0.96);
    box-shadow: 0 12px 28px rgba(20, 68, 107, 0.28);
  }

  .sidebar .hamburger-menu {
    position: static;
    width: 56px;
    height: 56px;
    margin: 0;
    padding: 18px 15px;
  }

  .sidebar .hamburger {
    width: 26px;
    height: 20px;
  }

  .sidebar .hamburger-line {
    height: 2px;
  }
}

.section-title p {
    max-width: 100%;
    margin: 0 auto;
}

.max-800 {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.max-800 .row {
    display: flex;
    align-items: center;
    justify-content: center;
}

.campaign-brand {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.campaign-logo {
  display: block;
  width: 600px;
  max-width: 52vw;
  margin: 0 auto 1.25rem;
}

@media (max-width: 767px) {
  .campaign-logo {
    width: 760px;
    max-width: 96vw;
  }
}

.campaign-badge {
  display: inline-block;
  margin-bottom: 1.1rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: #f47b20;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.campaign-brand h1 {
  margin-bottom: 1.7rem;
  font-size: 2.65rem;
  line-height: 1.15;
  color: #14446b;
}

.campaign-tagline {
  margin: 0 auto;
  font-size: 1.15rem;
  color: rgba(0, 0, 0, 0.82);
}

.campaign-media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin: 2.5rem auto 4.5rem;
}

.campaign-media-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
}

.campaign-media-card:before {
  content: "";
  display: block;
  height: 8px;
  background: #f47b20;
}

.campaign-media-card:nth-child(2):before {
  background: #559746;
}

button.flipbook-preview {
    cursor: pointer;
}

.campaign-video-trigger,
.flipbook-preview {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #111;
}

.campaign-video-trigger img,
.flipbook-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flipbook-preview img {
  object-position: center center;
}

.campaign-play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 78px;
  height: 78px;
  margin-top: -39px;
  margin-left: -39px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  border-radius: 50%;
  background: rgba(20, 68, 107, 0.86);
  color: #fff;
  font-size: 3.2rem;
  transition: background 0.3s ease, transform 0.3s ease;
}

.campaign-video-trigger:hover .campaign-play,
.campaign-video-trigger:focus .campaign-play {
  background: rgba(20, 68, 107, 0.98);
  transform: scale(1.04);
}

.campaign-media-content {
  padding: 1.5rem 1.7rem 1.7rem;
  border-bottom: 6px solid #14446b;
}

.campaign-media-content h3 {
  margin-bottom: 0.55rem;
  font-size: 1.65rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #14446b;
}

.campaign-media-content p {
  margin-bottom: 1.1rem;
  color: rgba(0, 0, 0, 0.72);
}

.campaign-share {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #f47b20 !important;
  cursor: pointer;
  font: 700 0.92rem "Inter", sans-serif;
  text-transform: uppercase;
}

.campaign-share:hover,
.campaign-share:focus {
  color: #14446b !important;
}

.campaign-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 18px;
}

.campaign-action-primary {
  display: inline-block;
  padding: 0.75rem 1.05rem;
  border: 1px solid #14446b;
  background: #14446b;
  color: #fff !important;
  font: 700 0.86rem "Inter", sans-serif;
  text-transform: uppercase;
}

.campaign-action-primary:hover,
.campaign-action-primary:focus {
  background: #0d304d;
  border-color: #0d304d;
  color: #fff !important;
}

.campaign-thermometer {
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: 520px;
  margin: 2.3rem auto 0;
  padding: 1.1rem 1.35rem;
  border: 0;
  background: #14446b;
  box-shadow: inset 0 -8px 0 #f47b20;
}

.thermometer-track {
  position: relative;
  flex: 1 1 auto;
  height: 18px;
  overflow: hidden;
  border: 1px solid rgba(20, 68, 107, 0.3);
  background: #fff;
}

.thermometer-fill {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: var(--progress);
  background: linear-gradient(90deg, #559746 0%, #f47b20 100%);
}

.thermometer-copy {
  display: flex;
  flex-direction: column;
  min-width: 112px;
  text-align: left;
  line-height: 1.2;
}

.thermometer-copy span {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.thermometer-copy strong {
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
  color: #fff;
}

.thermometer-copy small {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.72);
}

.campaign-goal-cta {
  margin-top: 1.4rem !important;
}

.fullscreen-content.light-bg .feature-block,
.fullscreen-content.light-bg .team-block {
  padding: 1.25rem 0.75rem;
}

.fullscreen-content.light-bg .feature-block i {
  color: #111;
}

.fullscreen-content.light-bg .feature-block p,
.fullscreen-content.light-bg .team-block p {
  font-size: 1.02rem;
  line-height: 1.55;
}

.campaign-video-embed {
  display: block;
  width: 100%;
  height: auto;
  max-height: 78vh;
  background: #000;
}

.video-close {
  z-index: 2;
  right: 14px !important;
  top: 10px !important;
}

@media (max-width: 767px) {
  .campaign-brand h1 {
    font-size: 2rem;
  }

  .campaign-media-grid {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 3rem;
  }

  .campaign-play {
    width: 62px;
    height: 62px;
    margin-top: -31px;
    margin-left: -31px;
    font-size: 2.6rem;
  }

  .campaign-thermometer {
    flex-direction: column;
    align-items: stretch;
  }

  .thermometer-copy {
    min-width: 0;
    text-align: center;
  }
}

/* Campaign polish */
#fscontent.light-bg {
  background:
    linear-gradient(180deg, #ffffff 0%, #f7faf6 36%, #ffffff 100%);
}

#fscontent > .container {
  max-width: 1180px;
}

#fscontent .section-title .section-heading {
  position: relative;
  display: inline-block;
  color: #14446b;
  letter-spacing: 0;
}

#fscontent .section-title .section-heading:after {
  content: "";
  display: block;
  width: 72px;
  height: 5px;
  margin: 0.8rem auto 0;
  background: #f47b20;
}

#fscontent .section-title.text-left .section-heading:after {
  margin-left: 0;
}

#fscontent .section-title.text-right .section-heading:after {
  margin-right: 0;
}

.campaign-brand {
  position: relative;
  max-width: 980px;
  padding: 3.2rem 2rem 2.8rem;
  overflow: hidden;
  background: #fff;
  border-bottom: 12px solid #14446b;
  box-shadow: 0 24px 70px rgba(20, 68, 107, 0.1);
}

.campaign-brand:before,
.campaign-brand:after {
  content: "";
  position: absolute;
  top: 0;
  width: 140px;
  height: 100%;
  opacity: 0.95;
}

.campaign-brand:before {
  left: 0;
  background: #559746;
  clip-path: polygon(0 0, 42% 0, 100% 100%, 0 100%);
}

.campaign-brand:after {
  right: 0;
  background: #f47b20;
  clip-path: polygon(58% 0, 100% 0, 100% 100%, 0 100%);
}

.campaign-logo,
.campaign-brand h1,
.campaign-badge,
.campaign-tagline {
  position: relative;
  z-index: 1;
}

.campaign-brand h1 {
  font-size: 3.1rem;
}

.campaign-tagline {
  max-width: 620px;
  font-weight: 600;
}

.campaign-media-grid {
  gap: 34px;
}

.campaign-media-card {
  overflow: hidden;
  border: 0;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.13);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.campaign-media-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 72px rgba(20, 68, 107, 0.2);
}

.campaign-media-content {
  background: #fff;
}

.campaign-video-card .campaign-media-content {
  background: #14446b;
}

.campaign-video-card .campaign-media-content h3,
.campaign-video-card .campaign-media-content p {
  color: #fff;
}

.campaign-video-card .campaign-share {
  color: #ffc20e !important;
}

.campaign-mission-panel {
  max-width: 1100px;
  padding: 0;
  background: #14446b;
  color: #fff;
  box-shadow: 0 26px 70px rgba(20, 68, 107, 0.18);
}

.campaign-mission-panel .row {
  width: 100%;
  margin: 0;
}

.campaign-mission-panel .col-md-4,
.campaign-mission-panel .col-md-8 {
  padding: 0;
}

.campaign-mission-panel img {
  width: 100%;
  min-height: 280px;
  object-fit: cover;
}

.campaign-mission-panel .section-title {
  margin: 0;
  padding: 3rem;
}

.campaign-mission-panel .section-heading {
  color: #fff !important;
}

.campaign-mission-panel .section-heading:after {
  background: #ffc20e !important;
}

.campaign-mission-panel p {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 1.08rem;
  line-height: 1.75;
}

.impact-grid {
  margin-top: 1.5rem;
  margin-bottom: 4.2rem;
}

.impact-grid > [class*="col-"] {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.impact-grid .feature-block {
  height: calc(100% - 24px);
  margin: 0 0 24px;
  padding: 2rem 1.5rem;
  text-align: left;
  background: #fff;
  border-top: 7px solid #f47b20;
  box-shadow: 0 16px 42px rgba(20, 68, 107, 0.1);
}

.impact-grid .col-md-6:nth-child(3n+2) .feature-block {
  border-top-color: #559746;
}

.impact-grid .col-md-6:nth-child(3n) .feature-block {
  border-top-color: #14446b;
}

.impact-grid .feature-block i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  margin-bottom: 1.15rem;
  background: #f6aa1c;
  color: #14446b !important;
  font-size: 2.55rem;
}

.impact-grid .feature-block p {
  margin: 0;
  color: #162331 !important;
  font-weight: 700;
}

.campaign-challenge-panel {
  max-width: 1100px;
  padding: 2.2rem;
  background: linear-gradient(135deg, #f47b20 0%, #f6aa1c 100%);
  color: #fff;
}

.campaign-challenge-panel .row {
  width: 100%;
}

.campaign-challenge-panel .section-title {
  margin: 0;
}

.campaign-challenge-panel .section-heading {
  color: #fff !important;
}

.campaign-challenge-panel .section-heading:after {
  background: #14446b !important;
}

.campaign-challenge-panel p {
  max-width: 100%;
  color: #fff !important;
  font-weight: 600;
  line-height: 1.7;
}

.campaign-challenge-panel img {
  box-shadow: 14px 14px 0 #14446b;
}

.campaign-goal-panel {
  margin-top: 4rem;
  padding: 3rem 2.4rem 2.4rem;
  background: #0f314f;
  color: #fff;
}

.campaign-goal-panel .section-heading {
  color: #fff !important;
}

.campaign-goal-panel .section-heading:after {
  background: #f47b20 !important;
}

.campaign-goal-panel > p {
  max-width: 840px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.08rem;
  line-height: 1.72;
}

.campaign-goal-panel .btn-outline-primary {
  color: #fff;
  border-color: #f47b20;
  background: #f47b20;
}

.campaign-goal-panel .btn-outline-primary:hover,
.campaign-goal-panel .btn-outline-primary:focus {
  color: #14446b;
  background: #ffc20e;
  border-color: #ffc20e;
}

.campaign-goal-panel img {
  width: 100%;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.25);
}

.before-after-comparison {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 9px;
  box-shadow: none !important;
}

.kitchen-grid {
  margin-top: 1rem;
}

.kitchen-grid .team-block {
  height: calc(100% - 28px);
  margin-bottom: 28px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(20, 68, 107, 0.12);
}

.kitchen-grid .team-block .animation {
  display: block;
  margin-bottom: 0 !important;
}

.kitchen-grid .team-block img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.kitchen-grid .team-block p {
  min-height: 132px;
  margin: 0;
  padding: 1.35rem 1.1rem;
  color: #fff !important;
  background: #14446b;
  font-weight: 700;
}

.kitchen-grid .col-md-6:nth-child(2) .team-block p {
  background: #559746;
}

.kitchen-grid .col-md-6:nth-child(3) .team-block p {
  background: #f47b20;
}

.campaign-support-band {
  padding: 2.6rem 2rem;
  background: linear-gradient(135deg, #559746 0%, #14446b 100%);
  color: #fff;
}

.campaign-support-band .section-heading {
  color: #fff !important;
}

.campaign-support-band .section-heading:after {
  background: #ffc20e !important;
}

.campaign-support-band p {
  max-width: 820px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.08rem;
}

#fscontent .lead.my-md {
  max-width: 760px;
  margin-left: auto !important;
  margin-right: auto !important;
  padding: 1.4rem 2rem;
  background: rgba(244, 123, 32, 0.1);
  color: #14446b;
  font-weight: 800;
}

@media (max-width: 767px) {
  .campaign-brand {
    padding: 2.2rem 1.2rem 2rem;
  }

  .campaign-brand:before,
  .campaign-brand:after {
    width: 70px;
  }

  .campaign-brand h1 {
    font-size: 2.15rem;
  }

  .campaign-mission-panel .section-title,
  .campaign-goal-panel {
    padding: 2rem 1.25rem;
  }

  .campaign-challenge-panel {
    padding: 1.5rem;
  }

  .campaign-challenge-panel .section-title {
    text-align: left !important;
  }
}

/* Full-width campaign sections */
#fscontent > .container {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.campaign-brand,
.campaign-media-grid,
.impact-grid,
.kitchen-grid,
#fscontent .campaign-section-heading,
#fscontent .section-title.my-md,
#fscontent .lead.my-md,
#fscontent > .container > .row:not(.impact-grid):not(.kitchen-grid) {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.campaign-brand,
.campaign-media-card,
.campaign-mission-panel .row,
.campaign-challenge-panel .row,
.campaign-goal-panel,
.campaign-goal-panel img,
.kitchen-grid .team-block,
.campaign-support-band,
#fscontent .lead.my-md {
  border-radius: 9px;
}

.campaign-media-card,
.kitchen-grid .team-block {
  overflow: hidden;
}

.campaign-mission-panel,
.campaign-challenge-panel,
.campaign-support-band {
  width: calc(100% - 30px);
  max-width: none;
  margin-left: 15px;
  margin-right: 15px;
}

.campaign-mission-panel {
  box-shadow: none;
}

.campaign-mission-panel .row,
.campaign-challenge-panel .row {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.campaign-mission-panel .row {
  overflow: hidden;
  box-shadow: 0 26px 70px rgba(20, 68, 107, 0.18);
}

.campaign-challenge-panel {
  padding-left: 0;
  padding-right: 0;
}

.campaign-challenge-panel .row {
  padding-left: 2.2rem;
  padding-right: 2.2rem;
}

.campaign-goal-panel {
  width: calc(100% - 30px);
  max-width: none;
  margin-left: 15px;
  margin-right: 15px;
}

.campaign-goal-panel > * {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.campaign-goal-panel > p {
  max-width: 840px;
}

.campaign-goal-panel .campaign-thermometer {
  max-width: 520px;
}

.campaign-support-band > * {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 767px) {
  .campaign-mission-panel,
  .campaign-challenge-panel,
  .campaign-goal-panel,
  .campaign-support-band {
    width: calc(100% - 20px);
    margin-left: 10px;
    margin-right: 10px;
  }

  .campaign-challenge-panel .row {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

/* Subtle morphism layer */
#fscontent.light-bg {
  background:
    radial-gradient(circle at 8% 12%, rgba(244, 123, 32, 0.12), transparent 28%),
    radial-gradient(circle at 92% 22%, rgba(85, 151, 70, 0.12), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f7faf6 36%, #ffffff 100%);
}

.campaign-brand,
.campaign-media-card,
.impact-grid .feature-block,
.kitchen-grid .team-block,
#fscontent .lead.my-md {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.campaign-brand {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 28px 80px rgba(20, 68, 107, 0.14);
}

.campaign-media-card,
.impact-grid .feature-block,
.kitchen-grid .team-block {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    0 24px 64px rgba(20, 68, 107, 0.14);
}

.campaign-media-content {
  background: rgba(255, 255, 255, 0.9);
}

.campaign-video-card .campaign-media-content,
.campaign-goal-panel,
.campaign-mission-panel,
.campaign-support-band {
  background:
    linear-gradient(135deg, rgba(20, 68, 107, 0.94), rgba(13, 48, 77, 0.9));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.campaign-challenge-panel {
  background:
    linear-gradient(135deg, rgba(244, 123, 32, 0.94), rgba(246, 170, 28, 0.9));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.campaign-thermometer {
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    inset 0 -8px 0 #f47b20,
    0 16px 42px rgba(0, 0, 0, 0.18);
}

.thermometer-track {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.14);
}

.campaign-play {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.42),
    0 16px 36px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.campaign-play i {
  display: none;
}

.campaign-play:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-left: 6px;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 24px solid #fff;
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.22));
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .campaign-brand,
  .campaign-media-card,
  .impact-grid .feature-block,
  .kitchen-grid .team-block,
  #fscontent .lead.my-md {
    background: #fff;
  }
}

/* Scroll stability and radius fixes */
.campaign-media-card:hover {
  transform: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    0 12px 28px rgba(20, 68, 107, 0.12);
}

.campaign-brand,
.campaign-media-card,
.impact-grid .feature-block,
.kitchen-grid .team-block {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    0 12px 28px rgba(20, 68, 107, 0.12);
}

.campaign-mission-panel .row {
  box-shadow: 0 12px 28px rgba(20, 68, 107, 0.12);
}

.campaign-goal-panel img,
.campaign-challenge-panel img,
.campaign-challenge-panel .animation,
.campaign-challenge-panel .feature-block {
  border-radius: 9px;
  overflow: hidden;
  box-shadow: none;
}

.campaign-thermometer {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    inset 0 -8px 0 #f47b20;
}

.campaign-play {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.42),
    0 8px 20px rgba(0, 0, 0, 0.2);
}

.campaign-challenge-panel,
.campaign-challenge-panel > .row,
.campaign-challenge-panel .animation,
.campaign-challenge-panel .animation:after,
.campaign-challenge-panel img {
  border-radius: 9px !important;
}

.campaign-challenge-panel,
.campaign-challenge-panel > .row,
.campaign-challenge-panel .animation {
  overflow: hidden;
}

/* Targeted visual fixes */
.impact-grid .feature-block {
  border-radius: 9px !important;
  overflow: unset;
  border: 1px solid rgba(244, 123, 32, 0.28);
  border-top: 7px solid #f47b20;
}

.impact-grid .col-md-6:nth-child(3n+2) .feature-block {
  border-color: rgba(84, 217, 54, 0.32);
  border-top-color: #54d936;
}

.impact-grid .col-md-6:nth-child(3n) .feature-block {
  border-color: rgba(19, 106, 177, 0.3);
  border-top-color: #136ab1;
}

.impact-grid .feature-block i {
  position: relative;
  width: 78px;
  height: 78px;
  margin-top: -3rem;
  border-radius: 9px;
  background: linear-gradient(135deg, #ffc20e 0%, #f47b20 100%);
  color: #fff !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    0 10px 22px rgba(244, 123, 32, 0.22);
}

.impact-grid .feature-block .impact-icon-plate {
  font-size: 0 !important;
}

.impact-grid .feature-block .impact-icon-plate:before {
  content: "";
  position: absolute;
  inset: 11px;
  background: #fff;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='black' stroke-width='2.35' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='32' cy='34' r='17.2'/%3E%3Ccircle cx='32' cy='34' r='9.1' stroke-width='1.9'/%3E%3Cpath d='M4.8 15.5v11.8'/%3E%3Cpath d='M8 15.5v11.8'/%3E%3Cpath d='M11.2 15.5v11.8'/%3E%3Cpath d='M4.8 27.3h6.4'/%3E%3Cpath d='M8 27.3v24'/%3E%3Cpath d='M54.5 51.3v-35.8c3.1 2.8 4.7 8.2 4.4 14.1-.3 4.2-1.7 7.2-4.4 8.6'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='black' stroke-width='2.35' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='32' cy='34' r='17.2'/%3E%3Ccircle cx='32' cy='34' r='9.1' stroke-width='1.9'/%3E%3Cpath d='M4.8 15.5v11.8'/%3E%3Cpath d='M8 15.5v11.8'/%3E%3Cpath d='M11.2 15.5v11.8'/%3E%3Cpath d='M4.8 27.3h6.4'/%3E%3Cpath d='M8 27.3v24'/%3E%3Cpath d='M54.5 51.3v-35.8c3.1 2.8 4.7 8.2 4.4 14.1-.3 4.2-1.7 7.2-4.4 8.6'/%3E%3C/svg%3E") center / contain no-repeat;
}

.impact-grid .feature-block i:after {
  content: "";
  position: absolute;
  right: -8px;
  bottom: -8px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #559746;
  border: 4px solid #fff;
}

.impact-grid .col-md-6:nth-child(3n+1) .feature-block i:after {
  background: #f47b20;
}

.impact-grid .col-md-6:nth-child(3n+2) .feature-block i:after {
  background: #54d936;
}

.impact-grid .col-md-6:nth-child(3n) .feature-block i:after {
  background: #136ab1;
}

.impact-grid .col-md-6:nth-child(3n) .feature-block i {
  background: linear-gradient(135deg, #136ab1 0%, #0d304d 100%);
}

.impact-grid .col-md-6:nth-child(3n+2) .feature-block i {
  background: linear-gradient(135deg, #54d936 0%, #3d7c34 100%);
}

.campaign-goal-panel .campaign-thermometer {
  max-width: 680px;
  margin-top: 2.6rem;
  padding: 1.35rem;
  border-radius: 9px;
  border: 2px solid rgba(255, 194, 14, 0.7);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.05)),
    #14446b;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 18px 42px rgba(0, 0, 0, 0.24);
}

.campaign-goal-panel .thermometer-track {
  height: 26px;
  border-radius: 9px;
  border: 2px solid rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.92);
}

.campaign-goal-panel .thermometer-fill {
  border-radius: 7px;
  background: linear-gradient(90deg, #559746 0%, #ffc20e 52%, #f47b20 100%);
  box-shadow: 0 0 18px rgba(255, 194, 14, 0.52);
}

.campaign-goal-panel .thermometer-copy {
  min-width: 150px;
}

.campaign-goal-panel .thermometer-copy span {
  color: #ffc20e;
}

.campaign-goal-panel .thermometer-copy strong {
  font-size: 1.8rem;
  line-height: 1;
}

.kitchen-grid .team-block p,
.kitchen-grid .team-block p[data-aos],
.kitchen-grid .team-block p.aos-init,
.kitchen-grid .team-block p.aos-animate {
  display: block !important;
  position: relative !important;
  transform: none !important;
  opacity: 1 !important;
  visibility: visible !important;
  height: auto !important;
  min-height: 0 !important;
  overflow: visible !important;
  z-index: 2;
}

.kitchen-grid .team-block {
  display: flex;
  flex-direction: column;
  height: auto !important;
  min-height: 100%;
}

.kitchen-grid .kitchen-link-card {
  color: inherit;
  text-decoration: none !important;
  transition: all 0.3s ease;
}

.kitchen-grid .kitchen-link-card:hover,
.kitchen-grid .kitchen-link-card:focus {
  color: inherit;
  text-decoration: none !important;
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(20, 68, 107, 0.16);
}

.kitchen-grid .team-block .animation,
.kitchen-grid .team-block .animation.aos-init,
.kitchen-grid .team-block .animation.aos-animate {
  display: block !important;
  flex: 0 0 auto;
  height: auto !important;
  min-height: 0 !important;
  line-height: 0;
  overflow: hidden;
}

.kitchen-grid .team-block .animation:after {
  height: 100%;
}

.kitchen-grid .team-block .animation img {
  display: block !important;
  visibility: visible;
  position: static;
}

.kitchen-grid .kitchen-image-wrap {
  position: relative;
  display: block;
  flex: 0 0 auto;
  line-height: 0;
  overflow: hidden;
  border-radius: 9px 9px 0 0;
}

.kitchen-grid .kitchen-learn-more {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0.85rem 1rem;
  color: #fff;
  background: rgba(244, 123, 32, 0.92);
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-transform: uppercase;
  transform: translateY(100%);
  transition: all 0.3s ease;
}

.kitchen-grid .kitchen-link-card:hover .kitchen-learn-more,
.kitchen-grid .kitchen-link-card:focus .kitchen-learn-more {
  transform: translateY(0);
}

.kitchen-grid .kitchen-image-wrap img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.kitchen-grid .team-block p {
  flex: 0 0 auto;
  width: 100%;
  color: #fff !important;
  background: #14446b;
  margin: 0 !important;
  padding: 1.35rem 1.1rem !important;
  line-height: 1.45 !important;
}

.campaign-mission-panel {
  border-radius: 9px !important;
  overflow: hidden;
  padding: 18px;
}

.campaign-mission-panel .row {
  border-radius: 9px !important;
}

.campaign-mission-panel .col-md-4 {
  padding: 18px !important;
}

.campaign-mission-panel .col-md-8 {
  padding-right: 18px !important;
}

.campaign-mission-panel .animation,
.campaign-mission-panel .animation:after,
.campaign-mission-panel img {
  border-radius: 9px !important;
  overflow: hidden;
}

.campaign-mission-panel .animation {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.campaign-mission-panel img {
  min-height: 244px;
}

/* Final campaign contact refinements */
.campaign-brand {
  max-width: 860px !important;
  padding: 2.2rem 1rem 1.8rem !important;
  overflow: visible !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.campaign-brand:before,
.campaign-brand:after {
  display: none !important;
}

.campaign-brand h1 {
  margin-bottom: 1rem;
  text-shadow: none !important;
}

.campaign-involved-panel {
  width: calc(100% - 30px);
  max-width: 1180px;
  margin: 2.8rem auto 2.2rem;
  padding: 3rem 2.2rem;
  border-radius: 9px;
  background:
    radial-gradient(circle at 10% 8%, rgba(255, 194, 14, 0.18), transparent 28%),
    linear-gradient(135deg, rgba(20, 68, 107, 0.96), rgba(13, 48, 77, 0.92));
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 12px 28px rgba(20, 68, 107, 0.12);
}

.campaign-involved-panel .section-title {
  margin-top: 0 !important;
}

.campaign-involved-panel .section-heading {
  color: #fff !important;
}

.campaign-involved-panel .section-heading:after {
  background: #ffc20e !important;
}

.campaign-involved-panel .section-title p {
  max-width: 760px;
  margin: 0 auto 2rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.05rem;
}

.campaign-naming-card {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  max-width: 860px;
  margin: 0 auto 2rem;
  padding: 1.25rem 1.4rem;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.campaign-naming-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
  border-radius: 9px;
  background: linear-gradient(135deg, #ffc20e 0%, #f47b20 100%);
  color: #14446b;
  font-size: 2rem;
}

.campaign-naming-card span {
  display: block;
  color: #ffc20e;
  font-size: 1.08rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.campaign-naming-card p {
  margin: 0.3rem 0 0;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}

.campaign-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.campaign-contact-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 112px;
  padding: 1.2rem;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.93);
  color: #14446b;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95), 0 10px 24px rgba(0, 0, 0, 0.08);
}

.campaign-contact-card i {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  border-radius: 9px;
  background: linear-gradient(135deg, #f47b20 0%, #ffc20e 100%);
  color: #fff;
  font-size: 1.9rem;
}

.campaign-contact-card:nth-child(2) i,
.campaign-contact-card:nth-child(5) i {
  background: linear-gradient(135deg, #54d936 0%, #3d7c34 100%);
}

.campaign-contact-card:nth-child(3) i,
.campaign-contact-card:nth-child(4) i {
  background: linear-gradient(135deg, #136ab1 0%, #0d304d 100%);
}

.campaign-contact-card p {
  margin: 0;
  line-height: 1.45;
}

.campaign-contact-card strong {
  display: block;
  margin-bottom: 0.2rem;
  color: #f47b20;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.campaign-contact-card a {
  color: #14446b;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.campaign-tax-card {
  grid-column: 1 / -1;
}

.campaign-contact-action {
  margin: 2rem 0 0;
}

.campaign-involved-panel .btn-outline {
  border-color: #ffc20e;
  color: #fff;
}

.campaign-involved-panel .btn-outline:hover,
.campaign-involved-panel .btn-outline:focus {
  background: #ffc20e;
  color: #14446b;
}

@media (max-width: 767px) {
  .campaign-involved-panel {
    width: calc(100% - 18px);
    padding: 2.1rem 1rem;
  }

  .campaign-naming-card,
  .campaign-contact-card {
    align-items: flex-start;
  }

  .campaign-contact-grid {
    grid-template-columns: 1fr;
  }
}

/* Client revision: campaign section order and content */
.campaign-brand + .campaign-goal-panel {
  margin-top: 2rem;
}

.campaign-goal-panel .campaign-thermometer {
  max-width: 860px;
}

.campaign-challenge-panel {
  max-width: 1100px;
  display: flex;
  flex-direction: column;
  padding: 2.4rem;
  background: linear-gradient(135deg, #14446b 0%, #0f314f 100%);
}

.campaign-challenge-panel .section-title {
  margin-bottom: 1.8rem;
}

.campaign-challenge-panel .section-heading:after {
  background: #ffc20e !important;
}

.meal-trend-graphic {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  gap: 18px;
  max-width: 900px;
  margin: 0 auto 1.8rem;
}

.meal-trend-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
}

.meal-trend-item img {
  display: block;
  width: min(100%, 150px);
  height: auto;
  box-shadow: none;
}

.campaign-challenge-panel > p {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.kitchen-grid {
  align-items: stretch;
}

.kitchen-grid .team-block {
  display: flex;
  flex-direction: column;
  height: calc(100% - 28px) !important;
}

.kitchen-grid .kitchen-image-wrap {
  aspect-ratio: 4 / 3;
}

.kitchen-grid .kitchen-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kitchen-grid .team-block p,
.kitchen-grid .team-block p[data-aos],
.kitchen-grid .team-block p.aos-init,
.kitchen-grid .team-block p.aos-animate {
  flex: 1 1 auto;
  display: flex !important;
  align-items: center;
  min-height: 142px !important;
  margin: 0 !important;
}

.campaign-mission-panel .section-title {
  padding: 2.2rem 2.4rem;
}

.campaign-mission-panel p {
  font-size: 1rem;
  line-height: 1.62;
}

.campaign-closing-tagline {
  color: #14446b;
  font-size: 1.15rem;
  font-weight: 800;
}

.campaign-logo-2 {
  max-width: 100%;
  height: auto;
}

@media (max-width: 767px) {
  .campaign-logo-2 {
    display: block;
    width: calc(100% - 30px);
    max-width: calc(100vw - 30px);
    margin-right: auto;
    margin-left: auto;
  }
}

.campaign-involved-panel .section-title p {
  margin-bottom: 1.2rem;
}

.campaign-involved-panel .campaign-contact-action {
  margin: 0 0 1.8rem;
}

.campaign-involved-intro {
  max-width: 720px;
  margin: -0.6rem auto 1.5rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1rem;
  line-height: 1.58;
  text-align: center;
}

.campaign-contact-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 1.8rem;
}

.campaign-contact-card {
  min-height: 118px;
  align-items: center;
}

.campaign-contact-card p {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
}

.campaign-contact-card a {
  color: #14446b;
  text-decoration: none;
}

.campaign-contact-card a:hover,
.campaign-contact-card a:focus {
  color: #f47b20;
}

.campaign-naming-card {
  margin: 0 auto 1.4rem;
}

.campaign-newsletters {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 860px;
  margin: 0 auto 1.5rem;
  padding: 1rem 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  text-align: left;
}

.campaign-newsletters span {
  display: block;
  color: #fff;
  font-family: 'Dosis', Arial, Sans-serif;
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.2;
}

.campaign-newsletters p {
  margin: 0.18rem 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.9rem;
  line-height: 1.4;
}

.campaign-newsletters a {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 1rem;
  border: 1px solid rgba(255, 194, 14, 0.72);
  border-radius: 4px;
  color: #ffc20e !important;
  font-family: 'Dosis', Arial, Sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
}

.campaign-newsletters a:hover,
.campaign-newsletters a:focus {
  background: #ffc20e;
  color: #14446b !important;
}

.campaign-footer-contact {
  max-width: 980px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
  line-height: 1.65;
  text-align: center;
}

.campaign-footer-contact a {
  color: #fff !important;
  font-weight: 700;
}

.cookie-banner {
  position: fixed;
  right: auto;
  bottom: 18px;
  left: 50%;
  z-index: 1060;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: calc(100% - 36px);
  max-width: 920px;
  padding: 1rem 1.15rem;
  border: 1px solid rgba(255, 194, 14, 0.55);
  border-radius: 9px;
  background: rgba(20, 68, 107, 0.96);
  color: #fff;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-banner p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.45;
}

.cookie-banner-button {
  flex: 0 0 auto;
  min-height: 42px;
  padding: 0 1.1rem;
  border: 0;
  border-radius: 4px;
  background: #ffc20e;
  color: #14446b;
  font-weight: 900;
  cursor: pointer;
}

@media (max-width: 575px) {
  .cookie-banner {
    bottom: max(12px, env(safe-area-inset-bottom));
    width: calc(100% - 24px);
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 991px) {
  .meal-trend-graphic,
  .campaign-contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575px) {
  .meal-trend-graphic,
  .campaign-contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .meal-trend-item {
    min-height: auto;
  }
  .campaign-newsletters {
    align-items: stretch;
    flex-direction: column;
    text-align: center;
  }
  .campaign-newsletters a {
    justify-content: center;
    width: 100%;
  }
}

/* Blueprint media card and lightbox */
.campaign-media-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.campaign-mobile-blueprint {
  display: none;
}

.campaign-blueprint-trigger {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: #14446b;
  cursor: pointer;
}

.campaign-blueprint-trigger img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.campaign-blueprint-card .campaign-media-content {
  background: #0f314f;
}

.campaign-blueprint-card .campaign-media-content h3,
.campaign-blueprint-card .campaign-media-content p {
  color: #fff;
}

.brochure-modal .modal-dialog {
  max-width: min(1120px, calc(100vw - 32px));
}

.brochure-modal .modal-content {
  border-radius: 9px;
  background: #0f314f;
}

.brochure-modal .modal-body {
  padding: clamp(18px, 2.5vw, 34px);
}

.brochure-standalone-page {
  min-height: 100%;
  overflow-x: hidden;
  background: #0f314f;
}

.brochure-standalone {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: clamp(18px, 2.5vw, 34px);
}

.brochure-standalone .brochure-flipbook {
  width: min(1120px, 100%);
  min-height: min(860px, calc(100vh - 68px));
}

.brochure-standalone .brochure-page-shell {
  min-height: min(760px, calc(100vh - 230px));
}

.brochure-standalone .brochure-page {
  max-height: calc(100vh - 230px);
}

.brochure-flipbook {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: min(860px, calc(100vh - 90px));
}

.brochure-stage {
  position: relative;
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  justify-content: center;
  min-height: 0;
  padding: 0 clamp(46px, 5vw, 72px);
}

.brochure-page-shell {
  position: relative;
  width: fit-content;
  max-width: 100%;
  min-height: min(760px, calc(100vh - 250px));
  perspective: 1600px;
}

.brochure-page {
  display: none;
  width: auto;
  max-width: 100%;
  max-height: calc(100vh - 250px);
  margin: 0 auto;
  object-fit: contain;
  border-radius: 7px;
  background: transparent;
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.36);
  transform-origin: left center;
}

.brochure-page.is-active {
  display: block;
  animation: brochure-page-turn 0.36s ease both;
}

@keyframes brochure-page-turn {
  from {
    opacity: 0.35;
    transform: rotateY(-12deg) translateX(18px);
  }
  to {
    opacity: 1;
    transform: rotateY(0) translateX(0);
  }
}

.brochure-nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 2px solid rgba(255, 255, 255, 0.82);
  border-radius: 50%;
  background: rgba(20, 68, 107, 0.9);
  color: #fff;
  cursor: pointer;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}

.brochure-nav:hover,
.brochure-nav:focus {
  border-color: #ffc20e;
  background: #f47b20;
  color: #fff;
}

.brochure-nav i {
  font-size: 2rem;
  line-height: 1;
}

.brochure-prev {
  left: 0;
}

.brochure-next {
  right: 0;
}

.brochure-controls {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #fff;
}

.brochure-count {
  flex: 0 0 auto;
  font-weight: 800;
}

.brochure-thumbs {
  display: flex;
  flex: 1 1 auto;
  justify-content: flex-end;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 3px;
}

.brochure-thumbs button {
  flex: 0 0 auto;
  width: 48px;
  height: 64px;
  padding: 0;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 5px;
  background: #fff;
  cursor: pointer;
  opacity: 0.72;
  transition: all 0.3s ease;
}

.brochure-thumbs button:hover,
.brochure-thumbs button:focus,
.brochure-thumbs button.is-active {
  border-color: #ffc20e;
  opacity: 1;
}

.brochure-thumbs img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blueprint-modal .modal-dialog {
  max-width: min(1500px, calc(100vw - 32px));
}

.modal-open .modal.show.modal-center.blueprint-modal {
  align-items: flex-start !important;
  overflow-y: auto;
}

.blueprint-modal.show .modal-dialog {
  margin: 30px auto;
  transform: none !important;
}

.blueprint-modal .modal-content,
.blueprint-modal .modal-body {
  border-radius: 9px;
  background: #14446b;
}

.blueprint-modal .modal-content {
  overflow: visible;
}

.blueprint-modal .modal-body {
  overflow: visible;
}

.blueprint-modal .video-close {
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  right: -16px !important;
  top: -28px !important;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background: rgba(20, 68, 107, 0.96);
  color: #fff;
  opacity: 1 !important;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
}

.blueprint-modal .video-close i {
  display: block;
  color: #fff;
  line-height: 1;
}

.blueprint-board {
  display: grid;
  grid-template-columns: minmax(220px, 28%) minmax(0, 1fr);
  gap: 2.2vw;
  min-height: min(860px, calc(100vh - 80px));
  padding: 2.2vw;
  overflow: hidden;
  border-radius: 9px;
  background: #14446b url("../images/plan_bg_min.jpg") center / cover no-repeat;
}

.blueprint-sidebar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  min-width: 0;
}

.blueprint-preview {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 9px;
  background: transparent;
  cursor: pointer;
  filter: drop-shadow(0 14px 32px rgba(0, 0, 0, 0.18));
}

.blueprint-preview.is-active {
  border-color: #ffc20e;
}

.blueprint-preview > img {
  display: block;
  width: 100%;
  aspect-ratio: 13 / 7;
  object-fit: cover;
  border-radius: 9px;
}

.blueprint-preview span {
  position: absolute;
  right: 10px;
  bottom: 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 10px;
  border-radius: 7px;
  background: rgba(13, 48, 77, 0.88);
  color: #fff;
  font-weight: 800;
  line-height: 1;
}

.blueprint-preview span img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.blueprint-badge {
  display: block;
  width: min(100%, 340px);
  margin-top: 8px;
  border-radius: 9px;
  background: #fff;
  padding: 1rem;
}

.blueprint-plan-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.blueprint-plan-stage {
  position: relative;
  display: block;
  width: 100%;
  line-height: 0;
}

.blueprint-plan {
  display: block;
  width: 100%;
  height: auto;
  max-height: calc(100vh - 150px);
  object-fit: contain;
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.2));
}

.blueprint-old-kitchen-area {
  --old-kitchen-max-right: 94%;
  position: absolute;
  left: 7%;
  top: 39%;
  z-index: 2;
  width: 22%;
  height: 58.5%;
  border: 2px solid rgba(255, 194, 14, 0.95);
  background: rgba(255, 194, 14, 0.32);
  cursor: ew-resize;
  touch-action: none;
  user-select: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.blueprint-old-kitchen-area:focus {
  outline: 3px solid rgba(255, 255, 255, 0.85);
  outline-offset: 2px;
}

.blueprint-old-kitchen-area.is-dragging {
  background: rgba(255, 194, 14, 0.42);
}

@keyframes arrow-pulse {
  0%, 100% {
    opacity: 0.4;
    transform: translateX(0);
  }
  50% {
    opacity: 1;
    transform: translateX(3px);
  }
}

@keyframes arrow-pulse-left {
  0%, 100% {
    opacity: 0.4;
    transform: translateX(0);
  }
  50% {
    opacity: 1;
    transform: translateX(-3px);
  }
}

.blueprint-old-kitchen-area span {
  position: absolute;
  left: 50%;
  top: 52%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(92%, 290px);
  padding: 0.8rem 1rem;
  border-radius: 4px;
  background: rgba(255, 194, 14, 0.96);
  color: #14446b;
  font-size: clamp(0.72rem, 1vw, 1rem);
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
  transform: translate(-50%, -50%);
  cursor: grab;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(255, 194, 14, 0.3);
  gap: 0.5rem;
}

.blueprint-old-kitchen-area span::before {
  content: "←";
  font-size: 1.2em;
  font-weight: bold;
  animation: arrow-pulse-left 1.5s ease-in-out infinite;
  flex-shrink: 0;
}

.blueprint-old-kitchen-area span::after {
  content: "→";
  font-size: 1.2em;
  font-weight: bold;
  animation: arrow-pulse 1.5s ease-in-out infinite;
  flex-shrink: 0;
}

.blueprint-old-kitchen-area span:hover {
  cursor: grab;
  background: rgba(255, 194, 14, 1);
  box-shadow: 0 6px 20px rgba(255, 194, 14, 0.5), inset 0 0 0 1px rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
}

.blueprint-old-kitchen-area span:hover::before,
.blueprint-old-kitchen-area span:hover::after {
  animation-duration: 0.8s;
}

.blueprint-old-kitchen-area.is-dragging span {
  cursor: grabbing;
  background: rgba(255, 194, 14, 0.9);
  box-shadow: 0 8px 24px rgba(255, 194, 14, 0.6);
  transform: translate(-50%, -50%);
}

.blueprint-old-kitchen-area.is-dragging span::before,
.blueprint-old-kitchen-area.is-dragging span::after {
  animation-duration: 0.5s;
}

.blueprint-hotspot {
  position: absolute;
  z-index: 3;
  width: clamp(48px, 5vw, 82px);
  height: clamp(48px, 5vw, 82px);
  padding: 0;
  border: 3px solid rgba(255, 255, 255, 0.85);
  border-radius: 9px;
  background: transparent;
  cursor: pointer;
  transform: translate(-50%, -50%);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.blueprint-hotspot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.blueprint-hotspot.is-active,
.blueprint-hotspot:hover,
.blueprint-hotspot:focus {
  border-color: #ffc20e;
  box-shadow: 0 0 0 5px rgba(255, 194, 14, 0.26), 0 14px 30px rgba(0, 0, 0, 0.28);
}

.blueprint-hotspot-kitchen {
  left: 64%;
  top: 55%;
}

.blueprint-hotspot-dining {
  left: 15.75%;
  top: 90.75%;
}

.blueprint-hotspot-street {
  left: 84%;
  top: 98%;
}

.blueprint-hotspot-tooltip {
  display: none;
}

@media (max-width: 991px) {
  .campaign-media-grid-three {
    grid-template-columns: 1fr;
  }

  .brochure-controls {
    align-items: flex-start;
    flex-direction: column;
  }

  .brochure-thumbs {
    width: 100%;
    justify-content: flex-start;
  }

  .blueprint-board {
    grid-template-columns: 1fr;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
    padding: 1.2rem;
  }

  .blueprint-sidebar {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .blueprint-badge {
    grid-column: 1 / -1;
    justify-self: center;
  }
}

@media (max-width: 575px) {
  .brochure-stage {
    padding: 0 38px;
  }

  .brochure-nav {
    width: 38px;
    height: 38px;
  }

  .brochure-page-shell {
    min-height: 0;
  }

  .blueprint-sidebar {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .campaign-blueprint-card-desktop {
    display: none;
  }

  .campaign-mobile-blueprint {
    display: block;
    margin: 1.5rem 15px 3rem;
  }

  .kitchen-grid > [class*="col-"] {
    margin-bottom: 1.5rem;
  }

  .campaign-contact-card {
    min-height: 118px;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .blueprint-board {
    display: block;
    min-height: 0;
    padding: 2rem 1rem;
    border-radius: 9px;
  }

  .blueprint-sidebar {
    display: none;
  }

  .blueprint-plan-wrap {
    display: block;
  }

  .blueprint-plan {
    max-height: calc(100vh - 120px);
  }

  .blueprint-hotspot {
    width: 46px;
    height: 46px;
    border-width: 2px;
  }

  .blueprint-old-kitchen-area {
    --old-kitchen-min-left: 11px;
    --old-kitchen-max-left: 284px;
  }

  .blueprint-old-kitchen-area span {
    padding: 0.35rem 0.45rem;
    font-size: 0.5rem;
    gap: 0.3rem;
  }

  .blueprint-old-kitchen-area span::before,
  .blueprint-old-kitchen-area span::after {
    font-size: 0.8em;
  }

  .blueprint-hotspot-tooltip {
    position: absolute;
    left: clamp(130px, var(--tooltip-left, 50%), calc(100% - 130px));
    top: var(--tooltip-top, 50%);
    z-index: 5;
    display: none;
    width: min(68vw, 260px);
    overflow: hidden;
    border: 2px solid #ffc20e;
    border-radius: 9px;
    background: #14446b;
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.34);
    transform: translate(-50%, calc(46px + 10px));
  }

  .blueprint-hotspot-tooltip.is-visible {
    display: block;
  }

  .blueprint-hotspot-tooltip.is-above {
    transform: translate(-50%, calc(-100% - 12px));
  }

  .blueprint-hotspot-tooltip.is-below {
    transform: translate(-50%, calc(46px + 26px));
  }

  .blueprint-hotspot-tooltip img {
    display: block;
    width: 100%;
    max-height: 34vh;
    aspect-ratio: 13 / 7;
    object-fit: cover;
  }

  .blueprint-hotspot-tooltip span {
    display: block;
    padding: 0.65rem 0.8rem;
    color: #fff;
    font-size: 0.86rem;
    font-weight: 800;
    line-height: 1.1;
  }

  .blueprint-tooltip-close {
    position: absolute;
    top: 6px;
    right: 6px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.78);
    border-radius: 50%;
    background: rgba(20, 68, 107, 0.88);
    color: #fff;
    cursor: pointer;
  }

  .blueprint-tooltip-close i {
    display: block;
    font-size: 1.4rem;
    line-height: 1;
  }

  .modal-open .modal.show.modal-center.blueprint-modal {
    align-items: center !important;
  }

  .blueprint-modal .video-close {
    right: -10px !important;
    top: -24px !important;
  }

  .blueprint-modal.show .modal-dialog {
    margin: 0.75rem auto;
  }
}

/* Media card polish */
.campaign-media-card {
  height: 100%;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.campaign-video-card,
.campaign-blueprint-card {
  background: #14446b;
}

.campaign-media-card:hover {
  transform: translateY(-6px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88), 0 22px 46px rgba(20, 68, 107, 0.18);
}

.campaign-media-content {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
}

.campaign-media-content p {
  flex: 1 1 auto;
}

.campaign-share {
  margin-top: auto;
}

.campaign-video-card .campaign-media-content,
.campaign-blueprint-card .campaign-media-content {
  background: #14446b;
}

.campaign-play,
.campaign-zoom {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 78px;
  height: 78px;
  margin-top: -39px;
  margin-left: -39px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  border-radius: 50%;
  background: rgba(244, 123, 32, 0.92);
  color: #fff;
  font-size: 3.2rem;
  z-index: 2;
  transition: background 0.3s ease, transform 0.3s ease;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.42), 0 8px 20px rgba(0, 0, 0, 0.2);
}

.campaign-zoom {
  font-size: 2.5rem;
}

.campaign-zoom i {
  display: block;
  line-height: 1;
}

.campaign-media-card:hover .campaign-play,
.campaign-video-trigger:focus .campaign-play,
.campaign-media-card:hover .campaign-zoom,
.flipbook-preview:focus-within .campaign-zoom,
.campaign-blueprint-trigger:focus .campaign-zoom {
  background: rgba(255, 194, 14, 0.96);
  color: #14446b;
  transform: scale(1.04);
}

.campaign-blueprint-trigger,
.flipbook-preview {
  position: relative;
}

.campaign-mission-panel {
  background: linear-gradient(135deg, rgba(85, 151, 70, 0.96), rgba(61, 124, 52, 0.92)) !important;
}

.campaign-mission-panel .row {
  background: transparent !important;
  box-shadow: none !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.campaign-media-grid-three .campaign-play,
.campaign-media-grid-three .campaign-zoom {
  width: 68px;
  height: 68px;
  margin-top: -34px;
  margin-left: -34px;
  border-width: 4px;
  font-weight: 900;
}

.campaign-media-grid-three .campaign-play:before {
  border-top-width: 15px;
  border-bottom-width: 15px;
  border-left-width: 24px;
  filter: drop-shadow(0 1px 0 #fff) drop-shadow(0 2px 2px rgba(0, 0, 0, 0.22));
}

.campaign-media-grid-three .campaign-zoom i {
  -webkit-text-stroke: 1.4px currentColor;
  text-shadow: 0.7px 0 currentColor, -0.7px 0 currentColor, 0 0.7px currentColor, 0 -0.7px currentColor;
}

/*# sourceMappingURL=style.css.map */
