html, body {
    min-height: 100%;
}

body {
    font-family: "Cambay", sans-serif;
    background: linear-gradient(115deg, #000000 -40%, #191919 45%);
    color: #DDDDDD;
}

.wrapper {
    width: 90%;
    max-width: 1920px;
    height: 100%;
    margin: 0 auto;
}

header {
    display: flex;
    align-items: center;
    width: 100%;
    height: 120px;
}

header .header-title {
    display: flex;
    align-items: center;
}

header .header-title h1 {
    font-size: 26px;
}

header .header-title .logo {
    display: inline-block;
    vertical-align: top;
}

header .header-title .logo img {
    max-width: 55px;
    max-height: 55px;
}

header nav {
    flex-grow: 1;
}

header nav ul {
    text-align: center;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

header nav ul li {
    display: inline-block;
}

header nav ul li a {
    text-decoration: none;
    color: #DDDDDD;
    font-size: 22px;
    padding: 0 15px;
}

header .buttons a {
    display: inline-block;
    color: var(--primary-color);
    font-size: 23px;
    border-radius: 10px;
    width: 40px;
    height: 40px;
    text-align: center;
    vertical-align: top;
}

header .buttons a i {
    margin-top: 7px;
}

header .buttons a:first-child {
    margin-right: 10px;
}

header a.connect {
    color: var(--primary-color);
    padding: 5px 25px;
    text-decoration: none;
    margin-right: 1rem;
    font-size: 22px;
}

.home {
    display: flex;
    width: 100%;
}

.home .info {
    min-width: 280px;
}

.home .info .text {
    display: inline-block;
    font-size: 24px;
    margin: 20px 0;
    width: 100%;
}

.home .info .buttons {
    display: inline-block;
    width: 100%;
}

.home .info .buttons .button {
    display: flex;
    font-size: 32px;
    text-decoration: none;
    border: solid 1px var(--primary-color);
    padding: 9px 30px;
}

.home .info .buttons .button.outline {
    background: #282828;
    border-color: #282828;
    justify-content: space-between;
    color: #EDEDED;
}

.home .info .buttons .button:first-child {
    justify-content: center;
    background: var(--primary-color);
    color: var(--text-contrast-primary-color);
    padding-bottom: 15px;
    padding-top: 22px;
    font-weight: bold;
}

.home .info .buttons i {
    transform: rotate(45deg);
    margin-left: 10px;
}

.home .left-home {
    display: flex;
    min-width: 65%;
    align-items: center;
    margin-right: 2rem;
}

.home .left-home h1 {
    font-size: 128px;
    margin: 0 -66px 0 0;
    z-index: 9;
}

.home .left-home > div {
    padding: 35px;
    display: inline-block;
    background: linear-gradient(115deg, #000000, #191919);
}

.home .left-home > div > div {
    padding: 35px;
    background: linear-gradient(320deg, #000000 10%, #191919 65%);
}

.home .left-home img {
    width: 464px;
    height: 504px;
    display: block;
    object-fit: cover;
    object-position: center center;
}

.about {
    position: relative;
    display: inline-block;
    width: 100%;
    margin: 80px 0;
    min-height: 400px;
    background: linear-gradient(155deg, #000000 25%, #191919 80%);
}

.about h1 {
    position: absolute;
    background: linear-gradient(135deg, #000000 10%, #191919 60%);
    color: var(--primary-color);
    margin: 0;
    font-size: 36px;
    text-align: right;
    padding: 18px 33px;
    right: 14px;
    top: 0;
    z-index: 9;
}

.about > div > div {
    display: flex;
}

.about .text {
    padding: 20px;
    font-size: 20px;
}

.about .text p {
    color: #717171;
}

.about .text p strong {
    color: #EDEDED;
    font-size: 26px;
}

.about img {
    width: 433px;
    height: 400px;
    display: block;
    object-fit: cover;
    object-position: center center;
    transform: scaleX(-1);
    padding: 26px 26px;
}

.services {
    display: flex;
    width: 100%;
    align-items: center;
    margin-bottom: 50px;
}

.services .list {
    flex-grow: 1;
    display: flex;
    width: 0;
}

.services .list button {
    display: inline-block;
    background: transparent;
    border: none;
    width: 50px;
    color: var(--primary-color);
    font-size: 20px;
    flex-shrink: 0;
    cursor: pointer;
}

.services .list button[disabled] {
    color: #717171;
    cursor: default;
}

.services .list ul {
    display: flex;
    margin: 0;
    padding: 0;
    list-style-type: none;
    flex-grow: 1;
    overflow: hidden;
}

.services .list ul li {
    width: 320px;
    min-height: 250px;
    flex-shrink: 0;
    padding: 20px;
    background: linear-gradient(144deg, #000000 0%, #191919 75%);
    margin: 10px 0;
    border: solid 1px #3D3D3D;
    position: relative;
}

.services .list ul li:not(:last-child) {
    margin-right: 30px;
}

.services .list ul li:first-child {
    margin-left: 10px;
}

.services .list ul li:last-child {
    margin-right: 10px;
}

.services .list ul li div {
    position: absolute;
    right: 0;
    top: 0;
    border-left: solid 1px #3D3D3D;
    border-bottom: solid 1px #3D3D3D;
    width: 53px;
    height: 53px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.services .list ul li i {
    font-size: 30px;
    color: var(--primary-color);
}

.services .list ul li h3 {
    color: #DDDDDD;
    padding: 10px 0;
    margin-top: 25px;
    font-size: 1.7em;
}

.services .list ul li p {
    font-size: 20px;
    color: #717171;
}

.customers {
    display: inline-block;
    width: 100%;
    padding-top: 50px;
    margin: 0 0 40px 0;
}

.customers h1 {
    font-size: 66px;
    text-align: center;
    margin: 0;
}

.customers h3 {
    font-size: 20px;
    color: #717171;
    text-align: center;
    margin: 0;
    font-weight: normal;
}

.customers ul {
    display: inline-block;
    width: 100%;
    list-style-type: none;
    padding: 0;
    margin: 60px 0 0 0;
    text-align: center;
}

.customers ul li {
    display: inline-block;
    width: calc(33.33% - 30px);
    margin-bottom: 60px;
    vertical-align: top;
    box-sizing: border-box;
    padding: 20px;
}

.customers ul li:nth-child(3n + 2) {
    margin: 0 40px;
}

.customers ul li .logo {
    height: 150px;
    align-content: center;
}

.customers ul li .depoimento {
    min-height: 150px;
    margin-top: 1rem;
}

.customers ul li .logo img {
    width: 80%;
    max-width: max-content;
    max-height: stretch;
}

.customers ul li h4 {
    font-weight: normal;
    font-size: 2em;
    margin: 10px 0 0 0;
    text-align: center;
}

.customers ul li p {
    text-align: center;
    margin: 10px 0;
    color: #717171;
    font-size: 18px;
}

.extra {
    display: inline-block;
    width: 100%;
    margin-bottom: 50px;
    padding-bottom: 40px;
}

.extra h1 {
    font-size: 66px;
    margin: 0;
    text-align: center;
}

.extra h3 {
    font-size: 22px;
    color: #717171;
    text-align: center;
    margin: 0;
    font-weight: normal;
}

.extra p {
    font-size: 20px;
    color: #717171;
}

.split-section {
    display: flex;
    width: 100%;
}

.contact {
    margin-right: 20px;
    border: solid 1px #3D3D3D;
}

.contact > div:first-child {
    background: linear-gradient(168deg, #000000 0%, #191919 55%);
    padding: 30px;
    border-bottom: solid 1px #3D3D3D;
}

.contact > div:last-child {
    background: linear-gradient(145deg, #000000 0%, #191919 55%);
    padding: 0 30px 30px 30px;
}

.contact h1 {
    font-size: 66px;
    margin: 0;
}

.contact h3 {
    font-size: 20px;
    color: #717171;
    margin: 0;
    font-weight: normal;
}

.contact ul {
    display: inline-block;
    list-style-type: none;
    width: 100%;
    padding: 0;
    margin: 20px 0;
}

.contact ul li {
    display: inline-block;
    width: 100%;
    padding: 5px 0;
    font-size: 20px;
    color: #717171;
}

.contact .content {
    display: flex;
    align-items: center;
    height: 100%;
    width: 100%;
}

.contact ul li:not(:last-child) {
    margin-bottom: 20px;
}

.contact ul li .icon {
    width: 45px;
    text-align: center;
}

.contact ul li i {
    font-size: 32px;
    color: var(--primary-color);
    margin-right: 10px;
}

.contact iframe {
    display: inline-block;
    width: 100%;
    height: 300px;
    border: none;
    margin-top: 10px;
}

.contact.full {
    width: 100%;
    margin-right: 0;
}

.contact.full ul li {
    width: calc(33.33% - 20px);
}

.contact.full ul li:nth-child(3n + 2) {
    margin: 0 25px 20px 25px;
}

.news {
    display: flex;
    flex-direction: column;
    width: calc(50% - 20px);
    margin-left: 20px;
    flex-shrink: 0;
    border: solid 1px #3D3D3D;
}

.news > div:first-child {
    background: linear-gradient(168deg, #000000 0%, #191919 55%);
    padding: 30px;
    border-bottom: solid 1px #3D3D3D;
}

.news > div > h1 {
    font-size: 66px;
    margin: 0;
}

.news h3 {
    font-size: 20px;
    color: #717171;
    margin: 0;
    font-weight: normal;
}

.news > div:last-child {
    background: linear-gradient(145deg, #000000 0%, #191919 55%);
    overflow-y: scroll;
    height: 0;
    display: inline-block;
    width: 100%;
    flex-grow: 1;
    box-sizing: border-box;
}

.news ul {
    padding: 0 15px 0 15px;
    margin: 20px 0 0 0;
}

.news ul::-webkit-scrollbar {
    width: 10px;
    position: absolute;
}

.news ul::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 10px;
}

.news ul::-webkit-scrollbar-thumb {
    background-color: #DEDEDE;
    border-radius: 7px;
}

.news ul::-webkit-scrollbar-thumb:active {
    background-color: var(--primary-color);
}

.news ul li {
    display: inline-block;
    background: linear-gradient(145deg, #000000 0%, #191919 75%);
    margin: 10px 0;
    width: 100%;
    border: solid 1px #3D3D3D;
}

.news ul li:first-child {
    margin-top: 0;
}

.news ul li a {
    display: flex;
    text-decoration: none;
}

.news ul li .preview {
    width: 35%;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
}

.news ul li .info {
    flex-grow: 1;
    box-sizing: border-box;
    padding: 15px;
}

.news ul li .info h1 {
    font-weight: normal;
    color: #DDDDDD;
    font-size: 24px;
}

.news ul li .info span {
    color: #717171;
}

footer {
    display: inline-block;
    width: 100%;
    height: 100px;
    vertical-align: top;
    margin-top: 80px;
}

footer .wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer .socials {
    display: inline-block;
}

footer .socials a {
    display: inline-block;
    vertical-align: top;
    color: var(--text-contrast-secondary-color);
    text-decoration: none;
    font-size: 36px;
    padding: 0 20px;
    line-height: 23px;
}

footer span {
    font-size: 18px;
}

footer span a {
    color: var(--text-contrast-secondary-color);
    text-decoration: none;
}

.hide-mobile {
    display: initial;
}

.hide-desktop, header .menu-title, .divider {
    display: none;
}

@media screen and (max-width: 1800px) {
    .home .left-home h1 {
        font-size: 5em;
    }

    .home .left-home img {
        width: 320px;
        height: 350px;
    }
}

@media screen and (max-width: 1400px) {
    .home .info .text {
        font-size: 20px;
    }

    .home .info .buttons .button {
        font-size: 24px;
    }

    .about .text {
        font-size: 17px;
    }

    .about .text p strong {
        font-size: 22px;
    }

    .services .list ul li {
        width: 300px;
        min-height: 230px;
    }

    .services .list ul li h3 {
        font-size: 1.2em;
    }

    .services .list ul li p {
        font-size: 18px;
    }

    header a.connect {
        font-size: 18px;
    }

    header nav ul li a {
        font-size: 18px;
    }
}

@media screen and (max-width: 1220px) {
    .home .left-home h1 {
        font-size: 4em;
    }

    .home .left-home img {
        width: 290px;
        height: 320px;
    }

    .customers ul li h4 {
        font-size: 1.5em;
    }

    .customers ul li p {
        font-size: 17px;
    }
}

@media screen and (max-width: 1080px) {
    header .header-title h1 {
        display: none;
    }

    header .header-title .logo img, header .menu-title .logo img {
        max-width: 30px;
        max-height: 30px;
    }

    header a.connect {
        padding: 0;
    }

    .home {
        flex-direction: column;
    }

    .home .left-home {
        min-width: 100%;
        margin: 0;
        justify-content: center;
    }

    .about > div > div {
        flex-direction: column-reverse;
    }

    .about img {
        width: auto;
        height: 300px;
    }

    .customers .wrapper {
        width: 100%;
    }

    .customers ul li {
        width: calc(50% - 30px);
        margin: 10px 7px !important;
    }

    .extra h3 {
        font-size: 20px;
    }

    .extra p {
        font-size: 18px;
    }

    header nav ul li a {
        padding: 0 10px;
    }
}

@media screen and (max-width: 870px) {
    html {
        scroll-padding-top: 80px;
    }

    .hide-mobile {
        display: none;
    }

    .hide-desktop {
        display: block;
    }

    body {
        padding-top: 115px;
    }

    header {
        position: fixed;
        top: 0;
        left: 0;
        background: linear-gradient(167deg, #000000 0%, #191919f7 75%);
        z-index: 1000;
        height: 70px;
    }

    header > .buttons {
        display: none;
    }

    header .header-title, header .menu-title {
        display: flex;
        flex-direction: row;
        align-items: center;
        max-width: 60%;
    }

    header .header-title {
        max-width: 100%;
        width: 100%;
        justify-content: center;
    }

    header .header-title h1 {
        display: unset;
    }

    header .menu-title {
        position: absolute;
        top: 0;
        right: 0;
        padding: 20px;
    }

    header .menu-title h1 {
        color: #DDDDDD;
        margin: 0;
    }

    .menu-button.active + .header-title {
        display: none;
    }

    .header-title h1, .menu-title h1 {
        font-size: 25px;
        margin-right: 3px;
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
    }

    .divider {
        width: 80%;
        height: 2px;
        background-color: #3D3D3D;
        margin: 20px 0;
        justify-self: center;
        display: flex;
    }

    header nav {
        position: fixed;
        top: 0;
        left: -280px;
        width: 280px;
        height: 100%;
        background: linear-gradient(145deg, #000000 0%, #191919 75%);
        border-right: solid 1px #3D3D3D;
        transition: left .3s ease;
        z-index: 999;
        padding-top: 3rem;
        box-sizing: border-box;
    }

    header nav.open {
        left: 0;
    }

    header a.connect {
        width: max-content;
        color: var(--text-contrast-primary-color);
        background: var(--primary-color);
        padding: 5px;
    }

    header nav ul {
        display: block;
        max-height: none;
    }

    header nav ul li {
        width: 100%;
        padding: 0 2rem;
    }

    header nav ul li a {
        display: block;
        width: 100%;
        text-align: left;
        padding: 20px 0;
        font-size: 20px;
        box-sizing: border-box;
        color: #DDDDDD;
    }

    .menu-button {
        font-size: 30px;
        background: transparent;
        border: none;
        color: var(--primary-color);
        cursor: pointer;
        z-index: 1000;
        position: absolute;
        left: 30px;
        top: 50%;
        transform: translateY(-50%);
        margin: 0;
        padding: 0;
    }

    nav .buttons-li {
        display: flex;
    }

    nav .buttons-li a {
        width: auto;
        padding-right: 2rem;
    }

    .split-section {
        flex-direction: column;
        gap: 2rem;
    }

    .split-section section {
        margin: 0;
    }

    .split-section .news {
        width: auto;
        height: 50em;
    }

    .services .list ul li {
        width: 13rem;
        height: auto;
    }

    footer {
        background: linear-gradient(145deg, #000000 0%, #191919 75%);
    }
}

@media screen and (max-width: 690px) {
    .home .left-home {
        justify-content: flex-end;
        align-items: flex-start;
    }

    .home .left-home h1 {
        position: absolute;
        left: 30px;
    }

    .customers ul li {
        width: 100%;
        margin: 0 0 30px 0 !important;
    }

    .services {
        margin: 0;
    }

    .services .list ul li {
        width: fit-content;
    }

    footer {
        height: auto;
    }

    footer .wrapper {
        flex-direction: column;
    }

    footer .socials {
        padding: 8px 0;
    }

    footer .socials a {
        padding: 0 10px;
        font-size: 27px;
    }

    footer span {
        text-align: center;
        font-size: 14px;
        width: 100vw;
        height: 40px;
        align-content: center;
    }

    footer span a {
        color: #717171;
    }
}

@media screen and (max-width: 500px) {
    header .header-title {
        width: auto;
        position: absolute;
        right: 5px;
    }

    .home .left-home img {
        width: 100%;
        height: 240px;
    }

    .services .list ul li {
        padding: 10px;
        width: 12rem;
    }

    .contact .content {
        display: block;
    }

    .news ul li .preview {
        width: 100%;
        height: 130px;
    }

    .news ul li a {
        flex-direction: column;
    }
}