:root {
    --p-color: #84c226;
    --s-color: #6f208c;
    --m-color: darkblue;
    --t-color: #84c226af;
    --h-height: 80px;
}

a,
button {
    outline: none !important;
    text-decoration: none !important;
}

.involve-b {
    padding: 0px;
    background: var(--p-color);
    width: 180px;
    margin: 0px;
    margin-top: 0px !important;
    border: 1px solid #84c226;
    border-radius: 35px;
    transition: 0.2s ease-in-out;
}

.involve-b .nav-link {
    text-align: center;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #000 !important;
}

/* Initial transparent navbar */
.navbar {
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    height: var(--h-height);
}

.toggle-menu {
    cursor: pointer;
    text-align: center;
    position: relative;
    margin-top: 10px;
    z-index: 1100;
}

.toggle-menu div {
    width: 20px;
    height: 1px;
    background: #fff;
    margin-bottom: 5px;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2 ease-in-out;
}

.toggle-menu div:nth-child(1) {
    margin-top: 5px;
}

.toggle-menu div:nth-child(2) {
    width: 70%;
    margin-left: auto;
}

.switch div:nth-child(2) {
    display: none !important;
}

.switch div:first-child {
    -webkit-transform: rotate(45deg) !important;
    -ms-transform: rotate(45deg) !important;
    transform: rotate(45deg) !important;
    position: relative;
    bottom: -3px;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.switch div:nth-child(3) {
    bottom: 3px;
    position: relative;
}

.switch div {
    -webkit-transform: rotate(135deg) !important;
    -ms-transform: rotate(135deg) !important;
    transform: rotate(135deg) !important;
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
}

.offcanvas.offcanvas-end {
    top: var(--h-height);
    height: calc(100% - 70px);
    width: 100%;
    background: #151b30;
    color: #fff !important;
    text-align: center;
    display: block;
    transition: all 0.4s ease-in-out;
}

.offcanvas-body li a {
    padding: 20px 0px;
}

header {
    width: 100%;
    box-shadow: 5px 10px 30px rgba(0, 0, 0, 0.02);
    left: 0;
    top: 0px;
    z-index: 100;
    background: transparent;
    padding: 20px 0px;
    transition: all .4s ease-in-out;
    align-items: center;
    position: absolute;
}

header.sticky {
    top: 0px;
    padding: 0px 0px;
    background: #fff;
    box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.2);
    position: fixed;
}

header.sticky .logo2 {
    opacity: 1;
}

header.sticky .logo1 {
    opacity: 0;
}

header.sticky nav ul li a {
    color: var(--s-color);
}

header nav ul li a:hover {
    color: #c6d029 !important;
}

header.sticky nav ul li a:hover {
    color: #c6d029 !important;
}

.offcanvas .dropdown .submenu {
    display: none;
    list-style: none;
    transition: all 0.3s ease;
    padding: 0px 0px 30px 0px;
}

.offcanvas .submenu a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: inherit;
    padding-bottom: 2px;
}

.offcanvas .dropdown.show .submenu {
    display: block;
}

.offcanvas .dropdown-toggle {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.offcanvas .dropdown .submenu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding-bottom: 0.4rem;
    margin: 0px;
}

.offcanvas .dropdown.show .dropdown-toggle::after {
    transform: rotate(-180deg);
}

@media (max-width: 992px) {
    header {
        top: 0px;
        background: #151b30 !important;
        padding: 0px 0px;
    }

    header.sticky {
        padding: 0px 0px;
    }

}

.logo1 {
    position: absolute;
    height: var(--h-height);
    inset: 0;
    opacity: 1;
    transition: all .4s ease-in-out;
    align-self: center;
}

.logo2 {
    position: absolute;
    height: var(--h-height);
    left: 0;
    top: 0;
    opacity: 0;
    transition: all .4s ease-in-out;
}

.section-one {
    width: 100%;
    height: min(100vh, 100vw);
    overflow: hidden;
    position: relative;
}

.section-one .inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background-image: linear-gradient(to right,
            rgba(0, 0, 0, 0.96) 35%,
            rgba(0, 0, 0, 0));
}

.section-one .background {
    position: absolute;
    width: 65%;
    height: 100%;
    top: 0;
    right: 0;
    background-image: url("../img/galaxy4peace-home.jpg");
    background-position: center top;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
    transform: scale(1.3);
    animation: big 4.6s ease;
    animation-delay: 3s;
    transform-origin: 50% 50%;
    animation-fill-mode: forwards;
}

