/* ===== CSS STARTS  ===== */

@font-face {
  font-family: "Satoshi Light";
  src: url("../fonts/satoshi/Satoshi-Light.otf") format("opentype");
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Satoshi";
  src: url("../fonts/satoshi/Satoshi-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Satoshi";
  src: url("../fonts/satoshi/Satoshi-Italic.otf") format("opentype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Satoshi";
  src: url("../fonts/satoshi/Satoshi-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Satoshi";
  src: url("../fonts/satoshi/Satoshi-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Satoshi";
  src: url("../fonts/satoshi/Satoshi-Black.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --font-main: "Satoshi", system-ui, -apple-system, sans-serif;
  --white: #ffffff;
  --black: #000000;
  --green: #00C950;
  --light-black : #1C1C1E;
  --primary: #1c274c;
  --secondary: #3b82f6;
  --red:#E32C2C;
  --light-blue:#BEDBFF;
  --extra-light-blue:#E7ECF6;
  --text-grey: #484848;
  --text-light-grey: #62748E;
  --extra-light-gray:#99A1AF;
  --text-electric-sky: #90A1B9;
  --font-x-small: 0.75rem;
  --font-small: 0.875rem;
  --font-medium: 1rem;
  --font-lg: 1.125rem;
  --font-xl: 1.375rem;
  --radius-lg: 6.25rem;
  --transition: 0.4s all;
  --speed: 15s; 
}





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

html {
  font-size: 1rem;
  overflow-x: hidden !important;
}

body {
  font-family: var(--font-main) !important;
  background-color: var(--white);
  color: var(--black);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden !important;
  position: relative;

}

body.modal-open {
    padding-right: 0 !important;
    overflow: hidden;
}

hr{
  background-color: #c8c8c9 ;
  height: 2px;
}
ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0;
}
a {
  text-decoration: none;
  color: var(--black);
}
p {
  font-size: var(--font-small);
  margin-bottom: 0;
}
input:focus,
textarea:focus,
select:focus,
button:focus,
a:focus {
  outline: 0 !important;
  box-shadow: none !important;
}


/* ===== CUSTOM COLORS CLASSES STARTS ===== */

/* --- Background Color Utilities --- */
.bg-white { background-color: var(--white) !important; }
.bg-black { background-color: var(--black) !important; }
.bg-light-black { background-color: var(--light-black) !important; }
.bg-primary { background-color: var(--primary) !important; }
.bg-secondary { background-color: var(--secondary) !important; }
.bg-red { background-color: var(--red) !important; }
.bg-light-blue { background-color: var(--light-blue) !important; }
.bg-extra-light-blue { background-color: var(--extra-light-blue) !important; }
.bg-gray { background-color: var(--text-grey) !important; }
.bg-light-gray { background-color: var(--text-light-grey) !important; }
.bg-extra-light-gray { background-color: var(--extra-light-gray) !important; }
.bg-electric-sky { background-color: var(--text-electric-sky) !important; }
.bg-green{background-color: var(--green);}


.text-white { color: var(--white) !important; }
.text-dark { color: var(--black) !important; } 
.text-light-black { color: var(--light-black) !important; }
.text-primary { color: var(--primary) !important; }
.text-secondary { color: var(--secondary) !important; }
.text-red { color: var(--red) !important; }
.text-light-blue { color: var(--light-blue) !important; }
.text-extra-light-blue { color: var(--extra-light-blue) !important; }
.text-gray { color: var(--text-grey) !important; }
.text-light-gray { color: var(--text-light-grey) !important; }
.text-extra-light-gray { color: var(--extra-light-gray) !important; }
.text-electric-sky { color: var(--text-electric-sky) !important; }

/* ===== CUSTOM COLORS CLASSES ENDS===== */





/* Base Max-Widths */
.max-w-10  { max-width: 10%  !important; }
.max-w-15  { max-width: 15%  !important; }
.max-w-20  { max-width: 20%  !important; }
.max-w-25  { max-width: 25%  !important; }
.max-w-30  { max-width: 30%  !important; }
.max-w-35  { max-width: 35%  !important; }
.max-w-40  { max-width: 40%  !important; }
.max-w-45  { max-width: 45%  !important; }
.max-w-50  { max-width: 50%  !important; }
.max-w-55  { max-width: 55%  !important; }
.max-w-60  { max-width: 60%  !important; }
.max-w-65  { max-width: 65%  !important; }
.max-w-70  { max-width: 70%  !important; }
.max-w-75  { max-width: 75%  !important; }
.max-w-80  { max-width: 80%  !important; }
.max-w-85  { max-width: 85%  !important; }
.max-w-90  { max-width: 90%  !important; }
.max-w-95  { max-width: 95%  !important; }
.max-w-100 { max-width: 100% !important; }

/* --- Small devices (sm: 576px and up) --- */
@media (min-width: 576px) {
  .max-w-sm-10  { max-width: 10%  !important; }
  .max-w-sm-15  { max-width: 15%  !important; }
  .max-w-sm-20  { max-width: 20%  !important; }
  .max-w-sm-25  { max-width: 25%  !important; }
  .max-w-sm-30  { max-width: 30%  !important; }
  .max-w-sm-35  { max-width: 35%  !important; }
  .max-w-sm-40  { max-width: 40%  !important; }
  .max-w-sm-45  { max-width: 45%  !important; }
  .max-w-sm-50  { max-width: 50%  !important; }
  .max-w-sm-55  { max-width: 55%  !important; }
  .max-w-sm-60  { max-width: 60%  !important; }
  .max-w-sm-65  { max-width: 65%  !important; }
  .max-w-sm-70  { max-width: 70%  !important; }
  .max-w-sm-75  { max-width: 75%  !important; }
  .max-w-sm-80  { max-width: 80%  !important; }
  .max-w-sm-85  { max-width: 85%  !important; }
  .max-w-sm-90  { max-width: 90%  !important; }
  .max-w-sm-95  { max-width: 95%  !important; }
  .max-w-sm-100 { max-width: 100% !important; }
}

/* --- Medium devices (md: 768px and up) --- */
@media (min-width: 768px) {
  .max-w-md-10  { max-width: 10%  !important; }
  .max-w-md-15  { max-width: 15%  !important; }
  .max-w-md-20  { max-width: 20%  !important; }
  .max-w-md-25  { max-width: 25%  !important; }
  .max-w-md-30  { max-width: 30%  !important; }
  .max-w-md-35  { max-width: 35%  !important; }
  .max-w-md-40  { max-width: 40%  !important; }
  .max-w-md-45  { max-width: 45%  !important; }
  .max-w-md-50  { max-width: 50%  !important; }
  .max-w-md-55  { max-width: 55%  !important; }
  .max-w-md-60  { max-width: 60%  !important; }
  .max-w-md-65  { max-width: 65%  !important; }
  .max-w-md-70  { max-width: 70%  !important; }
  .max-w-md-75  { max-width: 75%  !important; }
  .max-w-md-80  { max-width: 80%  !important; }
  .max-w-md-85  { max-width: 85%  !important; }
  .max-w-md-90  { max-width: 90%  !important; }
  .max-w-md-95  { max-width: 95%  !important; }
  .max-w-md-100 { max-width: 100% !important; }
}

/* --- Large devices (lg: 992px and up) --- */
@media (min-width: 992px) {
  .max-w-lg-10  { max-width: 10%  !important; }
  .max-w-lg-15  { max-width: 15%  !important; }
  .max-w-lg-20  { max-width: 20%  !important; }
  .max-w-lg-25  { max-width: 25%  !important; }
  .max-w-lg-30  { max-width: 30%  !important; }
  .max-w-lg-35  { max-width: 35%  !important; }
  .max-w-lg-40  { max-width: 40%  !important; }
  .max-w-lg-45  { max-width: 45%  !important; }
  .max-w-lg-50  { max-width: 50%  !important; }
  .max-w-lg-55  { max-width: 55%  !important; }
  .max-w-lg-60  { max-width: 60%  !important; }
  .max-w-lg-65  { max-width: 65%  !important; }
  .max-w-lg-70  { max-width: 70%  !important; }
  .max-w-lg-75  { max-width: 75%  !important; }
  .max-w-lg-80  { max-width: 80%  !important; }
  .max-w-lg-85  { max-width: 85%  !important; }
  .max-w-lg-90  { max-width: 90%  !important; }
  .max-w-lg-95  { max-width: 95%  !important; }
  .max-w-lg-100 { max-width: 100% !important; }
}

/* --- Extra large devices (xl: 1200px and up) --- */
@media (min-width: 1200px) {
  .max-w-xl-10  { max-width: 10%  !important; }
  .max-w-xl-15  { max-width: 15%  !important; }
  .max-w-xl-20  { max-width: 20%  !important; }
  .max-w-xl-25  { max-width: 25%  !important; }
  .max-w-xl-30  { max-width: 30%  !important; }
  .max-w-xl-35  { max-width: 35%  !important; }
  .max-w-xl-40  { max-width: 40%  !important; }
  .max-w-xl-45  { max-width: 45%  !important; }
  .max-w-xl-50  { max-width: 50%  !important; }
  .max-w-xl-55  { max-width: 55%  !important; }
  .max-w-xl-60  { max-width: 60%  !important; }
  .max-w-xl-65  { max-width: 65%  !important; }
  .max-w-xl-70  { max-width: 70%  !important; }
  .max-w-xl-75  { max-width: 75%  !important; }
  .max-w-xl-80  { max-width: 80%  !important; }
  .max-w-xl-85  { max-width: 85%  !important; }
  .max-w-xl-90  { max-width: 90%  !important; }
  .max-w-xl-95  { max-width: 95%  !important; }
  .max-w-xl-100 { max-width: 100% !important; }
}

.text-grey {
  color: var(--text-grey);
}
.text-theme {
  color: var(--text-grey);
}

.cs-container {
  max-width: 90rem;
  margin: auto;
  padding: 0 2rem;
}

.btn-theme,
.btn-theme-outline ,
.btn-theme-gray{
  background-color: var(--primary);
  color: var(--white);
  font-size: var(--font-small);
  padding: 0.625rem 1.25rem;
  font-weight: 500;
  border: 0.0625rem solid var(--primary);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  line-height: 1.5em;
}
.btn-theme:hover {
  color: var(--white);
  border-color: var(--secondary);
  background-color: var(--secondary);
}
.btn-theme-outline {
  background-color: transparent;
  color: var(--primary);
}
.btn-theme-outline:hover {
  color: var(--white);
  background-color: var(--primary);
}

.btn-theme-gray{
   background-color: #F3F4F6;
  color: var(--black);
 border: 0.0625rem solid #F3F4F6;
}
.btn-theme-gray:hover{
   color: var(--white);
  background-color: var(--primary);
  border-color: var(--primary);
}

.heading-1 {
  text-transform: capitalize;
  /* font-size: 4.0625rem; */
  font-size:52px;
  font-weight: 500;
  line-height: 1.1;
}
.heading-2 {
  /* max-width: 55.8125rem; */
  margin: auto;
  text-align: center;
  /* display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem; */
}
.heading-2 h2 {
  line-height: normal;
  /* font-size: 3.125rem; */
  font-size: 40px;
  font-weight: 700;
  text-transform: capitalize;
}
.heading-2 span {
    width: fit-content;
    background-color: var(--primary);
    color: var(--white);
    padding: 8px 14px;
    font-size: 12px;
    border-radius: 8px;
    line-height: 1;
    font-weight: 500;
}
.heading-2 p {
  /* max-width: 45rem; */
  font-size: var(--font-medium);
  font-weight: 400;
}

/* .heading-3 {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 1.25rem;
} */
.heading-3 h3 {
   line-height: normal;
  /* font-size: 3.125rem; */
  font-size: 40px;
  font-weight: 700;
  text-transform: capitalize;
}
.heading-3 span {
 width: fit-content;
    background-color: var(--primary);
    color: var(--white);
    padding: 8px 14px;
    font-size: 13px;
    border-radius: 7px;
    line-height: 1;
    font-weight: 500;
}


.heading-3 p {
  font-size: var(--font-medium);
}
.section-padding {
  padding: 7rem 0;
}



.shadow-effect {
  position: absolute;
  width: 41.25rem;
  height: 41.25rem;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.7; 

  background: radial-gradient(
    circle at center,
    #d9f1ff 0%,
    rgba(217, 241, 255, 0.95) 18%,
    rgba(217, 241, 255, 0.85) 28%,
    rgba(217, 241, 255, 0.7) 38%,
    rgba(217, 241, 255, 0.55) 48%,
    rgba(217, 241, 255, 0.4) 58%,
    rgba(217, 241, 255, 0.25) 68%,
    rgba(217, 241, 255, 0.15) 76%,
    rgba(217, 241, 255, 0.07) 84%,
    rgba(217, 241, 255, 0.03) 90%,
    transparent 100%
  );

  filter: blur(1.75rem);
}

.shadow-effect-2 {
  position: absolute;
  width: 41.25rem;
  height: 41.25rem;
  border-radius: 50%;
  pointer-events: none;

  opacity: 0.15; 

  background: radial-gradient(
    circle at center,
    #1268fb 0%,
    rgba(18, 104, 251, 0.95) 18%,
    rgba(18, 104, 251, 0.85) 28%,
    rgba(18, 104, 251, 0.7) 38%,
    rgba(18, 104, 251, 0.55) 48%,
    rgba(18, 104, 251, 0.4) 58%,
    rgba(18, 104, 251, 0.25) 68%,
    rgba(18, 104, 251, 0.15) 76%,
    rgba(18, 104, 251, 0.07) 84%,
    rgba(18, 104, 251, 0.03) 90%,
    transparent 100%
  );

  filter: blur(1.75rem);
}


.tab-content {
  height: 0;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s;
}

.tab-content.active {
  height: auto;
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.tab-content.active {
  transition-delay: 0.2s;
}

.modal-content {
  background-color: transparent !important;
  border: none !important;
  border-radius: 0 !important;
}

.modal.fade.show {
    padding-right: 0 !important;
    display: block;
}


header {
  position: absolute;
  top: 1.875rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  z-index: 1000;
}
.header-navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 3.375rem;
  background-color: var(--white);
  border: 0.0625rem solid var(--white);
  box-shadow: 0rem 0.25rem 1.5rem 0.0625rem #0000001f;
  backdrop-filter: blur(2.5rem);
  border-radius: 6.25rem;
}


@keyframes headerSlideDown {
  from {
    transform: translate(-50%, -100%);
    opacity: 0;
  }
  to {
    transform: translate(-50%, 0);
    opacity: 1;
  }
}

header.sticky {
  position: fixed;
  top: 0; 
  left: 50%;
  width: 100%;
  animation: headerSlideDown 0.5s ease forwards;
  margin-top: 0.5rem;
}

header.sticky .header-navigation {
  /* padding: 0.75rem 2.5rem; */
  background-color: rgba(255, 255, 255, 0.9); 
  box-shadow: 0rem 0.5rem 2rem rgba(0, 0, 0, 0.1);
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top:32px;
    left: 0;
    min-width: 200px;
    background-color: var(--white);
    border: 1px solid rgba(59, 130, 246, 0.1); 
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 0;
    overflow: hidden;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 1000;
    display: unset !important;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
  width: 100%;
  padding: 16px;
    display: block;
    color: #666666;
    font-size: 14px;
    font-weight: 300;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.dropdown-menu li a:hover {
    background-color: #f8fafc;
}


.dropdown:hover .fa-chevron-down {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}


.header-navigation .header-navigation-logo {
  /* width: 14.375rem; */
    width: auto !important;
    max-width: 14rem;            
    height: auto;
    display: block;
}
.header-navigation nav {
  display: flex;
  align-items: center;
  gap: 3rem;
}
.header-navigation nav ul {
  display: flex;
  align-items: center;
  gap: 3rem;
  font-weight: 700;
}
.header-navigation nav ul a {
  font-size: var(--font-medium);
  transition: 0.4s all;
  font-family: "Satoshi";
  font-weight: 500;
}
.header-navigation nav ul a i{
  font-size: 14px;
}
.header-navigation nav ul a:hover {
  color: var(--primary);
}
.header-navigation nav a.login-btn {
  padding: 0.5rem 2.1875rem;
}



/* =====================
   MOBILE MENU STYLES
   ===================== */

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 2.25rem;
  height: 2.25rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1100;
  background-color: var(--primary);
  border-radius: 6px;
}

.mobile-menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: #fff;
  border-radius: 2px;
  transition: transform 0.35s ease, opacity 0.3s ease, width 0.3s ease;
  transform-origin: center;
}

/* Animate to X when open */
.mobile-menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.mobile-menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
  width: 0;
}
.mobile-menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile overlay backdrop */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1050;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.mobile-nav-overlay.is-visible {
  opacity: 1;
}



.hero-section {
  padding-top: 15.625rem;
  padding-bottom: 8.25rem;
  position: relative;
}
.hero2 {
  padding-top: 12.625rem;
  padding-bottom: 4.25rem;
}

.hero-shadow {
    position: absolute;
    top: 15%;
    left: 5%;
    z-index: -1;
    width: 39.625rem;
    height: 39.625rem;
}
.hero-section .hero-shadow-2 {
  position: absolute;
  top: 40%;
  /* left: 30.3125rem; */
  left: 35%;
  width: 42rem;
  height: 42rem;
  z-index: -1;
}
.hero2 .hero-shadow-2 {
  position: absolute;
  top: 22rem;
  left: unset;
  right: 0;
  width: 660px;
  height: 660px;
  z-index: -1;
}
.hero-section .hero-content span {
    background: var(--white);
    border: 0.4px solid #C5DAFD;
    font-weight: 700;
    font-size: var(--font-medium);
    padding: 7px 30px 7px 43px;
    width: fit-content;
    border-radius: 6.25rem;
    position: relative;
    display: block;
    line-height: normal;
}

.hero-section .hero-content span::before {
    content: "";
    position: absolute;

    width: 0.625rem;
    height: 0.625rem;
    border-radius: 50%;
    background-color: var(--secondary);
    opacity: 0.7;

    top: 50%;
    transform: translateY(-50%);
    left: 1.5rem; /* keep your horizontal position */
}
.hero-section .hero-img {
  border-radius: 2.5rem;
}
.hero-section .hero-img.sponser-banner .sponer-bx {
    background-image: url(https://tof-cms-staging-uploads-4f772ec0.s3.us-east-1.amazonaws.com/public/pattern-bg.png);
    background-position: center center;
    background-size: cover;
    width: 90%;
    margin-left: auto;
    min-height: 500px;
    border: 1px solid #3B82F6;
    border-radius: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    color: var(--white);
}

.sponer-bx span{
  position: absolute;
  top: 0;
  background-color: var(--secondary);
  color: var(--white);
  font-size: 1rem;
  padding: 10px 40px;
    border-bottom-right-radius: 1.8rem;
    border-bottom-left-radius: 1.8rem;
}
.hero-section .hero-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.hero-section .hero-img .sponer-bx img {
  height: 100%;
  width: 75%;
}
.hero-section .hero-content p {
  /* max-width: 33.125rem; */
  font-weight: 400;
  font-size: var(--font-medium);
}
.hero-section .hero-content .hero-counts {
  display: flex;
}
.hero-section .hero-content .hero-counts li {
  border-right: 0.0625rem solid #d7d6ff;
  padding: 0rem 1.25rem;
}
.hero-section .hero-content .hero-counts li:first-child {
  padding-left: 0;
}
.hero-section .hero-content .hero-counts li:last-child {
  border: none;
}
.hero-section .hero-content .hero-counts .hero-count-title {
  font-size: 1.375rem;
  font-weight: 700;
}
.hero-section .hero-content .hero-counts .hero-count-desc {
  font-size: 12px;
  color: #666666;
}
.hero-section .hero-video {
  position: relative;
}
.hero-section .hero-video .hero-img {
  width: 41.25rem;
  position: absolute;
  top: -6.25rem;
  right: 0;
      animation: rotateImg 20s linear infinite;
}

@keyframes rotateImg {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.hero-section .hero-video .video-box {
  position: absolute;
  top: -1.875rem;
  right: 4.875rem;
  overflow: hidden;
  width: 31.625rem;
  height: 33.5rem;
  border-radius: 3.125rem;
  cursor: pointer;
}

.hero-section .hero-video .video-box video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.our-center .map-row {
  display: flex;
  align-items: center;
}
.location-box {
  background: linear-gradient(135deg, #eff6ff 0%, #ffffff 100%);
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0rem 1.5625rem 3.125rem -0.75rem #00000040;
  width: 100%;
  max-width: 28.625rem;
  padding-bottom: 1.3rem;
  margin-left: auto;
}
.location-box .location-box-header {
  background-color: var(--primary);
  padding: 1.5625rem;
}
.location-box .location-box-header h5 {
  font-size: 2.25rem;
  color: var(--white);
  margin-bottom: 0.3125rem;
}
.location-box .location-box-header p {
  color: #f5f8ff;
  font-size: var(--font-lg);
  font-weight: 400;
}
.location-box .location-content {
  padding: 1rem 1.75rem;
}
.location-box .location-content .location-count {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.825rem;
}
.location-box .location-content .location-count .location-count-card {
  background-color: var(--white);
  flex: auto;
  padding: 0.625rem 0.9375rem;
  border-radius: 0.875rem;
  box-shadow: 0rem 0.0625rem 0.1875rem 0rem #0000001a;
  border: 0.0625rem solid #f3f4f6;
}

.location-box
  .location-content
  .location-count
  .location-count-card
  .location-count-title {
  font-size: 0.75rem;
  color: #6a7282;
}
.location-box
  .location-content
  .location-count
  .location-count-card
  .location-count-count {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--black);
}
.location-box .location-content .location-centers {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
  margin: 1.875rem 0 1.25rem 0;
}
.location-box .location-content .location-centers .location-lists h6 {
  color: #1b1b1b;
  margin-bottom: 0.625rem;
}
.location-box .location-content .location-centers .location-lists ul {
  padding-left: 1.5625rem;
  display: flex;
  flex-direction: column;
  gap: 0.425rem;
}
.location-box .location-content .location-centers .location-lists ul li {
  color: #4a5565;
  font-size: var(--font-small);
  position: relative;
  list-style: none;
}

.location-box
  .location-content
  .location-centers
  .location-lists
  ul
  li::before {
  content: "●";
  position: absolute;
  left: -1.25rem;
  top: 0.1875rem;
  font-size: var(--font-x-small);
}

.location-box
  .location-content
  .location-centers
  .location-lists:first-of-type
  ul
  li::before {
  color: #57a24c;
}

.location-box
  .location-content
  .location-centers
  .location-lists:last-of-type
  ul
  li::before {
  color: #f69333;
}

.location-box .location-content .location-network {
  background: linear-gradient(135deg, #eff6ff 0%, #ffffff 100%);
  border: 0.0625rem solid #dbeafe;
  border-radius: 1.5rem;
  padding: 1.25rem;
}
.location-box .location-content .location-network {
  display: flex;
  flex-direction: column;
  gap: 0.9375rem;
}
.location-box .location-content .location-network h6 {
  color: #101828;
  font-weight: 700;
  font-size: var(--font-medium);
}
.location-box .location-content .location-network .location-progress-list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.location-box
  .location-content
  .location-network
  .location-progress-list
  .location-progress
  .location-progress-header {
  display: flex;
  justify-content: space-between;
}
.location-box
  .location-content
  .location-network
  .location-progress-list
  .location-progress
  .location-progress-title {
  font-size: var(--font-small);
  color: #4a5565;
}

.location-box
  .location-content
  .location-network
  .location-progress-list
  .location-progress
  .location-progress-percentage {
  font-size: var(--font-small);
  font-weight: 700;
}
.location-box
  .location-content
  .location-network
  .location-progress-list
  .location-progress:first-of-type
  .location-progress-percentage {
  color: #00a63e;
}
.location-box
  .location-content
  .location-network
  .location-progress-list
  .location-progress:last-of-type
  .location-progress-percentage {
  color: #101828;
}
.location-box
  .location-content
  .location-network
  .location-progress-list
  .location-progress
  .location-progressbar {
  width: 100%;
  height: 0.5rem;
  margin: 0.3125rem 0;
  background-color: #f3f4f6;
  position: relative;
  overflow: hidden;
  border-radius: 6.25rem;
}
.location-box
  .location-content
  .location-network
  .location-progress-list
  .location-progress
  .location-progressbar::after {
  width: auto;
  height: 0.5rem;
  content: "";
  position: absolute;
  border-radius: 6.25rem;
}
.location-box
  .location-content
  .location-network
  .location-progress-list
  .location-progress:first-of-type
  .location-progressbar::after {
  width: 85%;
  background: linear-gradient(90deg, #2b7fff 0%, #155dfc 100%);
}
.location-box
  .location-content
  .location-network
  .location-progress-list
  .location-progress:last-of-type
  .location-progressbar::after {
  width: 30%;
  background: linear-gradient(90deg, #00c950 0%, #00a63e 100%);
}

.benefits-section .image-box {
  position: relative;
  width: 32.1875rem;
  height: 33.625rem;
  /* margin: auto; */
}
.benefits-section .image-box .img-triangle {
  position: absolute;
  left: -1.25rem;
  bottom: -1.875rem;
  width: 36.625rem;
  height: 31.25rem;
  z-index: -1;
}
.benefits-section .image-box .main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 3.75rem;
}
.benefits-section .image-box .triangle-flip {
  transform: scaleX(-1);
  left: unset;
  right: -1.25rem;
}

.benefits-section hr {
  margin: 1.875rem 0;
  border-color: #00000063;
}
.benefits-section .benefits-list {
  display: flex;
  align-items: start;
  gap: 3.25rem;
}
.benefits-section .benefits-list .benefits-box {
  /* display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem; */
  height: 100%;
}
.benefits-section .benefits-list .benefits-box .benefits-icon img {
  /* height: 4.6875rem;
  width: 4.6875rem; */
  height: 60px;
  width: 60px;
  object-fit: contain;
}

.benefits-section .benefits-list .benefits-box h4 {
  font-size: 1.2rem;
  font-weight: 600;
}
.benefits-section .benefits-list .benefits-box p {
  font-size: var(--font-medium);
}
.benefits-section .benefits-list ul {
  padding-left: 1.25rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  width: 100%;
}
.benefits-section .benefits-list ul li {
  position: relative;
  padding: 0 0.625rem;
  font-size: var(--font-small);
  font-weight: 700;
  
}

.benefits-section .benefits-list ul li::before {
    content: "";
    position: absolute;
    top: 0.1rem;
    left: -20px;
    width: 18px;
    height: 18px;
    background-image: url("https://tof-cms-staging-uploads-4f772ec0.s3.us-east-1.amazonaws.com/public/benefits-tick.svg");
    background-size: contain;
    background-repeat: no-repeat;
}
/* .benefits-section .benefits-list ul li::before {
  content: url("https://tof-cms-staging-uploads-4f772ec0.s3.us-east-1.amazonaws.com/public/benefits-tick.svg");
  top: 0.125rem;
  position: absolute;
  left: -1.25rem;
} */

.why-choose {
  background-image: url("https://tof-cms-staging-uploads-4f772ec0.s3.us-east-1.amazonaws.com/public/why-choose-bg.png");
  background-position: center;
  background-size: 100% 100%;
}
.why-choose .heading-3 h3 {
  color: var(--white);
}
.why-choose .heading-3 span {
  background-color: var(--secondary);
}
.why-choose .heading-3 p {
  color: var(--white);
  max-width: 34.375rem;
}

.why-choose .why-choose-ul {
  position: relative;
  padding-left: 1.25rem;
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.why-choose .why-choose-ul li {
  position: relative;
  padding: 0 0.625rem;
  font-size: var(--font-medium);
  color: var(--white);
  font-weight: 400;
}
.why-choose .why-choose-ul li::before {
  content: url("https://tof-cms-staging-uploads-4f772ec0.s3.us-east-1.amazonaws.com/public/why-choose-tick.svg");
  position: absolute;
  top: 0.125rem;
  left: -1.25rem;
}
.why-choose .why-choose-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8rem;
  position: relative;
}
.why-choose .why-choose-points::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  height: 0.01rem;
  transform: translateY(-50%);
  width: 100%;
  background-color: var(--secondary);
}
.why-choose .why-choose-points::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  height: 100%;
  transform: translateX(-50%);
  width: 0.01rem;
  background-color: var(--secondary);
}
.why-choose .why-choose-points .why-choose-item {
  /* display: flex;
  flex-direction: column;
  gap: 1.25rem; */
}
.why-choose .why-choose-points .why-choose-item img {
  height: 3rem;
  width: 3rem;
  object-fit: contain;
}
.why-choose .why-choose-points .why-choose-item h5 {
  color: var(--white);
  font-size: 1.875rem;
}

.why-choose .why-choose-points .why-choose-item p {
  color: var(--white);
  font-size: var(--font-lg);
}
.about-us .about-us-content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  position: relative;
}

.about-us .about-us-content .about-us-content-img {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.about-us .about-us-content .about-img-2 {
  position: absolute;
  top: 0;
  right: 0;
  height: 35.375rem;
  width: 33.5625rem;
  object-fit: contain;
}

.about-us .about-us-content .about-img {
  width: 13.4375rem;
  height: 14.6875rem;
  border-radius: 32px;
  /* border-radius: 0.25rem; */
}
.about-us .about-us-content .heading-3 p {
  max-width: 38vw;
}
.about-us .about-us-content .about-us-content-list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: start;
}
.about-us .about-us-content .about-us-content-list ul {
  padding-left: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.9375rem;
  width: 100%;
}
.about-us .about-us-content .about-us-content-list ul li {
  position: relative;
  padding: 0 0.625rem;
  font-size: var(--font-medium);
  font-weight: 500;
}
.about-us .about-us-content .about-us-content-list ul li::before {
  content: url("https://tof-cms-staging-uploads-4f772ec0.s3.us-east-1.amazonaws.com/public/benefits-tick.svg");
  position: absolute;
  top: 0;
  /* top: 0.3125rem; */
  left: -1.25rem;
}

.sponser {
  background-color: #3b82f64d;
}
.sponser .sponser-list {
  position: relative;
  z-index: 1;
}

.sponser .sponser-box {
    background-color: var(--white);
    border-radius: 24px;
    position: relative;
    padding: 1.5rem 1.875rem;
    border: 1px solid #f3f4f6; 
    transition: all 0.5s ease-in-out;
    cursor: pointer;
}

.sponser .sponser-box:hover {
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.2); 
    border-color: #3b82f6; 
}

.sponser .sponser-box span {
  position: absolute;
  top: -1.875rem;
  left: 0.8125rem;
  color: var(--white);
  background-color: var(--secondary);
  padding: 8px 32px 8px 32px;
  font-size: 12px;
  border-top-right-radius: 1.6181rem;
  border-top-left-radius: 1.6181rem;
  z-index: -1;
}
.sponser .sponser-box img {
    width: 12rem;
    height: 4.5rem;
    object-position: center;
    object-fit: contain;
    display: block;
    margin: auto;
}

.events .event-card {
  position: relative;
  border-radius: 40px;
  overflow: hidden;
  height: 43.125rem;
  width: 43.125rem;
  display: flex;
  flex-direction: column;
  justify-content: end;
  /* padding: 2.875rem;   */
  gap: 1rem;
        box-shadow: inset 0 0 0 2px rgb(1 14 55 / 15%);
}
.events
.event-card-desc{
   display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


.events .event-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  /* border: 0.125rem solid #010e3726; */
  background:
    linear-gradient(
      183.78deg,
      rgba(1, 14, 55, 0) 16.62%,
      rgba(1, 14, 55, 0.8) 81.02%
    ),
    linear-gradient(0deg, rgba(166, 179, 194, 0), rgba(166, 179, 194, 0));
}
.events .event-card img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 40px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;


}
.events .event-card .event-date {
    width: fit-content;
    background-color: var(--secondary);
    color: var(--white);
    padding: 0.4rem 0.85rem;
    font-size: 12px;
    border-radius: 0.4375rem;
    line-height: 1.1;
    font-weight: 400;
}
.events .event-card h5 {
  color: var(--white);
  font-size: 1.875rem;
  font-weight: 700;
}
.events .event-card p {
  color: var(--white);
  opacity: 0.8;
  margin-top: 1.25rem;
}

.events .event-list {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}
.events .event-list .event-box-2 {
  border: 0.125rem solid #3b82f699;
  /* padding: 1.5625rem 2rem; */
  border-radius: 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.625rem;
  min-height: 14.6875rem;
}
.events .event-list .event-box-2 span {
  width: fit-content;
  background-color: var(--primary);
  color: var(--white);
  padding: 0.4rem 0.85rem;
  font-size: 12px;
  border-radius: 0.4375rem;
  line-height: 1.1;
  font-weight: 400;
}
.events .event-list .event-box-2 h5 {
  font-size: 1.3125rem;
  text-transform: capitalize;
  font-weight: 700;
}
.events .event-list .event-box-2 p {
  font-size: var(--font-small);
  color: var(--text-grey);
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.events .event-list .event-box-2 a {
  text-transform: uppercase;
  font-weight: 500;
  font-size: var(--font-small);
  color: var(--primary);
  margin-left: auto;
  width: fit-content;
  display: block;
}
footer {
  background-color: var(--primary);
}
footer .footer {
  padding-top: 6rem;
  padding-bottom: 6rem;
}
/* footer .footer-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
} */
footer .footer-content img {
  width: 18rem;
}
footer .footer-content p {
  color: #ffffffcc;
  /* font-size: var(--font-medium); */
  font-size: 14px;
  max-width: 80%;
}
footer .footer-content .social-links {
  display: flex;
  align-items: end;
  gap: 1rem;
}
footer .footer-content .social-links li a {
  padding: 0.3125rem;
  color: var(--white);
  transition: var(--transition);
}

footer .footer-content .social-links li a svg{
  height: 18px;
  width: 18px;
}

footer .footer-content .social-links li .twitter-icon svg{
 height: 15px !important;
}

footer .footer-content .social-links li .insta-icon svg{
 height: 17px !important;
}
footer .footer-content .social-links li a:hover {
  color: var(--secondary);
}
/* footer .footer-content-links {
  display: flex;
  gap: 2rem;
} */
/* footer .footer-content-links .quick-links {
  display: flex;
  flex-direction: column;
  gap: 2rem;
} */
footer .footer-content-links .quick-links h5 {
  color: var(--white);
  font-weight: 500;
  font-size: 18px;
}
footer .footer-content-links .quick-links .quick-links-list {
  /* display: flex;
  flex-direction: column;
  gap: 1rem; */
}
footer .footer-content-links .quick-links .quick-links-list li a {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #ffffffcc;
  max-width: 18.75rem;
  transition: var(--transition);
  font-size: 14px;
}

footer .footer-content-links .quick-links .quick-links-list li a svg{
  width: 18px;
  height: 18px;
}
footer .footer-content-links .quick-links .quick-links-list li a:hover {
  color: var(--white);
}
footer .footer-content-links .quick-links .quick-links-list li a svg {
  flex-shrink: 0;
}

/* Menu shortcode — mirror the footer quick-links look when the
   [menu id="X"] block is dropped anywhere inside <footer>, even
   without a .footer-content-links wrapper. */
footer .tof-menu .quick-links h5,
footer .tof-menu .tof-menu-heading {
  color: var(--white);
  font-weight: 500;
  font-size: 18px;
}
footer .tof-menu .quick-links .quick-links-list li a,
footer .tof-menu .tof-menu-list li a,
footer .tof-menu .tof-menu-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #ffffffcc;
  max-width: 18.75rem;
  transition: var(--transition);
  font-size: 14px;
  text-decoration: none;
}
footer .tof-menu .quick-links .quick-links-list li a:hover,
footer .tof-menu .tof-menu-list li a:hover,
footer .tof-menu .tof-menu-link:hover {
  color: var(--white);
}

/* Generic defaults so the menu shortcode is still readable when
   dropped outside <footer> (e.g. on a content page). */
.tof-menu .tof-menu-heading,
.tof-menu .quick-links h5 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.75rem;
}
.tof-menu .tof-menu-list,
.tof-menu .quick-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.tof-menu .tof-menu-list li,
.tof-menu .quick-links-list li {
  margin-bottom: 0.4rem;
}
.tof-menu .tof-menu-list a,
.tof-menu .quick-links-list a,
.tof-menu .tof-menu-link {
  color: #475569;
  text-decoration: none;
  transition: color .15s ease;
}
.tof-menu .tof-menu-list a:hover,
.tof-menu .quick-links-list a:hover,
.tof-menu .tof-menu-link:hover {
  color: #1c274c;
  text-decoration: underline;
}

