/* Base css start */

/* font family cdn */
@import url("https://fonts.googleapis.com/css2?family=Albert+Sans:ital,wght@0,100..900;1,100..900&family=Lexend+Deca:wght@100..900&family=Parkinsans:wght@300..800&display=swap");

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

:root {
  /* colors */
  --primary: #2455cf;
  --secondary: #ff4b0e;
  --grey: #cbd0c8;
  --gray-300: #a3a3a3;
  --gray-500: #5c5c5c;
  --blue-50: #e7fbff;
  --blue-100: #e6f4fa;
  --blue-500: #009fdb;
  --blue-900: #062062;
  --purple: #6100ba;
  --light-periwinkle: #e7eaff;
  --yellow: #ffc51e;
  --cream: #fff7e4;
  --orange: #f44b1b;

  /* font family */
  --albertSans: "Albert Sans", sans-serif;
  --parkinsans: "Parkinsans", sans-serif;
  --lexendDeca: "Lexend Deca", sans-serif;
}
::placeholder {
  color: inherit;
}
input:focus,
textarea:focus,
select:focus {
  outline: none;
}
ol,
ul {
  margin: 0;
  padding: 0;
}

li {
  list-style-type: none;
}

a,
button {
  transition: all 0.3s;
  color: inherit;
}

a {
  text-decoration: none;
}

sup {
  top: -0.22em;
}
img {
  max-width: 100%;
}
html {
  scroll-padding-top: 150px;
}
.container,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  padding-inline: 20px;
}

body {
  color: #000;
  font-family: var(--albertSans);
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--parkinsans);
}
h1 {
  font-size: 50px;
  line-height: 1.2;
}
h3 {
  font-size: 28px;
  line-height: 1.36;
}
h4 {
  font-size: 22px;
  line-height: 1.4556;
}
.section__title {
  margin-bottom: 50px;
}

.section__title h2,
h2 {
  font-size: 44px;
  font-weight: 700;
  line-height: normal;
  margin: 0;
}
.theme__btn {
  border-radius: 60px;
  background: #f44b1b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-inline: 25px;
  height: 50px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  font-family: var(--parkinsans);
  text-align: center;
  border: 0px;
}
.theme__btn:hover {
  background-color: #000;
}
.theme__btn_small {
	height: 40px;
	font-size: 15px;
}
.slider-nav__btn {
  width: 44px;
  height: 44px;
  background-color: transparent;
  border: 2px solid var(--secondary);
  color: var(--secondary);
}
.slider-nav__btn:hover {
  background-color: var(--secondary);
  color: #fff;
}
.para-style {
  font-size: 19px;
  line-height: 24px;
  letter-spacing: -0.18px;
}
.para-style-lg {
  font-size: 24px;
  line-height: 1.33;
}
.para-style-sm {
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: -0.18px;
}
.text-yellow {
  color: var(--yellow);
}

.section__footer {
  padding-top: 77px;
}
.section__footer a {
  color: var(--primary);
}
.section__footer a:hover {
  color: var(--secondary);
}

