.buttons a:not(:last-child) {
    margin-right: 1rem;
}
.contacts-title {
    font-size: 1.25rem;
}
.ambition-contacts h4 a {
    font-weight: 700
}

.bg-circles {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.bg-circles .circle-item {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    transition: transform .35s ease-in, -webkit-transform .35s ease-in;
    will-change: transform;
}

.bg-circles .circle-item:first-child {
    top: 20%;
    left: 25%;
    width: 300px;
    height: 300px;
    background-color: rgba(158, 158, 158, .3);
    -webkit-animation: bg-circle-y 30s linear infinite;
    animation: bg-circle-y 30s linear infinite;
}

.bg-circles .circle-item:nth-child(2) {
    right: 5%;
    top: 15%;
    width: 400px;
    height: 400px;
    background: #f5f5f5;
    -webkit-animation: bg-circle-y 30s linear infinite;
    animation: bg-circle-y 30s linear infinite;
    animation-delay: -5s;
}

.bg-circles .circle-item:nth-child(3) {
    left: 50%;
    bottom: 30%;
    width: 200px;
    height: 200px;
    background: rgba(255, 28, 87, .25);
    -webkit-animation: bg-circle-y 30s linear infinite;
    animation: bg-circle-y 30s linear infinite;
    animation-delay: -17s;
}
.small-form {
    padding: 1rem;
    background: rgba(255, 255, 255, 1);
    border-radius: 1rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}

@media (max-width:320px) {
    .align-end {
        align-items: flex-start;
    }
}

@media (min-width:321px) and (max-width:480px) {
    .align-end {
        align-items: flex-start;
    }
}

@media (min-width:481px) and (max-width:620px) {
    .align-end {
        align-items: flex-start;
    }
}

@media (min-width:621px) and (max-width:767px) {
    .align-end {
        align-items: flex-start;
    }
}

@media (min-width:768px) and (max-width:896px) {
    
}

@media (min-width:896px) and (max-width:1023px) {
    
}


@-webkit-keyframes bg-circle-y {

    0%,
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    50% {
        transform: translateY(100px);
    }
}

@keyframes bg-circle-y {

    0%,
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    50% {
        transform: translateY(100px);
    }
}

