/*===========================
        global style         
=============================*/


/*fonts*/

body {
    font-family: "Arial", "Helvetica", "sans-serif", "microsoft jhenghei";
}

html {
    scroll-behavior: smooth;
}

h1,
h2,
h3 {}

a {
    -webkit-transition: 0.6s;
    -o-transition: 0.6s;
    transition: 0.6s;
}

a:hover {
    text-decoration: none;
}

.container {
    max-width: 1200px;
}

.my-btn {
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    padding: 0 20px;
    height: 50px;
    line-height: 50px;
    color: #fff;
    background: #21509E;
}

.my-btn:hover {
    background: #343EAF;
    color: #fff;
}

.heading {
    text-align: center;
    margin-bottom: 45px;
}

.heading h2 {
    font-size: 40px;
    font-weight: 700;
    line-height: 55px;
    text-transform: capitalize;
    color: #46413E;
    letter-spacing: 0;
    margin-bottom: 0;
}

.heading .desc {
    font-size: 16px;
    color: #252525;
    letter-spacing: 0;
    text-align: center;
    line-height: 30px;
    margin-top: 34px;
    font-weight: bold;
}

.preloader {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #343EAF;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 9999;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.loader,
.loader hr {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    margin-top: -50px;
    bottom: 0;
}

.loader {
    width: 100px;
    height: 100px;
    font-size: 0;
    left: 50%;
    margin-left: -50px;
    border-radius: 50%;
    overflow: hidden;
}

.loader hr {
    border: 50px solid transparent;
    border-top-color: #fff;
    -webkit-animation: 1s spin infinite linear;
    animation: 1s spin infinite linear;
    opacity: 1;
}

.loader hr:nth-of-type(1) {
    opacity: 0.25;
    border-left-color: #fff;
}

.loader hr:nth-of-type(2) {
    animation-direction: reverse;
    -webkit-animation-duration: 2.5s;
    animation-duration: 2.5s;
}

@-webkit-keyframes spin {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spin {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}


/*===========================
        top-header section         
=============================*/

.top-header {
    background-color: #8CC656;
    color: #fff;
}

.top-header .top-left ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0;
    margin: 0;
}

.top-header .top-left ul li {
    list-style: none;
    padding: 0 15px 0 0;
}

.top-header .top-left ul li a {
    color: #fff;
    font-size: 14px;
}

.top-header .top-left ul li a i {
    margin-right: 5px;
    color: #05BB59;
}

.top-header .top-left ul li a:hover {
    color: #05BB59;
}

.top-header .top-right {
    float: right;
}

.top-header .top-right a {
    display: inline-block;
    color: #05BB59;
    padding-left: 15px;
}

.top-header .top-right a:hover {
    color: #343EAF;
}


/*===========================
        header section         
=============================*/

.fixed-header {
    position: fixed;
    top: 0;
    background: #fff;
    -webkit-transition: 0.6s;
    -o-transition: 0.6s;
    transition: 0.6s;
    -webkit-box-shadow: 0px 1px 10px -5px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 1px 10px -5px rgba(0, 0, 0, 0.3);
    width: 100%;
    border: none !important;
}

.header {
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 11;
    border-top: 2px solid #8CC656;
}

.header .logo a {
    width: 150px;
    display: inline-block;
}

.header .logo a img {
    width: 100%;
}

.header .navbar {
    padding: 0;
}

.header .navbar .navbar-nav .nav-item {
    margin-right: 40px;
    padding: 19px 0;
}

.header .navbar .navbar-nav .nav-item .nav-link {
    padding: 5px 0;
    font-size: 16px;
    font-weight: bold;
    text-transform: capitalize;
    color: #000;
    position: relative;
}

#navbarCont {
    /* padding-left: 100px; */
}


/* .header .navbar .navbar-nav .nav-item .nav-link:after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #05BB59;
    -webkit-transition: 0.6s;
    -o-transition: 0.6s;
    transition: 0.6s;
} */


/* .header .navbar .navbar-nav .nav-item .nav-link:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #05BB59;
    -webkit-transition: 0.6s;
    -o-transition: 0.6s;
    transition: 0.6s;
} */


/* .header .navbar .navbar-nav .nav-item .nav-link:hover:after,
.header .navbar .navbar-nav .nav-item .nav-link:hover:before {
    width: 25px;
} */

