﻿@charset "utf-8";
/*
 * Page name
 * Copyright 2020
 * Author
 * Licensed
 */
/* -------------------------- *\
           Content
\* -------------------------- */
/**
 * Content ............ You are reading it!
 * Globel ............ Set common styles
 * Layout ............ Set grid styles
 * Component ............ Set component styles
 * Utility ............ Set some tools style
 */

/* -------------------------- *\
           Globel
\* -------------------------- */
* {
    box-sizing: border-box;
    position: relative;
}

html, body {
    font-family: '微軟正黑體', arial;
}

h1, h2, h3, h4, h5, h6, p {
    margin: 0;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

a {
    text-decoration: none;
    color: #333;
}

.center {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}

.text-dark-blue {
    color: #4A628A;
}

.gradual-blue-bg {
    background: linear-gradient(59deg, #6FB1F3 20%, #0080FF 53%);
    background: -moz-linear-gradient(59deg, #6FB1F3 20%, #0080FF 53%);
    background: -webkit-linear-gradient(59deg, #6FB1F3 20%, #0080FF 53%);
    background: -o-linear-gradient(59deg, #6FB1F3 20%, #0080FF 53%);
}

.orange-bg {
    background: #F8945B;
}

.pink-bg {
    background: #F54291;
}

.green-bg {
    background: #35AC39;
}

.purple-bg {
    background: #725DF6;
}


/* -------------------------- *\
           Component
\* -------------------------- */

/* hero */
.hero {
    padding-top: 150px;
    padding-bottom: 150px;
    /*border: 1px solid #000;*/
}

@media screen and (max-width: 768px) {
    .hero {
        padding-top: 120px;
        padding-bottom: 120px;
    }
}

.hero.hero-bg-white {
    background-color: #ffffff;
}

.hero.hero-bg-grey {
    background-color: #F3F7FF;
}



/* btn */
.btn {
    display: inline-block;
    vertical-align: top;
    font-size: 16px;
    line-height: 24px;
    padding: 5px 35px;
    border: 1px solid #fff;
    color: #fff;
    border-radius: 30px;
    transition: all 0.3s;
}

    .btn.btn-primary {
        background-color: #0265C7;
        border: 1px solid #0265C7;
        color: #fff;
    }

    .btn.btn-secondary {
        background-color: #fff;
        border: 1px solid #fff;
        color: #0265C7;
    }

    .btn.btn-lg {
        padding: 8px 32px;
    }





/* Title decoration*/
span.title-decoration::before {
    content: '';
    position: absolute;
    display: block;
    width: 110px;
    height: 1px;
    background: #707070;
    bottom: -5px;
    left: calc(50% - 60px);
}

span.title-decoration::after {
    content: '';
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: #419FFC;
    bottom: -6px;
    left: calc(50% - 30px);
}

span.subtitle-decoration::before {
    content: '';
    position: absolute;
    display: block;
    width: 180px;
    height: 2px;
    background: #419FFC;
    bottom: 10px;
    left: 50%;
    transform: translate(-50%, -50%);
}





/* navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    height: 64px;
    width: 100%;
    position: fixed;
    z-index: 500;
    left: 0;
    top: 0;
    /*    border-bottom: 1px solid #838383;*/
    align-items: center;
    background-color: #fff;
}

    .navbar .brand {
        height: 40px;
        margin: 0 50px;
        background-image: url('../images/logo/brand.svg');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        white-space: nowrap;
        text-indent: 100%;
        overflow: hidden;
    }

    .navbar .nav {
        display: flex;
        justify-content: space-between;
        margin: 0 50px;
    }

        .navbar .nav .nav-item {
            margin-right: 50px;
        }

            .navbar .nav .nav-item .nav-link {
                color: #707070;
                padding-left: 5px;
                padding-right: 5px;
            }

                .navbar .nav .nav-item .nav-link:hover {
                    color: #0265C7;
                    transition: 0.3s;
                }

            .navbar .nav .nav-item.nav-enterprise {
                display: flex;
                justify-content: center;
                align-items: center;
            }

                .navbar .nav .nav-item.nav-enterprise .nav-link {
                    transition: 0.3s;
                    color: #ffffff !important;
                    font-size: 14px;
                    padding: 6px 20px
                }


.nav--primary {
    display: inline-block;
    line-height: 24px;
}

    .nav--primary:after {
        content: '';
        position: absolute;
        left: 50%;
        transform: translate(-50%,0);
        bottom: 0%;
        width: 0;
        height: 2px;
        background-color: #0265C7;
        transition: all 0.3s;
    }

    .nav--primary:hover:after {
        width: 100%;
    }

.navbar .nav .nav-item .nav-link.active {
    color: #0265C7;
}

.navbar .nav .nav-item .nav--primary.active:after {
    width: 100%;
}
/* RWD navbar */
@media screen and (max-width: 1140px) {
    .navbar .nav {
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: #fff;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        opacity: 0;
        visibility: hidden;
        transform: all 0.3s;
        margin: 0;
    }

        .navbar .nav.active {
            opacity: 1;
            visibility: visible;
        }

        .navbar .nav .nav-link {
            text-align: center;
            padding: 32px;
        }

    .nav--primary:after {
        display: none;
    }

    .navbar .brand {
        margin: 0 0 0 20px;
    }

    .navbar .nav .nav-item.nav-enterprise {
        margin-top: 15px;
    }
}


/* menu-toggle */
.navbar .menu-toggle {
    width: 48px;
    height: 48px;
    /*border: 1px solid #fff;*/
    float: right;
    padding-right: 30px;
    display: none;
    z-index: 600;
    margin: 0 50px;
}

@media screen and (max-width: 1140px) {
    .navbar .menu-toggle {
        display: inline-block !important;
        margin: 2px 15px 0 0;
    }
}

.navbar .menu-toggle span {
    display: block;
    width: 32px;
    height: 2px;
    background-color: #0265C7;
    position: absolute;
    left: 50%;
    transform: translate(-50%,0);
    transition: all 0.3s;
}

    .navbar .menu-toggle span:nth-child(1) {
        top: 12px;
    }

.navbar .menu-toggle.active span:nth-child(1) {
    top: 50%;
    transform: translate(-50%,-50%) rotate(45deg);
}

.navbar .menu-toggle span:nth-child(2) {
    top: 22px;
}

.navbar .menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.navbar .menu-toggle span:nth-child(3) {
    top: 32px;
}

.navbar .menu-toggle.active span:nth-child(3) {
    top: 50%;
    transform: translate(-50%,-50%) rotate(-45deg);
}

/* close-btn */
.navbar .close-btn {
    display: none;
    width: 48px;
    height: 48px;
    position: absolute;
    right: 16px;
    top: 8px;
}

@media screen and (max-width: 1140px) {
    .navbar .close-btn {
        display: block;
    }
}

.navbar .close-btn span {
    width: 40px;
    height: 2px;
    position: absolute;
    background-color: #0265C7;
    top: 50%;
    left: 50%;
}

    .navbar .close-btn span:nth-child(1) {
        transform: translate(-50%,-50%) rotate(45deg);
    }

    .navbar .close-btn span:nth-child(2) {
        transform: translate(-50%,-50%) rotate(-45deg);
    }






/* Social List */
.social-list {
    position: fixed;
    left: 3%;
    top: 50%;
    transform: translate(-50%,-50%);
    z-index: 400;
    font-size: 30px;
}

.normal-position {
    top: 50% !important;
}

.home-position {
    top: 75% !important;
}

.social-list::before {
    content: '';
    display: block;
    position: absolute;
    width: 2px;
    height: 40px;
    background: #0265C7;
    top: -35%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.social-list::after {
    content: '';
    display: block;
    position: absolute;
    width: 2px;
    height: 40px;
    background: #0265C7;
    bottom: -85%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.social-list li a i.fas {
    color: #0265C7;
}

@media screen and (max-width: 768px) {
    .social-list {
        display: none;
    }
}




/* Contact me */
.contact-area {
    position: fixed;
    bottom: 2%;
    right: 1%;
    z-index: 400;
    cursor: pointer;
}

@media screen and (max-width: 855px) {
    .contact-area {
        bottom: 2%;
        right: 3%;
    }
}

.contact-area .contact-btn {
    height: 60px;
    width: 60px;
    border-radius: 30px;
    background: transparent linear-gradient(322deg, #369BFF 0%, #85B5E4 44%, #A7E7FF 100%) 0% 0% no-repeat padding-box;
    transition: all 200ms cubic-bezier(0.56, 1.56, 0.9, 0.96);
}

    .contact-area .contact-btn:hover {
        height: 160px;
        border-radius: 25px;
    }

    .contact-area .contact-btn .fas.fa-comments {
        font-size: 25px;
        color: #fff;
        padding-bottom: 2px;
    }

    .contact-area .contact-btn:hover .fas.fa-comments {
        position: absolute;
        bottom: 70%;
        left: 28%;
    }

    .contact-area .contact-btn p {
        writing-mode: vertical-lr;
        display: none;
    }

    .contact-area .contact-btn:hover p {
        display: block;
        margin-top: 30px;
        color: #fff;
    }

.contact-card {
    padding: 10px 30px 20px 30px;
    margin: 10px 0px;
    border-radius: 5px;
    background: #fff;
}




/* Footer */
.footer {
    width: 100%;
    text-align: center;
    line-height: 24px;
    padding: 16px 0;
    font-size: 14px;
}






/* -------------------------- *\
            Layout
\* -------------------------- */
/*  
            Home
                              */
/* home 1 */
.slide-wrapper {
    position: relative;
    width: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
}

.main-slider {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 100%;
    margin-top: 64px;
}

/* Main Slider Area Css Style */
.papri-main-1-single-table {
    padding-top: 0;
    display: table;
    height: 100%;
    width: 100%;
}

.slide-bg {
    width: 100%;
    height: 100%;
}

.slide-image {
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% auto;
    width: 100%;
}

    .slide-image:before {
        content: "";
        display: block;
        padding-top: 40%;
    }

.slide-image-1 {
    background: linear-gradient(59deg, #6FB1F3 20%, #0080FF 53%);
    background: -moz-linear-gradient(59deg, #6FB1F3 20%, #0080FF 53%);
    background: -webkit-linear-gradient(59deg, #6FB1F3 20%, #0080FF 53%);
    background: -o-linear-gradient(59deg, #6FB1F3 20%, #0080FF 53%);
}

/* Change Banner Image*/
.slide-image-2 {
    background-image: url(../images/bg/banner-01_1.svg);
}

.slide-image-3 {
    background-image: url(../images/bg/banner-02_1.png);
}

.slide-image-4 {
    background-image: url(../images/bg/banner_230525_8001x3334.jpg);
}

@media screen and (max-width:768px) {
    .slide-image:before {
        content: "";
        display: block;
        padding-top: 100%;
    }

    .slide-image-2 {
        background-image: url(../images/bg/banner-01_2.svg);
    }

    .slide-image-3 {
        background-image: url(../images/bg/banner-02_2.png);
    }
    
    .slide-image-4 {
        background-image: url(../images/bg/banner_230525_8001x3334.jpg);
    }
}


/* jumbotron */
.jumbotron {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.home-left .para {
    margin: auto 0% auto auto;
}

    .home-left .para .title {
        margin: 30px 0 0px 0;
        font-size: 60px;
    }

    .home-left .para .subtitle {
        margin: 30px 0 10px 0;
        font-size: 45px;
    }

.para h3::after {
    content: '';
    position: absolute;
    display: block;
    width: 75px;
    height: 2px;
    background: #0265C7;
    bottom: -30px;
    left: 5px;
}

.home-left .para .voice {
    margin: 60px 0 0px 0;
    font-size: 26px;
}

.home-right .home-img {
    display: block;
    max-width: 650px;
}

.home-left .para .group {
    float: left;
    margin: 20px 0px 0px 0px;
}

    .home-left .para .group .btn.btn-primary {
        margin-right: 10px;
    }

@media screen and (max-width:1200px) {
    .jumbotron {
        position: absolute;
        top: 45%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .home-left .para {
        margin: auto auto;
        padding: 0;
    }

        .home-left .para .title {
            font-size: 40px;
            text-align: center !important;
        }

        .home-left .para .subtitle {
            margin: 15px 0 0px 0;
            font-size: 25px;
            text-align: center !important;
        }

        .home-left .para a {
            margin: 15px 0 0px 0;
            text-align: center !important;
            font-size: 20px;
            justify-content: center;
        }

        .home-left .para .voice {
            margin: 15px 0 0px 0;
            font-size: 20px;
        }

        .home-left .para .group {
            float: none;
            display: flex;
            justify-content: center;
            align-content: center;
            margin: 0;
        }

    .para h3::after {
        display: none !important;
    }

    .home-right {
        display: none;
    }
}

@media screen and (max-width: 576px) {
    .jumbotron {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .home-left .para {
        padding: 0;
        white-space: normal;
        text-align: center !important;
    }

        .home-left .para .title {
            font-size: 30px;
            margin: 0px 0 0 0;
            text-align: center !important;
        }

        .home-left .para .subtitle {
            margin: 22px 0 0px 0;
            font-size: 22px;
            text-align: center !important;
        }

        .home-left .para .bi-play-circle {
            width: 20px;
        }

        .home-left .para .voice {
            margin: 15px 0 0px 0;
            font-size: 18px;
            justify-content: center;
            align-content: center;
        }

        .home-left .para svg {
            margin-bottom: 0 !important;
        }

        .home-left .para span {
            margin-left: .25rem !important;
            margin-bottom: 0 !important;
        }

        .home-left .para .group {
            display: flex;
            flex-direction: column;
            justify-content: center !important;
            margin: 10px 0 0 0px;
            padding: 8px 75px;
            float: none;
        }

        .home-left .para .btn {
            line-height: 18px;
            padding: 8px 24px;
        }

            .home-left .para .btn.btn-primary {
                margin-bottom: 0;
                margin-top: 0;
                margin-right: 0 !important;
                font-size: 18px;
            }

            .home-left .para .btn.btn-secondary {
                margin-bottom: 0;
                margin-top: 10px;
                margin-right: 0;
                font-size: 18px;
            }
}
/*Slide*/
.owl-theme .owl-nav {
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
}

@media screen and (max-width: 576px) {
    .owl-theme .owl-nav {
        display: none;
    }
}

.owl-theme .owl-nav button.owl-prev {
    left: 16px;
}

.owl-theme .owl-nav button.owl-next {
    right: 16px;
}

.owl-theme .owl-nav button.owl-prev, .owl-theme .owl-nav button.owl-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    outline: none;
    box-shadow: 0 3px 16px rgb(0 0 0 / 50%);
    position: absolute;
    transition: all 0.3s;
}

.owl-theme .owl-nav button.owl-prev, .owl-theme .owl-nav button.owl-next {
    background: #0265c7 !important;
    color: #fff !important;
    opacity: 0.8;
}

    .owl-theme .owl-nav button.owl-prev:hover,
    .owl-theme .owl-nav button.owl-next:hover {
        background-color: #0265c7;
        width: 55px;
        height: 55px;
    }

    .owl-theme .owl-nav button.owl-prev, .owl-theme .owl-nav button.owl-prev span,
    .owl-theme .owl-nav button.owl-prev, .owl-theme .owl-nav button.owl-next span {
        font-size: 25px;
        color: #fff;
        line-height: 22px;
    }

.owl-theme .owl-dots {
    position: absolute;
    left: 50%;
    bottom: 0%;
    transform: translate(-50%,-50%);
}

    .owl-theme .owl-dots .owl-dot span {
        width: 15px !important;
        height: 15px !important;
    }

    .owl-theme .owl-dots .owl-dot span {
        background: #fff !important;
    }

    .owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
        background: #0265C7 !important;
    }

@media screen and (max-width:576px) {
    .owl-theme .owl-dots {
        position: absolute;
        left: 50%;
        bottom: 0%;
        transform: translate(-50%,5%);
    }
}

/* border bottom */
.jumbotron .jumbotron-content .para h3::after {
    content: '';
    position: absolute;
    display: block;
    width: 75px;
    height: 2px;
    background: #0265C7;
    ;
    bottom: -30px;
    left: 5px;
}





/* Intro */
.intro-bg-01 {
    position: absolute;
    right: 18%;
    top: 23%;
    opacity: 1;
    width: 180px;
    height: auto;
    transition: all 0.3s ease-out 0s;
}

.intro-bg-02 {
    position: absolute;
    left: 0%;
    bottom: 5%;
    opacity: 1;
    width: 160px;
    height: auto;
    transition: all 0.3s ease-out 0s;
}

.intro-bg-03 {
    position: absolute;
    left: 10%;
    bottom: 1%;
    opacity: 1;
    width: 210px;
    height: auto;
    transition: all 0.3s ease-out 0s;
}

.intro-bg-04 {
    position: absolute;
    bottom: 10%;
    left: 0;
    opacity: 1;
    width: 100%;
    height: auto;
    transition: all 0.3s ease-out 0s;
}

.intro-bg-05 {
    position: absolute;
    right: 13%;
    top: 30%;
    opacity: 1;
    width: 220px;
    height: auto;
    transition: all 0.3s ease-out 0s;
}

.intro-card {
    background: #ffffff;
    box-shadow: 0px 15px 30px 0px rgb(0 0 0 / 14%);
    padding: 45px 40px;
    position: relative;
}

    .intro-card .intro-img {
        display: block;
        max-width: 150px;
        margin: auto;
    }

    .intro-card .intro-shape {
        position: absolute;
        left: 0;
        bottom: 0;
    }

        .intro-card .intro-shape .shape-img {
            height: auto;
            transition: all 0.3s ease-out 0s;
            width: 50px;
        }

@media screen and (max-width: 576px) {
    .introFirst {
        padding-right: 3rem !important;
        padding-left: 3rem !important;
    }
}






/* Feature */
.feature-card {
    background: #fff;
    height: 300px;
    margin: 20px 0;
    z-index: 2;
    position: relative;
    padding: 20px;
    transition: all 0.4s ease 0s;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

@media screen and (max-width: 576px) {
    .introSecond {
        padding-right: 3.5rem !important;
        padding-left: 3.5rem !important;
        margin-top: 2rem !important;
    }
}

.feature-card:hover {
    margin-bottom: 20px;
}

.feature-card .feature-bg {
    border-radius: 100px;
    box-shadow: 0 1px 2px 1px rgb(0 0 0 / 10%);
    color: #fff;
    display: inline-block;
    font-size: 28px;
    line-height: 68px;
    width: 70px;
    height: 70px;
    margin-bottom: 0;
    position: relative;
    text-align: center;
    top: 60px;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.feature-card:hover .feature-bg {
    top: -55px;
}

.feature-card .feature-title {
    margin: 0;
    position: relative;
    text-transform: capitalize;
    top: 100px;
    font-weight: 700;
    font-size: 18px;
    -webkit-transition: all 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55) 0s;
    transition: all 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55) 0s;
}

.feature-card:hover .feature-title {
    top: -20px;
}

.feature-card .feature-para {
    margin-bottom: 20px;
    opacity: 0;
    overflow: hidden;
    -webkit-transition: all 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55) 0s;
    transition: all 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55) 0s;
}

    .feature-card .feature-para li {
        padding: 15px 0;
    }

.feature-card:hover .feature-para {
    opacity: 1;
}









/*  
            Service
                              */
.service-card {
    background: #fff;
    height: 420px;
    width: 420px;
    margin: 20px 0;
    z-index: 200;
    position: relative;
    padding: 20px;
    transition: all 0.4s ease 0s;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    cursor: pointer;
    box-shadow: 0 3px 16px rgb(0 0 0 / 10%);
}

    .service-card:hover {
        height: 430px;
        margin-bottom: 10px;
    }

    .service-card .service-img-01 {
        display: block;
        width: 250px;
        margin: auto;
        transition: all 0.4s ease 0s;
    }

    .service-card .service-img-02 {
        display: block;
        width: 350px;
        margin: auto;
        transition: all 0.4s ease 0s;
    }

    .service-card:hover .service-img-01 {
        width: 260px;
    }

    .service-card:hover .service-img-02 {
        width: 360px;
    }

@media screen and (max-width: 576px) {
    .service-card {
        height: 300px;
        width: 350px;
        margin: 20px 0;
    }

        .service-card .service-img-01 {
            width: 180px;
        }

        .service-card .service-img-02 {
            width: 240px;
        }

        .service-card .service-para {
            margin-top: 0rem !important;
            margin-bottom: .5rem !important;
        }

        .service-card:hover {
            height: 300px;
            width: 350px;
            margin: 20px 0;
        }

            .service-card:hover .service-img-01 {
                width: 190px;
            }

            .service-card:hover .service-img-02 {
                width: 250px;
            }
}



/*  
            Form 
                              */
.from-info {
    border: 1px solid #dee2e6;
    padding: 60px 30px;
    margin: 10px 5px;
    border-radius: 5px;
    background: #fff;
}









/*  
            Question
                              */
.question-card {
    width: 450px;
    height: 420px;
    background: #fff;
    margin: 20px 0;
    z-index: 200;
    position: relative;
    padding: 20px;
    transition: all 0.4s ease 0s;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    cursor: pointer;
    box-shadow: 0 3px 16px rgb(0 0 0 / 10%);
}

    .question-card .question-img-01 {
        display: block;
        width: 300px;
        margin: auto auto 0px auto;
        transition: all 0.4s ease 0s;
    }

    .question-card .question-img-02 {
        display: block;
        width: 250px;
        margin: auto;
        transition: all 0.4s ease 0s;
    }

    .question-card:hover {
        transform: scale(1.01, 1.01)
    }

        .question-card:hover span.subtitle-decoration::before {
            content: '';
            position: absolute;
            display: block;
            width: 180px;
            height: 2px;
            background: linear-gradient(59deg, #6FB1F3 20%, #0080FF 53%);
            background: -moz-linear-gradient(59deg, #6FB1F3 20%, #0080FF 53%);
            background: -webkit-linear-gradient(59deg, #6FB1F3 20%, #0080FF 53%);
            background: -o-linear-gradient(59deg, #6FB1F3 20%, #0080FF 53%);
            bottom: 10px;
            left: 50%;
            transform: translate(-50%, -50%);
        }

@media screen and (max-width: 576px) {
    .question-card {
        width: 300px;
        height: 300px;
    }

        .question-card .question-img-01 {
            width: 180px;
        }

        .question-card .question-img-02 {
            width: 155px;
        }
}



/*  
            Ans
                              */
.accordion-area {
    /*height: 835px;*/
    /*width: 100%;*/
}

.accordion-flush .accordion-item {
    border-right: 10px !important;
    border-left: 10px !important;
    border-radius: 10px !important;
    margin: 10px 0;
}

    .accordion-flush .accordion-item:first-child {
        border-top: 0;
        margin: 10px 0;
    }

.accordion-body {
    letter-spacing: 2px;
    padding: 0 4rem 1.25rem 3.5rem !important;
    color: #707070;
}

.accordion-button {
    padding: 1.25rem 1.8rem 1.25rem 1.5rem !important;
    border-radius: 10px !important;
}

    .accordion-button:not(.collapsed) {
        font-weight: 600;
        color: #0c63e4;
        background-color: #fff !important;
        box-shadow: none !important;
        /* background-color: #e7f1ff; */
        /* box-shadow: inset 0 -1px 0 rgb(0 0 0 / 13%); */
    }

    .accordion-button:focus {
        z-index: 3;
        border-color: #86b7fe;
        outline: 0;
        box-shadow: none !important;
    }

@media screen and (max-width: 768px) {
    .accordion-area {
        /*height: 100%;*/
        /*width: 100%;*/
    }

    .accordion-button {
        padding: 1.25rem 1rem 1.25rem 1.5rem !important;
    }

        .accordion-button h5 {
            line-height: 1.5;
            letter-spacing: 2px;
        }

    .accordion-body {
        padding: 1rem 1.5rem !important;
        border-top: 1px solid #dee2e6;
    }

    .ans .intro-bg-04 {
        display: none;
    }
}







/*  
            Information
                              */
.information-area {
    height: 400px;
    width: 100%;
}

@media screen and (max-width: 992px) {
    .information-area {
        height: 100%;
    }

    .information .intro-bg-04 {
        display: none;
    }

    .information-card {
        height: 325px !important;
        width: 100% !important;
        padding: 0 !important;
    }
}

.information-card {
    padding: 40px 30px;
    height: 400px;
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    -webkit-transition: all .3s ease 0s;
    -o-transition: all .3s ease 0s;
    transition: all .3s ease 0s;
}

    .information-card .information-icon {
        background-color: #fff;
        height: 160px;
        width: 160px;
        border-radius: 50%;
        line-height: 160px;
        -webkit-box-shadow: none;
        box-shadow: none;
        text-align: center;
        margin-bottom: 30px;
        -webkit-transition: all .3s ease 0s;
        -o-transition: all .3s ease 0s;
        transition: all .3s ease 0s;
        display: inline-block;
        font-size: 50px;
        border: 1px solid #ccc;
    }

    .information-card:hover {
        padding-top: 20px;
    }

        .information-card:hover .information-icon {
            transform: scale(1.05deg);
        }

            .information-card:hover .information-icon:hover {
                border: 1px solid #47B2E4;
                background-color: #47B2E4;
                color: #fff;
            }

        .information-card:hover h5 {
            color: #0d6efd;
        }

        .information-card:hover h6 {
            color: #4A628A !important;
        }




/* -------------------------- *\
        Month Page
\* -------------------------- */
/* Banner */
.banner-area {
    padding-top: 64px;
}

.banner-title {
    position: absolute;
    bottom: 30%;
    left: 50%;
    transform: translate(-50%,-50%);
}

/* Content*/
.content-area {
    margin: 60px 0 120px 0;
}





/* -------------------------- *\
        POP Page
\* -------------------------- */
body.popStyle {
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-title {
    color: #474D58;
    font-weight: 700;
}




/* -------------------------- *\
        sweetalert2
\* -------------------------- */
.swal2-title {
    padding: 1em 1em 0 !important;
}

.swal2-styled.swal2-confirm {
    background: #0265C7 !important;
    background-color: #0265C7 !important;
    border: 1px solid #0265C7 !important;
    vertical-align: top;
    line-height: 24px;
    padding: 5px 35px;
    border-radius: 1.25rem !important;
}

    .swal2-styled.swal2-confirm:focus {
        box-shadow: none !important;
    }






@media screen and (max-width: 1280px) {
    .banner-title {
        bottom: 18%;
    }

    .content-area {
        margin: 50px 0 100px 0 !important;
    }
}

@media screen and (max-width: 768px) {
    .banner-img img {
        display: none;
    }

    .banner-title {
        display: none;
    }

    .content-area {
        margin: 0 0 50px 0 !important;
    }
}