footer .copyright-footer {
  border-top: 0.0625rem solid var(--secondary);
  padding: 1.5rem 0;
  text-align: center;
  color: #ffffff99;
  font-weight: 400;font-size: 14px;
}
footer .copyright-footer span,
.copyright-footer a {
  color: var(--white);
}

.who-we-are .who-we-are-container {
  border: 16px solid #3b82f61a;
  border-radius: 3.75rem;
}
.who-we-are .who-we-are-box {
  background-image: url("https://tof-cms-staging-uploads-4f772ec0.s3.us-east-1.amazonaws.com/public/who-we-bg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 2.75rem;
  padding: 15px 20px;
  transition: var(--transition);
  background-color: #171717;
  display: flex;
  align-items: center;
}

.who-we-are .who-we-are-box .who-we-are-content {
  padding: 50px;
}
.who-we-are .who-we-are-box .who-we-are-content .heading-3 {
  color: var(--white);
}

.who-we-are .who-we-are-box .who-we-are-content .heading-3 p{
   font-family: "Satoshi Light";
  src: url("../fonts/satoshi/Satoshi-Light.otf") format("opentype");
  font-style: normal;
  letter-spacing: 0.8px;
}
.who-we-are .who-we-are-box .who-we-are-content .heading-3 span {
  background-color: var(--secondary);
}
.who-we-are .who-we-are-box .who-we-are-img {
  border-radius: 2.5rem;
  padding: 16px;
  overflow: hidden;
  box-shadow: -1px 0 0px #ffffffa5;
  background-color: #ffffff39;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}
.who-we-are .who-we-are-box .who-we-are-img.active {
  gap: 20px;
}
.who-we-are .who-we-are-box .who-we-are-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2rem;
}

.who-we-are .who-we-are-box a {
  background-color: var(--white);
  display: flex;
  align-items: center;
  gap: 0.725rem;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 100px;
  box-shadow: 0px 4px 24px 0px #00000033;
}

.who-we-are .who-we-are-box a svg{
  height: 0.8rem;
  width: 0.8rem;
}
.toggle-who-we-are {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.toggle-who-we-are.active {
  max-height: 1000px;
  /* margin-top: 1.25rem; */
}

.who-we-are .who-we-are-box .arrow-icon {
  transition: transform 0.3s ease;
}

.who-we-are .who-we-are-box .learn-btn.active .arrow-icon {
  transform: rotate(180deg);
}

/* 
.our-pillars .our-pillar-row {
  display: flex;
  gap: 3rem;
}
.our-pillars .our-pillar-cols {
  display: flex;
  flex-direction: column;
  gap: 5rem;
  flex: auto;
}
.our-pillars .our-pillar-cols:nth-child(2) {
  margin-top: 130px;
} */

.our-pillars .our-pillar-cols .our-pillar-cards {
  border: 1.5px solid rgb(59 130 246 / 30%);
  box-shadow: 8px 10px 17px 1px rgb(59 130 246 / 12%);
  padding: 80px 30px;
  border-radius: 20px;
  width: 100%;
  position: relative;
  /* display: flex;
  flex-direction: column;
  gap: 1.25rem; */
  transition: all 0.4s ease-in-out;

}

.our-pillars .our-pillar-cols .our-pillar-cards:hover {
  cursor: pointer;
    transform: translateY(-10px); 
    border-color: #3B82F6;
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
    background-color: #f8faff; 
}
.our-pillars .our-pillar-cols .our-pillar-cards h5 {
  font-size: 2.5rem;
  font-weight: 400;
}
/* .our-pillars .our-pillar-cols .our-pillar-cards p {
  max-width: 550px;
} */
.our-pillars .our-pillar-cols .our-pillar-cards .our-pillar-icon {
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 100%;
  overflow: hidden;
  background-color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  /* top: -50px; */

  /* Vertically centers the icon on the top border */
    top: -2.75rem; 
  
    /* Ensure it sits above the card border */
    z-index: 2;
}
.our-pillars .our-pillar-cols .our-pillar-cards .our-pillar-icon svg {
  height: 2.5rem;
  width: 2.5rem;
}

/* .our-team .our-team-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem 3rem;
} */
/* .our-team .our-team-row {
  padding-top: 50px;
} */
/* Base State (Updated) */
.our-team .our-team-row .our-team-card {
  border-radius: 30px;
  border: 1px solid #3b82f64d;
  text-align: center;
  background: transparent; 
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.our-team .our-team-row .our-team-card:hover {
  transform: translateY(-10px); 
  border-color: #3b82f6;
  box-shadow: 0 10px 30px -10px rgba(59, 130, 246, 0.4); 
}

.our-team .our-team-row .our-team-card h5 {
  font-size: 26px;
  font-weight: 600;
}
.our-team .our-team-row .our-team-card .our-team-img {
  /* max-height: 520px;
  height: 100%; */
  height: clamp(300px, 40vw, 520px);
  width: 100%;
  /* width: 418px; */
  overflow: hidden;
  border: 1px solid #3b82f64d;
  border-radius: 24px;
}
.our-team .our-team-row .our-team-card .our-team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

/* .our-team .our-team-row .our-team-card .our-team-content {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
} */
.our-team .our-team-row .our-team-card .our-team-content span {
  position: relative;
  display: inline-block;
  width: fit-content;
  margin: auto;
  /* padding: 0 35px; */
  font-size: 0.9rem;
}

.our-team .our-team-row .our-team-card .our-team-content span::before {
    content: "";
    background: #3b82f64d;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    position: absolute;
    top: 8px;
    left: -16px;
}
.our-team .our-team-row .our-team-card .our-team-content span::after {
    content: "";
    background: #3b82f64d;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    position: absolute;
    top: 8px;
    right: -16px;
}
/* .our-contact .contact-form .row {
  gap: 1.2rem 0;
} */
.our-contact .contact-form {
  /* margin-top: 5.625rem; */
  overflow: hidden;
  background-color: var(--white);
  box-shadow: 0px 4px 26px 0px #42474c14;
  padding: 30px;
  border-radius: 30px;
}
.our-contact .contact-form form {
  max-width: 1050px;
  margin: auto;
}
.our-contact .contact-form label {
  font-weight: 500;
  display: block;
  margin-bottom: 0.5rem;
  font-size: var(--font-small);
}
.our-contact .contact-form label span {
color: #A4A9B7;
  font-size: var(--font-medium);
}
.our-contact .contact-form input,
.our-contact .contact-form textarea,
.our-contact .contact-form select {
  width: 100%;
  background-color: var(--white);
  border: 0.0625rem solid #e5e5ea;
  padding: 0.625rem 0.9375rem;
  border-radius: 0.625rem;
  color: var(--black);
  height: 52px;
}
.our-contact .contact-form textarea {
  height: auto;
}


.section-scroll-tabs {
    display: flex;
    flex-wrap: nowrap;
    gap: 1.25rem;
    padding-bottom: 15px; 
    padding-right: 10px;
    list-style: none;
    overflow-x: scroll;
     -webkit-overflow-scrolling: touch;

}

.section-scroll-tabs li {
  flex: 0 0 auto;
}



.section-scroll-tabs::-webkit-scrollbar {
    display: none;
}

.cstom-scroll-bar {
    height: 6px;
    background-color: #f1f1f1;
    width: 100%;
    max-width: 200px;
    margin-left: auto;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    cursor: pointer; 
}

#scroll-thumb {
    height: 100%;
    width: 60px; 
    background-color: var(--primary);
    border-radius: 10px;
    position: absolute;
    left: 0;
    top: 0;
    transition: transform 0.1s linear;
    cursor: pointer;
}

  
.section-scroll-tabs li a {
  background-color: var(--white);
  color: var(--white);
  white-space: nowrap;
  padding: 10px 30px;
  border-radius: 100px;
  display: block;
  color: var(--primary);
  border: 1px solid #000000;
  transition: all 0.5s ease;
}

.section-scroll-tabs li a:hover{
  background-color: var(--primary);
  color: #fff
}
.section-scroll-tabs li:first-of-type a {
  background-color: var(--primary);
  color: var(--white);
}

.section-scroll-tabs li:first-of-type a {
    background-color: var(--primary);
    color: var(--white);
}

.section-scroll-tabs li a.active {
       background-color: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.section-scroll-tabs li:first-of-type a.active {
      background-color: var(--primary);
}

.sponser-section .sponser-row .sponser-logo-box {
  border: 1.13px solid #3b82f6;
  border-radius: 30.53px;
  height: 186px;
  align-content: center;
  transition: all 0.5s ease-in-out;
    cursor: pointer;
}

.sponser-section .sponser-row .sponser-logo-box:hover {
    transform: translateY(-5px); 
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.2); 
    border-color: #3b82f6; 
}

.sponser-section .sponser-row .sponser-logo-box img {
    transition: transform 0.5s ease-in-out;
}
.sponser-section .sponser-row .sponser-logo-box:hover img {
    transform: scale(1.05);
}

.sponser-section .sponser-row .sponser-logo {
    width: 18rem;
    height: 5rem;
    margin: auto;
}
/* .sponser-section .sponser-row .sponser-logo {
  width: 20.625rem;
  height: 6.1875rem;
  margin: auto;
} */
.sponser-section .sponser-row .sponser-logo-box img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  object-position: center;
}
.events-hero {
  padding-top: 200px;
  /* padding-bottom: 100px */
}
.events-hero .rows-events {
  position: relative;
  height: 33.3125rem;
  border-radius: 52px;
  overflow: hidden;
  border: 16px solid #3b82f61a;
}
.events-hero .rows-events .events-bg {
  height: 100%;
  width: 100%;
  border-radius: 40px;
  object-fit: cover;
  object-position: center;
  padding: 0;
  user-select: none;
}

.events-hero .rows-events .events-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  max-width: 48.8125rem;
  width: 100%;
  padding: 25px;
  text-align: center;
  /* display: flex;
  flex-direction: column;
  gap: 1rem; */
}
.events-hero .rows-events .events-content h1 {
  color: var(--white);
}
.events-hero .rows-events .events-content p {
  color: var(--white);
  font-size: 1rem;
}
.events-section .events-search {
  display: flex;
  align-items: center;
  /* gap: 1rem; */
  background: var(--white);
  border: 1px solid #3b81f4;
  box-shadow: 0px 0px 22px 1px #0000001c;
  border-radius: 60px;
  padding: 7px 7px 7px 30px;
}
.events-section .events-search svg {
  flex-shrink: 0;
}
.events-section .events-search input {
  width: 100%;
  padding: 10px;
  border: none;
  color: var(--black);
}
.events-section .events-search input::placeholder {
  color: #9f9f9f;
}
.events-section .events-search button {
  padding: 10px 30px;
  min-width: fit-content;
}
.events-section .events-filter-tabs {
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, #f9fafb 0%, #f3f4f6 100%);
  border-radius: 100px;
  padding: 7px;
  box-shadow: 0px 10px 15px -3px #0000001a;
  border-top: 1px solid #e5e7eb;
  gap: 0.625rem;
}
.events-section .events-filter-tabs button {
  flex: auto;
  background-color: transparent;
  width: 100%;
  border: none;
  border-radius: 100px;
  padding: 10px 20px;
  font-weight: 700;
  color: var(--text-grey);
}
.events-section .events-filter-tabs button.active {
  background-color: var(--white);
  box-shadow: 0px 4px 6px -1px #3b81f41a;
  color: var(--secondary);
}
.events-section .events-filter-tabs button.active:focus {
  box-shadow: 0px 4px 6px -1px #3b81f41a !important;
}
.events-section .events-date-filter {
  /* margin-top: 25px; */
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.events-section .events-date-filter .events-date-filter-arrow {
  padding: 8px;
  cursor: pointer;
}

.events-section .events-date-filter button {
  background-color: var(--primary);
  color: var(--white);
  padding: 12px 30px;
  border-radius: 100px;
  font-size: var(--font-medium);
  border: 1px solid var(--primary);
  font-weight: 600;
}

.events-section .events-date-filter input {
    background-color: transparent;
    color: var(--primary) !important;
    font-weight: 600;
    border: 1px solid var(--primary);
    padding: 12px 12px;
    height: 50px;
    border-radius: 100px;
    font-size: var(--font-medium);
    width: auto;
    min-width: 0;
    max-width: 170px;
    display: inline-block;
    box-sizing: border-box;
    user-select: none;
    text-align: center;
}

.events-section .events-date-filter input::placeholder{
  color: var(--primary);
}

.events-section .event-card {
  background-color: var(--white);
  transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.events-section .event-card:hover {
 transform: scale(1.003);
    border-color: var(--secondary); 
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.2);
    background-color: rgba(255, 255, 255, 0.05);
}

.events-section .event-card:active {
    box-shadow: 0 5px 10px rgba(59, 130, 246, 0.2);
}
.events-section .event-card-date-list {
  background: #3b82f633;
  border-radius: 1rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.events-section .event-card-date-list .event-date-box {
  padding: 30px 20px;
  height: 148px;
}
.events-section .event-card-date-list {
  height: 100%;
}
.events-section .event-card-date-list .event-date-box .event-date {
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: capitalize;
}
.events-section .event-card-date-list .event-date-box .event-day {
  font-size: 1rem;
  text-transform: capitalize;
  list-style: disc;
  padding-left: 20px;
}
.events-section .event-card-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.events-section .event-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 3px solid #3b82f680;
  backdrop-filter: blur(9px);
  border-radius: 21px;
  padding: 30px 90px;
  height: 148px;
  position: relative;
}
.events-section .event-card::before {
  content: "";
  height: 72%;
  position: absolute;
  left: 45px;
  width: 0px;
  border: 3px solid #3b81f4;
  border-radius: 6.25rem;
}
.events-section .event-card .event-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: auto;
}
.events-section .event-card .event-content .event-date {
  font-weight: 500;
  font-size: var(--font-small);
}
.events-section .event-card .event-content .event-title {
  font-size: 1.5rem;
  font-weight: 600;
}
.events-section .event-card .event-content .event-description {
  font-size: var(--font-small);
  font-weight: 500;
  position: relative;
  padding-left: 15px;
}
.events-section .event-card .event-content .event-description::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--secondary);
}
.events-section .events-pagination-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* margin-top: 50px; */
}
.events-section .events-pagination-container .events-pagination {
  display: flex;
  align-items: center;
}

