:root {
    --bs-blue: #0d6efd;
    --bs-indigo: #6610f2;
    --bs-purple: #6f42c1;
    --bs-pink: #d63384;
    --bs-red: #dc3545;
    --bs-orange: #fd7e14;
    --bs-yellow: #FDC200;
    --bs-green: #198754;
    --bs-teal: #20c997;
    --bs-cyan: #0dcaf0;
    --bs-white: #fff;
    --bs-gray: #6c757d;
    --bs-gray-dark: #343a40;
    --bs-primary: #0d6efd;
    --bs-secondary: #6c757d;
    --bs-success: #198754;
    --bs-info: #0dcaf0;
    --bs-warning: #ffc107;
    --bs-danger: #dc3545;
    --bs-light: #f8f9fa;
    --bs-dark: #212529;
    --bs-font-sans-serif: "Plus Jakarta Sans", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
}

.bg-yellow {
    background-color: #FDDD00;
}

.bg-green {
    background-color: #2EBBBA;
}

.bg-light-yellow {
    background-color: #FFE133;
}

.bg-orange {
    background-color: #F37021;
}

.bg-blue {
    background-color: #64A8CB;
}

.bg-purple {
    background-color: #D655E2;
}

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

body {
    min-height: 100vh;
    font-family: var(--bs-font-sans-serif);
}

/* Page transition effect */
body {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    /* Combined ease-in and ease-out */
}

body.fade-in {
    opacity: 1;
}

body.fade-out {
    opacity: 0;
}

p {
    margin: 0;
}

a {
    text-decoration: none;
    color: black;
}

a:hover {
    text-decoration: none;
    color: black;
}

.hidden {
    display: none;
}

.form-control:focus,
.register-button:focus,
.login-button:focus,
.contact-button:focus {
    box-shadow: 0 0 0 0.2rem var(--bs-yellow);
    outline: none;
    border: var(--bs-yellow) solid 0.5px;
    transition: 0.3s;
}

.highlight,
.footer__contactus:hover {
    color: var(--bs-yellow);
}

.gray-text {
    color: var(--bs-gray);
}

.required {
    color: var(--bs-danger);
}

.gray-bg {
    background-color: #F8F8F8;
}

.font-weight-800 {
    font-weight: 800;
}

.inter-font {
    font-family: 'Inter', sans-serif;
}

