/*header css*/
.nav_toggle_wrap {
    display: flex;
    align-items: center;
}

/* Desktop */
.menu-toggle {
    display: none;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 0;
    cursor: pointer;
    padding: 0;
    position: relative;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: #000;
    margin: 5px auto;
    transition: all .3s ease;
}

.primary-menu {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}
/*header css end*/

/* Active panel */
.challenges-section .panel-content.active {
    display: block;
}

/* Active tab */
.challenges-section .tab-label.active {
    color: #fff;
    background: #1e254c; /* Change to your active color */
}


.accordion-header {
    cursor: pointer;
}

.accordion-answer{
    max-height:0;
    overflow:hidden;
    opacity:0;
    transition:
        max-height .45s ease,
        opacity .35s ease,
        padding .35s ease;
    padding-top:0;
}

.accordion-item.active .accordion-answer{
    opacity:1;
    padding-top:15px;
}

.solutions-section .kitchen-slider, .results-section .results-grid {
    width: 100%;
    overflow: hidden;
}


/* mobile responsive start here for toogle navigation */

/* Mobile */
@media (max-width: 991px) {

	.header-inner {
		display: flex;
		flex-direction: row;
		justify-content: space-between;
	}
	
    .menu-toggle {
        display: block;
    }

    .primary-navigation {
        position: fixed;
        top: 0;
        right: -390px;
        width: 320px;
        height: 100dvh;
        background: #fff;
        transition: right .3s ease;
        z-index: 1000;
        padding: 80px 25px 30px;
        overflow-y: auto;
        box-shadow: -5px 0 15px rgba(0, 0, 0, .15);
    }

    .primary-navigation.active {
        right: 0;
    }

    .primary-menu {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

    .primary-menu li {
        width: 100%;
    }

    .primary-menu a {
        display: block;
        width: 100%;
        padding: 10px 0;
    }

    body.menu-open {
        overflow: hidden;
    }

    /* Hamburger Animation */

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

}
/* mobile responsive end here for toogle navigation */


/*inner pages css by dev*/

/*govrenment and public sector*/
video.video-js.video-720-500 {
    width: 100%;
    height: 100%;
}
/*govrenment and public sector*/


/* ------------Institutional Dining Style----------------- */
.mfx-colleges-hero-section {
  position: relative;
  background: #202550;
  min-height: 700px;
  display: flex;
  align-items: center;
  padding: 110px 0 80px;
}

.mfx-colleges-hero-inner {
  text-align: center;
}

.mfx-colleges-hero-inner h1 {
  color: #ffffff;
  font-size: 68px;
  font-weight: 700;
  letter-spacing: 0;
}

.mfx-colleges-hero-inner h1 span {
  color: #FC0;
}

.mfx-colleges-hero-inner p {
  max-width: 1150px;
  margin: 0 auto 50px;
  color: #fff;
}

.mfx-colleges-hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.mfx-colleges-challenge-section {
    padding: 80px 0;
}
.mfx-colleges-two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding-bottom: 60px;
}
.mfx-colleges-challenge-content p {
    margin-bottom: 15px;
}
.mfx-colleges-challenge-content p:last-child {
    margin-bottom:0;
}
.mfx-colleges-challenge-intro {
  margin-bottom: 44px;
}

.mfx-colleges-media-card {
  overflow: hidden;
  border-radius: 15px;
}

.mfx-colleges-challenge-photo {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.mfx-colleges-challenge-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mfx-colleges-challenge-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.mfx-colleges-challenge-card {
    min-height: 250px;
    padding: 32px 24px;
    text-align: center;
    border: 1px solid #F2E8C0;
    border-radius: 30px;
    transition: all 0.2s ease-in-out;
}
.mfx-colleges-challenge-card:hover {
   background-color: #FFFBE9;
   border: 1px solid #FFCC00;
   box-shadow: 0px 8px 18px 0px #00000026;
}

.mfx-colleges-challenge-card h3 {
    margin: 25px 0 10px;
    font-size: 24px;
    font-weight: 600;
}

.mfx-colleges-challenge-card p {
    margin: 0;
    font-size: 16px;
    color: #000;
}

.mfx-colleges-icon-circle,
.mfx-colleges-icon-solid,
.mfx-colleges-icon-soft {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 50%;
}

.mfx-colleges-icon-circle {
    width: 80px;
    height: 80px;
    background: #FFFBE9;
    color: #FFCC00;
    font-size: 40px;
    transition: all 0.2s ease-in-out;
}
.mfx-colleges-icon-circle img {
    width: 40px;
    height: 40px;
}
.mfx-colleges-challenge-card-featured .mfx-colleges-icon-circle {
  background: #ffc900;
  color: #ffffff;
}
.mfx-colleges-challenge-card:hover .mfx-colleges-icon-circle {
  background-color: #FFCC00;
  color: #fff;
}
.mfx-colleges-challenge-card:hover .mfx-colleges-icon-circle img {
    filter: brightness(0) invert(1);
}
.mfx-colleges-section-heading {
  max-width: 880px;
  margin: 0 auto 44px;
}

.mfx-colleges-section-heading.mfx-colleges-centered {
  text-align: center;
}

.mfx-colleges-section-heading p {
  margin-right: auto;
  margin-left: auto;
}

.mfx-colleges-light-heading h2 {
  color: #ffffff;
}

.mfx-colleges-light-heading p {
  color: rgba(255, 255, 255, 0.72);
}

.mfx-colleges-compact-heading {
    text-align: center;
    margin-bottom: 50px;
}
.mfx-colleges-compact-heading h2 {
  color: #fff;
}
.mfx-colleges-compact-heading p {
    color: #fff;
    max-width: 1090px;
    margin: 0 auto;
}
.mfx-colleges-platform-section {
    background-color: #FFFBE9;
    padding: 80px 0;
}
.mfx-colleges-platform-heading {
    max-width: 1313px;
    margin: 0 auto 60px;
	 text-align: center;
}
.mfx-colleges-platform-heading p {
    text-align: center;
    margin-bottom: 15px;
}
.mfx-colleges-platform-heading p:last-child {
    margin-bottom: 0;
}
.mfx-colleges-platform-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 1450px;
  margin: 0 auto;

}

.mfx-colleges-platform-card {
    min-height: 228px;
    padding: 32px;
    border: 1px solid #CDB892;
    border-radius: 20px;
    background: #ffffff;
}

.mfx-colleges-platform-title-row {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}

.mfx-colleges-icon-solid {
    width: 80px;
    height: 80px;
    background: #FFCC00;
    color: #ffffff;
    font-size: 40px;
}

.mfx-colleges-platform-title-row > div:last-child {
    width: 100%;
    padding: 20px;
    border-radius: 20px;
    background: #FFFBE9;
}

