section.intro {
    padding: 0 0;
    height: 30vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #312664;
    background-size: cover;
    background-repeat: no-repeat;
    background-position-y: center;
    background-position-x: right;
}

section.intro h1 {
    color: #fff;
    font-size: 55px;
    text-align: center;
}

section.intro .links {
    margin-top: 20px;
}

section.intro .links .link {
    display: inline-block;
    padding: 15px 60px;
    font-size: 18px;
    border-radius: 40px;
    margin-right: 20px;
}

section.info {
    padding: 40px 0;
}

section.info h2 {
    color: #312664;
    font-size: 36px;
    text-align: center;
}

section.info h3.subtitle {
    color: #312664;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    margin-top: 20px;
}

section.info .desc {
    color: #312664;
    font-size: 20px;
    text-align: center;
    margin-top: 20px;
    font-weight: 300;
}

section.info .apps {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}

section.info .apps .app img {
    height: 50px;
}

section.info .apps .app {
    display: block;
    margin: 0 10px;
}

section.info .desc .link {
    color: #a73a8d;
    text-decoration: underline;
}

section.phones {
    background-color: #a73a8d;
    padding: 40px 0;
    text-align: center;
}

section.phones .desc {
    color: #fff;
    font-size: 18px;
}

section.phones .phone {
    color: #fff;
    margin-top: 15px;
    margin-bottom: 0;
}

@media screen and (max-width: 992px) {
    section.intro {
        background-size: cover;
    }

    section.intro h1 {
        font-size: 32px;
        text-align: center;
    }

    section.info h2 {
        font-size: 24px;
    }

    section.info h3.subtitle {
        font-size: 19px;
    }

    section.info .desc {
        font-size: 18px;
    }

    section.info .apps {
        flex-direction: column;
    }

    section.info .apps .app {
        margin: 10px 0;
    }
}