@import url('https://fonts.googleapis.com/css2?family=Prata&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');


body {
    margin: 0;
    padding: 0 !important;
    font-family: "Quicksand", sans-serif;
    scroll-behavior: smooth;
/*     overflow: hidden !important; */
}
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
textarea,
select {
  background: none;
  border: solid 1px #f1f1f1;
  color: #444;
  font-size: 14px;
  line-height: normal;
  margin: 0 0 10px;
  padding: 12px 20px;
  width: 100%;
  outline: 0;
  border-radius: 5px;
  font-family: "Quicksand", sans-serif;
  background: white;
}
input[type="submit"] {
  background: linear-gradient(90deg, #193775, #f39c12);
  text-transform: capitalize;
  border: none;
  padding: 10px 20px;
  font-size: 15px;
  border: 0;
  cursor: pointer;
  outline: none;
  font-weight: 400;
  border-radius: 10px 10px 25px;
  font-family: "Prata", serif;
  color: white;
}
input[type="submit"]:hover {
  background: var(--secondary);
  color: white;
  transition: 0.8s;
}
textarea {
  height: 100px;
  margin-bottom: 5px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 15px 0;
  font-family: "Prata", serif;;
  color: #444444;
  font-weight: 500;
  text-transform: inherit;
  line-height: normal;
}
h1 {
  font-size: 28px;
}
h2 {
    font-size: 28px;
    font-weight: 500;
    line-height: 1.5;
}
h3 {
  font-size: 22px;
}
h4 {
  font-size: 20px;
}
h5 {
  font-size: 18px;
}
h6 {
  font-size: 16px;
}
p {
  padding: 0;
  margin: 0 0 10px 0;
  font-family: "Quicksand", sans-serif;
  color: #454a50;
  font-size: 15.5px;
  font-weight: 400;
  line-height: 28px;
}
ul,
li,
a {
  list-style-type: none;
  font-family: "Quicksand", sans-serif;
  color: #222;
  line-height: 24px;
  font-size: 15px;
  letter-spacing: 0;
}
a:hover {
  transition: 0.8s;
  text-decoration: none;
}
html {
  overflow-x: hidden !important;
}


/* Home Page
 */

/* Slider Section */

   * {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

/* Header Overlay */
.slider-header {
    position: absolute;
/*     top: 20px; */
    left: 0;
    width: 100%;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 20;
	background: #0000008f;
}

/* Logo */
.slider-logo img {
    height: 70px;
    width: 100%;
    position: relative;
}
.slider-header.sticky {
    position: fixed !important;
    top: 0;
    background: #000 !important;
    padding: 12px 20px;
    box-shadow: 0 6px 20px rgb(255 255 255 / 19%);
    animation: slideDown 0.4s ease;
}
 
/* Slide down animation */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
/* Hamburger Menu */
.cf:before,
.cf:after {
    content: " ";
    display: table;
}
.cf:after {
    clear: both;
}
.cf {
    *zoom: 1;
}
.rows .three{
box-sizing: border-box;
    color: #ecf0f1;
    text-align: center;
    position: relative;
}
.hamburger .line{
  width: 50px;
  height: 5px;
  background-color: #EB1C24;
  border-radius: 20px;
  display: block;
  margin: 8px auto;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.hamburger:hover{
  cursor: pointer;
}
#hamburger-10{
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
#hamburger-10.is-active{
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}
#hamburger-10.is-active .line:nth-child(1){
  width: 30px
}

#hamburger-10.is-active .line:nth-child(2){
  width: 40px
}
/* Fullscreen Menu */
.fullscreen-menu {
    position: fixed;
    inset: 0;
    background: #000;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.fullscreen-menu.active {
    opacity: 1;
    visibility: visible;
}

/* Menu Styling */
.fullscreen-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.fullscreen-nav li {
    margin: 20px 0;
}

.fullscreen-nav li a {
    font-size: 34px;
	line-height: 1.5;
	font-family: "Prata", serif;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.fullscreen-nav li a:hover {
    color: #EB1C24;
    transform: scale(1.05);
}

/* Mobile */
@media (max-width: 768px) {
    .fullscreen-nav li a {
        font-size: 32px;
    }
}
/* Close Button */
.menu-close {
    position: absolute;
    top: 30px;
    right: 40px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 42px;
    font-weight: 300;
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s ease;
}

.menu-close:hover {
    color: #EB1C24;
    transform: rotate(90deg);
}
@media (max-width: 768px) {
    .menu-close {
        font-size: 32px;
        top: 20px;
        right: 25px;
    }
}

.slider-container {
	width: 100%;
	height: 100vh;
	position: relative;
/* 	overflow: hidden; */
	  overflow-x: visible;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.accordion-slider {
	display: flex;
	height: 100%;
	position: relative;
}

.slide {
	flex: 1;
	position: relative;
	cursor: pointer;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
	overflow: hidden;
	filter: grayscale(1);
}

.slide:hover {
	filter: grayscale(0);
}

.slide.active {
	flex: 2.5;
	filter: grayscale(0);
}

.slide::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 80%);
}

.slide-content {
	position: absolute;
	bottom: 30px;
	left: 30px;
	right: 30px;
	color: white;
	z-index: 2;
}

