@import url('https://fonts.googleapis.com/css2?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');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

html {
    font-size: 16px;
    overflow-x: hidden;
}

body {
    position: relative;
    font-family: "Roboto", sans-serif;
    background: #fff;
    overflow-x: clip;
}


/*.container {
    max-width: 1170px;
}*/

:root {
    --white: #ffffff;
    --black: #000;
    --gary-color: #727272;
    --lightgary-color: #b2b9bd;
    --theme-color: #E4001B;
    --primary-color: #0B184C;
}

p {
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 32px;
    color: #828282;
}

h6,
p,
a,
button {
    font-family: 'Poppins', sans-serif;
}

h1,
h2,
h3,
h4,
h5 {
    color: #000;
}

.img-auto {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}

a,
button {
    text-decoration: none !important;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

a:hover,
button:hover {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

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

figure {
    margin: 0;
}

section {
    padding: 5rem 0;
}

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

.color--primary {
    color: var(--primary-color);
}

/* Heading */
.subHeading {
    font-size: 1.375rem;
    font-weight: 600;
}

.sectionHeading {
    font-size: 3.75rem;
    text-transform: uppercase;
    text-align: center;
    font-weight: bold;
    margin: 0 0 2rem;
}

.heading {
    font-size: 2.625rem;
    text-transform: uppercase;
    font-weight: bold;
}

/* loader */

.preLoader {
    width: 100%;
    height: 100%;
    z-index: 1111;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}

.preLoader.black {
    background-color: var(--theme-color);
    z-index: 11113;
}

.preLoader.white {
    z-index: 11112;
    background-color: var(--primary-color);
}


/* loader */


/* Cursor Start */

.mouse-cursor {
    position: fixed;
    left: 0;
    top: 0;
    pointer-events: none;
    border-radius: 50%;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    visibility: hidden;
}

.cursor-inner {
    margin-left: 2px;
    margin-top: 2px;
    width: 7px;
    height: 7px;
    z-index: 10000001;
    background-color: var(--theme-color);
    -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
    -o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
    transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-inner.cursor-hover {
    margin-left: -10px;
    margin-top: -10px;
    width: 30px;
    height: 30px;
    background-color: var(--theme-color);
    opacity: 0.3;
}


/* Cursor End */


/* btn css */

.themeBtn {
    background: var(--theme-color);
    font-size: 1.125rem;
    color: var(--white);
    text-transform: capitalize;
    font-weight: 500;
    display: inline-block;
    padding: 0.8em 2.51em;
    border-radius: 50px;
    line-height: normal;
    border: none;
}

.themeBtn.borderBtn {
    background: transparent;
    border: 1px solid var(--black);
    padding: 0.5em 1.72em;
    text-transform: capitalize;
}


/* btn css */


/* mouse animation css  */

.bounce-element {
    animation: bounce 0.9s infinite alternate;
    -webkit-animation: bounce 0.9s infinite alternate;
}

@keyframes bounce {
    from {
        transform: translateY(0px);
    }

    to {
        transform: translateY(-15px);
    }
}

@-webkit-keyframes bounce {
    from {
        transform: translateY(0px);
    }

    to {
        transform: translateY(-15px);
    }
}

.mouse {
    position: absolute;
    bottom: 1rem;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 11;
    text-align: center;
}


/* mouse animation css  */


/* navigation css */

.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 0;
    /* writing-mode: vertical-lr;
    transform: rotate(180deg);
    background: var(--white);
    box-shadow: 0 0 6px #0008;
    transition: all 0.3s ease; */
    z-index: 999;
}

/* .header.hidden {
    opacity: 0;
    transform: rotate(180deg) translateX(100%);
    visibility: hidden;
}

.header-main__nav {
    display: flex !important;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: fit-content;
    gap: 1.5rem;
}

.header .themeBtn {
    padding: 1em 0.5em;
} */

.navbar-nav {
    align-items: center;
    justify-content: space-between;
    gap: 2.5rem;
    margin-right: 2.5rem;
}

.navbar-nav .nav-item .nav-link {
    font-size: 1rem;
    color: var(--black);
    text-transform: uppercase;
    font-weight: 500;
    padding: 0 0;
    display: inline-block;
}

.navbar .dropdown>a:after {
    content: "\f107";
    font-family: "Font Awesome 5 Pro";
    font-weight: 300;
    font-size: 1.2rem;
    position: absolute;
    right: -18px;
    bottom: -3px;
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 0;
    top: calc(100% + 30px);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    padding: 0;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
}

.navbar .dropdown li {
    min-width: 180px;
    position: relative;
    list-style: none;
}

.navbar .dropdown ul li a {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    text-transform: none;
    color: #151515;
    display: block;
}

.navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.form-inline .themeBtn {
    padding: 0.5em 1.72em;
    text-transform: capitalize;
    color: var(--white);
    font-size: 1.125rem;
    font-weight: 500;
}

.form-inline {
    gap: 1rem;
}

.form-inline .themeBtn.borderBtn {
    color: var(--black);
}

.navbar .dropdown ul li a:hover {
    background: var(--theme-color);
    color: var(--white);
}

.form-inline .themeBtn.borderBtn:hover {
    background: var(--theme-color);
    color: var(--white);
    border-color: var(--theme-color);
}

.form-inline .themeBtn:hover {
    background: var(--black);
    color: var(--white);
}


/* navigation css */


/* slider css */

.mainSlider {
    height: 1000px;
    position: relative;
    /* z-index: 1; */
    padding: 0;
}

/* .pagetitle {
    height: 700px;
} */

.homeSlider.swiper-container {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
}

.homeSlider.swiper-container .swiper-slide {
    /* overflow: hidden; */
}

.homeSlider .slide-inner {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.slideContent {
    text-align: center;
    padding-top: 7rem;
}

.slideContent h2 {
    font-size: 1.875rem;
    color: var(--white);
    text-transform: uppercase;
}

.slideContent h3 {
    font-size: 3.75rem;
    color: var(--white);
    text-transform: uppercase;
    font-weight: bold;
}

.slideContent p {
    color: var(--white);
    width: 80%;
    margin: 0 auto 1.5rem;
}

.swiper-button-prev {
    width: 70px;
    height: 70px;
    background: rgb(228 0 27 / 50%);
    border-radius: 50%;
    color: var(--white);
    left: 10rem;
}

.swiper-button-prev:after {
    font-size: 1.2rem;
    font-weight: 600;
}

.swiper-button-next {
    width: 70px;
    height: 70px;
    background: var(--theme-color);
    border-radius: 50%;
    color: var(--white);
    right: 10rem;
}

.swiper-button-next:after {
    font-size: 1.2rem;
    font-weight: 600;
}

.swiper-pagination-bullet {
    width: 21px;
    height: 21px;
    border: 1px solid transparent;
    border-radius: 50%;
    position: relative;
    opacity: 1;
    background: transparent;
}

.swiper-pagination-bullet:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 13px;
    height: 13px;
    background: rgb(198 200 201 / 50%);
    opacity: 1;
    border-radius: 50%;
    margin: auto;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
    border-color: var(--theme-color);
}

.swiper-pagination-bullet.swiper-pagination-bullet-active:before {
    background: var(--theme-color);
}

.homeSlider.swiper-container .swiper-pagination {
    bottom: 2.5rem;
}


/* slider css */

.workList {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.workList li {
    width: 270px;
    padding: 1.3rem 1.2rem;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    border-radius: 6px;
}

.workList li h2 {
    font-size: 1.5625rem;
    font-weight: 500;
    margin: 15px 0 10px;
    text-transform: uppercase;
}

.workList li h6 {
    font-size: 15px;
    color: #0B184C;
    font-weight: 400;
    position: relative;
    margin: 0 0 10px;
    padding: 0 0 10px;
}

.workList li h6:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    background: var(--theme-color);
    width: 50px;
    height: 2px;
}

.workList li p {
    font-size: 14px;
    color: #5A5B5D;
    line-height: 24px;
    margin: 0;
}

.workList li figure img {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.workList li:hover {
    box-shadow: 0 10px 10px rgb(0 0 0 / 10%);
    background: #FAFAFA;
}

.workshipCard {
    background: url(../images/workshipimg.webp) no-repeat top center/ cover;
    text-align: center;
    padding: 3.5rem 1rem;
    margin: -1rem 0 0;
    position: relative;
    z-index: 1;
}

.worshipMain {
    padding: 0rem 0 2rem;
}

.workshipCard h2 {
    font-size: 2.25rem;
    color: var(--white);
    font-weight: bold;
    text-transform: uppercase;
    margin: 0 0 15px;
}

.workshipCard h3 {
    font-size: 1.25rem;
    color: var(--white);
    font-weight: 400;
    margin: 0 0 1.8rem;
}

.workshipCard h4 {
    font-size: 1.25rem;
    color: var(--white);
    font-weight: 400;
    margin: 0 3rem 2rem;
    line-height: 34px;
}

.workshipCard h5 {
    font-size: 1.125rem;
    color: var(--white);
    line-height: 32px;
    font-weight: 400;
    margin: 0 0.5rem 1.3rem;
    border-top: 1px solid #EBEBEB;
    padding: 2.2rem 1rem 0;
}

.themeBtn.donateBtn {
    font-size: 14px;
    padding: 0.58em 1.92em;
}

.visionMain {
    padding: 0;
    background: #F4F4F4;
}

p.para {
    color: #5A5B5D;
}

.visionContent {
    padding-left: 0.5rem;
}

.visionContent p.para {
    margin: 0 0 2rem;
}

.visionImg {
    margin: -12px 0;
}

.believeMain {
    padding-bottom: 0;
}

.believeCard {
    width: 100%;
}

.believeCard figure {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.believeCard figure a {
    position: absolute;
    bottom: 3rem;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    font-size: 2.25rem;
    color: var(--white);
    text-transform: uppercase;
    font-weight: bold;
    z-index: 1;
}

.believeCard figure:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: linear-gradient(274deg, rgb(0 0 0 / 0%), #000000);
    opacity: 50%;
    z-index: 1;
}

.believeCard figure::after {
    position: absolute;
    top: 0;
    left: -75%;
    z-index: 2;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
    -webkit-transform: skewX(-25deg);
    transform: skewX(-25deg);
}

.believeCard:hover figure::after {
    -webkit-animation: shine 1s;
    animation: shine 1s;
}

@-webkit-keyframes shine {
    100% {
        left: 125%;
    }
}

@keyframes shine {
    100% {
        left: 125%;
    }
}

.believeCard figure img {
    height: 100%;
    object-fit: cover;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.believeCard:hover figure img {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
}

.stepMain {
    background: url(../images/stepbg.webp) no-repeat top center/ cover;
    padding-bottom: 5rem;
}

.title {
    text-align: center;
    margin-bottom: 7rem;
}

.title .sectionHeading {
    margin: 0 0 0.6rem;
}

.title p {
    font-size: 1.5625rem;
    color: #5A5B5D;
    font-weight: 500;
    margin: 0;
}

.stepMain .row {
    margin: 0;
}

.stepCard {
    text-align: center;
}

.stepCard h2 {
    font-size: 1.875rem;
    text-transform: uppercase;
    font-weight: bold;
}

.stepCard p {
    font-size: 1rem;
    line-height: 28px;
}

.stepCard a {
    font-size: 1rem;
    color: var(--theme-color);
    font-weight: 500;
    text-decoration: underline !important;
}

.stepImg {
    display: flex;
    align-items: center;
    justify-content: center;
}

.stepImg figure {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 5rem;
}

.stepImg figure:nth-child(2) {
    margin: 0 -13rem;
    position: relative;
    z-index: 1;
}

.stepImg figure:nth-child(2) img {
    border: 5px solid var(--white);
}

.stepImg figure img {
    border: 2px solid var(--white);
    border-radius: 50%;
}

.stepImg figure:nth-child(3) {
    justify-content: flex-end;
    position: relative;
    top: 6rem;
}

.stepCard.bottomLeft {
    margin: 16rem 0 0 0;
}

/* .stepImg figure:nth-child(1) img+img {
    position: relative;
    left: -5rem;
}

.stepImg figure:nth-child(1) img {
    position: relative;
    top: -2rem;
    left: -2rem;
} */

.stepCard.bottomRight {
    margin-top: 18rem;
    position: relative;
    left: 0;
}

.stepImg figure:nth-child(3) img {
    position: relative;
    left: 5.5rem;
    top: 1rem;
}

.stepImg figure:nth-child(3) img+img {
    left: -6rem;
    border: 5px solid var(--white);
    top: 1rem;
}

.stepCard.topRight {
    margin: 0;
}

.stepCard.bottomRight h2 {
    padding: 0 30px;
}

.shallMain {
    background: url(../images/shallbg.webp) no-repeat top center/ cover;
    text-align: center;
    padding: 7rem 0;
}

.shallMain h2 {
    font-size: 2.25rem;
    color: var(--white);
    font-style: italic;
    font-weight: 400;
    line-height: 55px;
}

.shallMain h3 {
    font-size: 1.5625rem;
    color: var(--white);
    margin: 30px 0 0;
}

.churchBox {
    position: relative;
    overflow: hidden;
}

.churchBox .churchContent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgb(228 0 27 / 80%);
    text-align: center;
    margin: 0 1rem;
    padding: 1.7rem 1rem;
    transform: translateY(179px);
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.churchBox--show .churchContent {
    position: relative;
    transform: translate(0);
}

.churchBox .churchContent h2 {
    color: var(--white);
    font-weight: bold;
    margin: 0;
    padding: 0 0 10px;
}

.churchBox .churchContent p {
    color: var(--white);
    margin: 10px 0 0;
}

.churchBox:hover .churchContent {
    transform: translateY(0px);
    padding: 2.5rem 1rem;
}

.churchBox .churchContent.cumunion {
    background: rgb(11 24 76 / 80%);
}


/* gallery css start */

.galleryMain {
    background: #F4F4F4;
}

.gallery {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: space-between;
    margin: 1rem;
}

.gallery.gallery1 {
    align-items: flex-end;
    margin-left: -6.4rem;
}

.gallery.gallery2 {
    align-items: flex-start;
    margin-left: -4.5rem;
    margin-right: 0;
    margin-top: 1.5rem;
}

.gallery a img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.gallery a {
    width: 100%;
    /* flex-shrink: 0; */
    display: block;
}

.gallery.gallery3 {
    flex-direction: column;
    justify-content: center;
}

.gallery.gallery4 {
    align-items: flex-end;
}

.gallery.gallery5 {
    align-items: flex-start;
    margin-top: 1.5rem;
}

.gallery.gallery5 a {
    flex-shrink: 0;
}

.gallery.gallery5 .d-flex {
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    gap: 1.5rem;
    margin-right: -5.5rem;
}

.gallery div {
    width: 100%;
    position: relative;
    z-index: 1;
}

.gallery .overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    opacity: 0;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    z-index: 0;
}

.gallery .overlay a {
    width: fit-content;
    font-size: 1.5rem;
    color: var(--white);
}

.gallery .overlay:hover {
    opacity: 1;
}


/* .gallery div:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgb(0 0 0 / 20%);
    opacity: 0;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    z-index: -1;
}

.gallery div:hover:before {
    opacity: 1;
} */

.galleryMain .sectionHeading {
    margin: 0 0 0rem;
}


/* gallery css end */

.requestMain {
    background: url(../images/requestbg.webp) no-repeat top center/ cover;
    padding: 5rem 0;
}

h2.sectionHeading.white {
    color: var(--white);
}

.requestForm label {
    display: block;
    font-size: 1.125rem;
    color: var(--white);
    font-weight: 500;
}

.requestForm :is(input, textarea) {
    width: 100%;
    padding: 1rem;
    border-radius: 0.5rem;
    border: none;
    margin-bottom: 1rem;
    outline: none;
    font-size: 1.125rem;
}

.checkBox {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 1rem;
}

.checkBox input {
    width: 20px;
    height: 20px;
    margin: 0;
    padding: 0;
}

.checkBox label {
    font-size: 1.125rem;
    margin: 0;
}

.requestForm .themeBtn {
    width: 100%;
    border: 0;
    background: #0A5B96;
}

.requestMain .sectionHeading {
    margin: 0 0 1.5rem;
    font-size: 3.25rem;
}


/* footer css start */

footer {
    background: #00092D;
}

.footerSocial {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0 0;
}

.footerSocial li a {
    width: 49px;
    height: 49px;
    background: #334C8C;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.4rem;
}

.footerSocial li:nth-child(2) a {
    background: #0B69C7;
}

.footerSocial li:nth-child(3) a {
    background: #F20000;
}

.footerSocial li:nth-child(4) a {
    background: #f09433;
    background: -moz-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    background: -webkit-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#f09433', endColorstr='#bc1888', GradientType=1);
}

.quickList ul li a {
    font-size: 1.125rem;
    color: var(--white);
    font-weight: 400;
    font-family: "Roboto", sans-serif;
}

.quickList ul li+li {
    margin: 16px 0 0;
}

.calFoter ul li {
    display: flex;
    align-items: center;
    gap: 18px;
}

.calFoter ul li figure {
    flex-shrink: 0;
    width: 37px;
    text-align: center;
}

.calFoter ul li a strong {
    font-size: 1.375rem;
    color: var(--white);
}

.calFoter ul li a {
    font-size: 1rem;
    color: var(--white);
    font-weight: 400;
}

.calFoter ul li+li {
    margin: 2rem 0 0;
}

.calFoter ul li span {
    font-size: 1rem;
    color: var(--white);
    line-height: 25px;
    width: 210px;
}

.foterFlex {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.copyRight {
    padding: 1.5rem 0;
}

.copyRight p {
    font-size: 1.125rem;
    color: var(--white);
    margin: 0;
    text-align: center;
}

.quickList ul li a:hover,
.calFoter ul li:hover a,
.calFoter ul li:hover strong {
    color: var(--theme-color);
}

.requestForm .themeBtn:hover {
    background: var(--theme-color);
    padding: 1rem;
}


/* footer css end */

.themeBtn:hover {
    background: var(--primary-color);
    color: var(--white);
}

.themeBtn.donateBtn:hover {
    background: var(--white);
    color: var(--theme-color);
}

/* Innerpages */

/* About Us Page */
/* Shall Main */
.shallMain--about {
    background: url(../images/shallbg1.webp) no-repeat center/cover;
}

.shallMain--about1 {
    background: url(../images/shallbg2.webp) no-repeat center/cover;
}

.shallMain--about h2 {
    font-size: 1.75rem;
    color: #5A5B5D;
}

.shallMain--about h3 {
    color: #0B184C;
}

/* Vision Mission */
.visionMain--about {
    background: transparent;
    padding: 6rem 0;
}

.visionMain--about .visionImg {
    margin: 0;
}

/* What We Believe */
.about--bg {
    background: #F4F4F4;
    padding: 0;
}

.about .row+.row {
    margin-top: 3rem;
}

.about__img {
    height: 500px;
}

.about--bg .about__img {
    margin: -12px 0;
}

.about__img.rounded {
    height: auto;
}

.about__img img {
    object-fit: cover;
}

/* Next Step */
.about--next .row:nth-child(even) .about__content {
    padding-left: 0.75rem;
}

.about--next .row:nth-child(odd) .about__content {
    padding-right: 0.75rem;
}

/* Contact Us */
.contact__info ul li :is(a, address) {
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--black);
    font-size: 1.5rem;
    font-weight: 500;
    transition: all 300ms ease-in-out;
    cursor: pointer;
    line-height: 1.25;
}

.contact__info ul li a {
    margin-bottom: 3rem;
}

.contact__info ul li :is(a, address) img {
    width: 40px;
}

.contact__info ul li :is(a, address):hover {
    color: var(--theme-color);
}

.contact__form {
    border: 1px solid #707070;
    border-radius: 1rem;
    padding: 3rem 1.5rem;
}

.inputField {
    margin-bottom: 1rem;
}

.inputField label {
    font-size: 1rem;
    font-weight: 500;
    text-transform: capitalize;
    margin-bottom: 0.25rem;
}

.inputField :is(input, textarea, select) {
    width: 100%;
    padding: 0.75rem 0.75rem;
    border-radius: 0.5rem;
    border: 1px solid #BEBEBE;
    outline: none;
    resize: none;
}

.inputField :is(input, textarea, select):focus {
    border-color: var(--theme-color);
}

/* Donate */
.donate-card {
    background: var(--primary-color);
    padding: 4rem 0;
    border-radius: 1rem;
}

.donate-card__list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    color: var(--white);
    margin: 1rem 0;
}

.donate-card__list input {
    accent-color: var(--theme-color);
    transform: scale(1.25);
    margin-right: 0.25rem;
}

.donate .donateBtn {
    color: var(--white);
    background: transparent;
    border: 1px solid var(--white);
    border-radius: 0.5rem;
    padding: 0.75rem;
}

/* Payment */
.payment .payment__form .col-md-4:nth-child(-n+5) {
    margin: 2rem 0;
}

.payment__check {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
}

.payment__check label img {
    width: 100px;
    display: block;
    background: #F4F3F9;
    border: 1px solid #D8D7DC;
    border-radius: 0.5rem;
    padding: 0.75rem;
    margin: 0.5rem auto 0;
    transition: all 300ms ease-in-out;
}

.payment__check label {
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    margin: 0;
}

.payment__check label input {
    transform: scale(1.1);
    accent-color: var(--theme-color);
    margin-right: 0.25rem;
}

.payment__check label input:checked+img {
    background-color: #F8F4F8;
    border-color: var(--theme-color);
}