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

html {
    /* font-size: 10px; */
    /* 10px / 16px = 0.625 = 62.5% */
    /* Percentage of user's browser font-size setting */
    font-size: 62.5%;
    overflow-x: hidden;
}

body {
    font-family: 'Rubik', sans-serif;
    line-height: 1;
    font-weight: 400;
    color: #555;

    /* Only works if there is nothing absolutely position  in relation to the body*/
    overflow-x: hidden;
}

/* GENERAL REUSABLE COMPONENTS */

.container {
    /* 1140px */
    max-width: 120rem;
    padding: 0 3.2rem;
    margin: 0 auto;
}

.container-programs {
    /* 1140px */
    max-width: 120rem;
    padding: 0 0 3rem 0;
    margin: 0 auto;
}

.grid {
    display: grid;
    column-gap: 2.4rem;
    row-gap: 2.4rem;
}

.grid:not(:last-child) {
    margin-bottom: 9.6rem;
}

.grid--2-cols {
    grid-template-columns: repeat(2, 1fr);
}

.grid--3-cols {
    grid-template-columns: repeat(3, 1fr);
}

.grid--4-cols {
    grid-template-columns: repeat(4, 1fr);
}

.grid--5-cols {
    grid-template-columns: repeat(5, 1fr);
}

.grid--center-v {
    align-items: center;
}

.heading-primary {
    font-weight: 700;
    color: #b4721b;
    /* color: #fefdfd; */
    letter-spacing: 0px;
    /* background-image: linear-gradient(to right, #0d7a45, #e81e28);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent; */
}

.heading-secondary,
.heading-tertiary {
    font-weight: 700;
    color: #493b29;
    letter-spacing: -0.5px;
}

.heading-primary {
    font-size: 4rem;
    line-height: 1.05;
    margin-bottom: 3.2rem;
}

.heading-secondary {
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 0.4rem;
}

.heading-secondary--programs {
    font-weight: 700;
    color: #e4e4e4;
    letter-spacing: -0.5px;
    font-size: 4.4rem;
    line-height: 1.2;
    margin-bottom: 4rem;
    text-shadow: -2px -2px 0 #000, 2px -2px 0 #000, -2px 2px 0 #000, 2px 2px 0 #000;
}

.heading-tertiary--programs {
    font-weight: 400;
    color: #e4e4e4;
    letter-spacing: -0.5px;
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 2.2rem;
    text-shadow: -2px -2px 0 #000, 2px -2px 0 #000, -2px 2px 0 #000, 2px 2px 0 #000;
}

.heading-secondary--history {
    font-size: 4.4rem;
    line-height: 1.2;
    margin-bottom: 4.8rem;
}

.heading-tertiary {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 3.2rem;
}

.subheading,
.subheading-donate {
    display: block;
    font-size: 2.4rem;
    font-weight: 500;
    color: #f3e0c5;
    text-transform: uppercase;
    margin-bottom: 1.6rem;
    letter-spacing: 0.75px;
}

.subheading-programs {
    padding-top: 2rem;
}

.subheading {
    color: #f3e0c5;
}

.subheading-donate {
    color: #ebe7e3;
}

.btn,
.btn:link,
.btn:visited {
    display: inline-block;

    text-decoration: none;
    font-size: 2rem;
    font-weight: 600;
    padding: 1.6rem 3.2rem;
    border-radius: 100px;

    /* Only for .btn */
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.3s;
}

.btn--full:link,
.btn--full:visited {
    /* background-color: #b4721b; */
    background: linear-gradient(135deg, #053d18 0%, #97d8a6 100%);
    /* background: linear-gradient(135deg, #e81e28 0%, #bd8285 100%); */
    color: #fff;
}

.btn--full:hover,
.btn--full:active {
    background-color: #493b29;
}

.btn--full-donate:link,
.btn--full-donate:visited {
    /* background-color: #b4721b; */
    background: linear-gradient(135deg, #8a9191 0%, #000000 100%);
    /* background: linear-gradient(135deg, #e81e28 0%, #bd8285 100%); */
    color: #fff;
}

.btn--full-donate:hover,
.btn--full-donate:active {
    background-color: #fcfbf9;
    color: #099613 !important;
}

.btn--outline:link,
.btn--outline:visited {
    background-color: #f6efef;
    color: #555;
}

.btn--outline:hover,
.btn--outline:active {
    background-color: #918889;
    box-shadow: inset 0 0 0 3px #b9b3b3;
}

.btn2,
.btn2:link,
.btn2:visited {
    display: inline-block;
    text-decoration: none;
    font-size: 2rem;
    font-weight: 600;
    padding: 0.6rem 3.2rem;
    margin-bottom: 1rem;
    border-radius: 100px;
}

.btn2--outline:link,
.btn2--outline:visited {
    background-color: #fefdfd;
    color: #555;
}

.btn2--outline:hover,
.btn2--outline:active {
    background-color: #b8b5b5;
    box-shadow: inset 0 0 0 3px hsl(0, 0%, 59%);
}

.btn--form {
    background-color: #45260a;
    color: #fdf2e9;
    align-self: end;
    padding: 1.2rem;
}

.btn--form:hover {
    background-color: #fff;
    color: #555;
}

.link:link,
.link:visited {
    font-size: 3rem;
    font-weight: 700;
    display: inline-block;
    color: #f0f0f0;
    /* color: #277c78; */
    text-decoration: none;
    border-bottom: 1px solid currentColor;
    padding-bottom: 2px;
    transition: all 0.3s;
}

.link:hover,
.link:active {
    color: #010101;
    border-bottom: 1px solid transparent;
}

.list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
}

.list-item {
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    gap: 1.6rem;
}

.list-icon {
    width: 3rem;
    height: 3rem;
    color: #e67e22;
}

*:focus {
    outline: none;
    box-shadow: 0 0 0 0.8rem rgba(230, 125, 34, 0.5);
}

/* HELPER/SETTINGS CLASSES */

.margin-top-sm {
    margin-top: 1.6rem !important;
}

.margin-top-negative-sm {
    margin-top: -5.8rem !important;
}

.margin-right-sm {
    margin-right: 1.6rem !important;
}

.margin-bottom-md {
    margin-bottom: 1.8rem !important;
}

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

strong {
    font-weight: 500;
}

/* By Yuri Sokolovicz */