.mt-xs {
	margin-top: 8px !important;
}
.mb-xs {
	margin-bottom: 8px !important;
}
.mt-sm {
	margin-top: 15px !important;
}
.mb-sm {
	margin-bottom: 15px !important;
}
.mt-md {
	margin-top: 30px !important;
}
.mb-md {
	margin-bottom: 30px !important;
}
.mt-lg {
	margin-top: 50px !important;
}
.mb-lg {
	margin-bottom: 50px !important;
}
.mt-xl {
	margin-top: 80px !important;
}
.mb-xl {
	margin-bottom: 80px !important;
}
.mt-xxl {
	margin-top: 120px !important;
}
.mb-xxl {
	margin-bottom: 120px !important;
}
.mt-xxxl {
	margin-top: 160px !important;
}
.mb-xxxl {
	margin-bottom: 160px !important;
}
.pt-xs {
	padding-top: 8px !important;
}
.pb-xs {
	padding-bottom: 8px !important;
}
.pt-sm {
	padding-top: 15px !important;
}
.pb-sm {
	padding-bottom: 15px !important;
}
.pt-md {
	padding-top: 30px !important;
}
.pb-md {
	padding-bottom: 30px !important;
}
.pt-lg {
	padding-top: 50px !important;
}
.pb-lg {
	padding-bottom: 50px !important;
}
.pt-xl {
	padding-top: 80px !important;
}
.pb-xl {
	padding-bottom: 80px !important;
}
.pt-xxl {
	padding-top: 120px !important;
}
.pb-xxl {
	padding-bottom: 120px !important;
}
.pt-xxxl {
	padding-top: 160px !important;
}
.pb-xxxl {
	padding-bottom: 160px !important;
}
.fw-700 {
	font-weight: 700 !important;
}
/* pagination style start */
.pagination {
  margin-top: 60px;
}
.page-link {
  color: var(--secondary);
  font-size: 24px;
  line-height: 1;
  padding: 8px;
  border: 2px solid var(--secondary);
  margin: 0 !important;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-item.active .page-link {
  background-color: var(--secondary);
  color: #fff;
  border-color: var(--secondary);
}
.page-link:hover {
  color: var(--primary);
  border-color: var(--primary);
  background-color: transparent;
}
.page-item--next .page-link {
  font-size: 18px;
  font-family: var(--parkinsans);
  padding-inline: 18px;
  background-color: var(--secondary);
  color: #fff;
}
.page-item--next .page-link:hover {
  background-color: var(--primary);
  border-color: var(--primary);
}
/* pagination style end */

/* header-bar start */

.header__bar {
  height: 36px;
  background: #f3f3f3;
  padding-inline: 12px;
}

.header__bar a {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #f44b1b;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.08px;
  padding-left: 20px;
}

.header__main {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 9;
}

/* header-bar end */

/* header css start */
.header {
  background-color: var(--primary);
  transition: all 0.3s;
  z-index: 1050;
}
.header .container {
  max-width: 1290px;
}
.header__wrapper {
  height: 118px;
  transition: all 0.3s;
}
.header__logo-img {
  max-width: 310px;
  padding-right: 20px;
  width: 100%;
  transition: all 0.3s;
}
.header.fixed-top {
  position: fixed !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
.header.fixed-top .header__wrapper {
  height: 80px;
}
.header.fixed-top .header__logo-img {
  max-width: 300px;
}

.header__menu {
  gap: 24px;
}

.header__menu-link {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: -0.18px;
  position: relative;
}
.header__menu-link::after {
  content: "";
  width: 0%;
  height: 2px;
  background-color: var(--secondary);
  position: absolute;
  left: 0;
  bottom: 23px;
  transition: all 0.3s;
}
.header.fixed-top .header__menu-link::after {
	bottom: 25px;
}
.header__menu-item:hover .header__menu-link::after {
  width: 100%;
}
.header__menu-link img {
  transition: all 0.3s;
}
.header__menu-item:hover .header__menu-link img {
  /*transform: rotate(180deg);*/
}
.header__btn {
  border-radius: 60px;
  background: #f44b1b;
  padding: 0 25px;
  height: 40px;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  line-height: 60px;
}
.header__btn:hover {
  background-color: #000;
}
.header__menubar svg {
  width: 28px;
  color: #fff;
}

/* megamenu start */

.megamenu {
  font-family: var(--parkinsans);
  padding: 0px 20px 14px;
  top: 150%;
  transition: all 0.4s;
  opacity: 0;
  visibility: hidden;
  z-index: 9;
}
.header__menu-item:hover .megamenu {
  top: 100%;
  opacity: 1;
  visibility: visible;
}
.megamenu__wrapper {
  max-width: 1060px;
  padding: 25px 30px 25px;
  background: #fff;
  border: 1px solid var(--grey);
  gap: 30px;
}
.megamenu__widget-title {
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 10px;
}
.megamenu__widget {
  padding-block: 10px;
}
.megamenu__link {
  gap: 12px;
  font-size: 15px;
  line-height: 22px;
  color: var(--primary);
  letter-spacing: -0.24px;
}
.megamenu__link img {
  width: 40px;
}
.megamenu__links {
  gap: 10px;
}
.megamenu__link i {
  color: var(--secondary);
}
.megamenu__link:hover {
  color: var(--secondary);
}
.megamenu__divider {
  height: 1px;
  background-color: var(--grey);
  margin-block: 24px;
}

.megamenu__post-thumb {
  height: 178px;
  border-radius: 50px 0;
  margin-bottom: 10px;
}
.megamenu__post {
  padding: 12px;
}
.megamenu__post-title {
  font-size: 17px;
  line-height: 24px;
  color: var(--primary);
  letter-spacing: -0.024px;
  transition: all 0.3s;
}
.megamenu__post-title:hover {
  color: var(--secondary);
}
/* megamenu end */

/* offcanvas menu start */
.offcanvas .header__logo-img {
  max-width: 200px;
}
.offcanvas .header__search-btn img {
  filter: brightness(0);
}
.offcanvas__menu-link {
  padding-block: 12px;
  border-bottom: 1px solid #000;
}
.offcanvas__menu-link img {
  filter: brightness(0);
}

.offcanvas .megamenu__link {
  font-size: 14px;
  line-height: 20px;
}
.offcanvas .megamenu__link img {
  width: 32px;
}
.offcanvas .megamenu__wrapper {
  padding: 16px;
}
.offcanvas .megamenu__post {
  padding: 0;
}
.offcanvas .megamenu__post-title {
  font-size: 14px;
  line-height: 20px;
}
/* offcanvas menu end */

/* header css end */

/* hero section start */
.hero {
  background: linear-gradient(180deg, #2455cf 80.04%, #062062 112.7%);
  padding-top: 154px;
  position: relative;
}
.hero__dot-shape {
  position: absolute;
  left: -30px;
  bottom: 0;
  z-index: 1;
}

.hero-shape {
  position: absolute;
  left: 0;
  bottom: 0;
  max-width: 180px;
  z-index: 1;
}
.hero__video {
  position: absolute;
  right: 0;
  top: 36px;
  width: 52%;
  height: calc(100% - 36px);
}
.hero__video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__content {
  max-width: 540px;
  position: relative;
  padding-bottom: 103px;
  z-index: 2;
}

.hero__subtitle {
  color: #ffffff;
  font-size: 20px;
  line-height: 1.33;
  position: relative;
  display: inline-block;
  margin-bottom: 33px;
  font-family: var(--albertSans);
}

.hero__subtitle img {
  position: absolute;
  left: 0;
  bottom: -10px;
}

.hero__title {
  color: #ffffff;
  font-size: 45px;
  font-weight: 700;
  line-height: 1.725;
  margin-bottom: 23px;
}

.hero__title span:nth-child(2) {
  font-size: 70px;
  line-height: 76px;
}

.hero__title span:nth-child(3) {
  font-size: 96px;
  line-height: 1;
}
.hero__desc {
  color: #ffffff;
  font-size: 18.712px;
  font-style: normal;
  font-weight: 500;
  line-height: 24.95px;
  margin-bottom: 36px;
  max-width: 470px;
}
.hero__desc a {
	text-decoration: underline;
	color: var(--bs-link-color);
}
.hero--style-2 {
  background: #fff;
  overflow: hidden;
}
.hero--style-2 .hero__content {
  max-width: 648px;
  padding-block: 80px;
}
.hero--style-2 .hero__subtitle {
  color: #000;
  margin-bottom: 14px;
  font-family: var(--parkinsans);
  font-weight: 600;
  text-transform: uppercase;
}
.hero--style-2 .hero__title {
  font-size: 50px;
  line-height: 1.2;
}

.hero--style-2 .hero__desc {
  font-size: 24px;
  line-height: 1.33;
  max-width: 100%;
}
.hero--style-2 .hero__img {
  top: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
  width: auto;
  left: auto;
}
.impact-page .hero--style-2 .hero__content {
  max-width: 730px;
}
.impact-page .hero__img {
  width: auto;
  left: auto;
  right: 0;
}
.category-page .hero__content {
  max-width: 730px;
}
.category-page .hero__img {
  max-width: 85%;
}
.category--virtual .hero__content {
  max-width: 812px;
  padding-bottom: 40px;
}
.category--virtual .hero__desc {
  max-width: 732px;
}

.category--inperson .hero__content {
  max-width: 900px;
}
.category--inperson .hero__desc {
  max-width: 830px;
}

.event-detail-page .hero {
  padding-bottom: 190px;
}
.event-detail-page .hero::before {
  content: "";
  width: 100%;
  height: 80px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: var(--blue-100);
}
.event-detail-page .hero::after {
  content: "";
  width: 100%;
  height: 148px;
  background-color: var(--blue-100);
  position: absolute;
  left: 0;
  bottom: 12px;
  clip-path: polygon(
    18.191% 7.913%,
    18.191% 7.913%,
    16.004% 5.571%,
    13.756% 5.452%,
    11.477% 7.3%,
    9.196% 10.863%,
    6.943% 15.887%,
    4.748% 22.116%,
    2.642% 29.297%,
    0.654% 37.176%,
    -1.186% 45.499%,
    -2.847% 54.012%,
    -0.07% 86.173%,
    29.438% 90.461%,
    79.707% 99.574%,
    79.707% 99.574%,
    82.149% 94.868%,
    84.846% 90.53%,
    87.685% 86.434%,
    90.551% 82.455%,
    93.333% 78.468%,
    95.915% 74.346%,
    98.186% 69.965%,
    100.032% 65.2%,
    101.339% 59.923%,
    101.994% 54.012%,
    101.994% 54.012%,
    102% 52.144%,
    101.871% 49.564%,
    101.595% 46.309%,
    101.16% 42.42%,
    100.554% 37.934%,
    99.767% 32.89%,
    98.786% 27.328%,
    97.6% 21.285%,
    96.197% 14.8%,
    94.565% 7.913%,
    94.565% 7.913%,
    92.813% 2.609%,
    90.988% 0.231%,
    89.116% 0.348%,
    87.217% 2.528%,
    85.317% 6.338%,
    83.437% 11.345%,
    81.601% 17.119%,
    79.832% 23.227%,
    78.153% 29.236%,
    76.588% 34.715%,
    76.588% 34.715%,
    75.578% 37.764%,
    74.418% 40.505%,
    73.103% 42.8%,
    71.629% 44.509%,
    69.992% 45.495%,
    68.188% 45.618%,
    66.213% 44.741%,
    64.064% 42.723%,
    61.736% 39.427%,
    59.225% 34.715%,
    59.225% 34.715%,
    56.836% 30.706%,
    54.818% 29.277%,
    53.086% 29.919%,
    51.552% 32.124%,
    50.129% 35.385%,
    48.732% 39.191%,
    47.272% 43.037%,
    45.665% 46.413%,
    43.823% 48.811%,
    41.658% 49.723%,
    41.658% 49.723%,
    39.288% 48.871%,
    36.892% 46.507%,
    34.481% 42.921%,
    32.068% 38.402%,
    29.664% 33.24%,
    27.281% 27.725%,
    24.931% 22.145%,
    22.624% 16.79%,
    20.374% 11.949%,
    18.191% 7.913%
  );
  z-index: -1;
}

.action__btn {
  color: var(--secondary);
}
.action__btn-icon svg {
  width: 16px;
}
.breadcrumb__wrapper {
  padding-block: 32px 20px;
}
.breadcrumb__wrapper .breadcrumb {
  max-width: 100%;
}
.hero__info {
  gap: 48px;
}
.hero__info-title {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 12px;
}
.hero__info-list li {
  font-size: 17px;
  line-height: 24px;
  gap: 12px;
}
.hero__info-list li a, .hero__info-list li div {
  gap: 12px;
}
.hero__info-list li a i {
  color: var(--secondary);
}
.hero__info-list {
  gap: 12px;
}
.check-icon {
  width: 24px;
  height: 24px;
  background-color: #f47f21;
}
.check-icon img {
  width: 18px;
}
.theme__text-btn {
  color: var(--primary);
  font-size: 17px;
  line-height: 24px;
  letter-spacing: -0.24px;
}
.theme__text-btn span {
  color: var(--secondary);
}
.theme__text-btn:hover {
  color: var(--secondary);
}
.video-slider__item {
  height: 443px;
  border: 13px solid #0aa7ea;
  border-radius: 50px 0;
  overflow: hidden;
}
.video-slider__nav {
  margin-top: 12px;
}
.video-slider__nav .slick-slide {
  margin-right: 16px;
}
.video-slider__nav-item {
  height: 127px;
  border-radius: 30px 0;
  cursor: pointer;
}
.video-slider__nav-item img {
  transition: all 1s ease-in-out;
}
.video-slider__nav-item:hover img {
  transform: scale(1.1);
}
.event-detail-page .hero .hero__content {
  max-width: 636px;
}
.nationwide-page .hero__content {
  max-width: 872px;
}
.nationwide-page .hero__img {
  max-width: 90%;
}

.state-page .hero__img {
  max-width: 800px;
}
.state-page .hero__content {
  max-width: 800px;
}

.city-page .hero {
  background: linear-gradient(180deg, #2455cf 83.1%, #122b69 113.52%);
}
.city-page .hero__content {
  max-width: 1080px;
  padding-bottom: 75px;
}
.city-page .hero .hero__subtitle {
	color: #fff;
}
.insight-page .hero {
  background: linear-gradient(180deg, #2455cf 85.54%, #122b69 157.01%);
}
.insight-page .hero__content {
  padding-block: 90px;
  max-width: 870px;
}
.hero .input-field {
  max-width: 413px;
}
.insight-page .hero__img {
  max-width: 540px;
  right: -84px;
  bottom: -40px;
  top: auto;
  opacity: 0.45;
  transform: rotate(26deg);
}
.insight-page .hero--style-2 .hero__subtitle {
	color: var(--yellow);
}
.insight--category .hero {
  background: #fff;
}
.insight--category .hero__content {
  max-width: 740px;
}
.insight--category .hero .hero__img {
  max-width: 85%;
  transform: unset;
  opacity: 1;
}

.insight-post-detail .hero__content {
  max-width: 690px;
  padding-bottom: 90px;
}
.tag {
  font-size: 20px;
  line-height: 1.4;
  font-family: var(--parkinsans);
  background-color: var(--cream);
  color: var(--primary);
  padding: 10.5px 17px;
  border-radius: 20px 0;
}
.tag:hover {
  background-color: var(--secondary);
  color: #fff;
}
.resources-page .hero__content {
  max-width: 745px;
  padding-bottom: 65px;
}
.resources-page .hero__img {
  max-width: 85%;
}

.team-page .hero__img {
  max-width: 90%;
}
.team-page .hero__content {
  max-width: 800px;
}
.team-page .hero__desc {
  max-width: 584px;
}
.team-page .hero__subtitle img {
  height: 10px;
  width: 100%;
}

.team-detail-page .hero__wrapper {
  padding-block: 40px;
  gap: 40px;
}
.team-detail-page .hero__content {
  max-width: 425px;
}
.hero__thumb {
  width: 380px;
  height: 380px;
  background-image: linear-gradient(90deg, #ff9511 0%, #ff9f13 31%, #ffbb1b 85%, #ffc51e 100%);
  padding: 20px;
}
.hero__thumb-sm {
  width: 290px;
  height: 290px;
  background-image: linear-gradient(90deg, #0aa7ea 0%, #14aaea 11%, #30b2eb 31%, #5ec0ed 57%, #9dd3f0 88%, #b8dbf2 100%);
  padding: 30px;
  top: 220px;
  left: 246px;
}

.team-detail {
  padding-block: 70px 26px;
}
.team-detail__content {
  max-width: 625px;
}

.venue-page .hero__img {
  max-width: 895px;
}
.venue-page .hero__content {
  max-width: 593px;
}
/* hero section end */

/* breadcrumb start */
.breadcrumb-item {
  font-size: 15px;
  line-height: 28px;
  color: var(--primary);
  --bs-breadcrumb-divider-color: var(--purple);
}
.breadcrumb-item.active {
  color: #000;
}
.breadcrumb {
  left: 0;
  top: 20px;
}
/* breadcrumb end */

/* brand section start */
.brand .container {
  max-width: 1600px;
}

.brand {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%), #fff;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.15);
  height: 100px;
  display: flex;
  align-items: center;
}

.brand__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand__slider-wrap {
  width: 89%;
}

.brand__title span {
  color: #f44b1b;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: 0.9px;
}

.brand__logo {
  padding: 20px 15px;
  display: flex;
  align-items: center;
  height: 78px;
}
.brand__logo img {
  max-height: 100%;
}

.brand--partner {
  height: 125px;
}
.brand--partner .brand__logo {
  height: 125px;
  padding-inline: 32px;
}
/* brand section end */

/* feature section start */

.feature {
  padding-block: 70px;
}

.feature__wrapper {
  display: grid;
  margin-bottom: 70px;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px;
}
.feature__card {
  padding: 50px 30px 140px 30px;
  border: 3px solid var(--primary);
  border-top-left-radius: 50px;
  border-bottom-right-radius: 50px;
  min-height: 356px;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
}
.feature__content {
  text-align: center;
  z-index: 3;
  position: relative;
}

.feature__content h3 {
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 16px;
}

.feature__btn {
  position: absolute;
  left: -17px;
  bottom: -52px;
  width: 180px;
  height: 180px;
  background-color: var(--primary);
  border-radius: 50%;
  text-align: right;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 20px;
  padding-left: 10px;
  transition: 0.3s;
  z-index: 1;
}

.feature__btn_text {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
  transition: 0.3s;
  position: absolute;
  left: 30px;
  bottom: 40px;
  z-index: 2;
}

.feature__card:nth-child(2) {
  border-color: var(--yellow);
}

.feature__card:nth-child(2) .feature__btn {
  background: var(--yellow);
}
.feature__card:nth-child(2) .feature__btn a {
  color: #000;
}
.feature__card:nth-child(3) .feature__btn {
  background: var(--purple);
}

.feature__card:nth-child(3) {
  border-color: var(--purple);
}

.feature__card:hover .feature__btn {
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  border-radius: 0 !important;
}
.feature__card:hover .feature__content h3, .feature__card:hover .feature__content p {
	color: #fff;
}

.feature--venue {
  background-color: var(--primary);
}
.feature__thumb {
  width: 516px;
}
.feature--venue .feature__content {
  max-width: 575px;
}
.feature__item {
  gap: 38px;
}
.feature__item-icon {
  width: 72px;
}
.feature__item-icon img {
  max-width: 100%;
}
/* feature section end */

/* faq section start */
.faq {
  background-image: url("../img/faq-bg.jpg");
  background-size: cover;
  background-position: center;
}

.faq__wrapper {
  border-radius: 100px 0;
  background-color: var(--primary);
  box-shadow: 10px 10px 12px 0 rgba(0, 0, 0, 0.2);
  transform: translateY(112px);
  padding: 84px 40px 110px 54px;
  gap: 17px;
}
.faq__thumb {
  width: 400px;
}
.faq__content {
  padding-top: 44px;
}
.faq__content .section__title {
  margin-bottom: 30px;
}
.faq__accordion .accordion-button {
  padding: 0;
  font-size: 25px;
  line-height: 1.28;
  letter-spacing: -0.18px;
  gap: 21px;
}
.faq__accordion .accordion-button::before {
  background-image: unset;
  content: "+";
  font-size: 28px;
  width: 18px;
}
.faq__accordion .accordion-button[aria-expanded="true"]::before {
  content: "—";
}
.faq__accordion .accordion-button::after {
  display: none;
}
.faq__accordion .accordion-body {
  padding: 8px 0 0 40px;
}
.faq__accordion {
  max-width: 572px;
  gap: 48px;
  margin-bottom: 50px;
}

.about-page .faq {
  background-color: var(--blue-100);
  background-image: unset;
  padding-bottom: 168px;
}
.about-page .faq__wrapper {
  background-color: var(--purple);
  transform: unset;
}
.about-page .faq__accordion {
  max-width: 650px;
  margin-bottom: 0;
}

.about-page .faq__thumb {
  width: 360px;
}
.faq__thumb-img:first-child {
  width: 270px;
  margin-bottom: 35px;
}
.faq__thumb-img:nth-child(2) {
  width: 210px;
  transform: rotate(-13.72deg) translateY(82px);
  margin-left: 98px;
  margin-top: -82px;
}
.faq__thumb-img:nth-child(3) {
  width: 256px;
  margin-bottom: 10px;
  margin-left: -16px;
}
.faq__thumb-img:nth-child(4) {
  width: 210px;
  transform: rotate(-13.72deg);
  margin-left: 86px;
}
.about-page .faq__accordion .accordion-button {
  font-family: var(--lexendDeca);
}

.faq--style-2 {
  background-image: unset;
  padding-top: 130px;
}
.faq--style-2 .faq__accordion {
  max-width: 100%;
}
.faq--style-2 .accordion-button {
  color: var(--primary);
}
.faq--style-2 .accordion-button[aria-expanded="true"]::before {
  color: var(--secondary);
}
.category--hybrid .faq .section__title {
  max-width: 960px;
}
.event-detail-page .testimonial {
  padding-block: 110px 52px;
}
.event-detail-page .faq .section__title {
  max-width: 1065px;
}
.event-detail-page .faq__accordion {
  max-width: 1100px;
}
.event-detail-page .faq {
  padding-block: 115px;
}
.event-detail-page .faq__wrapper {
  transform: unset;
}

.team-detail-page .faq {
  background-color: var(--blue-100);
  background-image: unset;
  padding-block: 70px;
}
.team-detail-page .faq__wrapper {
  padding: 0;
  background-color: transparent;
  box-shadow: none;
  transform: unset;
  max-width: 782px;
}
.team-detail-page .faq__accordion {
  max-width: 100%;
  gap: 28px;
}
.team-detail-page .faq__accordion .accordion-button {
  color: var(--primary);
}
.team-detail-page .faq__accordion .accordion-button[aria-expanded="true"]::before {
  color: var(--secondary);
}
.team-detail-page .accordion-item {
  color: #000;
}
/* faq section end */

/* testimonial section start */
.testimonial {
  padding-block: 230px 113px;
  background-color: var(--blue-100);
}
.testimonial__section-title {
  margin-bottom: 80px;
}
.testimonial__slider .slick-list {
  padding: 20px 0 42px;
  overflow: visible;
}
.testimonial__slider .slick-slide {
  width: 312px;
  margin-right: 25px;
  height: auto;
}
.testimonial__card {
  border-radius: 50px 0;
  padding: 80px 32px 14px 38px;
}
.testimonial__quote {
	margin: 0 0 1rem;
}
.testimonial__quote-icon {
  width: 85px;
  height: 80px;
  background-color: var(--purple);
  border-radius: 50px;
  top: -11px;
  left: -12px;
}
.testimonial__quote-icon--blue {
  background-color: var(--blue-500);
}
.play-icon {
  width: 88px;
  height: 88px;
  background-color: var(--secondary);
}
.how-we-work-page .testimonial {
  padding-block: 85px 0;
}
.category--charitable .testimonial {
  padding-block: 117px 73px;
}
.event-detail-page .testimonial {
  padding-block: 110px 52px;
}
.city-page .testimonial {
  padding-block: 27px 127px;
}
.slider-nav__btn.disabled {
    opacity: 0.5;
    cursor: default;
    pointer-events: none;
    color: #ccc;
    border: 2px solid #ccc;
}
/* testimonial section end */

/* how-it-work section start */
.how-it-work {
  background-color: var(--primary);
  padding-top: 90px;
}
.how-it-work .row {
  --bs-gutter-x: 66px;
}
.how-it-work__thumb img {
  transition: all 1s ease-in-out;
}
.how-it-work__thumb:hover img {
  transform: scale(1.1);
}
.how-it-work__content {
  padding-block: 44px 64px;
}
.how-it-work__title {
  margin-bottom: 36px;
}

.how-it-work--style-2 {
  padding-block: 95px 125px;
  background-color: var(--blue-50);
}
.how-it-work--style-2 .row {
  --bs-gutter-x: 20px !important;
}
.how-it-work--style-2 .how-it-work__content {
  padding-left: 60px;
}
.how-it-work--style-2 .how-it-work__thumb {
  border-radius: 60px 0;
}
/* how-it-work section end */

/* callout section start */
.callout {
  background-color: var(--light-periwinkle);
  padding-block: 106px 115px;
}
.callout__title {
  margin-bottom: 75px;
}
.callout .row {
  --bs-gutter-x: 41px;
  --bs-gutter-y: 41px;
}
.callout__card {
  height: 274px;
  background-color: var(--purple);
  border-radius: 60px 0;
  padding-block: 50px;
  padding-inline: 12px;
}
.callout__card-title {
  font-size: 75px;
  letter-spacing: -0.18px;
}
.callout__card-btn {
  color: inherit;
  font-size: 22px;
  line-height: 24px;
  letter-spacing: -0.18px;
}
.callout__card-btn:hover {
  color: var(--secondary);
}
.callout__card--yellow {
  background-color: var(--yellow);
}
.callout__card--blue {
  background-color: var(--blue-500);
}
.callout__card--dark-blue {
  background-color: var(--primary);
}
.callout__card--orange {
  background-color: var(--secondary);
}
.callout--style-2::after {
  content: "";
  width: 100%;
  height: 148px;
  background-color: var(--light-periwinkle);
  position: absolute;
  bottom: -81px;
  left: 0;
  clip-path: polygon(
    81.393% 92.088%,
    81.393% 92.088%,
    83.579% 94.43%,
    85.827% 94.549%,
    88.107% 92.7%,
    90.388% 89.137%,
    92.641% 84.114%,
    94.835% 77.885%,
    96.941% 70.704%,
    98.929% 62.825%,
    100.769% 54.502%,
    102.431% 45.989%,
    99.653% 13.828%,
    70.145% 9.54%,
    19.876% 0.427%,
    19.876% 0.427%,
    17.434% 5.133%,
    14.737% 9.471%,
    11.898% 13.567%,
    9.032% 17.546%,
    6.25% 21.533%,
    3.668% 25.655%,
    1.397% 30.036%,
    -0.449% 34.802%,
    -1.756% 40.078%,
    -2.411% 45.99%,
    -2.411% 45.99%,
    -2.417% 47.857%,
    -2.288% 50.437%,
    -2.011% 53.692%,
    -1.576% 57.581%,
    -0.971% 62.067%,
    -0.184% 67.111%,
    0.797% 72.673%,
    1.983% 78.716%,
    3.386% 85.201%,
    5.018% 92.088%,
    5.018% 92.088%,
    6.771% 97.392%,
    8.595% 99.77%,
    10.468% 99.653%,
    12.366% 97.473%,
    14.267% 93.663%,
    16.146% 88.655%,
    17.982% 82.882%,
    19.751% 76.774%,
    21.43% 70.765%,
    22.996% 65.286%,
    22.996% 65.286%,
    24.005% 62.237%,
    25.165% 59.496%,
    26.48% 57.201%,
    27.954% 55.492%,
    29.591% 54.506%,
    31.395% 54.383%,
    33.37% 55.26%,
    35.519% 57.278%,
    37.848% 60.574%,
    40.359% 65.286%,
    40.359% 65.286%,
    42.748% 69.295%,
    44.765% 70.724%,
    46.497% 70.082%,
    48.032% 67.877%,
    49.454% 64.616%,
    50.852% 60.81%,
    52.311% 56.964%,
    53.918% 53.588%,
    55.761% 51.19%,
    57.925% 50.278%,
    57.925% 50.278%,
    60.295% 51.13%,
    62.692% 53.494%,
    65.102% 57.08%,
    67.515% 61.599%,
    69.919% 66.761%,
    72.302% 72.276%,
    74.653% 77.856%,
    76.959% 83.211%,
    79.21% 88.052%,
    81.393% 92.088%
  );
}
.callout--style-2 .callout__card {
  border-radius: 100px 0;
}
.category--charitable .callout {
  padding-block: 60px;
}
.callout__card--sm {
  height: 250px;
}
.callout__card--sm .callout__card-title {
  font-size: 54px;
  margin-bottom: 20px;
}
/* callout section end */

/* blog section start */
.blog {
  padding-block: 70px;
}
.blog__card {
  width: 100%;
}
.blog__slider .slick-list {
  overflow: visible;
  padding-bottom: 62px;
}
.blog__slider .slick-slide {
  width: 548px;
  margin-right: 32px;
}
.blog__card-thumb {
  height: 278px;
  border-radius: 50px 0 0;
}
.blog__card-thumb img {
  transition: all 1s ease-in-out;
}
.blog__card-thumb:hover img {
  transform: scale(1.1);
}
.blog__card-content {
  border-radius: 0 0 60px 0;
  background: #fff;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  padding: 26px 36px 40px;
}
.blog__card-subtitle {
  font-size: 16px;
  line-height: 1.4;
  color: var(--secondary);
}
h3.blog__card-title {
	font-size: 22px;
}
.blog__card-title {
  color: var(--primary);
  transition: all 0.3s;
}
.blog__card-title:hover {
  color: var(--secondary);
}
.blog.blog--style-2 {
  padding-top: 185px;
  transform: translateY(130px);
  margin-top: -130px;
}
.blog__slider2 {
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 32px;
}
.blog--style-2 .blog__card {
  height: 100%;
}
.blog--style-2 .blog__card-content {
  flex-grow: 1;
}

.blog--style-3 {
  padding-top: 114px;
}
.blog__main {
  background-color: var(--light-periwinkle);
  padding-top: 48px;
  padding-bottom: 250px;
}
.blog--style-3::after {
  content: "";
  width: 100%;
  height: 148px;
  background-color: var(--light-periwinkle);
  position: absolute;
  left: 0;
  top: 20px;
  clip-path: polygon(
    18.191% 7.913%,
    18.191% 7.913%,
    16.004% 5.571%,
    13.756% 5.452%,
    11.477% 7.3%,
    9.196% 10.863%,
    6.943% 15.887%,
    4.748% 22.116%,
    2.642% 29.297%,
    0.654% 37.176%,
    -1.186% 45.499%,
    -2.847% 54.012%,
    -0.07% 86.173%,
    29.438% 90.461%,
    79.707% 99.574%,
    79.707% 99.574%,
    82.149% 94.868%,
    84.846% 90.53%,
    87.685% 86.434%,
    90.551% 82.455%,
    93.333% 78.468%,
    95.915% 74.346%,
    98.186% 69.965%,
    100.032% 65.2%,
    101.339% 59.923%,
    101.994% 54.012%,
    101.994% 54.012%,
    102% 52.144%,
    101.871% 49.564%,
    101.595% 46.309%,
    101.16% 42.42%,
    100.554% 37.934%,
    99.767% 32.89%,
    98.786% 27.328%,
    97.6% 21.285%,
    96.197% 14.8%,
    94.565% 7.913%,
    94.565% 7.913%,
    92.813% 2.609%,
    90.988% 0.231%,
    89.116% 0.348%,
    87.217% 2.528%,
    85.317% 6.338%,
    83.437% 11.345%,
    81.601% 17.119%,
    79.832% 23.227%,
    78.153% 29.236%,
    76.588% 34.715%,
    76.588% 34.715%,
    75.578% 37.764%,
    74.418% 40.505%,
    73.103% 42.8%,
    71.629% 44.509%,
    69.992% 45.495%,
    68.188% 45.618%,
    66.213% 44.741%,
    64.064% 42.723%,
    61.736% 39.427%,
    59.225% 34.715%,
    59.225% 34.715%,
    56.836% 30.706%,
    54.818% 29.277%,
    53.086% 29.919%,
    51.552% 32.124%,
    50.129% 35.385%,
    48.732% 39.191%,
    47.272% 43.037%,
    45.665% 46.413%,
    43.823% 48.811%,
    41.658% 49.723%,
    41.658% 49.723%,
    39.288% 48.871%,
    36.892% 46.507%,
    34.481% 42.921%,
    32.068% 38.402%,
    29.664% 33.24%,
    27.281% 27.725%,
    24.931% 22.145%,
    22.624% 16.79%,
    20.374% 11.949%,
    18.191% 7.913%
  );
  z-index: -1;
}

.blog__cards {
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.blog__cards--two-cols .blog__card-thumb {
  height: auto;
  aspect-ratio: 203/177;
  border-top-left-radius: 80px;
}
.blog__cards--two-cols .blog__card-content {
  border-bottom-right-radius: 80px;
}
.blog__cards--four-cols {
  grid-template-columns: repeat(4, 1fr);
  gap: 42px;
}
.blog__cards--four-cols .blog__card-thumb {
  height: auto;
  aspect-ratio: 141/125;
  border-top-left-radius: 40px;
}
.blog__cards--four-cols .blog__card-content {
  border-bottom-right-radius: 40px;
  min-height: 174px;
}
.blog__cards--three-cols {
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 40px;
}
.blog__cards--three-cols .blog__card-thumb {
  height: auto;
  aspect-ratio: 390 / 345;
  border-top-left-radius: 40px;
}
.blog__cards--three-cols .blog__card-content {
  min-height: 155px;
  border-bottom-right-radius: 40px;
}
.blog.has-pagination {
  padding-bottom: 132px;
}
.blog--seasonal-news .blog__card-content {
  padding: 60px 16px;
  min-height: 278px;
}

.team-detail-page .blog__cards {
  max-width: 930px;
}
/* blog section end */

/* cta section start */

.cta__main {
  padding-top: 330px;
}
.cta__main::before {
  content: "";
  width: 100%;
  height: calc(100% - 165px);
  background-color: var(--blue-100);
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}
.cta__main::after {
  content: "";
  width: 100%;
  height: 148px;
  background-color: var(--blue-100);
  position: absolute;
  left: 0;
  top: 95px;
  clip-path: polygon(
    18.191% 7.913%,
    18.191% 7.913%,
    16.004% 5.571%,
    13.756% 5.452%,
    11.477% 7.3%,
    9.196% 10.863%,
    6.943% 15.887%,
    4.748% 22.116%,
    2.642% 29.297%,
    0.654% 37.176%,
    -1.186% 45.499%,
    -2.847% 54.012%,
    -0.07% 86.173%,
    29.438% 90.461%,
    79.707% 99.574%,
    79.707% 99.574%,
    82.149% 94.868%,
    84.846% 90.53%,
    87.685% 86.434%,
    90.551% 82.455%,
    93.333% 78.468%,
    95.915% 74.346%,
    98.186% 69.965%,
    100.032% 65.2%,
    101.339% 59.923%,
    101.994% 54.012%,
    101.994% 54.012%,
    102% 52.144%,
    101.871% 49.564%,
    101.595% 46.309%,
    101.16% 42.42%,
    100.554% 37.934%,
    99.767% 32.89%,
    98.786% 27.328%,
    97.6% 21.285%,
    96.197% 14.8%,
    94.565% 7.913%,
    94.565% 7.913%,
    92.813% 2.609%,
    90.988% 0.231%,
    89.116% 0.348%,
    87.217% 2.528%,
    85.317% 6.338%,
    83.437% 11.345%,
    81.601% 17.119%,
    79.832% 23.227%,
    78.153% 29.236%,
    76.588% 34.715%,
    76.588% 34.715%,
    75.578% 37.764%,
    74.418% 40.505%,
    73.103% 42.8%,
    71.629% 44.509%,
    69.992% 45.495%,
    68.188% 45.618%,
    66.213% 44.741%,
    64.064% 42.723%,
    61.736% 39.427%,
    59.225% 34.715%,
    59.225% 34.715%,
    56.836% 30.706%,
    54.818% 29.277%,
    53.086% 29.919%,
    51.552% 32.124%,
    50.129% 35.385%,
    48.732% 39.191%,
    47.272% 43.037%,
    45.665% 46.413%,
    43.823% 48.811%,
    41.658% 49.723%,
    41.658% 49.723%,
    39.288% 48.871%,
    36.892% 46.507%,
    34.481% 42.921%,
    32.068% 38.402%,
    29.664% 33.24%,
    27.281% 27.725%,
    24.931% 22.145%,
    22.624% 16.79%,
    20.374% 11.949%,
    18.191% 7.913%
  );
  z-index: -1;
}
.cta__content {
  max-width: 600px;
  padding-bottom: 97px;
}
.cta__content h2 {
  margin-bottom: 20px;
}
.cta__desc {
  font-size: 24px;
  line-height: 1.33;
  margin-bottom: 46px;
}
.cta__dots-shape {
  top: 0;
  transform: rotate(-68deg);
  max-width: 1488px;
  right: 0;
  margin-inline: auto;
  left: 0;
}

.cta__form {
  border-radius: 50px 0;
  background-color: var(--primary);
  box-shadow: 10px 10px 12px 0 rgba(0, 0, 0, 0.2);
  padding: 85px 40px;
  transform: translateY(-72px);
  margin-bottom: -72px;
}
.cta__form-title {
  gap: 15px;
  line-height: 1.4;
  padding-right: 24px;
}
.cta__form-title img {
  width: 42px;
  transform: rotate(15deg);
}
.input-field {
  height: 50px;
  border-radius: 3px;
  border: 0;
  font-size: 19px;
  letter-spacing: -0.18px;
  padding-inline: 13px;
  color: var(--gray-500);
}

.about-page .cta__main {
  padding-top: 112px;
}
.theme-card {
  border-radius: 60px 0;
  background-color: var(--purple);
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  padding: 100px;
  max-width: 776px;
}
.theme-card--sm {
  padding: 40px 60px;
  border-radius: 100px 0;
  min-height: 217px;
  gap: 10px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.15) !important;
}
.theme-card__text-btn:hover {
  text-decoration: underline;
}
.theme-card--blue {
  background-color: var(--primary);
  box-shadow: 10px 10px 12px 0 rgba(0, 0, 0, 0.2);
  border-radius: 100px 0;
}
.theme-card--orange {
  background-color: var(--secondary);
}
.theme-card__title {
  margin-bottom: 10px;
}
.theme-card__subtitle {
  margin-bottom: 32px;
}
.theme-card__desc {
  margin-bottom: 50px;
}
.about-page .cta__content {
  max-width: 1000px;
  padding-block: 166px;
}
.about-page .cta__content h2 {
  margin-bottom: 40px;
}
.about-page .cta__content p {
  max-width: 762px;
}
.about-page .cta__dots-shape {
  top: 190px;
}
.about-page .cta__main::before {
  height: calc(100% - 648px);
}
.about-page .cta__main::after {
  top: 554px;
}
.cta--bg-periwinkle .cta__main::before,
.cta--bg-periwinkle .cta__main::after {
  background-color: var(--light-periwinkle);
}

.cta--bg-white .cta__main::before,
.cta--bg-white .cta__main::after {
  background-color: var(--light-periwinkle);
}

.who-its-for-page .cta__main {
  padding-top: 534px;
}
.who-its-for-page .cta__main::before {
  height: calc(100% - 335px);
}
.who-its-for-page .cta__main::after {
  top: 254px;
}
.who-its-for-page .cta__content {
  max-width: 870px;
  padding-bottom: 162px;
}

.cta--style-2 .cta__main::after {
  display: none;
}
.cta--style-2 .cta__main::before {
  height: 100%;
}
.cta--style-2 .cta__main {
  padding-top: 186px;
}
.category-page .cta__content {
  max-width: 1000px;
  padding-bottom: 168px;
}
.category-page .cta__content .cta__desc {
  max-width: 762px;
}
.cta--style-2 .cta__dots-shape {
  top: -296px;
}

.cta--bg-white .cta__main::after,
.cta--bg-white .cta__main::before {
  display: none;
}
.category--charitable .cta {
  transform: translateY(-130px);
  margin-bottom: -220px;
}

.event-detail-page .cta__content {
  max-width: 1032px;
}
.event-detail-page .cta__desc {
  max-width: 762px;
}
.event-detail--go-team .cta__desc {
  max-width: 924px;
}

.nationwide-page .cta,
.state-page .cta {
  margin-top: -250px;
}
.nationwide-page .cta__main,
.state-page .cta__main {
  padding-top: 440px;
}
.nationwide-page .cta__content,
.state-page .cta__content,
.city-page .cta__content {
  max-width: 760px;
}

.resources-page .cta__content {
  max-width: 720px;
  padding-bottom: 200px;
}
.resources-page .cta__form-wrapper input {
  max-width: 413px;
}
.resources-page .cta__main::before {
  height: calc(100% - 290px);
}
.resources-page .cta__main::after {
  top: 195px;
}
.resources-page .cta {
  transform: translateY(-300px);
  margin-bottom: -300px;
}

.team-page .cta__main::after {
  display: none;
}
.team-page .cta__content {
  max-width: 1032px;
}
.team-page .cta__desc {
  max-width: 762px;
}
.team-page .cta__main {
  padding-top: 490px;
}
.team-page .cta__main::before {
  height: calc(100% - 230px);
}
.team-page .cta {
  transform: translateY(-260px);
  margin-bottom: -260px;
}
/* cta section end */

/* footer section start */

.footer {
  padding-block: 122px 64px;
}
.footer__wrapper {
  gap: 40px;
}
.footer__widget {
  padding-block: 10px;
}
.footer__widget-title {
  font-size: 17px;
  line-height: 24px;
  letter-spacing: -0.24px;
  margin-bottom: 10px;
}
.footer__links {
  gap: 10px;
}
.footer__links li {
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: -0.18px;
  color: var(--gray-300);
}
.footer__links li a {
  color: var(--primary);
}
.footer__links li a span {
  color: var(--secondary);
}
.footer__links li a:hover {
  color: var(--secondary);
}
.footer__widget--logos {
  gap: 32px;
}
.footer__identity {
  padding-top: 0px;
  margin-top: -50px;
}
.footer__social {
  gap: 14px;
  margin-bottom: 44px;
}
.footer__social-icon {
  width: 57px;
  height: 57px;
  border: 1px solid var(--gray-300);
}
.footer__social-icon svg path {
  transition: all 0.3s;
}
.footer__social-icon:hover svg path {
  fill: var(--secondary);
}
.footer__social-icon:hover {
  border-color: var(--secondary);
}
.footer__logo-img {
  width: 370px;
}
.footer__copyright {
  font-size: 15px;
  line-height: 24px;
  letter-spacing: -0.24px;
  font-family: var(--parkinsans);
  margin-block: 34px 6px;
}
/* footer section end */

/* page nav start */
.page-nav {
  background-color: var(--yellow);
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  top: 80px;
}
.page-nav__wrapper {
  height: 75px;
  gap: 44px;
}
.page-nav__link {
  font-size: 18px;
  color: var(--primary);
  font-family: var(--parkinsans);
}
.page-nav__link:hover {
  color: var(--secondary);
}
/* page nav end */

/* about section start */

.about {
  background-color: var(--primary);
  padding-top: 34px;
  margin-bottom: 217px;
}
.about__content {
  width: 644px;
  padding-block: 98px 120px;
}
.about__content p {
  max-width: 630px;
}
.about__content ul li {
  list-style-type: disc;
}
.about__thumb:first-child {
  width: 392px;
  background-image: linear-gradient(90deg, #0aa7ea 0%, #14aaea 11%, #30b2eb 31%, #5ec0ed 57%, #9dd3f0 88%, #b8dbf2 100%);
  padding: 34px;
}
.about__thumb {
  aspect-ratio: 1 / 1;
}
.about__thumb:nth-child(2) {
  background-image: linear-gradient(90deg, #ff9511 0%, #ff9f13 31%, #ffbb1b 85%, #ffc51e 100%);
  padding: 36px;
  width: 472px;
  max-width: 70%;
  top: 254px;
  left: 90px;
}
.about__thumb:nth-child(3) {
  width: 275px;
  background-image: linear-gradient(90deg, #a068d7 0%, #9d64d6 22%, #9759d3 41%, #8c47cd 59%, #7c2ec6 77%, #690dbd 94%, #6100ba 100%);
  padding: 25px;
  left: 9px;
  top: 605px;
}
.about__thumb-container {
  margin-left: -90px;
}
.about--pro-facilitators {
  padding-block: 100px 130px;
}
.about--benefit {
  background-size: cover;
  background-position: center;
  padding-block: 80px 160px;
}
.about--benefit .about__wrapper {
  background-color: var(--purple);
  border-radius: 100px 0;
  box-shadow: 10px 10px 12px 0 rgba(0, 0, 0, 0.2);
  padding: 66px 36px;
}
.about--benefit .about__wrapper--bg-blue {
  background-color: var(--primary);
}
.about--benefit .about__thumb:first-child {
  width: 305px;
  padding: 18px;
}
.about--benefit .about__thumb:nth-child(2) {
  width: 268px;
  padding: 18px;
  top: 200px;
  left: 110px;
}
.impact-page .about--benefit {
  padding-block: 60px;
  background-color: var(--blue-100);
}
.impact-page .about--benefit .about__thumb:nth-child(2) {
  width: 368px;
}
.impact-page .about--benefit .about__wrapper {
  padding: 40px 10px 117px 26px;
}
.impact-page .about--benefit .about__content {
  padding-top: 44px;
}

.state-page .about {
  padding-block: 144px 160px;
}
.state-page .about__wrapper {
  gap: 10px;
}
.state-page .about__thumb-container {
  width: 395px;
}
.state-page .about__content {
  width: 600px;
}
/* about section end */

/* about info section start */
.about-info {
  padding-block: 60px 90px;
}
.about-info__thumb {
  max-width: 100%;
  width: 275px;
  height: 298px;
  border-radius: 50px 0;
  overflow: hidden;
  margin-bottom: 44px;
}
.about-info__thumb img {
  transition: all 1s ease-in-out;
}
.about-info__thumb:hover img {
  transform: scale(1.1);
}
.about-info__content h3 {
  color: var(--primary);
  margin-bottom: 10px;
}
/* about info section end */

/* reach section start */
.reach {
  padding-block: 66px 82px;
  background-color: var(--blue-100);
}
.reach__wrapper {
  gap: 80px;
}
.reach__thumb {
  width: 456px;
}
.reach__content .section__title {
  margin-bottom: 36px;
}
.reach__content p {
  margin-bottom: 36px;
}
/* reach section end */

/* difference section start */
.difference {
  background-color: var(--primary);
  padding-block: 74px 96px;
}
.difference__content {
  max-width: 730px;
}
.difference__content p {
  margin-bottom: 20px;
}
.section-top-card {
  top: -140px;
  padding: 40px 40px 40px 52px;
}
.section-top-card__inner {
  width: 428px;
  min-height: 420px;
  background-color: var(--purple);
  border-radius: 60px 0;
  padding: 93px 80px 93px 67px;
}
.difference--team-bonding {
  padding-block: 110px;
}
.difference--team-bonding .difference__content {
  max-width: 572px;
}

.difference--team-bonding .section-top-card {
  right: 85px;
  top: -48px;
}
.difference--team-bonding .section-top-card__inner {
  width: 525px;
  padding: 80px 44px 70px 70px;
}
/* difference section end */

/* teambuilding section start */
.team-building {
  padding-block: 146px;
  background-size: 100% 100%;
}
/* teambuilding section end */

/* product section start */
.product {
  padding-top: 110px;
}
.product__section-title {
  margin-bottom: 63px;
}
.product__slider .slick-list {
  padding-bottom: 62px;
}
.product__slider .slick-slide {
  margin-right: 32px;
}

.product__card {
  border-radius: 40px 0;
  background: #fff;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.15);
}
.product__card-thumb {
  aspect-ratio: 141 / 125;
}
.product__card-thumb img {
  transition: all 1s ease-in-out;
}
.product__card-thumb:hover img {
  transform: scale(1.1);
}
.product__card-content {
  padding: 16px 16px 20px;
}
.product__card-title {
  color: var(--primary);
}
.product__rating img {
  width: 24px;
}
.product__rating span {
  font-size: 12px;
}
.product__add-wishlist-btn img {
  width: 24px;
}
.product__caption {
  font-size: 12px;
  line-height: 12px;
  color: var(--cream);
  background-color: var(--purple);
  padding: 8px 12px;
}
/* product section end */

/* category section start */
.category--bg-blue {
  background-color: var(--blue-100);
}
.filter {
  border-radius: 40px 0;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.15);
  padding-block: 22px;
  top: 80px;
}
.filter .container {
  max-width: 1312px;
}
.filter__form {
  gap: 42px;
}
.filter__title {
  color: var(--secondary);
  min-width: 100px;
}
.filter__form-wrapper {
  gap: 24px;
}
.filter__form-left {
  gap: 10px;
  padding-block: 12px;
}
.filter__item select {
  border: 1px solid var(--grey);
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.15);
  height: 56px;
  padding-inline: 16px 40px;
  color: var(--blue-900);
  letter-spacing: -0.32px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.filter__item-icon {
  width: 24px;
  height: 24px;
  right: 16px;
  pointer-events: none;
}
.filter__btn {
  border-radius: 8px;
  border: 1px solid var(--grey);
  background-color: var(--secondary);
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.15);
  height: 56px;
  color: #fff;
  letter-spacing: -0.32px;
  width: 154px;
}
.filter__sort-btn {
  border-radius: 8px;
  border: 1px solid var(--grey);
  background-color: #fff;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.15);
  height: 56px;
  padding-inline: 16px;
  gap: 18px;
  width: 114px;
}
.filter__item--md {
  max-width: 250px;
}
.filter__item--sm {
  max-width: 165px;
}
.filter__dropdown-toggle {
  border: 1px solid var(--grey);
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.15);
  height: 44px;
  padding: 0 16px;
  color: var(--blue-900);
  letter-spacing: -0.32px;
}
.filter__dropdown-toggle::after {
  display: none;
}
.filter__dropdown-menu {
  border: 1px solid var(--grey);
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.15);
  min-width: 300px;
  width: 100%;
  padding: 16px;
}
.filter--sm {
  max-width: 1310px;
}
.filter--sm .filter__form {
  gap: 24px;
}
.filter--sm .filter__form-left {
  gap: 24px;
}
.nationwide-page .filter__form {
  padding-inline: 85px;
}

.category--charitable .category {
  background-color: var(--light-periwinkle);
}
.category__cards {
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
}
.category__cards--three-col {
  grid-template-columns: repeat(3, 1fr);
}
.category__card {
  border-radius: 40px 0;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.15);
}
.category__card-thumb img {
  transition: all 1s ease-in-out;
}
.category__card-thumb {
  aspect-ratio: 29 / 25;
}
.category__card-thumb:hover img {
  transform: scale(1.1);
}
.category__card-content {
  min-height: 160px;
}
.category__card-title {
  color: var(--primary);
}
.category__card--lg {
  max-width: 1070px;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
}
.category__card--lg .category__card-thumb {
  aspect-ratio: unset;
}
.category__main {
  padding-top: 20px;
  padding-bottom: 92px;
}
.category__cards {
  margin-top: 60px;
}
.category__card--lg .category__card-desc {
  max-width: 417px;
  min-height: auto;
  margin-bottom: 30px;
}
.category__card-subtitle {
  color: var(--secondary);
  margin-bottom: 10px;
}
.category__card--lg .category__card-title {
  margin-bottom: 10px;
}

.category--style-2 .category__card--lg {
  grid-column: span 2 / span 2;
  grid-row: span 2 / span 2;
}
.category--style-2 .category__card--lg .category__card-content {
  padding: 32px;
}
.category--style-2 .category__card--lg .category__card-desc {
  max-width: 100%;
}

.category--style-3 .category__card--lg {
  grid-column: span 2 / span 2;
  gap: 20px;
  grid-template-columns: 280px 1fr;
}
.category__title {
  margin-bottom: 35px;
}
.category__title span {
  color: var(--secondary);
}

.state-page .category {
  padding-block: 96px 73px;
}

.city-page .category {
  padding-top: 37px;
}
.city-page .category__main {
  padding-block: 76px 120px;
}
.see-all-btn {
  margin-top: 105px;
}

.filter__search-input {
  height: 56px;
  padding-inline: 16px 60px;
  border: 1px solid var(--grey);
  color: var(--blue-900);
  letter-spacing: -0.32px;
}
.filter__search-input::placeholder {
  color: var(--gray-300);
}
.filter__search-icon {
  padding: 6px;
}
.filter__search-icon img {
  width: 24px;
}
.filter__search {
  max-width: 522px;
  width: 100%;
}
.category--insight .filter__item--sm {
  max-width: 200px;
}
.category--insight .filter--sm {
  max-width: 1270px;
}
.category--insight .category__main {
  padding-top: 80px;
}
.category__wrapper {
  gap: 80px;
}
.category__wrapper-right {
  width: 236px;
  gap: 70px;
}
.category--insight .category__cards {
  gap: 42px;
}
.category--insight .blog__card-thumb {
  aspect-ratio: 141 / 125;
  height: auto;
}
.podcast-platform-btn img {
  width: 220px;
}
/* category section end */

/* hybrid-feature section start */
.hybrid-feature {
  padding-block: 110px;
  background-image: url("../img/hybrid-feature-bg.jpg");
  background-size: cover;
  background-position: center;
}
.hybrid-feature__wrapper {
  border-radius: 100px 0;
  background-color: var(--primary);
  padding: 90px 50px 90px 120px;
  gap: 50px;
}
.hybrid-feature__thumb {
  width: 405px;
}
.hybrid-feature__list {
  gap: 28px;
}
.hybrid-feature__item {
  gap: 20px;
}
.hybrid-feature__icon {
  width: 88px;
}
.hybrid-feature__icon img {
  max-width: 100%;
}
/* hybrid-feature section end */

/* events section start */
.events {
  padding-top: 117px;
}
.events__title {
  max-width: 960px;
  margin-bottom: 58px;
}
.events__cards {
	
  grid-template-columns: repeat(4, 1fr);
  gap: 68px 42px;
}
.events__cards.three-wide-grid {
  grid-template-columns: repeat(3, 1fr);
}
.events__cards.two-wide-grid {
  grid-template-columns: repeat(2, 1fr);
}
.events--bg-blue {
  background-color: var(--blue-100);
}
.event--donation-station {
  padding-bottom: 110px;
}
.event--donation-station .events__cards {
  row-gap: 37px;
}
.events--style-2 {
  background-color: var(--light-periwinkle);
  padding-top: 40px;
  padding-bottom: 200px;
  margin-top: 90px;
}
.events--style-2::after {
  content: "";
  width: 100%;
  height: 148px;
  background-color: var(--light-periwinkle);
  position: absolute;
  left: 0;
  top: -95px;
  clip-path: polygon(
    18.191% 7.913%,
    18.191% 7.913%,
    16.004% 5.571%,
    13.756% 5.452%,
    11.477% 7.3%,
    9.196% 10.863%,
    6.943% 15.887%,
    4.748% 22.116%,
    2.642% 29.297%,
    0.654% 37.176%,
    -1.186% 45.499%,
    -2.847% 54.012%,
    -0.07% 86.173%,
    29.438% 90.461%,
    79.707% 99.574%,
    79.707% 99.574%,
    82.149% 94.868%,
    84.846% 90.53%,
    87.685% 86.434%,
    90.551% 82.455%,
    93.333% 78.468%,
    95.915% 74.346%,
    98.186% 69.965%,
    100.032% 65.2%,
    101.339% 59.923%,
    101.994% 54.012%,
    101.994% 54.012%,
    102% 52.144%,
    101.871% 49.564%,
    101.595% 46.309%,
    101.16% 42.42%,
    100.554% 37.934%,
    99.767% 32.89%,
    98.786% 27.328%,
    97.6% 21.285%,
    96.197% 14.8%,
    94.565% 7.913%,
    94.565% 7.913%,
    92.813% 2.609%,
    90.988% 0.231%,
    89.116% 0.348%,
    87.217% 2.528%,
    85.317% 6.338%,
    83.437% 11.345%,
    81.601% 17.119%,
    79.832% 23.227%,
    78.153% 29.236%,
    76.588% 34.715%,
    76.588% 34.715%,
    75.578% 37.764%,
    74.418% 40.505%,
    73.103% 42.8%,
    71.629% 44.509%,
    69.992% 45.495%,
    68.188% 45.618%,
    66.213% 44.741%,
    64.064% 42.723%,
    61.736% 39.427%,
    59.225% 34.715%,
    59.225% 34.715%,
    56.836% 30.706%,
    54.818% 29.277%,
    53.086% 29.919%,
    51.552% 32.124%,
    50.129% 35.385%,
    48.732% 39.191%,
    47.272% 43.037%,
    45.665% 46.413%,
    43.823% 48.811%,
    41.658% 49.723%,
    41.658% 49.723%,
    39.288% 48.871%,
    36.892% 46.507%,
    34.481% 42.921%,
    32.068% 38.402%,
    29.664% 33.24%,
    27.281% 27.725%,
    24.931% 22.145%,
    22.624% 16.79%,
    20.374% 11.949%,
    18.191% 7.913%
  );
  z-index: -1;
}
/* events section end */

/* impact section start */
.impact {
  background-color: var(--primary);
}
.impact__card-thumb {
  max-width: 518px;
  padding: 53px;
}
.impact__card-thumb-img img {
  aspect-ratio: 1/ 1;
  transition: all 1s ease-in-out;
}
.impact__card-thumb-shape {
  transform: rotate(15deg);
  position: absolute;
  top: 15px;
  left: 4px;
  width: 99%;
}
.impact__card-thumb:hover .impact__card-thumb-img img {
  transform: scale(1.1);
}

.impact__card-title {
  margin-bottom: 10px;
}
.impact__card-desc {
  min-height: 48px;
  margin-bottom: 10px;
}
/* impact section end */

/* event detail section start */
.event-detail {
  background-color: var(--blue-100);
  padding-block: 93px;
}
.event-detail__wrapper {
  gap: 105px;
}
.event-detail__right {
  width: 256px;
}
.event-detail__info-title {
  font-size: 15px;
  line-height: 28px;
}
.event-detail__info {
  gap: 32px;
  max-width: 720px;
}
.event-detail__info-list li {
  gap: 12px;
}
.event-detail__info-list li p {
  margin-top: 8px;
}
.event-detail__feature {
  background-color: var(--yellow);
  padding: 45px 28px;
  border-radius: 100px 0;
}
.event-detail__feature--blue {
  background-color: var(--primary);
}
.event-detail__feature-icon {
  width: 55px;
  transform: rotate(18deg);
}
.event-detail__feature-list li {
  font-size: 15px;
  letter-spacing: -0.18px;
  list-style-type: disc;
  line-height: 20px;
}
.event-detail__feature h6 {
  font-size: 15px;
  letter-spacing: -0.18px;
  list-style-type: disc;
  line-height: 20px;
}
.event-detail__feature-list {
  padding-left: 20px;
}
.event-detail__cta {
  margin-top: 72px;
  max-width: 256px;
}
.event-detail__cta-thumb-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.event-detail__cta-thumb {
  padding: 26px;
  margin-bottom: 10px;
}
.event-detail__cta-thumb-shape {
  top: 5px;
  left: 0px;
  max-width: 100%;
  transform: rotate(15deg);
}
.event-detail .theme-card {
  margin-top: 170px;
}
.event-detail__impact {
  max-width: 700px;
}
.event-detail__cards {
  margin-top: 95px;
  gap: 100px;
}
.event-detail__card {
  gap: 40px;
}
.event-detail__card-thumb {
  width: 300px;
  border-radius: 50px 0;
}
.event-detail__card-thumb img {
  transition: all 1s ease-in-out;
}
.event-detail__card-thumb:hover img {
  transform: scale(1.1);
}
/* event detail section end */

/* facilitation section start */

.facilitation {
  background-color: var(--light-periwinkle);
  padding-block: 82px 96px;
  background-size: cover;
  background-position: center;
}
.facilitation .section__title h2 {
  margin-bottom: 14px;
}
.facilitation__card-thumb {
  width: 290px;
  gap: 8px 12px;
  padding-top: 66px;
}
.facilitation__card-thumb img {
  border-radius: 32px 0;
}
.facilitation__card-thumb img:first-child {
  width: 148px;
  height: 154px;
}
.facilitation__card-thumb img:nth-child(2) {
  width: 129px;
  height: 135px;
  margin-top: 58px;
}
.facilitation__card-thumb img:nth-child(3) {
  width: 109px;
  height: 114px;
  margin-left: 39px;
}
.facilitation__card {
  gap: 32px;
}
.facilitation__card-content {
  max-width: 510px;
}
.facilitation__card-content .testimonial__quote-icon {
  margin-bottom: 20px;
  margin-left: -16px;
}
.facilitation__quote {
  margin-bottom: 60px;
}
.facilitation__card-content h3 a {
  color: #062062;
}
.facilitation__card-content h3 a span {
  color: var(--secondary);
}
.facilitation__card-content h3 a:hover {
  color: var(--secondary);
}

.state-page .testimonial {
  padding-block: 80px 60px;
}

.facilitation--style-2 {
  padding-block: 95px 140px;
}
.facilitation--style-2 .facilitation__card {
  border-radius: 100px 0;
  background-color: var(--primary);
  box-shadow: 10px 10px 12px 0 rgba(0, 0, 0, 0.2);
  padding: 87px 66px 66px;
  gap: 98px;
}
.facilitation--style-2 .facilitation__quote {
  min-height: 254px;
  margin-bottom: 50px;
}
/* facilitation section end */

/* beneficiary section start */

.beneficiary {
  padding-block: 100px;
}
.beneficiary__wrapper {
  gap: 68px;
}
.beneficiary__content {
  max-width: 478px;
  padding-left: 20px;
}
.beneficiary__thumb {
  max-width: 534px;
  margin-bottom: -70px;
}
.beneficiary .section__title {
  margin-bottom: 35px;
}
.beneficiary__logos {
  margin-left: -20px;
  margin-bottom: 70px;
}
.beneficiary__logo {
  width: 213px;
}
.beneficiary__cause span {
  font-size: 44px;
  line-height: 1;
}
.beneficiary__thumb img {
  border-radius: 268px 268px 0 0;
}
.beneficiary__thumb::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: var(--yellow);
  position: absolute;
  bottom: 0;
  right: -36px;
  border-radius: 268px 268px 0 0;
  z-index: -1;
}
.beneficiary__impact {
  background-color: var(--purple);
  border-radius: 80px 0;
  padding: 43px;
}
.beneficiary__impact h3 {
  max-width: 515px;
}
/* beneficiary section end */

/* steps section start */
.steps {
  background-color: var(--blue-100);
}
.steps__item {
  width: 275px;
  padding-left: 40px;
  gap: 32px;
}
.steps__number {
  width: 74px;
  height: 74px;
  background-color: var(--secondary);
  font-size: 50px;
  font-family: var(--parkinsans);
  position: absolute;
  top: 0;
  left: 0;
}
.steps__thumb {
  width: 100%;
}

.steps__divider {
  height: 5px;
  margin-top: 32px;
  margin-right: 32px;
}
/* steps section end */

/* tailoring section start */
.tailoring__wrapper {
  padding-top: 125px;
}
.tailoring__img {
  width: 518px;
  position: absolute;
  top: -75px;
  right: -54px;
  border-radius: 50px 0;
}
.tailoring__card {
  max-width: 815px;
  border-radius: 100px 0;
  padding-right: 150px;
}
/* tailoring section end */

/* post detail section start */
.post-detail {
  padding-top: 10px;
  padding-bottom: 120px;
}
.post-detail__sidebar {
  width: 204px;
  padding-top: 24px;
}
.sidebar__main {
  top: 120px;
  padding-block: 10px;
}
.sidebar__title {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 10px;
}
.sidebar__menu-link {
  color: var(--primary);
  font-family: var(--parkinsans);
  font-size: 15px;
  line-height: 24px;
  letter-spacing: -0.24px;
  padding-inline: 3px;
  gap: 12px;
}
.sidebar__menu-link span {
  color: var(--secondary);
}
.sidebar__menu-link:hover {
  color: var(--secondary);
}
.sidebar__menu-item:hover .sidebar__menu-link {
  background-color: var(--blue-100);
  color: var(--primary);
}
.sidebar__menu {
  gap: 10px;
}
.post-detail__content {
  padding-inline: 24px 74px;
}
.post-detail__thumb img {
  transition: all 1s ease-in-out;
}
.post-detail__thumb:hover img {
  transform: scale(1.1);
}
.post-detail__thumb {
  margin-bottom: 28px;
}
.post-detail__right {
  width: 240px;
  padding-top: 50px;
}

.author {
  border-radius: 100px 0;
  background-color: var(--purple);
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.15);
  padding: 25px 37px 25px 25px;
  margin-bottom: 30px;
}
.author__img {
  margin-bottom: 30px;
}

.author {
  border-radius: 100px 0;
  background-color: var(--purple);
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.15);
  padding: 25px 37px 25px 25px;
  margin-bottom: 30px;
}
.author__img {
  margin-bottom: 30px;
}
.subscribe-form {
  border-radius: 100px 0;
  background-color: var(--primary);
  padding: 25px 22px 32px 25px;
}
.subscribe-form__icon {
  width: 80px;
  transform: rotate(15deg);
  margin-bottom: 4px;
}
.subscribe-form__input {
  margin-bottom: 20px;
}

.toc-dropdown__btn {
  border: 1px solid var(--grey);
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.15);
  height: 44px;
  padding: 0 16px;
  color: var(--primary);
  letter-spacing: -0.32px;
  border-radius: 8px;
  background-color: #fff;
  font-weight: 700;
}
.toc-dropdown__btn svg {
  width: 24px;
}
.toc-dropdown__menu {
  border: 1px solid var(--grey);
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.15);
  padding-block: 24px;
}
.toc-dropdown__menu li a {
  font-weight: 700;
  color: var(--primary);
}
.toc-dropdown__menu li a span {
  color: var(--secondary);
}
.toc-dropdown__menu li a:hover {
  background-color: var(--blue-100);
  color: var(--primary);
}
/* post detail section end */