@media (max-width: 768px) {
    .section-one .background {
        width: 100%;
        height: 530px;
    }

    .section-one .inner {
        background-image: linear-gradient(to right,
                rgba(0, 0, 0, 0.8) 40%,
                rgba(0, 0, 0, 0));
        background: rgba(0, 0, 0, 0.6);
    }
}

@keyframes big {
    0% {
        transform: scale(1.3);
    }

    100% {
        transform: scale(1);
    }
}

.section-one .foreground {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.7);
}

.section-one .text h1 {
    font-size: 50px;
    line-height: 60px;
    padding: 80px 0px 0px;
    color: #fff;
    text-transform: uppercase;
    color: #fff;
    font-weight: 900;
}

.section-one h1 span {
    color: var(--p-color);
}

.section-one .text {
    top: 150px;
    left: 10%;
    position: absolute;
    width: 500px;
    z-index: 3;
}

.section-one .text p {
    font-size: 16px;
    font-weight: 300;
    color: #fff;
    padding-top: 20px;
    padding-bottom: 10px;
    margin: 15px 0px;
    position: relative;
}

.section-one .text p::after {
    height: 4px;
    width: 50px;
    content: "";
    position: absolute;
    top: 0px;
    left: 0;
    background: var(--p-color);
}

.p-btn {
    min-width: 200px;
    background: transparent;
    text-align: center;
    color: #ffffff;
    margin-top: 0px !important;
    border: 1px solid #fff;
    border-radius: 25px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    padding: 10px 30px;
    transition: 0.2s ease-in-out;
    outline: none !important;
}

.p-btn-1 {
    background: var(--p-color) !important;
    color: #000 !important;
    border: 1px solid var(--p-color);
}

@media (max-width: 768px) {
    .p-btn {
        background: var(--p-color) !important;
        color: #000 !important;
        border: 1px solid var(--p-color);
    }

    .bts {
        transform: translateX(0px);
        opacity: 1;
    }

    .section-one {
        height: 660px;
        background-size: cover;
    }

    .section-one::after {
        content: "";
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 2;
        position: absolute;
        height: 300px;
        background-image: linear-gradient(to top,
                rgba(0, 0, 0, 0.93) 40%,
                rgba(0, 0, 0, 0));
    }

    .section-one .text h1 {
        font-size: 35px;
        line-height: 38px;
        padding: 40px 0px 0px;
    }

    .section-one .text {
        top: 180px;
        left: auto;
        position: relative;
        width: 87%;
        z-index: 3;
    }

    .section-one button {
        margin-top: 10px !important;
        padding: 10px 0px;
        width: 150px;
    }
}

.wrap {
    width: 85%;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .wrap {
        width: 87%;
    }
}

.donation {
    padding: 10px 0px;
    background-size: cover !important;
}

.donation .wrap {
    z-index: 4;
    padding: 40px;
    top: -40px;
    position: relative;
    background: #151b30;
}

@media (max-width: 768px) {
    .donation .wrap {
        margin-top: -30px;
    }
}

.donation h4 {
    font-size: 30px;
    color: #fff;
    top: 0;
}

.donation p {
    font-weight: 300;
    font-size: 16px;
    color: #fff;
    margin: 10px 0;
}

@media (max-width: 768px) {
    .donation p {
        font-size: 13px;
        font-weight: 300;
        line-height: initial;
        text-align: left;
    }
}

.donation .amount {
    width: 32%;
    height: 50px;
    border: 1px solid #fff;
    color: #fff;
    text-align: center;
    display: inline-block;
    line-height: 50px;
    cursor: pointer;
}

.donation .amount.active {
    background: #fff;
    color: var(--s-color);
}

.donation .input {
    position: relative;
    width: 49%;
}

.donation .input input::placeholder {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    opacity: 0.8;
}

.donation .amount-sign {
    color: #fff;
    position: absolute;
    left: 10px;
    top: 12px;
}

.donation .button {
    height: 50px;
    border: 1px solid var(--p-color);
    text-align: center;
    display: inline-block;
    line-height: 50px;
    background: var(--p-color);
    width: 49%;
    text-align: center;
    color: #000 !important;
}

