main {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 10px;
    margin-left: 10%;
    margin-right: 10%;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.hero-heart-img {
    min-width: 50%;
    width: 300px !important;
}

.hero-heart {
    align-items: center;
}

.sm-buttons {
    margin-top: 30px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    gap: 10px;
}

.sm > svg {
    width: 28px;
    height: 28px;
}

.sm:hover {
    fill: #000000;
}

.partners-title {
    text-align: center;
    font-family: 'Roboto', sans-serif !important;
    color: #7a7a7a;
    font-size: 16px;
    padding-top: 30px;
    padding-bottom: 24px;
}

.partners-buttons {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.row-block-right > img, .row-block-left > img {
    width: 600px;
    height: auto;
}

.partner {
    opacity: 0.5;
    transition: .1s;
}

.partner:hover {
    opacity: 1;
}

.email-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.email-send-btn {
    box-shadow: none;
}

.email-send-btn:hover {
    box-shadow: none;
    background: #000000;
    color: #ffffff;
}

.org-details, .org-details > b {
    font-family: 'Roboto', sans-serif !important;
    color: #7a7a7a;
    font-size: 16px;
    line-height: 1.5;
}

.org-details > b {
    font-weight: 500 !important;
}

.org-details > a {
    font-family: 'Roboto', sans-serif !important;
    color: #7a7a7a;
    text-decoration: none;
}

.org-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.org-info-block {
    padding-bottom: 30px;
}

.mobile-first-hero-button > button > img {
    display: none;
}

.mobile-hero-buttons {
    flex-direction: column;
    gap: 14px;
}

.mobile-first-hero-button > button:hover {
    color: #000000 !important;
}

.partners {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.partners-row {
    display: flex;
    align-items: center;
    gap: 20px;
}

@media (max-width: 1200px) {
    main {
        margin-left: 20px !important;
        margin-right: 20px !important;
        margin-top: 10px;
    }

    .mobile-hero-buttons {
        flex-direction: row;
        justify-content: start;
    }

    .mobile-hero-buttons > a {
        width: 100%;
    }

    .mobile-hero-buttons > a > button {
        height: 120px;
        justify-content: start;
        align-items: start;
        display: flex;
        padding-top: 30px;
    }

    .mobile-hero-buttons {
        gap: 20px;
    }

    .hero-buttons {
        gap: 20px;
    }

    .mobile-first-hero-button > button {
        height: 130px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding-top: 30px;
    }

    .hero-btn-text {
        align-self: start;
        justify-self: start;
        margin-top: 20px;
    }

    .mobile-first-hero-button > button > img {
        display: block;
        align-self: end;
        width: 80px;
        justify-self: end;
        margin-top: 20px;
    }
}