.header-content {
    display: flex;   
    justify-content: space-evenly;
    align-items: center;
}

.header-content a {
    text-transform: uppercase;
}

.menu {
    background: var(--blue);
    width: 100%;
    height: 100%;
    display: grid;
    place-content: center;
    grid-template-rows: repeat(3, 3px);
    grid-gap: 10px;
}

.menu > span {
    background: white;
    height: 3px;
    width: 35px;
}

.sidebar {
    background: var(--black);
    height: 100%;
    position: relative;
}

.social-links {
    display: flex;
    transform: rotate(-90deg);
    position: fixed;
    right: -10.3em;
    bottom: 230px;
}

.social-links > * {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 30px;
}

.social-links > * > img{
    transform: rotate(90deg);
    margin-right: 10px;
}

.primary-button {
    background: var(--blue);
    color: white;
    border-radius: 10px;
    border: none;
    width: 200px;
    height: 65px;
    margin-top: 80px;
}

.mouse-icon {
    position: absolute;
    left: 50%;
    bottom: 3em;
}

.developed-by {
    position: absolute;
    bottom: 2em;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1.4;
}

.developed-by div {
    margin-top: 20px;
    text-align: center;
}

.address {
    position: absolute;
    right: 10em;
    bottom: 3em;
    line-height: 1.5;
}

.address .map {
    margin-bottom: 2em;
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination > * {
    margin: 10px
}

.pagination.vertical {
    flex-direction: column;
}

.builder-icon {
    margin-top: 20px;
    margin-left: 15px;
}

.pagination.horizontal {
    display: grid;
    grid-gap: 10px;
    width: calc(100% - 12px);
    grid-template-columns: 25px 1fr 25px;
}

.pagination.vertical span:first-child {
    margin-top: 100px
}

.pagination.vertical .progress {
    height: calc(100% / 3);
    width: 100%;
    background: white;
}

.pagination.horizontal .progress {
    width: calc(100% / 3);
    height: 100%;
    background: white;
}

.pagination.vertical .progress-bar {
    height: 300px;
    width: 3px;
    background: rgba(255, 255, 255, 0.25)
}

.pagination.horizontal .progress-bar {
    width: calc(100% - 10px);
    height: 3px;
    background: rgba(255, 255, 255, 0.25)
}