.slide.active .slide-content {
	bottom: 80px;
	transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.slide-number {
	font-size: 64px;
	font-weight: 300;
	color: rgba(255, 255, 255, 0.6);
	line-height: 1;
	position: absolute;
	bottom: 30px;
	left: 30px;
	transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide.active .slide-number {
	bottom: auto;
	top: -50px;
	font-size: 48px;
	left: 0;
}

.car-brand {
	font-size: 16px;
	font-family: "Quicksand", sans-serif;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 5px;
	transform: rotate(-90deg);
	transform-origin: left bottom;
	position: absolute;
	bottom: 100px;
	left: 30px;
	white-space: nowrap;
	transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide.active .car-brand {
	transform: rotate(0deg);
	position: static;
	transform-origin: unset;
}

.car-name {
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 8px;
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
	transition-delay: 0s;
	font-family: "Prata", serif;
}

.slide.active .car-name {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.3s;
}

.car-subtitle {
	font-size: 16px;
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 20px;
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
	transition-delay: 0s;
}

.slide.active .car-subtitle {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.4s;
}

.car-specs {
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
	transition-delay: 0s;
}

.slide.active .car-specs {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.5s;
}

.spec-row {
	display: flex;
	justify-content: space-between;
	margin-bottom: 6px;
	font-size: 14px;
	opacity: 0;
	transform: translateX(-20px);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide.active .spec-row {
	opacity: 1;
	transform: translateX(0);
}

.slide.active .spec-row:nth-child(1) {
	transition-delay: 0.6s;
}
.slide.active .spec-row:nth-child(2) {
	transition-delay: 0.65s;
}
.slide.active .spec-row:nth-child(3) {
	transition-delay: 0.7s;
}
.slide.active .spec-row:nth-child(4) {
	transition-delay: 0.75s;
}

.spec-label {
	color: rgba(255, 255, 255, 0.7);
}

.spec-value {
	color: white;
	font-weight: 600;
}

.performance-badges {
	display: flex;
	gap: 12px;
	margin-top: 15px;
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
	transition-delay: 0s;
}

.slide.active .performance-badges {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.8s;
}

.badge {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 4px 8px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	font-size: 12px;
	font-weight: 500;
	opacity: 0;
	transform: scale(0.8);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide.active .badge {
	opacity: 1;
	transform: scale(1);
}

.slide.active .badge:nth-child(1) {
	transition-delay: 0.85s;
}
.slide.active .badge:nth-child(2) {
	transition-delay: 0.9s;
}
.slide.active .badge:nth-child(3) {
	transition-delay: 0.95s;
}

.badge-icon {
	width: 8px;
	height: 8px;
	background: #eb1c24;
	border-radius: 50%;
}

.add-button {
	position: absolute;
	bottom: 30px;
	right: 30px;
	width: 32px;
	height: 32px;
	background: transparent;
	border: 2px solid #eb1c24;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.4s ease;
	z-index: 3;
}

.add-button::before,
.add-button::after {
	content: "";
	position: absolute;
	background: #eb1c24;
	transition: all 0.4s ease;
}

.add-button::before {
	width: 12px;
	height: 2px;
}

.add-button::after {
	width: 2px;
	height: 12px;
	transform: rotate(0deg);
}

.slide.active .add-button::before {
	transform: rotate(0deg);
}

.slide.active .add-button::after {
	opacity: 0;
	transform: scale(0);
}

.navigation-arrows {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 50px;
	height: 50px;
	background: rgba(255, 255, 255, 0.1);
	border: none;
	border-radius: 50%;
	color: white;
	cursor: pointer;
	font-size: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	z-index: 4;
	backdrop-filter: blur(10px);
}

.nav-prev {
	left: 20px;
}

.nav-next {
	right: 20px;
}

.navigation-arrows:hover {
	background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
	.accordion-slider {
		flex-direction: column;
	}

	.slide {
		flex: 1;
		min-height: 80px;
	}

	.slide.active {
		flex: 2;
	}

	.slide-number {
		font-size: 32px;
	}

	.car-brand {
		transform: none;
		position: static;
	}
}

/* Marquee */

.marquee {
    width: 100%;
    overflow: hidden;
}

.m {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    font-family: "Prata", serif;
    font-weight: 500;
    font-size: 34px;
    gap: 4vw;
    animation: marquee 25s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* About Section */

section.about_sec {
    background: #000;
	padding: 60px 0px;
}
.about-section {
  padding: 100px 0;
  background: #000;
  color: #fff;
}
.about_wrap {
    display: flex;
    align-content: center;
    justify-content: center;
}
.about_img img {
    width: 560px !important;
    height: 400px ! IMPORTANT;
    border-radius: 0px 60px 60px 0px;
    object-fit: cover;
}
section.about_sec h2 {
    color: #fff;
    margin-top: 20px;
}
h2.about-title {
    color: #fff;
    margin-top: 20px;
}
.about-section .row {
  display: flex;
  align-items: center;
  gap: 60px;
}
section.about_sec p {
    color: #fff;
    line-height: 2.6;
    text-align: justify;
}
p.about-text {
    color: #fff;
	text-align: justify;
}
.content-column {
  flex: 1;
}
span.about-subtitle {
    background: #eb1c24;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 13px;
	color: #fff;
}
.sec-title .title {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ff4c00;
  margin-bottom: 10px;
  display: block;
}
.sec-title h2 {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 20px;
}
.content-column .text {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 15px;
}
.content-column .btn {
  margin-top: 25px;
  background: #000;
  padding: 14px 30px;
  border: none;
}
.content-column .btn a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}
.image-column {
  flex: 1;
  text-align: center;
}
.btn2 {
  position: relative;
  display: inline-block;
  padding: 15px 30px;
/*   border: 2px solid #fefefe; */
  text-transform: uppercase;
  color: #fefefe;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: 0.3s;
  background-color: transparent;
  cursor: pointer;
}

.btn2::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  width: calc(100% + 6px);
  height: calc(100% + 2px);
/*   background-color: #212121; */
  transition: 0.3s ease-out;
  transform: scaleY(1);
}

.btn2::after {
  content: "";
  position: absolute;
  top: 52px;
  left: -2px;
  width: calc(100% + 4px);
  height: 3px;
  background-color: #eb1c24;
  transition: 0.3s ease-out;
  transform: scaleY(1);
}

.btn2:hover::before {
  transform: translateY(-25px);
  height: 0;
}

.btn2:hover::after {
  transform: scaleX(0);
  transition-delay: 0.15s;
}

.btn2:hover {
/*   border: 2px solid #fefefe; */
  color: #eb1c24;	
}

.btn2 .spn2 {
  position: relative;
  z-index: 3;
  text-decoration: none;
  border: none;
  background-color: transparent;
}

/* Founder Section */

section.founder-section{
  padding: 100px 0;
}
.fd {
    background-color: #f0f2f5 !important;
}
section.founder-section .about_img img {
    border-radius: 60px 0px 0px 60px;
}
section.founder-section h2 {
    margin: 30px 0px;
}
section.founder-section p {
    color: #000;
/*     line-height: 2.5; */
    text-align: justify;
}
section.founder-section h2.about-title {
    color: #000;
}
section.founder-section p.about-text {
    color: #000;
    font-weight: 500;
}
section.founder-section .btn2 {
    color: #000;
}


/* Timeline Section */
/* ==============================
   TIMELINE SECTION
================================ */
section.timeline-section {
    background: #000;
    padding: 40px 0;
    overflow-x: hidden;
}

/* Heading */
h2.timeline-heading {
    text-align: center;
    color: #fff;
    font-family: 'Prata', serif;
}

/* ==============================
   TIMELINE WRAPPER (DESKTOP)
================================ */
.timeline {
    display: flex;
    gap: 80px;
    position: relative;
    margin: 0 auto;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    font-family: "Quicksand", sans-serif;

    /* Firefox scrollbar */
    scrollbar-width: thin;
    scrollbar-color: #eb1c24 #1a1a1a;
}

/* Chrome / Edge / Safari scrollbar */
.timeline::-webkit-scrollbar {
    height: 8px;
}

.timeline::-webkit-scrollbar-track {
    background: #1a1a1a;
}

.timeline::-webkit-scrollbar-thumb {
    background: #eb1c24;
    border-radius: 8px;
}

/* Horizontal center line */
.timeline::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 250%;
    height: 2px;
    background-color: #eb1c24;
    transform: translateY(-50%);
}

/* ==============================
   TIMELINE ITEM
================================ */
.timeline-event {
    position: relative;
    min-width: 260px;
    text-align: center;
}

/* Diamond icon */
.timeline-event-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1em;
    height: 1em;
    background-color: #000;
    outline: 10px solid #fff;
    transform: translate(-50%, -50%) rotate(45deg);
    transition: transform 0.25s ease, background-color 0.25s ease;
    z-index: 2;
}

/* Icon hover */
.timeline-event:hover .timeline-event-icon {
    transform: translate(-50%, -50%) rotate(-45deg);
    background-color: #eb1c24;
}

/* ==============================
   CONTENT BOX
================================ */
.timeline-event-copy {
    margin-top: 70px;
    padding: 20px;
    width: 100%;
}

/* Year badge */
.timeline-event-thumbnail {
    display: inline-block;
    margin-bottom: 80px;
    padding: 6px 70px;
    border-radius: 50px;
    background-color: #000;
    color: #fff;
    font-size: 14px;
    box-shadow: inset 0 0 0 0 #eb1c24;
    transition: box-shadow 0.5s ease-in-out;
}

/* Year hover fill */
.timeline-event:hover .timeline-event-thumbnail {
    box-shadow: inset 40em 0 0 0 #eb1c24;
}

/* Text styles */
.timeline-event-copy h3 {
    font-size: 1.6em;
    color: #fff;
    margin-bottom: 5px;
}

.timeline-event-copy strong {
    font-weight: 600;
    color: #fff;
    font-family: 'Prata', serif;
}

/* ==============================
   MOBILE: VERTICAL TIMELINE
================================ */
@media (max-width: 768px) {

    .timeline {
        display: block;
        position: relative;
        max-width: 100%;
        margin: 0 auto;
        padding: 0;
        overflow: hidden;

        /* remove desktop scrollbar */
        scrollbar-width: auto;
    }

    .timeline::-webkit-scrollbar {
        display: none;
    }

    /* Vertical line */
    .timeline::before {
        top: 0;
        left: 30px;
        width: 2px;
        height: 100%;
        transform: none;
    }

    .timeline-event {
        min-width: auto;
        margin-bottom: 50px;
        text-align: left;
    }

    .timeline-event-icon {
        top: 0.5em;
        left: 30px;
        transform: translateX(-50%) rotate(45deg);
        outline: 6px solid #fff;
    }

    .timeline-event:hover .timeline-event-icon {
        transform: translateX(-50%) rotate(-45deg);
    }

    .timeline-event-copy {
        margin-left: 70px;
        margin-top: 0;
        padding: 15px 15px 15px 0;
        width: auto;
        text-align: left;
    }

    .timeline-event-thumbnail {
        padding: 6px 35px;
        font-size: 13px;
        margin-bottom: 20px;
    }
}

/* Why RBF Section */

section.Why-RBF-Section {
    padding: 40px 0px;
}
section.Why-RBF-Section h2.about-title {
    color: #000;
    text-align: center;
    margin-bottom: 30px;
}
.icn-features {
    display: flex;
    gap: 10px;
}
.icon-features-flex {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

.icon-feature {
  flex: 1;
  background: #ffffff;
  padding: 30px 20px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
}

.icon-feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.15);
}

.icon-circle {
  width: 70px;
  height: 70px;
  margin: 0 auto 18px;
  background: linear-gradient(135deg, #000000, #333333);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-circle i {
  font-size: 28px;
  color: #ffffff;
}

.icon-feature h4 {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 600;
  color: #eb1c24;
}

.icon-feature p {
  font-size: 15px;
  line-height: 1.6;
  color: #666;
}

/* Events Section */

.event-gallery {
  padding: 60px 0;
  background: #000;
  text-align: center;	
}
.event-grid {
  display: flex;
  gap: 25px;
}
.event-gallery a.btn2 {
    margin-top: 40px;
}
.event-card {
  flex: 1;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.event-image {
  position: relative;
  height: 320px;
  border-radius: 16px;
  overflow: hidden;
}

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

.event-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.3));
  color: #fff;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.4s ease;
}