.mfx-colleges-platform-title-row h3 {
    margin-bottom: 8px;
    font-size: 22px;
    font-weight: 600;
}

.mfx-colleges-platform-title-row p {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
    color: #202550;
}

.mfx-colleges-platform-card h4 {
    position: relative;
    margin: 30px 0 16px;
    color: #FFCC00;
    font-size: 18px;
    font-weight: 800;
}
.mfx-colleges-platform-card h4:after {
    content: '';
    width: calc(100% - 100px);
    height: 1px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='550' height='1' viewBox='0 0 550 1' fill='none'%3E%3Cpath d='M0 0.5H550' stroke='url(%23paint0_linear_1125_1138)'/%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_1125_1138' x1='0' y1='1' x2='550' y2='1' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23FFCC00'/%3E%3Cstop offset='1' stop-color='%23FFCC00' stop-opacity='0'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E");
    position: absolute;
    top: 50%;
    right: 15px;
}
.mfx-colleges-benefit-row {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    color: #000000;
    font-size: 16px;
}
.mfx-colleges-benefit-row span {
    position: relative;
    padding-left: 32px;
}
.mfx-colleges-benefit-row span:before {
    content: '';
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 22 22' fill='none'%3E%3Cpath d='M15.2551 8.11728L9.48978 13.8826L6.74524 11.1381' stroke='%23FFCC00' stroke-width='1.46667' stroke-miterlimit='10' stroke-linecap='round' stroke-linejoin='round'/%3E%3Ccircle cx='11' cy='11' r='10.1406' stroke='%23FFCC00' stroke-width='1.46667'/%3E%3C/svg%3E");
    width: 22px;
    height: 22px;
    position: absolute;
    left: 0;
}
.mfx-colleges-environment-section.results-section {
    background-color: #202550;
}
.mfx-colleges-environment-heading.results-header {
   max-width:1020px;
   margin:0 auto 50px;
}
.mfx-colleges-environment-section.results-section .result-grid-without {
    display: grid;
    grid-template-columns: repeat(2, minmax(320px, 490px));
    gap: 30px;
    justify-content: center;
    overflow: visible;
}
.mfx-colleges-environment-heading.results-header h2, .mfx-colleges-environment-heading.results-header p {
    color: #fff;
}
.mfx-colleges-forecast-section {
    padding: 80px 0;
}
.mfx-colleges-forecast-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}
.mfx-colleges-metric-banner, .mfx-colleges-metric-split > div {
    border-radius: 15px;
    background: #FFFBE9;
    color: #000000;
}

.mfx-colleges-metric-banner {
    display: flex;
    align-items: center;
    padding: 16px 12px;
    font-size: 16px;
}

.mfx-colleges-metric-banner span, .mfx-colleges-metric-split span {
    margin-right: 16px;
    color: #f6c200;
    background-color: #FEEECD;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    width: 40px;
    min-height: 40px;
    height: 40px;
    border-radius: 100px;
}

.mfx-colleges-metric-banner strong, .mfx-colleges-metric-split strong {
    margin-right: 5px;
    font-size: 22px;
    color: #202550;
}

.mfx-colleges-metric-banner.mfx-colleges-small {
  margin-top: 10px;
}
.mfx-colleges-metric-View {
    display: flex;
    align-items: center;
    gap: 2px;
    font-size: 16px;
    font-weight: 500;
    color: #00000066;
    text-decoration: none;
    margin-top: 30px;
}
.mfx-colleges-metric-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 10px;
}

.mfx-colleges-metric-split > div {
    display: flex;
    align-items: center;
    padding: 16px 12px;
    font-size: 16px;
    line-height: 1.5;
}

.mfx-colleges-image-copy-layout,
.mfx-colleges-copy-image-layout {
  gap: 76px;
}

.mfx-colleges-dashboard-frame {
  overflow: hidden;
  border-radius: 12px;
  background: #ffffff;
}

.mfx-colleges-dashboard-frame img {
  width: 100%;
  border-radius: 7px;
}
.mfx-colleges-forecast-content p {
    margin-bottom: 15px;
}
.mfx-colleges-forecast-content p:last-child {
    margin-bottom: 0;
}
.mfx-colleges-pill-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
  margin-top: 30px;
}

.mfx-colleges-info-pill {
    position: relative;
    min-height: 42px;
    display: flex;
    padding: 10px 25px 10px 55px;
    border-radius: 16px;
    border: 1px solid #F2E8C0;
    background: #FFFBE9;
    color: #000000;
    font-size: 18px;
    line-height: 1.5;
    font-weight: 500;
}
.mfx-colleges-info-pill:before {
    content: '';
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 22 22' fill='none'%3E%3Cpath d='M15.2551 8.11728L9.48978 13.8826L6.74524 11.1381' stroke='%23FFCC00' stroke-width='1.46667' stroke-miterlimit='10' stroke-linecap='round' stroke-linejoin='round'/%3E%3Ccircle cx='11' cy='11' r='10.1406' stroke='%23FFCC00' stroke-width='1.46667'/%3E%3C/svg%3E");
    width: 22px;
    height: 22px;
    position: absolute;
	top:14px;
    left: 22px;
}
.mfx-colleges-visibility-section {
    background-color: #FFFBE9;
    padding: 80px 0;
}
.mfx-colleges-visibility-main-grid {
    display: grid;
    grid-template-columns: 730px 490px;
    gap: 80px;
    justify-content: space-between;
}
.mfx-colleges-visibility-header p {
    margin-bottom: 15px;
}
.mfx-colleges-visibility-header p:last-child {
    margin-bottom: 0;
}
.mfx-colleges-visibility-section h3 {
  margin: 18px 0 8px;
  font-size: 16px;
}

.mfx-colleges-visibility-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}

.mfx-colleges-mini-card {
    min-height: 92px;
    padding: 20px 30px;
    border: 1px solid #CDB892;
    border-radius: 20px;
    background: #ffffff;
}

.mfx-colleges-mini-card strong {
    display: block;
    margin-bottom: 8px;
    color: #202550;
    font-size: 20px;
    font-weight: 600;
}

.mfx-colleges-mini-card span {
    display: block;
    color: #000000;
    font-size: 16px;
    line-height: 1.5;
}

.mfx-colleges-location-dashboard img {
  width: 100%;
  object-fit:cover;	
  border-radius: 20px;
  box-shadow: 0 14px 34px rgba(32, 37, 80, 0.1);	
}

