.ppc {
    padding-top: 0;
}

.checked-list {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    display: flex;
    gap: 16px;
    padding: 0;
    list-style: none;
    flex-direction: column;
    text-align: left;
}

.checked-list li {
    padding-left: 26px;
    position: relative;
}

.checked-list li .icon {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #1BD185;
}

@media (min-width: 992px) {
    .checked-list {
        font-size: 20px;
    }

    .checked-list li {
        padding-left: 32px;
    }

    .checked-list li .icon {
        width: 26px;
        height: 26px;
    }
}

.api {
    background-color: #001122;
    position: relative;
    overflow: hidden;
    z-index: 0;
}

.api::before, .api::after {
    content: "";
    display: block;
    position: absolute;
    z-index: -2;
}

.api::before {
    background: -o-linear-gradient(269.89deg, #001122 0.09%, rgba(0, 17, 34, 0.5) 99.91%), url(../images/vetor.svg) no-repeat center;
    background: linear-gradient(180.11deg, #001122 0.09%, rgba(0, 17, 34, 0.5) 99.91%), url(../images/vetor.svg) no-repeat center;
    background-size: cover;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.api::after {
    background-color: rgba(20, 82, 255, 0.5882352941);
    -webkit-box-shadow: 0px 0px 45px 45px rgba(20, 82, 255, 0.33), 0px 0px 90px 90px rgba(20, 82, 255, 0.25), 0px 0px 135px 135px rgba(20, 82, 255, 0.2);
    box-shadow: 0px 0px 45px 45px rgba(20, 82, 255, 0.33), 0px 0px 90px 90px rgba(20, 82, 255, 0.25), 0px 0px 135px 135px rgba(20, 82, 255, 0.2);
    border-radius: 50%;
    border: none;
    bottom: -500px;
    left: calc(50% - 400px);
    width: 800px;
    height: 800px;
}

@media (min-width: 992px) {
    .api::after {
        background-color: #1452FF;
        -webkit-box-shadow: 0px 0px 45px 45px #1452FF, 0px 0px 90px 90px #1452FF, 0px 0px 135px 135px #1452FF, 0px 0px 180px 180px #1452FF;
        box-shadow: 0px 0px 45px 45px #1452FF, 0px 0px 90px 90px #1452FF, 0px 0px 135px 135px #1452FF, 0px 0px 180px 180px #1452FF;
    }
}

.api-bg {
    background: url(../images/ruido.png);
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.api-content {
    text-align: center;
    color: #fff !important;
}

.api-content .p1 span {
    color: #1BD185;
}

.api-content .btn {
    width: 100%;
    margin-top: 24px;
    margin-bottom: 28px;
}

.api-content img {
    margin-left: -20px;
    margin-right: -20px;
}

@media (min-width: 768px) {
    .api-content .h2 {
        margin-bottom: 20px;
    }

    .api-content .p1 {
        max-width: 1200px;
        margin-right: auto;
        margin-left: auto;
    }

    .api-content .btn {
        width: auto;
        margin-bottom: 20px;
    }

    .api-content img {
        width: 100%;
        max-width: 1106px;
        height: auto;
    }
}

.api-code {
    width: 100%;
    height: 325px;
    margin-top: 20px;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
    background-color: #152E4C;
    border: 1px solid #3A5F82;
}

.api-code-tab {
    width: 100%;
    height: 32px;
    background-color: #0A1F37;
    border-width: 0 0 1px 0;
    border-style: solid;
    border-color: #3A5F82;
}

.api-code-tab::before {
    content: "login.js";
    font-family: inconsolata, Monaco, "Andale Mono", "Ubuntu Mono", monospace;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    line-height: 21px;
    background-color: #152E4C;
    width: 25%;
    min-width: 115px;
    height: 32px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 0 8px 0 0;
    border-color: #3A5F82;
    border-width: 0 1px 0 0;
    border-style: solid;
    padding-top: 5px;
}

.api-code pre[class*=language-] {
    margin: 0;
    margin-top: 10px;
    background-color: #152E4C;
    height: calc(100% - 42px);
    overflow-x: auto;
    overflow-y: hidden;
}

.api-code pre[class*=language-]::-webkit-scrollbar {
    height: 1em;
}

.api-code pre[class*=language-]::-webkit-scrollbar-track {
    background: #152E4C;
    border-radius: 100vw;
}

.api-code pre[class*=language-]::-webkit-scrollbar-thumb {
    background: #3A5F82;
    border: 5px solid #152E4C;
    border-radius: 100vw;
}

@supports (scrollbar-color: #3A5F82 #152E4C) {
    .api-code pre[class*=language-] {
        scrollbar-color: #3A5F82 #152E4C;
        scrollbar-width: thin;
    }
}

.api-code pre[class*=language-].line-numbers {
    position: relative;
    padding: 1em;
    padding-left: 3.8em;
    counter-reset: linenumber;
}

.api-code pre[class*=language-].line-numbers > code {
    position: relative;
    white-space: inherit;
}

.api-code .line-numbers .line-numbers-rows {
    position: absolute;
    pointer-events: none;
    top: 0;
    font-size: 100%;
    left: -3.8em;
    width: 3em;
    letter-spacing: -1px;
    border-right: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.api-code .line-numbers .line-numbers-rows > span {
    display: block;
    counter-increment: linenumber;
}

.api-code .line-numbers .line-numbers-rows > span::before {
    content: counter(linenumber);
    color: #55718d;
    display: block;
    padding-right: 0.8em;
    text-align: right;
}

.api-code code[class*=language-], .api-code pre[class*=language-] {
    font-family: Consolas, Monaco, "Andale Mono", "Ubuntu Mono", monospace;
    font-size: 1em;
    white-space: pre;
    word-spacing: normal;
    word-break: normal;
    word-wrap: normal;
    line-height: 1.5;
    -moz-tab-size: 4;
    -o-tab-size: 4;
    tab-size: 4;
    -webkit-hyphens: none;
    -ms-hyphens: none;
    hyphens: none;
}

.api-code .namespace {
    opacity: 0.7;
}

.api-code .token.punctuation {
    color: #f8f8f2;
}

.api-code .token.property {
    color: #ff79c6;
}

.api-code .token.string {
    color: #50fa7b;
}

.api-code .token.operator {
    color: #f8f8f2;
}

.api-code .token.function {
    color: #f1fa8c;
}

.api-code .token.keyword {
    color: #8be9fd;
}

.api-code .token.object, .api-code .token.parameter {
    color: #ccc;
}

@media (min-width: 992px) {
    .api-content .h2 {
        font-size: 36px;
        line-height: 110%;
    }

    .api-code {
        height: 428px;
        margin-top: 44px;
    }
}

.features .row {
    gap: 20px;
}

.features .row > * {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

@media screen and (min-width: 992px) {
    .features .row {
        gap: 6px;
    }
}

.features .h2 {
    text-align: center;
    font-weight: 700;
    margin-bottom: 40px;
}

.features .h4 {
    font-weight: 700;
}

.features .h4::before {
    display: block;
    font-size: 14px;
    line-height: 21px;
    color: #16A86B;
    -webkit-transform: translateY(-16px);
    -ms-transform: translateY(-16px);
    transform: translateY(-16px);
}

.features .p2 {
    color: #384756;
    margin-bottom: 32px;
}

@media screen and (max-width: 767px) {
    .features .btn-outline-primary {
        width: 100%;
    }
}

@media screen and (min-width: 992px) {
    .features .h2 {
        margin-bottom: 64px;
    }
}

.features-personalization, .features-security, .features-organization {
    background: -o-linear-gradient(6.31deg, #FFFFFF -32.02%, #F3F7FC 32.32%, #F5F7FB 64.02%, #F3F6FB 87.6%, #E8F2FD 113.13%, #D5EBFF 140.43%);
    background: linear-gradient(83.69deg, #FFFFFF -32.02%, #F3F7FC 32.32%, #F5F7FB 64.02%, #F3F6FB 87.6%, #E8F2FD 113.13%, #D5EBFF 140.43%);
    border-radius: 16px;
    padding: 61px 20px 0;
}

@media screen and (min-width: 992px) {
    .features-personalization .h4, .features-security .h4, .features-organization .h4 {
        margin-bottom: 20px;
    }
}

.features-security, .features-organization {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 32px;
    overflow: hidden;
    height: 100%;
}

.features-security img, .features-organization img {
    width: 100%;
    max-width: 440px;
    height: auto;
    -webkit-box-shadow: 0px 11.2597px 11.2597px rgba(108, 129, 147, 0.18);
    box-shadow: 0px 11.2597px 11.2597px rgba(108, 129, 147, 0.18);
}

@media screen and (min-width: 768px) and (max-width: 991px) {
    .features-security picture, .features-organization picture {
        -ms-flex-item-align: center;
        align-self: center;
    }
}

@media screen and (min-width: 992px) {
    .features-security, .features-organization {
        padding: 77px 56px 0;
    }

    .features-security img, .features-organization img {
        max-width: 458px;
    }
}

.features-personalization {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.features-personalization .h4::before {
    content: "PERSONALIZAÇÃO";
}

.features-personalization picture {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.features-personalization img {
    margin-right: -40px;
    margin-left: -40px;
    width: 330px;
    height: 237px;
}

@media screen and (min-width: 768px) {
    .features-personalization {
        grid-template-columns: 1fr 1fr;
        padding-bottom: 20px;
    }

    .features-personalization img {
        margin-right: -20px;
        margin-left: -20px;
    }
}

@media screen and (min-width: 992px) {
    .features-personalization {
        padding: 45px 56px 10px;
        margin-bottom: 24px;
    }

    .features-personalization img {
        width: 100%;
        max-width: 549px;
        height: auto;
    }
}

.features-security .h4::before {
    content: "Segurança";
    text-transform: uppercase;
}

.features-organization .h4::before {
    text-transform: uppercase;
    content: "Organização";
}

.features .banner-cta-1 {
    position: relative;
    overflow: hidden;
    z-index: 0;
    padding-top: 40px;
    padding-left: 20px;
    padding-right: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background: url(../images/vetor.svg) no-repeat center, -o-linear-gradient(248.22deg, #00BE68 0%, #069E95 51.09%, #1452FF 100%);
    background: url(../images/vetor.svg) no-repeat center, linear-gradient(201.78deg, #00BE68 0%, #069E95 51.09%, #1452FF 100%);
    background-size: cover;
    border-radius: 16px;
}

.features .banner-cta-1-content {
    text-align: center;
    margin-bottom: 16px;
}

.features .banner-cta-1-content .h3 {
    color: #fff;
    margin-bottom: 32px;
}

@media (max-width: 991px) {
    .features .banner-cta-1-content .btn-lg {
        padding: 11px 16px 11px 24px;
    }
}

.features .banner-cta-1::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.5;
    background: url(../images/ruido.png);
    background-repeat: repeat;
}

@media (min-width: 992px) {
    .features .banner-cta-1 {
        padding: 0 56px;
        background: url(../images/vetor.svg) no-repeat center, -o-linear-gradient(353.67deg, #00BE68 -20.97%, #069E95 49.03%, #1452FF 116.06%);
        background: url(../images/vetor.svg) no-repeat center, linear-gradient(96.33deg, #00BE68 -20.97%, #069E95 49.03%, #1452FF 116.06%);
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }

    .features .banner-cta-1 > * {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
    }

    .features .banner-cta-1 picture {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
    }

    .features .banner-cta-1-content {
        text-align: left;
    }

    .features .banner-cta-1 img {
        width: 100%;
        height: auto;
        max-width: 514px;
    }
}

@media screen and (min-width: 992px) {
    .features .banner-cta-1 {
        margin-top: 24px;
    }
}

.features-1 .banner-cta-1 {
    margin-top: 80px;
    overflow: hidden;
    background: url(../images/vetor.svg) no-repeat center, linear-gradient(160deg, #1452FF 0%, #069E95 60%, #00BE68 100%);
}

.features-1 .banner-cta-1 .h2 {
    color: #fff;
    margin-bottom: 16px;
}

.features-1 .banner-cta-1 .banner-cta-1-content {
    margin-bottom: 40px;
}

.features-1 .banner-cta-1 picture {
    text-align: right;
    width: calc(100% + 40px);
}

.features-1 .checked-list {
    color: #EBF1FF;
    margin-bottom: 24px;
}

@media (min-width: 992px) {
    .features-1 .banner-cta-1 {
        padding-right: 0;
        padding-bottom: 0;
        margin-top: 120px;
    }

    .features-1 .banner-cta-1 .h2 {
        font-size: 40px;
        text-align: left;
        margin-bottom: 24px;
    }

    .features-1 .banner-cta-1 .banner-cta-1-content {
        margin-bottom: 0;
        padding-bottom: 80px;
        padding-top: 80px;
    }

    .features-1 .banner-cta-1 picture {
        margin-top: auto;
        flex: 0 0 627px;
    }

    .features-1 .banner-cta-1 img {
        width: 627px;
        max-width: 100%;
    }
}

@media (max-width: 991px) {
    .features-1 .checked-list {
        display: inline-flex;
    }
}

@media (min-width: 992px) {
    .features-1 .checked-list {
        margin-bottom: 32px;
    }
}

.animation {
    overflow: hidden;
    background-color: #EDF2F7;
    padding-top: 64px;
    padding-bottom: 64px;
    
    @media (min-width: 992px) {
        padding-top: 120px;
        padding-bottom: 120px;
    }
}

.animation .h2 {
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    
    @media (min-width: 992px) {
        font-size: 40px;
    }
}

.animation .h2 strong {
    color: #1BD185;
}

@media (min-width: 992px) {
    .animation .h2 {
        margin-bottom: 56px;
    }
}

.animation-image {
    display: block;
    margin: 40px auto;
    max-width: 100%;
    width: 902px;
    
    @media (min-width: 992px) {
        margin: 64px auto;
    }
}

.animation .animation-list {
    list-style: none;
    padding: 0;
    margin-bottom: 16px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    gap: 16px;
    -webkit-animation: animation 40s linear infinite;
    animation: animation 40s linear infinite;
}

.animation .animation-list:hover {
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
}

@media (min-width: 992px) {
    .animation .animation-list {
        margin-bottom: 30px;
    }
}

.animation .animation-list-item {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 600;
    color: #001122;
    background-color: #F5F7FB;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    border-radius: 12px;
    padding: 12px 16px 12px 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6px;
}

.animation .animation-list-item .icon {
    width: 24px;
    height: 24px;
}

@media (min-width: 992px) {
    .animation .animation-list-item {
        padding: 17px 24px 17px 22px;
        font-size: 20px;
    }

    .animation .animation-list-item .icon {
        width: 26px;
        height: 26px;
    }
}

.animation .animation-list.reverse {
    animation: animation 40s linear infinite reverse;
    margin-bottom: 0;
}

.animation .animation-list.reverse:hover {
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
}

@-webkit-keyframes animation {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
}

@keyframes animation {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
}

.faq-bg {
    background: #EDF2F7;
    padding-top: 80px;
    padding-bottom: 80px;
    
    @media (min-width: 992px) {
        padding-top: 120px;
        padding-bottom: 120px;
    }
}


.faq {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.faq-title .p2 {
    color: #384756;
    margin-bottom: 40px;
}

.faq .accordion {
    width: 100%;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
}

.faq .accordion-item {
    border-radius: 16px;
    background-color: #fff;
}

.faq .accordion-header {
    padding: 20px;
    width: 100%;
    margin-bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 10px;
}

.faq .accordion-header button {
    font-weight: 700;
    color: initial;
    border: none;
    background-color: transparent;
    text-align: left;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
}

.faq .accordion-header button > span {
    display: block;
    width: 14px;
    height: 2px;
    background-color: #8C97A0;
}

.faq .accordion-header button > span::before {
    content: "";
    display: block;
    background-color: #1452FF;
    width: 14px;
    height: 2px;
    -webkit-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
}

.faq .accordion-header button.collapsed > span::before {
    -webkit-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg);
    background-color: #8C97A0;
}

.faq .accordion-body {
    padding: 0 20px 20px;
    color: #384756;
}

@media (min-width: 992px) {
    .faq {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        gap: 100px;
    }

    .faq .accordion {
        max-width: 770px;
    }

    .faq .accordion-header {
        padding: 24px;
    }

    .faq .accordion-body {
        padding: 0 24px 24px;
    }

    .faq-title {
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
    }

    .faq-title .h2 {
        margin-bottom: 20px;
    }
}

.digital-contract {
    margin-top: 64px;
    margin-bottom: 64px;

    @media (min-width: 992px) {
        margin-top: 120px;
        margin-bottom: 120px;
    }

    .h2 {
        text-align: center;
        margin-bottom: 50px;
    }
}

.digital-contract .legislation-content {
    background-color: #F5F7FB;
    padding: 40px 20px;
    border-radius: 16px;
    display: grid;
    grid-template-columns: 1fr;
}

.digital-contract .legislation .b2 {
    color: #1452FF;
    font-weight: 600;
    margin-bottom: 12px;
}

.digital-contract .legislation .h5 {
    font-weight: 700;
}

.digital-contract .legislation .p2:nth-child(1) {
    margin-bottom: 24px;
}

.digital-contract .legislation .p2:nth-child(2) {
    margin-bottom: 0;
}

@media (min-width: 992px) {
    .digital-contract .legislation-content {
        padding: 56px;
        grid-template-columns: 1fr 2fr;
    }
}

.ppc-hero {
    padding: 24px 0 40px;
    background-color: #001122;
    color: #fff;

    @media (min-width: 992px) {
        padding: 64px 0 56px;
    }

    .highlight {
        color: #1AEE95;
    }
}

.ppc-hero-logo {
    margin-bottom: 24px;
    display: block;

    @media (min-width: 992px) {
        margin-bottom: 48px;
        width: 185px;
        height: 40px;
        margin-top: 24px;
    }
}

.ppc-hero-title {
    margin-bottom: 32px;
    position: relative;
    z-index: 0;

    @media (min-width: 992px) {
        margin-bottom: 48px;
    }
}

.ppc-hero-list {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;

    @media (min-width: 992px) {
        font-size: 18px;
    }

    li {
        position: relative;
        padding-left: 34px;

        .icon {
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
        }
    }

    li + li {
        margin-top: 16px;
    }
}

.hero-highlight {
    color: #1AEE95;
    position: relative;
    margin-right: 6px;
    margin-left: 6px;
    display: inline-block;
}

.hero-highlight:before {
    content: "";
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 165 71'%3E%3Cg clip-path='url(%23a)'%3E%3Cpath fill='%230D3A67' d='M61.617 57.959c-15.074-.802-26.57-1.846-37.837-4.993-4.073-1.106-8.02-2.91-11.895-4.708-1.719-.832-3.313-2.363-4.678-3.977-2.325-2.694-2.274-5.416.153-8.166 1.542-1.805 3.364-3.388 5.171-4.77 4.78-3.486 9.915-5.734 15.035-7.782 12.682-5.027 25.653-7.913 38.69-9.684 14.83-1.942 29.534-2.177 44.247-.494 10.817 1.196 21.567 3.296 32.096 6.39 5.955 1.748 11.902 3.597 17.857 5.346.074.005.148.01.214.117 1.527.414 2.531-.118 2.774-1.412.391-1.284-.288-2.142-1.875-2.763-10.131-3.467-20.336-6.94-30.71-9.114-11.179-2.333-22.409-3.964-33.808-4.294-19.316-.608-38.544 1.618-57.711 7.079-7.577 2.17-15.043 4.854-22.31 8.865-3.327 1.876-6.544 4.265-9.686 6.66-1.335 1.012-2.574 2.739-3.585 4.38-2.272 3.67-2.367 8.005-.175 11.497 1.263 2.01 2.916 3.747 4.672 5.087 4.066 3.225 8.626 4.77 13.201 6.116 14.839 4.014 29.876 5.318 45.075 5.422 6.153.047 12.307.094 18.475-.06 7.954-.225 15.988-.545 23.972-1.172 7.533-.558 15.014-1.424 22.525-2.69 4.205-.702 8.462-2.106 12.572-3.521 1.977-.663 3.932-2.034 5.673-3.522 3.813-3.456 4.41-8.56 1.716-13.301-1.572-2.841-3.742-4.615-6.074-6.2-5.158-3.507-10.707-5.73-16.359-7.558a74.408 74.408 0 0 0-23.825-3.865c-2-.046-2.944.692-2.981 2.204-.021 1.31.82 1.978 2.657 2.214 4.781.552 9.577.903 14.336 1.757 8.124 1.503 16.012 4.201 23.391 8.78 1.705 1.034 3.314 2.363 4.76 3.882 3.292 3.674 2.901 6.977-1.06 9.412-1.867 1.176-3.859 2.04-5.91 2.697-6.315 2.162-12.697 3.209-19.116 3.748-12.159.926-24.392 1.847-36.514 2.272-8.861.461-17.811.108-23.153.12Z'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Cpath fill='%23fff' d='M164.342 12.434 4.889.753.66 58.485l159.453 11.682z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    width: 106px;
    z-index: -1;
    height: 50px;
    top: calc(50% + 2px);
    left: 50%;
    transform: translate(-50%, -50%);
}

@media (min-width: 1200px) {
    .hero-highlight:before {
        width: 164px;
        height: 96px;
        top: calc(50% + 15px);
        left: calc(50% + 5px);
    }
}


.box-form {
    background-color: #FFFFFF;
    padding: 32px 24px;
    color: #567;
    box-shadow: 0px 10px 40px 0px rgba(28, 44, 60, 0.08);
    border-radius: 16px;
    border: 1px solid #D7E7FF;

    @media (max-width: 991px) {
        margin-top: 30px;
    }

    @media (min-width: 992px) {
        padding: 32px;
        max-width: 464px;
        margin-left: auto;
    }
}

.box-form-content {
    max-width: 470px;
    margin: auto;
}

.box-form-title {
    color: #1C2C3C;
    font-size: 32px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.384px;
    margin-bottom: 10px;
    font-weight: 600;
}

.box-form-social {
    margin-top: 32px;
    margin-bottom: 16px;

    iframe{
        margin-left: auto !important;
        margin-right: auto !important;
    }
}

.box-form-or {
    text-align: center;
    line-height: 1.35;
    letter-spacing: -0.32px;
    margin-top: 16px;
    margin-bottom: 16px;
}

.box-form-fields {
    .btn {
        width: 100%;
        margin-top: 24px;
        display: block;

        svg {
            transition: color 0.3s ease;
            position: relative;
            bottom: 1px;
        }
    }
}

.login-btn {
    display: block;
    border-radius: 5px;
    border: 1px solid #D5DFE8;
    padding: 15px;
    background: #FFF;
    color: #142573;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    position: relative;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease;
}

.login-btn:hover {
    background: #D5DFE8;
    color: #1452FF;
    text-decoration: none;
}

.login-btn svg {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
}

.form-helper {
    color: #54626F;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.35;
    margin-top: 6px;
}

.form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    width: 100%;
    max-width: 470px;
    margin: auto;
}

.form-group {
    position: relative;
    width: 100%;
}

.form-group > label {
    color: #54626F;
    padding-left: 17px;
    padding-right: 17px;
    pointer-events: none;
    position: absolute;
    -webkit-transition: all 0.15s ease;
    -o-transition: all 0.15s ease;
    transition: all 0.15s ease;
    top: 15px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.form-group:not(.has-error) .help-block, .form-group:not(has-success) .help-block {
    visibility: hidden;
}

.form-group.has-error .form-control, .form-group.has-error .select2-container .select2-selection--single {
    border-color: #f00;
    outline: 1px solid #f00;
}

.form-group.has-error .form-control ~ .help-block {
    color: #f00;
    visibility: visible;
    margin-top: 2px;
}

.form-group.has-success .form-control {
    border-color: #1BD185;
    outline: 1px solid #1BD185;
}

.form-group.has-success .form-control ~ .help-block {
    visibility: hidden;
}

.form-control {
    background-color: #fff;
    color: #1C2C3C;
    display: block;
    height: 56px;
    padding: 16px;
    -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    -o-transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    width: 100%;
    border-radius: 5px;
    border: 1px solid #D5DFE8;
}

.form-control:focus-visible {
    outline-color: #142573;
}

.form-control[placeholder]:not(:-moz-placeholder-shown) {
    padding-top: 22px;
    padding-bottom: 10px;
}

.form-control[placeholder]:not(:-ms-input-placeholder) {
    padding-top: 22px;
    padding-bottom: 10px;
}

.form-control[placeholder]:focus, .form-control[placeholder]:not(:placeholder-shown) {
    padding-top: 22px;
    padding-bottom: 10px;
}

.form-control[placeholder]:not(:-moz-placeholder-shown) ~ label {
    color: #142573;
    font-size: 11px;
    line-height: 12px;
    font-weight: 500;
    top: 10px;
}

.form-control[placeholder]:not(:-ms-input-placeholder) ~ label {
    color: #142573;
    font-size: 11px;
    line-height: 12px;
    font-weight: 500;
    top: 10px;
}

.form-control[placeholder]:focus ~ label, .form-control[placeholder]:not(:placeholder-shown) ~ label {
    color: #142573;
    font-size: 11px;
    line-height: 12px;
    font-weight: 500;
    top: 10px;
}

.group-password.has-error .form-control,
.group-password .has-error .form-control,
.group-password .form-control.error {
    background-image: none !important;
}

.group-password {
    position: relative;
}

.toggle-password {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 18 16'%3E%3Cpath stroke='%238C97A0' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m2.855 14 12.5-12M6.976 12.7A6.657 6.657 0 0 0 9 13c2.733.046 5.505-1.875 7.216-3.758.38-.422.38-1.062 0-1.484a13.712 13.712 0 0 0-2.05-1.838M10.609 4.188A6.367 6.367 0 0 0 8.999 4c-2.686-.045-5.466 1.834-7.213 3.756a1.109 1.109 0 0 0 0 1.484 13.872 13.872 0 0 0 1.733 1.6'/%3E%3Cpath stroke='%238C97A0' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6.5 8.5A2.5 2.5 0 0 1 9 6M11.5 8.5v0A2.5 2.5 0 0 1 9 11'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    top: 16px;
    cursor: pointer;
    display: block;
    height: 24px;
    position: absolute;
    right: 15px;
    width: 24px;
    z-index: 999;
}

.toggle-password.show {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 18 17'%3E%3Cpath stroke='%238C97A0' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M9 4c-2.687-.045-5.467 1.833-7.214 3.757a1.109 1.109 0 0 0 0 1.484c1.71 1.883 4.48 3.804 7.214 3.758 2.733.046 5.505-1.876 7.216-3.758.38-.422.38-1.062 0-1.484C14.466 5.833 11.687 3.955 9 4Z' clip-rule='evenodd'/%3E%3Cpath stroke='%238C97A0' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M11.5 8.5a2.5 2.5 0 1 1-5-.001 2.5 2.5 0 0 1 5 .001v0Z' clip-rule='evenodd'/%3E%3C/svg%3E");
}

.ppc-footer {
    background-color: #121217;
    padding: 24px 0;
    color: #A8B2B8;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    text-align: center;

    @media (min-width: 768px) {
        padding: 64px 0 24px;
        text-align: inherit;
    }
}

.ppc-footer-logo {
    @media (max-width: 767px) {
        margin-bottom: 24px;
    }
}
.ppc-footer-regulated-img {
    display: flex;
    gap: 20px;
    justify-content: center;
}
.ppc-footer-copy {
    margin-top: 32px;
    padding-top: 32px;
    color: #4C4C4C;
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    border-top: 1px solid #202932;

    @media (min-width: 768px) {
        margin-top: 50px;
        text-align: left;
    }

    img {
        @media (max-width: 767px) {
            margin-top: 24px;
        }
    }

    .row div:nth-child(2) {
        text-align: right;
    }
}

.ppc-footer-content {
    @media (min-width: 768px) {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
}