@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Montserrat:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
}

html,
body {
    max-height: 100%;
    overflow-x: hidden;
    background-color: #fff;
    font-family: "Montserrat", sans-serif;
    color: #242424;
    scroll-behavior: smooth;
}

/*Header*/
header {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 100px;
    background: transparent;
    width: 100%;
}

header #logo img {
    width: 300px;
}

header #menu {
    position: absolute;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    left: 50%;
    right: 50%;
}

header #menu a {
    position: relative;
    display: flex;
    font-weight: 600;
    font-size: 16px;
    color: #737373;
    text-decoration: none;
    margin: 0 1vw;
    padding: 0 10px;
}

header #menu a.active {
    color: #242424;
}

header #btn {
    font-weight: 600;
    font-size: 16px;
    border: 1px solid #242424;
    background-color: #F0C99E;
    padding: 12px 15px;
    color: #242424;
    transition: 0.3s ease-in-out;
}

#btn-mobile {
    display: none;
}

/*WhatsApp Button*/
.wpp-btn {
    z-index: 99;
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 15px;
    bottom: 30px;
    left: 30px;
    height: 50px;
    width: 50px;
    padding: 20px;
    background-color: #FFA687;
    cursor: pointer;
    transition: 0.5s;
}

.wpp-btn p {
    margin-left: 15px;
    white-space: nowrap;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.5s linear;
    transition-delay: 0.2s;
    color: #242424;
}

.wpp-btn img {
    width: 25px;
    height: 25px;
    position: absolute;
    left: 12px;
}

/*Scroll to Top Button*/
.scroll-btn {
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 60px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 15px;
    padding: 20px;
    border: none;
    cursor: pointer;
    background-color: #FFA687;

    animation-name: fadeIn;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
        transform: translateY(30px);
    }
}

.scroll-btn img {
    height: 20px;
    width: 20px;
}

/*Content*/
.title-div {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.title {
    font-weight: 700;
    font-size: 42px;
    color: #242424;
}

.dec {
    content: "";
    background-color: #FFA687;
    height: 5px;
    width: 60px;
    border-radius: 25px;
}

.button {
    font-weight: 600;
    font-size: 16px;
    border: 1px solid #242424;
    background-color: #F0C99E;
    padding: 12px 15px;
    color: #242424;
    transition: 0.3s ease-in-out;
}

.button:hover {
    background-color: #FFA687;
}

/*Main*/
.main {
    padding-top: 3vh;
    display: flex;
    background-image: url(..//assets/main-bg.jpg);
    background-position: center;
    background-size: cover;
}

.main .main-text {
    display: flex;
    flex-direction: column;
    padding: 78px;
    width: 50%;
}

.main .main-text .txt {
    font-weight: 400;
    font-size: 18px;
    color: #242424;
}

.main .main-text .title {
    font-weight: 700;
    font-size: 48px;
    color: #242424;
    padding: 13px 0;
}

.main .main-text .subtitle {
    font-weight: 600;
    font-size: 18px;
    color: #242424;
}

.main .main-text .button {
    margin-top: 24px;
    width: max-content;
}

/*Services*/
.services {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    margin: 5vh 8vw;
}

.services .title-div {
    gap: 10px;
    margin-bottom: 20px;
}

.services p {
    text-align: center;
    width: 60%;
}

.services section {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
}

.services section .conteiner {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 620px;
    height: 220px;
    border: 2.5px solid #FFA687;
    border-radius: 0 15px;
    padding: 20px;
    margin: 20px;
}

.services section .conteiner div {
    margin-left: 45%;
    max-width: 100%;
}

.services section .jewel {
    background-image: url(../assets/services-jewel.jpg);
    background-position: center center;
}

.services section .metal {
    background-image: url(../assets/services-metal.jpg);
    background-position: center center;
}

.services section .coin {
    background-image: url(../assets/services-coin.jpg);
    background-position: center center;
}

.services section .clock {
    background-image: url(../assets/services-clock.jpg);
    background-position: center center;
}

.services section .silverware {
    background-image: url(../assets/services-silverware.jpg);
    background-position: center center;
}

.services section .cristal {
    background-image: url(../assets/services-cristal.jpg);
    background-position: center center;
}

.services .conteiner h1 {
    font-weight: 700;
    font-size: 32px;
    color: #FFA687;
    margin: 15px 0;
}

.services .conteiner h3 {
    font-weight: 600;
    font-size: 16px;
    color: #D9D9D9;
}

/*Differential*/
.differential {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 8vw;
}

.differential .title-div {
    flex-direction: column;
}

.differential .title {
    padding: 10px 0;
}

.differential section {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4vw;
}

/*Differential Slider*/
.differential .slider {
    margin: 5vh auto;
    width: 500px;
    height: 700px;
    background-color: #FFA687;
    overflow: hidden;
}

.differential .slides {
    width: 400%;
    height: 700px;
    display: flex;
}

.differential .slides input {
    display: none;
}

.differential .slide {
    width: 25%;
    position: relative;
    transition: 2s;
}

.differential .slide img {
    width: 500px;
}

.differential .d-manual-navigation {
    position: absolute;
    width: 500px;
    margin-top: -60px;
    display: flex;
    justify-content: center;
}

.differential .d-manual-btn {
    border: 2px solid #FFF;
    padding: 5px;
    border-radius: 10px;
    cursor: pointer;
    transition: 1s;
}

.differential .d-manual-btn:not(:last-child) {
    margin-right: 40px;
}

.differential .d-manual-btn:hover {
    background-color: #FFF;
}

.differential #d-radio1:checked~.first {
    margin-left: 0;
}

.differential #d-radio2:checked~.first {
    margin-left: -25%;
}

