html, body {
    min-height: 100%;
}

body {
    font-family: "Roboto", sans-serif;
    background: linear-gradient(180deg, #EDEDED 0%, #C7C7C7 100%);
}

.wrapper {
    width: 85%;
    height: 100%;
    margin: 0 auto;
}

header {
    display: flex;
    width: 100%;
    height: 180px;
    justify-content: center;
    align-items: center;
}

header nav ul {
    display: inline-block;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

header nav ul li {
    display: inline-block;
    padding: 0 30px;
}

header nav ul li a {
    text-decoration: none;
    color: var(--primary-color);
    font-size: 18px;
}

header a.connect {
    background: var(--primary-color);
    color: var(--text-contrast-primary-color);
    padding: 5px 25px;
    border-radius: 20px;
    text-decoration: none;
}

.home {
    display: flex;
    width: 100%;
}

.home .info-home {
    display: flex;
    width: 100%;
}

.home .info-home .info {
    flex-grow: 1;
    margin-right: 100px;
}

.home .info-home .info h1 {
    font-size: 100px;
    margin: 0;
    color: var(--primary-color);
}

.home .info-home .info .text {
    display: inline-block;
    font-size: 24px;
    margin: 20px 0;
    width: 100%;
    color: var(--secondary-color);
    line-height: 125%;
}

.home .info-home .info .buttons, .home .buttons-mobile {
    display: inline-block;
    width: 100%;
    text-align: right;
}

.home .info-home .info .buttons .button, .home .buttons-mobile .button {
    display: inline-block;
    vertical-align: top;
    font-size: 30px;
    text-decoration: none;
    padding: 20px 40px;
    border-radius: 40px;
}

.home .info-home .info .buttons .button:first-child, .home .buttons-mobile .button:first-child {
    border: solid 1px var(--primary-color);
    background: var(--primary-color);
    color: var(--text-contrast-primary-color);
}

.home .info-home .info .buttons .button:last-child, .home .buttons-mobile .button:last-child {
    padding: 0;
    margin-left: 20px;
    border: solid 1px var(--secondary-color);
    color: var(--secondary-color);
}

.home .info-home .info .buttons .button:last-child span, .home .buttons-mobile .button:last-child span {
    display: inline-block;
    vertical-align: top;
    padding: 20px 40px;
    border-right: solid 1px var(--secondary-color);
    border-radius: 40px;
}

.home .info-home .info .buttons .button:last-child i, .home .buttons-mobile .button:last-child i {
    transform: rotate(45deg);
    margin: 24px 20px 0 7px;
}

.home .bg {
    position: relative;
    width: 35%;
    background-image: url("/themes/65d21dd5-033e-43d2-b1ef-962ac4788e4b/home.png");
    background-size: cover;
    background-position: center;
    border-radius: 36px;
    flex-shrink: 0;
    z-index: 1;
}

.home .bg:before {
    position: absolute;
    content: ' ';
    inset: -8px;
    border: 1px solid var(--primary-color);
    border-radius: 36px;
    z-index: 2;
}

.home .bg:after {
    position: absolute;
    content: ' ';
    inset: 8px;
    border: 1px solid var(--primary-color);
    border-radius: 36px;
    z-index: 2;
}

.home .bg .logo {
    position: absolute;
    max-height: 200px;
    background: linear-gradient(0deg, rgba(230, 230, 230, 0.7), rgba(230, 230, 230, 0.7)), linear-gradient(228.24deg, rgba(157, 191, 209, 0.2) 44.61%, rgba(16, 50, 80, 0.2) 126.12%);
    text-align: center;
    border-radius: 36px;
    right: -42px;
    top: -42px;
    padding: 10px;
    box-sizing: border-box;
    z-index: 3;
}

.home .bg .logo img {
    max-width: 185px;
    max-height: 185px;
}

.home .bg .icon {
    position: absolute;
    background: linear-gradient(0deg, rgba(230, 230, 230, 0.7), rgba(230, 230, 230, 0.7)), linear-gradient(228.24deg, rgba(157, 191, 209, 0.2) 44.61%, rgba(16, 50, 80, 0.2) 126.12%);
    border-radius: 36px;
    left: -40px;
    bottom: -40px;
    padding: 30px 40px;
    box-sizing: border-box;
    z-index: 3;
    font-size: 50px;
    color: var(--primary-color);
}

.about {
    display: flex;
    width: 100%;
    background: linear-gradient(90deg, #B9C0C6 0%, #E7E7E7 100%);
    margin: 200px 0 100px 0;
    position: relative;
    border-radius: 34px;
}

.about .bg-box {
    position: relative;
    width: 28%;
    flex-shrink: 0;
    margin-left: 50px;
    margin-right: 10px;
}

.about .bg-align {
    position: absolute;
    width: 100%;
    height: calc(100% + 50px);
    top: -50px;
    transform: rotate(-7deg);
}

.about .bg-align:before {
    position: absolute;
    content: ' ';
    border: 1px solid var(--secondary-color);
    border-radius: 150px;
    z-index: 1;
    width: 100%;
    height: 100%;
    top: 10px;
    left: -13px;
}

.about .bg-align:after {
    position: absolute;
    content: ' ';
    width: 100%;
    height: 100%;
    border: 1px solid var(--secondary-color);
    border-radius: 150px;
    z-index: 1;
    top: 20px;
    left: -24px;
}

.about .bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url("/themes/65d21dd5-033e-43d2-b1ef-962ac4788e4b/about.png");
    background-size: cover;
    background-position: center;
    border-radius: 150px;
    z-index: 2;
}

.about .info {
    box-sizing: border-box;
    display: inline-block;
    padding: 40px 60px;
}


.about .info .title {
    display: flex;
    width: 100%;
    justify-content: space-between;
    border: solid 1px var(--primary-color);
    color: var(--primary-color);
    border-radius: 35px;
    height: 70px;
}

.about .info .title h1 {
    margin: 0;
    padding: 15px 30px;
    box-sizing: border-box;
}

.about .info .title .icon {
    font-size: 35px;
    height: 70px;
    border-left: solid 1px var(--primary-color);
    box-sizing: border-box;
    padding: 15px 40px;
    border-radius: 35px;
}

.about .info .text {
    color: var(--secondary-color);
    margin-top: 50px;
    font-size: 20px;
}

.services {
    display: inline-block;
    width: 100%;
    background: linear-gradient(180deg, var(--primary-color) 0%, rgb(var(--primary-color-rgb), 0.7) 100%);
    vertical-align: top;
    padding: 60px 0 20px 0;
    box-sizing: border-box;
}

.services .wrapper {
    display: flex;
}

.services .wrapper > .title {
    display: flex;
    color: #C6C6C6;
    border: solid 1px #C6C6C6;
    border-radius: 30px;
    align-items: center;
    flex-shrink: 0;
    width: 240px;
    margin-bottom: 40px;
}

.services .wrapper > .title h1 {
    width: 100%;
    text-align: center;
}

.services ul {
    display: inline-block;
    list-style-type: none;
    margin: 0 0 0 60px;
    padding: 0;
    color: #C6C6C6;
}

.services ul li {
    display: inline-block;
    width: calc(33% - 20px);
    vertical-align: top;
    margin-bottom: 40px;
}

.services ul li:nth-child(3n + 2) {
    margin: 0 30px;
}

.services ul li .title {
    box-sizing: border-box;
    padding: 15px 30px;
    border: solid 1px #C6C6C6;
    border-radius: 40px;
}

.services ul li .title i {
    color: var(--secondary-color);
    display: inline-block;
    font-size: 30px;
}

.services ul li .title h3 {
    display: inline-block;
    font-size: 24px;
    margin: 0 0 0 10px;
    font-weight: normal;
    vertical-align: top;
}

.services ul li p {
    margin: 20px 10px;
    font-size: 18px;
}

.customers {
    display: flex;
    width: 100%;
    padding-top: 80px;
    flex-direction: column;
    align-items: center;
}

.customers .title {
    border: solid 1px var(--primary-color);
    color: var(--primary-color);
    border-radius: 35px;
}

.customers h1 {
    display: inline-block;
    margin: 0;
    text-align: center;
    padding: 15px 30px;
}

.customers h3 {
    display: inline-block;
    color: #717171;
    margin: 0;
    font-weight: normal;
    vertical-align: top;
    border-left: solid 1px var(--primary-color);
    border-radius: 35px;
    padding: 22px;
}

.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;
    background: linear-gradient(201deg, #EAEAEA 0%, #BEC5CA 100%);;
    border-radius: 34px;
    box-sizing: border-box;
    padding: 20px;
}

.customers ul li:nth-child(3n + 2) {
    margin: 0 40px;
}

.customers ul li .logo {
    text-align: center;
}

.customers ul li .logo img {
    width: 80%;
    max-width: 180px;
    max-height: 180px;
}

.customers ul li h4 {
    font-weight: normal;
    font-size: 24px;
    margin: 10px 0 0 0;
    text-align: center;
}

.customers ul li p {
    text-align: center;
    margin: 10px 0;
    color: #717171;
}

.extra {
    display: flex;
    width: 100%;
    padding-top: 80px;
    flex-direction: column;
    align-items: center;
}

.extra .title {
    border: solid 1px var(--primary-color);
    color: var(--primary-color);
    border-radius: 35px;
}

.extra h1 {
    display: inline-block;
    margin: 0;
    text-align: center;
    padding: 15px 30px;
}

.extra h3 {
    display: inline-block;
    color: #717171;
    margin: 0;
    font-weight: normal;
    vertical-align: top;
    border-left: solid 1px var(--primary-color);
    border-radius: 35px;
    padding: 22px;
}

.extra .text {
    display: inline-block;
    width: 100%;
}

.contact {
    display: flex;
    width: 100%;
    background: linear-gradient(90deg, #B9C0C6 0%, #E7E7E7 100%);
    margin-top: 80px;
    position: relative;
    border-radius: 34px;
    padding: 60px;
    box-sizing: border-box;
}

.contact .contact-us {
    width: 420px;
    flex-shrink: 0;
}

.contact h1 {
    margin: 0;
    display: inline-block;
    color: var(--primary-color);
    border: solid 1px var(--primary-color);
    padding: 10px 40px;
    border-radius: 35px;
}

.contact h3 {
    display: inline-block;
    color: #717171;
    margin: 20px 0 0 0;
    width: 100%;
    font-weight: normal;
    font-size: 16px;
}

.contact ul {
    display: inline-block;
    list-style-type: none;
    margin: 20px 0 0 0;
    padding: 0;
}

.contact ul li {
    display: flex;
    width: 100%;
    margin: 10px 0;
    color: var(--secondary-color);
    align-items: center;
}

.contact ul li i {
    display: inline-block;
    font-size: 34px;
    width: 40px;
    height: 40px;
    text-align: center;
    vertical-align: top;
    flex-shrink: 0;
}

.contact ul li span {
    display: inline-block;
    color: var(--primary-color);
    font-size: 18px;
    vertical-align: top;
    margin-left: 7px;
}

.contact iframe {
    border: none;
    flex-grow: 1;
    margin-left: 40px;
}

.news {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 80px;
}

.news .title {
    border: solid 1px var(--primary-color);
    color: var(--primary-color);
    border-radius: 35px;
}

.news h1 {
    display: inline-block;
    margin: 0;
    text-align: center;
    padding: 15px 30px;
}

.news h3 {
    display: inline-block;
    color: #717171;
    margin: 0;
    font-weight: normal;
    vertical-align: top;
    border-left: solid 1px var(--primary-color);
    border-radius: 35px;
    padding: 22px;
}

.news ul {
    display: grid;
    grid-template-columns: auto auto auto;
    width: 100%;
    list-style-type: none;
    padding: 0;
    margin: 60px 0 0 0;
    text-align: center;
    grid-auto-rows: 1fr;
    gap: 40px;
}

.news ul li {
    display: inline-block;
    vertical-align: top;
    background: #e4e4e4;
    flex-wrap: wrap;
}

.news ul li a {
    display: flex;
    height: 100%;
    flex-direction: column;
    text-decoration: none;
}

.news ul li img {
    width: 100%;
    max-height: 230px;
}

.news ul li .info {
    display: flex;
    flex-grow: 1;
    width: 100%;
    box-sizing: border-box;
    padding: 20px;
    justify-content: center;
    flex-direction: column;
}

.news ul li .info h1 {
    font-size: 20px;
    color: #2D2D2D;
    text-align: left;
    margin: 0;
    font-weight: normal;
    padding: 0;
}

.news ul li .info span {
    display: inline-block;
    width: 100%;
    text-align: left;
    font-size: 16px;
    color: #717171;
    margin-top: 10px;
}

footer {
    display: inline-block;
    width: 100%;
    background: var(--primary-color);
    height: 80px;
    vertical-align: top;
    margin-top: 80px;
    color: var(--text-contrast-primary-color);
}

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-primary-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-primary-color);
    text-decoration: none;
}

.hide-mobile {
    display: initial;
}

.hide-desktop, .home .buttons-mobile, header .header-title, header .menu-title, .divider {
    display: none;
}

@media screen and (max-width: 1080px) {
    .services .wrapper {
        flex-direction: column;
    }
    .services .wrapper > .title {
        width: 100%;
        padding: 15px 0;
    }
    .services ul {
        margin: 0;
    }
    .services ul li {
        width: calc(50% - 25px);
        margin: 0;
    }
    .services ul li:nth-child(3n + 2) {
        margin: 0;
    }
    .services ul li:nth-child(2n + 2) {
        margin: 0 0 0 40px;
    }
    .customers ul li {
        width: calc(33.33% - 40px);
    }
    .customers ul li:nth-child(4n + 2) {
        margin: 0;
    }
    .customers ul li:nth-child(4n + 3) {
        margin: 0;
    }
    .customers ul li:nth-child(3n + 2) {
        margin: 0 55px;
    }
    .home .info-home .info h1 {
        font-size: 70px;
    }
    .contact {
        flex-direction: column;
    }
    .contact iframe {
        margin: 0;
        border-radius: 15px;
        min-height: 190px;
    }
}

@media screen and (max-width: 950px) {
    .news ul {
        grid-template-columns: auto auto;
    }
}

@media screen and (max-width: 870px) {
    .hide-mobile {
        display: none;
    }

    .hide-desktop {
        display: block;
    }

    body {
        padding-top: 115px;
    }

    .home {
        flex-direction: column;
        gap: 3rem;
    }

    header {
        position: fixed;
        top: 0;
        left: 0;
        background: rgba(237, 237, 237, 0.92);
        z-index: 1000;
        height: 70px;
    }

    header .header-title, header .menu-title {
        display: flex;
        flex-direction: row;
        align-items: center;
        max-width: 60%;
    }

    header .menu-title {
        position: absolute;
        top: 0;
        right: 0;
        padding: 20px;
    }

    header .header-title .logo img, header .menu-title .logo img {
        max-width: 30px;
        max-height: 30px;
    }

    header .menu-title h1 {
        color: var(--text-contrast-primary-color);
        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: var(--text-contrast-primary-color);
        margin: 20px 0;
        justify-self: center;
        display: flex;
    }

    header nav {
        position: fixed;
        top: 0;
        left: -280px;
        width: 280px;
        height: 100%;
        background: var(--primary-color);
        border-right: solid 1px #cdcdcd;
        transition: left .3s ease;
        z-index: 999;
        padding-top: 3rem;
        box-sizing: border-box;
    }

    header nav.open {
        left: 0;
    }

    header a.connect {
        padding: 14px 30px;
        width: max-content;
        border-radius: 30px;
        color: var(--primary-color);
        background: var(--text-contrast-primary-color);
    }

    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: var(--text-contrast-primary-color);
    }

    section .title {
        display: inline-flex;
    }

    .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;
    }

    .menu-button.active {
        color: var(--text-contrast-primary-color);
    }

    .home .info-home .info .buttons {
        display: none;
    }

    .home .buttons-mobile {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .home .buttons-mobile .button {
        width: 100% !important;
        max-width: 250px;
        text-align: center;
        font-size: 20px;
        padding: 20px 0;
        margin: 0 !important;
    }

    .home .info-home .info {
        margin-right: 1rem;
    }

    .home .info-home .info h1 {
        font-size: 45px;
    }

    .home .bg {
        width: 45%;
    }

    .home .bg .logo {
        border-radius: 14px;
        right: 7px;
        top: -45px;
        padding: 8px;
    }

    .home .bg .logo img {
        max-width: 50px;
        max-height: 50px;
    }

    .home .bg .icon {
        font-size: 26px;
        padding: 10px 20px;
        left: 9px;
        bottom: -26px;
        border-radius: 14px;
    }

    .about {
        margin: 5rem 0 3rem 0;
    }

    .about .info {
        padding: 20px 35px;
    }

    .about .bg-box {
        width: 20%;
    }

    .contact .contact-us {
        width: auto;
    }
}