.donation .flex {
    display: flex;
    justify-content: space-between;
    margin: 15px 0px;
}

@media (max-width: 768px) {
    .donation .wrap {
        padding: 30px 25px;
    }

    .md-no-flex {
        display: block !important;
    }

    .input input {
        width: 100%;
    }

    .donation .input {
        width: 100%;
        margin-bottom: 10px;
    }

    .donation .button {
        width: 100%;
    }
}

.section-2 {
    width: 100%;
    padding: 50px 0px 50px 0px;
    overflow: hidden;
    position: relative;
}

.section-2 h2 {
    padding-bottom: 20px;
    position: relative;
    margin-bottom: 10px;
    padding-right: 20px;
    font-size: 25px;
    line-height: 30px;
    font-weight: 400;
}

.section-2 h2 strong {
    font-weight: 900;
}

.section-2 h2::after {
    position: absolute;
    bottom: 5px;
    left: 0;
    height: 1px;
    width: 50px;
    background: var(--p-color);
    content: "";
}

.section-2 p {
    font-size: 16px;
    font-weight: 300;
    padding-right: 20px;
    text-align: justify;
}

.section-2 a {
    margin-top: 20px !important;
}

.oval {
    max-width: 400px;
    width: 100%;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.oval-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .section-2 {
        padding-top: 0px;
    }

    .section-2 h2 {
        font-size: 24px;
        line-height: 32px;
        font-weight: 500;
    }

    .section-2 p {
        text-align: justify;
        word-spacing: 2px;
        font-size: 15px;
    }

    .oval {
        max-width: min(400px, 100%);
        margin-top: 30px;
    }
}

.section-3 {
    min-height: 700px;
    display: grid;
    grid-template-columns: 40% 60%;
    align-items: stretch;
    grid-auto-flow: column;
}

.section-3 a {
    margin-top: 20px !important;
}

.section-3 h1 {
    margin: 0px;
    padding: 0px;
    padding-bottom: 20px;
    color: #fff;
    font-size: 23px;
    line-height: 33px;
    font-weight: 300;
}

.section-3 .right {
    padding: 100px 70px;
    height: 100%;
    background: rgba(21, 27, 48, 0.9);
}

.section-3 .left {
    background-color: #000;
    background: url("../img/galaxy4peace-home-touch-lives.jpg");
    background-size: cover;
    background-position: center;
    height: 100%;
}

@media (max-width: 768px) {
    .section-3 {
        min-height: 500px;
        grid-template-columns: 1fr
    }

    .section-3 .left {
        display: none;
    }

    .section-3 .right {
        background: rgba(21, 27, 48, 0.7);
        padding: 50px 20px;
    }

    .section-3 .left a {
        font-size: 10px;
        letter-spacing: 1px;
    }

    .section-3 h1 {
        font-size: 20px;
        line-height: 23px;
    }

    .section-3 {
        background: rgba(21, 27, 48, 1);
        background-size: cover;
        background-position: center center !important;
    }
}

.section-4 .wrap h1 {
    font-size: 30px;
    line-height: 35px;
    font-weight: 700;
    padding-bottom: 10px;
    margin: 5px 0px;
}

.projects-box h4 {
    font-size: 22px;
    line-height: 25px;
    margin: 7px 0px 9px 0px;
    font-weight: 700;
    letter-spacing: 0.7px;
    z-index: 2;
}

.projects-box .icon {
    font-size: 40px;
    color: var(--p-color);
}

.projects-box .card {
    background: rgb(244, 244, 244);
    height: 100%;
}

.projects-box .card-title {
    line-height: 1.3em;
    min-height: calc(1.3em * 3);
    overflow: hidden;
}

@media (max-width: 768px) {
    .projects-box .card-title {
        line-height: 1.3em;
        min-height: calc(1.3em * 2);
    }
}

.featured {
    padding: 50px 0px;
    overflow: hidden;
}

