body {
    overflow-x: hidden;
    font-family: 'Open Sans', sans-serif; }

.container {
    max-width: 1175px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: auto; }
@media screen and (max-width: 1175px) {
    .container {
        max-width: 992px; } }
@media screen and (max-width: 992px) {
    .container {
        max-width: 768px; } }
@media screen and (max-width: 768px) {
    .container {
        max-width: 480px; } }
@media screen and (max-width: 480px) {
    .container {
        max-width: 100%;
        padding: 10px;
        margin: 5px; } }

header {
    padding: 25px 0 10px 0;
    margin: 0 auto 100px auto !important;
    border-bottom: 3px solid #000;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end; }
header > .title > h1 {
    font-size: 42px;
    font-weight: bold; }
header > .title > p {
    font-size: 24px;
    margin-top: 15px; }
@media screen and (max-width: 768px) {
    header > .title > p {
        margin-bottom: 30px; } }
header > .links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end; }
header > .links > li {
    margin-left: 10px;
    font-size: 18px;
    background: #000;
    border: 1px solid transparent;
    color: #fff;
    -webkit-transition: ease-in-out 0.3s;
    -o-transition: ease-in-out 0.3s;
    transition: ease-in-out 0.3s; }
header > .links > li > a {
    display: block;
    padding: 10px; }
header > .links > li:hover {
    background: #fff;
    border: 1px solid #000;
    color: #000; }
@media screen and (max-width: 768px) {
    header {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        text-align: center; } }

iframe {
    width: 100%;
    height: 600px; }

.portfolio > h2 {
    font-size: 32px;
    margin-bottom: 50px;
    text-align: center;
    font-weight: bold; }
.portfolio__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between; }
.portfolio__title > h3 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px; }
.portfolio__title > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end; }
.portfolio__title > ul > li {
    border-top: 3px solid #000;
    padding: 5px 10px; }
@media screen and (max-width: 768px) {
    .portfolio__title > ul > li {
        border-top: 0; } }
@media screen and (max-width: 768px) {
    .portfolio__title > ul {
        width: 100%;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        border-top: 3px solid #000; } }
@media screen and (max-width: 768px) {
    .portfolio__title {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        text-align: center; } }
.portfolio > ul > li {
    padding: 0 15px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-left: 3px solid #000;
    margin-bottom: 100px; }
.portfolio > ul > li > .img {
    height: 500px;
    overflow-y: scroll; }
.portfolio > ul > li > .img img {
    display: block;
    width: 100%; }
.portfolio > ul > li .link {
    padding: 5px 10px;
    background: #000;
    border: 1px solid transparent;
    color: #fff;
    display: inline-block;
    margin-top: 5px;
    -webkit-transition: ease-in-out 0.3s;
    -o-transition: ease-in-out 0.3s;
    transition: ease-in-out 0.3s; }
.portfolio > ul > li .link:hover {
    background: #fff;
    border: 1px solid #000;
    color: #000; }