.events-pagination .events-date-filter-arrow svg{
  height: 0.8rem;
  width: 0.8rem;
}
.events-section .events-pagination-container .events-pagination button {
  text-transform: capitalize;
  color: #848484;
}
.events-section .events-pagination-container select {
  background-color: transparent;
  color: var(--primary);
  font-weight: 600;
  border: 1px solid var(--primary);
  padding: 12px 40px 12px 30px;
  border-radius: 100px;
  font-size: var(--font-medium);
  width: fit-content;
}
.orthoForum-advocacy p {
  font-size: 1rem;
  color: var(--text-grey);
}
/* .orthoForum-advocacy .orthoForum-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
} */

.advocacy-committee{
border-radius: 32px;
width: 100%;
height: 100%;
}


.orthoForum-advocacy .orthoForum-content h5 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 15px;
}

.advocacy-sub-committees .committees-card-grid .committees-card {
  border: 1.5px solid #3b82f64d;
  box-shadow: 8px 10px 17px 1px #3b82f61f;
  border-radius: 20px;
  transition: all 0.5s ease-in-out; 
  cursor: pointer;
}

.advocacy-sub-committees .committees-card-grid .committees-card:hover {
  transform: translateY(-5px);
  border-color:var(--secondary); 
  box-shadow: 0px 15px 30px 0px #3b82f633; 
}