.featured h1 {
    font-size: 14px;
    font-weight: 300;
    text-align: center;
    padding-bottom: 30px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.featured h1::after {
    height: 2px;
    width: 34px;
    background: var(--p-color);
    left: 0;
    right: 0;
    margin: auto;
    bottom: 18px;
    content: "";
    position: absolute;
}

.featured img {
    margin: 0 auto;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: var(--m-color) !important;
}

.owl-theme .owl-dots {
    opacity: 0.5;
}

.section-6 {
    width: 100%;
    height: 700px;
    background: url("../img/give-hope.jpg");
    background-position: top center;
    background-size: cover;
}

.section-6 .inner {
    height: 100%;
    width: 100%;
    overflow: hidden;
    background: rgba(21, 27, 48, 0.7);
    padding-top: 240px;
}

.section-6 h1 {
    margin: 0px;
    padding: 0px;
    padding-bottom: 20px;
    color: #fff;
    font-size: 23px;
    line-height: 33px;
    font-weight: 300;
}

.section-6 .big {
    font-size: 50px;
    font-weight: 800;
}

.section-6 .small {
    font-size: 18px;
    font-weight: 300;
    width: 80%;
}

@media (max-width: 768px) {
    .section-6 {
        background-size: cover;
        background: url("../img/give-hope.jpg");
        background-position: top center;
        height: 600px;
    }

    .section-6 .small {
        font-size: 17px;
        font-weight: 300;
        width: 100%;
    }

    .section-6 .s-text {
        width: 100% !important;
    }

    .section-6 h1 {
        font-size: 16px;
        line-height: 30px;
    }

    .section-6 .big {
        font-size: 40px;
        font-weight: 800;
    }
}

.footer {
    background: #151b30;
    color: #fff;
    padding: 80px 0px;
}

.footer h1 {
    font-size: 30px;
    line-height: 32px;
    padding-bottom: 10px;
    margin-top: 30px;
    font-weight: 700;
}

.footer input {
    border-radius: 25px;
    color: #fff;
    border: 1px solid #fff;
    outline: none !important;
    font-size: 13px;
    padding-right: 94px;
    padding-left: 20px;
}

.footer a {
    color: #fff;
}

.footer p {
    font-size: 13px;
    color: #fff;
}

.footer p.message {
    margin-top: 10px;
}

.footer p i {
    margin-right: 5px;
}

.footer .social li {
    display: inline-block;
}

.footer .social i {
    color: #333;
    height: 40px;
    width: 40px;
    text-align: center;
    margin: 5px 4px;
    background: #fff;
    display: inline-block;
    line-height: 40px;
    border-radius: 50%;
    font-size: 14px;
}

@media (max-width: 768px) {
    .footer h1 {
        margin-top: 0px;
    }

    .footer img {
        width: 160px !important;
        margin-bottom: 0px !important;
    }

    .footer .col-md-6 {
        padding-right: 15px;
    }

    .footer .col-md-3:nth-child(2) {
        border-left: 0px;
        padding: 15px;
        padding-top: 40px;
    }

    .footer .links {
        padding: 20px 0px;
        border-left: 0px;
        border-right: 0px;
    }

    .footer h1 {
        font-size: 20px;
        line-height: inherit;
    }

    .footer .input {
        margin-bottom: 40px;
    }
}

/*------START PROJECTS------*/

.project {
    width: 100%;
    min-height: 600px;
    margin-top: var(--h-height);
    display: grid;
    grid-template-columns: 20% 80%;
}

.project .tabs-section {
    background: #000d33;
    padding: 80px 30px;
    border: none;
    height: 100%;
}

.project .tabs-section button,
.project .tabs-section a {
    padding: 10px 25px;
    font-weight: 600;
    display: inline-block;
    cursor: pointer;
    margin-bottom: 10px;
    border: none;
    background: none;
    color: #ccc;
    word-break: break-word;
    text-align: right;
    width: auto;
}

.tabs-section .nav.flex-column {
    align-items: flex-end;
}

.project .tabs-section button:hover,
.project .tabs-section button:active,
.project .tabs-section .active,
.project .tabs-section button:focus {
    color: #000 !important;
    background: var(--t-color) !important;
    border-radius: 30px;
    border: none !important;
    outline: none;
}

.project .contents .tab-content,
.project .contents .tab-content .tab-pane {
    height: 100%;
}

.project .contents .inner {
    display: grid;
    grid-template-columns: 37% 63%;
    align-items: stretch;
    height: 100%;

}

.project .contents .image {
    background-position: center center;
    background-size: cover;
}

.project .contents .content {
    padding: 30px 70px;
}

.project .contents .content h3 {
    font-size: 30px;
    font-weight: 800;
    margin: 70px 0 20px;
    line-height: 40px;
}

.project .contents .content p {
    font-size: 14px;
    text-align: justify;
    margin-bottom: 20px;
}

#tabs-1 .image {
    background-image: url("../img/galaxy4peace-women-wellness.jpg");
}

