/* GENERAL */
body {
    margin: 0;
    position: relative;
}

#language-switcher {
    margin: 0;
    padding: 0;
    position: absolute;
    right: 25px;
    top: 12px;
}

#language-switcher img {
    width: 15px;
    height: auto;
    margin: 0px;
}

.hide-m {
    display: block;
}

.show-m {
    display: none;
}

/**/
/* FONTS */
* {
    font-family: 'PT Sans', sans-serif;
    font-weight: 400;
    color: rgb(34, 34, 32);
}

/* End Fonts */

.flexible-layout {
    margin-left: -30px;
    /*margin-bottom: -30px;*/
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
}

.flexible-layout.valign-middle>.column {
    align-self: center;
}

.flexible-layout.valign-bottom>.column {
    align-self: flex-end;
}

.flexible-layout .column {
    padding-left: 30px;
    /*margin-bottom: 30px; */
    flex: 0 0 auto;
}

.flexible-layout .column--quarter {
    width: 20%;
}

.flexible-layout .column--third {
    width: 30%;
}

.flexible-layout .column--half {
    width: 45%;
}

.flexible-layout .column--two-thirds {
    width: 66.666%;
}

.flexible-layout .column--three-quarters {
    width: 75%;
}

.flexible-layout .column--full {
    width: 100%;
}

.flexible-layout--align-center {
    justify-content: center;
}

.flexible-layout--variable-columns {
    justify-content: space-around;
}

.flexible-layout--variable-columns .column {
    flex: 1 0 auto;
    width: 33%;
    max-width: 50%;
}

.flexible-layout--variable-columns.flexible-layout--columns-4 .column {
    width: 50%;
}

.flexible-layout--form {
    margin-bottom: 0;
}

.flexible-layout--form .column {
    margin-bottom: 20px;
}

@media (max-width: 1300px) {
    .flexible-layout {
        margin-left: -20px;
    }

    .flexible-layout .column {
        padding-left: 20px;
    }

    .flexible-layout .column--quarter {
        width: 20%;
    }

    .flexible-layout .column--third {
        width: 33.333%;
    }

    .flexible-layout .column--half {
        width: 50%;
    }

    .flexible-layout .column--two-thirds {
        width: 66.666%;
    }

    .flexible-layout .column--three-quarters {
        width: 75%;
    }

    .flexible-layout .column--full {
        width: 100%;
    }

    .flexible-layout--variable-columns .column {
        width: 33%;
        max-width: 50%;
    }

    .flexible-layout--variable-columns.flexible-layout--columns-4 .column {
        width: 50%;
    }
}

@media (max-width: 767px) {
    .flexible-layout {
        margin-left: auto;
        margin-bottom: 0;
        flex-direction: column;
    }

    .flexible-layout .column {
        margin-bottom: 0px;
        padding-left: 0;
        width: 100% !important;
        max-width: none;
    }

    .flexible-layout .column:last-child {
        margin-bottom: 0;
    }

    .flexible-layout.layout-all-quarters {
        flex-direction: row;
        margin-left: -16px;
        margin-bottom: -30px;
    }

    .flexible-layout.layout-all-quarters .column {
        margin-bottom: 30px;
        padding-left: 16px;
        width: 50% !important;
    }

    .flexible-layout.layout-all-quarters .column:last-child {
        margin-bottom: 30px;
    }

    .flexible-layout--form {
        margin-bottom: 0;
    }

    .flexible-layout--form .column {
        margin-bottom: 20px;
    }

    .flexible-layout--form .column:last-child {
        margin-bottom: 20px;
    }
}

@media (max-width: 400px) {
    .flexible-layout.layout-all-quarters {
        flex-direction: column;
        margin-left: auto;
        margin-bottom: 0;
    }

    .flexible-layout.layout-all-quarters .column {
        margin-bottom: 60px;
        padding-left: 0;
        width: 100% !important;
    }

    .flexible-layout.layout-all-quarters .column:last-child {
        margin-bottom: 0;
    }
}

/* STYLES */
#main-section {
    background: #f4f3e2;
    padding: 40px 0px 60px 0px;
}

#disclaimer {
    background: #f4f3e2;
    padding: 20px 0px;
    text-align: center;
}

#disclaimer p {
    margin: 0;
}

#main-section .flexible-layout {
    max-width: 1000px;
    margin: 0 auto;
}