.mfx-colleges-sustainability-section {
  padding: 80px 0;
}
.mfx-colleges-sustainability-heading {
    text-align: center;
    margin-bottom: 50px;
}
.mfx-colleges-sustainability-heading p {
    margin-bottom: 15px;
}
.mfx-colleges-sustainability-heading p:last-child {
    margin-bottom: 0;
}
.mfx-colleges-sustainability-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px ;
  max-width: 1300px;
  margin: 0 auto;
}

.mfx-colleges-sustainability-item {
    min-height: 100px;
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 20px;
    padding: 20px 30px;
    border: 1px solid #F2E8C0;
    border-radius: 20px;
    background: #fff;
}
.mfx-colleges-icon-soft {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    background: #fff8db;
    color: #f4c300;
    font-size: 50px;
}

.mfx-colleges-sustainability-item h3 {
    margin-bottom: 10px;
    font-size: 22px;
    font-weight: 600;
}

.mfx-colleges-sustainability-item p {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  color: #000;
}

.mfx-colleges-impact-section {
  padding: 80px 0;
  background-color: #202550;
}

.mfx-colleges-impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.mfx-colleges-impact-card {
    min-height: 190px;
    padding: 30px 24px;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid #0000001A;
    transition: all 0.2s ease-in-out;
}
.mfx-colleges-impact-card:hover {
    background: #FFFBE9;
    box-shadow: 0px 12px 24px 0px #0000001A;
}
.mfx-colleges-impact-card .mfx-colleges-icon-soft {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    font-size: 30px;
}

.mfx-colleges-small-icon {
  background: #FFFBE9;
  transition: all 0.2s ease-in-out;
}
.mfx-colleges-impact-card:hover .mfx-colleges-small-icon {
    background: #FFCC00;
    color: #fff;
}
.mfx-colleges-impact-card:hover .mfx-colleges-small-icon img {
    filter: brightness(0) invert(1);
}
.mfx-colleges-impact-card h3 {
    margin: 16px 0 8px;
    font-size: 24px;
    font-weight: 600;
}

.mfx-colleges-impact-card p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: #000;
}


.mfx-colleges-operations-section {
  padding: 80px 0;
  padding-bottom:0;	
}
.mfx-colleges-operations-heading {
    text-align: center;
    max-width: 1260px;
    margin: 0 auto 60px;
}
.mfx-colleges-operations-heading p {
    margin-bottom: 15px;
}
.mfx-colleges-operations-heading p:last-child{
  margin-bottom: 0;
}
.mfx-colleges-operations-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: stretch;
}

.mfx-colleges-comparison-card {
  overflow: hidden;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(32, 37, 80, 0.12);
}

.mfx-colleges-comparison-head,
.mfx-colleges-comparison-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.mfx-colleges-comparison-head > div {
    padding: 20px;
    text-align: center;
    color: #202550;
    font-size: 18px;
    font-weight: 600;
}

.mfx-colleges-comparison-head > div:first-child {
    background: #ffe16b;
}

.mfx-colleges-comparison-head > div:last-child {
  background: #fff2bd;
}

.mfx-colleges-comparison-row {
  border-top: 1px solid #ece9dc;
}

.mfx-colleges-comparison-row span {
    position: relative;
    min-height: 58px;
    display: flex;
    padding: 24px 24px 24px 55px;
    color: #202550;
    font-size: 16px;
    font-weight: 600;
}
.mfx-colleges-comparison-row span:before {
    content: '';
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 22 22' fill='none'%3E%3Cpath d='M15.2551 8.11728L9.48978 13.8826L6.74524 11.1381' stroke='%23FFCC00' stroke-width='1.46667' stroke-miterlimit='10' stroke-linecap='round' stroke-linejoin='round'/%3E%3Ccircle cx='11' cy='11' r='10.1406' stroke='%23FFCC00' stroke-width='1.46667'/%3E%3C/svg%3E");
    width: 22px;
    height: 22px;
    position: absolute;
    left: 15px;
}
.mfx-colleges-comparison-row span + span {
  border-left: 1px solid #ece9dc;
}

.mfx-colleges-video-placeholder {
    min-height: 342px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #202550;
    box-shadow: inset 0 -2px 0 #d4ad00;
    overflow: hidden;
}
.mfx-colleges-video-placeholder iframe {
    width: 100%;
    height: 100%;
}
.mfx-colleges-play-ring {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 4px;
  border: 2px solid #000;
  background-color: #000;
  border-radius: 50%;
  color: #ffffff;
  font-size: 22px;
}

.mfx-colleges-cta-shell {
  padding: 0 0 70px;
  background: #ffffff;
}

.mfx-colleges-final-cta {
  position: relative;
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 12px;
  background:
    linear-gradient(rgba(32, 37, 80, 0.88), rgba(32, 37, 80, 0.88)),
    url("assets/challenge.jpg") center 48% / cover no-repeat;
}

.mfx-colleges-final-cta-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 38px;
  text-align: center;
}

.mfx-colleges-final-cta-content h2 {
  margin-bottom: 12px;
  color: #ffffff;
  font-size: 28px;
}

.mfx-colleges-final-cta-content p {
  max-width: 720px;
  margin: 0 auto 22px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}
