@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style-type: none;
    text-decoration: none;
}

:root {
    --blue: #3445F6;
    --blue-light: #4D5BF5;
    --blue-dark: #1529F9;
    --light-1: #F2F2F3;
    --light-2: #E5E5E7;
    --light-3: #D7D7DB;
    --light-4: #C9CACF;
    --light-5: #BCBDC2;
    --dark-1: #252527;
    --dark-2: #313235;
    --dark-3: #3E3E42;
    --dark-4: #4A4B4F;
    --dark-5: #57575C;
}

html {
    scroll-behavior: smooth;
}

body {
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    background-color: var(--light-1);
}

h1,
h2,
h3,
h4 {
    font-weight: bold;
}

h1 {
    color: var(--light-1);
}

.title {
    width: 100%;
    text-align: center;
}

.title h2 {
    margin-top: 8px;
    color: var(--light-1);
}

.title span {
    text-transform: uppercase;
    color: var(--blue);
}

.title p {
    margin-top: 16px;
    color: var(--dark-5);
}

.btn {
    padding: 16px 32px;
    background: var(--blue);
    color: var(--light-1);
    text-align: center;
    transition: 300ms ease-in-out;
    border: none;
}

.btn:hover {
    background: var(--blue-dark);
}

.container {
    padding: 32px 24px;
}

.reveal {
    position: relative;
    transform: translateY(150px);
    opacity: 0;
    transition: 1s all ease;
}

.reveal.active {
    transform: translateY(0);
    opacity: 1;
}

header {
    position: relative;
    width: 100%;
    height: 100vh;
}

.nav,
.header_slider {
    position: absolute;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 16px 24px;
    z-index: 1;
}

.nav_menu {
    display: none;
}

.header_slider,
.header_slider_content {
    width: 100%;
    height: 100vh;
}

.header_slider {
    overflow: hidden;
}

.header_slider_tracker {
    display: inline-flex;
    transition: 500ms ease-in-out;
}

.header_slider_content {
    position: relative;
    flex-shrink: 0;
    flex-grow: 1;
    background-color: var(--dark-1);
}

.header_slider_content img {
    width: 100%;
    height: 100vh;
    display: block;
    object-fit: cover;
    object-position: 80%;
}

.effect-slider {
    position: relative;
}

.effect-slider::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100vh;
    background: linear-gradient(90deg, #252527 0%, rgba(37, 37, 39, 0) 50%), linear-gradient(180deg, #252527 0%, rgba(37, 37, 39, 0) 100%);
}

.header_slider_1_text {
    position: absolute;
    width: calc(100% - 48px);
    top: 50%;
    left: 50%;
    transform: translate(-25%, -50%);
    text-align: center;
    z-index: 1;
    opacity: 0;
    animation: opentext 2s ease-in-out;
    animation-fill-mode: forwards;
}