/* venues section start */
.venues {
  padding-block: 120px;
  background-color: var(--light-periwinkle);
}
.venues::after {
  content: "";
  width: 100%;
  height: 148px;
  background-color: var(--light-periwinkle);
  position: absolute;
  left: 0;
  top: -85px;
  clip-path: polygon(
    18.191% 7.913%,
    18.191% 7.913%,
    16.004% 5.571%,
    13.756% 5.452%,
    11.477% 7.3%,
    9.196% 10.863%,
    6.943% 15.887%,
    4.748% 22.116%,
    2.642% 29.297%,
    0.654% 37.176%,
    -1.186% 45.499%,
    -2.847% 54.012%,
    -0.07% 86.173%,
    29.438% 90.461%,
    79.707% 99.574%,
    79.707% 99.574%,
    82.149% 94.868%,
    84.846% 90.53%,
    87.685% 86.434%,
    90.551% 82.455%,
    93.333% 78.468%,
    95.915% 74.346%,
    98.186% 69.965%,
    100.032% 65.2%,
    101.339% 59.923%,
    101.994% 54.012%,
    101.994% 54.012%,
    102% 52.144%,
    101.871% 49.564%,
    101.595% 46.309%,
    101.16% 42.42%,
    100.554% 37.934%,
    99.767% 32.89%,
    98.786% 27.328%,
    97.6% 21.285%,
    96.197% 14.8%,
    94.565% 7.913%,
    94.565% 7.913%,
    92.813% 2.609%,
    90.988% 0.231%,
    89.116% 0.348%,
    87.217% 2.528%,
    85.317% 6.338%,
    83.437% 11.345%,
    81.601% 17.119%,
    79.832% 23.227%,
    78.153% 29.236%,
    76.588% 34.715%,
    76.588% 34.715%,
    75.578% 37.764%,
    74.418% 40.505%,
    73.103% 42.8%,
    71.629% 44.509%,
    69.992% 45.495%,
    68.188% 45.618%,
    66.213% 44.741%,
    64.064% 42.723%,
    61.736% 39.427%,
    59.225% 34.715%,
    59.225% 34.715%,
    56.836% 30.706%,
    54.818% 29.277%,
    53.086% 29.919%,
    51.552% 32.124%,
    50.129% 35.385%,
    48.732% 39.191%,
    47.272% 43.037%,
    45.665% 46.413%,
    43.823% 48.811%,
    41.658% 49.723%,
    41.658% 49.723%,
    39.288% 48.871%,
    36.892% 46.507%,
    34.481% 42.921%,
    32.068% 38.402%,
    29.664% 33.24%,
    27.281% 27.725%,
    24.931% 22.145%,
    22.624% 16.79%,
    20.374% 11.949%,
    18.191% 7.913%
  );
  z-index: -1;
}
/* venues section end */