@media (max-width: 1699px) {
	.mfx-colleges-visibility-main-grid {
    grid-template-columns: 1fr 1fr;
}
	.mfx-colleges-two-column,.mfx-colleges-visibility-main-grid,.mfx-colleges-forecast-grid {
    gap: 60px;
}
.mfx-colleges-hero-section {
    padding: 110px 24px 60px;
}	
.mfx-colleges-challenge-section,.mfx-colleges-platform-section,.mfx-colleges-forecast-section,
.mfx-colleges-visibility-section,.mfx-colleges-sustainability-section,.mfx-colleges-impact-section,.mfx-colleges-operations-section {
    padding: 60px 0;
}	
	.mfx-colleges-operations-section  {
		padding-bottom:0;
	}	
.mfx-colleges-environment-section.results-section {
    padding: 60px 0px !important;
}	
.mfx-colleges-two-column {
    padding-bottom: 40px;
}
.mfx-colleges-info-pill {
    font-size: 16px;
}	
}
@media (max-width: 1399px) {
.mfx-colleges-hero-inner h1 {
    font-size: 50px;
	line-height: 1.15;
}
.mfx-colleges-challenge-grid {
    gap: 20px;
}	
.mfx-colleges-platform-title-row {
    gap: 16px;
}
.mfx-colleges-sustainability-item {
    grid-template-columns: 60px 1fr;
}	
.mfx-colleges-icon-soft {
    width: 60px;
    height: 60px;
}	
.mfx-colleges-icon-soft img {
    width: 35px;
    height: 35px;
}	
.mfx-colleges-impact-card {
    padding: 24px 20px;
}	
.mfx-colleges-impact-card h3 {
    margin: 16px 0 8px;
    font-size: 20px;
}
.mfx-colleges-comparison-head > div {
    padding: 16px;
    font-size: 16px;
}	
.mfx-colleges-comparison-row span {
    padding: 20px 20px 20px 50px;
    font-size: 14px;
}	
.mfx-colleges-platform-heading {
    margin: 0 auto 40px;
}
.mfx-colleges-hero-section {
    min-height: 600px;
}	
}
@media (max-width: 1023px) {
	.mfx-colleges-two-column,.mfx-colleges-platform-grid,.mfx-colleges-forecast-grid,.mfx-colleges-visibility-main-grid,.mfx-colleges-operations-grid {
    grid-template-columns: 1fr;
    gap: 30px;
}
.mfx-colleges-challenge-grid,.mfx-colleges-impact-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.mfx-colleges-hero-section {
    min-height: 550px;
}	
.mfx-colleges-sustainability-item {
    grid-template-columns: 60px 1fr;
    padding: 20px;
}	
.mfx-colleges-icon-soft {
    width: 60px;
    height: 60px;
}	
.mfx-colleges-icon-soft img {
    width: 35px;
    height: 35px;
}
.mfx-colleges-two-column {
    padding-bottom: 30px;
}	
.mfx-colleges-icon-circle img {
    width: 30px;
    height: 30px;
}		
}
@media (max-width: 767px) {
.mfx-colleges-challenge-grid, .mfx-colleges-impact-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
}	
.mfx-colleges-visibility-grid,.mfx-colleges-sustainability-grid,.mfx-colleges-sustainability-item {
    grid-template-columns: 1fr;
}		
.mfx-colleges-platform-title-row {
    flex-direction: column;
    gap: 16px;
}	
.mfx-colleges-environment-section.results-section .result-grid-without {
    grid-template-columns: repeat(1, minmax(320px, 490px));
    gap: 24px;
}	
.mfx-colleges-pill-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}	
.mfx-colleges-hero-inner h1 {
    font-size: 32px;
}
.mfx-colleges-hero-section {
    min-height: 500px;
	padding: 100px 0 40px;
}	
.mfx-colleges-hero-inner p {
    margin: 0 auto 30px;
}	
.mfx-colleges-challenge-section,.mfx-colleges-platform-section,.mfx-colleges-forecast-section,
.mfx-colleges-visibility-section,.mfx-colleges-sustainability-section,.mfx-colleges-impact-section,.mfx-colleges-operations-section {
    padding: 40px 0;
}	
	.mfx-colleges-operations-section  {
		padding-bottom:0;
	}	
.mfx-colleges-environment-section.results-section {
    padding: 40px 0px !important;
}	
.mfx-colleges-challenge-card h3 {
    margin: 20px 0 10px;
    font-size: 20px;
}	
.mfx-colleges-challenge-card {
    padding: 24px 16px;
    border-radius: 20px;
}	
.mfx-colleges-platform-heading {
    margin: 0 auto 30px;
}	
.mfx-colleges-platform-card {
    padding: 24px 16px;
}	
.mfx-colleges-icon-solid {
    width: 60px;
    height: 60px;
}
.mfx-colleges-icon-solid img {
    width: 35px;
    height: 35px;
}	
.mfx-colleges-platform-card h4 {
    margin: 18px 0 16px;
    font-size: 16px;
}	
.mfx-colleges-platform-title-row h3 {
    font-size: 20px;
}	
.mfx-colleges-environment-heading.results-header,.mfx-colleges-compact-heading {
    margin-bottom: 30px;
}	
.mfx-colleges-comparison-row span {
    padding: 14px 14px 14px 50px;
}
.mfx-colleges-video-placeholder {
    min-height: 250px;
}	
}
/* -----------Institutional Dining Style End--------------- */


/* -----------How it Works Style start----------- */
.hw-work-workflow-section .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.hw-work-workflow-section .section-header h2 {
  margin-bottom: 15px;
}
.hw-work-workflow-section .section-header p:last-child{
    margin-bottom: 0;
}
.hw-work-workflow-section .section-header p {
  margin-bottom: 10px;
}

.hw-work-workflow-section .workflow-grid {
  display: grid;
  grid-template-columns: 1fr 382px 1fr;
  justify-content: center;
  align-items: center;
  gap: 100px;
  margin: 0 auto;
  flex-wrap: wrap; 
}

.hw-work-workflow-section .workflow-grid .grid-col {
  display: flex;
  flex-direction: column;
  gap: 40px; 
}


.hw-work-workflow-section .workflow-grid .workflow-card {
    position: relative;
    background: #ffffff;
    border: 1px solid #F2E8C0;
    border-radius: 20px;
    padding: 55px 22px 30px 22px;
    box-shadow: 0px 8px 18px 0px #00000026;
}
.hw-work-workflow-section .workflow-grid .card-badge {
    position: absolute;
    top: 0px;
    left: 0;
    background-color: #fcecd2;
    font-size: 15px;
    font-weight: 600;
    padding: 13px 14px;
    border-radius: 20px 0px 20px 0;
    color: #202550;
    line-height: normal;
}

.hw-work-workflow-section .workflow-grid .workflow-card h3 {
    margin-bottom: 10px;
    font-size: 24px;
    font-weight: 600;
}


.hw-work-timeline-section {
  background-color: #fffef3; 
  padding: 80px 20px;
  color: #4a4a4a;
}


.hw-work-timeline-section .timeline-header {
  text-align: center;
  margin-bottom: 60px;
}

.hw-work-timeline-section .timeline-header h2 {
  margin-bottom: 10px;
}

.hw-work-timeline-section img.step-icon-img {
    margin-bottom: 30px;
    height: 80px;
    width: 80px;
}
.hw-work-timeline-section .timeline-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.hw-work-timeline-section .center-line {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 2px;
  background-color: #202550;
  transform: translateX(-50%);
  z-index: 1;
  height: calc(100% - 100px);
}

.hw-work-timeline-section .timeline-item {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hw-work-timeline-section .timeline-text-side{
    position: relative;
}
.hw-work-timeline-section .timeline-img-side, 
.hw-work-timeline-section .timeline-text-side {
  width: 50%;
  padding: 0 60px;
}

.hw-work-timeline-section .timeline-text-side.text-right-align .timeline-dot {
    right: 0;
    left: auto;
    transform: translateX(40%) rotate(
180deg);
}



.hw-work-timeline-section .timeline-dot {
    position: absolute;
    left: 0;
    top: 27px;
    transform: translateX(-50%);
    width: 33px;
    height: 26px;
}

.hw-work-timeline-section .timeline-text-side h3 {
    color: #202550;
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 600;
}

.hw-work-integration-section {
  background-color: #ffffff;
}

.hw-work-integration-section .integration-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    justify-content: space-between;
}