.advocacy-sub-committees
  .committees-card-grid
  .committees-card
  .committees-card-detail
  h5 {
  font-size: 24px;
  font-weight: 600;
}
.advocacy-sub-committees
  .committees-card-grid
  .committees-card
  .committees-card-detail
  p {
  padding-left: 20px;
  position: relative;
  font-size: var(--font-small);
}
.advocacy-sub-committees
  .committees-card-grid
  .committees-card
  .committees-card-detail
  p::before {
    content: "";
    position: absolute;
    top: 34%;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #3b81f4;
}
.advocacy-sub-committees
  .committees-card-grid
  .committees-card
  .committees-card-img {
  width: 161px;
  height: 161px;
  border-radius: 16px;
  overflow: hidden;
}
.advocacy-sub-committees
  .committees-card-grid
  .committees-card
  .committees-card-img
  img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
/* .resources-card-list {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
} */

.resources .resources-card {
    /* display: flex;
    align-items: center;
    justify-content: space-between; */
    border: 2px solid #3b82f680;
    backdrop-filter: blur(9px);
    border-radius: 16px;
    padding: 30px 90px;
    min-height: 120px;
    position: relative;
    transition: all 0.5s ease-in-out; 
    background: rgba(255, 255, 255, 0.05); 
}

.resources .resources-card:hover {
    transform: translateY(-4px) scale(1.005);
    border-color: #3b82f6; 
    backdrop-filter: blur(15px); 
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15); 
    cursor: pointer;
}
.resources .resources-card::before {
  content: "";
  height: 60%;
  position: absolute;
  left: 3%;
  width: 0px;
  border: 2px solid #3b81f4;
  border-radius: 6.25rem;
}
.resources
  .resources-card-list
  .resources-card
  .resources-content
  .resources-title {
  font-size: 24px;
  font-weight: 600;
}
.hero-contact .hero-content {
  width: 100%;
  margin: auto;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-contact .hero-content p {
  max-width: 100%;
}

.hero-contact .hero-content .contact-hero-social-links li {
    /* background: #f0f6f9; */
    border: 1px solid #a8cddf52;
    border-radius: 1.3rem;
    backdrop-filter: blur(0.5625rem);
    height: 5rem;
    width: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease-in-out;
    cursor: pointer;
}

.hero-contact .hero-content .contact-hero-social-links li a svg{
  height: 30px;
  width: 30px;
}
.hero-contact .hero-content .contact-hero-social-links li a {
    background: #1c274c;
    box-shadow: 0rem 0rem 1.375rem 0rem #0735855c;
    border-radius: 16px;
    height: 3.5rem;
    width: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease-in-out;
}

.hero-contact .hero-content .contact-hero-social-links li:hover {
    border-color: var(--secondary); 
    background: rgba(168, 205, 223, 0.15); 
    transform: translateY(-5px); 
}

.hero-contact .hero-content .contact-hero-social-links li:hover a {
    background: #1268FB; 
    box-shadow: 0rem 0rem 1.2rem 0rem rgba(18, 104, 251, 0.3); 
}

.hero-contact .hero-content .contact-hero-social-links li:hover a svg {
    filter: brightness(1.1);
}

.hero-contact .hero-content .contact-hero-social-links li a:focus {
  box-shadow: 0rem 0rem 1.375rem 0rem #0735855c !important;
}

.hero-auth .hero-content {
  justify-content: center;
  align-items: center;
  text-align: center;
}
/* .hero-auth .hero-content p {
  max-width: 60.6875rem;
} */
.auth-contact .contact-form .auth-contact-content {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}
.auth-contact .contact-form .auth-contact-content::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background:
    linear-gradient(
      180deg,
      rgba(16, 16, 16, 0) 16.7%,
      rgba(16, 16, 16, 0.8) 82.79%
    ),
    linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
}
.auth-contact .contact-form .auth-contact-content .auth-contact-bg {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
}
.auth-contact .contact-form .auth-contact-content .auth-logo {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  max-width:280px;
  width: 100%;
  /* height: 55px; */
}
.auth-contact .contact-form .auth-contact-content .auth-content {
  position: absolute;
  left: 0;
  bottom: 0;
  margin: 12px;
  z-index: 1;
  background: #1c274c66;
  border: 1px solid #ffffff4d;
  border-radius: 20px;
  color: var(--white);
  padding: 15px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 1rem;
}
.auth-contact .contact-form .auth-contact-content .auth-content p {
  font-size: var(--font-lg);
   font-family: "Satoshi Light";
  /* font-weight: 400; */
}
.auth-contact .contact-form .auth-contact-content .auth-content h6 {
  font-size: 20px;
}
.auth-contact .contact-form button,
.auth-contact .contact-form a {
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-size: var(--font-lg);
}