@media screen and (max-width: 690px) {
    body {
        padding-top: 75px;
    }

    .menu-title h1 {
        font-size: 20px;
    }

    .home .info-home {
        flex-direction: column;
        gap: 2rem;
    }
    .home .bg {
        width: 100%;
        height: 230px;
    }
    .home .info-home .info {
        margin: 0;
    }
    .home .info-home .info .text {
        margin: 0;
        font-size: 20px;
    }

    .customers ul li {
        width: 100%;
        margin: 0 0 30px 0 !important;
    }

    .news ul {
        grid-template-columns: auto;
    }
    .contact ul.contact-us li {
        width: 100%;
        margin-bottom: 50px;
    }
    .contact .box .left ul li:nth-child(2) {
        width: auto;
    }
    .contact .box .right {
        width: auto;
    }
    .home .info-home .info h1 {
        font-size: 35px;
    }
    .services ul li {
        width: 100%;
        margin: 0 0 30px 0 !important;
    }
    section .title {
        width: 100%;
    }

    section .title h1 {
        padding: 0 10px;
        align-content: center;
        font-size: 25px;
    }

    .contact {
        padding: 20px;
    }

    .about {
        flex-direction: column;
        padding: 30px;
        width: fit-content;
    }

    .about .info {
        padding: 0;
    }

    .about .bg-box {
        width: 100%;
        height: 250px;
        margin: 0 0 4rem 0;
    }

    .about .info .title h1 {
        padding: 0 10px;
        font-size: 27px;
        align-content: center;
    }

    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;
        background-color: var(--secondary-color);
        color: var(--text-contrast-secondary-color);
    }
}

@media screen and (max-width: 500px) {
    header .header-title {
        position: absolute;
        right: 5%;
    }
}