/* podcast section start */
.podcast {
  padding-block: 87px 145px;
  background-color: var(--cream);
}
.podcast::after {
  content: "";
  width: 100%;
  height: 148px;
  background-color: var(--cream);
  position: absolute;
  left: 0;
  top: -95px;
  clip-path: polygon(
    18.191% 7.913%,
    18.191% 7.913%,
    16.004% 5.571%,
    13.756% 5.452%,
    11.477% 7.3%,
    9.196% 10.863%,
    6.943% 15.887%,
    4.748% 22.116%,
    2.642% 29.297%,
    0.654% 37.176%,
    -1.186% 45.499%,
    -2.847% 54.012%,
    -0.07% 86.173%,
    29.438% 90.461%,
    79.707% 99.574%,
    79.707% 99.574%,
    82.149% 94.868%,
    84.846% 90.53%,
    87.685% 86.434%,
    90.551% 82.455%,
    93.333% 78.468%,
    95.915% 74.346%,
    98.186% 69.965%,
    100.032% 65.2%,
    101.339% 59.923%,
    101.994% 54.012%,
    101.994% 54.012%,
    102% 52.144%,
    101.871% 49.564%,
    101.595% 46.309%,
    101.16% 42.42%,
    100.554% 37.934%,
    99.767% 32.89%,
    98.786% 27.328%,
    97.6% 21.285%,
    96.197% 14.8%,
    94.565% 7.913%,
    94.565% 7.913%,
    92.813% 2.609%,
    90.988% 0.231%,
    89.116% 0.348%,
    87.217% 2.528%,
    85.317% 6.338%,
    83.437% 11.345%,
    81.601% 17.119%,
    79.832% 23.227%,
    78.153% 29.236%,
    76.588% 34.715%,
    76.588% 34.715%,
    75.578% 37.764%,
    74.418% 40.505%,
    73.103% 42.8%,
    71.629% 44.509%,
    69.992% 45.495%,
    68.188% 45.618%,
    66.213% 44.741%,
    64.064% 42.723%,
    61.736% 39.427%,
    59.225% 34.715%,
    59.225% 34.715%,
    56.836% 30.706%,
    54.818% 29.277%,
    53.086% 29.919%,
    51.552% 32.124%,
    50.129% 35.385%,
    48.732% 39.191%,
    47.272% 43.037%,
    45.665% 46.413%,
    43.823% 48.811%,
    41.658% 49.723%,
    41.658% 49.723%,
    39.288% 48.871%,
    36.892% 46.507%,
    34.481% 42.921%,
    32.068% 38.402%,
    29.664% 33.24%,
    27.281% 27.725%,
    24.931% 22.145%,
    22.624% 16.79%,
    20.374% 11.949%,
    18.191% 7.913%
  );
  z-index: -1;
}
.podcast__wrapper {
  gap: 56px;
}
.podcast__thumb {
  width: 308px;
}
.podcast__content {
  max-width: 584px;
}
.podcast__title {
  margin-bottom: 36px;
}
.podcast__desc {
  margin-bottom: 38px;
}
/* podcast section end */