.abeezee-regular {
    font-family: "ABeeZee", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.abeezee-regular-italic {
    font-family: "ABeeZee", sans-serif;
    font-weight: 400;
    font-style: italic;
}


/* nav bar */
.navbar-section.homepage .nav-link,
.navbar-section.homepage .menu-title {
    color: white;
}

.navbar-section .nav-link,
.navbar-section .menu-title {
    color: black;
}

.navbar-section {
    position: absolute;
    top: 0;
    width: 100%;
    background: transparent;
    z-index: 10;
}

.nav-center {
    display: flex;
}

.dropdown-item:hover {
    background-color: var(--bs-yellow);
    color: white;
    text-decoration: none;
}

.yellow-text,
.nav-link:hover,
.navbar-section.homepage .nav-link.active,
.navbar-section .nav-link.active,
.footer__contactus:hover,
.navbar-section.homepage .nav-link:hover,
.navbar-section.homepage .menu-title:hover {
    color: var(--bs-yellow);
}

.dropdown-item,
.nav-link {
    text-transform: uppercase;
}

.user-icon {
    height: 20px;
}

.menu-title {
    cursor: pointer;
}

.nav-logo {
    height: 50px;
}

.nav-user {
    position: relative;
    border-left: 1px solid white;
}

.navbar-section {
    width: 100%;
    background: transparent;
    z-index: 10;
    top: 0;
}

/* footer */
.footers-section {
    background-color: var(--bs-dark);
}

.footer-right {
    margin-top: 30px;
}

.footer__socialmediaicon a {
    margin-right: 15px;
}

.footer-right a svg {
    height: 20px;
}

.footer__contactus {
    color: white;
    text-decoration: none;
}

/* home page - hero section */
.hero-section {
    position: relative;
}

.hero-section__bgimg {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

.home-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 99.5%;
    background-color: rgba(0, 0, 0, 0.5);
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    z-index: 2;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin: 10px 0;
}

.hero-title,
.hero-subtitle {
    font-weight: 800;
}


/* home page - home description */
.description-section {
    padding-top: 20px;
    margin-top: -50px;
}

.home__description-buttons,
.contact-buttons {
    display: grid;
    justify-content: center;
}

.cta-button,
.explore-more-button {
    width: fit-content;
    display: inline-block;
    padding: 12px 20px;
    font-family: 'Inter', sans-serif;
    background-color: var(--bs-yellow);
    color: black;
    font-weight: bold;
    font-size: small;
    border-radius: 25px;
    text-decoration: none;
}

.cta-button {
    border: var(--bs-yellow) solid 1px;
}

.cta-button:hover {
    border: var(--bs-yellow) solid 1px;
    background-color: transparent;
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.register-now-button:hover,
.update-profile-button:hover,
.change-password-button:hover,
.schedule-location-buttons a:hover {
    color: black;
}

.register-now-button {
    margin-top: 10px;
}

.explore-more-button {
    border: var(--bs-yellow) solid 0.5px;
    background-color: transparent;
}

.explore-more-button:hover {
    border: var(--bs-yellow) solid 0.5px;
    background-color: var(--bs-yellow);
    transition: 0.3s;
    color: white;
}

.explore-more-button,
.register-now-button {
    padding: 12px 50px;
}

/* home page - our impact */
h2.home__impact-title {
    margin: 0px 0px 10px;
}

.home__impact-card {
    width: 90%;
    height: 180px;
    padding: 10px 20px 10px 20px;
    border: 1px solid #CECECE;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    margin-top: 20px;
    justify-content: center;
}

.impact-icon {
    width: 90px;
    margin: 10px 0px;
}

.home__impact-card {
    margin: auto;
    margin-top: 20px;
}

/* our partners */
.partners-section {
    text-align: center;
}

.partners-section h2 {
    margin-bottom: 30px;
}

.partner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 15px 0;
}

.partner img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.partner .circle {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.partner .circle img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.partner-slider {
    height: 150px;
    margin: auto;
    position: relative;
    width: 100%;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.partner-slide-track {
    display: flex;
    width: calc(45px*8);
    animation: scroll-left 30s linear infinite
}

.circle-none-bg img {
    width: 100% !important;
    height: 100% !important;
}

.partner h3 {
    font-size: 1rem;
    font-weight: bold;
    margin-top: 10px;
}

.description-section {
    padding-top: 100px;
}

.event-sponsor {
    margin: 20px 0 60px 0;
    display: grid;
    justify-content: center;
    z-index: 3;
}

.sponsor-card {
    position: relative;
    width: 300px;
    height: 425px;
    border-radius: 50px;
    overflow: hidden;
}

.sponsor-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    pointer-events: none;
    vertical-align: top;
}

.sponsor-card__content {
    width: 100%;
    z-index: 3;
    text-align: center;
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
}

.sponsor-card__content__title {
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.sponsor-card__content__description {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

.carousel-item {
    min-height: 425px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.carousel-control-prev,
.carousel-control-next {
    position: absolute;
    top: 35%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: #c7c7c7;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    opacity: 1;
    z-index: 1;
}

.carousel-control-prev {
    left: calc(50% - 170px);
}

.carousel-control-next {
    right: calc(50% - 170px);
}


.carousel-control-prev:hover,
.carousel-control-next:hover {
    background-color: var(--bs-yellow);
}

/* activity */
.activity-section,
.impact-section {
    padding: 50px 0;
}

.card-title {
    text-align: start;
    padding: 10px 0 0 0;
}

.card-text {
    margin: 0px;
}

.activity-card-img-top {
    aspect-ratio: 1/1;
    width: 250px;
    object-fit: fill;
}

.activity-slider-wrapper {
    overflow: hidden;
    width: 100%;
    margin: auto;
}

.activity-slider {
    width: 100%;
    position: relative;
    height: auto;
}

.activity-slider::before,
.activity-slider::after {
    content: '';
    position: absolute;
    width: 15%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
    z-index: 2;
}

.activity-slider::before {
    left: 0;
    top: 0;
}

.activity-slider::after {
    right: 0;
    top: 0;
    transform: rotateZ(180deg);
}

.activity-slide-track {
    display: flex;
    gap: 3rem;
    animation: scroll 30s linear infinite;
}

.activity-slide-track>div {
    flex: 0 0 auto;
    width: 70%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 1rem;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-420px*4));
    }
}


/* registration */
.register-button,
.login-button {
    padding: 11px;
    width: 100%;
    background-color: var(--bs-yellow);
    border: var(--bs-yellow) solid 1px;
    border-radius: 20px;
    color: white;
    font-weight: bold;
}

.register-button:hover,
.login-button:hover {
    background-color: transparent;
}

.login-link,
.register-link,
.main-title-color {
    text-decoration: none;
    color: var(--bs-yellow);
}

.register-img,
.login-img {
    aspect-ratio: 9/12;
    object-fit: cover;
    border-radius: 25px;
    margin: 0px 0px;
    text-align: center;
}

.register-title {
    font-size: 2.6em;
}

/* login */
.login-title {
    padding: 5px 0px;
}

.login-form-control {
    border: none;
    border-bottom: var(--bs-yellow) solid 2px;
}

.login-label {
    font-weight: bold;
    color: #8F8F8F;
}

.login-button {
    color: black;
}

.login-button:disabled,
.register-button:disabled,
.join-button:disabled {
    background-color: transparent;
    color: #8F8F8F;
}

/* about us */
.about-hero-section {
    position: relative;
    height: 50vh;
    overflow: hidden;
}

.about-section__bgimg {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.about-overlay-text {
    width: 100%;
    padding: 0 10px;
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -30%);
    text-align: center;
    color: white;
    z-index: 1;
}

.about-description {
    padding: 0px;
    text-align: start;
}

.about-image {
    border-radius: 20px;
    object-fit: cover;
}

.background-container {
    position: relative;
    display: inline-block;
}

.about-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    pointer-events: none;
    z-index: 1;
}

/* our circle - slider */
.circle-slider {
    height: 150px;
    margin: auto;
    position: relative;
    width: 90%;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.circle-slide-track {
    display: flex;
    animation: scroll-left 40s linear infinite
}

.right-slide-track {
    animation: scroll-right 40s linear infinite
}

.sponsor-slide-track {
    animation: sponsor-scroll-left 30s linear infinite
}

@keyframes sponsor-scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-250px*6));
    }
}

