@import url('https://fonts.googleapis.com/css2?family=Kaushan+Script&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
}
body {
	font-family: "Montserrat", sans-serif;
}
a {
  text-decoration: none !important;
  display: inline-block !important;
}
img {
  width: 100%;
  display: block;
}
ul {
  padding: 0;
  margin: 0;
}
p {
   color: var(--c1);
   padding: 0;
   margin: 0;
   line-height: 30px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0;
  margin: 0;
}
h3{
	font-family: "Poppins", sans-serif;
}
h4 {
	font-family: "Kaushan Script", cursive;
}

/* Loader */

/* loader-css */

div#preloader {
  position: fixed;
  z-index: 999999999;
  background: var(--c2);
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s;
}
.custom-loader {
  width: 50px;
  height: 50px;
  display: grid;
  border: 4px solid #0000;
  border-radius: 50%;
  border-color: var(--c1) #0000;
  animation: s6 1s infinite linear;
}
.custom-loader::before,
.custom-loader::after {
  content: "";
  grid-area: 1/1;
  margin: 2px;
  border: inherit;
  border-radius: 50%;
}
.custom-loader::before {
  border-color: var(--c3) #0000;
  animation: inherit;
  animation-duration: 0.5s;
  animation-direction: reverse;
}
.custom-loader::after {
  margin: 8px;
}

@keyframes s6 {
  100% {
    transform: rotate(1turn);
  }
}
#preloader.remove {
  opacity: 0 !important;
  visibility: hidden !important;
}

/* Colors Root */

:root {
  --c1: #000; 		/* Black */
  --c2: #fff; 		/* White */
  --c3: #9D3CBD; 	/* Purple */
}

/* Selection */

::selection {
  background: var(--c3);
  color: var(--c2);
}

/* Main Title */

.main-title h4 {
    margin-bottom: 10px;
}

.main-title h2 {
    text-transform: uppercase;
    font-weight: 700;
    color: var(--c1);
    font-size: 36px;
}


/* Main Btn */

.main-btn a {
    background: var(--c3);
    color: var(--c2);
    padding: 14px 40px;
    border-radius: 6px;
    transition: all .5s;
    text-transform: uppercase;
    font-weight: 600;
}

.main-btn a:hover {
    background: var(--c1);
}

/* Spacing */

.spacing {
	padding: 100px 0px;
}

/* Wrapper */

.wrapper {
	overflow: hidden;
}

/* Header */

.sub-header {
    background-color: var(--c1);
    padding: 6px 0px;
}

.sub-header-info ul li a {
    color: var(--c2);
    font-size: 14px;
    transition: all .5s;
}

.sub-header-info ul li a i {
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    background: var(--c2);
    border-radius: 50%;
    color: var(--c3);
    margin-right: 6px;
}

.sub-header-info ul li a:hover {
    color: var(--c3);
}

.sub-socials ul {
    display: flex;
    justify-content: end;
    gap: 10px;
}

.sub-socials ul li a {
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    border: 1px solid var(--c2);
    border-radius: 50%;
    color: var(--c3);
    transition: all .5s;
}

.sub-socials ul li a:hover {
    background: var(--c2);
}

.h-items {
    display: flex;
    justify-content: end;
    gap: 30px;
    align-items: center;
}

.navigation nav ul {
    display: flex;
    gap: 20px;
}

.navigation nav ul li a {
    color: var(--c1);
    text-transform: uppercase;
    transition: all .5s;
    border-bottom: 2px solid transparent;
    font-family: 'Poppins';
    font-weight: 500;
}

.navigation nav ul li a:hover {
    border-color: var(--c3);
    color: var(--c3);
}

.logo a {
    display: block !important;
    width: 220px;
}

.main-header {
    padding: 10px 0px;
}

/* Banner */

.banner {
    z-index: 1;
    position: relative;
    height: 100dvh;
}

.banner:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    background-image: url(https://dev-audrey-purple.pantheonsite.io/wp-content/uploads/2025/05/Group-1707485797.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.banner-left-image {
    height: 100%;
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 50%;
}

