body {
    font-family: "Noto Sans TC", sans-serif !important;
}

img.img-responsive {
    width: 100%;
}

@media (min-width: 992px) {
    .container-story {
        width: 830px;
    }
}

@media (min-width: 1024px) {
    .container-l {
        width: 100%;
    }
}

@media (min-width: 1440px) {
    .container-l {
        width: 100%;
    }
}

@media (min-width: 1630px) {
    .container-letter {
        width: 1600px;
    }
}

@media (min-width: 1900px) {
    .container-l {
        width: 1870px;
    }
}

.dark-brown {
    color: #672E21;
}

.light-brown {
    color: #DE7241;
}

.white {
    color: #ffffff;
}

.cyan {
    color: #1DB99F;
}

.gray {
    color: #878787;
}

.orange {
    color: #FF9900;
}

.red {
    color: #FF6767;
}

/* ---------- nav ---------- */

nav .nav-block {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 50px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

@media screen and (max-width:1024px) {
    nav .nav-block {
        padding: 20px;
    }
}

@media screen and (max-width:768px) {
    nav .nav-block {
        background-color: #FDF2EA;
        flex-wrap: wrap;
        padding: 15px 15px 0;
    }
}

@media screen and (max-width:320px) {
    nav .nav-block {
        background-color: #FDF2EA;
        flex-wrap: wrap;
        padding: 15px 12.5px 0;
    }
}

@media screen and (max-width:425px) {
    nav .nav-block img {
        width: 85%;
    }
}

@media screen and (max-width:375px) {
    nav .nav-block img {
        width: 80%;
    }
}

@media screen and (max-width:320px) {
    nav .nav-block img {
        width: 75%;
    }
}

@media screen and (max-width:768px) {
    nav .nav-link {
        width: 100%;
        display: flex;
        justify-content: flex-end;
    }
}

@media screen and (max-width:425px) {
    nav .nav-link {
        justify-content: flex-start;
    }
}

nav .nav-block-bottom {
    display: none;
    opacity: 0;
}

@media screen and (max-width:768px) {
    nav .nav-block-bottom {
        display: block;
        width: 100%;
        position: fixed;
        bottom: 0;
        z-index: 1;
        transition: all .4s;
    }

    nav .nav-link-bottom {
        display: flex;
    }

    nav .nav-link-bottom a {
        color: #ffffff;
        background-color: #de8a4e;
        font-size: 22px;
        line-height: 1.75;
        letter-spacing: 1px;
        font-weight: bold;
        text-align: center;
        display: block;
        width: 33%;
        padding: 10px 15px 12.5px 15px;
        flex-grow: 1;
        transition: all .2s;
    }

    nav .nav-link-bottom a:hover,
    nav .nav-link-bottom a:focus {
        color: #ffffff;
        background-color: #d97436;
        text-decoration: none;
    }

    nav .nav-link-bottom a:nth-child(2) {
        border-left: 2px solid #ffffff;
        border-right: 2px solid #ffffff;
    }
}

@media screen and (max-width:576px) {
    nav .nav-link-bottom a {
        font-size: 18px;
    }
}

@media screen and (max-width:375px) {
    nav .nav-link-bottom a {
        font-size: 16px;
    }
}

@media screen and (max-width:320px) {
    nav .nav-link-bottom a {
        font-size: 14px;
    }
}

nav .nav-link a {
    color: #878787;
    background-color: transparent;
    border-radius: 50px;
    font-size: 22px;
    line-height: 1;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 20px 12.5px;
    margin: 0 15px;
    transition: all .2s;
}

@media screen and (max-width:1024px) {
    nav .nav-link a {
        font-size: 20px;
        margin: 10px 5px;
    }
}

@media screen and (max-width:768px) {
    nav .nav-link a {
        font-size: 20px;
        margin: 10px 2.5px 10px 0;
        flex-shrink: 0;
    }
}

@media screen and (max-width:576px) {
    nav .nav-link a {
        font-size: 18px;
        margin: 10px 3.5px 10px 0;
    }
}

@media screen and (max-width:430px) {
    nav .nav-link a {
        padding: 5px 8.5px 8.5px;
    }
}

@media screen and (max-width:375px) {
    nav .nav-link a {
        font-size: 16px;
        padding: 2.5px 5px 5px;
        margin: 10px 2.5px 10px 0;
    }
}

@media screen and (max-width:320px) {
    nav .nav-link a {
        font-size: 16px;
        padding: 2.5px 2.5px 5px;
    }
}

nav .nav-link a:hover,
nav .nav-link a:focus {
    color: #ffffff;
    background-color: #FF9900;
    text-decoration: none;
}

/* ---------- header ---------- */

header {
    position: relative;
}

@media screen and (max-width:768px) {
    header {
        padding: 130px 0 0;
    }
}

@media screen and (max-width:425px) {
    header {
        padding: 110px 0 0;
    }
}

@media screen and (max-width:375px) {
    header {
        padding: 100px 0 0;
    }
}

@media screen and (max-width:320px) {
    header {
        padding: 95px 0 0;
    }
}

header img.mobile{
    display: none;
}

@media screen and (max-width:768px) {
    header img.desktop{
        display: none;
    }

    header img.mobile{
        display: block;
    }
}

.section-letter {
    background-image: url('../../images/event/letter-background.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.section-letter h2 {
    font-size: 26px;
    line-height: 1.75;
    padding: 120px 0;
}

@media screen and (max-width:768px) {
    .section-letter h2 {
        font-size: 22px;
        padding: 80px 0;
    }
}

@media screen and (max-width:425px) {
    .section-letter h2 {
        font-size: 20px;
        padding: 60px 0;
    }
}

@media screen and (max-width:320px) {
    .section-letter h2 {
        padding: 40px 0;
    }
}

@media screen and (max-width:768px) {
    .section-letter .col-sm-4 {
        width: 100%;
    }
}

.section-letter .case {
    text-align: center;
    margin: 0 0 40px;
    position: relative;
}

.section-letter .case-01:before {
    content: '';
    background-image: url('../../images/event/letter-01.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 106px;
    height: 90px;
    position: absolute;
    top: 40px;
    left: 25%;
    transform: translate(-50%, -50%);
}

@media screen and (max-width:1440px) {
    .section-letter .case-01:before {
        left: 45px;
    }
}

.section-letter .case-02:before {
    content: '';
    background-image: url('../../images/event/letter-02.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 102px;
    height: 72px;
    position: absolute;
    top: 40px;
    right: 10%;
    transform: translate(-50%, -50%);
}

@media screen and (max-width:1440px) {
    .section-letter .case-02:before {
        right: -45px;
    }
}

.section-letter .case-03:before {
    content: '';
    background-image: url('../../images/event/letter-03.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 121px;
    height: 89px;
    position: absolute;
    top: 40px;
    right: 5%;
    transform: translate(-50%, -50%);
}

@media screen and (max-width:1440px) {
    .section-letter .case-03:before {
        right: -75px;
    }
}

.section-letter .case-04:before {
    content: '';
    background-image: url('../../images/event/letter-04.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 121px;
    height: 71px;
    position: absolute;
    top: 40px;
    left: 30%;
    transform: translate(-50%, -50%);
}

@media screen and (max-width:1440px) {
    .section-letter .case-04:before {
        left: 45px;
    }
}

.section-letter .case-05:before {
    content: '';
    background-image: url('../../images/event/letter-05.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 131px;
    height: 70px;
    position: absolute;
    top: 40px;
    left: 27.5%;
    transform: translate(-50%, -50%);
}

@media screen and (max-width:1440px) {
    .section-letter .case-05:before {
        left: 45px;
    }
}

.section-letter .case .title {
    background-color: #E1955E;
    border-radius: 5px 5px 0 0;
    font-size: 22px;
    line-height: 1;
    letter-spacing: 1.5px;
    display: inline-block;
    padding: 10px 15px;
    margin: 0;
}

@media screen and (max-width:375px) {
    .section-letter .case .title {
        font-size: 20px;
    }
}

.section-letter .case p:nth-child(2) {
    background-color: #FFF5E4;
    border: 2px solid #E1955E;
    border-radius: 5px;
    font-size: 20px;
    line-height: 1.75;
    letter-spacing: 1px;
    padding: 40px 50px;
}

@media screen and (max-width:1024px) {
    .section-letter .case p:nth-child(2) {
        padding: 40px 10px;
    }
}

@media screen and (max-width:375px) {
    .section-letter .case p:nth-child(2) {
        font-size: 18px;
    }
}

.section-letter .afterword {
    font-size: 20px;
    line-height: 1.75;
    letter-spacing: 1px;
    padding: 50px 0 90px;
}

@media screen and (max-width:320px) {
    .section-letter .afterword {
        font-size: 18px;
        padding: 40px 0;
    }
}

/* @media screen and (max-width:768px) {
    .section-letter .afterword br {
        display: none;
    }
} */

/* ---------- 我要提問 ---------- */

.section-form {
    background-image: url('../../images/event/form-background.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.section-form .question {
    background-color: #FF9900;
    border-radius: 100px;
    font-size: 22px;
    text-align: justify;
    line-height: 1.75;
    letter-spacing: 1px;
    padding: 25px 35px;
    margin: 135px 0 70px;
    position: relative;
}

@media screen and (max-width:768px) {
    .section-form .question {
        margin: 70px 0 135px;
    }
}

@media screen and (max-width:576px) {
    .section-form .question {
        font-size: 20px;
        padding: 25px 30px;
        margin: 70px 0;
    }
}

@media screen and (max-width:430px) {
    .section-form .question {
        border-radius: 40px;
        margin: 70px 0 90px;
    }
}

@media screen and (max-width:375px) {
    .section-form .question {
        font-size: 18px;
        margin: 30px 0 100px;
    }
}

.section-form .question::before {
    content: '';
    background-image: url('../../images/event/question-triangle.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: block;
    width: 21px;
    height: 32px;
    position: absolute;
    bottom: -30px;
    right: 90px;
}

.section-form .preface {
    display: flex;
    align-items: center;
    position: relative;
}

@media screen and (max-width:576px) {
    .section-form .preface {
        flex-direction: column;
        align-items: flex-start;
    }
}

.section-form .preface::before {
    content: '';
    background-image: url('../../images/event/bird.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: block;
    width: 127px;
    height: 91px;
    position: absolute;
    top: -25px;
    right: -25px;
}

@media screen and (max-width:992px) {
    .section-form .preface::before {
        right: 0;
    }
}

@media screen and (max-width:768px) {
    .section-form .preface::before {
        top: -90px;
    }
}

@media screen and (max-width:576px) {
    .section-form .preface::before {
        top: -30px;
    }
}

@media screen and (max-width:425px) {
    .section-form .preface::before {
        top: -50px;
    }
}

@media screen and (max-width:375px) {
    .section-form .preface::before {
        top: -55px;
    }
}

@media screen and (max-width:430px) {
    .section-form .preface img {
       width: 60%;
    }
}

.section-form .preface .content {
    margin-left: 20px;
}

@media screen and (max-width:768px) {
    .section-form .preface .content {
        margin-top: 10px;
        margin-left: 15px;
    }
}

@media screen and (max-width:576px) {
    .section-form .preface .content {
        margin-left: 0px;
    }
}

.section-form .preface .content img {
    margin: 0 0 5px;
}

@media screen and (max-width:425px) {
    .section-form .preface .content img {
        width: 70%;
    }
}

@media screen and (max-width:375px) {
    .section-form .preface .content img {
        margin-left: -15px;
    }
}

.section-form .preface .content p {
    font-size: 20px;
    text-align: justify;
    line-height: 1.75;
    letter-spacing: 1px;
    padding: 0 20px;
}

@media screen and (max-width:430px) {
    .section-form .preface .content p {
        padding: 0 15px;
    }
}

@media screen and (max-width:375px) {
    .section-form .preface .content p {
        padding: 0;
    }
}

@media screen and (max-width:320px) {
    .section-form .preface .content p {
        font-size: 18px;
    }
}

.section-form .preface .content p b {
    color: #666666;
}

.form-block {
    background-color: #ffffff;
    border: 1px solid #DE8A4E;
    border-radius: 20px;
    padding: 60px;
    margin: 70px 0 25px;
    position: relative;
}

@media screen and (max-width:1024px) {
    .form-block {
        margin: 150px 0 25px;
    }
}

@media screen and (max-width:768px) {
    .form-block {
        padding: 45px;
    }
}

@media screen and (max-width:576px) {
    .form-block {
        padding: 30px;
    }
}

@media screen and (max-width:425px) {
    .form-block {
        padding: 15px;
        margin: 110px 0 25px;
    }
}

@media screen and (max-width:375px) {
    .form-block {
        margin: 85px 0 25px;
    }
}

.form-block::before {
    content: '';
    background-image: url('../../images/event/form-mark-01.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: block;
    width: 80px;
    height: 257px;
    position: absolute;
    top: 60px;
    left: -80px;
}

@media screen and (max-width:1024px) {
    .form-block::before {
        content: '';
        background-image: url('../../images/event/form-mark-02.png');
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        display: block;
        width: 257px;
        height: 80px;
        position: absolute;
        top: -40px;
        left: 50%;
        transform: translate(-50%, -50%);
    }
}

@media screen and (max-width:425px) {
    .form-block::before {
        width: 205px;
        height: 64px;
        top: -31px;
    }
}

@media screen and (max-width:320px) {
    .form-block::before {
        width: 160px;
        height: 50px;
        top: -25px;
    }
}

.form-flex {
    display: flex;
}

@media screen and (max-width:425px) {
    .form-flex {
        flex-direction: column;
    }
}

.form-block form p {
    font-size: 22px;
    line-height: 1.75;
    letter-spacing: 1px;
}

@media screen and (max-width:425px) {
    .form-block form p {
        font-size: 20px;
        margin: 0 0 5px;
    }
}

@media screen and (max-width:375px) {
    .form-block form p {
        font-size: 18px;
    }
}

.form-block form label {
    color: #878787;
    font-size: 22px;
    font-weight: normal;
    text-align: justify;
    line-height: 1.75;
    letter-spacing: 1px;
    margin: 10px;
}

@media screen and (max-width:425px) {
    .form-block form label {
        font-size: 20px;
        margin: 5px;
    }
}

@media screen and (max-width:375px) {
    .form-block form label {
        font-size: 18px;
    }
}

.form-block form label.form-title {
    color: #DE8A4E;
    margin: 10px 0;
    flex-shrink: 0;
}

@media screen and (max-width:425px) {
    .form-block form label.form-title {
        margin: 5px 0;
    }
}

.form-control {
    color: #555555;
    background-color: #ffffff;
    background-image: none;
    border: 1px solid #cccccc;
    border-radius: 4px;
    font-size: 22px;
    line-height: 1.75;
    display: block;
    width: 100%;
    padding: 5px;
}

@media screen and (max-width:425px) {
    .form-control {
        font-size: 20px;
    }
}

@media screen and (max-width:375px) {
    .form-control {
        font-size: 18px;
    }
}

.form-inline {
    color: #555555;
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 1px solid #cccccc;
    border-radius: 0;
    font-size: 22px;
    width: 100%;
    padding: 5px;
}

@media screen and (max-width:425px) {
    .form-inline {
        font-size: 20px;
    }
}

@media screen and (max-width:375px) {
    .form-inline {
        font-size: 18px;
    }
}

.form-control:focus,
.form-inline:focus {
    border-color: #cccccc;
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.form-block input[type=checkbox],
.form-block input[type=radio] {
    border-color: #cccccc;
}

.form-block button.submit {
    color: #ffffff;
    background-color: #FF9900;
    border: none;
    border-radius: 10px;
    font-size: 22px;
    letter-spacing: 1px;
    padding: 15px 20px;
    margin: 10px;
    transition: all .2s;
}

@media screen and (max-width:425px) {
    .form-block button.submit {
        margin: 35px 5px;
    }
}

@media screen and (max-width:375px) {
    .form-block button.submit {
        font-size: 20px;
    }
}

.form-block button.submit:hover {
    background-color: #e27200;
}

.form-block button.submit:focus {
    background-color: #bb4d02;
}

.form-block button.cancel {
    color: #ffffff;
    background-color: #818181;
    border: none;
    border-radius: 10px;
    font-size: 22px;
    letter-spacing: 1px;
    padding: 15px 20px;
    margin: 35px 10px;
    transition: all .2s;
}

@media screen and (max-width:425px) {
    .form-block button.cancel {
        margin: 35px 5px;
    }
}

@media screen and (max-width:375px) {
    .form-block button.cancel {
        font-size: 20px;
    }
}

.form-block button.cancel:hover {
    background-color: #6d6d6d;
}

.form-block button.cancel:focus {
    background-color: #5d5d5d;
}

.section-form .afterword {
    font-size: 20px;
    line-height: 1.75;
    letter-spacing: 1px;
    margin: 20px 0 140px;
}

@media screen and (max-width:320px) {
    .section-form .afterword {
        font-size: 18px;
        margin: 20px 0 60px;
    }
}

.section-form #eCode{
    margin: 10px;
}

.section-form #eCode #eCode{
    margin: 0;
}

.section-form #eCode img,
.section-form #eCode span {
    vertical-align: text-top;
}

.section-form #eCode .goodsinput_2 {
    color: #555555;
    border: 1px solid #cccccc;
    border-radius: 4px;
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    font-size: 22px;
    line-height: 1;
    padding: 2.5px 5px 2.5px;
}

.section-form #eCode .goodsinput_2:focus{
    outline: 0;
}

@media screen and (max-width:425px) {
    .section-form #eCode .goodsinput_2 {
        font-size: 20px;
    }
}

@media screen and (max-width:375px) {
    .section-form #eCode .goodsinput_2 {
        font-size: 18px;
    }
}

/* ---------- 他們的故事 ---------- */

.section-story {
    background-image: url('../../images/event/story-background.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 0 0 90px;
    position: relative;
}

@media screen and (max-width:576px) {
    .section-story {
        padding: 0px 0 245px;
    }
}

@media screen and (max-width:375px) {
    .section-story {
        padding: 0px 0 190px;
    }
}

@media screen and (max-width:576px) {
    .section-story::before {
        content: '';
        background-image: url('../../images/event/story-texture-01.png');
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        display: block;
        width: 324px;
        height: 184px;
        position: absolute;
        bottom: -95px;
        left: 50%;
        transform: translate(-50%, -50%);
    }
}

@media screen and (max-width:375px) {
    .section-story::before {
        width: 274px;
        height: 156px;
        position: absolute;
        bottom: -80px;
        left: 50%;
        transform: translate(-50%, -50%);
    }
}

.section-story .story-title {
    margin: 90px 0 0;
}

@media screen and (max-width:576px) {
    .section-story .story-title {
        width: 85%;
    }
}

@media screen and (max-width:375px) {
    .section-story .story-title {
        width: 90%;
    }
}

@media screen and (max-width:320px) {
    .section-story .story-title {
        width: 95%;
    }
}

.section-story .note {
    margin: 0 0 20px;
    position: relative;
}

@media screen and (max-width:576px) {
    .section-story .note {
        margin: 0 0 40px;
    }
}

.section-story .note .content {
    width: 100%;
    padding: 0 100px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@media screen and (max-width:1024px) {
    .section-story .note .content {
        padding: 0 60px;
    }
}

@media screen and (max-width:992px) {
    .section-story .note .content {
        padding: 0 80px;
    }
}

@media screen and (max-width:768px) {
    .section-story .note .content {
        padding: 0 60px;
    }
}

@media screen and (max-width:576px) {
    .section-story .note .content {
        padding: 0 30px;
    }
}

@media screen and (max-width:425px) {
    .section-story .note .content {
        padding: 0 15px;
    }
}

.section-story p {
    font-size: 22px;
    text-align: justify;
    line-height: 1.75;
    letter-spacing: 1px;
    margin: 10px 0;
}

@media screen and (max-width:768px) {
    .section-story p {
        font-size: 20px;
    }
}

@media screen and (max-width:430px) {
    .section-story p {
        font-size: 18px;
    }
}

.section-story p.text-right {
    text-align: right;
}

.note-01 {
    background-image: url('../../images/event/note-01-background.png');
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    min-height: 650px;
    position: relative;
}

@media screen and (max-width:1024px) {
    .section-story .note-01 {
        margin: 200px 0 20px;
    }
}

@media screen and (max-width:576px) {
    .section-story .note-01 {
        margin: 220px 0 20px;
    }
}

@media screen and (max-width:430px) {
    .section-story .note-01 {
        min-height: 750px;
    }
}

@media screen and (max-width:320px) {
    .section-story .note-01 {
        min-height: 875px;
    }
}

@media screen and (max-width:576px) {
    .note-01 {
        background-image: url('../../images/event/note-01-background-small.png');
        background-repeat: no-repeat;
        background-position: top center;
        background-size: cover;
    }
}

.note-01::before {
    content: '';
    background-image: url('../../images/event/story-avatar-01.png');
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    display: block;
    width: 220px;
    height: 220px;
    position: absolute;
    top: 50px;
    left: -75px;
    transform: translate(-50%, -50%);
}

@media screen and (max-width:1024px) {
    .note-01::before {
        top: -60px;
        left: 50%;
    }
}

@media screen and (max-width:576px) {
    .note-01::before {
        top: -80px;
    }
}

@media screen and (max-width:375px) {
    .note-01::before {
        width: 200px;
        height: 200px;
        top: -60px;
    }
}

@media screen and (max-width:576px) {
    .note-01::after {
        content: '';
        background-image: url('../../images/event/q1.png');
        background-repeat: no-repeat;
        background-position: top center;
        background-size: cover;
        display: block;
        width: 70px;
        height: 60px;
        position: absolute;
        top: -15px;
        left: 30px;
    }
}

@media screen and (max-width:430px) {
    .note-01::after {
        width: 60px;
        height: 51px;
        top: -10px;
        left: 15px;
    }
}

@media screen and (max-width:375px) {
    .note-01::after {
        top: 40px;
    }
}

@media screen and (max-width:320px) {
    .note-01::after {
        top: 50px;
    }
}

@media screen and (max-width:992px) {
    .section-story .note-01 .content {
        top: 47.5%;
    }
}

@media screen and (max-width:576px) {
    .section-story .note-01 .content {
        top: 47.5%;
    }
}

.note-02 {
    background-image: url('../../images/event/note-02-background.png');
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    min-height: 800px;
    position: relative;
}

@media screen and (max-width:1024px) {
    .section-story .note-02 {
        margin: 225px 0 20px;
    }
}

@media screen and (max-width:576px) {
    .section-story .note-02 {
        margin: 160px 0 20px;
    }
}

@media screen and (max-width:375px) {
    .section-story .note-02 {
        margin: 80px 0 20px;
    }
}

@media screen and (max-width:576px) {
    .note-02 {
        background-image: url('../../images/event/note-02-background-small.png');
    }
}

@media screen and (max-width:375px) {
    .note-02 {
        min-height: 900px;
    }
}

@media screen and (max-width:320px) {
    .note-02 {
        min-height: 1050px;
    }
}

.note-02::before {
    content: '';
    background-image: url('../../images/event/story-avatar-02.png');
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    display: block;
    width: 220px;
    height: 220px;
    position: absolute;
    top: 125px;
    right: -150px;
}

@media screen and (max-width:1024px) {
    .note-02::before {
        top: -125px;
        left: 50%;
        transform: translate(-50%, -50%);
    }
}

@media screen and (max-width:576px) {
    .note-02::before {
        top: -60px;
    }
}

@media screen and (max-width:375px) {
    .note-02::before {
        width: 200px;
        height: 200px;
        top: -30px;
    }
}

@media screen and (max-width:576px) {
    .note-02::after {
        content: '';
        background-image: url('../../images/event/a1.png');
        background-repeat: no-repeat;
        background-position: top center;
        background-size: cover;
        display: block;
        width: 67px;
        height: 46px;
        position: absolute;
        top: -15px;
        left: 30px;
    }
}

@media screen and (max-width:430px) {
    .note-02::after {
        width: 57px;
        height: 39px;
        top: -10px;
        left: 15px;
    }
}

@media screen and (max-width:375px) {
    .note-02::after {
        top: 30px;
    }
}

@media screen and (max-width:320px) {
    .note-02::after {
        top: 55px;
    }
}

.section-story .note-02 .content {
    top: 60%;
}

@media screen and (max-width:576px) {
    .section-story .note-02 .content {
        top: 47.5%;
    }
}

.note-03 {
    background-image: url('../../images/event/note-03-background.png');
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    min-height: 610px;
}

@media screen and (max-width:768px) {
    .note-03 {
        min-height: 550px;
    }
}

@media screen and (max-width:430px) {
    .section-story .note-03 {
        margin: -60px 0 40px;
    }
}

@media screen and (max-width:375px) {
    .note-03 {
        min-height: 600px;
    }
}

@media screen and (max-width:320px) {
    .note-03 {
        min-height: 650px;
    }
}

@media screen and (max-width:576px) {
    .section-story .note-03 .content {
        top: 52.5%;
    }
}

.note-04 {
    background-image: url('../../images/event/note-04-background.png');
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    min-height: 700px;
}

@media screen and (max-width:1024px) {
    .note-04 {
        min-height: 790px;
    }
}

@media screen and (max-width:768px) {
    .note-04 {
        min-height: 650px;
    }
}

@media screen and (max-width:375px) {
    .note-04 {
        min-height: 700px;
    }
}

@media screen and (max-width:320px) {
    .note-04 {
        min-height: 725px;
    }
}

@media screen and (max-width:430px) {
    .section-story .note-04 .content {
        top: 47.5%;
    }
}

.note-02 h3,
.note-03 h3,
.note-04 h3 {
    background-color: #1DB99F;
    font-size: 26px;
    text-align: justify;
    line-height: 1.5;
    letter-spacing: 1px;
    display: inline-block;
    padding: 15px 20px 15px 50px;
    position: relative;
}

@media screen and (max-width:768px) {

    .note-02 h3,
    .note-03 h3,
    .note-04 h3 {
        font-size: 24px;
    }
}

@media screen and (max-width:430px) {

    .note-02 h3,
    .note-03 h3,
    .note-04 h3 {
        font-size: 22px;
        padding: 12.5px 15px 15px 35px;
    }
}

@media screen and (max-width:320px) {

    .note-02 h3,
    .note-03 h3,
    .note-04 h3 {
        font-size: 20px;
    }
}

.note-02 h3::before,
.note-03 h3::before,
.note-04 h3::before {
    color: #1DB99F;
    background-color: #ffffff;
    border: 3px solid #1DB99F;
    border-radius: 100%;
    font-size: 26px;
    font-weight: bold;
    display: block;
    position: absolute;
    width: 70px;
    height: 70px;
    padding: 10px 24.5px;
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
}

.note-02 h3::before {
    content: '1';
}

.note-03 h3::before {
    content: '2';
}

.note-04 h3::before {
    content: '3';
}

@media screen and (max-width:992px) {

    .note-02 h3::before,
    .note-03 h3::before,
    .note-04 h3::before {
        padding: 10px 23.5px;
    }
}

@media screen and (max-width:576px) {

    .note-02 h3::before,
    .note-03 h3::before,
    .note-04 h3::before {
        padding: 10px 24.5px;
    }
}

@media screen and (max-width:576px) {

    .note-02 h3::before,
    .note-03 h3::before,
    .note-04 h3::before {
        padding: 10px 24.5px;
    }
}

@media screen and (max-width:430px) {

    .note-02 h3::before,
    .note-03 h3::before,
    .note-04 h3::before {
        font-size: 24px;
        width: 50px;
        height: 50px;
        padding: 2.5px 15px;
    }
}

.note-02 .round-button,
.note-03 .round-button,
.note-04 .round-button {
    color: #1DB99F;
    background-color: #ffffff;
    border: 1px solid #1DB99F;
    border-radius: 70px;
    font-size: 22px;
    text-align: justify;
    line-height: 1.5;
    display: inline-block;
    padding: 15px 25px 19.5px 55px;
    margin: 5px 0;
    position: relative;
    transition: all .2s;
}

@media screen and (max-width:768px) {

    .note-02 .round-button,
    .note-03 .round-button,
    .note-04 .round-button {
        font-size: 20px;
    }
}

@media screen and (max-width:430px) {

    .note-02 .round-button,
    .note-03 .round-button,
    .note-04 .round-button {
        font-size: 16px;
    }
}

.note-02 .round-button:hover,
.note-02 .round-button:focus,
.note-03 .round-button:hover,
.note-03 .round-button:focus,
.note-04 .round-button:hover,
.note-04 .round-button:focus {
    color: #ffffff;
    background-color: #1DB99F;
    border: 1px solid #1DB99F;
    text-decoration: none;
}

.note-02 .round-button::before,
.note-03 .round-button::before,
.note-04 .round-button::before {
    content: '';
    background-image: url('../../images/event/cyan-book-icon.svg');
    display: block;
    width: 34px;
    height: 28px;
    position: absolute;
    top: 50%;
    left: 35px;
    transform: translate(-50%, -50%);
    transition: all .4s;
}

.note-02 .round-button:hover::before,
.note-02 .round-button:focus::before,
.note-03 .round-button:hover::before,
.note-03 .round-button:focus::before,
.note-04 .round-button:hover::before,
.note-04 .round-button:focus::before {
    background-image: url('../../images/event/white-book-icon.svg');
}

.note-05 {
    background-image: url('../../images/event/note-05-background.png');
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    min-height: 600px;
}

@media screen and (max-width:1024px) {
    .section-story .note-05 {
        margin: 225px 0 20px;
    }
}

@media screen and (max-width:1024px) {
    .section-story .note-05 {
        margin: 225px 0 20px;
    }
}

@media screen and (max-width:576px) {
    .section-story .note-05 {
        background-image: url('../../images/event/note-05-background-small.png');
        margin: 260px 0 20px;
    }
}

@media screen and (max-width:375px) {
    .section-story .note-05 {
        min-height: 650px;
        margin: 200px 0 20px;
    }
}

@media screen and (max-width:320px) {
    .section-story .note-05 {
        min-height: 850px;
    }
}

.note-05::before {
    content: '';
    background-image: url('../../images/event/story-avatar-03.png');
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    display: block;
    width: 220px;
    height: 220px;
    position: absolute;
    top: 100px;
    left: -75px;
    transform: translate(-50%, -50%);
}

@media screen and (max-width:1024px) {
    .note-05::before {
        top: -70px;
        left: 50%;
    }
}

@media screen and (max-width:576px) {
    .note-05::before {
        top: -100px;
    }
}

@media screen and (max-width:375px) {
    .note-05::before {
        width: 200px;
        height: 200px;
        top: -60px;
    }
}

@media screen and (max-width:576px) {
    .note-05::after {
        content: '';
        background-image: url('../../images/event/q2.png');
        background-repeat: no-repeat;
        background-position: top center;
        background-size: cover;
        display: block;
        width: 83px;
        height: 60px;
        position: absolute;
        top: -15px;
        left: 30px;
    }
}

@media screen and (max-width:430px) {
    .note-05::after {
        width: 73px;
        height: 53px;
        top: -10px;
        left: 15px;
    }
}

@media screen and (max-width:375px) {
    .note-05::after {
        top: 10px;
    }
}

@media screen and (max-width:320px) {
    .note-05::after {
        top: 40px;
    }
}

.section-story .note-05 .content {
    top: 45%;
}

@media screen and (max-width:576px) {
    .section-story .note-05 .content {
        top: 42.5%;
    }
}

@media screen and (max-width:430px) {
    .section-story .note-05 .content {
        top: 45%;
    }
}

.note-06 {
    background-image: url('../../images/event/note-06-background.png');
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    min-height: 700px;
}

@media screen and (max-width:1024px) {
    .section-story .note-06 {
        margin: 200px 0 20px;
    }
}

@media screen and (max-width:576px) {
    .section-story .note-06 {
        background-image: url('../../images/event/note-06-background-small.png');
        min-height: 800px;
        margin: 100px 0 -60px;
    }
}

@media screen and (max-width:375px) {
    .section-story .note-06 {
        min-height: 950px;
    }
}

@media screen and (max-width:375px) {
    .section-story .note-06 {
        margin: 20px 0 -120px;
    }
}

.note-06::before {
    content: '';
    background-image: url('../../images/event/story-avatar-04.png');
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    display: block;
    width: 220px;
    height: 220px;
    position: absolute;
    top: 100px;
    right: -100px;
}

@media screen and (max-width:1024px) {
    .note-06::before {
        top: -125px;
        left: 50%;
        transform: translate(-50%, -50%);
    }
}

@media screen and (max-width:576px) {
    .note-06::before {
        top: 0;
    }
}

@media screen and (max-width:375px) {
    .note-06::before {
        width: 200px;
        height: 200px;
        top: 50px;
    }
}

@media screen and (max-width:576px) {
    .note-06::after {
        content: '';
        background-image: url('../../images/event/a2.png');
        background-repeat: no-repeat;
        background-position: top center;
        background-size: cover;
        display: block;
        width: 82px;
        height: 47px;
        position: absolute;
        top: 110px;
        left: 30px;
    }
}

@media screen and (max-width:430px) {
    .note-06::after {
        width: 72px;
        height: 41px;
        top: 110px;
        left: 15px;
    }
}

@media screen and (max-width:375px) {
    .note-06::after {
        top: 150px;
    }
}

@media screen and (max-width:320px) {
    .note-06::after {
        top: 160px;
    }
}

.section-story .note-06 .content {
    top: 57.5%;
}

@media screen and (max-width:576px) {
    .section-story .note-06 .content {
        top: 50%;
    }
}

.note-07 {
    background-image: url('../../images/event/note-07-background.png');
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    min-height: 720px;
}

@media screen and (max-width:576px) {
    .note-07 {
        min-height: 800px;
    }
}

@media screen and (max-width:375px) {
    .note-07 {
        min-height: 900px;
    }
}

@media screen and (max-width:576px) {
    .section-story .note-07 .content {
        top: 47.5%;
    }
}

.note-08 {
    background-image: url('../../images/event/note-08-background.png');
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    min-height: 625px;
}

@media screen and (max-width:430px) {
    .note-08 {
        min-height: 700px;
    }
}

@media screen and (max-width:375px) {
    .section-story .note-08 {
        margin: -15px 0 40px;
    }
}

@media screen and (max-width:430px) {
    .section-story .note-08 .content {
        top: 47.5%;
    }
}

.note-06 h3,
.note-07 h3,
.note-08 h3 {
    background-color: #FF9900;
    font-size: 26px;
    text-align: justify;
    line-height: 1.5;
    letter-spacing: 1px;
    display: inline-block;
    padding: 15px 20px 15px 50px;
    position: relative;
}

@media screen and (max-width:768px) {

    .note-06 h3,
    .note-07 h3,
    .note-08 h3 {
        font-size: 24px;
    }
}

@media screen and (max-width:430px) {

    .note-06 h3,
    .note-07 h3,
    .note-08 h3 {
        font-size: 22px;
        padding: 12.5px 15px 15px 35px;
    }
}

@media screen and (max-width:320px) {

    .note-05 h3,
    .note-06 h3,
    .note-07 h3 {
        font-size: 20px;
    }
}

.note-06 h3::before,
.note-07 h3::before,
.note-08 h3::before {
    color: #FF9900;
    background-color: #ffffff;
    border: 3px solid #FF9900;
    border-radius: 100%;
    font-size: 26px;
    font-weight: bold;
    display: block;
    position: absolute;
    width: 70px;
    height: 70px;
    padding: 10px 24.5px;
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
}

.note-06 h3::before {
    content: '1';
}

.note-07 h3::before {
    content: '2';
}

.note-08 h3::before {
    content: '3';
}

@media screen and (max-width:992px) {

    .note-06 h3::before,
    .note-07 h3::before,
    .note-08 h3::before {
        padding: 10px 23.5px;
    }
}

@media screen and (max-width:576px) {

    .note-06 h3::before,
    .note-07 h3::before,
    .note-08 h3::before {
        padding: 10px 24.5px;
    }
}

@media screen and (max-width:430px) {

    .note-06 h3::before,
    .note-07 h3::before,
    .note-08 h3::before {
        font-size: 24px;
        width: 50px;
        height: 50px;
        padding: 2.5px 15px;
    }
}

.note-06 .round-button,
.note-07 .round-button,
.note-08 .round-button {
    color: #FF9900;
    background-color: #ffffff;
    border: 1px solid #FF9900;
    border-radius: 70px;
    font-size: 22px;
    line-height: 1.5;
    display: inline-block;
    padding: 15px 25px 19.5px 55px;
    margin: 5px 0;
    position: relative;
    transition: all .2s;
}

@media screen and (max-width:768px) {

    .note-06 .round-button,
    .note-07 .round-button,
    .note-08 .round-button {
        font-size: 20px;
    }
}

@media screen and (max-width:430px) {

    .note-06 .round-button,
    .note-07 .round-button,
    .note-08 .round-button {
        font-size: 16px;
    }
}

.note-06 .round-button:hover,
.note-06 .round-button:focus,
.note-07 .round-button:hover,
.note-07 .round-button:focus,
.note-08 .round-button:hover,
.note-08 .round-button:focus {
    color: #ffffff;
    background-color: #FF9900;
    border: 1px solid #FF9900;
    text-decoration: none;
}

.note-06 .round-button::before,
.note-07 .round-button::before,
.note-08 .round-button::before {
    content: '';
    background-image: url('../../images/event/orange-book-icon.svg');
    display: block;
    width: 34px;
    height: 28px;
    position: absolute;
    top: 50%;
    left: 35px;
    transform: translate(-50%, -50%);
    transition: all .4s;
}

.note-06 .round-button:hover::before,
.note-06 .round-button:focus::before,
.note-07 .round-button:hover::before,
.note-07 .round-button:focus::before,
.note-08 .round-button:hover::before,
.note-08 .round-button:focus::before {
    background-image: url('../../images/event/white-book-icon.svg');
}

.section-story a.more {
    color: #ffffff;
    background-color: #2fadb5;
    border-radius: 50px;
    font-size: 26px;
    line-height: 1;
    letter-spacing: 1px;
    display: inline-block;
    padding: 15px 30px 18.5px;
    margin: 15px 0;
    transition: all .2s;
}

.section-story a.more:hover {
    color: #ffffff;
    background-color: #288692;
    text-decoration: none;
}

.section-story a.more:focus {
    color: #ffffff;
    background-color: #276d77;
    text-decoration: none;
}

@media screen and (max-width:430px) {
    .section-story a.more {
        font-size: 24px;
    }
}

/* ---------- 推薦書單 ---------- */

.section-booklist {
    background-image: url('../../images/event/book-background.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    text-align: center;
}

.section-booklist .quote {
    background-color: #ffffff;
    border: 1px solid #1DB99F;
    border-radius: 10px;
    display: flex;
    padding: 40px 75px 50px;
    margin: 100px 0 50px;
}

@media screen and (max-width:768px) {
    .section-booklist .quote {
        flex-direction: column;
        padding: 40px 15px 50px;
    }
}

@media screen and (max-width:576px) {
    .section-booklist .quote {
        padding: 30px 25px 35px;
    }
}

@media screen and (max-width:425px) {
    .section-booklist .quote {
        padding: 30px 25px 30px;
    }
}

@media screen and (max-width:320px) {
    .section-booklist .quote {
        padding: 30px 20px 30px;
        margin: 75px 0 50px;
    }
}

.section-booklist .quote .content {
    text-align: left;
    width: 100%;
    margin-left: 30px;
}

@media screen and (max-width:768px) {
    .section-booklist .quote .content {
        text-align: center;
        margin-left: 0;
    }
}

.section-booklist .quote .content .experience {
    margin-left: 30px;
}

@media screen and (max-width:768px) {
    .section-booklist .quote .content .experience {
        margin-left: 0px;
    }
}

.section-booklist .quote .content .doctor-title {
    width: 55%;
}

@media screen and (max-width:1024px) {
    .section-booklist .quote .content .doctor-title {
        width: 75%;
    }
}

@media screen and (max-width:768px) {
    .section-booklist .quote .content .doctor-title {
        width: 60%;
    }
}

@media screen and (max-width:425px) {
    .section-booklist .quote .content .doctor-title {
        width: 90%;
    }
}

@media screen and (max-width:320px) {
    .section-booklist .quote .content .doctor-title {
        width: 100%;
    }
}

.section-booklist .quote h3 {
    color: #258877;
    font-family: "Noto Serif TC", serif;
    font-size: 26px;
    font-weight: bold;
    text-align: left;
    letter-spacing: 1px;
    margin: 10px 0 20px;
}

.section-booklist .quote .content .content-flex {
    display: flex;
}

@media screen and (max-width:425px) {
    .section-booklist .quote .content .content-flex {
        flex-direction: column;
    }
}

.section-booklist .quote .content .content-flex ul {
    color: #885A50;
    font-size: 20px;
    text-align: left;
    line-height: 1.75;
    letter-spacing: 1px;
    width: 50%;
}

@media screen and (max-width:425px) {
    .section-booklist .quote .content .content-flex ul {
        width: 100%;
        margin: 0 0 20px;
    }
}

.section-booklist .quote .content .content-flex ul li {
    list-style: disc;
    margin-left: 27.5px;
}

.section-booklist .booklist-title {
    display: inline-block;
    margin: 0 0 50px;
}

@media screen and (max-width:430px) {
    .section-booklist .booklist-title {
        width: 80%;
    }
}

@media screen and (max-width:320px) {
    .section-booklist .booklist-title {
        width: 95%;
    }
}

.section-booklist .booklist {
    display: block;
    margin: 0 0 80px;
}

@media screen and (max-width:768px) {
    .section-booklist .booklist {
        display: none;
    }
}

.section-booklist .booklist-small {
    display: none;
}

@media screen and (max-width:768px) {
    .section-booklist .booklist-small {
        display: block;
        margin: 0 0 80px;
    }
}

.section-booklist a.more {
    color: #ffffff;
    background-color: #a1bb3a;
    border-radius: 50px;
    font-size: 26px;
    line-height: 1;
    letter-spacing: 1px;
    display: inline-block;
    padding: 15px 30px 18.5px;
    margin: 15px 0 110px;
    transition: all .2s;
}

.section-booklist a.more:hover {
    color: #ffffff;
    background-color: #b2c754;
    text-decoration: none;
}

.section-booklist a.more:focus {
    color: #ffffff;
    background-color: #c9d97d;
    text-decoration: none;
}

@media screen and (max-width:425px) {
    .section-booklist a.more {
        font-size: 24px;
    }
}

/* ---------- footer ---------- */

footer {
    background-color: #505050;
    padding: 70px 0 60px;
}

@media screen and (max-width:768px) {
    footer {
        padding: 70px 0 120px;
    }
}

@media screen and (max-width:576px) {
    footer {
        padding: 50px 0 115px;
    }
}

@media screen and (max-width:425px) {
    footer {
        padding: 50px 0 100px;
    }
}

footer .footer-block {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0 120px;
}

@media screen and (max-width:1440px) {
    footer .footer-block {
        padding: 0 15px;
    }
}

@media screen and (max-width:1024px) {
    footer .footer-block {
        justify-content: flex-start;
    }
}

@media screen and (max-width:768px) {
    footer .footer-block {
        flex-direction: column;
    }
}

@media screen and (max-width:375px) {
    footer .footer-block {
        padding: 0;
    }
}

@media screen and (max-width:425px) {
    footer .footer-block img {
        width: 80%;
    }
}

@media screen and (max-width:1024px) {
    footer .footer-text {
        margin-left: 30px;
    }
}

@media screen and (max-width:768px) {
    footer .footer-text {
        margin-left: 0;
    }
}

footer .footer-text ul {
    color: #ffffff;
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: 1px;
    display: flex;
    flex-wrap: wrap;
    margin: 0 0 30px;
}

@media screen and (max-width:1024px) {
    footer .footer-text ul {
        line-height: 1.75;
        flex-direction: column;
        margin: 0 0 10px;
    }
}

@media screen and (max-width:768px) {
    footer .footer-text ul {
        margin: 20px 0 20px;
    }
}

@media screen and (max-width:576px) {
    footer .footer-text ul {
        font-size: 18px;
    }
}

@media screen and (max-width:425px) {
    footer .footer-text ul {
        font-size: 16px;
    }
}

@media screen and (max-width:320px) {
    footer .footer-text ul {
        font-size: 14px;
    }
}

footer .footer-text ul li {
    border-right: 2px solid #ffffff;
    padding: 0 10px 2.5px;
}

@media screen and (max-width:1024px) {
    footer .footer-text ul li {
        border-right: none;
        margin: 0 0 10px;
    }
}

footer .footer-text p {
    border: 1px solid #ffffff;
    border-radius: 50px;
    color: #ffffff;
    font-size: 20px;
    line-height: 1.75;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 30px;
}

@media screen and (max-width:1024px) {
    footer .footer-text p {
        font-size: 18px;
    }
}

@media screen and (max-width:576px) {
    footer .footer-text p {
        font-size: 16px;
    }
}

@media screen and (max-width:425px) {
    footer .footer-text p {
        border-radius: 20px;
        font-size: 16px;
        padding: 10px 15px;
    }
}

@media screen and (max-width:320px) {
    footer .footer-text p {
        font-size: 14px;
    }
}

footer .footer-text p br {
    display: none;
}

@media screen and (max-width:425px) {
    footer .footer-text p br {
        display: block;
    }
}

/* ---------- sidebar ---------- */

#sidebar {
    position: fixed;
    bottom: 155px !important;
    right: 0px !important;
    opacity: 0;
    transition: all .2s;
}

@media screen and (max-width:1024px) {
    #sidebar {
        bottom: 130px !important;
    }
}

@media screen and (max-width:768px) {
    #sidebar {
        bottom: 190px !important;
        right: 15px !important;
    }
}

@media screen and (max-width:576px) {
    #sidebar {
        bottom: 180px !important;
    }
}

@media screen and (max-width:425px) {
    #sidebar {
        bottom: 160px !important;
    }
}

@media screen and (max-width:375px) {
    #sidebar {
        bottom: 155px !important;
        right: 12.5px !important;
    }
}

@media screen and (max-width:320px) {
    #sidebar {
        right: 5px !important;
    }
}

#sidebar img {
    transform: scale(.75);
}

#gotop {
    background: transparent !important;
    padding: 0 !important;
    bottom: 20px !important;
    right: 0 !important;
    z-index: 1 !important;
}

@media screen and (max-width:768px) {
    #gotop {
        bottom: 90px !important;
        right: 15px !important;
    }
}

@media screen and (max-width:576px) {
    #gotop {
        bottom: 80px !important;
    }
}

@media screen and (max-width:425px) {
    #gotop {
        bottom: 70px !important;
    }
}

@media screen and (max-width:375px) {
    #gotop {
        bottom: 65px !important;
        right: 12.5px !important;
    }
}

@media screen and (max-width:320px) {
    #gotop {
        right: 5px !important;
    }
}

#gotop:hover {
    background: transparent;
}

#gotop img {
    transform: scale(.75);
}

@media screen and (max-width:1024px) {

    #sidebar img,
    #gotop img {
        transform: scale(.65);
    }
}

@media screen and (max-width:768px) {

    #sidebar img,
    #gotop img {
        width: 90.75px;
        transform: scale(1);
    }
}

@media screen and (max-width:425px) {

    #sidebar img,
    #gotop img {
        width: 80px;
        transform: scale(1);
    }
}