.hero {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    position: relative;
}
.hero .btn {
    text-transform: uppercase;
    padding-left: 0;
    padding-right: 0;
}
.hero h1 {
    margin-bottom: 10px !important;
}
.hero .form {
    padding: 110px 40px 110px 40px;
    width: 100%;
    max-width: 700px;    
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.hero .form-head {
    max-width: 500px;
    margin: 0 auto 30px;
}
.hero .form .inner-container {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}
.hero .image {
    width: calc(100% - 700px);
}
.hero .image img {
    max-width: calc(100% + 2px);
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    max-height: 95vh;
    object-fit: cover;
    object-position: -1px -1px;
}
.hero .logo {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 3;
}
.hero .logo .desk {
    display: block;
}
.hero .logo .mob {
    display: none;
}


.donation-type {
    display: grid;
    grid-template-columns: repeat(2 , 1fr);
    grid-gap: 0px;
}
.donation-promotion {
    margin-bottom: 30px;
    margin-top: 10px;
    display: flex;
    font-size: calc(1rem - 2px);
    font-weight: bold;
}
.donation-promotion i {
    margin-top: -4px;
    margin-left: 3px;
    font-size: calc(1rem + 2px);
}
.donation-type .btn , .donation-value .btn {
    border: 1px solid var(--Black);
    border-radius: 0px;
    white-space: nowrap;
    min-width: 100%;
} 
.donation-type .btn:hover , .donation-value .btn:hover {
    border: 1px solid var(--Mint);
    background: var(--Mint);
    color: var(--White);
}
.donation-type .btn.btn-active , .donation-value .btn.btn-active {
    border: 1px solid var(--Black);
    background: var(--Black);
    color: var(--White);
}

.donation-value {
    margin-bottom: 30px;
}
.donation-value > div {
    display: none;
}
.donation-value > div > .btns-container {
    display: grid;
    grid-template-columns: repeat(3 , 1fr);
    grid-gap: 15px;
}
.donation-value .btn {
    min-width: initial;
}

.donation-other {
    margin-bottom: 30px;
    border: 1px solid var(--Black);
    padding: 0 10px;
    min-height: 58px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.donation-other input {
    border: 0px;
    min-height: 58px;
    padding: 0 0 0 0;
    display: block;
    width: 100%;
}
.donation-other span {
    margin-right: 10px;
}

.donate-submit {
    display: grid;
    grid-template-columns: repeat(1 , 1fr);
}
.donate-submit .btn {
    border: 1px solid var(--Buttons);
    background: var(--Buttons);
    color: var(--White);
    border-radius: 0;
}
.donate-submit .btn:hover {
    border: 1px solid var(--Peach);
    background: var(--Peach);
}
.donate-secure {
    margin: 15px 0 0 0;
    text-align: center;
    font-size: calc(1rem - 4px);
    color: var(--Gray3);
}
.donate-secure i {
    margin-right: 5px;
}



@media screen and (max-width: 1600px) {
    .hero .form {
        max-width: 600px;    
    }
    .hero .image {
        width: calc(100% - 600px);
    }
}
@media screen and (max-width: 991px) {
    .hero {
        flex-direction: column;
    }
    .hero .form {
        position: relative;
        z-index: 2;
        width: calc(100% - var(--bs-gutter-x));
        min-width: auto;
        order: 2;
        margin: 120px auto 0;
        /* margin: max(-457px, min(-42vw, -350px)) auto 0; */
        padding: 0;
    }
    .hero .form-head {
        text-align: center;
        padding: 0 calc(1rem + 20px);
        margin-bottom: 30px;
        color: var(--White);
    }
    .hero .form .inner-container {
        width: calc(100% - 2rem);
        padding: 30px 20px;
        background: var(--White);
    }
    .hero .image {
        width: 100%;
        min-height: 70%;
        height: auto;
        order: 1;
        position: absolute;
    }
    .hero .image:after {
        content: "";
        display: block;
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background: rgba(0,0,0,0.5);
        z-index: 1;
    }
    .hero .image img {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate3d(-50% , -50% , 0);
        z-index: 1;
    }

    .hero .logo .desk {
        display: none;
    }
    .hero .logo .mob {
        display: block;
        width: 50px;
    }

    .donation-value {
        grid-gap: 10px;
    }

    .donation-other , .donation-other input {
        min-height: 48px;
    }

    .hero h1 , .donation-promotion , .donation-value , .donation-other{
        margin-bottom: 20px !important;
    }
}

/* @media screen and (max-width: 767px) {
    .hero .form {
        margin: max(-307px, min(-32vw, -307px)) auto 0;
    }
} */