body {
    background: #fff;
    letter-spacing: 2px;
    font-family: 'Noto Sans TC', 微軟正黑體, sans-serif;
}

a {
    color: #000;
    transition: 0.5s;
}

a:hover,
a:active,
a:focus {
    color: #dc3545;
    outline: none;
    text-decoration: none;
}

p {
    padding: 0;
    margin: 0 0 30px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 400;
    margin: 0 0 20px 0;
    padding: 0;
}


body::-webkit-scrollbar {
    -webkit-appearance: none;
}

body::-webkit-scrollbar:vertical {
    width: 15px;
}

body::-webkit-scrollbar-thumb {
    border-radius: 8px;
    border: 2px solid white;
    background-color: rgba(0, 0, 0, .5);
}

/* Back to top button */

.back-to-top {
    position: fixed;
    display: none;
    background: #000;
    color: #fff;
    width: 44px;
    height: 44px;
    text-align: center;
    line-height: 1;
    font-size: 16px;
    border-radius: 50%;
    right: 15px;
    bottom: 15px;
    transition: background 0.5s;
    z-index: 11;
}

.back-to-top i {
    padding-top: 12px;
    color: #fff;
}

/* Prelaoder */

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #f2f2f2;
    border-top: 6px solid #000;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    -webkit-animation: animate-preloader 1s linear infinite;
    animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes animate-preloader {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.container.custom-container-width {
    max-width: 1310px;
}

.m-br {
    display: block;
}

.m-br2 {
    display: none;
}

strong {
    border-bottom: 2px solid #000;
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
    height: 80px;
    transition: all 0.5s;
    z-index: 997;
    transition: all 0.5s;
    padding: 20px 0;
    background: transparent;

}

#header.header-scrolled,
#header.header-pages {
    height: 80px;
    padding: 10px 0;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.3);
    background: #fff;
}

#header .logo {
    float: left;
}

#header .logo h1 {
    font-size: 36px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
}

#header .logo h1 a,
#header .logo h1 a:hover {
    color: #00366f;
    text-decoration: none;
}

#header .logo img {
    padding: 0;
    margin: 0;
    max-height: 50%;
        width: 160px;
}

#header .logo_text {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-direction: column;
    padding: 10px 0;
}

.main-pages {
    margin-top: 60px;
}

/*--------------------------------------------------------------
# Intro Section
--------------------------------------------------------------*/

#intro {
    width: 100%;
    background-color: #fff;
    padding: 10em 0;
}

#intro .bg {
    background: #ffd939;
}

#intro .intro-img {
    position: relative;
    max-width: 1500px;
    height: 100%;
}

#intro .intro-img .index {
    position: absolute;
    left: 0%;
    bottom: 0%;
    width: 100%;
}

#intro .intro-img .index_subtitle1 {
    position: absolute;
    right: -105%;
    bottom: 0%;
    width: 50%;
    z-index: 1;
}

#intro .intro-img .index_subtitle2 {
    position: absolute;
    right: -100%;
    bottom: 95%;
    width: 35%;
    z-index: 1;
}

#intro .intro-img .index_arrow {
    position: absolute;
    right: -15%;
    bottom: 88%;
    width: 20%;
    z-index: 1;
}

#intro .intro-info {
    text-align: center;
}

#intro .intro-info span {
    color: #ff506e;
    font-weight: 600;
}

#intro .intro-info i {
    margin: 5px;
    color: #ff506e;
}

#intro .send-form {
    background-color: #fff;
    padding: 50px 0px;
    margin: 2rem;
}

#intro .send-form h2 {
    color: #ff506e;
    margin-bottom: 40px;
    font-size: 30px;
    font-weight: 700;
}

#intro .send-form h3 {
    color: #db5a5a;
    font-weight: 400;
    margin-bottom: 0px;
    text-shadow: none;
}

#intro .send-form p {
    text-align: center;
    font-size: 20px;
    color: #000;
}

#intro .send-form .button_more {
    background: #000;
    border-radius: 20px;
    color: #FFF;
    padding: 5px 25px;
    margin: 0 15px;
    letter-spacing: 2px;
}