#tabs-2 .image {
    background-image: url("../img/galaxy4peace-youth-pathways-wellness.jpg");
    background-position: center top;
}

#tabs-3 .image {
    background-image: url("../img/galaxy4peace-arc-access.jpg");
}

#tabs-4 .image {
    background-image: url("../img/galaxy4peace-tech-rise.jpg");
}

#tabs-5 .image {
    background-image: url("../img/galaxy4peace-mission-equality.jpg");
}

#tabs-6 .image {
    background-image: url("../img/galaxy4peace-research-policy.jpg");
}

/*Responsive stacking behavior */
@media (max-width: 992px) {
    .project {
        grid-template-columns: 1fr;
    }

    .project .tabs-section {
        padding: 40px 20px;
    }

    .project .contents .inner {
        grid-template-columns: 1fr;
    }

    .project .contents .content {
        padding: 30px;
    }

    .project .contents .inner .image {
        background-size: cover;
        background-position: center;
        width: 100%;
        min-height: 40vh;
    }

    .project .contents .content h3 {
        margin: 20px 0;
        line-height: 40px;
    }

    .project .tabs-section button {
        text-align: center;
    }

    .project .tabs-section .flex-column {
        align-items: center;
    }
}

/*------START ABOUT US------*/
.about-1 {
    width: 100%;
    height: 700px;
    overflow: hidden;
    position: relative;
}

.about-1 .inner {
    background: rgba(0, 0, 0, 0.5);
    height: 100%;
    width: 100%;
}

.about-1 h1 {
    font-size: 20px;
    font-weight: 300;
    margin: auto auto;
    color: #fff;
    width: 100%;
    text-align: center;
    line-height: 27px;
    padding: 20px;

}

.about-1 .col-md-4 {
    height: 100%;
    display: flex;
}

.about-1 .bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    background: url("/img/galaxy4peace-about.jpg");
    background-position: center top;
    background-size: cover;
    transform: scale(1.3);
    animation: big-about 4.6s ease;
    animation-delay: 3s;
    transform-origin: 50% 50%;
    animation-fill-mode: forwards;
}

@keyframes big-about {
    0% {
        transform: scale(1.3);
    }

    100% {
        transform: scale(1);
    }
}

.about-2 {
    width: 100%;
    background-blend-mode: multiply;
    background-color: #fff;
    text-align: center;
}

.about-2 .main {
    width: 90%;
    margin: 0 auto;
    margin-bottom: -50px;
    position: relative;
    top: -70px;
    background-blend-mode: multiply;
    background-color: #fff;
    box-shadow: 0 -7px 40px 0 rgba(0, 0, 0, 0.27);
    z-index: 2;
    padding: 50px
}

.about-2 h1,
.about-3 h1 {
    color: var(--s-color);
    font-size: 45px;
    font-weight: 800;
    margin-bottom: 20px;
}

.about-2 p,
.about-3 p {
    color: #254151;
    font-weight: 300;
    font-size: 15px;
}

.about-3 {
    margin: 50px 0px;

}

.about-3 img {
    border-radius: 30px;
    min-height: 100%;
    width: 100%;
}

.about-4 {
    width: 100%;
    margin: 50px 0px 0px 0px;
    background-color: var(--m-color);
    overflow: hidden;
}

.about-4 p {
    color: #fff;
    font-weight: 300;
    font-size: 15px;
}

.about-4 h1 {
    color: #fff;
    font-size: 45px;
    font-weight: 800;
    margin: 20px 0px;
}

.about-4 .left.bg {
    min-height: 600px;
    background: url("/img/galaxy4peace-why-we-invest-in-women.jpg");
    background-position: center center;
    background-size: cover;
    box-shadow: 4px 30px 40px 0 rgba(0, 0, 0, 0.46);
    overflow: hidden;
}

@media (max-width: 768px) {
    .about-2 .main {
        padding: 40px 30px;
    }

    .about-2 p,
    .about-3 p,
    .about-4 p {
        font-size: 14px;
        text-align: justify;
        text-align-last: left;
        hyphens: auto;
    }

    .about-2 h1,
    .about-3 h1,
    .about-4 h1 {
        font-size: 30px;
        margin: 10px auto;
        text-align: center;

    }
}