@keyframes opentext {
    0% {
        opacity: 0;
        transform: translate(-25%, -50%);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.header_slider_1_text p {
    color: var(--light-5);
    margin-top: 8px;
}

.header_arrow {
    position: absolute;
    left: 50%;
    bottom: 32px;
    transform: translateX(-50%);
    animation: header_arrow 1s infinite ease-in-out;
}

@keyframes header_arrow {
    0% {
        bottom: 32px;
    }
    50% {
        bottom: 64px;
    }
    100% {
        bottom: 32px;
    }
}

.about-us {
    background: var(--dark-1);
}

.about-us_content {
    display: flex;
    flex-direction: column;
    padding: 32px 24px;
}

.about-us_text {
    display: flex;
    flex-direction: column;
    margin-top: 16px;
    gap: 16px;
    text-align: center;
}

.about-us_text p {
    color: var(--light-5);
}

.disclaimer {
    padding: 16px 0;
    background: linear-gradient(to right, var(--blue), var(--blue-dark));
}

.our-process {
    background: var(--dark-1);
}

.our-process_content {
    padding: 32px 24px;
}

.our-process_items {
    display: flex;
    flex-direction: column;
    margin-top: 64px;
    gap: 32px;
}

.our-process_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.our-process_item span {
    display: inline-flex;
    font-size: 1.4rem;
    font-weight: bold;
    padding: 8px;
    border: 3px solid var(--blue);
    border-radius: 50%;
    color: var(--blue);
    margin-bottom: 16px;
}

.our-process_item h3 {
    color: var(--light-1);
    margin-bottom: 8px;
}

.our-process_item p {
    color: var(--light-5);
}

.our-process_cta {
    display: block;
    margin-top: 32px;
}

.our-projects .title h2 {
    color: var(--dark-1);
}

.our-projects_slider {
    width: 100%;
    height: 250px;
    margin-top: 64px;
    overflow: hidden;
    position: relative;
}

.our-projects_slider_tracker {
    display: inline-flex;
    transition: 300ms ease-in-out;
}

.our-projects_slider_content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 0 0 100%;
}

.our-projects_slider_content img {
    width: 80%;
    height: 250px;
    object-fit: cover;
    border: 12px solid var(--light-5);
    box-shadow: 10px 10px 10px rgba(0, 0, 0, .1);
}

.our-projects_slider_left,
.our-projects_slider_right {
    position: absolute;
    border: 1px solid var(--light-5);
    padding: 2px;
    z-index: 1000;
    cursor: pointer;
    top: 50%;
    transform: translateY(-50%);
}

.our-projects_slider_left {
    left: 0;
}

.our-projects_slider_right {
    right: 0;
}

.our-clients_slider {
    display: flex;
    justify-content: space-between;
    margin-top: 32px;
    overflow: hidden;
    position: relative;
}

.our-clients_tracker {
    display: inline-flex;
    width: 100%;
    transition: 300ms ease-in-out;
}

.our-clients_tracker_content {
    width: 100%;
    flex: 0 0 100%;
    text-align: center;
}

.our-clients_tracker_content img {
    width: 100px;
}

.our-clients .title h2 {
    color: var(--dark-1);
}

.our-partners .title h2 {
    color: var(--dark-1);
}

.our-partners_slider {
    position: relative;
    margin-top: 32px;
    overflow: hidden;
}

.our-partners_tracker {
    display: inline-flex;
    width: 100%;
    transition: 300ms ease-in-out;
}

.our-partners_tracker_content {
    width: 100%;
    flex: 0 0 100%;
    text-align: center;
}

.our-partners_tracker_content img {
    width: 100px;
}

.disclaimer {
    display: flex;
    overflow: hidden;
}

.disclaimer_tracker {
    display: inline-flex;
    gap: 16px;
    animation: disclaimer 15s infinite linear;
}

@keyframes disclaimer {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100vh);
    }
}

.disclaimer_items {
    display: flex;
    white-space: nowrap;
    gap: 16px;
}

.disclaimer_label {
    display: flex;
    align-items: center;
    color: var(--light-1);
    letter-spacing: 1px;
    font-size: .8rem;
    text-transform: uppercase;
    gap: 16px;
}

.disclaimer_label::after {
    content: '';
    width: 8px;
    height: 8px;
    background-color: var(--light-1);
    transform: rotate(45deg);
}

.our-solutions {
    background: var(--blue);
    border-radius: 16px;
}

.our-solutions_content .title span {
    display: flex;
    flex-direction: column;
    gap: 16px;
    color: var(--light-1);
}

.our-solutions_content .title span::before {
    content: url("../img/logo_3.svg");
}

.our-solutions_content .title h2 {
    color: var(--light-1);
}

.our-solutions_items {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 32px;
    gap: 32px;
}

.our-solutions_item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    text-align: center;
}

.our-solutions_item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.our-solutions_image {
    width: 100%;
    height: 150px;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.our-solutions_image::before {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%) rotate(-45deg);
    background: orange;
}

.our-solutions_text h3 {
    display: flex;
    flex-direction: column;
    color: var(--light-1);
    margin-top: 16px;
}

.our-solutions_text h3::after {
    content: '';
    width: 100%;
    height: 2px;
    margin-top: 8px;
    background: linear-gradient(to right, orange, rgba(0, 0, 0, 0));
}

