* {
    max-width: 100%;
}
body {
    font-family: 'Roboto', sans-serif;
}

.container {
    width: 100vw;
    height: 100%;
    padding-bottom: 60px;
}

header {
    background: linear-gradient(45deg, rgb(69, 90, 100) 0%, rgb(69, 90, 100) 1%, rgb(76, 103, 193) 100%);
    margin: 0;
    padding-top: 60px;
}

.header-content {
    width: 680px;
    margin: 0 auto;
    box-shadow: 0 -5px 40px 7px rgb(0 0 0 / 8%);
}

.top-infos {
    text-align: center;
    padding-top: 30px;
    color: #FFFFFF;
}
.top-infos .top-infos-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto;
    overflow: hidden;
}
.top-infos .top-infos-img > img {
    width: 100%;
    object-fit: cover;
    object-position: top;
}
.top-infos > h3 {
    margin-bottom: auto;
    font-weight: 400;
}

.bottom-infos {
    height: 50px;
    margin-top: 50px;
    color: #FFFFFF;
}
.bottom-infos ul {
    display: flex;
    height: 100%;
    padding: 0;
    margin: auto;
}
.bottom-infos ul li {
    width: 100%;
    margin: auto;
    margin-top: -34px;
    list-style: none;
    text-align: center;
    line-height: 50px;
}
.bottom-infos ul li a {
    display: block;
    padding-top: 10px;
    width: 100%;
    height: 100%;
    border-right: 1px solid rgba(255,255,255,0.15);
    border-top: 1px solid rgba(255,255,255,0.15);
    text-decoration: none;
    color: inherit;
    transition: .3s;
}
.bottom-infos ul li a:hover {
    text-decoration: none;
    color: inherit;
    background-color: rgba(0,0,0,0.1);
}
.bottom-infos ul li a:active,
.bottom-infos ul li a:visited {
    text-decoration: none;
    color: inherit;
}
.bottom-infos ul li a i {
    display: block;
    font-size: 1.4em;
}


.content {
    box-sizing: border-box;
    height: 100%;
    width: 680px;
    margin: 0 auto;
    padding: 20px 45px;
    box-shadow: 0 -5px 40px 7px rgb(0 0 0 / 8%);
}

.content-row {
    position: relative;
    box-sizing: border-box;
    padding-left: 40px;
    padding-bottom: 15px;
    margin-bottom: 32px;
    border-bottom: 1px solid #dddddd;
}
.content-row h3 {
    font-size: 1em;
}
.content-row h3 > i {
    position: absolute;
    left: -20px;
    font-size: 1.5em;
    color: #d4d4d4;
}
.content-row h3 > span {
    display: block;
    font-weight: 400;
    color: #929292;
}
.content-row h3 > a,
.content-row h3 > a:visited,
.content-row h3 > a:active,
.content-row h3 > a:hover,
.content-row h3 > a:focus {
    text-decoration: none;
    color: inherit;
}

.social {
    margin-top: 20px;
    display: inline-block;
    color: #ffffff;
    text-align: center;
    width: 40px;
    height: 40px;
    line-height: 45px;
    border-radius: 50%;
    background: #000000;
    transition: .3s;
}
.social i {
    color: #FFFFFF;
    font-size: 1.3em;
}
.linkedin {
    background: #0077b5;
}
.linkedin:hover {
    background: #1f9fe4;
}
.facebook {
    background: #4267B2;
}
.facebook:hover {
    background: #315191;
}
.instagram {
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
}
.instagram:hover {
    opacity: .8;
}

.btn,
.btn:visited,
.btn:focus,
.btn:hover,
.btn:active {
    text-decoration: none;
    color: inherit;
}
.btn {
    display: block;
    width: 350px;
    margin: 55px auto;
    text-align: center;
    padding: 15px;
    transition: .3s;
    box-shadow: 0px 10px 14.1px 0.9px rgb(0 0 0 / 24%), 0px 4px 19.6px 0.4px rgb(0 0 0 / 16%);
}
.btn:hover {
    box-shadow: 0px 20px 28.2px 0.9px rgb(0 0 0 / 24%), 0px 8px 40.18px 0.82px rgb(0 0 0 / 16%);
}

.btn > i {
    margin-right: 15px;
}

.btn.red {
    background: rgb(233, 30, 99);
    color: #FFFFFF;
}

@media only screen and (max-width: 500px) {
    .bottom-infos ul li {
        margin-top: auto;
    }
    .bottom-infos ul li span {
        display: none;
    }
    .btn {
        transform: translateX(-15px);
    }
}
