﻿body {
    padding-top: 50px;
}

p {
    font-size: 20px;
}

    p.small {
        font-size: 16px;
    }

a,
a:hover,
a:focus,
a:active,
a.active {
    outline: 0;
    color: #18bc9c;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    text-transform: uppercase;
    font-family: "Helvetica Neue";
    font-weight: 700;
}

hr.star-light,
hr.star-primary {
    margin: 25px auto 30px;
    padding: 0;
    max-width: 250px;
    border: 0;
    border-top: solid 5px;
    text-align: center;
}

    hr.star-light:after,
    hr.star-primary:after {
        content: "\f005";
        display: inline-block;
        position: relative;
        top: -.8em;
        padding: 0 .25em;
        font-family: FontAwesome;
        font-size: 2em;
    }

hr.star-light {
    border-color: #fff;
}

    hr.star-light:after {
        color: #fff;
        background-color: #18bc9c;
    }

hr.star-primary {
    border-color: #2c3e50;
}

    hr.star-primary:after {
        color: #2c3e50;
        background-color: #fff;
    }

.marquee {
    width: 450px;
    margin: 0 auto;
    white-space: nowrap;
    overflow: hidden;
    box-sizing: border-box;
    width: 100%;
    overflow: hidden;
    color: #fff;
}

    .marquee span {
        display: inline-block;
        padding-left: 100%;
        text-indent: 0;
        animation: marquee 15s linear infinite;
    }

        .marquee span:hover {
            animation-play-state: paused;
        }

/* Make it move */
@keyframes marquee {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(-100%, 0);
    }
}

.img-centered {
    margin: 0 auto;
}

header {
    text-align: center;
    color: #fff;
    background: #18bc9c;
}

    header .container {
        padding-top: 100px;
        padding-bottom: 50px;
    }

    header img {
        display: block;
        margin: 0 auto 20px;
    }

    header .intro-text .name {
        display: block;
        text-transform: uppercase;
        font-family: "Helvetica Neue";
        font-size: 2em;
        font-weight: 700;
    }

    header .intro-text .skills {
        font-size: 1.25em;
        font-weight: 300;
    }

@media(min-width:768px) {
    header .container {
        padding-top: 200px;
        padding-bottom: 100px;
    }

    header .intro-text .name {
        font-size: 4.75em;
    }

    header .intro-text .skills {
        font-size: 1.75em;
    }
}

@media(max-width:767px) {
    .navbar-fixed-top .navbar-brand-image {
        max-height: 50px !important;
    }

    .navbar-default .navbar-collapse, .navbar-default .navbar-form {
        border: none;
    }

    .navbar-nav {
        margin: 0 -15px;
    }

    .navbar-default .navbar-toggle {
        border-color: #066060;
    }

        .navbar-default .navbar-toggle .icon-bar {
            background-color: #066060;
        }
}

@media(min-width:768px) {
    .navbar-fixed-top {
        padding: 0px;
        -webkit-transition: padding .3s;
        -moz-transition: padding .3s;
        transition: padding .3s;
    }

        .navbar-fixed-top li.page-scroll {
            padding: 0px;
            -webkit-transition: all .9s;
            -moz-transition: all .9s;
            transition: all .9s;
        }

        .navbar-fixed-top .navbar-brand {
            font-size: 2em;
            -webkit-transition: all .9s;
            -moz-transition: all .9s;
            transition: all .9s;
        }

        .navbar-fixed-top .navbar-brand-image {
            max-height: 50px !important;
            -webkit-transition: all .9s;
            -moz-transition: all .9s;
            transition: all .9s;
        }

        .navbar-fixed-top.navbar-shrink li.page-scroll {
            padding: 10px;
            -webkit-transition: all .9s;
            -moz-transition: all .9s;
            transition: all .9s;
        }

        .navbar-fixed-top.navbar-shrink .navbar-brand-image {
            max-height: 70px !important;
        }

        /*.navbar-fixed-top.navbar-shrink img.navbar-brand-image {
            padding:10px;
        }*/

        /*.navbar-fixed-top.navbar-shrink {
            padding: 10px;
        }*/

        .navbar-fixed-top.navbar-shrink .navbar-brand {
            font-size: 1.5em;
        }
}