#intro .send-form .button_more:hover {
    box-shadow: 0 0 10px #545454;
}


#intro .send-form .form-check-label {
    font-size: 14px;
    color: #000;
}

#intro .send-form .form-check-label a {
    color: #dc3545;
}

#intro .link-mgm{
    border-bottom: 1px solid #000;
    font-weight: bold;
}

#intro .link-mgm:hover{
    border-bottom: 1px solid #dc3545;
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

/* Desktop Navigation */

.main-nav {
    /* Drop Down */
    /* Deep Drop Down */
}

.main-nav,
.main-nav * {
    margin: 0;
    padding: 0;
    list-style: none;
}

.main-nav>ul>li {
    position: relative;
    white-space: nowrap;
    float: left;
}

.main-nav a {
    display: block;
    position: relative;
    color: #004289;
    padding: 10px 15px;
    transition: 0.3s;
    font-size: 14px;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
}

.main-nav a:hover,
.main-nav .active>a,
.main-nav li:hover>a {
    color: #007bff;
    text-decoration: none;
}

.main-nav .drop-down ul {
    display: block;
    position: absolute;
    left: 0;
    top: calc(100% + 30px);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    padding: 10px 0;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: ease all 0.3s;
}

.main-nav .drop-down:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.main-nav .drop-down li {
    min-width: 180px;
    position: relative;
}

.main-nav .drop-down ul a {
    padding: 10px 20px;
    font-size: 13px;
    color: #004289;
}

.main-nav .drop-down ul a:hover,
.main-nav .drop-down ul .active>a,
.main-nav .drop-down ul li:hover>a {
    color: #007bff;
}

.main-nav .drop-down>a:after {
    content: "\f107";
    font-family: FontAwesome;
    padding-left: 10px;
}

.main-nav .drop-down .drop-down ul {
    top: 0;
    left: calc(100% - 30px);
}

.main-nav .drop-down .drop-down:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
}

.main-nav .drop-down .drop-down>a {
    padding-right: 35px;
}

.main-nav .drop-down .drop-down>a:after {
    content: "\f105";
    position: absolute;
    right: 15px;
}

/* Mobile Navigation */

.mobile-nav {
    position: fixed;
    top: 0;
    bottom: 0;
    z-index: 9999;
    overflow-y: auto;
    left: -260px;
    width: 260px;
    padding-top: 18px;
    background: rgba(19, 39, 57, 0.8);
    transition: 0.4s;
}

.mobile-nav * {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mobile-nav a {
    display: block;
    position: relative;
    color: #fff;
    padding: 10px 20px;
    font-weight: 500;
}

.mobile-nav a:hover,
.mobile-nav .active>a,
.mobile-nav li:hover>a {
    color: #74b5fc;
    text-decoration: none;
}

.mobile-nav .drop-down>a:after {
    content: "\f078";
    font-family: FontAwesome;
    padding-left: 10px;
    position: absolute;
    right: 15px;
}

.mobile-nav .active.drop-down>a:after {
    content: "\f077";
}

.mobile-nav .drop-down>a {
    padding-right: 35px;
}

.mobile-nav .drop-down ul {
    display: none;
    overflow: hidden;
}

.mobile-nav .drop-down li {
    padding-left: 20px;
}

.mobile-nav-toggle {
    position: fixed;
    right: 0;
    top: 0;
    z-index: 9998;
    border: 0;
    background: none;
    font-size: 24px;
    transition: all 0.4s;
    outline: none !important;
    line-height: 1;
    cursor: pointer;
    text-align: right;
}

.mobile-nav-toggle i {
    margin: 18px 18px 0 0;
    color: #004289;
}

.mobile-nav-overly {
    width: 100%;
    height: 100%;
    z-index: 9997;
    top: 0;
    left: 0;
    position: fixed;
    background: rgba(19, 39, 57, 0.8);
    overflow: hidden;
    display: none;
}

.mobile-nav-active {
    overflow: hidden;
}

.mobile-nav-active .mobile-nav {
    left: 0;
}

.mobile-nav-active .mobile-nav-toggle i {
    color: #fff;
}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/

/* Sections Header
--------------------------------*/

.section-header h3 {
    font-size: 36px;
    color: #283d50;
    text-align: center;
    font-weight: 500;
    position: relative;
}

.section-header p {
    text-align: center;
    margin: auto;
    font-size: 15px;
    padding-bottom: 60px;
    color: #556877;
    width: 50%;
}


/* About Section
--------------------------------*/
#About .bg {
    background: #ffd939;
    padding: 50px;
}