.differential #d-radio3:checked~.first {
    margin-left: -50%;
}

.differential #d-radio4:checked~.first {
    margin-left: -75%;
}

.differential .d-navigation-auto div {
    border: 2px solid #FFA687;
    padding: 5px;
    border-radius: 10px;
    cursor: pointer;
    transition: 1s;
}

.differential .d-navigation-auto {
    position: absolute;
    width: 500px;
    margin-top: 640px;
    display: flex;
    justify-content: center;
}

.differential .d-navigation-auto div:not(:last-child) {
    margin-right: 40px;
}

.differential #d-radio1:checked~.d-navigation-auto .d-auto-btn1 {
    background-color: #FFF;
}

.differential #d-radio2:checked~.d-navigation-auto .d-auto-btn2 {
    background-color: #FFF;
}

.differential #d-radio3:checked~.d-navigation-auto .d-auto-btn3 {
    background-color: #FFF;
}

.differential #d-radio4:checked~.d-navigation-auto .d-auto-btn4 {
    background-color: #FFF;
}

/*Differential Right*/
.differential .right {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.differential .right .conteiner {
    display: flex;
    flex-direction: row;
    align-items: center;
    border: 2.5px solid #FFA687;
    border-radius: 0 15px;
    padding: 20px 20px 20px 0;
    width: 600px;
    height: 200px;
}

.differential .right .conteiner div {
    display: flex;
    flex-direction: column;
    margin-left: 50%;
}

.differential .right .evaluation {
    background-image: url(../assets/diff-evaluation.jpg);
    background-position: center center;
}

.differential .right .safety {
    background-image: url(../assets/diff-safety.jpg);
    background-position: center center;
}

.differential .right .payment {
    background-image: url(../assets/diff-payment.jpg);
    background-position: center center;
}

.differential .right .conteiner h1 {
    font-weight: 700;
    font-size: 28px;
    color: #242424;
    margin: 15px 0;
}

.differential .right .conteiner h3 {
    font-weight: 600;
    font-size: 16px;
    color: #3c3c3c;
}

/*Gallery*/
.gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 48px 28px;
}