.event-overlay h3 {
  margin-bottom: 10px;
  font-size: 20px;
  color: #fff;
}

.event-overlay ul {
  padding-left: 18px;
  font-size: 14px;
}
.event-overlay ul li{
    color: #fff;
}
.event-card:hover img {
  transform: scale(1.08);
}

.event-card:hover .event-overlay,
.event-card.active .event-overlay {
  opacity: 1;
  transform: translateY(0);
}
.event-gallery h2.about-title {
    text-align: center;
    margin-bottom: 40px;
}
/* Fade In Up Animation */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 991px) {
  .event-grid {
    flex-wrap: wrap;
  }
  .event-card {
    flex: 0 0 48%;
  }
}

@media (max-width: 576px) {
  .event-card {
    flex: 0 0 100%;
  }
}


/* Package Section */

.pricing-table-wrapper {
  padding: 80px 0px;
  text-align: center;
}

.section-title {
  margin-bottom: 40px;
  color: #fff;
}
section.package-section h2.section-title {
    color: #000;
}
.pricing-table {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.card {
    width: 260px;
    height: 290px;
    padding: 30px 20px;
    border-radius: 22px;
    background: linear-gradient(351deg, #fff, #eb1c24);
    color: #ffffff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    transition: transform 0.3s ease;
    border: 1px;
}
.card:hover {
  transform: translateY(-8px) scale(1.05);
}

.price {
  font-size: 60px;
  font-weight: 700;
  position: relative;
  margin-bottom: 10px;
}

.price span {
    font-size: 30px;
    position: absolute;
    left: 10px;
    top: 30px;
}

.plan {
  font-size: 20px;
  letter-spacing: 1px;
  color: #fff;	

}

.details {
  list-style: none;
  padding: 0;
	color: #fff;
}

.details li {
    margin: 12px 0;
    font-size: 14px;
    opacity: 0.9;
    color: #fff;
	align-items: baseline !important;
}
section.package-section a.btn2 {
    margin-top: 40px;
    color: #000;
}
footer i {
    font-size: 18px;
}
ul.contact_icon.d-flex.gap-3.p-0 i {
    font-size: 20px;
}
.bt-flx
 {
    display: flex;
    margin: 0 auto;
    justify-content: center;
    gap: 45px;
}




/* Logos Section */
.logo-slider {
  --logo-height: 100px;
  --gap: 40px;
  --duration: 60s;

  width: 100%;
  overflow: hidden;
  background: #000;
  padding: 40px 0;
  text-align: center;
}

.logo-slider h2.section-title {
  color: #fff;
  margin-bottom: 30px;
}

.logo-slider .marquee {
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: var(--gap);
}

.logo-slider .marquee-group {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 70px;
  min-width: 100%;
  animation: scroll-x var(--duration) linear infinite;
}

.logo-slider .marquee-group img {
    width: 294px;
    height: 255px;
    object-fit: contain;
    background: #fff;
    padding: 23px;
    border-radius: 17px;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.logo-slider .marquee-group img:hover {
  filter: grayscale(0);
  transform: scale(1.05);
}

@keyframes scroll-x {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}



/* Gallery Section */

.gallery {
	display: grid;
	grid-template-columns: 1fr;
	gap: 30px;
	padding: 5px;
	transition: 0.3s;
}

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

@media (min-width: 1024px) {
	.gallery {
		grid-template-columns: repeat(4, 1fr);
	}
}

@media (min-width: 1440px) {
	.gallery {
		grid-template-columns: repeat(6, 1fr);
	}
}

.gallery__link {
	overflow: hidden;
	height: 400px;
	max-height: 400px;
	display: block;
}
.gallery__thumb {
	position: relative;
	height: 100%;
}
.gallery__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 0.3s;
}
.gallery__image:hover {
	transform: scale(1.1);
}
.gallery-section{
	padding: 40px 0px;
	text-align: center;
}
.gallery-section h2.section-title{
	color: #000;
}
/* Lightbox Overlay */
.gallery-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    z-index: 9999;
}

.gallery-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.gallery-lightbox img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

/* Close Button */
.gallery-lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 36px;
    color: #fff;
    cursor: pointer;
    line-height: 1;
}