/* quote style start */
.quote {
  border-radius: 60px 0;
  gap: 30px;
  padding: 32px;
  margin-bottom: 80px;
}
.quote__icon {
  width: 95px;
}
.post-detail .container {
  max-width: 1310px;
}
.quote__content {
  max-width: 528px;
}
.quote__desc {
  margin-bottom: 30px;
}
.quote__author h5,
.quote__author span {
  font-size: 20px;
  line-height: 1.4;
  font-family: var(--parkinsans);
}
.quote--bg-light-blue {
  background-color: var(--blue-100);
}
.quote--style-2 {
  padding-block: 60px;
}
.quote--bg-dark-blue {
  background-color: var(--primary);
}
/* quote style end */

/* resources section start */
.resources {
  padding-top: 30px;
  padding-bottom: 282px;
  background-color: var(--blue-100);
}
.resources .row {
  --bs-gutter-x: 55px;
  --bs-gutter-y: 40px;
}
/* resources section end */

/* team section start */
.team {
  padding-block: 55px 100px;
}
.team__members .row {
  --bs-gutter-x: 40px;
  --bs-gutter-y: 32px;
}
.team__member-img {
  width: 100%;
  aspect-ratio: 1 / 1;
}
.team__member {
  border-radius: 40px 0;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.15);
  height: 100%;
}
.team__member-info {
  padding: 20px 20px 24px;
}
.team__member-name {
  color: var(--primary);
  letter-spacing: 0.18px;
}
.team--facilitators {
  background-color: var(--blue-100);
  padding-bottom: 185px;
}
.team--facilitators .team__member {
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
}
.team--facilitators .team__member-img {
  height: 360px;
  aspect-ratio: unset;
}
/* team section end */