#main-section h1 {
    font-family: 'PT Serif', serif;
    font-size: 2rem;
    font-weight: bold;
    margin: 0;
}

#main-section p {
    font-size: 1.125rem;
    line-height: 1.625;
    margin-bottom: 20px;
}

#main-section p#montomsg {
    font-weight: bold;
    font-size: 19px;
    margin: 0;
}

#main-section .monto-description {
    font-size: 0.8rem;
    margin: 0px;
    padding-bottom: 3em;
}

#main-section p:last-child {
    margin-bottom: 40px;
}

#description {
    max-width: 900px;
    margin: 60px auto;
}

#description h3 {
    font-size: 1.5rem;
    line-height: 1.375;
    font-weight: bold;
}

.violet-btn {
    padding: 15px 25px;
    border: 1px solid rgb(101, 66, 255);
    color: rgb(101, 66, 255);
    font-weight: bold;
    min-height: 48px;
    min-width: 96px;
    background: transparent;
    font-family: "PT Sans", sans-serif;
    border-radius: 12px;
    text-decoration: none;
    transition: color 0.2s linear, background 0.2s linear, border-color 0.2s linear, text-shadow 0.2s linear;
}

.violet-btn:hover {
    background: rgb(101, 66, 255);
    color: #fff;
}

.gold-btn {
    border-color: rgb(220, 169, 102);
    background: rgb(220, 169, 102);
    color: rgb(255, 255, 255);
    transition: color 0.2s linear, background 0.2s linear, border-color 0.2s linear, text-shadow 0.2s linear;
    text-decoration: none;
    position: relative;
    font-weight: bold;
    min-height: 48px;
    min-width: 96px;
    padding: 14px 24px;
    font-family: "PT Sans", sans-serif;
    border-radius: 12px;
    font-size: 20px;
}

.gold-btn:hover {
    background-color: rgb(169, 130, 78);
    border-color: rgb(169, 130, 78);
    color: rgb(255, 255, 255);
}

#description p {
    font-size: 1.125rem;
    line-height: 1.625;
}

#donaciones {
    background: #f4f3e2;
    padding: 60px;
}

.payment-options {
    padding-top: 40px;
}

#donaciones>div {
    max-width: 1000px;
    margin: 0 auto;
}

#donaciones h2 {
    font-family: 'PT Serif', serif;
    font-weight: bold;
    font-size: 2rem;
    line-height: 1.125;
    margin: 0;
}

#donaciones .box {
    padding: 30px;
    background: #fff;
    min-height: 260px;
    margin: 10px;
    width: 40%;
    text-align: center;
}

#donaciones h4 {
    font-family: 'PT Serif', serif;
    font-size: 2rem;
    line-height: 1.125;
    font-weight: bold;
    margin: 0px 0px 20px 0px;
    text-align: left;
}

#donaciones p {
    margin-bottom: 30px;
    text-align: left;
}

#donaciones .payment-options .zelle {
    text-align: left;
}

#donaciones .payment-options .zelle img {
    width: 100px;
    height: auto;
}

/**/

#carousel-img {
    max-width: 900px;
    margin: 60px auto;
}

#carousel-img img {
    border-radius: 10px;
}

#carousel-img .flexible-layout .column {
    padding: 15px;
}

/* #carousel-img img{
width: 50px;
height: 50px;
} */

/* PROGRESS BAR */
progress#monto {
    background: none;
    width: 100%;
    border-radius: 4px;
    margin-bottom: 10px;
}

progress::-webkit-progress-value {
    background: rgb(0, 185, 0);
    border-radius: 4px;
}

progress::-webkit-progress-bar {
    background: #d6ffd6;
    border-radius: 4px;
}

/*  */

/* MEDIA QUERIES */

@media screen and (max-width: 976px) {

    #language-switcher {
        top: 10px;
    }

    .hide-m {
        display: none;
    }

    .show-m {
        display: block;
    }

    .column-reverse {
        flex-direction: column-reverse;
    }

    #main-section {
        padding: 60px 20px 60px 20px;
        text-align: center;
    }

    #main-section img {
        width: 100%;
    }

    #description,
    #donaciones {
        padding: 20px;
        margin: 20px 0px;
    }

    #donaciones h2 {
        font-size: 2rem;
    }

    #donaciones .box {
        width: 90% !important;
        height: 100%;
    }

    #carousel-img .column {
        text-align: center;
    }

    #carousel-img .flexible-layout .column {
        padding: 0px 15px;
    }
}

/**/