@import url("https://fonts.googleapis.com/css?family=Bangers|Cinzel:400,700,900|Lato:100,300,400,700,900|Lobster|Lora:400,700|Mansalva|Muli:200,300,400,600,700,800,900|Open+Sans:300,400,600,700,800|Oswald:200,300,400,500,600,700|Roboto:100,300,400,500,700,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap");

:root {
  --color-1: #fff;
  --color-2: #7bc7bf;
  --color-3: #df5145;
  --color-4: #464699;
  --color-5: #f3c148;
  --color-6: #000;
  --color-7: #f8f9fa;
  --font-size: 1rem;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  font-family: "Poppins", sans-serif;
  scroll-behavior: smooth;
  font-size: var(--font-size);
}

/* global css */
/* Primary Button */

.bg-c1 {
  background-color: var(--color-1);
}

.bg-c2 {
  background-color: var(--color-2);
}

.bg-c3 {
  background-color: var(--color-3);
}

.bg-c4 {
  background-color: var(--color-4);
}

.bg-c5 {
  background-color: var(--color-5);
}

.bg-c6 {
  background-color: var(--color-6);
}

.bg-c7 {
  background-color: var(--color-7);
}

.button-primary {
  background-color: var(--color-4);
  color: var(--color-1);
  font-size: var(--font-size);
  padding: 10px 20px;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  text-decoration: none;
  display: inline-block;
  width: max-content;
}

.button-primary:hover {
  background-color: var(--color-5);
  transform: translateY(-2px);
}

/* Secondary Button */
.button-secondary {
  background-color: var(--color-5);
  color: var(--color-1);
  font-size: var(--font-size);
  padding: 12px 25px;
  border: none;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  text-decoration: none;
  border: 1px solid var(--color-5);
  display: inline-block;
  width: max-content;
  cursor: pointer;
}

.button-secondary:hover {
  background-color: var(--color-4);
  transform: translateY(-2px);
  border: 1px solid var(--color-5);
}

.button-secondary:disabled {
  pointer-events: none;
}

h1,
h2,
h3,
h4,
h5,
h5 {
  /* margin: 0 !important; */
}

hr {
  margin: 0 !important;
}

h1 span,
h2 span,
h3 span,
h4 span,
h5 span,
h6 span {
  color: var(--color-4);
}

a {
  text-decoration: none;
}

section .container,
section .container-fluid {
  padding-top: 7rem;
  padding-bottom: 7rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
}

.title-wrapper {
  margin-bottom: 2rem;
}

.title-wrapper .border-bottom {
  text-align: center;
  display: inline-block;
  height: 4px;
  width: 120px;
  position: relative;
  background-color: var(--color-4);
  border-bottom: none !important;
  border-radius: 4px;
  overflow: hidden;
}

.title-wrapper .border-bottom::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 4px;
  width: 20px;
  background-color: var(--color-6);
}

header {
  z-index: 999;
}