.navbar {
    text-transform: uppercase;
    font-family: "Helvetica Neue";
    font-weight: 700;
}

    .navbar a:focus {
        outline: 0;
    }

    .navbar .navbar-nav {
        letter-spacing: 1px;
    }

        .navbar .navbar-nav li a:focus {
            outline: 0;
        }

.navbar-default,
.navbar-inverse {
    border: 0;
}

section {
    padding: 50px 0;
}

    section h2 {
        margin: 0;
        font-size: 3em;
    }

    section.success {
        color: #fff;
        background: #18bc9c;
    }

        section.success a,
        section.success a:hover,
        section.success a:focus,
        section.success a:active,
        section.success a.active {
            outline: 0;
            color: #2c3e50;
        }

.btn-outline {
    margin-top: 15px;
    border: solid 2px #fff;
    font-size: 20px;
    color: #fff;
    background: 0 0;
    transition: all .3s ease-in-out;
}

    .btn-outline:hover,
    .btn-outline:focus,
    .btn-outline:active,
    .btn-outline.active {
        border: solid 2px #fff;
        color: #18bc9c;
        background: #fff;
    }

.floating-label-form-group {
    position: relative;
    margin-bottom: 0;
    padding-bottom: .5em;
    border-bottom: 1px solid #eee;
}

    .floating-label-form-group input,
    .floating-label-form-group textarea {
        z-index: 1;
        position: relative;
        padding-right: 0;
        padding-left: 0;
        border: 0;
        border-radius: 0;
        font-size: 1.5em;
        background: 0 0;
        box-shadow: none !important;
        resize: none;
    }

    .floating-label-form-group label {
        display: block;
        z-index: 0;
        position: relative;
        top: 2em;
        margin: 0;
        font-size: .85em;
        line-height: 1.764705882em;
        vertical-align: middle;
        vertical-align: baseline;
        opacity: 0;
        -webkit-transition: top .3s ease,opacity .3s ease;
        -moz-transition: top .3s ease,opacity .3s ease;
        -ms-transition: top .3s ease,opacity .3s ease;
        transition: top .3s ease,opacity .3s ease;
    }

    .floating-label-form-group::not(:first-child) {
        padding-left: 14px;
        border-left: 1px solid #eee;
    }

.floating-label-form-group-with-value label {
    top: 0;
    opacity: 1;
}

.floating-label-form-group-with-focus label {
    color: #18bc9c;
}

form .row:first-child .floating-label-form-group {
    border-top: 1px solid #eee;
}

footer {
    background-color: #2c2c2c;
    color: #fff;
}

    footer h3 {
        margin-bottom: 20px;
    }

    footer .footer-above {
        padding-top: 50px;
        background-color: #2c3e50;
    }

    footer .footer-col {
        margin-bottom: 10px;
    }

    footer .footer-below {
        padding: 15px 0;
        background-color: #d4c896;
    }

.btn-social {
    display: inline-block;
    width: 50px;
    height: 50px;
    border: 2px solid #fff;
    border-radius: 100%;
    text-align: center;
    font-size: 20px;
    line-height: 45px;
}

.btn:focus,
.btn:active,
.btn.active {
    outline: 0;
}

.scroll-top {
    z-index: 1049;
    position: fixed;
    right: 2%;
    bottom: 2%;
    width: 50px;
    height: 50px;
}

    .scroll-top .btn {
        width: 50px;
        height: 50px;
        border-radius: 100%;
        font-size: 20px;
        line-height: 28px;
    }

        .scroll-top .btn:focus {
            outline: 0;
        }

@media(max-width:767px) {
    section {
        padding-top: 35px;
    }

        section.first {
            padding-top: 35px;
        }
}