/* .auth-contact .contact-form {
  padding: 22px;
} */
.auth-contact .contact-form form {
  max-width: 600px;
}
.auth-contact .contact-form .auth-checkgroup {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.auth-contact .contact-form .auth-checkgroup a {
  color: #1c274c;
  font-weight: 500;
}
.auth-contact .contact-form .auth-checkgroup label {
  margin-bottom: 0;
  cursor: pointer;
  font-weight: 500;
  display: flex;
  align-items: center;
  color: #1c274c66;
}
.auth-contact .contact-form .auth-checkgroup span {
  font-weight: 400;
}

.auth-checkbox {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  cursor: pointer;
}

.auth-checkbox input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.cs-checkbox {
  border: 1px solid #878787;
  width: 20px;
  height: 20px;
  min-width: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  background: transparent;
  cursor: pointer;

  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    transform 0.15s ease;
}

.auth-checkbox:hover .cs-checkbox {
  border-color: var(--primary);
}

.auth-contact .contact-form .auth-checkgroup svg {
  color: var(--white);
}

.cs-checkbox svg {
  width: 1.2em;
  display: none;
  transform: scale(0.6);
  opacity: 0;
  transition: all 0.2s ease;
}

.auth-checkbox:has(input:checked) .cs-checkbox {
  background-color: var(--primary);
  border-color: var(--primary);
}

.auth-checkbox:has(input:checked) .cs-checkbox svg {
  display: block;
  transform: scale(1);
  opacity: 1;
}

.auth-checkbox input:focus-visible + .cs-checkbox {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.auth-checkbox:active .cs-checkbox {
  transform: scale(0.95);
}
.password-group {
  position: relative;
}
.password-group svg {
  color: #878787;
}

.password-eye {
  cursor: pointer;
  position: absolute;
  top: 45px;
  right: 20px;
  z-index: 1;
}
.eye-open {
  display: block;
}
.eye-close {
  display: none;
}
.latest-news .hero-content {
  text-align: center;
}
.latest-news .hero-content p {
  margin: auto;
}
/* .news-section .news-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 60px;
  gap: 3rem;
} */
.news-card {
  border: 0.89px solid var(--primary);
  /* padding: 35px 25px 25px 25px; */
  border-radius: 17.71px;
  background-color: var(--white);
  position: relative;
  cursor: pointer;
 transition: all 0.5s ease;
        overflow: hidden;
}


.news-card:hover {
    transform: translateY(-5px);
    border-color: #3B82F6;
    box-shadow: 0 15px 35px -5px rgba(59, 130, 246, 0.2), 
                0 10px 20px -10px rgba(59, 130, 246, 0.1);
    z-index: 5;
}


.news-card-img img {
    transition: transform 0.5s ease;
}
.news-card .news-date {
  position: absolute;
  top: 0;
  right: 40px;
  background-color: var(--secondary);
  color: var(--white);
  padding: 8px 20px;
  border-bottom-left-radius: 22px;
  border-bottom-right-radius: 22px;
  line-height: 1.4;
}
/* .news-card .news-card-content .news-card-img {
  display: flex;
  align-items: center;
  gap: 1rem;
} */
.news-card .news-card-content .news-card-img h6 {
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.6rem;
}

.news-card .news-card-content .news-card-img img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
}
.news-card .news-card-content p {
  color: #62748e;
  font-size: var(--font-medium);
  line-height: 1.4;
  padding: 20px 0;
}
.news-card .news-card-content a {
  display: flex;
  gap: 1rem;
  align-items: center;
  width: fit-content;
  margin-left: auto;
}

.news-section .news-pagination-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 3rem;
}
.news-section .news-pagination-container .total-result {
  color: #b5b7c0;
  font-size: var(--font-small);
}
.news-section .news-pagination-container .news-pagination {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.news-section .news-pagination-container .news-pagination ul {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.news-section .news-pagination-container .news-pagination li a,
.news-section .news-pagination-container .news-pagination button {
  background-color: #f5f5f5;
  color: #404b52;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.25rem;
  border: 1px solid #eeeeee;
  font-size: var(--font-x-small);
  transition: var(--transition);
}
.news-section .news-pagination-container .news-pagination li a.active {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}
.news-section .news-pagination-container .news-pagination li a:hover,
.news-section .news-pagination-container .news-pagination button:hover {
  background-color: var(--primary);
  color: var(--white);
}
.latest-news-detail .hero-content {
  height: 497px;
  border-radius: 33px;
  overflow: hidden;
  border: 2px solid rgba(1, 14, 55, 0.15);
  /* backdrop-filter: blur(4.5px); */
}
.latest-news-detail .hero-content img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
/* .news-detail-section {
  padding: 40px 0;
} */
/* .news-detail-section .news-detail-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
} */
.news-detail-section .news-detail-content .news-date {
  border-radius: 4.43px;
  background: var(--secondary);
  color: var(--white);
  width: fit-content;
  padding: 5px 60px;
}
.news-detail-section .news-detail-content p,
.news-detail-section .news-detail-content h1 {
  padding: 0;
}
.news-detail-section .news-detail-content h1 {
  font-size: 35px;
  font-weight: 700;
  max-width: 1300px;
}
.news-detail-section .news-detail-content p {
  font-size: var(--font-medium);
  color: rgba(0, 0, 0, 0.7);
  line-height: 24px;
}

.news-detail-section .news-detail-content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 1rem;
}
/* .news-detail-section .news-detail-content .news-detail-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  align-items: center;
  padding: 0;
} */
.news-detail-section .news-detail-content .news-detail-points img {
  border-radius: 30px;
  border: 2px solid rgba(1, 14, 55, 0.15);
  backdrop-filter: blur(4.5px);
  height: 22.5505rem;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
/* .news-detail-section .news-detail-content .news-detail-points:first-of-type {
  columns: 3;
} */
.news-detail-section .news-detail-content .news-detail-points h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 1.2rem;
  text-transform: capitalize;
}
.news-detail-section .news-detail-content .news-detail-points ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-left: 20px;
}
.news-detail-section .news-detail-content .news-detail-points ul li {
  font-size: var(--font-medium);
  position: relative;
  padding-left: 10px;
  font-weight: 500;
}
.news-detail-section .news-detail-content .news-detail-points ul li::before {
  content: url("https://tof-cms-staging-uploads-4f772ec0.s3.us-east-1.amazonaws.com/public/event-news2.svg");
  top: 0.125rem;
  position: absolute;
  left: -1.25rem;
}