@keyframes scroll-right {
    0% {
        transform: translateX(calc(-250px*6));
    }

    100% {
        transform: translateX(0);
    }
}

.cirlce-slide-track:hover {
    animation-play-state: paused;
}

.circle-slide {
    display: flex;
    align-items: center;
    perspective: 100px;
}

.circle-slide img {
    max-width: 120px;
    max-height: 120px;
    object-fit: contain;
    margin: 0px 20px;
    transition: transform 1s;
}

.slider::before,
.slider::after {
    content: '';
    position: absolute;
    width: 15%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
    z-index: 2;
}

.slider::before {
    left: 0;
    top: 0;
}

.slider::after {
    right: 0;
    top: 0;
    transform: rotateZ(180deg);
}

.circle-slide img:hover {
    transform: translateZ(20px);
}

/* our circle */
.logo-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    padding: 1rem;
    max-width: 1200px;
}

.logo-item {
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid #dddddd;
    width: 120px;
    height: 120px;
    transition: transform 0.2s;
    margin: 0px 30px;
}

.logo-item:hover {
    transform: scale(1.05);
}

.logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: fill;
    border-radius: 10px;
}

/* contact us */
.contact-img {
    object-fit: cover;
    border-radius: 25px;
    text-align: center;
}

.contact-title {
    font-size: 1.6rem;
}

.contact-subtitle {
    font-size: 1.2rem;
}

.contact-description {
    font-size: 0.9rem;
    color: #8F8F8F;
}

.contact-button {
    color: white;
    width: 175px;
    margin: 5px 0;
}

.contact-button:hover,
.contact-button:focus {
    color: black;
}

.contact-map-area {
    padding: 80px 0;
    background: #7878780D;
}

.contact-map-area-fluid iframe {
    width: 100%;
    height: 45vh;
    border-radius: 24px;
}