.header .navbar .navbar-nav .nav-item .nav-link:hover {
    color: #8CC656;
}

.header .navbar .my-btn {
    padding: 0 20px;
    height: 32px;
    line-height: 32px;
    border-radius: 16px;
}

.bottom-header {
    background: #fff;
    padding: 3px 0 0 0;
    /* border-top: 1px solid rgba(52, 62, 175, 0.1); */
    /* border-bottom: 1px solid rgba(52, 62, 175, 0.1); */
}

.bottom-header .logo-row {
    padding-left: 40px;
}

.contact-list {
    /*background: #21509E;
    list-style: none;
    position: absolute;
    right: -15px;
    top: -3px;
    width: 700px;
    height: 80px;
    line-height: 80px;*/
}

.contact-list li {
    display: inline-block;
    margin-right: 35px;
}

.contact-list li a {
    color: #fff;
    font-size: 16px;
}

.contact-list li a img {
    width: 16px;
    margin-right: 6px;
    vertical-align: middle;
}

.contact-list li a span {
    vertical-align: middle;
}


/*===========================
        banner section         
=============================*/

.banner-box {
    margin-top: 76px;
    /* min-height: 350px; */
    position: relative;
}

.banner-box .banner-img {
    width: 100%;
    height: auto;
}

.banner-text {
    position: absolute;
    max-width: 660px;
    color: #fff;
}

.banner {
    background: url(../images/banner.png) center center no-repeat;
    background-size: cover;
    position: relative;
    z-index: 2;
    border-bottom: 1px solid #dde4f7;
    min-height: 550px;
}

.banner:after {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    opacity: 0;
    z-index: -1;
}

.banner .banner-txt {
    padding: 35px 0;
    margin-top: 175px;
    letter-spacing: 1px;
}

.banner .banner-txt h1 {
    font-size: 60px;
    font-weight: 700;
    line-height: 75px;
    text-transform: capitalize;
    color: #343EAF;
    margin-bottom: 30px;
}

.banner .banner-txt p {
    font-size: 18px;
    line-height: 34px;
    text-transform: capitalize;
    margin-bottom: 0;
    color: #fff;
}

.banner .part-img {
    width: 100%;
    margin-top: 144px;
}

.banner .part-img img {
    width: 100%;
}


/*===========================
        about section         
=============================*/

.about {
    padding: 90px 0;
}

.about .part-img img {
    width: 100%;
}

.about .part-txt .title {
    font-size: 21px;
    color: #4B4B4B;
    letter-spacing: 0;
    text-align: center;
    margin-top: 50px;
    font-weight: bold;
}

.about .part-txt ul {
    padding: 0;
    margin-top: 50px;
    margin-bottom: 40px;
}

.about .part-txt ul{
    list-style: none;
    margin-bottom: 25px;
    text-transform: capitalize;
    font-weight: 500;
    font-size: 16px;
    color: #4B4B4B;
    letter-spacing: 0;
}

.about .row {
    background: #F9F9F9;
}


/*===========================
        service section         
=============================*/

.service {
    padding: 90px 0;
}

.service .info-box {}

.info-box .row-img {
    float: left;
    width: 200px;
}

.info-box .row-info {
    float: left;
    width: 280px;
    margin-left: 20px;
}

.info-box .row-info h3 {
    font-size: 22px;
    color: #46413E;
    margin-top: 25px;
    font-weight: bold;
}

.info-box .row-info p {
    font-size: 16px;
    color: #46413E;
    margin-top: 20px;
    cursor: pointer;
}

.info-box .row-info p.sper {
    font-size: 14px;
    color: #21509E;
    margin-top: 30px;
}


/*===========================
        recoveryProcess section         
=============================*/

.recoveryProcess {
    padding: 70px 0 10px 0;
    background: #F9F9F9;
}

.recoveryProcess .flow-list .item .desc-box {
    float: left;
    width: 400px;
}

.recoveryProcess .flow-list .item .desc-box h3 {
    font-size: 22px;
    color: #00A4CF;
}

.recoveryProcess .flow-list .item .desc-box p {
    font-size: 16px;
    color: #46413E;
}

.main-timeline {
    width: 80%;
    margin: 20px auto;
    position: relative;
}

.main-timeline:before {
    content: "";
    display: block;
    width: 2px;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    margin: 0 0 0 -1px;
    position: absolute;
    top: 0;
    left: 50%;
}

