.domain-section {
    max-width: 1464px;
    padding: 80px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    align-items: center;
}

.domain-section h2 {
    font-size: 24px;
    line-height: 28px;
    font-weight: 400;
}

.domain-images-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.domain-section p.subheading {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 14px;
    max-width: 343px;
}

.domain-card {
    margin: 6px 0;
    padding: 32px 20px;
    background: #ffffff;
    border-radius: 20px;
    max-height: 412px;
    cursor: pointer;
}

.domain-card p {
    max-width: 490px;
    margin-top: 12px;
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 20px;
}

.domain-card a {
    display: inline-flex;
    text-decoration: none;
    color: inherit;
}

.domain-card .control-button {
    padding: 12px 20px;
}

@media only screen and (min-width: 768px) {

}

@media only screen and (min-width: 992px) {
    .domain-section {
        padding: 80px 0;
    }

    .domain-section h2 {
        font-size: 32px;
        line-height: 32px;
    }

    .domain-section p.subheading {
        font-size: 20px;
        line-height: 24px;
    }

    .domain-card p {
        font-size: 20px;
        line-height: 24px;
    }

    .domain-images-container {
        flex-direction: row;
        margin: 0 -16px 0 -16px;
    }

    .domain-card {
        margin: 26px 16px 40px;
        max-width: 456px;
    }

    .domain-card img {
        transform-origin: bottom;
        transition: transform .4s ease-in-out;
    }

    .domain-card:nth-child(1):hover img {
        transform: rotate(5deg) scale(1.11);
    }

    .domain-card:nth-child(2):hover img {
        transform: scale(1.11);
    }

    .domain-card:nth-child(3):hover img {
        transform: rotate(-5deg) scale(1.11);
    }
}

@media only screen and (min-width: 1200px) {

}