/*== IE Block Code ==*/
#olderbrowser {
  display: none;
  width: 100%;
  position: fixed;
  text-align: center;
  top: 0;
  font-size: 20px;
  z-index: 1100;
  color: #000000;
  height: 100%;
  background: #ffffff;
  bottom: 0;
}
.ie-quote {
  margin-top: 18%;
}
.ie-quote p {
  padding-top: 35px;
}
.ie-quote a{
    color: blue;
    text-decoration: underline;
    text-underline-offset: 3px;
}
/*== IE Block Code Ends ==*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  /* --color-primary: #ca1a6b; */
  --color-primary-light: #f8eaf0;
  --color-secondary: #a9d03f;
  --color-light-gray: #777;
  --color-gray: #555;
  --color-dark-gray: #444;
  --color-dark: #222;
}
body {
  /* font-family: 'Roboto', sans-serif; */
  font-size: 16px;
}
a{
    text-decoration: none;
    color: inherit;
}
#ticketRateNote.hidden { display: none !important; }

.container {
  max-width: 1220px;
  margin: 0 auto;
}
.container.matching_width{
  width: 1080px;
}
.side-info {
  font-family: 'Inter', sans-serif;
}
.hero-section-wrapper .side-info, .get-involved .side-info {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.side-info h1, .side-info h2 {
  color: var(--color-dark);
}
.hero-section-wrapper .side-info p {
  max-width: 50%;
}
.mission-statement-section {
  padding-top: 92px;
}
.mission-statement-section-wrapper p {
  max-width: 70%;
}
h1 {
  font-size: 65px;
}
.big-para {
  font-size: 22px;
  color: var(--color-gray);
}
h2 {
  font-size: 55px;
}
h3 {
  font-size: 40px;
}
h4 {
  font-size: 32px;
}
h5 {
  font-size: 20px;
}
h1 span {
  color: var(--color-secondary);
}
.desktop-hide {
  display: none;
}
.color_white {
  color: #fff;
}
.bg-pink {
  background-color: var(--color-primary);
}
.color-pink {
  color: var(--color-primary) !important;
}
/* Animations */
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
/* ZoomIn */
@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}
/* FadeInDown */
@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0) translateY(-50%);
    transform: translate3d(0, 0, 0) translateY(-50%);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}