@media(min-width:768px) {

    #History {
        padding: 0px 50px 15px 55px;
    }

    #Contract .contract-container {
        padding: 0px 50px 15px 55px;
    }

    #howto {
        padding: 0px 0px 15px 0px;
    }

    #whychooseus {
        padding: 15px 105px 20px 105px;
    }

    #Contract {
        padding: 0px 0px 15px 0px;
    }

    .contract-img {
        width: 367px;
        height: 365px;
        margin-top: 30px;
    }

    .History-Content {
        margin-bottom: 20px;
        text-align: justify;
        font-weight: 500;
        font-family: "Helvetica Neue";
        font-size: 16px;
        color: #3f3f3f;
    }

    .History-sideImage img {
        padding-top: 20px;
    }

    .History-Content p {
        font-size: 16px;
        line-height: 26px;
        letter-spacing: 0;
        font-weight: 400;
        font-style: normal;
        text-transform: none;
    }

    .History-Content .contact {
        margin-top: 10px;
        margin-bottom: 10px;
        font-weight: 700;
        font-size: 1.3em;
    }

    .History-Content .moto {
        font-weight: 700;
        font-size: 1.1em;
        margin-bottom: 15px;
    }

    #History .History-Title h3 {
        display: block;
        text-transform: uppercase;
        font-family: "Helvetica Neue";
        font-size: 2em;
        font-weight: 800;
    }

    #Contract .Contract-Title h3 {
        display: block;
        text-transform: uppercase;
        font-family: "Helvetica Neue";
        font-size: 2em;
        font-weight: 800;
    }

    .whytittle h2 {
        text-transform: uppercase;
        font-family: "Helvetica Neue";
        color: white;
        text-align: center;
        font-size: 1.9em;
    }

    .whytittle h3 {
        text-transform: uppercase;
        font-family: "Helvetica Neue";
        color: white;
        text-align: center;
        font-size: 1.6em;
        text-align: left;
    }

    .customfooter {
        margin-left: -60px;
    }
}

@media(max-width:767px) {
    #History {
        padding: 0px 10px 10px 10px;
    }

    #Contract {
        padding: 0px 10px 30px 10px;
    }

    .contract-img {
        width: 367px;
        height: 365px;
        margin-top: 30px;
    }

    #howto {
        padding: 0px 0px 25px 0px;
    }

    #whychooseus {
        padding: 10px 15px 10px 15px;
    }


    .History-Content {
        margin-bottom: 20px;
        text-align: justify;
        font-weight: 500;
        font-family: "Helvetica Neue";
        font-size: 16px;
        color: #3f3f3f;
    }

    #History .History-Title h3 {
        text-align: center;
        display: block;
        text-transform: uppercase;
        font-family: "Helvetica Neue";
        font-size: 2em;
        font-weight: 800;
    }

    .History-sideImage img {
        display: block;
        margin-left: auto;
        margin-right: auto;
        padding-top: 0px;
    }

    .History-Content p {
        font-size: 15px;
        line-height: 20px;
        letter-spacing: 0;
        font-weight: 400;
        font-style: normal;
        text-transform: none;
    }

    .History-Content .contact {
        margin-top: 10px;
        margin-bottom: 10px;
        font-weight: 700;
        font-size: 1.3em;
    }

    .History-Content .moto {
        font-weight: 700;
        font-size: 1.1em;
        margin-bottom: 15px;
    }

    .whytittle h2 {
        color: white;
        text-align: center;
        font-size: 1.5em;
        text-transform: uppercase;
    }

    .whytittle h3 {
        color: white;
        text-align: center;
        font-size: 1.5em;
        text-transform: uppercase;
        text-align: center;
    }

    .customfooter {
        margin-left: 15px;
        margin-right: 15px;
    }
}

.hrcustom {
    border-top: 4px solid #333;
    width: 180px;
}

.hrcustomcontract {
    border-top: 4px solid #fff;
    width: 180px;
}