.our-solutions_text p {
    color: var(--light-5);
    margin-top: 8px;
}

.our-solutions_image_1 {
    order: 0;
}

.our-solutions_text_1 {
    order: 1;
}

.our-solutions_image_2 {
    order: 0;
}

.our-solutions_text_2 {
    order: 1;
}

.our-solutions_image_3 {
    order: 0;
}

.our-solutions_text_3 {
    order: 1;
}

.our-solutions_image_4 {
    order: 0;
}

.our-solutions_text_4 {
    order: 1;
}

.our-ideal .title h2 {
    color: var(--dark-1);
}

.our-ideal_items {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 32px;
}

.our-ideal_item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.our-ideal_item span {
    color: var(--blue);
    font-weight: 700;
    margin-top: 16px;
}

.our-ideal_item p {
    margin-top: 8px;
    color: var(--dark-5);
}

footer {
    display: flex;
    flex-direction: column;
}

.footer_left {
    display: flex;
    position: relative;
    padding: 48px 24px 112px 24px;
    background: var(--blue);
}

.footer_left_content {
    text-align: center;
    color: var(--light-1);
}

.footer_left_content h2 {
    margin-bottom: 8px;
}

.footer_left_info {
    display: flex;
    flex-direction: column;
    margin-top: 48px;
    gap: 16px;
}

.footer_left_info .phone {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer_left_info .phone::before {
    content: url("../img/phone.svg");
}

.footer_left_info .address {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer_left_info .address::before {
    content: url("../img/map.svg");
}

.footer_disclaimer {
    position: absolute;
    width: 170px;
    height: 170px;
    left: 50%;
    bottom: calc(-170px/2);
    transform: translateX(-50%);
    background: var(--light-1);
    border-radius: 50%;
    box-shadow: 0px 16px 40px rgba(52, 69, 246, 0.25);
}

.footer_disclaimer_content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
}

.footer_disclaimer_content img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.footer_disclaimer_atendimento {
    animation: atendimento 15s infinite linear;
}

@keyframes atendimento {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(359deg);
    }
}

.footer_right {
    padding: 112px 24px 48px 24px;
}