/* FadeInUp */
@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}
/* FadeInLeft */
@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}
/* FadeInRight */
@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}
@-webkit-keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0) translateY(0%);
    transform: translate3d(0, -3000px, 0) translateY(0%);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0) translateY(0%);
    transform: translate3d(0, 25px, 0) translateY(0%);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0) translateY(0%);
    transform: translate3d(0, -10px, 0) translateY(0%);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0) translateY(0%);
    transform: translate3d(0, 5px, 0) translateY(0%);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0) translateY(0%);
    transform: translate3d(0, 0, 0) translateY(0%);
  }
}
@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0) translateY(0%);
    transform: translate3d(0, -3000px, 0) translateY(0%);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0) translateY(0%);
    transform: translate3d(0, 25px, 0) translateY(0%);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0) translateY(0%);
    transform: translate3d(0, -10px, 0) translateY(0%);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0) translateY(0%);
    transform: translate3d(0, 5px, 0) translateY(0%);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0) translateY(0%);
    transform: translate3d(0, 0, 0) translateY(0%);
  }
}
.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}
/*====scroll parallax=======*/
.fade-in {
  opacity: 0;
  transition: opacity 350ms ease-in;
}
.fade-in.appear, .fadeInUp .appear {
  opacity: 1;
}
.from-left {
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}
.from-right {
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}
.from-left, .from-right, .fade-in {
  transition: opacity 250ms ease-in, -webkit-transform 400ms ease-in;
  transition: opacity 250ms ease-in, transform 400ms ease-in;
  transition: opacity 250ms ease-in, transform 400ms ease-in, -webkit-transform 400ms ease-in;
  opacity: 0;
}
.from-left.appear, .from-right.appear {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
}
button:focus:not(:focus-visible) {
  box-shadow: none;
}
.btn {
  outline: none;
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 1rem;
  font-weight: 500;
  transition: all .3s;
}
.btn-section {
  border: 1px solid #fff;
  color: #fff;
  background-color: var(--color-primary);
}
.btn-section:hover {
  border: 1px solid #fff;
  color: #fff;
  background-color: var(--color-secondary);
}
.section-heading h2 {
  text-align: center;
  font-weight: 500;
}
.hashtag, .buy-now {
  color: var(--color-primary);
  text-decoration: none;
  margin: 8px 2vw 8px 0;
  display: inline-block;
  font-size: 1rem;
}
.hashtag {
  font-weight: 300;
}
.buy-now {
  font-weight: 500;
}
.hashtag:hover, .buy-now:hover {
  color: var(--color-secondary);
}
.mission-statement-section, .hero-section, .ourstory .ourstory-section, .save_the_date, .donorsandvendors .hero_section, .upcoming_events_page .hero_section {
  padding-top: 92px;
}
.hero-image-wrapper {
  background: url(../images/hero_bacground_img.png) no-repeat;
  background-position: 95% -10%;
  background-size: 78% auto;
}
.hero-image-wrapper img {
  transform: translateX(24%);
}
.hero-small-info {
  position: absolute;
  right: 0;
  bottom: 60%;
}
.hero-small-info h5 {
  color: #333;
  font-weight: 400;
}
.hero-small-info p {
  color: var(--color-gray);
  font-size: 12px;
  font-weight: 300;
}
.bar {
  display: inline-block;
  height: 6px;
  width: 30px;
  background-color: var(--color-primary);
}
.upper-background {
  background: url(../images/doted_bg.png) no-repeat;
  background-position: 100% 62%;
  background-size: 30%;
}
.heading h4 {
  color: var(--color-dark);
  font-weight: 300;
}
.heading span {
  color: var(--color-primary);
  font-weight: 500;
}
.hero-image-wrapper {
  padding-bottom: 10vh;
}
.video-section {
  position: relative;
}
/* .video-section-body{
    position: relative;
    bottom:-10vh;
} */
/* .video-section-body-wrapper{
    margin-top: 3rem;
} */
.video-section-body-wrapper p {
  color: var(--color-gray);
  font-size: 1rem;
  font-weight: 300;
}
.video-section-body-wrapper .trailer {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: 56.25%;
  border-radius: 15px;
  box-shadow: 0px 0px 64px rgba(0, 0, 0, .1);
}
.trailer iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
/* .dropdown-item:focus, .dropdown-item:hover {
  color: var(--color-secondary);
} */
.upper_filler_div {
  height: 12vh;
  background-color: #f4f1e7;
}
.center_filler_div {
  height: 40vh;
  background-color: #ffffff;
}
.center-background {
  background-color: #f4f1e7;
}
.home .center-background {
  height: 92vh;
  transition: all .3s ease-in-out;
}
.home .center-background.expanded {
  height: 155vh;
}
.section-title i {
  font-size: 1rem;
  color: var(--color-secondary);
}
.about-section-body {
  font-family: 'Inter', sans-serif;
}
.about-section-body h1 {
  color: var(--color-dark);
}
.mission-statement-section-wrapper h2 {
  font-size: 42px;
}
.about-section-body p, .section.video-section .heading p, .mission-statement-section-wrapper .heading p {
  color: var(--color-dark-gray);
  font-size: 24px;
}
.container .divider {
  background-color: #ebebeb;
  width: 100%;
  height: 1px;
}
.container .upper-divider {
  background-color: #e1ded5;
  width: 100%;
  height: 1px;
}
.merchandise-section {
  bottom: -10vh;
}
.merchandise .card {
  background-color: transparent;
}
.card img {
  transition: .3s all;
}
.card img:hover {
  transform: scale(1.01);
}
.merchandise .card-title {
  color: var(--color-dark);
}
.merchandise .card-text {
  color: var(--color-gray);
  font-weight: 300;
}
#hiddenMerch {
  height: 0;
  overflow: hidden;
  transition: height .3s ease-in-out;
}
#hiddenMerch.showMerch {
  height: auto;
}
/* .second-white-background{
    padding-top: 40vh;
} */
.right-goals {
  padding-top: 4rem;
}
.goal-wrapper {
  border-radius: 15px;
  box-shadow: 5px 5px 6px rgba(0, 0, 0, .1);
  min-height: 23vh;
  background-color: #fff;
}
.goal a {
  text-decoration: none;
}
.goal-icon {
  background-color: var(--color-primary);
  display: inline-block;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  position: relative;
  box-shadow: 6px 6px 33px rgba(0, 0, 0, .3);
  margin-bottom: 10px;
}
.goal-icon img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.goal-disc h5 {
  color: var(--color-dark);
}
.goal-disc p {
  color: var(--color-gray);
  font-weight: 300;
  margin-bottom: 0;
}
.upcoming-event-section {
  padding-bottom: 2rem;
}
.save_the_date p {
  margin-bottom: 10px;
  color: #333;
  font-size: 1rem;
  font-weight: 400;
}
.save_the_date small {
  color: #333;
  font-weight: 300;
}
.upcoming-signup .black-bar {
  display: block;
  background-color: #111;
  width: 40px;
  height: 1px;
}
.upcoming-signup span {
  color: #3a3a3a;
  font-weight: 500;
}
.upcoming-signup a {
  text-decoration: none;
  color: var(--color-primary);
  font-weight: 500;
}
.upcoming-signup a:hover {
  color: var(--color-secondary);
}
.second-white-background {
  background: url(../images/lowr_bg_with_dots.png) no-repeat;
  background-position: right 35%;
  background-size: 37%;
}
.copy-rights p {
  font-size: 20px;
  margin-bottom: 0;
  color: var(--color-light-gray);
}
/* .footer-list {
  padding: 0;
}
.footer-list .footer-item {
  list-style: none;
  margin: 1rem 0;
}
.footer-list .footer-item:hover a {
  color: var(--color-dark-gray);
}
.footer-list .footer-item a {
  text-decoration: none;
  font-size: 20px;
  color: var(--color-light-gray);
} */
.get-touch p {
  color: var(--color-light-gray);
  margin-bottom: 0;
}
.get-touch a {
  text-decoration: none;
  color: var(--color-primary);
}
.get-touch a:hover {
  color: var(--color-secondary);
}
/* .btn-footer {
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  background-color: #fff;
}
.btn-footer:hover {
  border: 1px solid var(--color-secondary);
  color: var(--color-secondary);
  background-color: #fff;
} */
/*.social-media {
  display: flex;
  align-items: center;
  margin-top: 3rem;
  max-width: 220px;
}*/
.get-involved {
  max-width: 70%;
  height: 100%;
  margin: 0 auto;
}
.get-involved p.big-para {
  color: #333;
  font-size: 1rem;
  font-weight: 300;
}
.get-in-touch-heading {
  font-family: 'Inter', sans-serif;
}
.get-in-touch-heading h3 {
  color: var(--color-dark);
  font-weight: 600;
}
.get-in-touch-heading p {
  font-size: 20px;
  color: var(--color-gray);
}
.btn-donte-option {
  font-weight: bold;
  border: 1px solid #fff;
  color: var(--color-primary);
  background-color: #f8eaf0;
  margin: 5px;
}
.btn-donte-option:hover {
  border: 1px solid var(--color-primary);
  color: #fff;
  background-color: var(--color-primary);
}
form label span {
  color: red;
}
.form-floating label {
  color: #666666 !important;
  font-weight: 300;
}
#paymentForm label{
  line-height: 1;
}
.form-control, .form-select {
  border: 1px solid #ccc;
}
.form-control:focus, .form-select:focus {
  border: 1px solid var(--color-primary);
  box-shadow: 0 0 .25rem var(--color-primary);
}
.contactUs-section-wrapper {
  background: url(../images/get_touch_bg.png) no-repeat;
  background-position: 40vw 5vh;
  background-size: 50%;
}
/* .contactUs-box{
    background: url(../images/get_touch_bg.png) no-repeat;
    background-position: 100% 55%;
    background-size: 50%;
} */
.contactUs-box-wrapper {
  position: relative;
  top: 10vh;
  border-radius: 20px;
  box-shadow: 0px 0px 50px rgba(0, 0, 0, .1);
  z-index: 600;
}
textarea.form-control {
  height: 100px !important;
}
.joinUs-section {
  background-color: var(--color-primary);
}
.joinUs-section-wrapper {
  padding-top: 17vh;
}
.getinvolved .joinUs-section-wrapper {
  padding-top: 17vh;
}
.joinUs-left-info {
  font-family: 'Inter', sans-serif;
  width: 80%;
  margin: 0 auto;
  color: #fff;
}
.joinUs-left-info h4 {
  font-weight: 600;
}
.joinUs-left-info p {
  font-size: 20px;
}
.wish-to-donate p {
  color: var(--color-dark);
  font-size: 1rem;
  font-weight: 500;
}
#moveToTop {
  top: 0;
  right: 5%;
  transform: translateY(-50%);
}
.doted-bg-img {
  left: 0;
  top: 0;
  transform: translateY(-50%);
  width: 20vw;
}
#moveToTop a {
  font-size: 12px;
  text-decoration: none;
  font-weight: 900;
  background-color: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}
