* {
    color: white;
}

.footer-div {
    height: fit-content;
    background-color: #24995b;
}

body {
    margin: 0px;
    min-height: 100%;
    width: 100%;
    overflow-x: hidden;
}

h1 {
    font-size: 4vw !important;
    padding-top: 25px;
    font-family: fantasy !important;
    text-align: center;
}

.title {
    font-size: 45px;
}

p {
    line-height: 1;
}

li {
    line-height: 3;
}

li p {
    font-size: 19px;
    font-weight: 400;
}

#arrow-down {
    cursor: pointer;
}

.email-text {
    padding-top: 35px;
    font-size: 22px;
}

.text {
    margin: 0 10%;
    text-align: justify;
    max-width: 900px;
    font-size: 25px;
    font-family: revert;
    font-weight: 400;
}

.list {
    margin: 0 10%;
    text-align: justify;
    font-size: 25px;
    font-family: revert;
    font-weight: 400;
}

.listImpact {
    padding: 60px;
    width: 100%;
    /* background: rgba(0 0 0 / 60%); */
    display: flex;
    margin-top: 5%;
}

.ul1 {
    display: inline-grid;
    width: 100%;
}

.ul2 {
    display: inline-grid;
    width: 100%;
}

.listImpact li {
    list-style: none;
}

.listImpact li p {
    line-height: 3;
    margin: auto;
}

.text-2 .listResum {
    width: 100%;
    margin: auto;
    padding: 120px;
}

.listResum {
    width: 100%;
    margin-top: 5%;
    text-align: left;
}

.listResum li::marker {
    content: "\2713";
}

.listResum li p {
    line-height: 3;
    margin: auto;
}

.ul3 {
    width: 100%;
    margin: 0 20px;
}

.center {
    padding-top: 5%;
    height: 100px;
    line-height: 100px;
    text-align: center;
}

.text-2 {
    padding-top: 5%;
    height: 100px;
    line-height: 100px;
    text-align: center;
}

.info {
    display: table;
    margin: auto;
}

.full-screen {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100%;
}

a {
    text-decoration: none !important;
    color: white !important;
}

.back1 {
    background-image: url(../images/background.jpg);
}

.back2 {
    background-image: url(../images/background_2.jpg);
}

.back3 {
    background-image: url(../images/background_.jpg);
}

.back4 {
    background-image: url(../images/background.jpg);
}

img {
    height: 150px;
}

.partners-text {
    font-size: 30px;
    font-weight: 600;
}

.scroll-prompt {
    position: absolute;
    z-index: 998;
    bottom: -10px;
    left: 50%;
    margin-left: -80px;
    width: 160px;
    height: 160px;
}

.scroll-prompt .scroll-prompt-arrow-container {
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -18px;
    -webkit-animation-name: bounce;
    animation-name: bounce;
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

.scroll-prompt .scroll-prompt-arrow {
    -webkit-animation-name: opacity;
    animation-name: opacity;
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

.scroll-prompt .scroll-prompt-arrow:last-child {
    animation-direction: reverse;
    margin-top: -6px;
}

.scroll-prompt .scroll-prompt-arrow>div {
    width: 36px;
    height: 36px;
    border-right: 8px solid #bebebe;
    border-bottom: 8px solid #bebebe;
    transform: rotate(45deg) translateZ(1px);
}

@-webkit-keyframes opacity {
    0% {
        opacity: 0;
    }
    10% {
        opacity: 0.1;
    }
    20% {
        opacity: 0.2;
    }
    30% {
        opacity: 0.3;
    }
    40% {
        opacity: 0.4;
    }
    50% {
        opacity: 0.5;
    }
    60% {
        opacity: 0.6;
    }
    70% {
        opacity: 0.7;
    }
    80% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.9;
    }
    100% {
        opacity: 1;
    }
}

@keyframes opacity {
    0% {
        opacity: 0;
    }
    10% {
        opacity: 0.1;
    }
    20% {
        opacity: 0.2;
    }
    30% {
        opacity: 0.3;
    }
    40% {
        opacity: 0.4;
    }
    50% {
        opacity: 0.5;
    }
    60% {
        opacity: 0.6;
    }
    70% {
        opacity: 0.7;
    }
    80% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.9;
    }
    100% {
        opacity: 1;
    }
}