.gallery .title-div {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.gallery .title {
    padding: 0;
}

.gallery .dec {
    width: 70px;
}

.gallery p {
    width: 60%;
    text-align: center;
}

/*Gallery Slider*/
.gallery .slider {
    margin: 5vh auto;
    width: 1000px;
    height: 600px;
    overflow: hidden;
}

.gallery .slides {
    width: 400%;
    height: 600px;
    display: flex;
}

.gallery .slides input {
    display: none;
}

.gallery .slide {
    width: 25%;
    position: relative;
    transition: 2s;
}

.gallery .slide img {
    width: 1000px;
}

.gallery .manual-navigation {
    position: absolute;
    width: 1000px;
    margin-top: -60px;
    display: flex;
    justify-content: center;
}

.gallery .manual-btn {
    border: 2px solid #FFF;
    padding: 5px;
    border-radius: 10px;
    cursor: pointer;
    transition: 1s;
}

.gallery .manual-btn:not(:last-child) {
    margin-right: 40px;
}

.gallery .manual-btn:hover {
    background-color: #FFF;
}

.gallery #radio1:checked~.first {
    margin-left: 0;
}

.gallery #radio2:checked~.first {
    margin-left: -25%;
}

.gallery #radio3:checked~.first {
    margin-left: -50%;
}

.gallery #radio4:checked~.first {
    margin-left: -75%;
}

.gallery .navigation-auto div {
    border: 2px solid #FFA687;
    padding: 5px;
    border-radius: 10px;
    cursor: pointer;
    transition: 1s;
}

.gallery .navigation-auto {
    position: absolute;
    width: 1000px;
    margin-top: 540px;
    display: flex;
    justify-content: center;
}

.gallery .navigation-auto div:not(:last-child) {
    margin-right: 40px;
}

.gallery #radio1:checked~.navigation-auto .auto-btn1 {
    background-color: #FFF;
}

.gallery #radio2:checked~.navigation-auto .auto-btn2 {
    background-color: #FFF;
}

.gallery #radio3:checked~.navigation-auto .auto-btn3 {
    background-color: #FFF;
}

.gallery #radio4:checked~.navigation-auto .auto-btn4 {
    background-color: #FFF;
}

/*Address*/
.address {
    display: flex;
    padding: 28px;
}

/*Contact*/
.contact {
    display: flex;
    flex-direction: column;
    padding: 28px 48px;
    width: 50%;
}

.contact .title-div {
    display: flex;
    flex-direction: row;
    color: #242424;
    gap: 15px;
}

.contact .title-div .title {
    padding: 15px 0;
    font-size: 28px;
}

.contact .title-div .dec {
    height: 4px;
    width: 35px;
}