.recommended-news {
  overflow: hidden;
}
.recommended-news .news-slider {
  overflow: visible;
  width: 100%;
}
.recommended-news .swiper-wrapper {
  align-items: stretch;
}
.recommended-news .swiper-slide {
  height: auto;
}
.recommended-news .news-card {
  height: 100%;
  min-height: 365px;
  display: flex;
  flex-direction: column;
}
.recommended-news .news-card .news-card-content {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.recommended-news .news-card .news-card-content p {
  flex: 1;
}
/* .recommended-news .recommend-news-row .recommend-news-heading {
  max-width: 500px;
} */
.recommended-news .recommend-news-row .recommend-news-heading h3 {
  font-size: 35px;
  font-weight: 700;
  margin-bottom: 10px;
}

.recommend-news-heading p{
  font-size: var(--font-medium);
}
.user-profile-section .user-profile-content {
  width: 100%;
  height: 14.8125rem;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background-image: url('https://tof-cms-staging-uploads-4f772ec0.s3.us-east-1.amazonaws.com/public/user-profile.png');
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.user-profile-section .user-profile-content::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    360deg,
    #353535 0%,
    rgba(0, 0, 0, 0.35) 30.68%,
    rgba(59, 130, 246, 0) 61.37%
  );
}
.user-profile-section .user-profile-content-detail {
  /* position: absolute;
  left: 10px;
  bottom: 10px;
  padding: 20px; */
  z-index: 2;
}
.user-profile-section .user-profile-content-detail h1 {
  color: var(--white);
  /* margin-bottom: 16px; */
  font-size: 2.5rem;
  font-weight: 700;
}
/* .user-profile-section .user-profile-content-detail ul {
  display: flex;
  align-items: center;
  gap: 1.5rem;
} */
.user-profile-section .user-profile-content-detail ul li {
  color: var(--white);
  display: flex;
  align-items: center;
  font-size: var(--font-medium);
  gap: 0.5rem;
}

.user-profile-section .user-profile-content-detail ul li svg{
  height: 1rem;
  width: 1rem;
}
.user-profile-section .user-profile-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  overflow: hidden;
}

.user-profile-detail-section .user-profile-map {
  height: 670px;
  width: 100%;
  border-radius: 0.75rem;
}
.user-profile-detail-section .user-profile-contact {
  border-radius: 17.126px;
  background: var(--white);
  box-shadow:
    0 12.233px 18.349px -3.67px rgba(0, 0, 0, 0.1),
    0 4.893px 7.34px -4.893px rgba(0, 0, 0, 0.1);
  /* padding: 35px; */
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 540px;
  margin-left: auto;
}
.user-profile-detail-section
  .user-profile-contact
  .user-profile-contact-footer {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: center;
}
.user-profile-detail-section
  .user-profile-contact
  .user-profile-contact-footer
  button,
.user-profile-detail-section
  .user-profile-contact
  .user-profile-contact-footer
  a {
  font-weight: 500;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  height: 44px;
  font-size: var(--font-medium);
}

.user-profile-detail-section .user-profile-detail h2 {
  font-size: 28px;
  font-weight: 600;
}
.user-profile-detail-section .user-profile-detail ul {
  /* margin-top: 30px; */
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.user-profile-detail-section
  .user-profile-detail
  ul
  li
  .user-profile-detail-icon,
.user-profile-detail-section
  .user-profile-detail
  .user-profile-detail-icon
  div {
  display: flex;
  align-items: center;
  gap: 0.4125rem;
  color: #6a7282;
  font-size: var(--font-medium);
  margin-bottom: 0.1875rem;
}
.user-profile-detail-section .user-profile-detail ul li span {
  display: block;
  font-size: var(--font-medium);
  font-weight: 500;
}
.user-profile-detail-section .user-profile-detail ul li span a:hover,
.user-profile-detail-section
  .user-profile-contact
  .user-profile-contact-footer
  a {
  color: var(--black);
}
.user-profile-detail-section .user-profile-detail h6 {
  font-size: var(--font-medium);
  line-height: 1.5rem;
  font-weight: 400;
  max-width: 23.1875rem;
  margin-top: 0.4125rem;
}
.user-profile-detail-section .meeting-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 3.25rem;
}
.user-profile-detail-section .meeting-pagination a {
  text-decoration: none;
  background-color: transparent;
  display: flex;
  align-items: center;
  border: none;
  gap: 1rem;
  font-size: 14px;
  color: #4A5565;
  font-weight: 500;
  cursor: pointer;
}
.user-profile-detail-section .meeting-pagination a svg {
  width: 0.35rem;
}


@media (max-width: 1400px) {
  .heading-1 {
    font-size: 3.0625rem;
  }
 .sponser .sponser-box img {
    width: 9rem;
    height: 4rem;
}
  .benefits-section .image-box {
    width: 33.1875rem;
    height: 32.625rem;
    margin: auto;
  }
  .about-us .about-us-content .about-img-2 {
    width: 30.5625rem;
  }
  .events .event-card {
    height: 38.125rem;
    width: 38.125rem;
  }
  .events .event-card h5 {
    font-size: 22px;
  }
  .events .event-list .event-box-2 h5 {
    font-size: 18px;
  }

  .our-team .our-team-row .our-team-card .our-team-img {
    max-height: 420px;
  }
  /* .sponser-section .sponser-row {
    gap: 1rem;
  } */
  .sponser-section .sponser-row .sponser-logo-box {
    height: 150px;
  }
  .sponser-section .sponser-row .sponser-logo {
    width: 14.625rem;
    height: 4.1875rem;
  }
  .events-section .event-card-date-list .event-date-box .event-date {
    font-size: 1.2rem;
  }
  .events-section .event-card-date-list .event-date-box .event-day {
    font-size: 1.1125rem;
  }
  .events-section .event-card .event-content .event-title {
    font-size: 1.475rem;
  }
  .auth-contact .contact-form button,
  .auth-contact .contact-form a {
    font-size: var(--font-small);
  }
  .our-contact .contact-form label {
    font-size: var(--font-small);
  }
  .auth-contact .contact-form .auth-checkgroup span {
    font-size: var(--font-small);
  }
  .cs-checkbox {
    height: 1.3em;
    width: 1.3em;
    min-width: 1.3em;
  }
  .auth-contact .contact-form .auth-checkgroup a {
    font-size: var(--font-small);
  }
  .auth-contact .contact-form .auth-contact-content .auth-content p {
    font-size: var(--font-medium);
  }
  .auth-contact .contact-form .auth-contact-content .auth-content h6 {
    font-size: var(--font-lg);
  }
}


@media (max-width: 1280px) {
  /* .heading-2 {
    max-width: 35.8125rem;
  } */
  .heading-2 h2 {
    font-size: 2.125rem;
  }

  .heading-3 h3 {
    font-size: 2rem;
  }
  .header-navigation nav ul {
    gap: 2rem;
  }

  /* .hero-section .hero-content .hero-counts li {
    padding: 0;
}
  .hero-section .hero-content .hero-counts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1rem;
} */

  .hero-section .hero-video .hero-img {
    width: 36.25rem;
  }
  .hero-section .hero-video .video-box {
    top: -2.875rem;
    right: 3.875rem;
    width: 28.625rem;
    height: 29.5rem;
  }

  .benefits-section .benefits-list{
    gap: 20px;
  }

  .benefits-section .image-box {
    /* width: 29.1875rem;
    height: 28.625rem; */
    width: 90%;
    height: auto;
  }
  .benefits-section .image-box .img-triangle {
    /* width: 32.625rem; */
    width:110%;
    height: auto;

  }
  .benefits-section .image-box .main-img {
    border-radius: 2rem;
  }
  .about-us .about-us-content .about-img-2 {
    width: 25.5625rem;
  }
  .events .event-card {
    height: 38.125rem;
    width: 38.125rem;
  }
  footer .footer-content-links {
    flex-wrap: wrap;
  }
  .orthoForum-advocacy .orthoForum-content h5 {
    font-size: 1.375rem;
  }

    /* .our-team .our-team-row .our-team-card .our-team-img {
    max-height: 400px;
  } */


  .our-team .our-team-row .our-team-card h5 {
    font-size: 22px;
}

.who-we-are .who-we-are-container {
    border-radius: 2rem;
}



.who-we-are .who-we-are-box {
    border-radius: 1.1rem;
    padding: 16px;
}

.who-we-are .who-we-are-box .who-we-are-img{
  padding: 12px;
}

.who-we-are .who-we-are-box .who-we-are-img ,
.who-we-are .who-we-are-box .who-we-are-img img{
  border-radius: 1.2rem;
}


}


@media (max-width: 1200px) {
  .hero-section .hero-video .hero-img {
    width: 33.25rem;
  }
  .hero-section .hero-video .video-box {
    top: -3.875rem;
    right: 2.875rem;
    width: 25.625rem;
    height: 29.5rem;
  }

  .heading-1 {
    font-size: 2rem;
}

.heading-2 h2 ,
.heading-3 h3
{
    font-size: 1.8rem;
}
  .events .event-card {
    height: 35.125rem;
    width: 35.125rem;
  }

  .news-card .news-card-content .news-card-img h6 {
    font-size: 1.2rem;
    line-height: 1.3rem;
  }

}

@media (max-width: 1100px) {
  .hero-section .hero-video .hero-img {
    width: 30.25rem;
  }
  .hero-section .hero-video .video-box {
    top: -3.875rem;
    right: 2.875rem;
    width: 23.625rem;
    height: 26.5rem;
  }
  .hero-section .hero-shadow-2 {
    left: 20.3125rem;
  }
  /* .section-padding {
    padding: 3.125rem 0;
  } */
.about-us .about-us-content .about-img-2 {
    display: unset;
    position: unset;
    height: auto;
    max-width: 90%;
    margin: 0 auto;
}
  .about-us .about-us-content .heading-3 p {
    max-width: 100%;
  }
  /* .sponser .sponser-list {
    grid-template-columns: repeat(3, 1fr);
  } */
  .header-navigation nav ul {
    gap: 1rem;
  }
  .hero-section .hero-shadow-2 {
    display: none;
  }
  .events .event-card {
    height: 32.125rem;
    width: 32.125rem;
  }
  /* .news-card .news-card-content .news-card-img {
    flex-wrap: wrap;
  } */
  .news-card .news-card-content .news-card-img img {
    width: 100%;
    /* height: 400px; */
  }

  .news-card {
    padding: 25px;
  }

  .sponser .sponser-box {
    border-radius: 20px;
}

.sponser .sponser-box span {
    border-top-right-radius: 1.2rem;
    border-top-left-radius: 1.2rem;
}
}