#moveToTop a:hover {
  color: #fff;
  background-color: var(--color-primary);
}
.subscribe {
  display: flex;
  height: 100%;
}
.subscribe-wrapper {
  margin: auto;
  max-width: 100%;
  background-color: #fff;
  display: flex;
  /* flex-wrap: wrap; */
  justify-content: space-between;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, .2);
}
.subscribe-wrapper input {
  color: #666;
  border: 0;
  outline: none;
  padding: 10px;
}
.site-map {
  padding: 0 0 0 25%;
}
.btn-subscribe {
  color: var(--color-primary);
  overflow: none;
}
.designer {
  font-size: 12px;
  color: var(--color-dark-gray);
  font-weight: 300;
}
.designer a {
  border-bottom: 1px solid var(--color-dark-gray);
  color: var(--color-dark-gray);
  text-decoration: none;
  font-weight: 500;
}
.designer a:hover {
  color: var(--color-light-gray);
}
/* OUR STORY PAGE */
.ourstory-section {
  padding-bottom: 3rem;
}
.ourstory-disc-wrapper p, .event_description {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
}
.ourstory-img {
  border-radius: 15px;
  box-shadow: 10px 10px 40px rgba(0, 0, 0, .2);
}
.board-section {
  padding: 4rem 0;
}
.board-person-img-wrapper img {
  border-radius: 25px;
  border: 1px solid #000;
  margin-bottom: 10px;
}
.board-person-name {
  color: var(--color-primary);
  font-size: 20px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 0;
}
.board-person-position {
  color: var(--color-gray);
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
}
.outter-box {
  background: url(../images/get_touch_bg.png) no-repeat;
  background-position: top right;
  background-size: cover;
  padding: 2rem 0 0;
  margin-bottom: 3rem;
}
.section-white-bg {
  border-radius: 20px;
  box-shadow: 0px 0px 50px rgba(0, 0, 0, .1);
  background-color: #fff;
  padding: 2rem;
}
.section-white-bg .section-heading h3 {
  font-family: 'Inter', sans-serif;
  color: var(--color-primary);
  font-weight: 500;
}
.board-member-wrapper .row {
  /*    width: 80%;*/
  width: 100%;
  margin: 0 auto;
}
.border-pink-right {
  border-right: 2px solid var(--color-primary);
}
.board-member p {
  color: var(--color-gray);
  font-size: 20px;
  font-weight: 500;
  text-transform: uppercase;
  text-align: center;
}
.partner, .vendor {
  text-align: center;
  margin: 1rem 0;
}
.position_reletive_background {
  position: relative;
  padding-bottom: 60vh;
  margin-bottom: 15%;
}
.partners-secton {
  position: absolute;
  padding-top: 6rem;
  bottom: -15%;
  width: 100%;
}
.partners-secton {
  padding-top: 6rem;
}
.center-background.position_reletive_background {
  background: url(../images/doted_bg.png) no-repeat #f4f1e7;
  background-position: right 70%;
  background-size: 25%;
}
.section.protection-section {
  background-color: var(--color-primary);
  padding: 4rem 0;
}
.section.protection-section .section-heading h2, .vendor_section h2 {
  color: #fff;
}
.protection-info {
  font-family: 'Inter', sans-serif;
  position: relative;
  color: #fff;
  margin: 1rem 0;
}
.protection-info p {
  font-size: 20px;
}
.protection-highlight {
  color: var(--color-secondary);
  text-decoration: none;
}
.protection-info::before {
  position: absolute;
  left: -3%;
  top: 0;
  background-color: #fff;
  color: var(--color-primary);
  width: 30px;
  height: 30px;
  text-align: center;
  font-size: 20px;
  border-radius: 50%;
}
.pro-info-1::before {
  content: "1";
}
.pro-info-2::before {
  content: "2";
}
.pro-info-3::before {
  content: "3";
}
.pro-info-4::before {
  content: "4";
}
.center-background.position_reletive_background > img {
  position: absolute;
  width: 20%;
  bottom: 0;
  left: 0;
  z-index: 0;
}
.btn-footer.btn:first-child:active, .btn-section.btn:first-child:active {
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  background-color: #fff;
}
.btn-donte-option.btn:first-child:active {
  color: var(--color-primary);
  background-color: #f8eaf0;
  border-color: #fff;
}
.getinvolved-section {
  font-family: 'Inter', sans-serif;
}
.getinvolved-section p {
  color: #333;
  font-size: 20px;
  font-weight: 400;
  width: 70%;
  margin: 0 auto;
}
.getinvolved-section p a {
  text-decoration: none;
  color: var(--color-primary);
  font-weight: 500;
}
.getinvolved-section p a:hover {
  color: var(--color-secondary);
}
.getinvolved-section .section-white-bg h4 {
  color: var(--color-dark-gray);
  text-transform: uppercase;
  font-weight: 500;
}
.getinvolved-section .heading .donate-options .btn.btn-donte-option.activeable.active {
  border: 1px solid var(--color-primary);
  color: #fff;
  background-color: var(--color-primary);
}
.getinvolved-section-wrapper {
  position: relative;
  top: 92px;
  z-index: 600;
}
.slider-container {
  margin: 2rem 0;
}
.slider-container > div {
  /*padding-bottom: 20px;*/
  width: 100%;
  /* max-width: 45.26vw; */
  margin: 0 auto;
}
.gallery-img img {
  max-width: 100%;
}
.subheading-text {
  font-size: 0.8em;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #FFFFFF;
  padding: 2em 0 0;
  text-align: center;
}
/* / Slider / */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}
.slick-slider .slick-track, .slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  display: table;
  content: "";
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}
.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
  padding: 10px
}
[dir="rtl"] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
  margin: 0 auto;
  /*max-height: calc(100vh - 140px);*/
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-initialized .slick-slide > div {
  display: flex;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
  display: none;
}
.slick-slider button {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}
.slick-slider .slide-arrow {
  position: absolute;
  top: 50%;
  margin-top: -10px;
}
.slick-slider .slide-arrow img {
  height: 25px;
  filter: invert(1);
}
.photo-gallery.bg-pink .slick-slider .slide-arrow img {
  filter: none;
}
.slick-slider .prev-arrow {
  left: -30px;
  /*  width: 0;
    height: 0;
    border-left: 0 solid transparent;
    border-right: 20px solid #ffffff;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;*/
}
.slick-slider .next-arrow {
  right: -30px;
  /*  width: 0;
    height: 0;
    border-right: 0 solid transparent;
    border-left: 20px solid #ffffff;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;*/
}
.slide-arrow.slick-arrow.slick-disabled {
  opacity: .3;
  cursor: not-allowed;
}
.gallery-img .trailer {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: 56.25%;
  border: 1px solid var(--color-primary);
}
.thumb-video-gallery {
  cursor: pointer;
  border: 1px solid var(--color-primary);
}
.slider-image {
  cursor: pointer;
  overflow: hidden;
  /* border: 1px solid var(--color-primary); */
}
.slider-container .slider-image img:hover {
  scale: 1.1;
  transition: all .3s ease-in-out;
}
.gallery-overlay#galleryOverlay {
  position: fixed;
  height: 100vh;
  width: 100vw;
  top: 0;
  background-color: rgba(0, 0, 0, .9);
  z-index: 999999;
  color: #fff;
}
.gallery-overlaly-wrapper, .gallery-overlaly-wrapper .container, .gallery-ovelay-box {
  height: 100%;
}
.gallery-overlay-box {
  display: flex;
  height: 100%;
  padding: 10px 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
.gallery-overlay-box-wrapper {
  /* background-color: #fff; */
  padding: 2rem;
  /* width: 100%; */
  /* border: 2px solid var(--color-primary); */
  /* border-radius: 25px; */
  text-align: center;
}
#galleryOverlayHeading {
  color: var(--color-primary);
}
#galleryOverlayCloseBtn {
  position: absolute;
  right: 0;
  top: 1%;
}
.gallery-overlay-image img {
  max-width: 70%;
  border: 2px solid var(--color-primary);
}
/* Fancybox */
.fancybox-overlay.fancybox-overlay-fixed {
  z-index: 1000;
  background-color: rgba(0, 0, 0, .9);
}
.fancybox-type-image .fancybox-nav span {
  visibility: visible !important;
}
/* .fancybox-wrap.fancybox-desktop.fancybox-type-image.fancybox-opened{
    max-width: 50% !important;
    width: auto !important;
    height: auto !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%);
}
.fancybox-inner{
    width: 100% !important;
    height: auto !important;
}
.fancybox-image{
    max-width: 100%;
    max-height: 60vh;
    width: auto;
    margin: 0 auto;
} */
.photo-gallery {
  padding: 5rem 0 !important;
}
.fancybox-wrap {
  z-index: 9999;
}
.form-group.recaptcha-block {
  border: 1px solid transparent;
  align-items: center;
  text-align: center;
  clear: both;
  margin: 20px auto;
  width: 305px;
}
.fancybox-lock .fancybox-overlay {
  overflow: hidden;
}
.upcoming-event-heading {
  text-align: center;
  color: var(--color-primary);
}
.upcoming-checkbox {
  border: 3px solid #000000;
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
}
.payment-option {
  max-width: 25%;
}
.upcoming-select-wrapper {
  min-width: 65px;
}
.upcoming-select-wrapper .form-control, .upcoming-select-wrapper > div {
  max-width: 100px;
  display: inline-block;
}
.upcoming-event-img {
  text-align: center;
}
.upcoming-event-img img {
  max-width: 90%;
  border: #ca1a6b solid 1px;
}
/*.upcoming_events_page .upcoming-event-img img{
    max-width: 44%;
}*/
.bg-color-light-gray {
  background-color: #fef9fc;
}
.number_of_guests_wrapper {
  padding-left: 30px;
}
.donAmntContainer {
  display: none;
}
.othDonAmntContainer {
  display: none;
}
.paypalContainer {
  margin: 20px auto;
  width: 100%;
}
.paypalInfoContainer {
  width: 100%;
  padding: 20px 0;
  text-align: center;
}
.paypalInfoContainer p {
  display: inline-block;
  padding: 0 10px;
}
#paypal-button-container {
  margin: 0 auto;
  width: 80%;
}
#result-message {
  text-align: center;
}
#result-message span {
  font-size: 2rem;
  line-height: 2.5rem;
}
#result-message.hidden {
  display: none;
}
.thankyou__overlay {
  position: fixed;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff0f8;
  border: 1px solid var(--color-primary);
  border-radius: 10px;
  color: #000;
  max-width: 80vw;
  width: 500px;
  padding: 2rem;
  z-index: 999999;
}
.thankyou__close {
  position: absolute;
  top: .5rem;
  right: .5rem;
  cursor: pointer;
  font-weight: bold;
}
.thankyou_overlay_content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.thankyou_overlay_content h3 {
  font-size: 50px;
}
.thankyou_overlay_content p {
  font-size: 18px;
  color: #000;
  font-weight: 400;
}
.thankyou_overlay_content span {
  font-size: 24px;
}
.ticketing_img_wrapper {
  text-align: center;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  /* margin-top: 92px; */
  /* background-color: #2b2b2b; */
}
.ticketing_main_img {
  max-width: 50%;
  margin-bottom: 20px;
}
.event_description{
  margin-top: 2rem;
}
.event_description li{
  font-weight: 600;
}
.booking_summary {
  background-color: #fff0f8;
  color: #000000;
  border: 0;
  border-radius: 20px;
}
.booking_summary p {
  margin-bottom: 0;
}
.summary_row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  color: #000000;
}
.summary_row:last-child {
  border-top: 1px solid #000000;
}
.donorsandvendors .hero_section {
  padding-bottom: 4rem;
}
.donorsandvendors .embed_video_events {
  border: 1px solid var(--color-primary);
}
.donor_box {
  background-color: #fff0f8;
  box-shadow: 0 0 15px rgba(0, 0, 0, .2);
  border-radius: 20px;
  height: 100%;
  padding: 10px;
}
.donor_heading {
  text-align: center;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 20px;
}
.donor_list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
.donor_list a {
  display: inline-block;
  max-width: 60%;
}
.donor_disabled, .vendor_disabled {
  cursor: default;
}
.vendor_section {
  background-color: var(--color-primary);
  padding: 4rem 0;
}
.video-holder {
  position: relative;
  width: 100%;
  overflow: hidden;
  /* padding-top: 56.25%; */
  padding-top: 100%;
}
.video-holder video, .video-holder iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Form  */
.form-container {
  background: #ffffff;
  padding: 3rem 1.5rem;
  border-radius: 20px;
  box-shadow: 0px 0px 50px rgba(0, 0, 0, .1);
  max-width: 700px;
  width: 100%;
  margin: 0 auto 4rem;
}