/* contact section start */

.contact {
  padding-block: 32px;
}
.contact::before {
  content: "";
  width: 100%;
  height: 457px;
  background-color: var(--blue-100);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.contact::after {
  content: "";
  width: 100%;
  height: 148px;
  background-color: var(--blue-100);
  position: absolute;
  top: 402px;
  left: 0;
  z-index: -1;
  clip-path: polygon(
    81.463% 91.66%,
    81.463% 91.66%,
    83.649% 94.002%,
    85.897% 94.122%,
    88.176% 92.273%,
    90.457% 88.71%,
    92.71% 83.687%,
    94.905% 77.458%,
    97.011% 70.277%,
    98.999% 62.397%,
    100.839% 54.075%,
    102.5% 45.562%,
    99.723% 13.4%,
    70.215% 9.112%,
    19.946% -0%,
    19.946% -0%,
    17.503% 4.705%,
    14.806% 9.043%,
    11.968% 13.139%,
    9.101% 17.118%,
    6.32% 21.106%,
    3.737% 25.227%,
    1.466% 29.608%,
    -0.379% 34.374%,
    -1.687% 39.65%,
    -2.342% 45.562%,
    -2.342% 45.562%,
    -2.348% 47.43%,
    -2.218% 50.01%,
    -1.942% 53.264%,
    -1.507% 57.154%,
    -0.901% 61.639%,
    -0.114% 66.683%,
    0.867% 72.246%,
    2.053% 78.289%,
    3.456% 84.773%,
    5.087% 91.66%,
    5.087% 91.66%,
    6.84% 96.964%,
    8.664% 99.342%,
    10.537% 99.225%,
    12.435% 97.045%,
    14.336% 93.236%,
    16.216% 88.228%,
    18.052% 82.454%,
    19.821% 76.347%,
    21.5% 70.337%,
    23.065% 64.859%,
    23.065% 64.859%,
    24.074% 61.81%,
    25.235% 59.069%,
    26.55% 56.774%,
    28.024% 55.064%,
    29.661% 54.079%,
    31.465% 53.955%,
    33.439% 54.833%,
    35.589% 56.85%,
    37.917% 60.146%,
    40.428% 64.859%,
    40.428% 64.859%,
    42.817% 68.867%,
    44.834% 70.296%,
    46.567% 69.654%,
    48.101% 67.449%,
    49.524% 64.189%,
    50.921% 60.382%,
    52.38% 56.537%,
    53.988% 53.161%,
    55.83% 50.762%,
    57.994% 49.85%,
    57.994% 49.85%,
    60.365% 50.702%,
    62.761% 53.066%,
    65.172% 56.652%,
    67.585% 61.171%,
    69.989% 66.333%,
    72.372% 71.849%,
    74.722% 77.429%,
    77.029% 82.784%,
    79.279% 87.624%,
    81.463% 91.66%
  );
}
.contact__main {
  max-width: 1140px;
  padding-top: 70px;
}
.contact__content {
  max-width: 840px;
  margin-bottom: 34px;
}
.contact__right {
  width: 416px;
  gap: 21px;
}
.contact__form {
  margin-top: 85px;
}
.form {
  border: 1px solid var(--grey);
}
.contact__wrapper {
  gap: 65px;
}
.form__input-label {
  cursor: pointer;
}
.form__input-label span {
  color: var(--secondary);
}
.form__input-field {
  height: 42px;
  padding-inline: 16px;
  border: 1px solid var(--grey);
  transition: all 0.3s;
  background-color: transparent;
  -webkit-appearance: none;
  appearance: none;
  font-size: 15px;
  letter-spacing: -0.18px;
}
.form__input-field::placeholder {
  color: var(--gray-300);
}
.form__input-field:focus {
  border-color: var(--primary);
}
.form__input-icon {
  pointer-events: none;
}
.form__input-field--textarea {
  padding-block: 12px;
  min-height: 103px;
  resize: none;
}
.form__input--condition .form__input-label {
  gap: 10px;
}
.checkbox {
  width: 24px;
  height: 24px;
  border: 1px solid var(--secondary);
  transition: all 0.3s;
}
.checkbox img {
  opacity: 0;
  transition: all 0.3s;
}
.form__input input:checked ~ .checkbox {
  background-color: var(--secondary);
}
.form__input input:checked ~ .checkbox img {
  opacity: 1;
}

.contact__card {
  border-radius: 100px 0;
  background-color: var(--purple);
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.15);
  padding: 40px 50px;
}
.contact__card-title {
  padding-block: 12px;
  margin-bottom: 15px;
}
.contact__user {
  gap: 30px;
}
.contact__user-avatar {
  width: 94px;
  aspect-ratio: 1 / 1;
}
.contact__user-list {
  gap: 15px;
  max-height: 654px;
}
.contact__user-info a {
  color: #fff;
  font-size: 15px;
  line-height: 1.47;
  letter-spacing: -0.18px;
}
.contact__user-info a:hover {
  text-decoration: underline;
}
/* contact section end */