/* TESTIMONIAL*/

.testimonial {
    padding: 40px 0;
    background: #000;
    text-align: center;
	overflow: hidden;
}

.testimonial h2.heading {
    color: #fff;
}

/* ===============================
   SLICK FIXES
================================ */
.testimonial .slick-list {
    overflow: visible; /* FIX image cut */
    margin: 0 -10px;   /* spacing fix */
}

.testimonial .slick-track {
    margin-top: 60px;
}

.testimonial .slick-slide {
    padding: 0 10px; /* 20px gap total */
}


.testimonial-item {
    position: relative;
    padding-top: 60px; 
	height: 300px !important;
}
.testimonial-item figure {
    display: flex;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 99;
}

.testimonial-item img {
    border-radius: 50% !important;
    height: 120px;
    width: 120px !important;
    object-fit: cover;
    border: 4px solid #fff;
    background: #fff;
}


.testimonial-cnt {
    position: relative;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 60px rgba(0, 0, 0, 0.05);
    text-align: center;
    padding: 75px 25px 25px;
    z-index: 1;
    border: 1px solid #fff;
	height:100% !important;
}


.testimonial-cnt:before {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    content: '';
    background: url('../images/review-shape.webp') no-repeat center;
    background-size: contain;
    height: 26px;
    width: 75px;
}

