body {
    background: #f3f5f7;
}

.btn-plans {
    background-color: #6B5EFF;
    color: #fff;
    text-decoration: none;
    padding: 20px;
    font-size: 0.9em;
    border-radius: 10px 0 10px 0;
}

.btn-plans-div {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding-top: 20px;
}

.btn-plans-div p {
    color: #2A295C;
}

.header {
    width: 100%;
    background-color: #2A295C;
    color: #fff;
    padding: 83px 0;
    margin-bottom: 7px;
    position: relative;
    background-size: cover;
    box-shadow: 0 1px 4px 0 rgb(0 0 0 / 20%);
    background-position: 50%;
    background-image: url('../../assets/images/header-img.png');
}

.header-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 10px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
}

.header-content h1 {
    font-weight: 400;
    font-size: 2em;
    margin-top: 60px;
}

.header-content .container-logo {
    display: flex;
    justify-content: space-between;
}

.container-logo a {
    color: #fff;
}

.container-logo img {
    width: 150px;
}

.main-devices {
    width: 100%;
}

.main-devices-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px 10px;
}

.content-device {
    background: #fff;
    border: 1px solid transparent;
    border-radius: 4px;
    padding: 45px 10px;
    box-shadow: 0 3px 8px 0 rgb(0 0 0 / 3%);
    transition: border .15s linear, transform .15s linear, background-color .15s linear, box-shadow .15s linear, opacity .15s linear;
    margin: 20px 0;
}

.content-device:hover {
    border: 1px solid #e6e8ea;
    box-shadow: 0 3px 8px 0 rgb(0 0 0 / 10%);
}

.content-device a {
    display: flex;
    flex-wrap: wrap;
}

.container-img-device {
    flex-basis: 10%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container-img-device img {
    width: 30px;
}

.container-content-device {
    flex-basis: 90%;
}

.container-content-device h2 {
    color: #2A295C;
    font-weight: 500;
}

.container-content-device p {
    color: #565867;
    margin: 10px 0;
}

.main-app {
    width: 100%;
}

.main-app .main-app-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px 10px;
}

.container-article-app {
    background: #ebeef1;
    padding: 30px;
    border-radius: 6px;
    margin-top: 15px;
}

.path {
    display: flex;
    align-items: center;
}

.path p {
    font-size: 0.8em;
}

.path a {
    color: #4f5e6b;
}

.container-header {
    display: flex;
    flex-wrap: wrap;
}

.content-img-app {
    flex-basis: 10%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px;
}

.content-img-app img {
    width: 60px;
}

.content-header-app {
    flex-basis: 80%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

.content-header-app h1 {
    font-size: 1.6em;
    color: #3a3c4c;
    font-weight: 500;
    line-height: 1.24;
}

.content-header-app p {
    font-size: 0.9em;
}

.title {
    color: #3a3c4c;
}

.content-app {
    background: #fff;
    box-shadow: 0 2px 6px 0 rgb(0 0 0 / 5%);
    border: 1px solid #d4dadf;
    transition: .3s;
    padding: 25px;
}

.content-app:hover {
    background: #ececec;
}

.content-app h3 {
    color: #2A295C;
    font-weight: 500;
}

.content-app p {
    color: #565867;
    font-size: 0.9em;
    margin: 8px 0;
}

.div-bottom {
    display: flex;
    align-items: center;
}

.div-bottom img {
    width: 50px;
}

.main-tutorial {
    width: 100%;
}

.main-tutorial-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px 10px;
}

.container-tutorial {
    background: #fff;
    box-shadow: 0 3px 8px 0 rgb(0 0 0 / 3%);
    padding: 50px 120px;
    margin-top: 15px;
}

.container-tutorial h1 {
    color: #3a3c4c;
    font-weight: 500;
    font-size: 1.4em;
}

.container-tutorial p {
    color: #8F919D;
    font-size: 1em;
    margin-top: 20px;
}

.content-tutorial {
    margin-top: 70px;
}

.content-tutorial iframe {
    width: 100%;
    margin-bottom: 50px;
}

@media(max-width: 750px) {
    .container-img-device {
        flex-basis: 100%;
    }
    .container-content-device {
        flex-basis: 100%;
        text-align: center;
        margin-top: 25px;
    }
    .container-tutorial {
        padding: 50px 30px;
        text-align: center;
    }
}

@media(max-width: 550px) {
    .content-img-app {
        flex-basis: 100%;
    }
    .content-header-app {
        flex-basis: 100%;
        text-align: center;
    }
    .header-content h1 {
        font-size: 1.6em;
    }
}