.form-header {
  text-align: center;
  margin-bottom: 30px;
}

.form-header h3 {
  color: var(--color-dark);
  font-weight: 600;
}

.form-header p {
  font-size: 20px;
  color: var(--color-gray);
}


.page-overlay{
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, .6);
  backdrop-filter: blur(1px);
  z-index: 99999999;
}
.page-overlay-wrapper{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.page-overlay-box{
  background: #ffffff;
  padding: 3.375rem 3.375rem;
  border: 1px solid #ffffff;
  box-shadow: 0px 0px 50px rgba(0, 0, 0, .1);
  border-radius: .5rem;
  max-width: 1024px;
  max-height: 90vh;
  overflow-y: auto;
  width: 90%;
  position: relative;
}
.page-overlay-heading{
  margin-bottom: 1rem;
  text-align: center;
}
.page-overlay-heading h2{
  text-align: center;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 2.625rem;
}
.page-overlay-heading p{
  color: #333;
  font-size: 1rem;
  font-weight: 500;
}
.page-overlay-close{
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: .5rem;
  cursor: pointer;
}
.page-overlay-img-wrapper{
  border-radius: .5rem;
  overflow: hidden;
  border: 1px solid var(--color-primary);
  margin: 0 auto;
}

@media screen and (max-width:1680px) {
  .home .center-background {
    height: 92vh;
  }
  .home .center-background.expanded {
    height: 150vh;
  }
  .center_filler_div {
    height: 38vh;
  }
  .hero-small-info {
    right: -5%;
  }
  .protection-info::before {
    left: -5%;
  }
}
@media screen and (max-width:1600px) {
    
  /* .nav-link, .hashtag, .btn-nav {
    font-size: 14px;
  } */
  .contactUs-section-wrapper {
    background-position: 40vw 7vh;
  }
  .hero-section-wrapper h1 {
    font-size: 55px;
  }
  .home .center-background {
    height: 105vh;
  }
  .home .center-background.expanded {
    height: 175vh;
  }
  /* .second-white-background{
        padding-top: 30% !important;
    } */
  .center_filler_div {
    height: 50vh;
  }
  .position_reletive_background {
    padding-bottom: 72vh;
  }
  .hero-small-info {
    right: -10%;
  }
  /* .nav-link {
    margin: 0 10px;
  } */
}
@media screen and (max-width:1366px) {
  h1 {
    font-size: 50px;
  }
  h2 {
    font-size: 40px;
  }
  .big-para {
    font-size: 1rem;
  }
  .hero-section-wrapper h1 {
    font-size: 40px;
  }
  .hero-section-wrapper .side-info p, .mission-statement-section-wrapper p {
    max-width: 100%;
  }
  .hero-small-info h5 {
    font-size: 14px;
    margin-bottom: 0;
  }
  .hero-small-info p {
    font-size: 10px;
    margin-bottom: 0;
  }
  .home .center-background {
    height: 120vh;
  }
  .home .center-background.expanded {
    height: 190vh;
  }
  .hero-small-info {
    right: -5%;
  }
  /* .nav-link {
    margin: 0 5px;
  } */
}
@media screen and (device-width: 1280px) and (device-height: 1024px) {
  .position_reletive_background {
    padding-bottom: 50vh;
  }
  /* .nav-link {
    margin: 0 5px;
  } */
  .home .center-background {
    height: 83vh;
  }
  .center_filler_div {
    height: 40vh;
  }
  .home .center-background.expanded {
    height: 134vh;
  }
  /* .nav-item .dropdown-menu {
    left: 5px;
  } */
}
@media screen and (max-width: 1280px) {
  /* .nav-link {
    font-size: 13px;
  } */
  .donor_heading h4 {
    font-size: 20px;
  }
  
  /* .nav-link, .hashtag, .btn-nav {
    font-size: 11px;
  } */
}
@media screen and (max-width: 1280px) and (max-height: 720px) {
  .copy-rights p, .footer-list .footer-item a, .footer h5, .get-touch p, .get-touch a {
    font-size: 1rem;
  }
  .second-white-background {
    background-size: 50%;
  }
  /* .nav-link {
    margin: 0 5px;
  }
  .nav-item .dropdown-menu {
    left: 0;
  } */
  /* .home .center-background {
        height: 83vh;
    } */
  .center_filler_div {
    height: 65vh;
  }
  .home .center-background.expanded {
    height: 205vh;
  }
}
@media screen and (max-width: 1204px) {
  /* .nav-link {
    margin: 0 5px;
  } */
  .ourstory-disc-wrapper p, .protection-info p, .event_description {
    font-size: 1rem;
  }
  .position_reletive_background {
    padding-bottom: 60vh;
  }
  /* .nav-link {
    margin: 0;
  } */
  .home .center-background {
    height: 116vh;
  }
  .home .center-background.expanded {
    height: 180vh;
  }
  .hero-section-wrapper .side-info p {
    max-width: 100%;
  }
  .center_filler_div {
    height: 55vh;
  }
  .hero-small-info {
    right: -8%;
  }
  /* #header .nav-logo {
    height: 40px;
  } */
  .joinUs-section-wrapper {
    padding-top: 14vh;
  }
}
@media screen and (max-width: 1024px) {
  /* .nav-link, .hashtag, .btn-nav {
    font-size: 12px;
  } */
}
@media screen and (max-width: 800px) and (orientation: landscape) {
  .getinvolved-section-wrapper {
    top: 17vh;
  }
}
@media all and (device-width: 768px) and (device-height: 1024px) and (orientation: portrait), all and (device-width:912px) and (device-height: 1368px) and (orientation: portrait), screen and (device-width: 834px) and (device-height: 1194px) and (orientation: portrait), screen and (device-width:820px) and (device-height: 1180px) and (orientation: portrait), screen and (device-width:800px) and (device-height: 1280px) and (orientation: portrait) {
  .copy-rights.desktop-hide.mt-5 {
    display: none;
  }
  .copy-rights.mobile-hide {
    display: block;
  }
  .slider-container .slider-image img:hover {
    scale: 0;
  }
}
@media screen and (max-width:992px) and (orientation: portrait) {
  .getinvolved-section-wrapper {
    top: 14vh !important;
  }
  .getinvolved .joinUs-section-wrapper {
    padding-top: 12vh !important;
  }
  /* .contactUs-section {
        margin-top: -14vh !important;
    } */
  .joinUs-section-wrapper {
    padding-top: 14vh;
  }
}
@media screen and (max-device-width: 1024px) and (min-device-width: 992px) and (orientation: portrait), screen and (device-width: 600px) and (device-height: 960px) and (orientation: portrait), screen and (device-width: 834px) and (device-height: 1194px) and (orientation: portrait), screen and (device-width: 1194px) and (device-height: 834px) and (orientation: landscape), screen and (device-width: 960px) and (device-height: 600px) and (orientation: landscape), screen and (device-width: 768px) and (device-height: 1024px) and (orientation: portrait), screen and (device-width:820px) and (device-height: 1180px) and (orientation: portrait), screen and (device-width:1180px) and (device-height: 820px) and (orientation: landscape), screen and (device-width: 1024px) and (device-height: 768px) and (orientation: landscape), screen and (device-width:800px) and (device-height: 1280px) and (orientation: portrait), screen and (device-width:912px) and (device-height: 1368px) and (orientation: portrait), screen and (device-width:1368px) and (device-height: 912px) and (orientation: landscape) {
  .getinvolved-section-wrapper {
    top: 92px !important;
  }
  .getinvolved .joinUs-section-wrapper {
    padding-top: 12vh !important;
  }
  .hero-small-info {
    bottom: 65%;
  }
  .hashtag:hover, .buy-now:hover {
    color: var(--color-primary);
  }
  .btn-section:hover {
    background-color: var(--color-primary);
  }
  .btn-donte-option:hover {
    border: 1px solid #fff;
    color: var(--color-primary);
    background-color: #f8eaf0;
  }
  #moveToTop a:hover {
    color: #000;
    background-color: #fff;
  }
  .btn-footer:hover {
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
  }
  .designer a:hover {
    color: var(--color-dark-gray);
  }
  .getinvolved-section p a:hover {
    color: var(--color-primary);
  }
  /* .nav-link:hover {
    color: var(--color-gray);
  } */
  .get-touch a:hover {
    color: var(--color-primary);
  }
  .slider-container .slider-image img:hover {
    scale: 0;
  }
}
@media screen and (device-width: 1024px) and (device-height: 1366px) and (orientation: portrait), screen and (device-width: 1366px) and (device-height: 1024px) and (orientation: landscape) {
  .getinvolved-section-wrapper {
    top: 8vh !important;
  }
  .getinvolved .joinUs-section-wrapper {
    padding-top: 11vh !important;
  }
  /* #header.navbar-shrink img {
    height: 40px;
  } */
  .hero-small-info {
    bottom: 68%;
  }
  .hashtag:hover, .buy-now:hover {
    color: var(--color-primary);
  }
  .btn-section:hover {
    background-color: var(--color-primary);
  }
  .btn-donte-option:hover {
    border: 1px solid #fff;
    color: var(--color-primary);
    background-color: #f8eaf0;
  }
  #moveToTop a:hover {
    color: #000;
    background-color: #fff;
  }
  .btn-footer:hover {
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
  }
  .designer a:hover {
    color: var(--color-dark-gray);
  }
  .getinvolved-section p a:hover {
    color: var(--color-primary);
  }
  /* .nav-link:hover {
    color: var(--color-gray);
  } */
  .get-touch a:hover {
    color: var(--color-primary);
  }
  .slider-container .slider-image img:hover {
    scale: 0;
  }
}
@media screen and (max-width:992px) {
  .home .hero-section {
    padding-top: 0 !important;
  }
  .container {
    /* max-width: 85%; */
  }
  h1 {
    font-size: 32px;
  }
  h2 {
    font-size: 28px;
  }
  h4 {
    font-size: 22px;
  }
  /* header {
    text-align: center;
  }
  #header .nav-logo {
    height: 50px;
  }
  .nav_right {
    flex-direction: column;
    justify-content: center;
  } */
  .hero-section-wrapper .side-info {
    height: auto;
    justify-content: start;
  }
  .hero-section-wrapper .side-info p {
    max-width: 100%;
  }
  .mission-statement-section-wrapper h2 {
    font-size: 28px;
  }
  .page-overlay-heading h2{
    font-size: 1.75rem;
  }
  .big-para {
    font-size: 1rem;
  }
  .hero-image-wrapper {
    background-position: 42% -10%;
  }
  .hero-img {
    transform: translateX(10%) !important;
  }
  .home .center-background {
    height: auto;
  }
  .home .center-background.expanded {
    height: auto;
  }
  .center_filler_div {
    height: 0;
  }
  .merchandise-section {
    position: static !important;
    margin-top: 2rem;
  }
  .video-section-body {
    position: relative;
    z-index: 1;
  }
  .upper_filler_div {
    height: 0;
  }
  .second-white-background {
    background-size: 65%;
  }
  .get-involved {
    padding: 2rem 0 0 !important;
  }
  .doted-bg-img {
    transform: translateY(-65%);
  }
  .copy-rights p, .footer-list .footer-item a, .footer h5, .get-touch p, .get-touch a {
    font-size: 12px;
  }
  .side-info h2 {
    text-align: center;
  }
  .subscribe-wrapper input {
    width: 100%;
  }
  .joinUs-section-wrapper {
    padding-top: 15vh;
  }
  .btn-subscribe {
    margin: auto;
  }
  .social-media a:nth-child(2) {
    margin: 0 20px !important;
  }
  .ourstory-section .row {
    flex-direction: column-reverse !important;
  }
  .mission-statement-section {
    padding-bottom: 1rem !important;
  }
  .mission-statement-section-wrapper .heading p {
    font-size: 1rem;
  }
  .ourstory-img-wrapper {
    text-align: center;
    margin-bottom: 2rem;
  }
  .ourstory-img {
    margin: 0 !important;
  }
  .board-member p {
    font-size: 1rem;
  }
  .board-member-wrapper .row {
    width: 100%;
  }
  .section-white-bg {
    padding: 2rem 1rem;
  }
  .outter-box {
    background-size: 80%;
  }
  .partners-secton {
    position: relative;
  }
  .position_reletive_background {
    padding-bottom: 1rem;
    margin-bottom: 0;
  }
  .protection-info::before {
    position: static;
    width: 30px;
    display: inline-block;
    height: 30px;
    margin-bottom: 5px;
  }
  /* .nav-logo {
    height: 50px;
  }
  .navbar-collapse.collapse.show {
    padding-bottom: 10px;
    max-height: 55vh;
    overflow-y: auto;
  } */
  .getinvolved-section p {
    width: 100%;
  }
  .desktop-hide {
    display: block;
  }
  .mobile-hide {
    display: none;
  }
  .get-involved {
    max-width: 100% !important;
  }
  .center-background.position_reletive_background > img {
    width: 50%;
    z-index: 0;
  }
  .slide-arrow.slick-arrow.slick-disabled {
    display: none !important;
  }
  .gallery-overlay-box-wrapper h2 {
    font-size: 20px;
  }
  .gallery-overlay-image img {
    max-width: 100%;
  }
  #fancybox-loading, .fancybox-close, .fancybox-prev span, .fancybox-next span {
    background-image: url(../images/fancybox_sprite.png);
    background-size: 44px 152px;
  }
  .video-section-wrapper h3 {
    font-size: 20px;
  }
  .video-section-wrapper p {
    font-size: 1rem !important;
  }
  .hero-small-info {
    right: 5%;
  }
  .upcoming-event-section {
    padding-bottom: 0;
  }
  .mission-statement-section-wrapper h2 {
    margin-top: 0 !important;
  }
  .partners-secton {
    padding-top: 4rem !important;
  }
  .site-map {
    padding: 0;
  }
  .hashtag:hover, .buy-now:hover {
    color: var(--color-primary);
  }
  .btn-section:hover {
    background-color: var(--color-primary);
  }
  .btn-donte-option:hover {
    border: 1px solid #fff;
    color: var(--color-primary);
    background-color: #f8eaf0;
  }
  #moveToTop a:hover {
    color: #000;
    background-color: #fff;
  }
  .btn-footer:hover {
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
  }
  .designer a:hover {
    color: var(--color-dark-gray);
  }
  .getinvolved-section p a:hover {
    color: var(--color-primary);
  }
  /* .nav-link:hover {
    color: var(--color-gray);
  } */
  .get-touch a:hover {
    color: var(--color-primary);
  }
  /* .nav-item .dropdown-item {
    text-align: center;
  } */
  .goals-section-body h2 br {
    display: none;
  }
  .goals-section-body .big-para {
    text-align: center;
  }
  .slider-container .slider-image img:hover {
    scale: 0;
  }
  .upcoming_events_page .upcoming-event-img img {
    max-width: 100%;
  }
  .ticketing_main_img {
    max-width: 100%;
    margin-bottom: 0;
  }
  .video-gallery {
    padding-inline: .5rem !important;
  }
}
@media screen and (max-width: 600px) {
  .hero-small-info {
    right: -5%;
  }
}
@media screen and (max-width:576px) {
  .container {
    /* max-width: 90%; */
  }
  .side-info {
    text-align: center;
    margin-bottom: 4rem;
  }
  .side-info p {
    margin-right: auto;
    margin-left: auto;
  }
  .hero-image-wrapper {
    background-position: 0 -10%;
  }
  .hero-img {
    transform: none !important;
  }
  .copy-rights p, .footer-list .footer-item a, .footer h5, .get-touch p, .get-touch a, .btn-footer {
    font-size: 12px;
  }
  .upcoming-signup .black-bar {
    margin: 0 auto;
  }
  .second-white-background {
    background-position: 25% 20%;
    background-size: 150%;
  }
  .video-section-body-wrapper {
    transform: none;
  }
  .about-section {
    transform: none;
    padding-top: 4rem;
  }
  .merchandise-section {
    transform: none;
  }
  .get-involved {
    max-width: 100%;
  }
  .right-goals {
    padding-top: 0;
  }
  .second-white-background {
    padding-top: 1rem !important;
  }
  .upcoming-event-img {
    margin-bottom: 2rem;
  }
  .upcoming-signup {
    text-align: center;
  }
  .donate-options {
    justify-content: center;
  }
  .joinUs-left-info {
    width: 100%;
  }
  .border-pink-right, .board-member-wrapper .row.justify-content-center .col-sm-4 {
    border-bottom: 2px solid var(--color-primary);
    border-right: 0;
  }
  .donate-options .btn {
    padding: 8px 12px;
    font-size: 12px;
  }
  .hero-small-info {
    right: 8%;
  }
  .form-group.recaptcha-block {
    position: relative;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
  }
  .g-recaptcha {
    transform: scale(0.77);
    -webkit-transform: scale(0.77);
    transform-origin: center;
    -webkit-transform-origin: center;
  }
  .payment-option {
    max-width: 80%;
  }
  .upcoming-select-wrapper > div {
    width: 40%;
  }
  .upcoming-select-wrapper .form-control {
    width: 100%;
  }
  .thankyou__overlay {
    padding: 1rem .6rem;
  }
  .thankyou_overlay_content h3 {
    font-size: 35px;
  }
  h3{
    font-size: 34px;
  }
  .page-overlay-box{
    padding: 1.5rem;
  }
  .page-overlay-close{
    top: 10px;
    right: 10px;
    padding: .3rem;
  }
}
.contactinnerContainer__thankyou, .item__thankyou {
  position: relative;
  left: 0;
  right: 0;
  font-weight: 600;
  margin: 1rem 0 0;
}
.contactinnerContainer__thankyou span, .item__thankyou span {
  color: var(--color-primary);
  background-color: #f8eaf0;
  padding: 0.5rem;
  border-radius: 5px;
}
@media screen and (max-width: 360px) {
  .hero-small-info {
    right: 0;
  }
  .thankyou_overlay_content h3 {
    font-size: 25px;
  }
  .thankyou_overlay_content p {
    font-size: 12px;
  }
  .thankyou_overlay_content span {
    font-size: 18px;
  }
}
@media screen and (min-width: 2400px) {
  .position_reletive_background {
    padding-bottom: 25vh;
      margin-bottom: 9%;
  }
}