/* Quote icon */
.testimonial-cnt:after {
    position: absolute;
    content: "\f10e";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    -webkit-text-stroke: 1px #f2f2f2;
    color: transparent;
    font-size: 45px;
    bottom: 15px;
    right: 25px;
}

/* ===============================
   TEXT
================================ */
.testimonial-cnt p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #555;
}

.testimonial h3 {
    margin: 15px 0 5px;
    font-size: 22px;
    text-transform: capitalize;
    font-weight: 600;
    color: #000;
}

/* ===============================
   RATING
================================ */
.testimonial .rating {
    display: flex;
    justify-content: center;
    gap: 4px;
    font-size: 12px;
    margin-top: 10px;
    color: #ff6809;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
    .testimonial-item img {
        width: 90px !important;
        height: 90px;
    }

    .testimonial-cnt {
        padding: 65px 20px 20px;
    }

    .testimonial h3 {
        font-size: 18px;
    }
}

/* Footer */

footer {

    background: #000;
	padding-top: 60px;
	border-top: 1px solid #ffffff1c;

}

footer .border-start {

    border-left: 1px solid #dee2e640!important;

}
 
img.ftr-logo {

    height: 127px;

    width: 164px;

    background: var(--white);

    border-radius: 50%;

    justify-content: center;

    align-items: center;

    display: flex;

    padding: 12px;

}

.details li {

    margin-bottom: 17px;

}

a.footer-logo{

	width:100%;

	background: var(--white);

	height:100%;

	display:flex;

	align-items:center;

	justify-content:center;

}

ul.ftrsmoicons a {

    background: #cccccc26;

    margin-bottom: 12px !important;

    display: inline-block;

    padding: 8px 10px;

    width: 70%;

    border-radius: 6px;

}

ul.ftrsmoicons a span {

    border-left: 1px solid #ffffff47;

    padding-left: 10px;

}

footer a.footer-logo img {

    width: 200px;

    padding: 2px 19px;

    margin-bottom: 0px;

}

footer #menu-quick-links a, #menu-services li a {

    font-size: 15px;

    display: block;

    padding-bottom: 15px;

    font-weight: 400;

}

footer li:last-child a {

    border: none !important;

}

.ftrcontact li:last-child {

    border: none;

}

.email-class {

    margin-left: 10px;

    text-align: start;

    margin-top: 8px;

}

a.web_link {

    margin: 6px 0px 0px 9px;

}

.contact-info {

    display: flex;

    align-items: center;

}

.contact-info p {

    display: flex;

    margin: 11px 0 0 8px;

}

footer h3 {

    color: #fff;

    font-size: 22px;

    margin-bottom: 28px;

}

footer a, footer ul li {

    color: #fff;

    transition: 0.5s ease-in-out;

    font-weight: 300;
	line-height: 2;

}

footer a:hover {

    color: var(--primary);

}

footer i{

    font-size: 13px;

    margin-right: 6px;

}

footer p {

    margin-bottom: 0;

    color: #efefef;

}
 
.ftricons {

    margin-top: 15px;

    column-gap: 5px;

}

.ftricons li i {

    color: #fff;

    font-size: 13px;

    background: #ff67021c;

    width: 32px;

    height: 32px;

    border-radius: 50px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin: 0;

}
 
.ftr-contact {

    display: flex;

    column-gap: 20px;

    border-bottom: 1px solid #ffffff1f;

    padding-bottom: 25px;

}

.ftrcontact li {

    display: flex;

    align-items: center;

    column-gap: 10px;

    font-size: 15px;

    padding: 20px 0;

    border-bottom: 1px solid #1c1c1c;

}

.ftr-contact li i {

    color: var(--white);

    font-size: 16px;

    background: #ffffff1f;

    width: 45px;

    height: 45px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    margin: 0 auto 13px;

}