.hw-work-integration-section .integration-content h2 {
  margin-bottom: 20px;
}

.hw-work-integration-section .integration-graphic {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}



.hw-work-results-section{
  background-color: #ffffff;
}

.hw-work-results-section .results-header {
  text-align: center;
  margin-bottom: 60px;
}

.hw-work-results-section .results-header h2 {
  margin: 0;
}

.hw-work-results-section .results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.hw-work-results-section .result-card {
    background-color: #ffffff;
    border: 1px solid #F2E8C0;
    border-radius: 16px;
    padding: 40px;
    transition: all 0.3s ease-in-out;
    position: relative;
    cursor: pointer;
}


.hw-work-results-section .result-card:hover {
  background-color: #fefce8; 
  border-color: #fde047; 
}


.hw-work-results-section .card-icon {
  margin-bottom: 24px;
}

.hw-work-results-section .dot-placeholder {
    display: inline-block;
    width: 80px;
    height: 80px;
    background-color: #FFFBE9;
    border-radius: 50%;
    transition: background-color 0.3s ease;
    padding: 20px;
}
.hw-work-results-section .result-card:hover .dot-placeholder svg path {
  fill: #fff !important;
}
.hw-work-results-section .result-card:hover .dot-placeholder {
  background-color: #facc15; 
}
.hw-work-results-section .dot-placeholder svg path{
  transition: all 0.38s ease-in-out;
}
.hw-work-results-section .card-stat {
    font-weight: 700;
    color: #FFCC00;
    line-height: 1;
    margin-bottom: 20px;
    font-size: 50px;
}

.hw-work-results-section .card-title {
    font-weight: 600;
    margin: 0 0 10px 0;
    color: #202550;
    font-size: 20px;
}

.hw-work-results-section .card-desc {
  margin: 0;
}
.how-it-wrk-solutions .proof-header-block {
    margin-inline: auto;
}

.how-it-wrk-solutions .proof-main-heading, .how-it-wrk-solutions .proof-subheading-text {
    color: #fff;
}
.hw-work-results-section .result-card .dot-placeholder img {
	transition:all 0.38s ease-in-out 0s;
}
.hw-work-results-section .result-card:hover .dot-placeholder img {
    filter: brightness(0) invert(1);
}
.faq-section.how-it-work-faq {
    padding-top: 0px;
}
.hw-it-wrk-service-cafeterias .retail-food-service-cafeterias__text {
    max-width: 1280px;
    margin-inline: auto;
    text-align: center;
    margin-bottom: 60px;
}
.hw-it-wrk-service-cafeterias .mfx-colleges-comparison-card {
    max-width: 800px;
    margin-inline: auto;
}
@media (max-width: 767px) {
.hw-work-workflow-section .workflow-grid {
    grid-template-columns: 1fr;
    gap: 30px;
}
.hw-work-results-section .results-header {
    margin-bottom: 25px;
}
	.hw-work-timeline-section .timeline-header {
    margin-bottom: 40px;
}
.hw-work-workflow-section .section-header {
    margin-bottom: 30px;
}
.hw-work-workflow-section .workflow-grid .card-badge {
    font-size: 12px;
    padding: 10px 14px;
}
	.hw-work-workflow-section .workflow-grid .workflow-card h3 {
    margin-bottom: 5px;
    font-size: 20px;
}
	.hw-work-workflow-section .workflow-grid .workflow-card {
    padding: 45px 20px 20px 20px;
}
.hw-work-workflow-section .workflow-grid .grid-col {
    gap: 20px;
}
.hw-work-timeline-section .timeline-item {
    flex-wrap: wrap;
	gap: 20px;
}
	.hw-work-timeline-section .timeline-img-side, .hw-work-timeline-section .timeline-text-side {
    width: 100%;
    padding: 0 0px 0px 20px;
}
.hw-work-timeline-section .center-line {
    left: 0;
    height: calc(100% - 20px);
}
	.hw-work-timeline-section img.step-icon-img {
    margin-bottom: 10px;
    height: 50px;
    width: 50px;
}
.hw-work-timeline-section .timeline-text-side h3 {
    font-size: 20px;
}
.hw-work-timeline-section .timeline-dot {
    top: 15px;
    width: 25px;
    height: 25px;
}
.timeline-item.left-img {
    flex-direction: column-reverse;
    gap: 20px;
}
.hw-work-timeline-section .timeline-wrapper {
    gap: 30px;
}
.hw-work-timeline-section .text-right-align {
    text-align: left;
}
.hw-work-timeline-section .timeline-text-side.text-right-align .timeline-dot {
    right: auto;
    left: 0;
    transform: translateX(-50%) rotate(
0deg);
}
.hw-work-timeline-section {
    padding: 40px 0px;
}
.hw-work-integration-section .integration-container {
    grid-template-columns: 1fr;
    gap:20px;
}
.hw-work-integration-section .integration-content {
    text-align: center;
}
.hw-work-integration-section .integration-content h2 {
    margin-bottom: 10px;
}
.hw-work-results-section .results-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
}
.hw-work-results-section .result-card {
    padding: 20px;
}
.hw-work-results-section .card-icon {
    margin-bottom: 15px;
}
.hw-work-results-section .card-stat {
    margin-bottom: 10px;
    font-size: 35px;
}
.hw-work-results-section .dot-placeholder {
    width: 60px;
    height: 60px;
    padding: 15px;
}
.hw-it-wrk-service-cafeterias .retail-food-service-cafeterias__text {
    margin-bottom: 30px;
}
}
@media (min-width: 768px) and (max-width: 1024px) {
  .hw-work-workflow-section .workflow-grid {
    grid-template-columns: 1fr;
    gap: 40px;
}
.hw-work-results-section .results-header {
    margin-bottom: 40px;
}
.hw-work-workflow-section .workflow-grid .grid-col {
    gap: 25px;
}
.hw-work-workflow-section .workflow-grid .card-badge {
    font-size: 12px;
    padding: 10px 14px;
}
.hw-work-workflow-section .workflow-grid .grid-col {
    flex-direction: row;
    gap: 20px;
}
.hw-work-workflow-section .center-diagram-container {
    display: flex;
    justify-content: center;
}
.hw-work-workflow-section .section-header {
    margin-bottom: 40px;
}
.hw-work-timeline-section img.step-icon-img {
    margin-bottom: 10px;
    height: 50px;
    width: 50px;
}
.hw-work-timeline-section .timeline-wrapper {
    gap: 40px;
}
.hw-work-timeline-section {
    padding: 60px 0px;
}
.timeline-text-side.text-right-align, .timeline-item.left-img .timeline-img-side {
    padding-left: 0;
    padding-right: 30px;
}
.timeline-item.left-img .timeline-text-side, .timeline-item.right-img .timeline-img-side {
    padding-left: 30px;
    padding-right: 0px;
}
	.hw-work-timeline-section .timeline-dot {
    top: 12px;
    width: 28px;
}
.hw-work-timeline-section .timeline-text-side h3 {
    font-size: 22px;
}
.hw-work-timeline-section .center-line {
    height: calc(100% - 32px);
}
.hw-work-integration-section .integration-container {
    gap: 40px;
}
.hw-work-results-section .results-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.hw-work-results-section .result-card {
    padding: 25px;
}
.hw-work-results-section .card-stat {
    margin-bottom: 20px;
    font-size: 40px;
}
.hw-work-results-section .dot-placeholder {
    width: 60px;
    height: 60px;
    padding: 14px;
}
	.hw-work-results-section .card-icon {
    margin-bottom: 15px;
}
.hw-it-wrk-service-cafeterias .retail-food-service-cafeterias__text {
    margin-bottom: 40px;
}
}
@media (min-width: 992px) and (max-width: 1024px) {
.hw-work-timeline-section .center-line {
    height: calc(100% - 65px);
}
}
@media (min-width: 1025px) and (max-width: 1699px) {
.hw-work-workflow-section .workflow-grid {
    gap: 30px;
}
.hw-work-workflow-section .workflow-grid .grid-col {
    gap: 20px;
}
.hw-work-workflow-section .workflow-grid .workflow-card h3, .hw-work-timeline-section .timeline-text-side h3 {
    font-size: 20px;
}
.hw-work-timeline-section .timeline-img-side, .hw-work-timeline-section .timeline-text-side {
    padding: 0 40px;
}
.hw-work-timeline-section {
    padding: 60px 0px;
}
.hw-work-timeline-section img.step-icon-img {
    margin-bottom: 10px;
    height: 60px;
    width: 60px;
}
.hw-work-timeline-section .center-line {
    height: calc(100% - 50px);
}
.hw-work-timeline-section .timeline-dot {
    top: 20px;
}
.hw-work-results-section .results-header {
    margin-bottom: 50px;
}
.hw-work-results-section .result-card {
    padding: 30px;
}
.hw-work-results-section .card-stat {
    margin-bottom: 15px;
    font-size: 40px;
}
.hw-work-workflow-section .workflow-grid .card-badge {
    font-size: 12px;
    padding: 12px 14px;
}
.hw-work-integration-section .integration-container {
    gap: 60px;
}
}
@media (min-width: 1025px) and (max-width: 1095px) {
	.hw-work-timeline-section .center-line {
    height: calc(100% - 60px);
}
}
@media (min-width: 1096px) and (max-width: 1259px) {
	.hw-work-timeline-section .center-line {
    height: calc(100% - 86px);
}
}
@media (min-width: 1421px) and (max-width: 1699px) {
	.hw-work-timeline-section .center-line {
    height: calc(100% - 133px);
}
}
@media (min-width: 1260px) and (max-width: 1420px) {
	.hw-work-timeline-section .center-line {
      height: calc(100% - 110px);
}
}
/* -----------How it Works Style End----------- */