.banner-left-image img {
    height: 100%;
    object-fit: cover;
}

.banner-right-image {
    position: absolute;
    right: 160px;
    top: 50%;
    transform: translateY(-50%);
    width: 50%;
}

/* About Us */

.about-images {
    position: relative;
}

.about-image {
    position: absolute;
    overflow: hidden;
    border: 16px solid var(--c1);
}
.about-content h2:last-of-type {
    margin-top: 10px;
}
.about-image.two {
    border-color: var(--c2);
    top: 410px;
    right: 0;
    width: 70%;
}

.about-image.one {
	width: 80%;
	top: 150px;
	left: 0;
}

.about-image.one img {
    height: 400px;
    object-fit: cover;
}

.about-image.two img {
    height: 320px;
    object-fit: cover;
}


.about-content p {
    margin-top: 16px;
    color: #444444;
}

/* Grow */

.grow-content {
    margin-left: 200px;
}
.grow-content p {
    margin-top: 15px;
    padding-right: 90px;
}
.grow-slider:after {
    position: absolute;
    content: "";
    width: 105%;
    height: 50%;
    top: -50px;
    right: 0px;
    background: linear-gradient(95deg, #000000 3.88%, #9D3CBD 103.3%);
    z-index: -1;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
}

.grow-image img {
    height: 230px;
    object-fit: cover;
}
.grow-slider-box {
    background: var(--c2);
    margin: 0px 20px 0px 0px;
    border-radius: 20px;
    padding: 10px;
    cursor: grab;
    box-shadow: 0px 4px 12px 0px #00000012;
}

.grow-image {
    overflow: hidden;
    border-radius: 20px;
}

.grow-item-title h3 {
    text-align: center;
    color: #404040;
    text-transform: uppercase;
    margin: 20px 0px;
    font-size: 20px;
}

.grow-slider .slick-list.draggable {
    padding: 50px 10px;
}

.grow-slider .slick-arrow {
    position: absolute;
    z-index: 99;
    bottom: 0;
    width: 50px;
    height: 50px;
    border: 1px solid var(--c1);
    line-height: 50px;
    text-align: center;
    color: #9D9D9D;
    border-radius: 10px;
    cursor: pointer;
    font-size: 24px;
    transition: all .5s;
}

.grow-slider .slick-prev {
    left: -68%;
}

.grow-slider .slick-next {
    left: -61%;
}

.grow-slider .slick-arrow:hover {
    background: var(--c1);
}

/* Impact */

.impact {
    position: relative;
    z-index: 1;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.impact:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(95deg, #000000 3.88%, #9D3CBD 103.3%);
    z-index: -1;
    opacity: 0.9;
}

.impact-box {
    background: var(--c2);
    border-radius: 26px;
    padding: 30px;
    text-align: center;
    /* height: 300px; */
    transition: all .5s;
}

.impact-box h2 {
    font-size: 30px;
    margin: 10px 0px;
}

.impact-box i {
    font-size: 50px;
    color: var(--c1);
}
.impact-box p {
    margin-bottom: 10px;
}

.impact-box:hover {
    background: var(--c1);
}

.impact-box:hover h2 , .impact-box:hover i , .impact-box:hover p {
    color: var(--c2);
}

.impact-box:hover a {
    border-color: var(--c2);
}

.impact-box a {
    border: 3px solid transparent;
}

/* Mission */

.mission-image {
    overflow: hidden;
    border: 2px solid var(--c2);
}

.mission {
    position: relative;
    z-index: 1;
    background-size: cover;
    background-position: center;
}

.mission:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #ffffffbf;
    z-index: -1;
}

.mission-images {
    position: relative;
}

.mission-image.one img {
    height: 450px;
    object-fit: cover;
}
.double-images {
    display: flex;
}

.mission-image.two , .mission-image.three {
    flex: 0 0 50%;
}

.mission-image.two img, .mission-image.three img {
    height: 250px;
    object-fit: cover;
}

.mission-content {
    padding-left: 40px;
    position: relative;
    margin-left: 20px;
}

.mission-content p {
    margin: 10px 0px;
}

.mission-content:before {
    position: absolute;
    content: "";
    width: 10px;
    height: 20%;
    top: 0;
    left: 0;
    background: var(--c1);
}

.mission-content h3 {
    text-transform: uppercase;
    color: var(--c1);
    font-weight: 600;
}
.mission-btns {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.btn-two a {
    background: transparent;
    border: 2px solid var(--c1);
    color: var(--c1);
    padding: 12px 40px;
}

.btn-two a:hover {
    color: var(--c2);
}

/* Fund */

.countdown-timer ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.countdown-timer li {
    font-size: 16px;
    color: #333;
    font-weight: 600;
}

.countdown-timer span {
     /* highlight color */
    font-weight: 700;
    padding-right: 3px;
}

section.fund {
    position: relative;
    background-size: cover;
    background-position: 0% 100%;
    z-index: 1;
    padding-bottom: 250px;
}
.fund-image img {
    height: 260px;
    object-fit: cover;
}
section.fund:before {
    position: absolute;
    /* content: ""; */
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(0deg, #9939B8, #9939B8),
linear-gradient(0deg, rgba(153, 57, 184, 0.8), rgba(153, 57, 184, 0.8));
    z-index: -1;
    opacity: 0.8;
}

.fund-box {
    background: var(--c2);
    border-radius: 6px;
    position: relative;
    padding: 20px;
    margin-bottom: 40px;
    height: 560px;
}

.fund-icon {
    position: absolute;
    top: -30px;
    background: #21201E;
    padding: 10px;
    border-radius: 6px;
    width: 20%;
    left: -20px;
}

.fund-icon img {
    filter: invert(1);
}

.fund-image {
    overflow: hidden;
    border-radius: 6px;
}

.fund-content h2 {
    font-size: 24px;
    margin: 30px 0px 10px 0px;
}

.raised span strong {
    color: var(--c1);
    margin-right: 20px;
    font-size: 20px;
}

.raised span {
    font-size: 16px;
    margin-top: 10px;
    display: inline-block;
}

.time-supporters ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.time-supporters ul li:first-child {
    color: var(--c3);
}

.time-supporters ul li:first-child {background: transparent;}

.time-supporters ul li {
    font-weight: 500;
    background: var(--c3);
    padding: 8px 0px;
    color: vaR(--c2);
    font-size: 26px;
    width: 20%;
    text-align: center;
    border-radius: 5px;
}
.fund-btns {
    /* display: flex; */
    /* justify-content: space-between; */
    margin-top: 20px;
    position: absolute;
    bottom: 20px;
    /* gap: 10px; */
    width: 90%;
    text-align: center;
}

.fund-btns a {
    padding: 14px 20px;
    border: 1px solid var(--c1);
    border-radius: unset;
}

.learn-btn a {
    background: transparent;
    color: var(--c1);
}

.learn-btn a:hover {
    color: var(--c2);
}

.donate-btn a {
    background: #21201E;
    border-color: transparent;
    display: block !important;
    width: 100%;
}
.fund-title {
    text-align: center;
    margin-bottom: 60px;
}

.fund-title h2 {
    color: var(--c2);
}
.fund-box .progress {
    height: 10px;
    background-color: #21201E;
    border-radius: 50px;
    margin: 10px 0px;
}
.fund-box .progress-bar {
    background-color: var(--c3);
}
.time-supporters ul li i {/* color: vaR(--c3); *//* font-size: 24px; */line-height: 24px;}

/* News */

.news-title.main-title {
    text-align: center;
    margin-bottom: 60px;
}
.news-slider .custom-arrow {
    position: absolute;
    z-index: 99;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    background: var(--c3);
    color: var(--c2);
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

.news-slider .slick-prev {
    left: -20px;
}

.news-slider .slick-next {
    right: -20px;
}

.news-box {
    box-shadow: 0px 3.58px 3.58px 0px #00000040;
    border: 0.89px solid #27272733;
    border-radius: 6px;
}

.news-content h2 {
    font-size: 21px;
    margin: 10px 0px;
    transition: all.5s;
}

.news-content {
    padding: 30px;
    text-align: center;
}

.news-content a:last-of-type {
    color: #21201E;
    /* border-bottom: 1px solid #21201E; */
    transition: all .5s;
    margin-top: 10px;
}
.news-content h2:hover {
	color: var(--c3);
}
.news-content a:last-of-type:hover {
    color: var(--c3);
    border-color: var(--c3);
}

/* Member */

.member-box {
    box-shadow: 0px 4.11px 7.7px 0px #00000040;
    border: 1.03px solid #000000;
    text-align: center;
    padding: 30px;
    position: relative;
    border-radius: 8px;
}

.member-icon {
    width: 30%;
    margin: 0 auto;
}

.member-about h3 {
    color: var(--c1);
    margin: 20px 0px;
    text-transform: uppercase;
    font-weight: 300;
    font-size: 26px;
}

.member-about h2 {
    font-size: 24px;
}

.member-box:after {
    position: absolute;
    content: "";
    width: 40%;
    height: 10px;
    bottom: 0;
    background: var(--c3);
    left: 50%;
    transform: translateX(-50%);
}

.member-title {
    text-align: center;
    margin-bottom: 30px;
}

.member-title p {
    width: 70%;
    margin: 0 auto;
}

/* Sponsors */

.sponsors-title {
    text-align: center;
    margin-bottom: 40px;
}
.sponsor-image img {
    width: 160px;
    height: 160px;
    object-fit: contain;
}
section.sponsors {
    background: #A34CBF1A;
}
.sponsor-image {
    margin: 0 auto;
    padding: 0px 30px;
}
.continuous-slider .custom-arrow {
    position: absolute;
    z-index: 99;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    background: var(--c3);
    color: var(--c2);
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

.continuous-slider .slick-prev {
    left: -20px;
}

.continuous-slider .slick-next {
    right: -20px;
}

/* Testimonials */

section.testimonials {
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
}

section.testimonials:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #252A34D9;
    z-index: -1;
}

.testi-title {
    text-align: center;
    margin-bottom: 40px;
}

.testi-title h4 {
    text-transform: capitalize;
    color: var(--c2);
}

.testi-title h2 {
    color: var(--c2);
}
.testi-imege-box {
    overflow: hidden;
    border-radius: 50px;
}
.testi-box ul {
    display: flex;
    color: #FD9A37;
    gap: 5px;
}

.testi-box p {
    color: var(--c2);
    padding: 20px 30px 20px 0px;
}

.testi-box h2 {
    color: var(--c2);
    text-transform: uppercase;
    font-weight: 600;
}

.slider-for .custom-arrow {
    position: absolute;
    z-index: 99;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    background: var(--c3);
    color: var(--c2);
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

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

.slider-for .slick-next {
    right: -110%;
}

/* Contact */

section.contact {
    position: relative;
    background-size: cover;
    background-position: 0% 0%;
    z-index: 1;
    margin-top: -160px;
    padding-top: 300px;
}
.contact-us h2 {
    margin: 20px 0px;
}
section.contact:before {
    position: absolute;
    /* content: ""; */
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(0deg, #9939B8, #9939B8), linear-gradient(0deg, rgba(153, 57, 184, 0.8), rgba(153, 57, 184, 0.8));
    z-index: -1;
    opacity: 0.8;
}

/* Contact */

.contact-info h2 , .contact-info p {
    color: var(--c2);
    width: 80%;
}
.contact-us {
    margin-bottom: 40px;
}
.contact-info h2 {
    margin-bottom: 10px;
}

.contact-info h5 {
    text-transform: uppercase;
    color: var(--c1);
}

.contact-info-box {
    background: var(--c2);
    padding: 60px 20px;
    position: relative;
    width: 80%;
    margin-top: 20px;
}

.icon {
    background: #21201E;
    display: inline-block;
    padding: 10px;
}

.icon img {
    filter: invert(1);
    width: 40px;
}

.contact-icon-box {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: center;
}

.contact-icon-box:last-of-type {
    margin-bottom: 0;
}

.contact-info-box > h5 {
    text-transform: uppercase;
    margin-bottom: 30px;
    font-weight: 600;
    color: var(--c1);
}
.contact-info-box:before {
    position: absolute;
    content: "";
    width: 300px;
    height: 300px;
    background-image: url(https://dev-audrey-purple.pantheonsite.io/wp-content/uploads/2025/05/Rectangle-39386.png);
    top: -10px;
    right: 0;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
.icon-info h5 {
    color: var(--c3);
    text-transform: uppercase;
    font-size: 16px;
    margin-bottom: 5px;
}

.icon-info a , .icon-info p {
    color: var(--c1);
    font-weight: 600;
}
.input-field input , .input-field textarea {
    width: 100%;
    outline: 0;
    border: 1.09px solid #00000033;
    padding: 10px 20px;
    font-size: 14px;
}

.contact-form {
    background: var(--c2);
    padding: 40px;
    position: relative;
}

.contact-form h2 {
    margin-bottom: 20px;
}

.input-field label {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 12px;
}

.input-field {
    margin-bottom: 20px;
}

.submit input {
    background: var(--c3);
    border: 0;
    color: var(--c2);
    padding: 14px 30px;
    border-radius: 6px;
    text-transform: uppercase;
    transition: all .5s;
    width: 100%;
}
.input-field textarea {
    height: 200px;
}
.contact-form:before,.contact-form:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 8px;
    background: var(--c1);
    left: 0;
}

.contact-form:before {
    top: 0;
}

.contact-form:after {
    bottom: 0;
}
.submit input:hover {
    background: var(--c1);
}

/* inner-wrapper */

.inner-header {
  height: 400px;
  background-position: center !important;
  background-attachment: fixed !important;
  position: relative;
  display: flex;
  align-items: center;
  text-align: center;
  background-size: cover !important;
}
.inner-header:before {
  width: 100%;
  height: 100%;
  content: "";
  background: rgb(0 0 0 / 60%);
  position: absolute;
  left: 0;
  top: 0;
}
.inner-header .container {
  position: relative;
}
.inner-header .inner-header-title h2 {
  color: #fff;
  font-size: 50px;
  font-weight: 700;
}

/* Footer */

footer.footer {
    background: #21201E;
    position: relative;
}
.f-logo a {
    background: var(--c2);
    padding: 20px;
    border-radius: 0px 0px 170px 170px;
    height: 150px;
    position: absolute;
    width: 12%;
    top: 0;
}

.footer-top {
    padding: 180px 0px 60px 0px;
}

.f-items p {
    padding: 20px 0px 20px 0px;
    color: var(--c2);
}

.f-items h3 {
    color: var(--c2);
    text-transform: uppercase;
    margin-bottom: 20px;
}

.f-items ul {
    display: flex;
    gap: 10px;
}

.f-items ul li a {
    color: var(--c2);
    font-size: 30px;
    transition: all .5s;
}

.f-items ul li a:hover {
    color: var(--c3);
}

.f-links h4 {
    color: var(--c2);
    font-family: 'Montserrat';
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.f-links ul li {
    margin-bottom: 10px;
}

.f-links ul li:last-child {
    margin-bottom: 0;
}

.f-links ul li a {
    color: var(--c2);
    text-transform: uppercase;
    font-size: 15px;
    transition: all .5s;
}

.f-links ul li a:hover {
    padding-left: 6px;
    color: var(--c3);
}

.f-contact ul li:first-child a {
    text-transform: lowercase;
}

.f-contact ul li a i {
    margin-right: 8px;
}

.f-bottom {
    border-top: 1px solid var(--c2);
    padding: 10px 0px;
}

.copyright p {
    text-align: center;
    color: var(--c2);
}


/*sponsors*/

.sponsor-img {
    margin-top: 50px;
    background: #9d3cbd6e;
    padding: 10px;
    border-radius: 10px;
    height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sponsor-img img {
    /* aspect-ratio: 1; */
    object-fit: contain;
    height: 100px;
}
.sponsor-img a {
    display: block !important;
}
.sponsors-names {
    padding: 20px 20px;
    background: #9d3cbd;
    transition: all .5s;
    margin: 10px 0px;
    border-radius: 10px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 110px;
}
.sponsor-names {
	margin-bottom: 100px;
}
.sponsors-names:hover {
    border-radius: 0px;
}

.sponsors-names a {
    font-size: 16px;
    color: var(--c2);
}

.sponsor-names {
    margin-bottom: 100px;
}

/* About Us */

.about-us-content {
  margin-left: 80px;
}
.about-us-images {
  position: relative;
}
.image-one img {
  height: 650px;
  object-fit: cover;
}
.image-one {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 10px 0px 10px 10px var(--c3);
}
.image-two {
  border-radius: 20px;
  overflow: hidden;
  position: absolute;
  bottom: -100px;
  right: -60px;
  width: 80%;
  box-shadow: 10px 10px 10px -4px var(--c3);
}
.image-two img {
  height: 400px;
  object-fit: cover;
}

.about-us-content p {
    margin-top: 15px;
}

/* Foundation */

.foundation-content h2 {
    color: var(--c2);
}

.foundation-content strong {
    display: block;
    color: var(--c2);
    margin-top: 20px;
}

.foundation-content p {
    color: var(--c2);
    padding-top: 20px;
}

/* Portfolio */

.portfolio-title {
  margin-bottom: 40px;
  text-align: center;
}
.gallery-items-main {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 13px;
}
.gallery-item.item2 {
  grid-column: 1/5;
}
.gallery-item.item1 img {
  height: 450px;
  object-fit: cover;
  object-position: top;
}
.gallery-item.item4 img,
.gallery-item.item3 img,
.gallery-item.item2 img {
  height: 500px;
  object-fit: cover;
}

.gallery-item.item5 img,
.gallery-item.item6 img {
  height: 450px;
  object-fit: cover;
  object-position: top;
}
.gallery-item.item5 {
  grid-column: 1/7;
}
.gallery-item.item6 {
  grid-column: 7/13;
}
.gallery-item.item1 {
  grid-column: 1/13;
}
.gallery-item.item3 {
  grid-column: 5/9;
}
.gallery-item.item4 {
  grid-column: 9/13;
}
.gallery-title {
  margin-bottom: 50px;
}
.gallery-item {
  overflow: hidden;
}
.gallery-item img {
  transition: all 0.5s;
}
.gallery-item:hover img {
  transform: scale(1.1);
}
.gallery-item a {
  height: 100%;
  display: block !important;
}


.mission-newsletter-main {
    display: flex;
}

.mission-newsletter-main input {
    border: none;
}

.sign-up-btn input {
    padding: 10px 30px;
    background: var(--c3);
    color: var(--c2);
    transition: all.5s;
}

.mission-newsletter input {
    padding: 10px 16px;
    outline: 0;
}
.sign-up-btn input:hover {
    background: var(--c1);
}

.page-template-sponsors .inner-header {
    background-position: 0% 65% !important;
    background-attachment: unset !important;
}
.news-image {
    height: 220px;
    padding: 20px;
}
.form-sign h2 {
    margin-bottom: 20px;
}
.sponsor-img > p {
    text-align: center;
    font-size: 12px;
    line-height: 12px;
    padding-top: 6px;
}
.sponsor-img strong {
    font-size: 12px;
    line-height: 14px;
}

.sponsor-names {margin: 100px 0px 200px !important;}

.sponsor-names h2 {
    font-size: 16px;
    line-height: 20px;
    color: var(--c2);
}

.sponsors-names h2 span {
    display: block;
    font-weight: 700;
    margin-top: 5px;
}