.ftr-contact li h4 {

    font-size: 18px;

    color: var(--white);

    margin: 18px 0 5px;

    font-weight: 600;

}

.ftrcontact li {

    display: flex;

    align-items: center;

    column-gap: 10px;

    font-size: 15px;

    padding: 17px 0;

    border-bottom: 1px solid #1c1c1c;

}

.ftrcontact li a {

    font-size: 16px;

}

.ftrcontact li a span {

    font-size: 15px;

}

.ftrcontact li i {

    font-size: 16px;

    margin: 0;

    color: var(--primary);

}

.ftr-newsletter input[type="submit"] {

    width: 100%;

    margin-top: 5px;

}
 
.copyright {

    padding: 15px 0;

    margin-top: 40px;

    border-top: 1px solid #ffffff1c;

    text-align: center;

}

.copyright .row {

    align-items: center;

}

.copyright p, .copyright p a {

    margin: 0 !important;

}

.copyright p a {

    font-weight: 400;

}

.copyright ul {

    display: flex;

    column-gap: 30px;

    justify-content: flex-end;

}

.copyright li{

	position:relative;

}

.copyright li:before {

    position: absolute;

    top: 9px;

    left: -12px;

    background: var(--white);

    content: '';

    height: 6px;

    width: 6px;

    border-radius: 30px;

}

.smoicons li a {

    display: flex;

    border-radius: 50%;

    justify-content: center;

    align-items: center;

    color: var(--white);

    font-size: 17px;

    transition: all ease-in-out .5s;

}

.smoicons li a{

    margin: 0;

    height: 30px;

    width: 30px;

    background: var(--primary);

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 5px;

    font-size: 15px;

}
 
 footer img {
    width: 200px;
    position: relative;
    top: -15px;
/*     height: 255px; */
    object-fit: cover;
}

/* whatsapp */

#whatsappbtn {
    cursor: pointer;
    position: fixed;
    bottom: 4%;
    left: 20px;
    z-index: 9;
    padding: 8px 9px;
    background: #4fcc5d;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    text-align: center;
    font-size: 20px;
    color: var(--white);
   
}

#whatsappbtn:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #4fcc5d;
    box-shadow: 0 0 10px #4fcc5d;
    animation: playbtn 3s linear infinite forwards;
    z-index: -3;
}
.wp-img{
	width: 33px;
    position: relative;
    top: -5px;
    height: 30px;
    object-fit: cover;
}


/* Breadcrumb */

p#breadcrumbs {
    padding: 100px;
    text-align: center;
    background: radial-gradient(circle, rgba(235, 28, 36, 1) 0%, rgba(0, 0, 0, 1) 86%);
	margin-bottom: 0px;
}
p#breadcrumbs span {
    color: #fff;
    font-size: 24px;
    font-weight: 500;
    font-family: Prata, serif;
}
#breadcrumbs a {
    color: #fff;
    font-size: 24px;
    font-weight: 500;
    font-family: Prata, serif;
}


/* About Section */

section.abt-pg-section {
    padding: 40px 0px;
    background: #fff;
}
.about_sec h6 {
    color: #d91a21;
    font-weight: 500;
    font-size: 17px;
}
.about_sec h3 {
    color: #000;
    font-size: 26px;
    line-height: 1.5;
    margin: 20px 0px;
}
.about_sec p {
    color: #000;
	line-height: 2.5;
    text-align: justify;
}
.fade-up {
  opacity: 0;
  animation: fadeUp 1s ease-out forwards;
}
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

section.founder-section {
    padding: 60px 0;
    background: #000;
}
.founder-section {
  padding: 80px 20px;
  background: #ffffff;
}
.founder-card {
  max-width: 1150px;
  margin: auto;
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  display: flex;
  gap: 50px;
  padding: 50px;
}
.founder-image {
  flex: 0 0 38%;
}
.founder-image img {
  width: 100%;
  height: auto;
  border-radius: 22px;
  object-fit: cover;
}
.founder-content {
  flex: 1;
}
.founder-subtitle {
  font-size: 14px;
  letter-spacing: 0.5px;
  color: #777;
  margin-bottom: 18px;
}
.founder-content p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 18px;
}
.founder-name {
    color: #d91a21;
    font-weight: 500;
    font-size: 17px;
	font-family: "Prata", serif;
}
h6.founder-subtitle {
    color: #d91a21;
    font-size: 26px;
    line-height: 1.5;
    margin: 20px 0px;
}
.founder-name span {
  color: #777;
  font-size: 14px;
}
.founder-signature img {
  margin-top: 10px;
  max-width: 140px;
}
@media (max-width: 991px) {
  .founder-card {
    flex-direction: column;
    padding: 35px;
  }

  .founder-image {
    width: 100%;
  }
}
/* Teams */

    .team-section {
      padding: 80px 0;
      background: #fff;
      position: relative;
    }

    .splide__slide {
      display: flex;
      flex-direction: column;
      align-items: center;
      transform-origin: center center !important;
      transition: transform 0.3s ease;
      margin: 0 12px;
    }

    .team-info-box {
      width: 100%;
      background: #0A0A12;
      padding: 18px 20px;
      text-align: left;
      border-radius: 0px 0px 12px 12px;
      position: absolute;
      left: 0;
      bottom: 0;
    }

    .splide__slide img {
      width: 100%;
      height: 400px;
      object-fit: cover;
      border-radius: 12px;
      transition: all ease 0.5s;
      filter: grayscale(100%);
    }

    .splide__slide img:hover {
      filter: grayscale(0);
    }

    .team-main-info-box {
      position: relative;
      width: 100%;
      padding: 0px;
      display: flex;
      flex-direction: column;
    }

    .team-name {
      font-weight: 450;
      font-size: 36px;
      line-height: normal;
      color: #fff;
      margin: 0px;
    }

    .team-role {
      font-size: 16px;
      font-weight: 400;
      color: #01DEFF;
      margin: 0 0 5px 0;
    }

    #our_team {
      cursor: grab;
      position: relative;
    }

    #our_team.is-dragging {
      cursor: grabbing;
    }

    .custom-cursor {
      position: absolute;
      top: 0;
      left: 0;
      width: 100px;
      height: 100px;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: rgba(0, 0, 0, 0.6);
      border-radius: 50%;
      pointer-events: none;
      transform: translate(-50%, -50%);
      display: none;
      transition: transform 0.1s ease;
      text-transform: uppercase;
      color: #fff;
    }

    .drag-indicator {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 40px;
      height: 40px;
      background-color: rgba(0, 0, 0, 0.5);
      border-radius: 50%;
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
    }

    #our_team:hover .drag-indicator {
      display: flex;
    }
	.splide__list{
		gap: 20px;
	}
	.team-role {
		color: #d91a21;
		font-weight: 500;
		font-size: 22px;
		font-family: "Prata", serif;
		text-align: center;
	}
	.team-name{
		color: #fff;
		font-weight: 500;
		font-size: 14px;
		font-family: "Prata", serif;
		text-align: center;	
	}
	section.team-section h3 {
		text-align: center;
		color: #d91a21;
		font-weight: 500;
		font-size: 26px;
		margin-bottom: 40px;
	}