#About h2,
#About p {
    color: #000;
}

#About .about_content h2 {
    font-size: 35px;
    margin-bottom: 15px;
    font-weight: 600;

}

#About .about_content_text {
    text-align: center;
    margin-bottom: 20px;
}

#About .about_content_img {
    position: absolute;
    z-index: 10;
    width: 150%;
    left: 200px;
    bottom: -50px;
}

#About .about_content p {
    font-size: 20px;
    text-align: left;
    line-height: 2.5;
    display: inline-block;
}

#About .title_end_text {
    background-color: #db5a5a;
}

#About .title_end_text h2 {
    color: #fff;
    margin: 10px 0;
}

/* Feature Section
--------------------------------*/
#Feature .bg {
    background: #ffd939;
    padding: 50px;
}

#Feature h2,
#Feature h3,
#Feature p {
    color: #000;
}

#Feature h2,
#Feature h3 {
    font-weight: 600;
}

#Feature h3 {
    font-size: 20px;
}

#Feature .title {
    margin-top: 120px;
}

#Feature .feature_video {
    margin-bottom: 60px;
}


#Feature .feature_icon {
    margin-bottom: 80px;
    margin-top: 50px;

}

#Feature .feature_icon .postit {
    margin: 1.5rem;
    padding: 25px 15px;
    display: inline-block;
    transition: all 0.3s ease;
}

#Feature .feature_icon .postit:hover {
    transform: scale(1.05);
}

#Feature .feature_icon .postit_1 {
    background: #fff8e9 linear-gradient(150deg, #ffe6b0 0%, #fbe5b7 100%);
    transform: rotate(4deg);
}

#Feature .feature_icon .postit_2 {
    background: #fefabc linear-gradient(150deg, #f9c1c6 0%, #fbd1d8 100%);
    transform: rotate(-2deg);
}

#Feature .feature_icon .postit_3 {
    background: #fefabc linear-gradient(150deg, #f9c1c6 0%, #fbd1d8 100%);
    transform: rotate(-6deg);
}



#Feature .feature_icon .postit::before {
    content: "";
    background-color: rgba(0, 0, 0, 0.05);
    position: absolute;
    width: 100%;
    left: 0px;
    top: 0;
    height: 40px;
    z-index: -1;
}

#Feature .feature_icon .taped:after {
    display: block;
    content: "";
    position: absolute;
    width: 110px;
    height: 30px;
    top: -21px;
    left: 30%;
    border: 1px solid #b8d8f978;
    background: rgba(158, 205, 245, 0.35);
    -webkit-box-shadow: 0px 0 3px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 0 3px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0 3px rgba(0, 0, 0, 0.1);
}


#Feature .feature_icon img {
    width: 100%;
}

#Feature .feature_icon h3 {
    margin-bottom: 10px;
    font-weight: 500;
    color: #000;

}

#Feature .feature_icon p {

    font-size: 18px;
    color: #000;
}

#Feature .feature_content_box2 {
    border-left: 8px solid #000;
}



#Feature .feature_content .box {
    padding: 10px 25px;
    margin: 0 50px 20px 50px;
    background: #fff;
    transition: 0.4s;
    font-size: 18px;

}

#Feature .feature_content .box:hover {
    box-shadow: 0px 0px 30px rgba(73, 78, 92, 0.15);
    transform: translateY(-5px);
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
}

#Feature .feature_content h3 {
    font-size: 25px;
    font-weight: 600;
}


#Feature .feature_content .box .icon_check {
    float: right;
    font-size: 30px;
}