.contact .subtitle {
    font-weight: 600;
    font-size: 18px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-info-div {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.contact-info-div ion-icon {
    color: #242424;
    font-size: 22px;
}

.contact-info-div .txt {
    color: #242424;
    font-weight: 500;
}

.contact-info-div .tel {
    display: none;
}

/*Map*/
.map {
    width: 100%;
}

.map iframe {
    width: 100%;
    height: 380px;
}

/*FAQ*/
.faq {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 150px;
    padding: 72px 38px;
}

/*FAQ Text*/
.faq .faq-text {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-text .subtitle {
    font-size: 14px;
    color: #FFA687;
}

.faq-text .title {
    font-size: 32px;
    color: #242424;
}

/*FAQ Questions*/
.faq .faq-questions {
    display: flex;
    flex-direction: column;
    width: 35%;
    gap: 20px;
}

.faq-questions .title {
    font-size: 20px;
    font-weight: 600;
}

.faq-questions summary {
    font-weight: 600;
    font-size: 16px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    cursor: pointer;
    color: #242424;
    transition: 0.2s;
    padding: 5px;
    border-radius: 5px;
}

.faq-questions summary::after {
    content: "\002B";
}

.faq-questions details[open] summary::after {
    content: "\002D";
}

.faq-questions .answer {
    padding-top: 15px;
    padding-left: 30px;
    font-size: 14px;
    color: #737373;
}

/*Footer*/
footer {
    display: flex;
    flex-direction: column;
    background-color: #f3f3f3;
}

footer .footer-main {
    display: flex;
    padding: 28px 100px;
    justify-content: space-between;
    gap: 100px;
}

footer .footer-main-info {
    width: 35%;
}

footer .footer-main .logo {
    width: 300px;
    margin-bottom: 10px;
}

footer .title {
    font-weight: 700;
    font-size: 22px;
    padding: 10px 0;
}

footer .subtitle {
    font-weight: 600;
    font-size: 18px;
}

footer .footer-main-menu {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 20%;
}

footer .txt {
    font-size: 16px;
    font-weight: 400;
    color: #242424;
}

/*Footer Bottom*/
footer .bottom {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 3vh 7vw;
    background-color: #FEEDE4;
    gap: 25px;
}

footer .bottom .txt {
    color: #242424;
    font-weight: 400;
    font-size: 14px;
}

/*Resposive PC*/
@media screen and (min-width: 1024px) {
    /*Header*/
    header #menu a::after {
        content: "";
        position: absolute;
        background-color: #242424;
        height: 2px;
        width: 0;
        left: 0;
        bottom: -10px;
        transition: 0.3s;
    }

    header #menu a:hover {
        color: #242424;
    }

    header #menu a:hover::after {
        width: 100%;
    }

    header #btn:hover {
        background-color: #FFA687;
    }

    /*WhatsApp Button*/
    .wpp-btn:hover {
        width: 230px;
    }

    .wpp-btn:hover p {
        visibility: visible;
        opacity: 1;
    }

    /*WhatsApp Invitation*/
    .wpp-invitation-div::after {
        content: "";
        position: absolute;
        background-color: #FFA687;
        height: 3.5px;
        width: 0;
        left: 0;
        bottom: -8px;
        transition: 0.3s linear;
    }

    .wpp-invitation-div:hover::after {
        width: 100%;
    }

    /*Faq*/
    .faq .faq-questions summary:hover {
        background-color: #f3f3f3;
    }
}

/*Responsive Tablet*/
@media screen and (min-width:767px) and (max-width:1024px) {
    /*Header*/
    header {
        padding: 20px 38px;
    }

    header #logo img {
        width: 250px;
    }

    header #menu {
        position: static;
        left: auto;
        right: auto;
    }

    header #menu a {
        color: #242424;
    }

    header #btn {
        display: none;
    }

    /*Main*/
    .main .main-text {
        padding: 48px 38px;
        width: 70%;
    }

    .main .main-text .txt {
        font-size: 20px;
    }

    .main .main-text .btn {
        font-size: 20px;
        padding: 20px;
    }

    /*WhatsApp Button*/
    .wpp img {
        width: 80px;
    }

    .top-button {
        width: 80px;
        height: 80px;
    }

    .top-button::after {
        font-size: 36px;
    }

    /*Services*/
    .services {
        margin: 3vh 8vw;
    }

    .services section {
        flex-direction: column;
    }

    .services .conteiner {
        margin: 14px;
    }

    .services .conteiner h1 {
        font-size: 36px;
    }

    .services .conteiner h3 {
        font-size: 20px;
    }

    /*Differential*/
    .differential .left {
        display: none;
    }

    .differential .right {
        gap: 28px;
        padding: 28px;
    }

    .differential .right .conteiner h1 {
        font-size: 34px;
        margin: 10px 0;
    }

    .differential .right .conteiner h3 {
        font-size: 18px;
    }

    /*Gallery*/
    .gallery .slider {
        width: 600px;
        height: 380px;
        background-color: #242424;
    }

    .gallery .slides {
        height: 300px;
    }

    .gallery .slide img {
        width: 600px;
    }

    .gallery .manual-navigation {
        width: 600px;
        margin-top: 20px;
    }

    .gallery .manual-btn {
        padding: 10px;
    }

    .gallery .manual-btn:not(:last-child) {
        margin-right: 55px;
    }

    .gallery .navigation-auto div {
        padding: 10px;
    }

    .gallery .navigation-auto {
        width: 600px;
        margin-top: 320px;
    }

    .gallery .navigation-auto div:not(:last-child) {
        margin-right: 55px;
    }

    /*Address*/
    .address {
        gap: 28px;
    }

    /*Contact*/
    .contact {
        padding: 0;
        width: 80%;
    }

    /*Faq*/
    .faq {
        padding: 42px 28px;
    }

    .faq .faq-questions {
        width: 100%;
    }

    /*Footer*/
    footer .footer-main {
        padding: 28px;
        gap: 36px;
    }

    footer .footer-main-info .logo {
        width: 250px;
    }

    footer .bottom {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}