.event-video-wrapper {
  position: relative;
  max-width: 800px;
  margin: auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5);
}

.event-video-wrapper video {
  width: 100%;
  display: block;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.15),
    rgba(0,0,0,0.6)
  );
}
.event-details {
  margin-top: 60px;
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease;
}
.event-details.active {
  opacity: 1;
  transform: translateY(0);
}
.event-details h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
	color: #000;
}
.event-details h2 span {
    color: #eb1c24;
}
.event-info {
  font-size: 20px;
  letter-spacing: 0.5px;
  justify-content: center;
  gap: 20px;
  display: flex;	
}
.event-info strong {
    color: #eb1c24;
	font-family: 'Prata';
    font-size: 18px;
}
.event-info p {
  margin: 10px 0;
  font-family: 'Prata';
  font-size: 18px;	
}
section.sec-2 a.btn2 {
    color: #000;
}
/* Responsive */
@media (max-width: 768px) {
  .event-details h2 {
    font-size: 34px;
  }

  .event-info {
    font-size: 18px;
  }
}
section.sec-2 {
    padding: 40px 0px;
    text-align: center;
}

.showcase-section {
  padding: 80px 0;
  background: #f9f9f9;
}

.showcase-section .section-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.showcase-card {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.showcase-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.showcase-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.showcase-title {
  padding: 20px;
  font-size: 20px;
  font-weight: 600;
  color: #222;
}
.showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
	gap: 20px;
}
.showcase-image img {
    width: 65px;
    height: 65px;
}
h3.showcase-title {
    font-size: 16px;
    margin: 15px 0px;
}
.showcase-card {
    border: 1px solid #eb1c2426;
    border-radius: 5px;
	padding: 5px;
    text-align: center;
}
section.showcase-section {
    padding: 40px 0px;
}
.section-title {
    margin-bottom: 40px;
    color: #000;
    text-align: center;
}
.showcase-card {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease;
}

.showcase-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.showcase-card:hover {
  transform: translateY(-8px) scale(1.02);
}

/* Contact Us */

/* Contact Page */
.contact-page {
  padding: 80px 0;
  background: #f9f9f9;
}

.page-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
  color: #000;	
}

/* .contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 70px;
} */
.contact-info{
	gap: 10px;
}
.contact-info .info-box {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  width: 310px;	
}

.contact-info h3 {
  margin-bottom: 8px;
  color: #000;	
}

.contact-info a {
  color: #000;
  text-decoration: none;
}

.contact-map iframe {
  width: 100%;
  height: 350px;
  border: 0;
  border-radius: 15px;
}

.info-box p{
 color: #d21920;
 margin: 0px;	
}

.info-box a{
 color: #d21920;
  margin: 0px;		
}

/* FAQ */

        .tab-section-accordion-button {
            color: #333;
            font-weight: bold;
            background-color: #ec5e5e78; 
            border-radius: 10px;
            transition: background-color 0.3s ease, transform 0.3s ease; 
        }
        .tab-section-accordion-button:not(.collapsed) {
            background-color: #4c86b7; 
            color: #fff;
            transform: scale(1.05); 
        }
        .accordion-item {
            margin-bottom: 20px; 
            border-radius: 10px;
            border: 1px solid #ddd; 
            background-color: #e6f2ff; 
            transition: background-color 0.3s ease; 
        }
        .accordion-body {
            background-color: #fff;
            border-radius: 10px;
            padding: 20px;
        }
