/* You can customize theme styles here */

::selection {
    background: #be3369!important; /* WebKit/Blink Browsers */
}

::-moz-selection {
    background: #be3369!important; /* Gecko Browsers */
}

* {
    outline: none!important;
}

.header--sticky-triggered {
    padding-bottom: 0;
}

.header .navbar-brand {
    justify-content: center;
    height: 65px;
}

.header .navbar-brand img {
    max-height: 40px;
}

.header .navbar-collapse {
    margin-top: 0;
}

.header .navbar .navbar-collapse.show .navbar-nav {
    padding-top: 40px;
    border-top: none;
}

.header .navbar .navbar-collapse.collapsing .navbar-nav {
    padding-top: 40px;
    border-top: none;
}

.color-stripe {
    height: 5px;
    display: flex;
    flex-direction: row;
    align-items: stretch;
}

.color-stripe > div {
    flex-grow: 1;
}

.color-stripe > div:nth-child(1) {
    background-color: #96143c;
}
.color-stripe > div:nth-child(2) {
    background-color: #be3269;
}
.color-stripe > div:nth-child(3) {
    background-color: #e6508c;
}
.color-stripe > div:nth-child(4) {
    background-color: #fc83a9;
}
.color-stripe > div:nth-child(5) {
    background-color: #ffb4c8;
}
.color-stripe > div:nth-child(6) {
    background-color: #ffc8d2;
}
.color-stripe > div:nth-child(7) {
    background-color: #ffbe96;
}
.color-stripe > div:nth-child(8) {
    background-color: #ffb45a;
}
.color-stripe > div:nth-child(9) {
    background-color: #ffd25f;
}
.color-stripe > div:nth-child(10) {
    background-color: #ffe67d;
}
.color-stripe > div:nth-child(11) {
    background-color: #fff0be;
}

/* technologies */

.images-with-name-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items:flex-end;
}

.images-with-name-container a {
    color: #4d4d4d;
    text-decoration: none;
}

.images-with-name-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 16px;
    margin-top: 16px;
    width: 160px;
}

.images-with-name-item:hover .img-greyscaled {
    filter: grayscale(0);
}

.images-with-name-item img {
    margin-bottom: 8px;
}

.img-greyscaled {
    transition: filter 200ms;
    filter: grayscale(100%);
}

.img-technology {
    height: 40px;
}

.rad-showcase_bg img {
    margin-top: 50px;
}

.github-account-container {
    padding-top: 24px;
}

/* team */

.person-container {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

.person {
    position: relative;

    display: flex;
    flex-direction: row;
    align-items: center;
}

.person::before {
    content: '';
    position: absolute;
    left: 50px;
    top: 0;
    width: 70px;
    height: 100%;
    z-index: 1;
    background-color: #edf1f4;
    -webkit-transform: skew(-13deg);
    transform: skew(-13deg);
}

.person img {
    z-index: 2;
    height: 130px;
}

.person .name-and-title {
    position: absolute;
    left: 120px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    margin-left: 48px;
}

.person .name-and-title .title {
    font-weight: bold;
}

/* We should not set the width to 100% because there is a weird bug in chrome with responsive images */
.rad-showcase__bg--mobile img {
    width: auto;
    height: auto;
    max-width: 100%;
}

/* increase space between showcase and team when large */
@media (min-width: 1200px) {
    .rad-showcase+section {
        margin-top: -40px;
    }
}

.language-switcher {
    color: white;
}

.language-switcher > a {
    color: white;
    text-decoration: none;
}

.clients {
    justify-content: start;
}

.contact__info {
    padding-top: 50px;
    padding-left: 0;
    padding-right: 0;
}

h4 a {
    color: inherit;
}

h4 a:hover {
    text-decoration: none;
}

/* For phone icon on contact button */
.btn [class^="gg"] {
    transform: scale(0.85); /* In order to have a size that is similar to the mail icon */
    margin-right: 9px;
}

.about__social-media-icons {
    display: flex;
    flex-direction: row;
    margin-top: 4px;
}

.about__social-media-icon {
    margin-right: 8px;
    height: 24px!important; /* Needed because of css in .person class */
}

/* jobs page */

.job {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 32px;
    padding-right: 32px;
    padding-top: 200px;
}

.job__title {
    margin-bottom: 32px;
}

.job-spacer {
    min-height: 32px;
    height: 30vh;
}