/* Feedback Section
--------------------------------*/

#Feedback .title {
    margin-top: 100px;
}

#Feedback .title h2,
#Feedback .title h3 {
    color: #000;
    font-weight: 600;
}

#Feedback h3 {
    font-size: 20px;
}

#Feedback .video-pc {
    overflow: hidden;
}

#Feedback .content h2 {
    color: #000;
    font-weight: 700;
    font-size: 36px;
    letter-spacing: 10px;
    line-height: 60px;
    font-family: 'Noto Sans TC', 微軟正黑體, sans-serif;
    margin-top: 50px;
}

#Feedback .content h3 {
    color: #000;
    font-weight: 400;
    font-size: 18px;
    line-height: 35px;
    font-family: 'Noto Sans TC', 微軟正黑體, sans-serif;
    margin-bottom: 50px;
}

.feedback_content {
    padding: 30px;
}


#Feedback .box {
    margin-bottom: 40px;
    transition: 0.4s;
    background-color: #fcd939;
}

#Feedback .feedback_content_text {
    padding: 30px 30px 0 30px;
    letter-spacing: 0.2rem;
}

#Feedback .feedback-overlay {
    overflow: hidden;
    position: relative;
    align-items: center;
}

.mask_text {
    align-items: center;
    bottom: 0;
    display: flex;
    justify-content: center;
    left: 0;
    opacity: 1;
    position: absolute;
    right: 0;
    top: 0;
    transition: opacity 0.25s;
    z-index: 1;
    background-color: #fff4c140;
}

#Feedback .feedback-overlay:hover .mask_text {
    opacity: 0;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    visibility: hidden;
}

#Feedback .mask_text p {
    font-family: 'Noto Sans TC', 微軟正黑體, sans-serif;
    font-weight: 500;
    font-size: 20px;
    color: #000;
    margin: 0;
}

#Feedback p {
    font-family: 'Noto Sans TC', 微軟正黑體, sans-serif;
    font-weight: 500;
    color: #000;
}

#Feedback .video-list .feedback_btn {
    background-color: #000;
    color: white;
    padding: 5px 25px;
    margin: 20px 20px;
    border: 3px solid #000;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 0, 0, .2);
    letter-spacing: 2px;
    outline: 0 !important;
    font-size: 14px;
}

#Feedback .video-list .feedback_btn:hover {
    box-shadow: 0 0 10px #545454;
}

#Feedback .video-list .feedback_btn:active {
    background-color: #000;
    color: #fff;
    border: 3px solid #000;
}

#Feedback .video-mobile {
    display: none;
}

/* promotion Section
--------------------------------*/
#promotion .promotion-bg {}

#promotion .promotion-bg .content {
    margin: 100px 0;
}

#promotion p {
    color: #000;
    font-size: 20px;
}

#promotion .button_more {
    background: #000;
    border-radius: 20px;
    color: #FFF;
    padding: 5px 25px;
    margin: 15px;
    letter-spacing: 2px;

}

#promotion .button_more:hover {
    box-shadow: 0 0 10px #545454;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    background: #fcd939;
    padding: 50px 0 50px 0;
    color: #000;
    font-size: 12px;
    border-top: none;
}

#footer .copyright {
    margin: 10px 0;
}

#footer a {
    color: #000;
    transition: 0.5s;
    border-bottom: 1px dashed #000;
}

#footer .contact-info a {
    color: #000;
    border-bottom: none;
}

#footer a:hover,
#footer a:active,
#footer a:focus {
    color: #ff506e;
    outline: none;
    text-decoration: none;
}

#footer .contact-info {
    text-align: left;
}

#footer .contact-info .fa-phone {}

#footer .social-links {
    text-align: right;
}

#footer .social-links a {
    color: #000;
    padding: 4px 12px;
    display: inline-block;
    line-height: 1px;
    border-left: 1px solid #000;
    font-size: 20px;
    border-bottom: none;
}

#footer .social-links a:hover {
    color: #ff506e;

}

#footer .social-links a:first-child {
    border-left: 0;
}