section.faqs {
    padding: 40px 0px;
}
.accordion-button:not(.collapsed) {
    color: white;
    background: linear-gradient(90deg, #eb1c24, #000);
    box-shadow: none;
}
button.accordion-button.tab-section-accordion-button {
    font-family: 'dashicons';
}
.accordion-body {
    font-family: 'dashicons';
}

/* Full Website Responsive  */
@media (max-width: 991px) {
	
	.slider-header {
    top: 36px; 
}
	.slider-logo img {
    height: 50px;
    width: 100%;
    position: relative;
    top: 0px;
    left: 10px;
}

.hamburger .line {
    width: 30px;
	height: 2px;
}	
.rows .three {
    top: 0px;  
}
	.container.icn-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
	.about_img img {
    width: 669px !important;
    
}
	.timeline-event-copy {
    padding: 10px 0px;
    width: 90%;
}
	.about_sec.col-md-6 {
    flex: 0 0 auto;
    width: 100% ;
}
	section.founder-section {
    padding: 60px 104px;
    background: #000;
}
	.founder-image img {
    width: 100%;
    height: 535px;
   
}
	.showcase-grid {
    grid-template-columns: 1fr 1fr;
}
	.contact-info.fade-left {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
section.abt-pg-section .row {
    flex-direction: column-reverse !important;
}	
}
@media (max-width: 767px) {

	
footer .row {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
	.contact-info .info-box {
    width: auto;
    height: 135px;
}
	.pricing-table {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
	.team-section {
    padding: 80px 93px;
    
}
	.team-main-info-box {
    width: 88%;
}
	.slide.active .slide-content {
    bottom: 24px;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}
	.about_img img {
    width: 487px !important;
}
	.event-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
	.gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
	.copyright .row {
    display: grid;
    grid-template-columns: 1fr;
}
.bt-flx{
	flex-direction: column !important;	
}
.info-box p {
    font-size: 12px;
}
	
}
@media (max-width: 667px) {
	section.founder-section {
    padding: 60px 56px;
    background: #000;
}
	.pricing-table {
    gap: 13px;
   
}
	.card {
    width: 239px;
}
.about img {
   width: 325px !important;
}
.timeline{
	max-width: 100% !important;	
}		
	section.founder-section {
    padding: 60px 76px;
    background: #000;
}
	.founder-image img {
    width: 100%;
    height: 401px;
}
	.founder-card {
    gap: 25px; 
}
	h6.founder-subtitle {
    margin: 5px 0px;
}
	.gallery {
    gap: 12px;
}
}
@media (max-width: 568px) {
	.slider-header {
    padding: 0px; 
}
	p#breadcrumbs {
    padding: 140px 100px 68px;
}
	section.founder-section {
    padding: 60px 28px;
    background: #000;
}
	.team-section {
    padding: 80px 33px;
}
}
@media (max-width: 479px) {
	.about_img img {
    width: 431px !important;
	height: 100% !important;		
}
	section.founder-section {
    padding: 60px 0px;
    background: #000;
}
	h2.timeline-heading {
    font-size: 25px;
}
	.timeline-event-copy h3 {
    font-size: 19px;
}
	.container.icn-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}
	.event-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 13px;
}
	.event-image {
    height: 378px;
}
	.pricing-table {
    display: grid;
    grid-template-columns: 1fr;
}
	.card {
    width: 100%;
}
.price span {
    font-size: 52px;
    /* margin-right: 8px; */
    left: 22%;
    top: 13%;
}
	.section-title {
    margin-bottom: 23px;
}
	.gallery {
    display: grid;
    grid-template-columns: 1fr;
}
	footer .row {
    display: grid;
    grid-template-columns: 1fr;
}
	.col-lg-3.col-md-6.mb-4.footer-logo {
    height: 140px;
}
	.about img {
    width: 420px;
}
	.founder-card {
    flex-direction: column;
    padding: 20px;
}
	section.founder-section {
    padding: 60px 20px;
    background: #000;
}
	p#breadcrumbs {
    padding: 140px 86px 68px;
}
	.showcase-section .section-title {
    margin-bottom: 26px;
}
	.showcase-grid {
    grid-template-columns: 1fr;
    gap: 13px;
}
	.contact-info.fade-left {
    display: grid;
    grid-template-columns: 1fr;
}
}
@media (max-width: 414px) {
	.page-title {
    font-size: 32px;
    margin-bottom: 26px;
}
	.contact-info {
    gap: 0px;
}
	.section-title {
    margin-bottom: 23px;
    font-size: 32px;
}
	p#breadcrumbs {
    padding: 140px 53px 68px;
}
	.price span {
    left: 16%;
    top: 13%;
}
}
@media (max-width: 375px) {
.m{
		font-size: 24px;
}
section.about_sec p{
		line-height: 1.6;
}
h2 {
		font-size: 24px;
}
section.founder-section {
		 padding: 10px;
}
.about_img img {
        width: 355px !important;
}
h2.timeline-heading {
        font-size: 24px;
}
.timeline {
	max-width: 80%;
}
.bt-flx{
	flex-direction: column !important;	
}
/* .btn2::after {
    left: 22px;
    width: 70%;
} */
.btn2{
	font-size: 14px;	
}
.event-info p{
	font-size: 14px;
}
.event-details h2 {
        font-size: 24px;
}	
.section-title {
   font-size: 24px !important;
}
h3.showcase-title {
	font-size: 12px;
}	
.fullscreen-nav li a {
   font-size: 24px;
}
.section-title {
   font-size: 24px;
}
.page-title {
   font-size: 24px;
}		

}
@media (max-width: 360px) {
	
}