#home {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background-color: #464699;
  background-image: url("Assets/hero-banner.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#events-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background-color: #464699;
  background-image: url("Assets/events-bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#membership-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background-color: #464699;
  background-image: url("Assets/background-img\ 2.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* whats included in Insider Club css */

body {
  font-family: "Roboto", sans-serif;
}

.insider-section {
  background-color: #9c9cdf;
  padding: 3rem 1rem;
  /* Updated padding */
}

.section-title-insdierClub {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  text-align: center;
  font-weight: 500;
  animation: fadeInDown 1s ease-out;
}

.benefit-card {
  background: white;
  border-radius: 25px;
  /* Updated border-radius */
  padding: 0.75rem;
  /* Updated padding */
  margin-bottom: 1rem;
  /* Updated margin-bottom */
  height: 100px;
  /* Updated height */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: relative;
}

.benefit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: 0.5s;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.benefit-card:hover::before {
  left: 100%;
}

.benefit-text {
  font-size: 1.2rem;
  font-weight: 500;
  /* Make text bold */
  line-height: 1.3;
  margin: 0;
  opacity: 0;
  animation: fadeIn 0.5s ease-out forwards;
}

.join-button {
  background: var(--color-4);
  color: var(--color-1);
  border: none;
  border-radius: 50px;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  margin-top: 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.join-button:hover {
  background: var(--color-5);
  color: var(--color-6);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.join-button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300%;
  height: 300%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%) rotate(35deg);
  transition: 0.5s;
  opacity: 0;
}

.join-button:hover::after {
  opacity: 1;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Stagger card animations */
.benefit-card:nth-child(1) .benefit-text {
  animation-delay: 0.2s;
}

.benefit-card:nth-child(2) .benefit-text {
  animation-delay: 0.4s;
}

.benefit-card:nth-child(3) .benefit-text {
  animation-delay: 0.6s;
}

.benefit-card:nth-child(4) .benefit-text {
  animation-delay: 0.8s;
}

.benefit-card:nth-child(5) .benefit-text {
  animation-delay: 1s;
}

.benefit-card:nth-child(6) .benefit-text {
  animation-delay: 1.2s;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    /* Updated margin-bottom */
  }

  .benefit-card {
    height: auto;
    min-height: 80px;
    /* Updated min-height */
    padding: 0.5rem;
    /* Updated padding */
  }

  .benefit-text {
    font-size: 1.2rem;
    /* Updated font-size */
  }

  .insider-section {
    padding: 2rem 1rem;
    /* Updated padding */
  }
}

.companylogo {
  border-radius: 10px;
}

section {
  position: relative;
}

.navbar .nav-link {
  font-weight: 600;
  font-size: 1.1rem;
  /* padding: 0 !important; */
  text-transform: uppercase;
  color: var(--color-6);
}

.navbar .nav-item {
  position: relative;
}

.navbar .nav-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-4);
  transition: width 0.3s ease-in-out;
}

.navbar .nav-item:hover::after {
  width: 100%;
}

.navbar .nav-link:hover {
  color: var(--color-4) !important;
  transition: color 0.3s ease-in-out;

  /* border-bottom: 2px solid var(--color-4); */
}

.overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(19, 19, 19, 0.4);
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  width: 100%;
}

.hero-content h1 {
  font-family: "Georgia", serif;
}

.hero-content h1 span,
.stats-text {
  color: var(--color-5);
}

.social-media-icons {
  display: flex;
  gap: 15px;
}

.social-media-icons .icon img {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.social-media-icons .icon img:hover {
  transform: scale(1.2);
}

.offcanvas-body .menu {
  background-color: #fff;
  border-radius: 30px;
  gap: 10px;
}

.content-wrapper {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 0;
  overflow: hidden;
  background-color: (var(--color-5));
}

.circle-image {
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: absolute;
  z-index: 1;
  overflow: hidden;
}

.circle-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.circle-image:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.circle-image-left {
  width: 150px;
  height: 150px;
  left: 0;
  bottom: 20px;
}

.circle-image-right {
  width: 220px;
  height: 220px;
  right: 0;
  top: 20px;
}

.event-cards .card {
  height: 100%;
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-cards .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.event-cards .card-img-top {
  width: 100%;
  object-fit: cover;
}

.event-cards .card-body {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
}

.event-cards .card-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.event-cards .card-text {
  flex-grow: 1;
  font-size: 1.1rem;
  line-height: 1.6;
}

.event-cards .btn {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
  align-self: center;
  margin-top: auto;
  border-radius: 25px;
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.event-cards .btn:hover {
  transform: scale(1.05);
}

#membership {
  background-color: #333;
  color: white;
}

#events {
  background-color: #333;
  color: white;
}

#mailing {
  background-color: #333;
  color: white;
}

/* Services Section Styles */
.image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 300px;
}

.flip-card {
  background-color: transparent;
  width: 100%;
  perspective: 1000px;
  margin-bottom: 20px;
  margin: 0 15px;
  margin-bottom: 10px;
  border-radius: 8px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  border-radius: 15px;
  overflow: hidden;
}

.flip-card-front {
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
}

.flip-card-front {
  background-color: #fff;
  color: #333;
}