@-webkit-keyframes bounce {
    0% {
        transform: translateY(0);
    }
    10% {
        transform: translateY(3px);
    }
    20% {
        transform: translateY(6px);
    }
    30% {
        transform: translateY(9px);
    }
    40% {
        transform: translateY(12px);
    }
    50% {
        transform: translateY(15px);
    }
    60% {
        transform: translateY(18px);
    }
    70% {
        transform: translateY(21px);
    }
    80% {
        transform: translateY(24px);
    }
    90% {
        transform: translateY(27px);
    }
    100% {
        transform: translateY(30px);
    }
}

@keyframes bounce {
    0% {
        transform: translateY(0);
    }
    10% {
        transform: translateY(3px);
    }
    20% {
        transform: translateY(6px);
    }
    30% {
        transform: translateY(9px);
    }
    40% {
        transform: translateY(12px);
    }
    50% {
        transform: translateY(15px);
    }
    60% {
        transform: translateY(18px);
    }
    70% {
        transform: translateY(21px);
    }
    80% {
        transform: translateY(24px);
    }
    90% {
        transform: translateY(27px);
    }
    100% {
        transform: translateY(30px);
    }
}

@media (min-width: 300px) and (max-width: 400px) {
    h1 {
        font-size: 5vw !important;
    }
    .text {
        font-size: 22px;
        font-weight: 100;
        padding: 41px;
        text-align: justify;
        margin: -117px 0 0 1px;
    }
    .title {
        font-size: 25px;
    }
    .email-text {
        padding-top: 15px;
        font-size: 17px;
    }
    .scroll-prompt {
        bottom: -5px;
    }
    .listImpact {
        padding: 10px;
        width: 100%;
        background: rgba(0 0 0 / 60%);
        display: table;
    }
    .ul1 {
        display: block;
        margin: 27px 8px 27px -22px;
    }
    .ul2 {
        display: block;
        margin: 27px 8px 27px -22px;
    }
    .listImpact li p {
        line-height: 1.5;
        margin: auto;
    }
    .text-2 .listResum {
        width: 100%;
        margin: 27px 8px 27px -22px;
        padding: 4px;
        line-height: 18;
        font-size: 12pt;
    }
    .listResum li p {
        line-height: 1.5;
        margin: auto;
    }
    .back2 {
        height: 172%;
    }
}

@media (min-width: 400px) and (max-width: 940px) {
    h1 {
        font-size: 5vw !important;
    }
    .text {
        font-size: 22px;
        font-weight: 100;
        padding: 41px;
        text-align: justify;
        margin: -117px 0 0 1px;
    }
    .title {
        font-size: 25px;
    }
    .email-text {
        padding-top: 15px;
        font-size: 17px;
    }
    .scroll-prompt {
        bottom: -5px;
    }
    .listImpact {
        padding: 0px;
        width: 100%;
        background: rgba(0 0 0 / 60%);
        display: block;
    }
    .ul1 {
        display: block;
    }
    .ul2 {
        display: block;
    }
    .listImpact li p {
        line-height: 1.5;
        margin: auto;
    }
    .text-2 .listResum {
        width: 100%;
        margin: 27px 8px 27px -22px;
        padding: 4px;
        line-height: 18;
        font-size: 12pt;
    }
    .listResum li p {
        line-height: 1.5;
        margin: auto;
    }
    .back2 {
        height: 158%;
    }
}

@media (min-width: 400px) and (max-width: 940px) and (orientation: landscape) {
    h1 {
        font-size: 5vw !important;
    }
    .text {
        font-size: 17px;
        font-weight: 100;
        padding: 18px;
        text-align: justify;
    }
    .title {
        font-size: 15px;
    }
    .email-text {
        padding-top: 15px;
        font-size: 17px;
    }
    .scroll-prompt {
        bottom: -53px;
    }
    .listImpact {
        margin-top: -1%;
    }
    .ul1 {
        display: block;
    }
    .ul2 {
        display: block;
    }
    .listImpact li p {
        line-height: 1.2;
        margin: auto;
    }
    .text-2 .listResum {
        width: 100%;
        margin: 27px 8px 27px -22px;
        padding: 4px;
        line-height: 18;
        font-size: 12pt;
    }
    .listResum li p {
        line-height: 1.1;
        margin: auto;
    }
    .back2 {
        height: 196%;
    }
}