* {
    box-sizing: border-box;
}

html {
    font-size: 16px;
    font-family: sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
}

p {
    margin: 0;
}

ul {
    margin: 0;
}

.wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.localization-nav {
    display: flex;
    justify-content: end;
    align-items: center;
    padding: 1rem;
    width: 100%;
}

.languages-list {
    display: flex;
    list-style-type: none;
    padding: 0;
}

.language-item {
    cursor: pointer;
}

.language-item.--active {
    color: #5698cf;
}

.languages-list:first-child {
    border-left: 1px solid #aacbe7;
}

.languages-list .language-item {
    padding: 0 0.5rem;
    border-right: 1px solid #5698cf;
}

.languages-list .language-item:last-child {
    border-right: 1px solid #aacbe7;
}

.header-logo-block {
    width: 100%;
    position: relative;
    margin-bottom: 2.5rem;
}

.logo-background {
    width: 100%;
}

.header-logo-block img {
    display: block;
}

.logo {
    position: absolute;
    top: 0;
    right: 135px;
    height: 64%;
}

.part-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: normal;
    letter-spacing: 0.25rem;
}

main {
    padding: 0 2rem;
    flex-grow: 1;
}

.about-us {
    text-align: center;
    font-size: 1.5rem;
    width: 940px;
    letter-spacing: 0.5rem;
    margin: 0 auto 3rem;
}

.about-us-title {
    text-align: center;
    margin-bottom: 2.5rem;
}

.description-part-wrapper {
    display: flex;
    margin-bottom: 4rem;
}

.achievements {
    width: 50%;
    padding: 0 4.5rem;
}

.achievements-selector {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    align-items: center;
}

.achievement-frame {
    width: 270px;
    height: 360px;
    border: 8px solid #eec04a;
}

.achievement-slide {
    width: 100%;
    height: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}


.achievements img {
    width: 50%;
}

.achievement-arrow {
    cursor: pointer;
    width: 0;
    height: 0;
    border-style: solid;
    transform: rotate(0deg);
}

.achievement-arrow.--left {
    border-width: 27px 46px 27px 0;
    border-color: transparent #000000 transparent transparent;
}

.achievement-arrow.--right {
    border-width: 27px 0 27px 46px;
    border-color: transparent transparent transparent #000000;
}



.achievements img {
    width: 50%;
}

.goals-title,
.achievements-title {
    margin-bottom: 1.75rem;
}

.goals {
    font-size: 1.5rem;
    letter-spacing: 0.1rem;
}

.goals-list {
    padding-left: 4rem;
}

.goals-list li {
    margin-bottom: 2rem;
}

footer {
    background-image: url("../images/footer.png");
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 3.125rem;
    padding-left: 4rem;
    padding-right: 4rem;
    font-size: 1.5rem;
    min-height: 360px;
}

.help-title {
    text-align: left;
    padding-left: 6rem;
    margin-bottom: 2.5rem;
}

.help-actions {
    display: flex;
    gap: 1.25rem;
}

.donate-wrapper {
    margin-right: 5.625rem;
}

.donate-details-list {
    list-style: none;
    padding: 0 0 0 3rem;
}

.donate-details-list li {
    margin-bottom: 0.75rem;
}

.donate-text {
    margin-bottom: 2rem;
}

.donate-button {
    background-color: #2d6571;
    color: #fff;
    padding: 0.15rem 0;
    border: none;
    cursor: pointer;
    border-radius: 1rem;
    width: 130px;
    font-size: 30px;
}

.follow-us-wrapper {
    padding-top: 0.5rem;
}

.follow-us-list {
    margin: 1rem auto;
    display: flex;
    justify-content: center;
    gap: 0.75rem;
}

.follow-us-icon {
    width: 44px;
    height: 44px;
}

.contact-mail {
    text-decoration: none;
    color: inherit;
}

.donate-info {
    cursor: pointer;
}