/*--------------------------------------------------------------
# Responsive Media Queries
--------------------------------------------------------------*/

@media (min-width: 992px) {}

@media (max-width: 1400px) {
    .container.custom-container-width {
        max-width: 1110px;
    }
}

@media (max-width: 1366px) {
    #intro .send-form {
        padding: 30px 0;
    }
}

@media (max-width: 1024px) {
#header.header-scrolled, #header.header-pages {
    height: 60px;
    
}

    #header .logo img {
        margin-top: -5px;
        max-height: 50px;
        width: auto;
    }


    #intro {
        padding: 80px 20px;
    }


    #intro .bg {
        padding: 20px 30px;
        margin: 0px;
    }

    #intro .intro-img .index_1 {
        position: absolute;
        left: -5%;
        bottom: -3%;
        width: 100%;
    }

    #intro .intro-img .index_subtitle1 {
        position: absolute;
        right: -100%;
        bottom: -5%;
        width: 50%;
        z-index: 1;
    }

    #intro .intro-img .index_subtitle2 {
        position: absolute;
        right: -100%;
        bottom: 95%;
        width: 20%;
        z-index: 1;
    }

    #intro .intro-img .index_arrow {
        position: absolute;
        right: -10%;
        bottom: 95%;
        width: 20%;
        z-index: 1;
    }

    #intro .intro-info {
        padding: 0;
    }

    #intro .send-form {
        background-color: #fff;
        padding: 10px;
        margin: 0rem;
    }

    #intro .send-form h2 {
        margin-bottom: 20px;
        font-size: 25px;
    }

    #intro .send-form p {
        font-size: 18px;
    }

    #About .bg {
        padding: 30px;
        margin: 20px;
    }

    #Feature .feature_icon .postit {
        margin: 0.5rem;
    }

    #Feature .bg {
        margin: 0 20px;
    }



    #Feedback .feedback_content_text {
        padding: 30px 20px 0 20px;
    }
}

@media (max-width: 991px) {
    #header {
        height: 60px;
        padding: 10px 0;
    }

    #header .logo h1 {
        font-size: 28px;
        padding: 8px 0;
    }

    #intro {
        padding: 60px 0 60px 0;
    }

    #intro .intro-img {
        width: 110%;
        float: none;
    }

    #intro .intro-info {
        float: none;
        margin: auto;
        text-align: center;
    }


}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 15px;
    }

    #intro {
        padding: 60px 35px;
    }

    #intro .bg {
        padding: 20px 50px;
    }

    #intro .intro-img .index {
        position: relative;
        left: 0%;
        bottom: 0%;
        width: 90%;
    }

    #intro .intro-img .index_subtitle1 {
        position: absolute;
        right: 0%;
        bottom: -105%;
        width: 50%;
        z-index: 1;
    }

    #intro .intro-img .index_subtitle2 {
        position: absolute;
        right: 0%;
        bottom: -10%;
        width: 30%;
        z-index: 1;
    }

    #intro .intro-img .index_arrow {
        position: absolute;
        right: 85%;
        bottom: -10%;
        width: 25%;
        z-index: 1;
    }

    #About .bg {
        background: #ffd939;
        padding: 50px;
        margin: 30px;
    }

    #About .about_content_img {
        position: absolute;
        z-index: 2;
        width: 100%;
        left: 20px;
        bottom: -20px;
    }

    #Feature .bg {
        margin: 5px;
        padding: 20px;
    }

    #Feature .feature_content .box {
        margin: 0 10px 20px 10px;
    }


    #Feedback .feedback_content_text {
        padding: 30px 20px 0 20px;
        letter-spacing: 0.2rem;
    }

}