/* -----------Reports nad ebook Style start----------- */

.rpt-ebk-research-section {
  background-color: #ffffff;
}

.rpt-ebk-research-section .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.rpt-ebk-research-section .section-header h2 {
  margin-bottom: 15px;
}


.rpt-ebk-research-section .content-grid {
  display: grid;
  gap: 80px;
  align-items: center;
  grid-template-columns: 1fr 1fr; 
}

.rpt-ebk-research-section .featured-img {
  width: 100%;
  border-radius: 15px; 
}

.rpt-ebk-research-section .main-title {
  color:#202550;
  font-size: 30px;
  margin-bottom: 15px;
  font-weight: 500;
  line-height: 1.5em;
}

.rpt-ebk-research-section .description {
  margin-bottom: 25px;
}
.rpt-ebk-research-section .highlights-title {
    color: #202550;
    font-size: 24px;
    margin-bottom: 35px;
    font-weight: 500;
}

.rpt-ebk-research-section .highlights-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  display: flex;
  flex-wrap: wrap; 
}

.rpt-ebk-research-section .highlights-list li {
    width: 50%;
    margin-bottom: 20px;
    font-size: 18px;
    color: #202550;
    display: flex;
    align-items: center;
    font-weight: 500;
    line-height: 28px;
}

.rpt-ebk-research-section .icon-placeholder {
    margin-right: 13px;
   height: 27px;
    width: 27px;
}

.rpt-ebk-resources-section {
  background-color: #fdfbe9; 
}

.rpt-ebk-resources-section .section-title {
  text-align: center;
  margin-bottom: 40px;
}

.rpt-ebk-resources-section .tabs-container {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}


.rpt-ebk-resources-section .tab-btn {
    background-color: #ffffff;
    color: #202550;
    border: 1px solid #F2E8C0;
    padding: 12px 25px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.2s ease;
    font-weight: 400;
}


.rpt-ebk-resources-section .tab-btn.active {
  background-color: #202550;
  color: #ffffff;
  border-color: #202550;
}


.rpt-ebk-resources-section .cards-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}


.rpt-ebk-resources-section .resource-card {
    background: #ffffff;
    border-radius: 15px;
    width: calc((100% - 80px) / 3);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    border: 1px solid #CDB892;
}

.rpt-ebk-resources-section .resource-card.hide {
  display: none;
}

