/* =========================================================
   Saitebi.Net
   ABOUT PAGE
========================================================= */


/* =========================================================
   ABOUT PAGE
========================================================= */

.about-page {
    width: 888px;

    margin: 0 auto;

    padding: 18px 0 40px;
}


/* =========================================================
   ABOUT TITLE
========================================================= */

.about-title {
    margin-bottom: 25px;

    text-align: center;
}

.about-title h1 {
    margin: 0;

    color: #000080;

    font-size: 21px;

    font-weight: bold;

    line-height: 28px;
}

.about-title .title-decoration {
    width: 70px;

    height: 3px;

    margin: 7px auto 8px;

    background: #a0522d;
}

.about-title p {
    margin: 0;

    color: #222222;

    font-size: 16px;

    line-height: 21px;
}


/* =========================================================
   ABOUT BOX
========================================================= */

.about-box {
    display: flex;

    width: 100%;

    margin-bottom: 16px;

    padding: 20px 22px;

    background: #b5b5b5;

    border: 1px solid #888888;

    border-radius: 2px;

    box-shadow: 0 1px 2px rgba(0, 0, 0, .18);

    transition:
        background-color .18s ease,
        box-shadow .18s ease,
        transform .18s ease;
}

.about-box:hover {
    background: #bcbcbc;

    box-shadow: 0 4px 10px rgba(0, 0, 0, .20);

    transform: translateY(-1px);
}


/* =========================================================
   INTRO BOX
========================================================= */

.about-intro {
    padding: 25px 28px;

    background: #c0c0c0;
}


/* =========================================================
   ABOUT ICON
========================================================= */

.about-icon {
    flex: 0 0 70px;

    width: 70px;
    height: 70px;

    margin-right: 22px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #a0522d;

    border-radius: 50%;

    color: #ffffff;

    font-size: 32px;

    box-shadow:
        0 3px 8px rgba(0, 0, 0, .25);
}


/* =========================================================
   ABOUT NUMBER
========================================================= */

.about-number {
    flex: 0 0 42px;

    width: 42px;
    height: 42px;

    margin-right: 20px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #a0522d;

    border-radius: 50%;

    color: #ffffff;

    font-size: 19px;

    font-weight: bold;

    box-shadow:
        0 2px 6px rgba(0, 0, 0, .22);
}


/* =========================================================
   ABOUT CONTENT
========================================================= */

.about-content {
    flex: 1 1 auto;

    min-width: 0;
}

.about-content h2 {
    margin: 0 0 9px;

    color: #000080;

    font-size: 18px;

    font-weight: bold;

    line-height: 24px;
}

.about-content p {
    margin: 0 0 10px;

    color: #222222;

    font-size: 15px;

    line-height: 23px;
}

.about-content p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   ABOUT LIST
========================================================= */

.about-list {
    margin-top: 14px;

    padding: 0;
}

.about-list-item {
    display: flex;

    align-items: flex-start;

    margin-bottom: 7px;
}

.about-list-item:last-child {
    margin-bottom: 0;
}

.about-list-item span {
    flex: 0 0 22px;

    color: #a0522d;

    font-size: 16px;

    font-weight: bold;

    line-height: 22px;
}

.about-list-item p {
    margin: 0;

    color: #222222;

    font-size: 14px;

    line-height: 22px;
}


/* =========================================================
   ACTION
========================================================= */

.about-action {
    margin-top: 17px;
}


/* =========================================================
   BUTTON
========================================================= */

.about-button {
    display: inline-flex;

    min-height: 38px;

    padding: 0 20px;

    align-items: center;
    justify-content: center;

    background: #a0522d;

    border: 1px solid #884321;

    border-radius: 2px;

    color: #ffffff;

    font-size: 14px;

    font-weight: bold;

    line-height: 38px;

    box-shadow:
        0 2px 4px rgba(0, 0, 0, .20);

    transition:
        background-color .15s ease,
        transform .15s ease,
        box-shadow .15s ease;
}

.about-button:hover {
    background: #cd853f;

    color: #ffffff;

    transform: translateY(-1px);

    box-shadow:
        0 4px 8px rgba(0, 0, 0, .25);
}


/* =========================================================
   CONTACT BOX
========================================================= */