@media (max-width: 991px) {

  .location-box{
    margin: 0 auto;
  }

  .hero-section .hero-img.sponser-banner .sponer-bx {

    width: 100%;
    min-height: 350px;
    
}


  
  .dropdown-menu {
    position: static !important;
    min-width: unset !important;
    border-radius: 8px !important;
    border: none !important;
    box-shadow: none !important;
    background-color: #f8fafc !important;
    opacity: 1 !important;
    visibility: hidden;
    transform: none !important;
    transition: max-height 0.35s ease, visibility 0.35s ease !important;
    display: block !important;
    max-height: 0;
    overflow: hidden;
    padding: 0 !important;
    margin: 0 0 0.5rem 0;
  }

  .dropdown.is-open .dropdown-menu {
    visibility: visible;
    max-height: 300px;
  }

  .dropdown-menu li {
    border-bottom: none !important;
    width: 100%;
  }

  .dropdown-menu li a {
    padding: 0.625rem 1rem !important;
    font-size: 0.875rem !important;
    color: #666 !important;
  }

  .dropdown-menu li a:hover {
    background-color: #eef2f7 !important;
  }

  /* Chevron via JS toggle instead of :hover */
  .dropdown .fa-chevron-down {
    transition: transform 0.3s ease;
  }

  .dropdown.is-open .fa-chevron-down {
    transform: rotate(180deg) !important;
  }

  /* Prevent desktop :hover from firing on touch */
  .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: hidden;
    max-height: 0;
  }

  .dropdown.is-open:hover .dropdown-menu {
    visibility: visible;
    max-height: 300px;
  }
  .mobile-menu-toggle {
    display: flex;
  }

  .mobile-nav-overlay {
    display: block;
  }

  .header-navigation nav {
    /* position: fixed; */
    position: absolute;
    top: -100%;
    right: -100%;
    width: min(80vw, 320px);
    height: 110vh;
    background-color: var(--white);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    padding:16px;
    box-shadow: -4px 0 30px rgba(0, 0, 0, 0.12);
    transition: right 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 1100;
    overflow-y: auto;
  }
.header-navigation nav.is-open {
    right: -5%;
    top: -100%;
}

  /* Stack nav links vertically */
  .header-navigation nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
  }

  .header-navigation nav ul li {
    width: 100%;
    /* border-bottom: 1px solid #f0f0f0; */
  }

  .header-navigation nav ul a {
    display: block;
    padding: 12px 16px;
    font-size: 0.9375rem;
    border-radius: 10px;
  }

    .header-navigation nav ul a:hover{
      background-color: var(--primary);
      color: #fff;
    }

  /* Mobile dropdown */
  .dropdown > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .dropdown-menu {
    position: static !important;
    opacity: 1 !important;
    visibility: hidden;
    transform: none !important;
    box-shadow: none !important;
    border: none !important;
    border-radius: 0 !important;
    background-color: #f8fafc !important;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, visibility 0.35s ease !important;
    padding-left: 1rem !important;
  }

  .dropdown.is-open .dropdown-menu {
    visibility: visible;
    max-height: 300px;
  }

  .dropdown.is-open .fa-chevron-down {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
  }

  /* Login button full-width on mobile */
  .header-navigation nav a.login-btn {
    width: 100%;
    text-align: center;
    margin-top: 1.25rem;
    padding: 0.75rem 1rem;
  }



  .our-contact .contact-form input, .our-contact .contact-form textarea, .our-contact .contact-form select{
    font-size: 12px;
    height: 48px;
  }

.our-contact .contact-form input::placeholder, 
.our-contact .contact-form textarea::placeholder {
  font-weight: 300;
  font-size: 12px;
  color:#3A3A3C;
}

.our-contact .contact-form select {
  font-weight: 300;
}
  .our-contact .contact-form {
    padding: 20px;
}

  .user-profile-detail-section .user-profile-detail h2 {
    font-size: 24px;
}


  .events-section .events-search input {
    font-size: 12px;
}

.news-card .news-date {
    top: 0;
    right: 12px;
    padding: 6px 14px 8px 14px;
}
 .hero-contact .hero-content .contact-hero-social-links li a {
    border-radius: 12px;
    height: 2.2rem;
    width: 2.2rem;
    border-radius: 8PX;
}
.hero-contact .hero-content .contact-hero-social-links li a svg {
    height: 1rem;
    width: 1rem;
} 
.hero-contact .hero-content .contact-hero-social-links li {
    height: 2.8rem;
    width: 2.8rem;
    border-radius: 10px;
}


    .resources .resources-card {
    min-height: 120px;
    border-radius: 12px;
  }
    .resources .resources-card {
    padding: 24px 24px 24px 60px;
  }

  .resources .resources-card::before {
    left: 5%;
    height: 50%;
    border: 1.5px solid var(--secondary);
}
    .benefits-section .benefits-list .benefits-box h4 {
  font-size: 1rem
}
    .hero-section .hero-video .hero-img{
    position: unset;
    width: 100%;
    /* height: auto; */
  }

 .hero-section .hero-video .video-box {
    position: absolute; 
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
    /* max-width: 400px; */
    /* min-height: 350px; */
    height: 100%;
    border-radius: 20px;
}


  footer .footer {
    padding-top: 2rem;
    padding-bottom: 2rem;
}
  .who-we-are .who-we-are-box .who-we-are-content {
    padding: 30px 20px;
    padding-bottom: 20px;
  }

  .our-pillars .our-pillar-cols:nth-child(2) {
    margin-top: 0;
  }
  .our-pillars .our-pillar-cols .our-pillar-cards h5 {
    font-size: 2rem;
  }
  .our-team .our-team-row .our-team-card h5 {
    font-size: var(--font-lg);
  }
  .our-pillars .our-pillar-cols .our-pillar-cards .our-pillar-icon {
    width: 4rem;
    height: 4rem;
  }

    .our-pillars .our-pillar-cols .our-pillar-cards .our-pillar-icon svg{
      width: 1.8rem;
      height: 1.8rem;
    }

  .our-team .our-team-row .our-team-card .our-team-content span {
    font-size: var(--font-small);
  }
  .section-padding {
    /* padding: 4rem 0; */
      padding: 2rem 0;
  }
  .why-choose .why-choose-points .why-choose-item img {
    height: 2rem;
    width: 2rem;
  }
  .why-choose .why-choose-points .why-choose-item p {
    font-size: var(--font-small);
  }
  .sponser .sponser-box {
    border-radius: 16px;
  }

  .hero-section {
    padding-top: 9rem;
    padding-bottom: 1.25rem;
  }
  .header-navigation nav ul {
    margin-top:130px;
    gap: 0;
  }
  
  .map-row {
    flex-wrap: wrap;
    justify-content: center;
  }

  .events .event-card {
    width: 100%;
  }

  .why-choose .why-choose-points .why-choose-item h5 {
    font-size: 22px;
  }
  .cs-container {
    padding: 0 1rem;
  }
  .hero-section .hero-content {
    gap: 1.5rem;
  }

.benefits-section .benefits-list .benefits-box .benefits-icon img {
    width: 48px;
    height: 48px;
}.benefits-section .benefits-list
  .sponser .sponser-box span {
    top: -1.6875rem;
    font-size: var(--font-x-small);
    padding: 0.375rem 0.625rem 0.625rem 0.625rem;
    border-top-right-radius: 1rem;
    border-top-left-radius: 1rem;
  }
  /* .sponser .sponser-list {
    gap: 3rem 1rem;
  } */
  .btn-theme,
  .btn-theme-outline {
    line-height: 1.5em;
  }
.sponser-section .sponser-row .sponser-logo {
    width: 10rem;
    height: 4rem;
}
  .sponser-section .sponser-row .sponser-logo-box {
    height: 115px;
    border-radius: 16px;
  }
  .section-scroll-tabs li a {
    padding: 7px 25px;
    font-size: var(--font-small);
  }
  .section-scroll-tabs {
    gap: 0.5rem;
  }
  .events-section .event-card,
  .events-section .event-card-date-list .event-date-box {
    height: auto;
  }
  .events-section .event-card-date-list .event-date-box .event-date {
    text-align: center;
  }

   
  .events-section .event-card-date-list .event-date-box .event-date .month {
    font-size: 10px;
  }

  .events-section .event-card-date-list .event-date-box .event-date .date {
    display: unset;
    font-size: 10px;
    line-height: 1em;
  }

  .events-section .event-card-date-list .event-date-box .event-day {
    display: unset;
    font-size: 10px;
    line-height: 1em;
  }

  .events-section .event-card-date-list .event-date-box .event-day li::marker {
    display: none;
  }

  
  .events-section {
    padding-bottom: 100px;
  }
  .resources
    .resources-card-list
    .resources-card
    .resources-content
    .resources-title {
    font-size: 1.2rem;
    font-weight: 500;
  }

  .advocacy-sub-committees
    .committees-card-grid
    .committees-card
    .committees-card-detail
    h5 {
    font-size: 1.375rem;
  }
  .advocacy-sub-committees
    .committees-card-grid
    .committees-card
    .committees-card-detail
    p {
    font-size: 0.875rem;
  }
  .advocacy-sub-committees
    .committees-card-grid
    .committees-card
    .committees-card-img {
    flex-shrink: 0;
  }

.resources-content-link > a > svg{
  height: 20px;
  width: 20px;
}

  .our-contact .contact-form {
    border-radius: 0.9375rem;
  }
 
  .auth-contact .contact-form form {
    max-width: max-content;
    padding: 20px;
    padding-bottom: 0;
  }
  .news-card .news-card-content .news-card-img img {
    height: 300px;
  }
  .news-card .news-card-content p {
    font-size: var(--font-small);
  }
  .news-card .news-card-content .news-card-img h6 {
    font-size: var(--font-medium);
  }
  .news-card .news-card-content p {
    padding: 10px 0;
  }
  .latest-news-detail .hero-content {
    height: 370px;
  }
  .user-profile-detail-section .user-profile-map {
    height: 570px;
  }
  .user-profile-detail-section .user-profile-detail h6,
  .user-profile-detail-section .user-profile-detail ul li span,
  .user-profile-detail-section
    .user-profile-detail
    ul
    li
    .user-profile-detail-icon,
  .user-profile-detail-section
    .user-profile-detail
    .user-profile-detail-icon
    div,
  .user-profile-detail-section
    .user-profile-contact
    .user-profile-contact-footer
    button,
  .user-profile-detail-section
    .user-profile-contact
    .user-profile-contact-footer
    a {
    font-size: var(--font-small);
  }
  footer .footer-content-links .quick-links .quick-links-list li a {
    font-size: var(--font-small);
  }
  footer .footer-content-links .quick-links h5 {
    font-size: 16px;
  }
  footer .footer-content-links .quick-links .quick-links-list li a svg {
    width: 20px;
    height: 20px;
  }
  footer .footer-content p {
    font-size: var(--font-small);
  }
  footer .footer-content img {
    width: 16.375rem;
  }
  .user-profile-section .user-profile-content-detail h1 {
    font-size: 2.3rem;
  }
  .user-profile-section .user-profile-content-detail ul li {
    font-size: var(--font-small);
  }

    .events .event-card {
    /* padding: 1.875rem; */
        height: 36rem;

  }
  .our-pillars .our-pillar-cols .our-pillar-cards {
    padding: 40px 20px 20px 20px;  
}

.auth-contact .contact-form .auth-contact-content .auth-logo{
  max-width: 200px;
}


.events-hero {
  padding-top: 120px;
  /* padding-bottom: 100px */
}

}

