* {
    -webkit-tap-highlight-color: transparent;
    scroll-behavior: smooth;
}
  
html, body {
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    color: #3E3E3E;
}

/* EDITOR LEXICAL */
.content .inner h2.editor-heading-h2 {
    margin: 20px 0 10px 0;
}

.content .inner p.editor-paragraph {
    margin: 0;
}

.editor-list-ul {
    margin: 0;

    &:last-of-type {
        margin-bottom: 20px;
    }
}

.button {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    height: 44px;
    background: #169FF2;
    border-radius: 8px;
    box-sizing: border-box;
    align-self: stretch;
    margin: 12px 0;
    text-decoration: none;
    color: #ffffff;
    padding: 0 24px;
    font-weight: 600;
    align-self: center;
    margin: 44px 0;
    border: 1px solid #fff;
    transition: background .25s, color .25s, opacity 1s, transform .35s ease-out;
}

.button.outline {
    color: #169FF2;
    border-color: #169FF2;
    background-color: transparent;
}

.button:hover {
    background-color: transparent;
    color: #169FF2;
    border-color: #169FF2;
}

.button.outline:hover {
    background-color: #169FF2;
    color: #ffffff;
}

.content {
    position: relative;
    width: 100%;
    padding: 32px 0 0 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
}

.content .inner {
    width: 100%;
    max-width: 768px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 0;
    box-sizing: border-box;
}

.content .inner h1 {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    font-size: 45px;
    line-height: 61px;
    color: #3E3E3E;
    position: relative;
    margin: 60px 0 48px 0;
}

.content .inner h1:after {
    content: ' ';
    position: absolute;
    width: 48px;
    height: 5px;
    left:0;
    background-color: #169FF2;   
    border-radius: 2px;
    bottom: -16px;
}

.content .inner h2 {
    width: 100%;
    margin: 0;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    font-size: 17px;
    line-height: 23px;
    color: #3E3E3E;
    margin: 8px 0 0 0;
}

.content .inner p {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 17px;
    line-height: 23px;
    color: #3E3E3E;
    width: 100%;
    margin: 8px 0 20px 0;
}

.content .inner .summery {
    padding: 0;
    margin: 24px 0;
    list-style: none;
    width: 100%;
}

.content .inner .summery li {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 17px;
    line-height: 23px;
    color: #3E3E3E;
}

.content .inner .share {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 0 80px 0;
}

.content .inner .share p {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 27px;
    text-align: center;
    color: #3E3E3E;
}

.content .share .socials > div {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.content .share .socials > div .button {
    width: 32px;
    height: 32px;
    background: #169FF2;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin: 0 8px;
    padding: 0;
    border: none;
}

.content .share .socials > div .button.fb,
.content .share .socials > div .button.wa {
    display: none;
}

.content .share .socials > div .button svg {
    width: 16px;
}


@media only screen and (max-width: 1200px) {
    
    .content .inner {
        padding: 0 32px 0 32px;
    }

    .content .inner h1 {
        font-family: 'Open Sans';
        font-style: normal;
        font-weight: 700;
        font-size: 24px;
        line-height: 33px;    
        color: #3E3E3E;
        text-align: left;
        width: 100%;
    }

    .content .inner h1::after {
        width: 32px;
        height: 4px;
        left: 20px;
        bottom: -16px;
    }

    .content .inner h1::after {
        margin: 0;
        left: 0;
    }
}

@media only screen and (max-width: 732px) {

    .content .button {    
       align-self: stretch;
    }

    .content .share .socials > div .button.fb,
    .content .share .socials > div .button.wa {
        display: flex;
    }
}
