/* RIGHT (text) */
.who-am-i {
    display: flex;
    align-items: center;
    padding-bottom: 110px;
}

.who-am-i .content {
    width: 68%;
    padding-left: 50px;
}
.who-am-i .content h1 {
    font-size: 3em;
    line-height: 1.2;
}
.who-am-i .content h3 {
    font-size: 1.5em;
    font-family: 'Century Gothic';
    color: #172334;
}
.who-am-i .content h3 span {
    color: #9a6879;
}
.who-am-i .content p {
    margin: 20px 0 40px;
}

.who-am-i .content .btn-box {
    display: flex;
    justify-content: space-between;
    max-width: 345px;
    height: 50px;
}
.who-am-i .content .btn-box a {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    height: 100%;
    background: #172334;
    border: 2px solid #172334;
    border-radius: 30px;
    font-size: 19px;
    color: #E3E8ED;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    font-family: 'Century Gothic';
    z-index: 1;
    overflow: hidden;
    transition: .5s;
}
.who-am-i .content .btn-box a:hover {
    color: #172334;
}

.who-am-i .content .btn-box a:nth-child(2) {
    background: transparent;
    color: #172334;
}
.who-am-i .content .btn-box a:nth-child(2)::before {
    background-color: #172334;
}
.who-am-i .content .btn-box a:nth-child(2):hover {
    color: #E3E8ED;
}

.who-am-i .content .btn-box a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    z-index: -1;
    border-radius: 30px;
    background-color: #E3E8ED;
    transition: .5s;
}
.who-am-i .content .btn-box a:hover::before {
    width: 100%;
}

/* LEFT (image) */
.who-am-i .photo {
    align-items: center;
    width: 30%;
}

/* Responsive */
@media (max-width: 1000px) {
    .who-am-i .content h1 {
        font-size: 2.3em;
    }
    .who-am-i .content h3 {
        font-size: 1.3em;
    }
    .who-am-i .content {
        width: 70%;
        padding-left: 30px;
    }
}
@media (max-width: 800px) {
    .who-am-i .content {
        width: 100%;
        padding-left: 0;
        text-align: center;
    }
    .who-am-i .photo {
        display: none;
    }
    .who-am-i .content .btn-box {
        margin: auto;
    }
}
@media (max-width: 400px) {
    .who-am-i .content .btn-box a {
        font-size: 15px;
    }
}