/*Responsive Smartphone*/
@media screen and (max-width: 767px) {
    /*Header*/
    header #logo img {
        width: 200px;
    }

    header #btn {
        display: none;
    }

    header {
        box-sizing: border-box;
        height: 70px;
        padding: 1rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: #FFA687;
    }

    header #menu {
        display: block;
        position: absolute;
        width: 100%;
        top: 70px;
        right: 0;
        left: 0;
        background: #FFA687;
        transition: 0.6s;
        z-index: 10000;
        height: 0;
        visibility: hidden;
        overflow-y: hidden;
    }

    #nav.active #menu {
        height: calc(100vh - 70px);
        visibility: visible;
        overflow-y: auto;
    }

    header #menu a {
        display: block;
        padding: 1rem 0;
        margin: 0 1rem;
        color: #242424;
        border-bottom: 0.4px solid #242424;
    }

    header #btn-mobile {
        color: #242424;
        font-family: "Montserrat", sans-serif;
        font-weight: 600;
    }

    #btn-mobile {
        display: flex;
        padding: 0.5rem 1rem;
        font-size: 1rem;
        border: none;
        background: none;
        cursor: pointer;
        gap: 0.5rem;
    }

    #hamburger {
        border-top: 2px solid;
        width: 20px;
    }

    #hamburger::after,
    #hamburger::before {
        content: '';
        display: block;
        width: 20px;
        height: 2px;
        background: currentColor;
        margin-top: 5px;
        transition: 0.3s;
        position: relative;
    }

    #nav.active #hamburger {
        border-top-color: transparent;
    }

    #nav.active #hamburger::before {
        transform: rotate(135deg);
    }

    #nav.active #hamburger::after {
        transform: rotate(-135deg);
        top: -7px;
    }

    /*Home Page*/
    .title {
        font-size: 32px;
        font-weight: 700;
    }

    .services .title,
    .differential .title,
    .gallery .title {
        text-align: center;
    }

    /*Main*/
    .main {
        background-image: url(../assets/smartphone-bg.jpg);
        background-position: top;
    }

    .main .main-text {
        align-items: center;
        text-align: center;
        gap: 10px;
        width: 100%;
        padding: 62px 42px;
    }

    .main .main-text .txt {
        font-size: 16px;
    }

    .main .main-text .title {
        font-size: 32px;
        padding: 0;
    }

    .main .main-text .subtitle {
        font-size: 18px;
    }

    .main .main-text .btn {
        display: none;
    }

    /*Services*/
    .services p {
        width: 100%;
    }

    .services section {
        flex-direction: column;
    }

    .services section .conteiner {
        width: 100%;
        background-size: cover;
        background-position: 30%;
        margin: 14px 0;
    }

    .services section .conteiner h1 {
        font-size: 26px;
    }

    .services section .metal {
        background-position: 40%;
    }

    .services section .jewel {
        background-position: 25%;
    }

    /*Differential*/
    .differential .left {
        display: none;
    }

    .differential .right {
        padding: 28px 0;
        gap: 28px;
    }

    .differential .right .conteiner {
        width: 100%;
        height: 250px;
        background-position: 40%;
        background-size: cover;
    }

    .differential .right .evaluation {
        background-image: url(../assets/diff-evaluation-mobile.jpg);
    }

    .differential .right .safety {
        background-image: url(../assets/diff-safety-mobile.jpg);
    }

    .differential .right .payment {
        background-image: url(../assets/diff-payment-mobile.jpg);
    }

    .differential .right .conteiner div {
        margin-left: 50%;
    }

    .differential .right .conteiner h1 {
        margin: 8px 0;
        font-size: 20px;
    }

    .differential .right .conteiner h3 {
        font-size: 14px;
    }

    /*Gallery*/
    .gallery {
        padding: 38px 28px;
    }

    .gallery p {
        width: 100%;
    }

    .gallery .slider {
        width: 300px;
        height: 200px;
    }

    .gallery .slides {
        width: 400%;
        height: 200px;
    }

    .gallery .slide img {
        width: 300px;
    }

    .gallery .manual-navigation {
        width: 300px;
        margin-top: -35px;
    }

    .gallery .manual-btn {
        padding: 8px;
    }

    .gallery .manual-btn:not(:last-child) {
        margin-right: 35px;
    }

    .gallery .navigation-auto div {
        padding: 8px;
    }

    .gallery .navigation-auto {
        width: 300px;
        margin-top: 165px;
    }

    .gallery .navigation-auto div:not(:last-child) {
        margin-right: 35px;
    }

    /*Address*/
    .address {
        flex-direction: column;
        gap: 28px;
    }

    /*Contact*/
    .contact {
        width: 100%;
        padding: 0;
    }

    .contact-info-div .tel {
        display: flex;
    }

    .contact-info-div .pc {
        display: none;
    }

    /*Faq*/
    .faq {
        flex-direction: column;
        gap: 28px;
        padding: 42px 28px;
    }

    .faq .faq-text .title {
        padding: 0;
    }

    .faq .faq-questions {
        width: 100%;
    }

    .faq .faq-questions .title {
        padding: 0;
    }

    /*Footer*/
    footer .footer-main {
        flex-direction: column;
        padding: 28px;
        gap: 28px;
    }

    footer .footer-main-info {
        width: 100%;
    }

    footer .bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