.rpt-ebk-resources-section .card-image-wrapper {
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.rpt-ebk-resources-section .card-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rpt-ebk-resources-section .card-content {
    padding: 20px 30px 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.rpt-ebk-resources-section .badge {
    align-self: flex-start;
    padding: 8px 10px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 6px;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: normal;
}

.rpt-ebk-resources-section .badge-report { background-color: #00D0FF; }
.rpt-ebk-resources-section .badge-whitepaper { background-color: #00D082; }
.rpt-ebk-resources-section .badge-ebook { background-color: #FFCC00; }

.rpt-ebk-resources-section .card-title {
    color: #202550;
    font-size: 22px;
    margin: 0 0 15px 0;
    font-weight: 600;
}

.rpt-ebk-resources-section .card-text {
  margin: 0 0 20px 0;
  flex-grow: 1; 
}
.ebook_industry_research_sec{
    background: #202550;
}
.ebook_industry_research_sec .retail_trustedBy__text h2 {
    color: #fff;
}
.ebook_industry_research_sec .research-report-card {
    position: relative;
}

.ebook_industry_research_sec .research-report-card .research-report-card__title {
    color: #fff;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.5em;
    margin-bottom: 5px;
}

.ebook_industry_research_sec .research-report-card p.research-report-card__description {
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
}
.ebook_industry_research_sec .research-report-card__content {
    position: absolute;
    bottom: 28px;
    left: 35px;
    padding-right: 35px;
}
.reprt-eboot-trt-feature .feature-card {
    display: block !important;
    text-align: left !important;
}
.report-ebook-leader-sec {
    background: #fff !important;
}
.report-ebook-leader-sec .reports-ebooks-card__content {
    padding: 20px;
}
.report-ebook-leader-sec .reports-ebooks-card__content .reports-ebooks-card__badge {
    font-size: 16px;
    color: #fff;
    background: #FFCC00;
    padding: 8px 10px;
    line-height: normal;
    border-radius: 6px;
    display: inline-block;
    margin-bottom: 10px;
}
.report-ebook-leader-sec .reports-ebooks-card__image {
    height: 200px;
}

 .report-ebook-leader-sec .reports-ebooks-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.report-ebook-leader-sec .reports-ebooks-card__content .reports-ebooks-card__description {
    color: #202550;
}
.success_swiper_slider_nav_wrap .sucswiper-button-prev, .success_swiper_slider_nav_wrap .sucswiper-button-next {
    width: 45px;
    height: 45px;
    background: #fff;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.ebook_industry_research_sec .success_swiper_slider_nav_wrap{
    position: absolute;
    bottom: 50%;
    z-index: 1;
    left: 0;
    width: 100%;
    height: 50px;
}
.retail_trustedBy_shortcode.industry_researchshortcode{
	position:relative;
}
.ebook_industry_research_sec .success_swiper_slider_nav_wrap .sucswiper-button-next{
		right:-60px;
		position:absolute;
	}
	.ebook_industry_research_sec .success_swiper_slider_nav_wrap .sucswiper-button-prev{
		left:-60px;
		position:absolute;
	}
.research-report-card__image img {
    width: 100%;
}
@media (max-width: 1499px) {
	.ebook_industry_research_sec .success_swiper_slider_nav_wrap .sucswiper-button-next{
		right:-30px;
		position:absolute;
	}
	.ebook_industry_research_sec .success_swiper_slider_nav_wrap .sucswiper-button-prev{
		left:-30px;
		position:absolute;
	}
}
@media (max-width: 767px) {
	.ebook_industry_research_sec .success_swiper_slider_nav_wrap .sucswiper-button-next{
		right:-10px;
	}
	.ebook_industry_research_sec .success_swiper_slider_nav_wrap .sucswiper-button-prev{
		left:-10px;
	}
	.ebook_industry_research_sec .success_swiper_slider_nav_wrap .sucswiper-button-prev, .success_swiper_slider_nav_wrap .sucswiper-button-next {
        width: 40px;
		height: 40px;
	}
}


@media (max-width: 767px) {
.rpt-ebk-research-section .content-grid {
    gap: 20px;
    grid-template-columns: 1fr;
}
.rpt-ebk-research-section .retail_trustedBy__text {
    margin-bottom: 20px;
}
.rpt-ebk-research-section .main-title {
    font-size: 24px;
    margin-bottom: 10px;
    line-height: 1.2em;
}
.rpt-ebk-research-section .highlights-title {
    font-size: 20px;
    margin-bottom: 10px;
}
.rpt-ebk-research-section .highlights-list li {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.3em;
	width:100%;
}
.rpt-ebk-research-section .icon-placeholder {
    margin-right: 8px;
    height: 18px;
    width: 18px;
}	
.rpt-ebk-research-section .highlights-list {
    margin: 0 0 20px 0;
    column-gap: 5px;
}
	.rpt-ebk-research-section .description {
    margin-bottom: 15px;
}
	.rpt-ebk-research-section a{
		    line-height: 24px !important;
	}
	.reprt-eboot-trt-feature .trust-features header {
    margin-bottom: 20px;
}
	.report-ebook-leader-sec .retail_trustedBy__text {
    margin-bottom: 25px;
}
.rpt-ebk-resources-section .cards-grid {
    gap: 20px;
}
.rpt-ebk-resources-section .resource-card {
    width: 100%;
}
.rpt-ebk-resources-section .card-content {
    padding: 20px 20px 20px;
}
.rpt-ebk-resources-section .retail_trustedBy__text, .ebook_industry_research_sec .retail_trustedBy__text {
    margin-bottom: 25px;
}
.rpt-ebk-resources-section .card-image-wrapper {
    height: 200px;
}
	.rpt-ebk-resources-section .btn{
		line-height:normal !important;
		height:auto !important;
	}
	 .rpt-ebk-resources-section .tabs-container {
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        gap: 10px;
        margin-bottom: 20px;
        padding-bottom: 5px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .rpt-ebk-resources-section .tabs-container::-webkit-scrollbar {
        display: none;
    }

    .rpt-ebk-resources-section .tabs-container .tab-btn {
        flex: 0 0 auto;
        white-space: nowrap;
    }
.rpt-ebk-resources-section .tab-btn {
    padding: 10px 20px;
    font-size: 14px;
}
.rpt-ebk-resources-section .card-title {
    font-size: 20px;
    margin: 0 0 10px 0;
}
.rpt-ebk-resources-section .badge {
    padding: 8px 10px;
    font-size: 12px;
    margin-bottom: 12px;
}
.ebook_industry_research_sec .research-report-card .research-report-card__title {
    font-size: 20px;
    line-height: 1.2em;
    margin-bottom: 5px;
}
.ebook_industry_research_sec .research-report-card__content {
    bottom: 28px;
    left: 20px;
    padding-right: 20px;
}
	.reprt-eboot-trt-feature header {
    margin-bottom: 25px !important;
}
	    .reprt-eboot-trt-feature .icon-circle {
        width: 50px !important;
        height: 50px!important;
        padding: 10px;
    }
}
@media (min-width:768px) and (max-width: 1024px) {
	.rpt-ebk-resources-section .resource-card {
    width: calc((100% - 30px) / 2);
}
.rpt-ebk-resources-section .cards-grid {
    gap: 30px;
}
	.rpt-ebk-research-section .content-grid {
    gap: 20px;
    grid-template-columns: 1fr;
}
.rpt-ebk-research-section .main-title {
    font-size: 24px;
}
.rpt-ebk-research-section .highlights-list li {
    margin-bottom: 15px;
    font-size: 16px;
}
.rpt-ebk-research-section .retail_trustedBy__text {
    margin-bottom: 30px;
    text-align: center;
}
.rpt-ebk-resources-section .card-content {
    padding: 20px 20px 20px;
}
.rpt-ebk-resources-section .card-image-wrapper {
    height: 220px;
}
.rpt-ebk-resources-section .card-title {
    font-size: 20px;
    margin: 0 0 15px 0;
}
.rpt-ebk-resources-section .badge {
    font-size: 14px;
    margin-bottom: 15px;
}
}


/* -----------Reports nad ebook Style End----------- */
/* -----------Waste prevention Style start----------- */


.waste-origins-section {
  background-color: #ffffff;
}


.waste-origins-section .waste-main-heading {
  text-align: center;
  margin-bottom: 60px;
}

.waste-origins-section .waste-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.waste-origins-section .waste-card {
    background-color: #ffcc00;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0px 8px 18px 0px #00000026;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}



.waste-origins-section .icon-container {
  width: 80px;
  height: 80px;
  background-color:#FFFBE9;
  border-radius: 50%;
  margin-bottom: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
}




.waste-origins-section .card-title {
    margin: 0 0 10px 0;
    font-size: 24px;
    color: #202550;
    font-weight: 600;
}
.waste-origins-section .card-description {
  color: #202550;
  margin: 0;
}


.kitchen-prevention-section {
  background-color: #fdfbe7; 
}

.kitchen-prevention-section .prevention-container {
  display: grid;
  grid-template-columns: 1fr 1.1fr; 
  gap: 100px;
  align-items: center;
}



.kitchen-prevention-section .prevention-image-side img {
  width: 100%;
  border-radius: 20px;
}


.kitchen-prevention-section .prevention-heading {
  font-weight: 500;
  margin: 0 0 40px 0;
}

.kitchen-prevention-section .features-list {
  display: flex;
  flex-direction: column;
  gap: 20px; 
}

.kitchen-prevention-section .feature-card {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 25px;
    box-shadow: 0px 6px 16px 0px #0000001A;
}



.kitchen-prevention-section .feature-icon-box {
  width: 80px;
  height: 80px;
  background-color:#FFCC00; 
  border-radius: 50%;
  flex-shrink: 0; 
  display: flex;
  justify-content: center;
  align-items: center;
}


.kitchen-prevention-section .feature-text h3 {
  font-size: 20px;
  color:#202550;
  font-weight: 600;
  margin: 0 0 10px 0;
}

.waste-result-mn-section .results-grid-col {
    grid-template-columns: repeat(4, 1fr);
    display: grid;
	gap:24px;
}

.waste-result-mn-section .results-grid-col .card-stat {
    color: #202550;
    font-size: 45px;
}
.waste-result-mn-section .results-header h2{
    margin-bottom: 15px;
}



.sustainability-impact-section {
  background-color: #ffffff;
}

.sustainability-impact-section .impact-container {
  text-align: center;
}

.sustainability-impact-section .impact-header h2 {
    margin: 0 0 15px 0;
}

.sustainability-impact-section .impact-header p {
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.sustainability-impact-section .impact-badges-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.sustainability-impact-section .impact-badge-card {
    background-color: #FFFBE9;
    border: 1px solid #F2E8C0;
    border-radius: 16px;
    padding: 10px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}



.sustainability-impact-section .check-icon-placeholder {
    width: 28px;
    height: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}


.sustainability-impact-section .badge-text {
    font-weight: 500;
    color: #000000;
    font-size: 18px;
    line-height: normal;
}
.waste-sol-sec .proof-subheading-text {
    color: #fff;
}
.waste-prevent-mt-unit {
    background: #FFFBE9;
}
.waste-prevent-mt-unit .swiper .swiper-wrapper .swiper-slide {
    background: #fff;
}
.waste-prevent-mt-unit .swiper .post-card__content .post-card__excerpt {
    color: #000000;
}
.waste-prevent-mt-unit .swiper .post-card__image img{
	width:100%;
}
.waste-prevent-mt-unit .proof-header-block{
	margin-inline:auto;
}
.waste-prevent-mt-unit .multi-unit-posts {
    width: 100%;
    overflow: hidden;
}
@media (max-width: 767px) {
.waste-origins-section .waste-grid {
    grid-template-columns: repeat(1, 1fr);
}
.waste-origins-section .waste-main-heading {
    margin-bottom: 25px;
}
.waste-origins-section .icon-container {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
    padding: 12px;
}
.waste-origins-section .waste-card {
    padding: 20px;
}
.waste-origins-section .card-title {
    margin: 0 0 8px 0;
    font-size: 20px;
}
.kitchen-prevention-section .prevention-container {
    display: flex;
    grid-template-columns: 1fr;
    gap: 25px;
	flex-direction:column-reverse;
}
.kitchen-prevention-section .prevention-heading {
    margin: 0 0 25px 0;
    text-align: center;
}
.kitchen-prevention-section .feature-card {
    padding: 20px;
    gap: 10px;
}
.kitchen-prevention-section .feature-icon-box {
    width: 50px;
    height: 50px;
    padding: 10px;
}
.waste-result-mn-section .results-grid-col {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
}
.waste-result-mn-section .results-grid-col .card-stat {
    font-size: 26px;
}
.sustainability-impact-section .impact-header p {
    margin: 0 auto 25px auto;
}
.sustainability-impact-section .impact-badges-grid {
    gap: 10px;
}
.sustainability-impact-section .badge-text {
    font-size: 14px;
}
.sustainability-impact-section .impact-badge-card {
    padding: 10px 15px;
    gap: 8px;
}
.sustainability-impact-section .check-icon-placeholder {
    width: 20px;
    height: 20px;
}
}
@media (min-width: 768px) and (max-width: 1024px) {
.waste-origins-section .waste-grid, .waste-result-mn-section .results-grid-col {
    grid-template-columns: repeat(2, 1fr);
}
.waste-origins-section .waste-main-heading {
    margin-bottom: 40px;
}
.kitchen-prevention-section .prevention-container {
    display: flex;
    grid-template-columns: 1fr;
    gap: 30px;
	flex-direction:column-reverse;
}
.sustainability-impact-section .impact-header p {
    margin: 0 auto 30px auto;
}
.sustainability-impact-section .badge-text {
    font-size: 16px;
}
.sustainability-impact-section .check-icon-placeholder {
    width: 22px;
    height: 22px;
}
.sustainability-impact-section .impact-badge-card {
    padding: 10px 20px;
    gap: 8px;
}
.waste-result-mn-section .results-grid-col .card-stat {
    font-size: 35px;
}
	.prevention-content-side{
		width:100%;
	}
}
@media (min-width:1025px) and (max-width: 1699px) {
.kitchen-prevention-section .prevention-container {
    gap: 40px;
}
.waste-result-mn-section .results-grid-col .card-stat {
    font-size: 30px;
}
.sustainability-impact-section .impact-header p {
    margin: 0 auto 40px auto;
}
}
/* -----------Waste prevention Style End----------- */





