/* GENERAL */

body {
    margin: 0;
    font-family: Helvetica, sans-serif;
    box-sizing: border-box;
}

a, 
a:visited {
    color: #1A0DAB;
}

/* HEADER */

header {
    border: 1px solid #EBEBEB;
}

#input_box {
    padding-top: 20px;
    padding-bottom: 9px;
}

#input_box img {
    width: 92px;
    position: absolute;
    top: 30px;
    left: 20px;
}

#input_box form {
    position: relative;
    display: inline-block;
}

#input_box form input {
    width: 658px;
    height: 44px;
    border: 1px solid #DFE1E5;
    outline: none;
    font-size: 16px;
    padding: 0 21px;
    margin-left: 146px;
    border-radius: 22px;
}

#search_icon,
#keyboard_icon,
#mic_icon, 
#separator_icon, 
#cross_icon {
    position: absolute;
    font-size: 18px;
    top: 14px;
}

#search_icon {
    right: 18px;
}

#keyboard_icon {
    right: 88px;
    font-weight: 500;
}

#mic_icon {
    right: 53px;
}

#separator_icon {
    right: 115px;
    font-size: 28px;
    top: 5px;
    color: #202124;
    opacity: .2;
    font-weight: 100;
}

#cross_icon {
    right: 132px;
    font-size: 18px;
    color: #202124;
    opacity: .7;
    font-weight: bold;
}

/* NAVBAR */

#links_list {
    list-style: none;
    padding: 0;
    margin-bottom: 0;
    margin-left: 146px;
}

#links_list li {
    display: inline-block;
    padding: 0 11px;
}

#links_list li a {
    color: #5f6368;
    display: inline-block;
    text-decoration: none;
    font-size: 14px;
    padding-bottom: 12px;
}

#links_list li span {
    font-size: 16px;
    display: inline-block;
    margin-right: 3px;
}

.active {
    border-bottom: 3px solid #1A73E8;
}

#links_list .active a {
    color: #1A73E8;
}

#links_list .tools {
    margin-left: 48px;
}

/* SITE BODY */

.container {
    display: flex;
    flex-direction: row;
    padding-left: 165px;
    padding-right: 70px;
}

main {
    flex: 2 1 0;
    padding-right: 35px;
}

aside {
    flex: 1 1 0;
    min-width: 460px;
    margin-top: 50px;
    position: relative;
}

/* MAIN CONTENT */

#results {
    color: #78757A;
    font-size: 14px;
    margin-bottom: 5px;
}

.search_results_box {
    margin-bottom: 10px;
}

.container .ref_link {
    display: inline-block;
    position: relative;
    font-size: 14px;
    color: #3C4043;
    width: auto;
    margin-bottom: 8px;
    margin-top: 15px;
    text-decoration: none;
}

.triangle {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #3C4043;
    top: 7px;
    right: -15px;
}

.main_link {
    display: block;
    font-size: 20px;
    text-decoration: none;
    margin-bottom: -8px;
}

.main_link:hover {
    text-decoration: underline;
}

.search_resut_desc {
    font-size: 14px;
    color: #3C4043;
    line-height: 1.57;
}

.info_box {
    margin-top: -8px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
}

.info {
    flex: 1 1 1;
    width: 50%;
    font-size: 14px;
    color: #78757A;
    margin: 2px 0;
}

.info_title {
    font-weight: bold;
}

.related_results ul {
    margin: 5px 0;
    padding: 0;
    list-style: none;
}

.related_results li {
    display: inline-block;
}

.related_results li a {
    font-size: 14px;
    text-decoration: none;
}

/* ASIDE */

#gallery_box {
    height: 186px;
    position: relative;
}

#first_image {
    border-top-left-radius: 10px;
}

#gallery {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 315px;
    height: 186px;
    position: absolute;
    top: 0;
    left: 149px;
}

#gallery div {
    flex: 1 1 30%;
    height: 50%;
    background-size: cover;
    background-position: center;
}

#gallery_img1 {
    background-image: url(../img/turing2.jpg);
}

#gallery_img2 {
    background-image: url(../img/turing3.jpg);
}

#gallery_img3 {
    background-image: url(../img/turing4.jpg);
}

#gallery_img4 {
    background-image: url(../img/turing5.jpg);
}

#gallery_img5 {
    background-image: url(../img/turing6.jpg);
}

#gallery_img6 {
    background-image: url(../img/turing7.jpg);
}

#moreimg_btn {
    position: absolute;
    padding: 10px;
    bottom: 0;
    right: 0;
    color: #FFF;
    background: rgba(0, 0, 0, .6);
    font-size: 13px;
    text-decoration: none;
    border-top-left-radius: 5px;
}

#moreimg_btn span {
    margin-right: 5px;
}

/* INFOS ASIDE */

#about_box {
    border: 1px solid #EBEBEB;
}

#name_box {
    border-bottom: 1px solid #EBEBEB;
    padding: 0 15px;
}

#name {
    font-size: 30px;
    font-weight: 400;
    margin-top: 12px;
    margin-bottom: 10px;
}

#role {
    color: #70757A;
    font-size: 14px;
    margin: 0;
    margin-bottom: 20px;
}

.about_text {
    font-size: 14px;
    padding: 0 15px;
    line-height: 1.57;
    color: #222;
}

.about_text span {
    font-weight: bold;
}