/*------START OUR WORK------*/
.work-1 {
    width: 100%;
    height: 70vh;
    overflow: hidden;
    position: relative;
}

.work-1 .inner {
    background: rgba(0, 0, 0, 0.5);
    height: 100%;
    width: 100%;
}

.work-1 h1 {
    font-size: 20px;
    font-weight: 300;
    margin: auto auto;
    color: #fff;
    width: 100%;
    text-align: center;
    line-height: 27px;
    padding: 20px;

}

.work-1 .col-md-4 {
    height: 100%;
    display: flex;
}

.work-1 .bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    background-image: url("/img/galaxy4peace-our-work.jpg");
    background-color: rgba(0, 0, 0, 0.4);
    background-blend-mode: multiply;
    background-position: center top;
    background-size: cover;
    transform: scale(1.3);
    animation: big-about 4.6s ease;
    animation-delay: 3s;
    transform-origin: 50% 50%;
    animation-fill-mode: forwards;
}

@keyframes big-about {
    0% {
        transform: scale(1.3);
    }

    100% {
        transform: scale(1);
    }
}

.work-2 {
    width: 100%;
    background-blend-mode: multiply;
    background-color: #fff;
    text-align: center;
}

.work-2 .main {
    width: 90%;
    padding: 100px 50px;
    margin: 0 auto;
    margin-bottom: -50px;
    position: relative;
    top: -70px;
    background-blend-mode: multiply;
    background-color: #fff;
    box-shadow: 0 -7px 40px 0 rgba(0, 0, 0, 0.27);
    z-index: 2;
}

.work-2 h1,
.work-3 h1 {
    color: var(--s-color);
    font-size: 45px;
    font-weight: 800;
    margin-bottom: 20px;
}

.work-2 p,
.work-3 p {
    color: #254151;
    font-weight: 300;
    font-size: 15px;
}

.work-3 {
    margin: 50px 0px;

}

.work-3 img {
    border-radius: 30px;
    width: 100%;
}

.work-4 {
    width: 100%;
    margin: 50px 0px 0px 0px;
    overflow: hidden;
}

.work-4 p {
    font-weight: 300;
    font-size: 15px;
}

.work-4 a,
.work-4 button {
    margin-top: 20px !important;
}

.work-4 h1 {
    color: var(--s-color);
    font-size: 45px;
    font-weight: 800;
    margin: 20px 0px;
}

.modal-header {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    border: none;
}

.modal-body{
    border: none;
}

.modal-title {
    color: var(--s-color);
    font-size: 20px;
    text-align: center;
    justify-self: center;
}

.modal-footer button {
    margin: 25px auto !important;
}

.modal-footer {
    border: none;
}
#d-link{
    display: grid;
    grid-template-columns: auto;
}
.download-btn {
    margin-top: 25px;
    display: inline-block;
    padding: 10px 20px;
    background-color: #007BFF;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: background-color 0.3s;
    justify-self: center;
}

.download-btn:hover {
    background-color: #0056b3;
}

.work-4 .left {
    display: flex;
    justify-content: center;
    align-content: center;
}

@media (max-width: 768px) {
    .work-2 .main {
        padding: 40px 30px;
    }

    .work-2 p,
    .work-3 p,
    .work-4 p {
        font-size: 14px;
        text-align: justify;
        text-align-last: left;
        hyphens: auto;
    }

    .work-2 h1,
    .work-3 h1,
    .work-4 h1 {
        font-size: 30px;
        margin: 10px auto;
        text-align: center;

    }
}

.object-fit-cover {
    object-fit: cover;
}

/*------START CONTACT------*/
.contact-1 {
    width: 100%;
    height: 600px;
    overflow: hidden;
    position: relative;
}

.contact-1 .bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    background-image: url("/img/galaxy4peace-contact.jpg");
    background-color: rgba(0, 0, 0, 0.65);
    background-blend-mode: multiply;
    background-position: center center;
    background-size: cover;
    transform: scale(1.3);
    animation: big 4.6s ease;
    animation-delay: 3s;
    transform-origin: 50% 50%;
    animation-fill-mode: forwards;
}

.contact-1 h1 {
    font-size: 20px;
    font-weight: 300;
    padding-top: 250px;
    margin: 0 auto;
    color: #fff;
    width: 100%;
    text-align: center;
    line-height: 27px;

}

