/* Block styles */

.block {
    color: #fff;

    width: 100%;
    margin: 16px 0;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.block > div {
    width: 40%;
    height: 400px;

    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
}

.block > .image {
    width: 60%;
}

.block > .image > img {
    max-height: 100%;
    height: 400px;
    object-fit: cover;
}

.block > .text {
    padding: 32px 56px;
    background-color: #2D237E;
}

.block > .text > h2 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #48AF4A;
    font-family: 'ABeeZee', sans-serif;
}

.block > .text > h3 {
    font-size: 24px;
    margin-bottom: 8px;
}

.block > .text > p {
    margin-bottom: 24px;
}

.block > .text > p > a {
    color: #48AF4A;
}

@media (max-device-width: 690px) {
    .block {
        width: 100%;
        flex-direction: column;
        text-align: center;
    }

    .block > div,
    .block > .image,
    .block > .image > img {
        width: 100%;
    }

    .block > .text {
        padding: 32px 56px;
        background-color: #2D237E;
    }

    .block > .text > h2 {
        font-size: 48px;
    }

    .block > .text > h3 {
        font-size: 36px;
    }

    .block > .text > p {
        font-size: 28px;
    }
}


/* Main block styles */


.main-block > div,
.main-block > img {
    width: 50%;
    height: 600px;
}

.main-block > .image > img {
    max-height: 100%;
    height: 600px;
    object-fit: cover;
}

.main-block > .text > h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #48AF4A;
    font-family: 'ABeeZee', sans-serif;
}

.main-block > .text > h3 {
    font-size: 24px;
    margin-bottom: 8px;
}

.main-block > .text > p {
    margin-bottom: 24px;
}

@media (max-device-width: 690px) {
    .main-block > div,
    .main-block > img {
        width: 100%;
    }

    .main-block > .image {
        display: none;
    }

    .main-block > .text > h2 {
        font-size: 42px;
        margin-bottom: 16px;
        color: #48AF4A;
        font-family: 'ABeeZee', sans-serif;
    }

    .main-block > .text > h3 {
        font-size: 24px;
        margin-bottom: 8px;
    }

    .main-block > .text > p {
        margin-bottom: 24px;
    }
}


/* Big header styles */


.big-heading {
    width: 100%;
    padding: 32px;

    color: #48AF4A;
    font-size: 32px;

    text-align: center;
    font-family: 'ABeeZee', sans-serif;
}
