*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins';
    padding: 40px;
}

a {
    text-decoration: none;
    color: #568BE8;
}

.site a,
.email a {
    display: flex;
    align-items: center;
    color: inherit;
}

.site a:hover,
.email a:hover {
    color: #568BE8;
}

@media (max-width:845px) {
    header, .flex {
        flex-direction: column;
    }

    .right .logo {
       display: none;
    }

    .right {
        margin-top: 32px;
    }

    .competente .type {
        text-align: left;
    }

    .type ul {
        text-align: left;
    }

    .button {
        display: inline-flex;
        margin-top: 12px;
    }

    .left .download {
        margin-left: 0;
    }

    .left .contact {
        margin-right: 12px;
    }
}

.left {
    display: flex;
    flex-direction: column;
}

.buttons {
    margin-top: auto;
}

.container {
    padding-top: 100px;
    max-width: 1084px;
    margin: 0 auto
}

header,
.flex {
    display: flex;
    justify-content: space-between;
    padding-bottom: 80px;
}


.name {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 4px;
}

.tag {
    display: flex;
    align-items: center;
    color: #568BE8;
    font-size: 20px;
    font-weight: 400;
}

.tag span {
    margin-right: 24px;
    width: 132px;
    height: 3px;
    background-color: #568BE8;
}

.button {
    display: inline-flex;
    padding: 16px 32px;
    border-radius: 8px;
    border: 1px solid #568BE8;
    transition: all 120ms ease;
}

.button:hover {
    transform: scale(1.1);
}

.contact:hover {
    background-color: #568BE8;
    color: white;
}

.download {
    background-color: #568BE8;
    color: white;
    margin-left: 16px;
}

.download svg {
    margin-left: 8px;
}

.right {
    display: flex;
    flex-direction: column;
}

.logo {
    margin-left: auto;
    margin-bottom: auto;
    padding-bottom: 32px;
}

.email, .phone {
    margin-bottom: 24px;
    display: flex;
    align-items: center;
}

.email svg {
    margin-right: 12px;
}

.phone svg {
    margin-right: 12px;
}
.site svg {
    margin-right: 12px;
}

h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 32px;
}

.date {
    font-size: 15px;
    font-weight: 400;
    font-style: italic;
    color: #7F838B;
    margin-bottom: 4px;
}

.title {
    color: #568BE8;
    font-size: 27px;
    font-weight: 600;
    margin-bottom: 4px;

}

.location {
    display: flex;
    align-items: center;
    color: #1E1F21;
    font-size: 20px;
    font-weight: 400;
    font-style: italic;
}

.location svg {
    margin-left: 12px;
}

.job,
.type {
    margin-bottom: 40px;
}

.type {
    text-align: right;
}

.type:last-child {
    margin-bottom: 0;
}

ul {
    list-style: none;
    text-align: right;
}

li {
    font-size: 20px;
    margin-bottom: 4px;
}

.tools h2 {
    text-align: right;
}


.phone-link {
    text-decoration: none;
    color: #1E1F21;

    &:hover {
        color: #568BE8;
    }
}