.contact-2 {
    width: 100%;
    background-blend-mode: multiply;
    background-color: #fff;
    text-align: center;
    color: #000;
}

.contact-2 .main {
    width: 90%;
    margin: 0 auto;
    margin-bottom: -50px;
    position: relative;
    top: -100px;
    background-blend-mode: multiply;
    background-color: #fff;
    box-shadow: 0 -7px 40px 0 rgba(0, 0, 0, 0.27);
    z-index: 2;
    padding: 50px;
}

.contact-2 .main h2 {
    margin: 10px 0px;
    font-weight: 800;
    color: #00539cff;
}

.contact-2 .main form {
    width: 600px;
    margin: 60px auto;
}

.contact-2 .main input,
.contact-2 .main select {
    height: 50px;
}

.contact-2 .main textarea {
    min-height: 160px
}


@media (max-width:768px) {
    .contact-2 .main form {
        width: 100%
    }

    .contact-2 .main {
        top: -70px;
        padding: 40px 30px;
    }
}

/*------START INVOLVED------*/
.involve-1 {
    width: 100%;
    height: 600px;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}



.involve-1 .bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    background-image: url("/img/galaxy4peace-involved.jpg");
    background-color: rgba(0, 0, 0, 0.6);
    background-blend-mode: multiply;
    background-position: center center;
    background-size: cover;
    transform: scale(1.3);
    animation: big 4.6s ease;
    animation-delay: 3s;
    transform-origin: 50% 50%;
    animation-fill-mode: forwards;
}

.involve-1 h1 {
    font-size: 35px;
    font-weight: 900;
    margin: 0 auto;
    padding: 20px 0px;
    color: #fff;
    width: 100%;
    text-align: center;
    line-height: 35px;

}

.involve-1 h2 {
    font-size: 20px;
    font-weight: 300;
    margin: 0 auto;
    color: #fff;
    width: 100%;
    text-align: center;
    line-height: 27px;

}

.involve-2 {
    width: 100%;
    background-blend-mode: multiply;
    background-color: #fff;
    text-align: center;
}

.involve-2 .main {
    width: 90%;
    margin: 0 auto;
    margin-bottom: -50px;
    position: relative;
    top: -100px;
    background-blend-mode: multiply;
    background-color: #fff;
    box-shadow: 0 -7px 40px 0 rgba(0, 0, 0, 0.27);
    z-index: 2;
    padding: 50px;
}

.involve-2 p {
    margin-bottom: 20px;
}

.involve-2 p.smaller {
    margin: 10px;
}

.involve-2 .bold {
    font-weight: 800;
}

.involve-2 h2 {
    font-size: 26px;
    margin: 20px !important;
    font-weight: 900 !important;
    color: #00539cff;
}

.sponsor {
    margin-bottom: 30px;
    border-bottom: 2px solid #f5f5f5;
    padding-bottom: 30px;
}

.sponsor h2 {
    margin: 20px;
    font-weight: 800;
    color: #00539cff;
}

.sponsor .fa {
    font-size: 24px;
    margin-right: 10px;
    margin-top: 15px;
    color: #00539cff;
}

.sponsor img {
    width: 150px;
    height: 100px;
}

.sponsor button {
    border: none;
    background: transparent;
    margin-left: 5px;
    color: blue;
}

.sponsor button:hover {
    text-decoration: underline;
}

.privacy {
    width: 100%;
    margin-top: var(--h-height);
    position: relative;
    margin-bottom: 100px;
}

.privacy h1 {
    font-weight: 900;
    margin: 50px 0;
    color: #00539cff;
    font-size: 35px;
    line-height: 40px;
    padding-top: 50px;
}

.privacy h2 {
    font-weight: 600;
    color: #00539cff;
    font-size: 27px;
    padding-bottom: 15px;
    padding-top: 20px;
}

.privacy h3 {
    color: #00539cff;
    font-size: 17px;
    padding: 10px 0;
}

.privacy ul {
    list-style: disc;
    padding: 20px;
    padding-top: 0px;
    padding-bottom: 0;
}

.privacy li {
    color: #254151;
    font-size: 14px;
    font-weight: 300;
    padding-bottom: 10px;
}

.privacy p {
    color: #254151;
    font-weight: 300;
    font-size: 14px;
    line-height: 26px;
    text-align: justify;
    padding-bottom: 15px;
}