:root {
    --background-white: #ffffff;
    --primary-color: #00aeef;
    --primary-color-hover: #0f95c5;
    --text-color: #333;
    --light-grey-border: #eaeaea;
}

body {
    font-family: 'new-rubrik', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: var(--background-white);
    color: var(--text-color);
    background: url(img/bg.svg);
    background-repeat: no-repeat;
    background-position: 130% 50%;
}

.logo {
    max-width: 100px;
}

h1, h2 {
    color: var(--primary-color);
    margin:0px;
}

section, header, footer {
    width: 100%;
    padding: 0;
}

header .inner-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.inner-container {
    width: 1200px;
    max-width: 100%;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

.client {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    max-width: 100%;
    width: 400px;
    text-align: center;
    border: solid var(--light-grey-border);
    border-radius: 10px;
    box-shadow: 0px 5px 130px -10px #00aeef13;
    padding: 30px;
    background:var(--background-white);
    gap:10px;
    box-sizing: border-box;
}

.client img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 10px;
}

.clients .inner-container {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap:40px;
    margin-bottom: 30px;
}

a {
    color: var(--primary-color);
}

footer {
    font-size: 0.9em;
    text-align: center;
    margin-top: 40px;
    padding-bottom:20px;
}

.button {
    border-radius: 100px;
    padding: 8px 24px;
    background-color: var(--primary-color);
    color: var(--background-white);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap:10px;
    margin-top: auto;
    transition: 0.3s;
}

.button:hover {
    background-color: var(--primary-color-hover);
}

.button i {
    position: relative;
    left:0px;
    transition: 0.2s;
}
.button:hover i {
    position: relative;
    left:2px;
}

h2 i {
    font-size: 0.7em;
    position: relative;
    padding-right: 5px;
    bottom:3px;
}

@media (max-width: 1200px) {
    body {
        background: var(--background-white);
    }
}

@media (max-width:800px) {
    .clients .inner-container {
        flex-direction: column;
    }
    .clients .client {
        width:100%;
    }
    h1 {
        font-size: 25px;
        text-align: right;
    }
}