/* font-family: 'Neue Haas Grotesk Display Pro', sans-serif; */
/* font-family: "Aeonik"; */
/* font-family: "Recife"; */

@font-face {
  font-family: Recife;
  src: url(../fonts/RecifeText-BookItalic.ttf);
}

@font-face {
  font-family: Aeonik;
  src: url(../fonts/AeonikTRIAL-Regular.otf);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

.my-container {
  width: 100%;
  max-width: 1440px;
  padding-left: 40px;
  padding-right: 40px;
  margin: 0 auto;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* common design */
a {
  text-decoration: none;
}

svg {
  display: flex;
}

.btn-pri {
  font-family: Aeonik;
  font-weight: 400;
  font-size: 20px;
  display: inline-block;
  color: #fff;
  padding: 14px 30px;
  border-radius: 30px;
  transition: all 0.4s ease;
}

.btn-pri.blue {
  background: #329da9;
}

.btn-pri.red {
  background: #bc1321;
}

.btn-pri.white {
  background: #fff;
  color: #bc1321;
}

.btn-pri.white.blue {
  color: #116682;
}

.btn-pri:hover {
  background: #116682;
}

.btn-pri.white:hover {
  background: #116682;
  color: #fff;
}

.for-padding {
  padding: 80px 0;
}

h2 {
  font-family: Aeonik;
  font-size: clamp(28px, 4.3vw, 82px);
  font-weight: 400;
}

p {
  font-family: Aeonik;
  font-weight: 400;
}

/* navbar */
nav {
  margin-top: 30px;
}

nav .my-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

nav .my-row .menu {
  font-family: Aeonik;
  font-weight: 400;
  padding: 10px;
  border-radius: 32px;
  border: 1px solid #ececec;
  box-shadow: 0px 12px 20px 0px #e3e3e3;
  display: flex;
}

nav .my-row .menu a {
  padding: 14px 30px;
  font-size: 20px;
  color: #116682;
}

nav .my-row .menu a:hover {
  color: #bc1321;
}

nav .my-row .menu a.active {
  background: #bc1321;
  border-radius: 32px;
  color: #fff;
}

/* banner   */
.banner-sec h1 {
  font-size: clamp(32px, 4.589vw, 92px);
  font-family: "Neue Haas Grotesk Display Pro", sans-serif;
  color: #bc1321;
  font-weight: 300;
  text-align: center;
}

.banner-sec h1 span {
  font-family: Recife;
  color: #116682;
}

.banner-img {
  margin-top: 20px;
  position: relative;
}

.banner-img img {
  border-radius: 32px;
}

.banner-img .btn-box {
  display: flex;
  gap: 16px;
  align-items: end;
  flex-direction: column;
  position: absolute;
  right: 24px;
  bottom: 24px;
  background: rgba(0, 0, 0, 10%);
  padding: 24px;
  border-radius: 16px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

/* about-sec */
.about-sec {
  background: #bc1321;
}

.about-sec .my-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.about-sec .left {
  max-width: 580px;
}

.about-sec .left h2 {
  color: #fff;
}

.about-sec .left h3 {
  font-family: "Neue Haas Grotesk Display Pro", sans-serif;
  color: #fff;
  font-weight: 300;
  font-size: 62px;
}

.about-sec .left p {
  font-size: 24px;
  font-family: Aeonik;
  font-weight: 400;
  color: #fff;
  margin-top: 20px;
  margin-bottom: 40px;
}

.about-sec .right {
  display: flex;
  gap: 16px;
}

.about-sec .right .two-img {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.about-sec .right img {
  border-radius: 32px;
}

/* gallery-sec */
.gallery-sec {
  background-image: url(../assets/gallery-bg-img.png);
}

.gallery-sec h2 {
  color: #bc1321;
  text-align: center;
}

.slick-slide img {
  border-radius: 32px;
  margin: 0 auto;
  width: 80%;
  height: 720px;
  object-fit: cover;
}

.gallery-sec .single-item {
  margin-top: 20px;
  z-index: 0;
}

.slick-prev.slick-prev:before {
  content: "";
  background-image: url(../assets/slider-arrow-l.png);
  background-repeat: no-repeat;
  display: block;
  height: 62px;
  width: 62px;
  background-position: center;
  position: relative;
  z-index: 999;
}

.slick-next.slick-next:before {
  content: "";
  background-image: url(../assets/slider-arrow-r.png);
  background-repeat: no-repeat;
  display: block;
  height: 62px;
  width: 62px;
  background-position: center;
  position: relative;
  z-index: 999;
}

.slick-prev:before,
.slick-next:before {
  opacity: 1 !important;
}

.slick-prev,
.slick-next {
  z-index: 999;
}

/* benifits-sec */
.benifits-sec h2 {
  color: #bc1321;
  text-align: center;
}

.benifits-sec .my-row {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, auto);
  justify-content: space-between;
  gap: 60px;
}

.benifits-sec .ben-box {
  max-width: 650px;
  padding: 24px;
  border: 1px solid #ececec;
  border-radius: 32px;
  box-shadow: 0px 12px 20px 0px #e3e3e3;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.benifits-sec .ben-box .icon-row {
  display: flex;
  align-items: center;
  gap: 24px;
}

.benifits-sec .ben-box .icon-row span {
  background: #bc1321;
  border-radius: 16px;
  padding: 26px;
  display: flex;
}

.benifits-sec .ben-box .icon-row h6 {
  font-size: 38px;
  color: #bc1321;
  font-family: Aeonik;
}

.benifits-sec .ben-box p {
  margin-top: 24px;
  font-size: 24px;
  color: #1e1e1e;
}

.benifits-sec .ben-box a {
  margin-left: auto;
  margin-top: auto;
}

/* sponsor-sec  */
.sponsor-sec {
  background: #116682;
}

.sponsor-sec h2 {
  text-align: center;
  color: #fff;
}

.sponsor-sec .my-row {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 40px;
}

.sponsor-sec .my-row .spons-box {
  background: #fff;
  border-radius: 32px;
  min-width: 320px;
  padding: 16px;
  max-width: 320px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

/* volunteer-sec */
.volunteer-sec .vol-box {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-image: url(../assets/voluntear-bg-img.png);
  background-color: #339da9;
  max-width: 1040px;
  padding: 40px;
  border-radius: 32px;
  margin: 0 auto;
}

.volunteer-sec .vol-box h3 {
  font-size: 62px;
  color: #fff;
  font-family: Aeonik;
  font-weight: 400;
}

.volunteer-sec .vol-box p {
  font-size: 24px;
  color: #fff;
  font-family: Aeonik;
  font-weight: 400;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 30px;
}

/* faq-sec */
.faq-sec {
  background-color: #bc1321;
  background-image: url(../assets/faq-bg-img.png);
}

.faq-sec h2 {
  text-align: center;
  color: #fff;
}

.faq-sec .my-row {
  max-width: 1040px;
  margin-inline: auto;
  margin-top: 40px;
  background: #fff;
  padding: 50px 0;
  border-radius: 32px;
}

.faq-item {
  padding: 40px;
  border-bottom: 1px solid #1e1e1e;
}

.faq-item:last-child {
  padding: 40px;
  border-bottom: 0px solid #1e1e1e;
  padding-bottom: 0;
}

.faq-item:first-child {
  padding: 40px;
  padding-top: 0;
}

.faq-question {
  text-align: left;
  cursor: pointer;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-question h3 {
  font-size: 62px;
  font-family: Aeonik;
  color: #bc1321;
  font-weight: 400;
  margin-right: 40px;
  min-width: 75px;
}

.faq-question h4 {
  font-size: 26px;
  font-family: Aeonik;
  color: #bc1321;
  font-weight: 400;
  margin-right: auto;
}

.faq-question h4 span {
  font-size: 62px;
}

.faq-question .arrow img.close {
  display: none;
}

.faq-question.active .arrow img.open {
  display: none;
}

.faq-question.active .arrow img.close {
  display: block;
}

.faq-answer {
  display: none;
  color: #1e1e1e;
  font-size: 24px;
}

.faq-answer p {
  margin-left: 115px;
  max-width: 750px;
}
.faq-answer p a{color: #BC1321;}

/* .map-sec */
.map-sec .my-row {
  display: flex;
  align-items: center;
  gap: 40px;
}

.map-sec .left {
  width: 60%;
}

.map-sec .left img {
  border-bottom-right-radius: 32px;
  border-bottom-left-radius: 32px;
}

.map-sec .right {
  width: 40%;
}

.map-sec .red-box {
  background: #bc1321;
  padding: 24px;
  border-radius: 32px;
}

.map-sec .red-box p {
  display: flex;
  align-items: center;
  color: #fff;
  gap: 8px;
  font-size: 24px;
  font-weight: 300;
}

.map-sec .social-medai {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #fff;
}

.map-sec .social-medai .box {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 16px;
}

/* donation-sec */
.donation-sec .vol-box.donat-box {
  background-image: url(../assets/donation-bg-img.png);
  max-width: 100%;
}

.donation-sec .vol-box.donat-box a {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* footer */
footer {
  background: #083241;
  padding: 30px;
}

footer p {
  text-align: center;
  color: #fff;
}

/* mob-menu */
.res-menu {
  display: none;
}

.res-menu {
  background: transparent;
  border: none;
}

/* about page */
.about-page {
  padding: 80px 0;
}

.about-page h2 {
  font-size: clamp(28px, 4vw, 82px);
  font-family: "Neue Haas Grotesk Display Pro", sans-serif;
  color: #bc1321;
  display: block;
}

.about-page h2 span {
  font-family: Recife;
  display: block;
  color: #116682;
  font-size: clamp(28px, 3.8vw, 78px);
}

.about-page .banner-img .info-box {
  position: absolute;
  left: 20px;
  top: 20px;
  padding: 16px;
  border-radius: 16px;
  color: #bc1321;
  font-size: 20px;
  background: #fff;
  max-width: 750px;
}
.about-page .banner-img .info-box p{text-wrap: pretty;}

.about-page .banner-img .old-website{
  position: absolute;
  right: 20px;
  top: 20px;
}
.about-page .banner-img .org-box {
  font-family: Aeonik;
  position: absolute;
  left: 20px;
  bottom: 20px;
  padding: 16px;
  border-radius: 16px;
  background: #fff;
  max-width: 500px;
}

.about-page .banner-img .org-box p {
  font-size: 26px;
  font-weight: 400;
  color: #116682;
}

.about-page .banner-img .org-box .one {
  display: flex;
  gap: 6px;
  align-items: center;
}

.about-page .banner-img .org-box .one img {
  width: 80px;
}

.about-page .banner-img .org-box .one h6 {
  display: flex;
  align-items: center;
  font-size: 26px;
  color: #bc1321;
  font-weight: 300;
}
.about-page .banner-img .org-box .one h6 a{
  color: #bc1321;
}
.about-page .banner-img .org-box .one h6 a:hover{
  color: #116682;
}

.about-page .banner-img .org-box .two h6 {
  display: flex;
  align-items: center;
  color: #bc1321;
  font-weight: 300;
}

.about-page .banner-img .org-box span {
  display: block;
  text-align: end;
  margin: 8px 0;
  font-size: 20px;
}

.about-page .banner-img .event-info {
  font-family: Aeonik;
  position: absolute;
  right: 20px;
  bottom: 20px;
  padding: 16px;
  border-radius: 16px;
  background: #fff;
  max-width: 760px;
}

.about-page .banner-img .event-info h5 {
  font-size: 36px;
  color: #bc1321;
  font-weight: 300;
}

.about-page .banner-img .event-info .date {
  font-size: 28px;
  font-weight: 400;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 16px;
}

.about-page .banner-img .event-info .date p {
  display: flex;
  color: #116682;
  gap: 6px;
}

.about-page .banner-img .event-info .date p span {
  display: inline-flex;
  align-items: start;
  color: #339da9;
}

.about-page .banner-img .event-info .date p:last-child {
  gap: 38px;
}

/* mccc-sec */
.mccc-sec {
  padding: 80px 0;
  background-color: #116682;
}

.mccc-sec h2 {
  color: #fff;
  font-family: Recife;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  isolation: isolate;
}

.mccc-sec img.mccc-img {
  border-radius: 280px;
  margin-top: -40px;
}

/* sponsor-page */
.sponsor-banner {
  padding: 80px 0;
}

.sponsor-banner h3 {
  font-size: clamp(24px, 2.4vw, 48px);
  font-family: "Neue Haas Grotesk Display Pro", sans-serif;
  color: #116682;
  display: block;
  font-weight: 300;
}

.sponsor-banner h3 span {
  font-family: Recife;
  display: block;
  color: #bc1321;
  font-size: clamp(28px, 4.2vw, 72px);
}

.sponsor-banner .my-row {
  display: flex;
  align-items: start;
  gap: 40px;
}

.sponsor-banner .my-row .left {
  width: 50%;
}

.sponsor-banner .my-row .right {
  width: 50%;
}

.sponsor-banner .my-row .right img {
  border-radius: 32px;
}

.sponsor-banner .my-row .left h6 {
  color: #116682;
  font-family: Aeonik;
  font-size: 28px;
  font-weight: 400;
  margin-top: 30px;
  margin-bottom: 10px;
}

.sponsor-banner .my-row .left p {
  font-size: 24px;
}

/* sub-sec */
.sub-sec {
  padding: 80px 0;
  background-color: #f5f5f5;
}

.sub-sec h4 {
  font-size: 52px;
  font-family: "Neue Haas Grotesk Display Pro", sans-serif;
  color: #bc1321;
  display: block;
  font-weight: 400;
}

.sub-sec h4 span {
  font-family: Recife;
  display: block;
  color: #116682;
  font-size: 48px;
}

.sub-box {
  display: flex;
  gap: 16px;
}

.sub-box .sub-box-info {
  background: #116682;
  border-radius: 32px;
  width: 40%;
}

.sub-box .sub-box-info p {
  padding: 10px 32px;
  color: #fff;
  border-bottom: 1px solid #fff;
  text-align: center;
  font-size: 20px;
  font-weight: 200;
}

.sub-box .sub-box-info p:last-child {
  border: none;
}

.sub-outer-box {
  margin-top: 100px;
}

.sub-box .subscription-box {
  background: #bc1321;
  border-radius: 32px;
  width: 15%;
  position: relative;
}

.sub-box .subscription-box p {
  padding: 10px 32px;
  color: #fff;
  border-bottom: 1px solid #fff;
  text-align: center;
  font-size: 20px;
  font-weight: 200;
}

.sub-box .subscription-box .on-top {
  font-family: Aeonik;
  font-style: italic;
  background: #92101c;
  color: #fff;
  border-radius: 16px 16px 0 0;
  position: absolute;
  top: -65px;
  left: 0;
  right: 0;
  margin: 0 auto;
  padding: 12px;
  width: 70%;
}

.sub-box .subscription-box .on-bottom {
  position: absolute;
  bottom: -70px;
  left: 0;
  right: 0;
  margin: 0 auto;
  padding: 12px;
  width: 100%;
}

.sub-box .subscription-box .on-bottom a {
  width: 100%;
  text-align: center;
}

.sub-box .subscription-box p img {
  margin: 0 auto;
  height: 22px;
}

.sub-box .subscription-box .on-top h6 {
  font-size: 18px;
  font-weight: 300;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.sub-box .subscription-box.two {
  opacity: 0.9;
}

.sub-box .subscription-box.three {
  opacity: 0.8;
}

.sub-box .subscription-box.four {
  opacity: 0.7;
}

/* sub-sec basic */
.sub-sec.basic .subscription-box {
  background: #329CAA;
  width: 20%;
}

.sub-sec.basic .subscription-box.two {
  background: #52ABB4;
}

.sub-sec.basic .subscription-box.three {
  background: #70B9C2;
}

.sub-sec.basic .subscription-box .on-top {
  background: #29838E;
}

.sub-box .subscription-box p.last-chid {
  border: none;
}

/* past-sponsor-sec */
.past-sponsor-sec {
  padding: 80px 0;
  background: #BC1321;
}

.past-sponsor-sec h2 {
  text-align: center;
  color: #fff;
  font-family: Recife;
}

.past-sponsor-sec .my-row {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 40px;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}

.past-sponsor-sec .my-row .past-box {
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  max-width: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
}

/* vendor-img-box */
.vendor-img-box {
  display: flex;
  gap: 16px;
  justify-content: space-between;
  margin-top: 20px;
}

.vendor-img-box img {
  border-radius: 32px;
  width: 32%;
}

.vendor-img-box.with-content .info-box {
  border: 1px solid #BC1321;
  border-radius: 32px;
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.vendor-img-box.with-content .info-box a {
  margin-top: auto;
  margin-left: auto;
}

.vendor-img-box.with-content .info-box h5 {
  font-size: 36px;
  color: #BC1321;
  font-family: Aeonik;
  font-weight: 400;
  margin-bottom: 20px;
}

.vendor-img-box.with-content .info-box p {
  font-size: 28px;
  color: #1e1e1e;
  font-family: Aeonik;
  font-weight: 400;
  margin-bottom: 20px;
}

/* why-sec */
.why-sec {
  padding: 80px 0;
  background-color: #bc1321;
  background-image: url(../assets/gallery-bg-img.png);
  display: grid;
  align-items: center;
  justify-content: center;
}

.why-sec h2 {
  color: #fff;
  text-align: center;
  font-family: Recife;
}

.why-sec .my-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  justify-content: space-between;
  margin-top: 40px;
}

.why-sec .my-row .why-info-box {
  padding: 24px;
  border-radius: 32px;
  background: #339DA9;
  color: #fff;
}

.why-sec .my-row .why-info-box.white {
  background: #fff;
  color: #BC1321;
}

.why-sec .my-row .why-info-box h6 {
  font-family: Recife;
  font-size: 38px;
  margin-bottom: 20px;
}

.why-sec .my-row .why-info-box p {
  font-size: 24px;
  font-weight: 400;
  text-wrap: pretty;
}

.why-sec .my-row-2 {
  margin-top: 40px;
}

.why-sec .my-row-2 .looking-for {
  max-width: 960px;
  margin-inline: auto;
  background: #fff;
  border-radius: 280px;
  padding: 40px;
  text-align: center;
}

.why-sec .my-row-2 .looking-for h5 {
  font-family: Recife;
  color: #bc1321;
  font-size: 54px;
  margin-bottom: 20px;
}

.why-sec .my-row-2 .looking-for p {
  color: #1e1e1e;
  font-size: 24px;
  max-width: 750px;
  margin: 0 auto;
}


/* join-us-sec */
.join-us-sec {
  padding: 80px 0;
  background-image: url(../assets/join-us-bg-img.png);
}

.join-us-sec h2 {
  text-align: center;
  color: #339DA9;
}

.join-us-sec .join-box {
  margin-top: 40px;
  padding: 40px;
  max-width: 1040px;
  border-radius: 32px;
  margin-inline: auto;
  background: #339DA9;
  text-align: center;
  color: #fff;
}

.join-us-sec .join-box p {
  margin-bottom: 20px;
  font-size: 28px;
}

.join-us-sec .join-box p span {
  font-family: Recife;
  display: block;
}

.join-us-sec .join-box p.diff {
  font-size: 24px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.join-us-sec .join-box a {
  color: #339DA9;
}


/* Volunteer Page CSS */

.volunteer-img-box {
  display: flex;
  gap: 16px;
  justify-content: space-between;
  margin-top: 20px;
}

.volunteer-img-box img {
  border-radius: 32px;
  width: 32%;
}

.volunteer-img-box .volunteer-info-box {
  border: 1px solid #BC1321;
  border-radius: 32px;
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.volunteer-info-box a {
  margin-top: auto;
  margin-left: auto;
}

.volunteer-info-box h5 {
  font-size: 36px;
  color: #BC1321;
  font-family: RecifeText;
  font-style: italic;
  font-weight: 400;
  margin-bottom: 20px;
}

.volunteer-info-box p {
  font-size: 24px;
  color: #1e1e1e;
  font-family: Aeonik;
  font-weight: 400;
  margin-bottom: 20px;
}

.why-sec .my-volunteer-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 40px;
  justify-content: space-between;
}

.why-sec .my-volunteer-row .why-info-box {
  padding: 24px;
  border-radius: 32px;
  background: #339DA9;
  color: #fff;
  width: 450px;
  gap: 16px;
}

.why-sec .my-volunteer-row .why-info-box.white {
  background: #fff;
  color: #BC1321;
}

.why-sec .my-volunteer-row .why-info-box h6 {
  font-family: Recife;
  font-size: 38px;
  margin-bottom: 20px;
}

.why-sec .my-volunteer-row .why-info-box p {
  font-size: 24px;
  font-weight: 400;
  text-wrap: pretty;
}

.why-sec .my-row-2 {
  margin-top: 40px;
}

.why-sec .my-row-2 .looking-for {
  max-width: 960px;
  margin-inline: auto;
  background: #fff;
  border-radius: 280px;
  padding: 40px;
  text-align: center;
}

.why-sec .my-row-2 .looking-for h5 {
  font-family: Recife;
  color: #bc1321;
  font-size: 54px;
  margin-bottom: 20px;
}

.why-sec .my-row-2 .looking-for p {
  color: #1e1e1e;
  font-size: 24px;
  max-width: 750px;
  margin: 0 auto;
}

.benifits-sec .p {
  font-size: 36px;
  display: flex;
  justify-content: center;
  text-align: center;
  margin-top: 20px;
}

.benifits-sec.volunteer-benifits h2 {
  color: #339DA9;
}

.volunteer-benifits .ben-box .icon-row h6 {
  font-size: 38px;
  color: #339DA9;
  font-family: Aeonik;
}

.volunteer-benifits .ben-box .icon-row span {
  background: #339DA9;
  border-radius: 16px;
  padding: 26px;
  display: flex;
}

.divider {
  font-size: 36px;
  display: flex;
  text-align: center;
  justify-content: center;
  margin-bottom: 80px;
  color: #1e1e1e;
}

.volunteer {
  background-image: url(../assets/gallery-bg-img.png);
}

.volunteer h2 {
  color: #bc1321;
}

.volunteer .join-box {
  background-color: #bc1321;
}

.volunteer .join-box-1 {
  background-image: url(../assets/gallery-bg-img.png);
  margin-top: 40px;
  padding: 40px;
  max-width: 1040px;
  border-radius: 32px;
  margin-inline: auto;
  background-color: #BC1321;
  text-align: center;
  color: #fff;
}

.join-box-1 h2 {
  color: white;
  margin-bottom: 16px;
}

.join-box-1 p {
  font-size: 24px;
  margin-bottom: 16px;
}

.join-box-1 a {
  margin-top: 16px;
}

.in-row-btn{display: flex; gap: 16px; flex-wrap: wrap;}
.volunteer-sec .vol-box p a {
  color: #fff;
  text-decoration: underline;
}

.flyer-sec img{max-width: 600px; border-radius: 32px; margin: 0 auto; width: 100%;}



/* responsive */
@media only screen and (max-width: 1460px) {
  .about-page .banner-img .org-box p {
    font-size: 18px;
  }

  .about-page .banner-img .org-box .one h6 {
    font-size: 18px;
  }

  .about-page .banner-img .org-box .one img {
    width: 50px;
  }

  .about-page .banner-img .org-box .two h6 {

    font-size: 18px;
  }

  .about-page .banner-img .org-box span {
    font-size: 16px;
  }

  .about-page .banner-img .org-box {
    max-width: 320px;
  }

  .about-page .banner-img .event-info h5 {
    font-size: 22px;
  }

  .about-page .banner-img .event-info .date {
    font-size: 18px;
  }

  .about-page .banner-img .event-info .date p span img {
    width: 22px;
  }

  .about-page .banner-img .event-info .date p:last-child {
    gap: 32px;
  }

  .about-page .banner-img .event-info {
    max-width: 500px;
  }
}

@media only screen and (max-width: 1360px) {
  .for-padding {
    padding: 60px 0;
  }

  nav .my-row .menu a {
    font-size: 16px;
  }

  .about-sec .my-row {
    flex-direction: column;
    gap: 20px;
  }

  .about-sec .left {
    max-width: 100%;
  }

  .slick-slide img {
    width: 60%;
    height: 500px;
  }

  .gallery-sec .my-row {
    max-width: 1080px;
    margin-inline: auto;
  }

  .benifits-sec .ben-box .icon-row span {
    padding: 16px;
  }

  .benifits-sec .ben-box .icon-row span svg {
    width: 24px;
    height: 24px;
  }

  .benifits-sec .ben-box .icon-row h6 {
    font-size: 24px;
  }

  .benifits-sec .ben-box p {
    margin-top: 16px;
    font-size: 16px;
    color: #1e1e1e;
  }

  .benifits-sec .ben-box .icon-row {
    gap: 8px;
  }

  .sponsor-sec .my-row {
    gap: 30px;
  }

  .volunteer-sec .vol-box h3 {
    font-size: 42px;
  }

  .volunteer-sec .vol-box p {
    font-size: 18px;
  }

  .faq-item {
    padding: 30px;
    border-bottom: 1px solid #1e1e1e;
  }

  .volunteer-sec .vol-box p {
    max-width: 660px;
  }

  .map-sec .red-box p {
    font-size: 18px;
  }

  .map-sec .social-medai {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #fff;
  }

  .sub-box .subscription-box .on-top h6 {
    font-size: 16px;
  }

  .sub-box .subscription-box p,
  .sub-box .sub-box-info p {
    font-size: 16px;
  }

  .sub-box .subscription-box .on-top {
    top: -58px;
  }

  .sub-box .subscription-box p img {
    height: 18px;
  }

  .sub-box .sub-box-info {
    background: #116682;
    border-radius: 32px;
    width: 30%;
    min-width: 30%;
  }

  .sub-box {
    justify-content: center;
  }

  .sub-box .subscription-box .on-bottom a {
    width: 100%;
    text-align: center;
    font-size: 16px;
  }

  .vendor-img-box.with-content .info-box h5 {
    font-size: 26px;
  }

  .vendor-img-box.with-content .info-box p {
    font-size: 18px;
  }

  .why-sec .my-row .why-info-box h6 {
    font-size: 28px;
    margin-bottom: 16px;
  }

  .why-sec .my-row .why-info-box p {
    font-size: 20px;
  }

  .why-sec .my-row-2 .looking-for h5 {
    font-size: 38px;

  }

  .why-sec .my-row-2 .looking-for p {
    font-size: 20px;
  }

  .benifits-sec.vendor-benifits .my-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .join-us-sec .join-box p {
    margin-bottom: 16px;
    font-size: 20px;
  }

  .join-us-sec .join-box p.diff {
    font-size: 18px;
    margin-top: 30px;
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 1080px) {
  .my-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .gallery-sec .my-row {
    max-width: 680px;
    margin-inline: auto;
  }

  .slick-slide img {
    width: 80%;
    height: auto;
  }

  .about-sec .right {
    width: 100%;
  }

  nav .my-row .menu a {
    font-size: 14px;
    padding: 10px 20px;
  }

  .logo img {
    max-width: 100px;
  }

  .btn-pri {
    font-size: 16px;

    padding: 10px 18px;
  }

  .slick-next {
    right: 20px !important;
  }

  .slick-prev {
    left: 0 !important;
  }

  .benifits-sec .my-row {
    gap: 30px;
  }

  .faq-question h3 {
    font-size: 32px;
    margin-right: 20px;
    min-width: auto;
  }

  .faq-question h4 {
    font-size: 20px;
  }

  .faq-answer p {
    margin-left: 50px;
    max-width: 750px;
    font-size: 16px;
  }

  .faq-item {
    padding: 20px 30px;
  }

  .faq-item:last-child {
    padding: 20px;
  }

  .faq-sec .my-row {
    padding: 0;
  }

  .faq-item:first-child {
    padding: 20px 30px;
  }

  .map-sec .my-row {
    gap: 20px;
  }

  .map-sec .red-box {
    padding: 16px;
  }

  .map-sec .red-box p {
    font-size: 16px;
  }

  .map-sec .left,
  .map-sec .right {
    width: 50%;
  }

  .map-sec .social-medai .box {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 8px;
  }

  .map-sec .red-box p svg {
    width: 20px;
    height: 20px;
  }

  .sponsor-banner .my-row .left h6 {
    font-size: 20px;
  }

  .sponsor-banner .my-row .left p {
    font-size: 16px;
  }

  .sub-sec h4 {
    font-size: 32px;
  }

  .sub-sec h4 span {
    font-size: 28px;
  }

  .sub-box .sub-box-info {
    min-width: 310px;
  }

  .sub-box .subscription-box {
    min-width: 160px;
  }

  .sub-box {
    justify-content: start;
  }

  .sub-outer-box {
    margin-top: 0;
    overflow-y: auto;
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .about-page .banner-img .info-box {
    font-size: 16px;
    max-width: 480px;
  }

  .about-page .banner-img .org-box,
  .about-page .banner-img .event-info,
  .about-page .banner-img .info-box {
    position: static;
    background: #f1f1f1;
    margin-top: 20px;
  }

  .mccc-sec,
  .about-page {
    padding: 40px 0;
  }

  .vendor-img-box img {
    object-fit: cover;
  }
}

@media only screen and (max-width: 767px) {
  .for-padding {
    padding: 40px 0;
  }

  .about-sec .left h3 {
    font-family: "Neue Haas Grotesk Display Pro", sans-serif;
    color: #fff;
    font-weight: 300;
    font-size: 42px;
  }

  .about-sec .left p {
    font-size: 16px;
  }

  nav .btn-pri {
    display: none;
  }

  .logo img {
    max-width: 80px;
  }

  nav {
    margin-top: 20px;
  }

  .banner-img .btn-box {
    padding: 16px;
    gap: 8px;
    right: 10px;
    bottom: 10px;
  }

  section.map-sec {
    padding-top: 40px;
  }

  .map-sec .left img {
    border-radius: 32px;
  }

  .volunteer-sec .vol-box {
    padding: 24px;
  }

  .sponsor-sec .my-row .spons-box {
    min-width: 260px;
  }

  .sponsor-sec .my-row {
    gap: 20px;
  }

  /* menu */
  .res-menu {
    display: block;
  }

  .topnav#myTopnav {
    position: relative;
  }

  .topnav#myTopnav .menu {
    display: none;
  }

  .topnav.responsive#myTopnav .menu {
    display: flex;
    position: absolute;
    right: 0;
    top: 30px;
    flex-direction: column;
    gap: 4px;
    z-index: 99999;
    width: 220px;
    background: #fff;
  }

  nav .my-row .menu a {
    text-align: center;
  }

  .sponsor-banner .my-row {
    flex-direction: column;
    gap: 20px;
  }

  .sponsor-banner .my-row .left,
  .sponsor-banner .my-row .right {
    width: 100%;
  }

  .sponsor-banner,
  .sub-sec,
  .past-sponsor-sec,
  .why-sec,
  .join-us-sec {
    padding: 40px 0;
  }

  .past-sponsor-sec .my-row {
    grid-template-columns: repeat(3, auto);
    gap: 20px;
  }

  .about-page .banner-img .org-box,
  .about-page .banner-img .event-info,
  .about-page .banner-img .info-box {
    position: static;
    background: #f1f1f1;
    margin-top: 20px;
    max-width: 100%;
  }

  .about-page .banner-img .event-info .date p {
    gap: 6px !important;
    flex-direction: column;
  }

  .mccc-sec h2 img {
    max-width: 60px;
  }

  .mccc-sec img.mccc-img {
    border-radius: 280px;
    margin-top: 20px;
  }

  .vendor-img-box.with-content img {
    display: none;
  }

  .join-us-sec .join-box {
    margin-top: 20px;
  }

  .vendor-img-box.with-content .info-box h5 {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .vendor-img-box.with-content .info-box p {
    font-size: 16px;
  }

  .why-sec .my-row .why-info-box h6 {
    font-size: 20px;
    margin-bottom: 16px;
  }

  .why-sec .my-row .why-info-box {
    padding: 16px;
  }

  .why-sec .my-row .why-info-box p {
    font-size: 16px;
  }

  .why-sec .my-row-2 .looking-for {
    padding: 20px;
  }

  .why-sec .my-row-2 .looking-for h5 {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .why-sec .my-row-2 .looking-for p {
    font-size: 16px;
  }

  .why-sec .my-row-2 {
    margin-top: 20px;
  }

  .benifits-sec .my-row {
    margin-top: 20px;
  }
  .why-sec .my-row-2 .looking-for h5 {

    font-size: 28px !important;
}
.why-sec .my-row-2 .looking-for p {
  color: #1e1e1e;
  font-size: 16px !important;}
}


@media only screen and (max-width: 560px) {
  .benifits-sec .my-row {
    grid-template-columns: repeat(1, auto);
  }

  .sponsor-sec .my-row .spons-box {
    min-width: 180px;
    width: 180px;
    height: 180px;
  }

  .sponsor-sec .my-row .spons-box img {
    width: 100%;
  }

  .about-sec .right {
    flex-direction: column;
  }

  .about-sec .right .two-img {
    gap: 16px;
  }

  .about-sec .right>img {
    display: none;
  }

  .map-sec .my-row {
    flex-direction: column;
  }

  .map-sec .left,
  .map-sec .right {
    width: 100%;
  }

  .faq-question h4 {
    font-size: 18px;
    max-width: 70%;
  }

  .faq-answer p {
    margin-left: 50px;
    max-width: 80%;
    font-size: 16px;
  }

  .faq-item {
    padding: 20px !important;
  }

  .volunteer-sec .vol-box h3 {
    font-size: 32px;
  }

  .volunteer-sec .vol-box p {
    font-size: 16px;
  }

  nav .my-row .menu a {
    font-size: 14px;
    padding: 10px 14px;
    text-align: center;
    white-space: nowrap;
  }

  .banner-img .btn-box {
    position: static;
    align-items: start;
    margin-top: 16px;
    padding: 0;
    background: #fff;
  }

  .about-sec .left h3 {
    font-size: 32px;
  }

  .benifits-sec .ben-box {
    padding: 16px;
  }

  .benifits-sec .ben-box .icon-row h6 {
    font-size: 20px;
  }

  .benifits-sec .ben-box a {
    width: 40px;
  }

  .faq-sec .my-row,
  .sponsor-sec .my-row,
  .benifits-sec .my-row {
    margin-top: 20px;
  }

  .sub-box .subscription-box p,
  .sub-box .sub-box-info p {
    font-size: 14px;
    padding: 8px 24px;
  }

  .sub-box .sub-box-info {
    min-width: 260px;
  }

  .sub-sec h4 {
    font-size: 22px;
  }

  .sub-sec h4 span {
    font-size: 22px;
  }

  .sponsor-banner .my-row .left h6 {
    margin-top: 10px;
    margin-bottom: 8px;
  }

  .past-sponsor-sec .my-row {
    grid-template-columns: repeat(2, auto);
    gap: 20px;
  }

  .about-page .banner-img .event-info h5 {
    font-size: 16px;
  }

  .about-page .banner-img .event-info .date {
    font-size: 16px;
  }

  .about-page .banner-img .org-box .one h6,
  .about-page .banner-img .org-box .two h6 {
    font-size: 16px;
  }

  .why-sec .my-row {
    grid-template-columns: repeat(1, 1fr);
    margin-top: 20px;
  }

  .benifits-sec.vendor-benifits .my-row {
    grid-template-columns: repeat(1, 1fr);
  }

  .vendor-img-box img {
    width: 100%;
    display: none;
  }

  .vendor-img-box img:last-child {
    display: block;
  }

  .join-us-sec .join-box {
    padding: 20px;
  }

  .why-sec .my-row-2 .looking-for {
    border-radius: 60px;
  }

  .why-sec h2 br {
    display: none;
  }
}

@media only screen and (max-width: 420px) {
  .volunteer-sec .vol-box h3 {
    font-size: 28px;
  }
}



@media only screen and (max-width:767px){
    /* volunteer media query */

    .volunteer-info-box {
      width: 100%;
    }
    .volunteer-img-box img {
      width: 100%;
    }
  
    .volunteer-img-box img:last-child {
      display: block;
    }
    
    .volunteer-img-box {
      display: flex;
      flex-direction: column;
    }
  
    .why-sec .my-volunteer-row {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
      margin-top: 40px;
      justify-content: space-between;
    }

    .why-sec .my-volunteer-row .why-info-box{
      width: 100%;
    }

    .why-sec .my-volunteer-row .why-info-box h6{
      font-size: 20px;
    margin-bottom: 10px;
    }

    .why-sec .my-volunteer-row .why-info-box p {
      font-size: 16px;
      font-weight: 400;
      text-wrap: pretty;
  }
  .benifits-sec .p{
    font-size: 16px;
    display: flex;
    align-items: center;
    margin-top: 10px;
  }

  .volunteer-benifits .ben-box .icon-row h6 {
    font-size: 22px;
    color: #339DA9;
    font-family: Aeonik;
}

.divider{
  margin-bottom: 40px;
  font-size: 18px;
}

.join-box-1 p{
  font-size: 20px;
}

}

@media only screen and (max-width: 560px) {
  .volunteer-info-box h5{
    font-size: 20px;
    margin-bottom: 10px;
  }
  .volunteer-info-box p {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .volunteer-img-box img {
    width: 100%;
  }

  .volunteer-img-box img:last-child {
    display: block;
  }

  .why-sec h2{
    margin-bottom: 0px;
  }
  .why-sec .my-volunteer-row {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    margin-top: 15px;
  }
}