.booth-info-desc p {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.shell-booth-img {
    aspect-ratio: 4/3;
    object-fit: cover;
}

/* user profile */
.sponsor-slider {
    height: 80px;
}

.profile-section__bgimg {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.campaign-section {
    background-color: white;
    width: 100%;
    margin-top: 80px;

}

.campaign-description{
    text-align: center;
}

.campaign-description small{
    text-align: start !important;
}

.user-info h5 {
    max-width: 250px;
    word-wrap: break-word;
    white-space: normal;
    overflow-wrap: anywhere;
}

.profile-available-spending {
    background-color: #d6d6d4;
    padding: 10px;
    border-radius: 20px;
}

.enlarge-qr-title {
    font-weight: bold;
    background-color: var(--bs-yellow);
    padding: 5px;
    border-radius: 20px;
}

.sponsor-logos-slider {
    height: 60px;
}

.user-details-section {
    margin: 100px 0 100px 0;
    text-align: center;
    overflow-x: hidden;
}

.navigation-icon {
    height: 30px;
}

.navigation-title {
    font-size: 0.8rem;
}

.navigation-icons {
    margin-top: 25px;
}

.campaign-logo {
    width: 250px;
    height: auto;
    object-fit: cover;
    border-radius: 20px;
}

/* chart */
.category-label {
    position: absolute;
    padding: 10px;
    border-radius: 8px;
    color: #fff;
    font-weight: bold;
    text-align: center;
}

.category-label i {
    display: block;
    font-size: 24px;
}

/* transaction history */
.transaction-history__card-title {
    color: #565656;
}

.transaction-history {
    border-radius: 15px;
}

.transaction-history__card p {
    font-size: 0.9rem;
    padding: 2px;
}

.transaction-subtitle {
    color: #A2A0A0;
}

.transaction-history__card {
    margin: 10px 0px;
    border-bottom: #A2A0A0 1px solid;
    padding-bottom: 6px;
}


.transaction-section {
    padding: 0 0;
}

.transaction-chart {
    margin-bottom: 80px;
}

/* event schedule */
.carousel-indicators li {
    background-color: #FFECAC;
}

.carousel-indicators .active {
    background-color: var(--bs-yellow);
}

.card-img-top {
    width: 100%;
    height: 230px;
    object-fit: fill;
}

.event-card {
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    height: 90%;
}

.card-body {
    flex-grow: 1;
}

.card-img-top {
    height: 200px;
    object-fit: cover;
}

.schedule-card-link {
    text-decoration: underline;
    font-style: italic;
}

.schedule-card-link:hover,
.schedule-card-link:active {
    color: var(--bs-yellow);
}

/* edit profile */
.update-profile-button,
.change-password-button {
    padding: 12px 70px;
}

.edit-profile-section {
    margin-top: 70px;
    margin-bottom: 50px;
}

/* event schedule */
.event-location-map iframe {
    width: 100%;
    height: 45vh;
    border-radius: 14px;
}

.event-details-content div {
    margin-top: 30px;
}

.event-details-thumbnail {
    width: 100%;
    max-width: 450px;
    object-fit: cover;
    aspect-ratio: 1/1;
    border-radius: 20px;
}

.schedule-card {
    width: 100%;
    border-radius: 8px;
    margin: 15px 0;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    transition: 0.5s ease-in-out;
}

.schedule-card:hover {
    scale: 1.05;
}

.schedule-card-time {
    background-color: var(--bs-yellow);
    min-width: 82px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    padding: 8px 48px;
    font-weight: bold;
    text-align: center;
    border-radius: 8px 8px 0 0;
    padding: 15px;
}

.schedule-card-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 24px;
}

.date-selector {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.schedule-card {
    opacity: 0;
    transform: translateX(100px);
    animation: slideIn 0.8s ease forwards;
    margin: 10px 0px;
}

.schedule-card:nth-child(n) {
    animation-delay: calc(0.1s * var(--i));
}

.schedule-card-description {
    color: var(--bs-gray);
}

.schedule-location-buttons {
    display: grid;
    gap: 20px;
    justify-content: center;
}

.schedule-location-buttons a {
    width: 100%;
    text-align: center;
}

@keyframes slideIn {
    0% {
        opacity: 0;
        transform: translateX(100px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.schedule-register-button {
    display: flex;
    justify-content: center;
}

.total-spending-chart {
    width: 50%;
}

/* forgot password */
.reset-password-link {
    color: black;
}

.reset-password-link:hover {
    color: var(--bs-yellow);
}

.forgot-password-section {
    margin: 150px 0;
}


/* responsive */
@media (min-width: 768px) {

    /* footer */
    .footer {
        display: flex;
        justify-content: space-between;
    }

    .footer-right {
        margin-top: 0px;
    }

    /* home page */
    .hero-subtitle {
        font-size: 2.1rem;
        margin: 10px 0;
    }

    .hero-title {
        font-size: 1.2rem;
    }

    .contact-buttons {
        display: flex;
        justify-content: start;
        gap: 20px;
    }

    .home__description-title,
    .home__description-subtitle {
        width: 100%;
    }

    .register-now-button {
        margin-top: 5px;
    }

    .partner-slide-track {
        width: calc(150px*4);
    }

    .activity-slide-track>div {
        width: 30%;
    }

    @keyframes scroll {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(calc(-419px*3));
        }
    }

    .event-sponsor {
        justify-content: center;
        margin-top: -170px;
        width: 200px;
    }

    /* about us */
    .about-image-div {
        display: flex;
        justify-content: center;
    }

    .about-image {
        width: 70%;
        margin: 0 auto;
        display: block;
        max-width: 100%;
    }

    /* contact us */
    .contact-img {
        width: 90%;
        height: 400px;
    }

    .contact-title {
        font-size: 2.0rem;
    }

    .contact-subtitle {
        font-size: 1.7rem;
    }

    .contact-buttons {
        display: flex;
        justify-content: center;
        gap: 20px;
    }

    /* user profile */
    .profile-section__bgimg {
        max-width: 1200px;
        max-height: 700px;
    }

    .campaign-section {
        width: 80%;
        max-width: 990px;
    }

    .user-details-section {
        text-align: start;
    }

    .navigation-title {
        font-size: 0.8rem;
    }

    .navigation-icon {
        height: 40px;
        margin: 0 20px;
    }

    .navigation-icons {
        margin-top: 0px;
    }

    .transaction-chart {
        margin-bottom: 0px;
    }

    /* event schedule */

    .event-details-content {
        margin-left: 50px;
    }

    .event-details-content div {
        margin-top: 20px;
    }

    .schedule-card {
        display: flex;
        max-width: 900px;
    }

    .schedule-card-time {
        width: 200px;
        border-radius: 8px 0 0 8px;
    }

    .schedule-card-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 24px;
    }

    .event-details-thumbnail {
        width: 50%;
    }

    .schedule-location-buttons {
        display: flex;
        gap: 20px;
        justify-content: center;
    }

    .schedule-location-buttons a {
        width: 200px;
        text-align: center;
    }

    .schedule-register-button {
        justify-content: start;
    }

    /* forgot password */
    .forgot-password-title {
        font-size: 3.5rem;
    }

}


@media (min-width: 1024px) {

    /* nav bar */
    .nav-user {
        border-left: none;
    }

    /* home page */
    .hero-subtitle {
        font-size: 2.5rem;
        margin: 10px 0;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .home__description-buttons {
        display: flex;
        justify-content: start;
        gap: 20px;
    }

    .register-now-button {
        margin-top: 15px;
    }

    .partner {
        padding: 0 5px;

    }

    .partner-slide-track {
        width: calc(250px*5);
    }

    .home__impact-content {
        display: flex;
        justify-content: space-between;
        gap: 20px;
    }

    .home__impact-subtitle {
        height: 48px;
    }

    .register-img {
        margin-top: 50px;
    }

    /* about us */
    .about-description {
        text-align: start;
    }

    .about-image-div {
        justify-content: start;
    }

    .about-image {
        position: absolute;
        margin-top: -120px;
        z-index: 1;
        transform: translateX(5%);
        aspect-ratio: 9/11;
    }

    .about-sec-desc {
        margin: 60px 0 16px 0;
    }

    .navigation-icon {
        height: 40px;
        margin: 0 40px;
    }

    /* forgot password */
    .forgot-password-form {
        width: 50%;
        margin: auto;
    }

    /* user profile */
    .campaign-section {
        position: absolute;
        margin-top: -120px;
    }

    .user-details-section {
        margin: 100px 0 100px 0;
    }

    .mt-250{
        margin-top: 250px;
    }

    .campaign-description{
        text-align: start;
    }


}

@media(min-width: 1440px) {
    .register-img {
        margin-top: 0px;
    }


}