/*Instagram Bio Page*/
#bioPage {
    background: rgb(223,223,223);
    background: linear-gradient(180deg, rgba(223,223,223,1) 0%, rgba(243,243,243,1) 100%);
    height: 100vh;
}

#bioPage main {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px;
    width: 100%;
    height: 100vh;
}

#bioPage .bioHeader {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    text-align: center;
    
    margin-bottom: 50px;
}

#bioPage .bioHeader img {
    width: 150px;
    margin: 7px
}

#bioPage .bioHeader h4 {
    font-weight: 500;
}

#bioPage main .bioMain {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
}

#bioPage main a {
    color: #242424;
    font-size: 16px;
    font-weight: 500;

    width: 100%;
    max-width: 600px;
}

#bioPage main a:hover div {
    background-color: #FEEDE4;
    transition: 250ms linear;
}

#bioPage main a div {
    display: flex;
    align-items: center;
    padding: 15px 25px;
    gap: 15px;
    width: 100%;

    border: 1px solid #242424;
    border-radius: 25px;
}

#bioPage div img {
    width: 30px;
}

/*Responsive Smartphone*/
@media screen and (max-width: 767px) {
    #bioPage main a {
        width: 100%;
    }

    #bioPage main {
        padding-left: 0;
        padding-right: 0;
        padding-bottom: 100px;
    }

    #bioPage .bioMain {
        padding: 20px;
    }
}