.footer_right_content form {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer_right_content form input {
    width: 100%;
    padding: 16px 32px;
    border: none;
    background: var(--light-2);
    color: var(--light-5);
}

.footer_end {
    background: var(--blue-dark);
}

.footer_end_content {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 32px 24px;
    text-align: center;
    color: var(--light-1);
}

.footer_social {
    display: flex;
    justify-content: center;
    gap: 16px;
}

@media (min-width: 576px) {
    .our-solutions_image {
        width: 50%;
    }
}

@media (min-width: 768px) {
    .our-process_items {
        flex-direction: row;
    }
    .our-process_item {
        width: 50%;
    }
}

@media (min-width: 992px) {}

@media (min-width: 1200px) {
    h1 {
        max-width: 700px;
        font-size: 3rem;
    }
    .container {
        max-width: 1216px;
        margin: 0 auto;
        padding: 48px 0;
    }
    .nav {
        left: 50%;
        transform: translateX(-50%);
        max-width: 1216px;
        padding: 16px 0;
    }
    .nav_menu ul {
        display: flex;
        align-items: center;
        gap: 32px;
    }
    .nav_menu ul li a {
        font-size: .8rem;
        color: var(--light-1);
    }
    .nav_menu ul li {
        position: relative;
    }
    .nav_menu ul li::before {
        position: absolute;
        content: '';
        width: 1px;
        height: 0px;
        top: -30px;
        left: 50%;
        transform: translateX(-50%);
        background: linear-gradient(to bottom, var(--light-1), rgba(0, 0, 0, 0));
        transition: 150ms ease-in-out;
    }
    .nav_menu ul li:hover::before {
        height: 30px;
    }
    .nav_hamb {
        display: none;
    }
    .nav_menu {
        display: flex;
    }
    .header_slider_1_text {
        text-align: left;
        max-width: 1216px;
    }
    .header_slider_1_text p {
        max-width: 450px;
    }
    .about-us_content {
        align-items: center;
        overflow: hidden;
    }
    .about-us_text {
        position: relative;
        max-width: 650px;
        text-align: center;
    }
    .about-us_text::after {
        position: absolute;
        content: '';
        background-image: url("../img/logo_2.svg");
        background-size: cover;
        bottom: -100px;
        right: -200px;
        width: 200px;
        height: 210px;
        z-index: 0;
    }
    .our-projects_slider {
        height: 250px;
    }
    .our-projects_slider_content {
        flex: 0 0 50%;
    }
    .our-projects_tracker_content img {
        height: 250px;
    }
    .our-clients_tracker_content {
        width: 100%;
        flex: 0 0 33%;
    }
    .our-clients {
        padding: 112px 0 0 0;
    }
    #our-clients_left,
    #our-clients_right {
        display: none;
    }
    .our-partners {
        padding: 180px 0 112px 0;
    }
    .our-partners .title h2 {
        color: var(--dark-1);
    }
    .our-process_item span {
        position: relative;
    }
    .our-partners_tracker_content {
        flex: 0 0 33%;
    }
    .our-process_item:nth-child(1) span::after,
    .our-process_item:nth-child(2) span::after,
    .our-process_item:nth-child(3) span::after {
        content: '';
        position: absolute;
        width: 150px;
        height: 1px;
        top: 50%;
        right: -200px;
        transform: translateY(-50%);
        border-top: 1px dotted var(--blue);
    }
    .our-solutions_items {
        margin-top: 64px;
        gap: 64px;
    }
    .our-solutions_item {
        display: inline-flex;
        flex-direction: row;
        gap: 32px;
    }
    .our-solutions_image {
        min-width: 350px;
        width: 450px;
        height: 250px;
    }
    .our-solutions_text {
        max-width: 450px;
        text-align: left;
    }
    .our-solutions_text h3 {
        font-size: 2rem;
        margin-top: 0;
    }
    .our-solutions_image_1 {
        order: 0;
    }
    .our-solutions_text_1 {
        order: 1;
    }
    .our-solutions_image_2 {
        order: 1;
    }
    .our-solutions_text_2 {
        order: 0;
    }
    .our-solutions_image_3 {
        order: 0;
    }
    .our-solutions_text_3 {
        order: 1;
    }
    .our-solutions_image_4 {
        order: 1;
    }
    .our-solutions_text_4 {
        order: 0;
    }
    .our-ideal_items {
        flex-direction: row;
    }
    .footer_left,
    .footer_right {
        width: 100%;
        padding: 48px 0;
        margin: 0;
    }
    .footer_left {
        justify-content: flex-end;
    }
    .footer_left_content,
    .footer_right_content {
        width: calc(1216px/2);
        padding: 0;
        margin: 0;
    }
    .footer_left_content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: left;
    }
    .footer_left_content p {
        max-width: 450px;
    }
    .footer_left_info .phone,
    .footer_left_info .address {
        flex-direction: row;
    }
    .footer_right_content {
        display: flex;
        justify-content: flex-end;
    }
    .footer_right_content form {
        width: 450px;
    }
    .footer_disclaimer {
        top: 50%;
        right: calc(-170px/2);
        left: unset;
        transform: translateY(-50%);
    }
    .footer_content {
        display: flex;
    }
    .footer_end_content {
        max-width: 1216px;
        margin: 0 auto;
        flex-direction: row;
        justify-content: space-between;
        padding: 16px 0;
    }
}


.b-thank::after {
    content: url("../img/logo_2.svg");
    position: absolute;
    right: 10%;
    bottom: -10%;
}

.b-body,
.b-thank {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.b-thank h2 {
    margin-top: 32px;
    color: var(--blue);
}

.b-ps {
    display: flex;
    flex-direction: column;
    text-align: center;
    margin-top: 4px;
    gap: 32px;
    color: var(--dark-5);
}

.b-thank ul {
    display: flex;
    margin-top: 16px;
    gap: 8px;
}

.b-thank ul li a {
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--blue);
    border-radius: 4px;
    width: 32px;
    height: 32px;
}

.b-body {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: var(--light-1);
}