.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card-body {
  padding: 20px;
  text-align: left;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card-title {
  margin-bottom: 10px;
  font-weight: bold;
}

.service-card-description {
  font-size: 1rem;
  margin-bottom: 15px;
  color: #666;
}

.service-card-body .know-more-btn {
  margin-top: auto;
}

.slick-arrow {
  position: absolute;
  top: 50%;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 50px;
  background-color: var(--color-4);
  border-radius: 50%;
  color: var(--color-1);
  font-size: 20px;
  cursor: pointer;
  z-index: 1;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  transform: translateY(-50%);
}

.slick-slide {
  margin-left: 15px;
  margin-right: 15px;
}

.slick-prev {
  left: -60px;
}

.slick-next {
  right: -60px;
}

.list-group-item {
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  border: none;
  padding: 20px;
  transition: all 0.3s ease;
  border-left: 5px solid transparent;
  position: relative;
}

.list-group-item:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

.list-group-item:hover {
  background-color: #f1f3f5;
  border-left: 5px solid #f78484;
}

.li-title {
  font-weight: 600;
  color: #333;
  font-size: 1.1rem;
  flex-grow: 1;
}

.redirect-icon img {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.redirect-icon img:hover {
  transform: scale(1.2);
}

.team .item-inner {
  padding: 1rem 0.75rem;
}

.team .item-inner img {
  height: 7rem;
  width: 7rem;
  margin: auto;
}

.slick-dots {
  display: flex;
  padding: 0;
  margin: 0;
  list-style-type: none;
  justify-content: center;
  gap: 10px;
  margin-top: 50px;
}

.slick-dots button {
  height: 20px;
  width: 20px;
  border-radius: 50%;
  outline: none;
  border: none;
  font-size: 0;
  background-color: #ccc;
}

.slick-dots .slick-active button {
  background-color: var(--color-4);
}

/* stats css/numbers */
.stats-item {
  text-align: center;
  padding: 20px;
  border-radius: 50%;
  width: 200px;
  height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  color: white;
  box-shadow: 0 6px 12px rgba(255, 255, 255, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stats .row .col-md-6:nth-of-type(1) .stats-item {
  background-color: var(--color-4);
}

.stats .row .col-md-6:nth-of-type(2) .stats-item {
  background-color: var(--color-4);
}

.stats .row .col-md-6:nth-of-type(3) .stats-item {
  background-color: var(--color-4);
}

.stats-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(247, 132, 132, 0.4);
}

.stats-number {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 5px;
}

.stats-label {
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.intro-text {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 2rem;
}

/* founder css */
.founder-section {
  padding: 50px 0;
}

.founder-image-container {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.founder-image {
  /* width: 50%;
  height: auto; */
  transition: transform 0.3s ease;
  height: 500px;
}

.founder-image:hover {
  transform: scale(1.05);
}

.founder-info {
  padding: 20px;
}

.founder-name {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 10px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

/* .founder-title {
  font-size: 1.5rem;
  color: #666;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  transition-delay: 0.2s;
} */

.founder-bio {
  font-size: 1rem;
  margin-bottom: 15px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  transition-delay: 0.4s;
}

.founder-social {
  margin-top: 30px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  transition-delay: 0.6s;
}

.social-link {
  display: inline-block;
  margin-right: 15px;
  padding: 10px 20px;
  background-color: #007bff;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.social-link:hover {
  background-color: #0056b3;
}

/*our client css */
.client-logo-wrapper {
  padding: 10px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  width: 20%;
}

.logo-slider .client-logo-wrapper {
  opacity: 1;
}

.marketers-slider .client-logo-wrapper {
  opacity: 1;
}

.client-logo {
  width: 100%;
  max-width: 120px;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  position: relative;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #e0e0e0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.client-logo:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.client-logo img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#hiddenLogos {
  display: none;
}

#hiddenLogos.show {
  display: flex;
  flex-wrap: wrap;
}

.logos-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

footer {
  background-color: var(--color-4);
  color: var(--color-1);
}

footer .container {
  padding-top: 3rem;
}

footer .social-media-icons a:hover i::before {
  color: var(--color-5);
}

footer .social-media-icons a:hover svg path {
  fill: var(--color-5);
}

footer a {
  color: var(--color-1);
}

.announcement-bar {
  background-color: var(--color-5);
  position: sticky;
  top: 0;
  z-index: 1000;
  display: none;
}

.announcement-bar .close-btn {
  background-color: transparent;
  border: none;
  outline: none;
  cursor: pointer;
}

.newsletter input {
  outline: none;
  border: none;
}

.event-card-img {
  height: 400px !important;
  background-color: var(--color-6);
}

.event-card-img img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.gallery-slider {
  /* background-color: var(--color-1);
  color: var(--color-4); */
  /* margin-bottom: 100px; */
}

.gallery-slider .slick-prev {
  left: 80px;
}

.gallery-slider .slick-next {
  right: 80px;
}

#back-to-top {
  position: fixed;
  bottom: 50px;
  right: 40px;
  /* display: none; */
  z-index: 99;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 46px;
  font-size: 28px;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  visibility: hidden;
  background-color: var(--color-5);
  color: var(--color-6);
  border: none;
  padding: 0;
}

#back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

#back-to-top:active {
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

#back-to-top.show {
  opacity: 1;
  visibility: visible;
}

/* contact-form css */

.form-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px 0;
}

.form-label {
  margin-bottom: 8px;
  font-weight: 500;
}

.required {
  color: #666;
  font-weight: normal;
  font-size: 0.9em;
}

.form-control,
.form-select {
  border-radius: 25px;
  padding: 12px 20px;
  border: 1px solid #ddd;
}

textarea.form-control {
  min-height: 150px;
}

.alert {
  border-radius: 25px;
  margin-top: 20px;
}

.insider-club .left-image {
  height: 100vh;
  background-image: url("./Assets/insider-club.webp");
  position: relative;
  background-position: center;
  background-size: cover;
}

.insider-club .container-fluid {
  padding-top: 0;
  padding-bottom: 0;
}

.insider-club .img-wrapper {
  height: 100%;
  width: 100%;
}

.insider-club .overlay {
  background-color: rgba(19, 19, 19, 0.2);
}

@media (hover: none) and (pointer: coarse) {
  .event-cards .btn:hover {
    transform: none;
  }

  .event-cards .btn:active {
    transform: scale(0.95);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.5s ease forwards;
}

.instagram-media {
  width: 100% !important; /* Ensure it takes full width of the parent */
  min-width: 0 !important; /* Remove min-width */
  max-width: 100% !important; /* Prevent the embed from overflowing */
}

.insta-posts .post {
  position: relative;
  overflow: hidden;
  height: 350px;
}

.post a {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
}

.post img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Responsive Styles */

@media (max-width: 1400px) {
  .circle-image-right {
    width: 200px;
    height: 200px;
  }
}

@media (max-width: 991px) {
  section .container,
  section .container-fluid {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .offcanvas-body .menu {
    background-color: transparent;
  }

  .navbar .nav-item:hover::after {
    width: 0;
  }

  .slick-prev {
    left: -40px;
  }

  .slick-next {
    right: -40px;
  }

  .client-logo-wrapper {
    width: 25%;
  }

  .circle-image-left {
    width: 140px;
    height: 140px;
  }

  .circle-image-right {
    width: 140px;
    height: 140px;
  }

  .gallery-slider {
    margin-bottom: 100px;
  }

  .gallery-slider .slick-arrow {
    top: unset;
    bottom: -100px;
    height: 40px;
    width: 40px;
  }

  .gallery-slider .slick-prev {
    left: 50%;
    transform: translateX(-100%);
    margin-right: 20px;
  }

  .gallery-slider .slick-next {
    left: 50%;
    transform: translateX(0%);
    margin-left: 20px;
  }

  .insider-club .left-image {
    /* height: auto; */
    height: 300px;
  }

  .insider-club .img-wrapper {
  }
}

/* Responsive Design for Small Screens */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .image-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .logo-holder {
    text-align: center;
  }

  .event-cards .card {
    height: auto;
  }

  .event-cards .card-body {
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .flip-card {
    margin: 0;
    margin-bottom: 30px;
  }

  .service-card-title {
    font-size: 1.25rem;
  }

  .service-card-description {
    font-size: 0.9rem;
  }

  .card-title {
    font-size: 1.3rem;
  }

  .li-title {
    font-size: 1rem;
  }

  .list-group-item {
    padding: 15px;
  }

  .slick-dots {
    margin-top: 30px;
  }

  .slick-dots button {
    height: 15px;
    width: 15px;
  }

  .social-media-icons .icon img {
    width: 30px;
    height: 30px;
  }

  .client-logo-wrapper {
    width: 33.333%;
  }

  .circle-image {
    position: static;
  }

  #back-to-top {
    right: 20px;
  }

  .founder-image-container {
    margin-bottom: 30px;
  }

  .founder-info {
    text-align: center;
  }

  .team .item-inner img {
    height: 5rem;
    width: 5rem;
  }

  #initialLogos {
    display: none !important;
  }

  .slick-prev {
    left: 0;
  }

  .slick-next {
    right: 0;
  }

  .insta-posts .post {
    height: 300px;
  }
}

@media (max-width: 576px) {
  .client-logo-wrapper {
    width: 100%;
  }
}