.about-contact {
    width: 100%;

    margin-top: 8px;

    padding: 25px 25px 27px;

    background: #c0c0c0;

    border: 1px solid #888888;

    border-radius: 2px;

    text-align: center;

    box-shadow:
        0 1px 2px rgba(0, 0, 0, .18);
}

.about-contact h2 {
    margin: 0 0 8px;

    color: #000080;

    font-size: 19px;

    line-height: 25px;
}

.about-contact p {
    margin: 0 auto 16px;

    max-width: 650px;

    color: #222222;

    font-size: 15px;

    line-height: 22px;
}


/* =========================================================
   MOBILE / TABLET
========================================================= */

@media screen and (max-width: 950px) {

    .about-page {
        width: calc(100% - 24px);

        margin: 0 auto;

        padding: 18px 0 35px;
    }


    /* =========================
       TITLE
    ========================= */

    .about-title {
        margin-bottom: 20px;
    }

    .about-title h1 {
        font-size: 21px;

        line-height: 28px;
    }

    .about-title p {
        font-size: 14px;

        line-height: 21px;
    }


    /* =========================
       BOX
    ========================= */

    .about-box {
        padding: 17px 16px;

        margin-bottom: 12px;
    }

    .about-intro {
        padding: 19px 16px;
    }


    /* =========================
       ICON
    ========================= */

    .about-icon {
        flex: 0 0 55px;

        width: 55px;
        height: 55px;

        margin-right: 15px;

        font-size: 25px;
    }


    /* =========================
       NUMBER
    ========================= */

    .about-number {
        flex: 0 0 36px;

        width: 36px;
        height: 36px;

        margin-right: 14px;

        font-size: 16px;
    }


    /* =========================
       CONTENT
    ========================= */

    .about-content h2 {
        font-size: 17px;

        line-height: 23px;
    }

    .about-content p {
        font-size: 14px;

        line-height: 21px;
    }


    /* =========================
       LIST
    ========================= */

    .about-list-item p {
        font-size: 13px;

        line-height: 20px;
    }


    /* =========================
       CONTACT
    ========================= */

    .about-contact {
        padding: 20px 16px 22px;
    }

    .about-contact h2 {
        font-size: 18px;

        line-height: 24px;
    }

    .about-contact p {
        font-size: 14px;

        line-height: 21px;
    }

}


/* =========================================================
   VERY SMALL PHONES
========================================================= */

@media screen and (max-width: 420px) {

    .about-page {
        width: calc(100% - 16px);

        padding: 16px 0 30px;
    }


    /* =========================
       TITLE
    ========================= */

    .about-title {
        margin-bottom: 17px;
    }

    .about-title h1 {
        font-size: 19px;

        line-height: 26px;
    }

    .about-title p {
        font-size: 13px;

        line-height: 19px;
    }


    /* =========================
       BOX
    ========================= */

    .about-box {
        padding: 15px 12px;

        margin-bottom: 10px;
    }

    .about-intro {
        padding: 17px 12px;
    }


    /* =========================
       ICON
    ========================= */

    .about-icon {
        flex: 0 0 45px;

        width: 45px;
        height: 45px;

        margin-right: 11px;

        font-size: 21px;
    }


    /* =========================
       NUMBER
    ========================= */

    .about-number {
        flex: 0 0 32px;

        width: 32px;
        height: 32px;

        margin-right: 11px;

        font-size: 14px;
    }


    /* =========================
       CONTENT
    ========================= */

    .about-content h2 {
        font-size: 16px;

        line-height: 21px;
    }

    .about-content p {
        font-size: 13px;

        line-height: 20px;
    }


    /* =========================
       LIST
    ========================= */

    .about-list {
        margin-top: 11px;
    }

    .about-list-item {
        margin-bottom: 5px;
    }

    .about-list-item span {
        flex: 0 0 19px;

        font-size: 14px;

        line-height: 20px;
    }

    .about-list-item p {
        font-size: 12px;

        line-height: 19px;
    }


    /* =========================
       BUTTON
    ========================= */

    .about-button {
        min-height: 36px;

        padding: 0 16px;

        font-size: 13px;

        line-height: 36px;
    }


    /* =========================
       CONTACT
    ========================= */

    .about-contact {
        padding: 18px 12px 20px;
    }

    .about-contact h2 {
        font-size: 17px;

        line-height: 23px;
    }

    .about-contact p {
        font-size: 13px;

        line-height: 20px;

        margin-bottom: 14px;
    }

}