/* venue-info section start */
.venue-info {
  padding-block: 136px 116px;
  background-color: var(--light-periwinkle);
}
.venue-info::after {
  content: "";
  width: 100%;
  height: 148px;
  background-color: var(--light-periwinkle);
  position: absolute;
  bottom: -78px;
  left: 0;
  z-index: -1;
  clip-path: polygon(
    81.463% 91.66%,
    81.463% 91.66%,
    83.649% 94.002%,
    85.897% 94.122%,
    88.176% 92.273%,
    90.457% 88.71%,
    92.71% 83.687%,
    94.905% 77.458%,
    97.011% 70.277%,
    98.999% 62.397%,
    100.839% 54.075%,
    102.5% 45.562%,
    99.723% 13.4%,
    70.215% 9.112%,
    19.946% -0%,
    19.946% -0%,
    17.503% 4.705%,
    14.806% 9.043%,
    11.968% 13.139%,
    9.101% 17.118%,
    6.32% 21.106%,
    3.737% 25.227%,
    1.466% 29.608%,
    -0.379% 34.374%,
    -1.687% 39.65%,
    -2.342% 45.562%,
    -2.342% 45.562%,
    -2.348% 47.43%,
    -2.218% 50.01%,
    -1.942% 53.264%,
    -1.507% 57.154%,
    -0.901% 61.639%,
    -0.114% 66.683%,
    0.867% 72.246%,
    2.053% 78.289%,
    3.456% 84.773%,
    5.087% 91.66%,
    5.087% 91.66%,
    6.84% 96.964%,
    8.664% 99.342%,
    10.537% 99.225%,
    12.435% 97.045%,
    14.336% 93.236%,
    16.216% 88.228%,
    18.052% 82.454%,
    19.821% 76.347%,
    21.5% 70.337%,
    23.065% 64.859%,
    23.065% 64.859%,
    24.074% 61.81%,
    25.235% 59.069%,
    26.55% 56.774%,
    28.024% 55.064%,
    29.661% 54.079%,
    31.465% 53.955%,
    33.439% 54.833%,
    35.589% 56.85%,
    37.917% 60.146%,
    40.428% 64.859%,
    40.428% 64.859%,
    42.817% 68.867%,
    44.834% 70.296%,
    46.567% 69.654%,
    48.101% 67.449%,
    49.524% 64.189%,
    50.921% 60.382%,
    52.38% 56.537%,
    53.988% 53.161%,
    55.83% 50.762%,
    57.994% 49.85%,
    57.994% 49.85%,
    60.365% 50.702%,
    62.761% 53.066%,
    65.172% 56.652%,
    67.585% 61.171%,
    69.989% 66.333%,
    72.372% 71.849%,
    74.722% 77.429%,
    77.029% 82.784%,
    79.279% 87.624%,
    81.463% 91.66%
  );
}
.venue-info .section__title {
  margin-bottom: 58px;
}
.venue-info__list {
  gap: 36px;
}
.venue-info__item {
  gap: 56px;
}
.venue-info__item-thumb-container {
  padding-left: 39px;
}
.venue-info__item-thumb {
  width: 178px;
  aspect-ratio: 89 / 90;
}
.venue-info__item-content {
  max-width: 668px;
}
.venue-info__item-num {
  width: 74px;
  height: 74px;
  background-color: var(--primary);
  font-size: 50px;
  font-family: var(--parkinsans);
}
/* venue-info section end */

/* application section start */
.application {
  padding-block: 120px 120px;
  background-size: cover;
  background-position: center;
}
.application__form {
  max-width: 670px;
}
/* application section end */

/* General page */
.genpage__main {
    max-width: 1140px;
    padding-top: 70px;
}
.genpage__content {
	max-width: 840px;
    margin-bottom: 34px;
}
.gencontent-area {
	margin-top: 20px;
	box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.1);
}