.Whychooseus-Content {
    color: white;
    font-size: 0.85em;
    text-transform: uppercase;
}

    .Whychooseus-Content .bunga-sprite {
        background: url('../Content/Images/img/sprite.png') no-repeat -72px -52px;
        position: center;
        width: 122px;
        height: 119px;
    }

    .Whychooseus-Content .integrity-sprite {
        background: url('../Content/Images/img/sprite.png') no-repeat -213px -52px;
        width: 123px;
        height: 116px;
    }

    .Whychooseus-Content .location-sprite {
        background: url('../Content/Images/img/sprite.png') no-repeat -360px -53px;
        width: 123px;
        height: 116px;
    }

    .Whychooseus-Content .cod-sprite {
        background: url('../Content/Images/img/sprite.png') no-repeat -508px -54px;
        width: 123px;
        height: 116px;
    }

    .Whychooseus-Content .longhour-sprite {
        background: url('../Content/Images/img/sprite.png') no-repeat -646px -54px;
        width: 123px;
        height: 116px;
    }

    .Whychooseus-Content .trans-sprite {
        background: url('../Content/Images/img/sprite.png') no-repeat -72px -185px;
        width: 123px;
        height: 116px;
    }

    .Whychooseus-Content .safety-sprite {
        background: url('../Content/Images/img/sprite.png') no-repeat -217px -188px;
        width: 123px;
        height: 116px;
    }

    .Whychooseus-Content .moneyback-sprite {
        background: url('../Content/Images/img/sprite.png') no-repeat -364px -186px;
        width: 123px;
        height: 116px;
    }

    .Whychooseus-Content .high-sprite {
        background: url('../Content/Images/img/sprite.png') no-repeat -509px -188px;
        width: 123px;
        height: 116px;
    }

    .Whychooseus-Content .easy-sprite {
        background: url('../Content/Images/img/sprite.png') no-repeat -647px -185px;
        width: 123px;
        height: 116px;
    }

.contact .Phone-Sprite {
    background: url('../Content/Images/img/sprite.png') no-repeat -229px -337px;
    width: 28px;
    height: 28px;
    display: inline-block;
}

.Phone-Sprite-Footer {
    background: url('../Content/Images/img/sprite.png') no-repeat -455px -338px;
    width: 28px;
    height: 28px;
    display: inline-block;
    position: relative;
    /*top:8px;*/
}

.Wa-Sprite-Footer {
    background: url('../Content/Images/img/sprite.png') no-repeat -501px -338px;
    width: 28px;
    height: 28px;
    display: inline-block;
    position: relative;
    /*top:8px;*/
}

.Bb-Sprite-Footer {
    background: url('../Content/Images/img/sprite.png') no-repeat -552px -338px;
    width: 28px;
    height: 28px;
    display: inline-block;
    position: relative;
    /*top:8px;*/
}

.Line-Sprite-Footer {
    background: url('../Content/Images/img/sprite.png') no-repeat -604px -338px;
    width: 28px;
    height: 28px;
    display: inline-block;
    position: relative;
    /*top:8px;*/
}


.contact .Wa-Sprite {
    background: url('../Content/Images/img/sprite.png') no-repeat -273px -337px;
    width: 28px;
    height: 28px;
    display: inline-block;
}

.contact .Bb-Sprite {
    background: url('../Content/Images/img/sprite.png') no-repeat -326px -337px;
    width: 28px;
    height: 28px;
    display: inline-block;
}

.contact .Line-Sprite {
    background: url('../Content/Images/img/sprite.png') no-repeat -379px -337px;
    width: 28px;
    height: 28px;
    display: inline-block;
}

#History .History-Content .howto1 {
    background: url('../Content/Images/img/sprite.png') no-repeat -150px -402px;
    width: 159px;
    height: 170px;
}

#History .History-Content .howto2 {
    background: url('../Content/Images/img/sprite.png') no-repeat -350px -402px;
    width: 168px;
    height: 170px;
}

#History .History-Content .howto3 {
    background: url('../Content/Images/img/sprite.png') no-repeat -567px -401px;
    width: 168px;
    height: 170px;
}



#customBanner {
    background-image: url('../Content/Images/img/bannerBg.jpg');
    padding-bottom: 30px;
}

#whychooseus {
    background-image: url('../Content/Images/img/whychooseus.jpg');
}

#Contract {
    background-image: url('../Content/Images/img/bannerBg.jpg');
    color: #fff;
    background-size: 100% auto;
}

.contact span {
    padding-left: 30px;
    position: absolute;
    display: inline-block;
}

.contactfooter {
    border: 1px solid #fff;
    padding-left: 10px;
    padding-top: 2px;
    margin-bottom: 5px;
    padding-right: 10px;
    margin-right: auto;
    margin-left: auto;
    width: 250px;
    -webkit-border-radius: 10px 10px 10px 10px;
    border-radius: 10px 10px 10px 10px;
}