.main-timeline .timeline {
    width: 100%;
    margin-bottom: 0;
    height: 150px;
    position: relative;
}

.main-timeline .timeline:after {
    content: "";
    display: block;
    clear: both;
}

.main-timeline .timeline-content {
    width: 40%;
    float: left;
    /* margin: 5px 0 0 0; */
    border-radius: 6px;
}

.main-timeline .date {
    display: block;
    width: 59px;
    height: 100%;
    /* border-radius: 50%; */
    /* background: #25303b; */
    /* padding: 5px 0; */
    margin: 0 0 0 -36px;
    position: absolute;
    top: 0;
    left: 50%;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    /* border: 2px solid rgba(255,255,255,0.2);
    box-shadow: 0 0 0 7px #25303b; */
}

.main-timeline .date .line {
    display: block;
    width: 1px;
    height: 84px;
    /* background: #f00; */
    margin: 0 auto;
    margin-top: 4px;
}

.main-timeline .date .line.a {
    background: #30C0E6;
}

.main-timeline .date .line.b {
    background: #00A4CF;
}

.main-timeline .date .line.c {
    background: #0A7795;
}

.main-timeline .date span {
    display: block;
    text-align: center;
}

.main-timeline .day,
.main-timeline .year {
    font-size: 10px;
}

.main-timeline .month {
    font-size: 18px;
}

.main-timeline .title {
    padding: 0 0;
    margin: 0;
    font-size: 20px;
    color: #00A4CF;
    /* text-transform: uppercase; */
    letter-spacing: -1px;
    border-radius: 6px 6px 0 0;
    position: relative;
    font-weight: bold;
}

.main-timeline .title:after {
    content: "";
    width: 10px;
    height: 10px;
    position: absolute;
    top: 20px;
    right: -5px;
    transform: rotate(-45deg);
}

.main-timeline .description {
    padding: 15px 15px 0 0;
    margin: 0;
    font-size: 14px;
    color: #656565;
    /* background: #fff; */
    border-radius: 0 0 6px 6px;
}

.main-timeline .timeline:nth-child(2n+2) .timeline-content {
    float: right;
}

.main-timeline .timeline:nth-child(2n+2) .title:after {
    left: -5px;
}


/* .main-timeline .timeline:nth-child(1) .title,
.main-timeline .timeline:nth-child(1) .title:after{
    background: #9f84c4;
}
.main-timeline .timeline:nth-child(2) .title,
.main-timeline .timeline:nth-child(2) .title:after{
    background: #02a2dd;
}
.main-timeline .timeline:nth-child(3) .title,
.main-timeline .timeline:nth-child(3) .title:after{
    background: #58b25e;
}
.main-timeline .timeline:nth-child(4) .title,
.main-timeline .timeline:nth-child(4) .title:after{
    background: #eab715;
} */


/*===========================
        contact section         
=============================*/

.contact {
    padding: 90px 0;
    background: #21509E;
    color: #BFBFBF;
}

.contact .part-img img {
    width: 157px;
}

.contact .part-img p {
    font-size: 22px;
    color: #BFBFBF;
    letter-spacing: 0;
    margin-top: 20px;
}

.contact .part-txt {
    color: #ffffff;
}

.contact .part-txt .title {
    font-size: 30px;
    letter-spacing: 0;
}

.contact .part-txt ul {
    margin-top: 20px;
    padding: 0px;
}

.contact .part-txt ul li {
    list-style: none;
    margin-bottom: 32px;
    font-weight: 500;
    font-size: 16px;
    color: #BFBFBF;
    letter-spacing: 0;
}

.contact .part-txt form {
    margin-top: 20px;
}

.contact .part-txt form input {
    width: 100%;
    height: 45px;
    padding: 0 30px;
    outline: none;
    border: 1px solid rgba(52, 62, 175, 0.3);
}

.contact .part-txt form button {
    width: 100%;
    height: 54px;
    margin-top: 10px;
    font-size: 20px;
}

.contact form .part-txt textarea {
    width: 100%;
    height: 150px;
    margin-bottom: 30px;
    padding: 15px 30px;
    outline: none;
    border: 1px solid rgba(52, 62, 175, 0.3);
}

.navbar-collapse {
    justify-content: space-between;
    flex-wrap: wrap;
}