h1, h2, h3, h4, h5, h6 {
    color: #1a202c;
    font-weight: 700;
}

/*
.blog h4, .blog h3, .blog h2, .blog h1 {
    color: #343a40;
}
*/

/* Darker than the default color #77838f which is too bright */
p {
    color: #2d3748
}
li {
    /* use the same color as p */
    color: #2d3748;
}

code {
    font-size: .8em !important;
}

#hero-image {
    width: 100%
}

@media (min-width: 992px) {
    #hero-image {
        position: relative;
        top: -100px;
    }
}

.profile-picture {
    /* make a square container */
    width: 150px;
    height: 150px;

    /* round the edges to a circle with border radius 1/2 container size */
    border-radius: 50%;

    margin-top: 10px;
}


ul.timeline {
    list-style-type: none;
    position: relative;
}
ul.timeline:before {
    content: ' ';
    background: #d4d9df;
    display: inline-block;
    position: absolute;
    left: 29px;
    width: 2px;
    height: 100%;
    z-index: 400;
}
ul.timeline > li {
    margin: 20px 0;
    padding-left: 20px;
}
ul.timeline > li:before {
    content: ' ';
    background: white;
    display: inline-block;
    position: absolute;
    border-radius: 50%;
    border: 3px solid #22c0e8;
    left: 20px;
    width: 20px;
    height: 20px;
    z-index: 400;
}

em {
    font-style: normal;
    background-position-y: -0%;
    background-image: linear-gradient( transparent 50%, gold 50%);
    transition: background 500ms ease;
    background-size: 2px;
    background-size: auto 175%;
}

em:hover {
    background-position-y: 100%;
}

blockquote {
    background: #f9f9f9;
    border-left: 10px solid #ccc;
    margin: 1.5em 10px;
    padding: 0.5em 10px;
    quotes: "\201C""\201D""\2018""\2019";
}

blockquote p {
    display: inline;
}

.bigger {
    font-size: 22px;
    color: #ea319f;
}

.highlight {
    color: #ea319f;
}

/*
.u-header__navbar-brand, .u-header__navbar-brand>img {
    width: 12rem;
} */

/* For toggle animation on the hero image, thanks to Sami */
.Awesome_Toggle_Button_Nub {
	transition: transform .1s ease-out;
}
.Awesome_Toggle_Button.State_On .Awesome_Toggle_Button_Nub {
	transform: translateX(.9em);
}

img {
    max-width: 100%;
}

/* to make text selectable in the testimonial */
.slick-slider {
  -webkit-user-select: text;
  -khtml-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

.seen-on {
    /*filter: grayscale(70%);*/
    max-height: 48px;
    width: auto;
    height: auto;

}

.submenu-item {
    padding: 6px 6px 0px 6px;
    border-radius: 6px;
}

.submenu-item:hover {
    background-color: #e1e3eb;
}