section {
    position: relative;
    padding-top: 50px;
}
@media screen and (min-width: 640px) {
    section {
        padding-top: 100px;
    }
}
.container {
    position: relative;
    padding: 0 30px;
}

@media screen and (min-width: 640px) {
    .container {
        margin: 0 auto;
        padding: 0;
        max-width: 600px;
    }
}
@media screen and (min-width: 768px) {
    .container {
        max-width: 728px;
    }
}

@media screen and (min-width: 1200px) {
    .container {
        max-width: 850px;
    }
}

figcaption {
    letter-spacing: 3px;
    line-height: 1.7;
}
.C-E-title {
    position: relative;
    padding-bottom: 30px;
    text-align: center;
    z-index: 1;
}
@media screen and (min-width: 640px) {
    .C-E-title {
        padding-bottom: 40px;
        text-align: center;
    }
}
.C-E-title h2 {
    margin: 0 0 3px 0;
    color: #302c2b;
    font-size: 28px;
    letter-spacing: 10px;
}
.C-E-title span {
    font-size: 10px;
    letter-spacing: 3.5px;
}

.brd-l-title {
    position: relative;
    padding-left: 10px;
    display: inline-block;
    line-height: 1.4;
    letter-spacing: 5px;
    color: #0d6575;
    /* border-left: 3px solid #0d6575; */
}
.brd-l-title::before {
    width: 3px;
    height: calc(100% - 10px);
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: #0d6575;
}
.button {
    padding: 5px 20px;
    display: inline-block;
    background: transparent;
    letter-spacing: 2px;
    cursor: pointer;
    text-decoration: none;
    transition: color .3s , border-color .3s;
}
.button.button-dark-gray {
    color: #464846;
    border: 1px solid #464846;
}
.button.button-cyan {
    color: #0d6575;
    border: 1px solid #0d6575;
}
.button.hover-red:hover{
    color: #b3292e;
    border: 1px solid #b3292e;
}
footer {
    display: flex;
    justify-content: center;
    background-color: #2f2f31;
}
.footer-area {
    width: 100%;
    max-width: 600px;
    padding: 40px 20px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    color: #fff;
}
.footer-introduce {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.footer-logo {
    width: 100px;
}
.footer-introduce h2 {
    margin: 0 0 5px 0;
    font-size: 16px;
    font-weight: normal;
}
.footer-introduce div {
    font-size: 12px;
    line-height: 1.6;
}
.footer-introduce a {
    color: #fff;
}
.tip {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 5px;
    position: fixed;
    bottom: 0;
    left: 0;
    background-color: #2f2f31;
    color: #fff;
    font-size: 30px;
    letter-spacing: 5px;
    z-index: 10;
}
.tip img {
    margin: 0 10px 0 5px;
}