@media (max-width: 767px) {

    .m-br {
        display: none;
    }

    .m-br2 {
        display: block;
    }

    .section-header p {
        width: 100%;
    }

    #header .logo {
        display: inline-block;
        z-index: 10;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-direction: column;
        padding: 10px 0;
        float: none;
    }
    #header.header-scrolled .logo {
    margin-top: -7px;
}


    /* intro 
    --------------------------------*/
    #intro .bg {
        background: #ffd939;
        padding: 20px 20px;
        margin: 20px 5px;
    }

    #intro .intro-info {
        width: 100%;
    }

    #intro .intro-info h2 {
        font-size: 18px;
        margin: 30px 0;
    }

    #intro .send-form p {
        font-size: 14px;
    }

    #intro .intro-img .index {
        position: relative;
        left: 0%;
        bottom: 0%;
        width: 90%;
    }

    #intro .intro-img .index_subtitle1 {
        position: absolute;
        right: 0%;
        bottom: -220%;
        width: 80%;
    }

    #intro .intro-img .index_subtitle2 {
        position: absolute;
        right: 0%;
        bottom: -10%;
        width: 40%;
    }

    #intro .intro-img .index_arrow {
        position: absolute;
        right: 80%;
        bottom: 0%;
        width: 30%;
    }

    #intro .send-form {
        padding: 10px;
        margin: 0rem;
    }

    /* About 
    --------------------------------*/
    #About {
        margin-top: 50px;
    }

    #About .bg {
        padding: 20px 0;
        margin: 5px;
    }

    #About .about_content h2 {
        font-size: 20px;
        margin-bottom: 15px;
        margin-top: 20px;
    }

    #About .about_content p {
        font-size: 14px;
        line-height: 2;
        margin: 0;
    }

    #About .about_content_img {
        position: absolute;
        z-index: 2;
        width: 100%;
        left: 0px;
        bottom: -30px;
        transform: rotate(-5deg);
    }



    /* Feature 
    --------------------------------*/
    #Feature .col-sm-6 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    #Feature h2 {
        font-size: 25px;

    }

    #Feature h3 {
        font-size: 16px;
        margin-bottom: 20px;
    }

    #Feature .title {
        margin-top: 50px;
    }

    #Feature .feature_video {
        margin-bottom: 60px;
        padding: 0 20px;
    }

    #Feature .feature_video .playButton {
        top: 0%;
        right: 0%;
        bottom: 0;
        left: 0;
        font-size: 3rem;
    }

    #Feature .feature_icon .no-padding {
        padding: 0 0px;
    }

    #Feature .feature_icon .box1 {
        padding: 10px;
        margin-bottom: 0px;
    }

    #Feature .feature_icon .box2 {
        padding: 10px;
        margin-bottom: 0px;
    }

    #Feature .feature_icon h3 {
        margin-bottom: 10px;
        margin: 0 0px;
        font-size: 16px;
    }

    #Feature .feature_icon p {
        font-size: 12px;
        letter-spacing: 2px;
        margin-top: 10px;
    }

    #Feature .feature_content {
        margin-top: 50px;
    }


    #Feature .feature_content .box {
        padding: 10px 15px;
        margin: 0 30px 10px 30px;
        text-align: left;
        font-size: 14px;
        background: #F9F9F9;
    }

    #Feature .feature_content .box .icon_check {
        font-size: 25px;
    }

    #Feature .feature_content_box2 {
        border-left: 0px;
        margin-top: 30px;
    }

    #Feature .feature_icon .box1:hover img {
        transform: translateY(0px);
        -webkit-transform: translateY(0px);
        -moz-transform: translateY(0px);
        transition: 0.4s;
    }

    #Feature .feature_icon .box2:hover img {
        transform: translateY(-10px);
        -webkit-transform: translateY(0px);
        -moz-transform: translateY(0px);
        transition: 0.4s;
    }

    #Feature .feature_icon .box1:hover h3,
    p {
        transform: translateY(0px);
        -webkit-transform: translateY(0px);
        -moz-transform: translateY(0px);
        transition: 0.4s;
    }

    #Feature .feature_icon .box2:hover h3,
    p {
        transform: translateY(0px);
        -webkit-transform: translateY(0px);
        -moz-transform: translateY(0px);
        transition: 0.4s;
    }

    #Feature .feature_content .box:hover {
        box-shadow: none;
        transform: translateY(0px);
        -webkit-transform: translateY(0px);
        -moz-transform: translateY(0px);
    }

    #Feature .feature_icon .postit {
        margin: 15px;
        padding: 25px 10px;
    }

    #Feature .feature_icon .postit:hover {
        transform: scale(1);
    }

    /* Feedback 
    --------------------------------*/
    #Feedback h2 {
        font-size: 28px;
    }

    #Feedback h3 {
        font-size: 16px;
        margin-bottom: 50px;
    }

    #Feedback .title {
        margin-top: 50px;
    }

    #Feedback .video-pc {
        display: none;
    }

    #Feedback .video-list {
        display: none;
    }

    #Feedback .video-mobile {
        display: inline-block;
        margin-top: -200px;
    }

    #Feedback .video-mobile .feedback_btn {
        background-color: #000;
        color: white;
        padding: 5px 25px;
        margin: 20px 20px;
        border: 3px solid #000;
        border-radius: 50px;
        cursor: pointer;
        box-shadow: 0 0 10px rgba(0, 0, 0, .2);
        letter-spacing: 2px;
        outline: 0 !important;
        font-size: 14px;
    }

    .owl-carousel .owl-dots,
    .owl-carousel .owl-nav {
        text-align: center;
        -webkit-tap-highlight-color: transparent;
        line-height: 1;
        margin-top: -30px;
        padding: 20px;
    }

    .owl-carousel .owl-dots .owl-dot {
        display: inline-block;
        zoom: 1;
        width: 8px;
        height: 8px;
        margin: 30px 4px 0 4px;
        opacity: 0.5;
        border-radius: 50%;
        background-color: #000;
        -webkit-transition: all .3s ease;
        -o-transition: all .3s ease;
        transition: all .3s ease;
    }

    .owl-carousel .owl-dots .owl-dot.active,
    .owl-carousel .owl-dots .owl-dot:hover {
        opacity: 1;
    }

    /*--------------------------------------------------------------
  #footer
  --------------------------------------------------------------*/
    #footer {
        font-size: 12px;
    }

    #footer .copyright {
        margin: 0 15px 10px 15px;
        text-align: center;
    }

    #footer .copyright-links {
        text-align: center;
    }

    #footer .contact-info {
        margin-top: 10px;
        margin: 0 15px;
        text-align: center;
    }

    #footer .contact-info .fa-phone {
        border-left: none;
        padding-left: 0px;
        margin-left: 0px;
    }

    #footer .social-links {
        text-align: center;
        margin: 10px 0;
    }
}