@media (max-width: 768px) {
  .hero-section .hero-content .hero-counts li {
    border-right: 0;
  }
  .section-padding {
    padding: 2rem 0;
}
  
  .why-choose .why-choose-points::before,
  .why-choose .why-choose-points::after {
    display: none;
  }
  .about-us .about-us-content .about-us-content-img {
    flex-wrap: wrap;
  }
  .hero-shadow {
    left: 0;
    width: 100%;
    height: 100%;
  }
  .header-navigation {
    padding: 0.8rem 1rem;
  }
  .header-navigation .header-navigation-logo {
    /* width: 9.375rem; */
    width: auto !important;
    max-width: 9rem;            
    height: auto;
    display: block;
  }
  .heading-1 br {
    display: none;
  }

  .sponser .sponser-box {
    padding: 1.5rem 0.875rem;
  }
  .sponser .sponser-box img {
    width: 6rem;
  }
  .hero-section .hero-content .hero-counts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1rem;
  }
  .hero-section .hero-content .hero-counts li:nth-child(2) {
    border: none;
  }
  .hero-section .hero-content .hero-counts li {
    padding: 0;
  }
  .heading-2 h2 {
    font-size: 1.5rem;
  }
  .heading-2 p {
    font-size: var(--font-small);
  }
  .heading-1 {
    font-size: 1.75rem;
  }
  .location-box .location-box-header h5 {
    font-size: 1.25rem;
  }
  .location-box .location-box-header p {
    font-size: var(--font-small);
  }
  .benefits-section {
    padding-top: 0;
  }


  .events .event-card {
    /* padding: 1.875rem; */
        height: 36rem;
        border-radius: 20px;
  }
  .events .event-card img{
    border-radius: 20px;
  }
.events .event-list .event-box-2{
  border-radius: 20px;
}
  footer .footer-content img {
    width: 14.375rem;
  }
  .heading-3 h3 {
    font-size: 22px;
  }
  /* .events .event-list .event-box-2 {
    padding: 1.5625rem 1rem;
  } */
  .events .event-list .event-box-2 a {
    margin-top: 1.25rem;
    font-size: var(--font-small);
  }
  footer .footer-content-links .quick-links .quick-links-list li a svg {
    width: 20px;
    height: 20px;
  }

  footer .footer-content-links .quick-links .quick-links-list {
    gap: 1rem;
  }
  /* footer .footer-content-links {
    gap: 2rem;
  } */
  footer .copyright-footer {
    font-size: var(--font-small);
  }
  .our-pillars .our-pillar-cols .our-pillar-cards h5 {
    font-size: 1.5rem;
  }
  .our-team .our-team-row {
    grid-template-columns: repeat(1, 1fr);
  }

  .who-we-are .who-we-are-box .who-we-are-img, .who-we-are .who-we-are-box .who-we-are-img img {
    border-radius: 1rem;
}
  /* .who-we-are .who-we-are-box .who-we-are-img img {
    border-radius: 1.75rem;
  }
  .who-we-are .who-we-are-box .who-we-are-img {
    border-radius: 1.75rem;
  } */
  .who-we-are .who-we-are-box .who-we-are-content {
    padding: 30px 0;
  }
  /* .sponser-section .sponser-row {
    display: flex;
    flex-wrap: wrap;
  } */
  .sponser-section .sponser-row .sponser-logo-box {
    flex: auto;
  }
  .events-section .event-card {
    flex-wrap: wrap;
  }
  .events-section .event-card .event-content {
    gap: 1rem;
  }
  .events-section .event-card {
    flex-wrap: wrap;
    gap: 2rem;
  }
  .events-section .event-card {
    padding: 30px 70px;
  }
  .events-section .event-card::before {
    /* left: 25px; */
    display: none;
  }
  .events-section .event-card {
    padding: 18px;
    height: 300px;
  }
  .events-section .event-card .event-content-link {
    margin-left: auto;
  }
  .events-section .event-card-date-list .event-date-box {
    padding: 10px;
    height: 300px;
  }
  .events-section .event-card-date-list {
    border-radius: 10px;
  }
  .events-section .event-by-month {
    margin: 0;
  }
  .events-section .event-by-month .col-2 {
    padding: 0;
  }
  .events-section .events-pagination-container {
    flex-wrap: wrap;
  }
  .events-section .events-pagination-container .events-pagination {
    width: 100%;
    justify-content: space-between;
  }
  .events-section .events-pagination-container select {
    flex: auto;
  }
  .events-section .event-card .event-content .event-title {
    font-size: 1.1rem;
  }
  .events-section .events-search button {
    min-width: fit-content;
  }
  /* .advocacy-sub-committees .committees-card-grid {
    grid-template-columns: repeat(1, 1fr);
  } */
  .resources .resources-card {
    min-height: auto;
  }
  .resources
    .resources-card-list
    .resources-card
    .resources-content
    .resources-title {
    font-size: 1rem;
  }
  /* .advocacy-sub-committees .committees-card-grid .committees-card {
    flex-wrap: wrap;
  } */
  /* .advocacy-sub-committees
    .committees-card-grid
    .committees-card
    .committees-card-img {
    width: 100%;
    height: 300px;
  } */
  .advocacy-sub-committees
    .committees-card-grid
    .committees-card
    .committees-card-detail {
    padding: 15px;
  }
  .advocacy-sub-committees
    .committees-card-grid
    .committees-card
    .committees-card-detail
    h5 {
    font-size: 1.25rem;
  }
  .resources .resources-card {
    padding: 16px 16px 16px 40px;
  }

  .events-hero .rows-events {
    border-radius: 20px;
    height: 350px;
    border-width: 10px;
  }
  .events-hero .rows-events .events-bg {
    border-radius: 10px;
  }

 .hero-contact .hero-content .contact-hero-social-links li a {
    border-radius: 12px;
    height: 2.2rem;
    width: 2.2rem;
    border-radius: 8PX;
}
.hero-contact .hero-content .contact-hero-social-links li a svg {
    height: 1rem;
    width: 1rem;
} 
.hero-contact .hero-content .contact-hero-social-links li {
    height: 2.8rem;
    width: 2.8rem;
    border-radius: 10px;
}
  /* .auth-contact-content {
    display: none;
  } */
  .auth-contact .contact-form form {
    padding: 0;
  }
  /* .news-section .news-card-grid {
    grid-template-columns: repeat(1, 1fr);
  } */


  
  .news-section .news-pagination-container .news-pagination ul {
    gap: 8px;
  }
  .news-section .news-pagination-container .news-pagination {
    gap: 7px;
  }
  .news-section .news-pagination-container .news-pagination li a,
  .news-section .news-pagination-container .news-pagination button {
    width: 2.2rem;
    height: 2.2rem;
  }
  .news-section .news-pagination-container {
    justify-content: center;
  }
  .news-card .news-date {
    font-size: var(--font-small);
  }
  /* .news-detail-section .news-detail-content .news-detail-points {
    grid-template-columns: repeat(1, 1fr);
  } */

  .news-detail-section .news-detail-content .news-date {
    font-size: var(--font-x-small);
    padding: 5px 30px;
  }
  .news-detail-section .news-detail-content h1 {
    font-size: var(--font-xl);
  }
  .news-detail-section .news-detail-content p {
    font-size: var(--font-small);
  }
  .recommended-news .recommend-news-row .recommend-news-heading h3 {
    font-size: 1.25rem;
  }
  .user-profile-detail-section .user-profile-map {
    height: 370px;
  }
  .user-profile-detail-section .user-profile-contact {
    max-width: 100%;
    gap: 5rem;
  }
  .user-profile-section .user-profile-content-detail h1 {
    font-size: 1.5rem;
  }
  .user-profile-section .user-profile-content-detail ul {
    flex-wrap: wrap;
    /* margin-top: 1.25rem; */
  }
  .user-profile-detail-section .user-profile-contact {
    font-size: 0.9375rem;
  }
  .user-profile-detail-section .meeting-pagination {
    margin-top: 0;
    padding-bottom: 3.125rem;
  }

  .benefits-section hr {
    margin: 1.5rem 0;
    border-color: #00000063;
}

  .benefits-section .image-box .main-img {
    border-radius: 20px;
  }

    .sponser .sponser-box img {
    width: 5rem;
    height: 2.5rem;
}

.sponser .sponser-box span {
    top: -1.7rem;
    left: 0.5rem;
    padding: 6px 16px 6px 16px;
    font-size: 12px;
    border-top-right-radius: 14px;
    border-top-left-radius: 14px;
}

.about-us .about-us-content .about-img{
  border-radius: 20px;
}

.hero-shadow {
    top: -10%;
}

.hero-section .hero-img img{
  border-radius: 20px;
}

.hero-section .hero-content span{
  font-size: 12px;
}

.hero-section .hero-content span::before {
    width:8px;
    height: 8px;
}


.advocacy-committee{
border-radius: 20px;
width: 100%;
height: 100%;
}



.auth-contact .contact-form .auth-contact-content {
    border-radius: 16px;
    min-height: 450px;
}

.auth-contact .contact-form .auth-contact-content .auth-contact-bg {
    border-radius: 16px;
    min-height: 450px;

}

}



@media screen and (max-width:767px) {
  :root {
  --font-x-small: 0.75rem;
  --font-small: 0.875rem;
  --font-medium: 0.9rem;
  --font-lg: 1.125rem;
  --font-xl: 1.375rem;
  --radius-lg: 6.25rem;
  --transition: 0.4s all;
}
.location-box .location-content .location-count .location-count-card {
  font-size: 12px;
}


.why-choose .why-choose-points {
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
  }

  .events .event-card{
    justify-content: start;
    align-items: start;
  }


}

@media screen and (max-width:640px) {

  .advocacy-sub-committees
    .committees-card-grid
    .committees-card
    .committees-card-img {
    width: 100%;
    height: 300px;
  }
  .user-profile-section .user-profile-content{
    background-position: bottom;
  }
  
  .events .event-card {
        height:28rem;
  }
  .benefits-section .benefits-list {
    flex-wrap: wrap;
    gap: 24px;
  }

  .benefits-section .benefits-list ul {
    grid-template-columns: repeat(1, 1fr);
  }

  .benefits-section .benefits-list .benefits-box h4 {
    font-size: 1rem
  }

  .benefits-section .image-box .triangle-flip {
    right: -1.1rem;
  }

  .benefits-section .image-box .img-triangle {
    left: -1.1rem;
}
.our-team .our-team-row .our-team-card{
  border-radius: 20px;
}
.our-team .our-team-row .our-team-card .our-team-img {
    height: 100%;
    max-height: 360px;
    border-radius: 16px;
}
}



@media (max-width: 768px) {
  .modal-dialog {
    height: 100vh;
  }
 .modal-dialog 
  .contact-form {
    max-height: 80vh;
    height: 100%;
    overflow-y: scroll;
    width: 95%;
    margin: 0 auto;
}

  .modal-content {
    /* max-height: 80vh; */
    justify-content: center;
    height: 100%;
    overflow-y: auto;
  }
}



.plyr--video {
  border-radius: 20px;
}


.modal {
  padding-right: unset  ;
}

.modal-backdrop {
    z-index: 1040 !important;
}
.modal {
    z-index: 1050 !important;
}

.modal-dialog {
    pointer-events: auto !important;
}


.popup-close {
    margin-bottom: -32px !important;
    z-index: 1;
    margin-right: 10px;
}

.popup-close 
.btn-close{
  background-color:#e0e2e3;
  opacity: 1;
  background-size: 10px;
  border-radius: 6px;
}

.popup-close 
.btn-close:hover {
    color: #000;
    text-decoration: none;
    opacity: 1 !important;
}


.about-image-wrapper {
  position: relative;
  display: inline-block; 
}

.collage-img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 40px;
}

.circular-badge-container {
    position: absolute;
    top: 50%;
    left: 45%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.circular-badge-container .outer-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--primary);
  border-radius: 50%;
  animation: rotateText var(--speed) linear infinite;
}

.circular-badge-container .inner-circle {
  position: absolute;
  width: 64%;
  height: 64%;
  background-color: var(--secondary);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.circular-badge-container .arrow {
  width: 45%;
  height: 45%;
  fill: white;
}

.circular-badge-container svg {
  width: 100%;
  height: 100%;
}

.circular-badge-container text{
  fill: var(--white);
  font-size: 16px; 
  font-weight: 400;
  text-transform: uppercase;
}

@keyframes rotateText{
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ===== CSS END ===== */
