body{
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: var(--tertiary);
}

a{
    text-decoration: none;
}

button{
    width: 200px;
    background-color: var(--primary);
    height: 50px;
    border-radius: 4px;
    border-color: var(--primary);
    color: var(--tertiary);
    font-weight: 500;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.7s;
}

button:hover, button:active, button:focus{
    background-color: var(--tertiary);
    color: var(--primary);
}

button > svg{
    stroke: var(--tertiary);
    transition: 0.7s;
    margin: 0 5px;
}

button:hover > svg, button:active > svg, button:focus > svg{
    stroke: var(--primary)
}

nav{
    width: calc(100% - 40px);
    height: 100px;
    background-color: var(--primary);
    display: grid;
    grid-template-columns: 200px 1fr;
    grid-template-rows: 100px;
    padding: 10px 20px;
}

logo > a{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
}

logo > a > h1{
    color: var(--tertiary);
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    font-weight: 600;
    font-size: 22px;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

logo > a > img{
    width: 100%;
}

links{
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

links > a{
    color: var(--tertiary);
    font-weight: 600;
    font-size: 18px;
    margin-left: 20px;
    cursor: pointer;
    transition: 0.7s;
}

links > a:hover{
    color: var(--secondary);
    transition: 0.7s;
}

links > a > svg, menu > a > svg{
    stroke: var(--tertiary);
    width: 40px;
    height: 40px;
    overflow: visible;
}

menu{
    display: none;
    align-items: center;
    justify-content: flex-end;
    margin-left: 10px;
}

.linksmenu{
    background-color: var(--tertiary);
    width: 100vw;
    position: fixed;
    top: 120px;
    right: 0px;
    flex-direction: column;
    height: calc(100vh - 120px);
    justify-content: flex-start;
}

.linksmenu > *{
    padding: 20px 0;
    width: 100%;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: 0.7s;
}

.linksmenu > *:hover{
    padding: 20px 0;
    background-color: var(--primary);
}

@media only screen and (max-width: 800px) {
    links{
        display: none!important;
    }
    menu{
        display: flex!important;
    }
}

hero{
    height: 600px;
    position: absolute;
    top: 120px;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

hero > h1{
    word-wrap: anywhere;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

hero > h3{
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}

topic{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 10dvh 4dvw 0;
}

cards{
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
}

customercard{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(56, 56, 56, 0.07);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(9.2px);
    width: 300px;
    height: 100px;
    padding: 20px;
    margin: 10px;
    transition: 0.7s;
}

customercard:hover{
    box-shadow: 0 4px 30px rgba(255, 145, 77, 0.2);
}

processcard{
    display: flex;
    flex-direction: column;
    background: rgba(56, 56, 56, 0.07);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(9.2px);
    width: 400px;
    padding: 20px;
    margin: 10px;
    transition: 0.7s;
}

processcard > h3{
    margin: 0 0 10px 0;
}

processcard > h4:last-child{
    margin: 10px 0 0 0;
}

processcard:hover{
    box-shadow: 0 4px 30px rgba(255, 145, 77, 0.2);
}

card{
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(56, 56, 56, 0.07);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(9.2px);
    width: 80%;
    padding: 20px;
    transition: 0.7s;
}

card:hover{
    box-shadow: 0 4px 30px rgba(255, 145, 77, 0.2);
}

card > h4{
    text-align: justify;
    text-indent: 20px;
}

card > a{
    margin: 10px 0 0 0;
}

footer{
    width: calc(100% - 40px);
    height: 120px;
    background-color: var(--primary);
    padding: 10px 20px;
    margin-top: 10dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-select: none;
}

footer > p {
    font-weight: 400;
    margin: 0 0 5px;
}

footer > a{
    height: fit-content;
}

footer > a >img{
    height: 40px;
    cursor: pointer;
}