@media (max-width: 574px) {
    #intro {
        padding: 60px 0 20px 0;
    }
}

@media (max-width: 414px) {
    #intro .intro-img .index_subtitle1 {
        position: absolute;
        right: 0%;
        bottom: -210%;
        width: 80%;
    }
}

@media (max-width: 375px) {
    #intro .intro-img .index_subtitle1 {
        position: absolute;
        right: 0%;
        bottom: -230%;
        width: 80%;
    }
}

@media (max-width: 360px) {
    #intro .intro-img .index_subtitle1 {
        position: absolute;
        right: 0%;
        bottom: -250%;
        width: 80%;
    }
}

@media (max-width: 320px) {

    .m-br {
        display: none;
    }

    .m-br2 {
        display: block;
    }

    #intro .bg {
        padding: 20px 15px;
    }

    #intro .intro-img .index_subtitle1 {
        bottom: -280%;
    }

    #Feature .col-sm-6 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    #Feature .title {
        padding: 0 10px;
    }

    #Feature .title h2 {
        font-size: 22px;
    }

    #Feature .title h3 {
        font-size: 14px;
    }

    #Feature .feature_icon h3 {
        font-size: 20px;
    }

    #Feature .feature_icon p {
        font-size: 16px;
    }

    #Feature .feature_icon .postit {
        margin: 50px;
        padding: 25px 20px;
    }

    #Feature .feature_content .box {
        margin: 0 10px 10px 10px;
    }



    #Feedback .title {
        padding: 0 10px;
    }

    #Feedback .title h2 {
        font-size: 22px;
    }

    #Feedback .title h3 {
        font-size: 14px;
    }

}