/*--------------------------------------------------------------
 Typography
--------------------------------------------------------------*/

/* Load fonts from file incase google CDN did not load */
body {
    background-color: #fff;
    color: #484848;    
    font-size: 16px;
    font-weight:400;
    line-height: 1.6;
    position: relative;
	-webkit-font-smoothing: antialiased;
}

h1, h2, h3,
h4, h5, h6,
.h1, .h2, .h3,
.h4, .h5, .h6 {
    font-weight:500;
    line-height: 1.2;
    position: relative;	
}

h1, .h1, h2,
.h2, h3, .h3 {
    margin-top: 20px;
    margin-bottom: 10px;
}

h4, .h4, h5, 
.h5, h6, .h6 {
    margin-top: 10px;
    margin-bottom: 10px;
}

h1, .h1 {
    font-size: 28px;
}

h2, .h2 {
    font-size: 24px;
}

h3, .h3 {
    font-size: 18px;
}

h4, .h4 {
    font-size: 16px;
}

h5, .h5 {
    font-size: 13px;
}

h6, .h6 {
    font-size: 12px;
}

blockquote {
    border-left: 0;
    font-size: 15px;
    font-size: 1.5rem;
    /*font-style: italic;*/
    line-height: 1.6;
}

blockquote {
	quotes: "" "";
}

q {
	quotes: "“" "”" "‘" "’";
}

blockquote:before,
blockquote:after {
	content: "";
}
.text-white{
	color:#ffffff;		
}
/*--------------------------------------------------------------
 Forms
--------------------------------------------------------------*/

.form-control {
    border: 1px solid #ccc;
    border-radius: 5px;
    -webkit-box-shadow: none;
            box-shadow: none;
    -webkit-transition: border-color ease-in-out .15s;
         -o-transition: border-color ease-in-out .15s;
            transition: border-color ease-in-out .15s;
}

.form-control:focus {
    border-color: #111;
    outline: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
}

.btn {    
    -webkit-transition: 0.3s linear;
    transition: 0.3s linear;
    font-weight:400;    
}

.btn.btn-shadow{
	-webkit-box-shadow: 0 0 20px rgba(0, 0, 0, .16);
    box-shadow: 0 0 20px rgba(0, 0, 0, .16);
	}

.btn-lg {
    /*line-height: 1.42857143;
	/*padding:16px 25px 18px 20px;
	height:60px;*/
}

.btn-curved {
    border-radius: 50px;
}

.btn:focus, 
.btn:active:focus, 
.btn.active:focus, 
.btn.focus, 
.btn:active.focus, 
.btn.active.focus {
    outline: 0;
}
.btn-outline-white{
	background-color:transparent;
	border:2px solid #fff;
	color:#fff;
	}
.btn-outline-white:hover,
.btn-outline-white:focus{
    background-color:#013066!important;
    border-color: #013066;
    color:#fff;
}

/* Reset bootstrap default buttom color */
.btn-default{
	/*background-color:transparent;
	border:2px solid #fff;
	color:#fff;*/
	}
.btn-default:hover,
.btn-default:focus{
    /*background-color:#013066!important;
    border-color: #013066;
    color:#fff;*/
}

/* New buttom color */
.btn-theme {
    background-color: #013066;
    border-color: #013066;
    color: #fff;

}

.btn-theme:focus,
.btn-theme.focus {
    background-color: #013066;
    border-color: #013066;
    color: #fff;
}

.btn-theme:hover {
    color: #fff;
    background-color: #013066;
    border-color: #013066;
}

.btn-theme:active,
.btn-theme.active,
.open > .dropdown-toggle.btn-theme {
    color: #fff;
    background-color: #111;
    border-color: #111;
}

.btn-theme:active:hover,
.btn-theme.active:hover,
.open > .dropdown-toggle.btn-theme:hover,
.btn-theme:active:focus,
.btn-theme.active:focus,
.open > .dropdown-toggle.btn-theme:focus,
.btn-theme:active.focus,
.btn-theme.active.focus,
.open > .dropdown-toggle.btn-theme.focus {
    color: #fff;
    background-color: #333;
    border-color: #333;
}

.btn-theme:active,
.btn-theme.active,
.open > .dropdown-toggle.btn-theme {
    background-image: none;
}

.btn-theme.disabled:hover,
.btn-theme[disabled]:hover,
fieldset[disabled] .btn-theme:hover,
.btn-theme.disabled:focus,
.btn-theme[disabled]:focus,
fieldset[disabled] .btn-theme:focus,
.btn-theme.disabled.focus,
.btn-theme[disabled].focus,
fieldset[disabled] .btn-theme.focus {
    background-color: #777;
    border-color: #777;
}

.btn-theme .badge {
    color: #111;
    background-color: #fff;
}

/*--------------------------------------------------------------
 Links
--------------------------------------------------------------*/
a:focus {
    outline: 0;
}

/*--------------------------------------------------------------
 Branding And Navigation
--------------------------------------------------------------*/

/* Resetting default css applied to bootstrap navbar by default */
.navbar-theme.navbar {
    border: 0;
    border-radius: 0;
    margin-bottom: 0;
    padding: 12px 0;
    z-index: 2;
}

.navbar-brand > img {
    display: inline-block;
    height:40px;
    vertical-align: top;
}

.navbar-theme .navbar-nav > .open > a > .caret {
    transform: rotate(180deg);
}

.navbar-theme.affix {
    background-color:#ffffff;
    padding: 0;
    top: 0;
    width: 100%;
    z-index: 2;
    box-shadow:0 5px 10px 0px rgba(0, 0, 0, 0.10);
    -webkit-animation-name: slideInDown;
    -webkit-animation-duration: 0.3s;
    -webkit-animation-fill-mode: both;
    animation-name: slideInDown; /* Animation name is from animation.min.css */
    animation-duration: 0.3s;
    animation-fill-mode: both;
    -webkit-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}
    .navbar-theme.affix .navbar-nav > li > a {
        color:#013066;
    }
    .navbar-theme.affix .navbar-nav > li > a:hover {
        color:#013066;
    }
.navbar-theme.affix .navbar-nav > li > a.btn-outline-white {
    border-color:#013066;    
}
    .navbar-theme.affix .navbar-nav > li > a.btn-outline-white:hover {
        border-color:#484848;
        color:#fff;    
    }
    .navbar-theme.affix .navbar-nav > li > a.btn-danger {        
        color:#fff;    
    }

/* Introduced new navbar color  */
@media (max-width: 767px) {
    .navbar-theme {
        background-color: #ffffff;
    }
}

        .navbar-theme .navbar-brand {
            color: #fff;
        }

            .navbar-theme .navbar-brand:hover,
            .navbar-theme .navbar-brand:focus {
                color: #fff;
                background-color: transparent;
            }

        .navbar-theme .navbar-text {
            color: #f3f3f3;
        }

        .navbar-theme .navbar-nav > li > a.btn {
            padding: 10px 30px !important;
            margin-top: 6px;
        }

        .navbar-theme .navbar-nav > li > a {
            color: #fff;
            -webkit-transition: all 0.3s ease-in-out;
            transition: all 0.3s ease-in-out;
        }

            .navbar-theme .navbar-nav > li > a:hover,
            .navbar-theme .navbar-nav > li > a:focus {
                color: #fff;
                background-color: transparent;
            }

        .navbar-theme .navbar-nav > .active > a,
        .navbar-theme .navbar-nav > .active > a:hover,
        .navbar-theme .navbar-nav > .active > a:focus {
            color: #fff;
        }

            .navbar-theme .navbar-nav > .active > a::after,
            .navbar-theme .navbar-nav > .active > a:hover ::after,
            .navbar-theme .navbar-nav > .active > a:focus ::after {
                content: '';
                background-color: #013066;
                bottom: 10px;
                height: 2px;
                left: 30%;
                position: absolute;
                width: 40%;
            }

        .navbar-theme .navbar-nav > .disabled > a,
        .navbar-theme .navbar-nav > .disabled > a:hover,
        .navbar-theme .navbar-nav > .disabled > a:focus {
            color: #ccc;
            background-color: transparent;
        }

        .navbar-theme .dropdown-menu {
            background-color: #24c985;            
            border: 1px solid rgba(36, 201, 133, .23);
            -webkit-box-shadow: none;
            box-shadow: none;
            -webkit-animation-name: fadeIn;
            -webkit-animation-duration: 1s;
            -webkit-animation-fill-mode: both;
            animation-name: fadeIn; /* Animation name is from animation.min.css */
            animation-duration: 1s;
            animation-fill-mode: both;
            -webkit-transition: all .5s ease-in-out;
            transition: all .5s ease-in-out;
        }

        .navbar-theme.affix .dropdown-menu {
            background-color: #111;
            border: 1px solid #00000023;
            border: 1px solid rgba(0, 0, 0, .23);
        }

        .navbar-theme .navbar-nav > li > .dropdown-menu {
            margin-top: 12px;
        }

        .navbar-theme.affix .navbar-nav > li > .dropdown-menu {
            margin-top: -1px;
        }

        .navbar-theme .dropdown-menu > li > a {
            color: #fff;
        }

            .navbar-theme .dropdown-menu > li > a:hover,
            .navbar-theme.affix .dropdown-menu > li > a:hover {
                color: #333;
            }

        .navbar-theme .dropdown-menu > .active > a:hover,
        .navbar-theme.affix .dropdown-menu > .active > a:hover {
            color: #fff;
        }

        .navbar-theme .dropdown-menu > .active > a,
        .navbar-theme .dropdown-menu > .active > a:hover,
        .navbar-theme .dropdown-menu > .active > a:focus {
            color: #fff;
            background-color: #013066;
        }

        .navbar-theme .navbar-toggle {
            border-color: none;
        }

            .navbar-theme .navbar-toggle:hover,
            .navbar-theme .navbar-toggle:focus {
                background-color: none;
            }

            .navbar-theme .navbar-toggle .icon-bar {
                background-color: #013066;
            }

        .navbar-theme .navbar-collapse,
        .navbar-theme .navbar-form {
            border-color: #013066;
        }

        .navbar-theme .navbar-nav > .open > a,
        .navbar-theme .navbar-nav > .open > a:hover,
        .navbar-theme .navbar-nav > .open > a:focus {
            color: #e7e7e7;
            background-color: transparent;
        }

    @media (max-width: 767px) {

        .navbar-theme .navbar {
            padding: 0;
        }

        .navbar-theme .navbar-collapse {
            position: absolute;
            width: 100%;
            z-index: 2;
        }


        .navbar-theme .navbar-collapse {
            background-color: #013066;
        }

        .navbar-theme .navbar-nav > li > a:hover,
        .navbar-theme .navbar-nav > li > a:focus {
            color: #fff;
            background-color: #013066;
        }

        .navbar-theme .navbar-nav > .active > a,
        .navbar-theme .navbar-nav > .active > a:hover,
        .navbar-theme .navbar-nav > .active > a:focus {
            background-color: #fde674;
            color: #333;
        }

            .navbar-theme .navbar-nav > .active > a::after,
            .navbar-theme .navbar-nav > .active > a:hover ::after,
            .navbar-theme .navbar-nav > .active > a:focus ::after {
                content: none;
            }

        .navbar-theme .navbar-nav > .disabled > a,
        .navbar-theme .navbar-nav > .disabled > a:hover,
        .navbar-theme .navbar-nav > .disabled > a:focus {
            color: #ccc;
            background-color: transparent;
        }

        .navbar-theme .navbar-nav .open .dropdown-menu > li > a {
            color: #ccc;
        }

            .navbar-theme .navbar-nav .open .dropdown-menu > li > a:hover,
            .navbar-theme .navbar-nav .open .dropdown-menu > li > a:focus {
                color: #ccc;
                background-color: transparent;
            }

        .navbar-theme .navbar-nav .open .dropdown-menu > .active > a,
        .navbar-theme .navbar-nav .open .dropdown-menu > .active > a:hover,
        .navbar-theme .navbar-nav .open .dropdown-menu > .active > a:focus {
            color: #555;
            background-color: #e7e7e7;
        }

        .navbar-theme .navbar-nav .open .dropdown-menu > .disabled > a,
        .navbar-theme .navbar-nav .open .dropdown-menu > .disabled > a:hover,
        .navbar-theme .navbar-nav .open .dropdown-menu > .disabled > a:focus {
            color: #ccc;
            background-color: transparent;
        }
    }

    .navbar-theme .navbar-link {
        color: #777;
    }

        .navbar-theme .navbar-link:hover {
            color: #333;
        }

    .navbar-theme .btn-link {
        color: #777;
    }

        .navbar-theme .btn-link:hover,
        .navbar-theme .btn-link:focus {
            color: #333;
        }

        .navbar-theme .btn-link[disabled]:hover,
        fieldset[disabled] .navbar-theme .btn-link:hover,
        .navbar-theme .btn-link[disabled]:focus,
        fieldset[disabled] .navbar-theme .btn-link:focus {
            color: #ccc;
        }

    .navbar-brand {
        padding-top: 10px;
    }

    .navbar-btn {
        font-size: 18px;
        margin: 0px;
    }

    @media (min-width: 768px) {
        .navbar-nav > li > a {
            padding-top: 18px;
            padding-bottom: 18px;
        }
    }

    /*--------------------------------------------------------------
Media
--------------------------------------------------------------*/

    img,
    video {
        height: auto; /* Make sure images are scaled correctly. */
        max-width: 100%; /* Adhere to container's width */
    }

    /* Make sure Iframe fit the containers */
    embed,
    iframe,
    object {
        max-width: 100%;
    }

    /*--------------------------------------------------------------
Sections
--------------------------------------------------------------*/

    /* sections */
    .section {
        display: block;
        padding-bottom: 50px;
        position: relative;
    }

    .section-title {
        /*color: #32373c;*/
        font-size: 30px;
        font-size: 3rem;
        /*font-weight: 300;*/
        margin-bottom: 20px;
    }

    .section-divider {
        display: inline-block;
        margin-top: 20px;
        margin-bottom: 20px;
        width: 60px;
        height: 5px;
        background-color: #24c985;
        border-radius: 5px;
    }

        .section-divider.white {
            background-color: #fff;
        }

    .section-description {
        color: #484848;
        font-size: 16px;
        font-size: 1.6rem;
        font-weight: 300;
    }

    .bg {
        background-position: center;
        background-repeat: no-repeat;
        position: relative;
    }

    .overlay-black {
        background-color: rgba(0,0,0,0.5);
        bottom: 0;
        left: 0;
        position: absolute;
        right: 0;
        top: 0;
    }

    /* Hide Element and reserve its space prior to bootstrap hidden- classess */
    .not-visible {
        visibility: hidden !important;
    }

    /* Section Site Header */
    #masthead {
        display: block;
        position: relative;
        margin-bottom: 0px;
        background-position: bottom right;
        background-size: auto;
    }

        #masthead .section .btn + .btn {
            margin-left: 12px;
        }

    .linearBg {
        /* fallback */
        background-color: #1a82f7;
        background: -webkit-gradient(linear, left top, right top, from(#1a82f7), to(#2F2727));
        /* Safari 5.1, Chrome 10+ */
        background: -webkit-linear-gradient(left, #2378eb, #05ecfe);
        /* Firefox 3.6+ */
        background: -moz-linear-gradient(left, #2378eb, #05ecfe);
        /* IE 10 */
        background: -ms-linear-gradient(left, #2378eb, #05ecfe);
        /* Opera 11.10+ */
        background: -o-linear-gradient(left, #2378eb, #05ecfe);
    }

    /* Header Slider */
    #header-slider.section {
        margin-bottom: 0;
        padding-top: 0px;
        position: relative;
    }

    #header-slider {
        color: #fff;
    }

    .header-slider-content.slick-slide {
        height: auto;
    }

    .header-slider-dots {
        bottom: 38px;
        list-style: none;
        margin: 0;
        padding: 0;
        position: absolute;
        text-align: center;
        width: 100%;
        z-index: 1;
    }

        .header-slider-dots li {
            display: inline-block;
            margin-left: 10px;
            margin-right: 10px;
            padding: 2px;
        }

            .header-slider-dots li button {
                background-color: transparent;
                border-radius: 45px;
                border: 1px solid #013066;
                color: transparent;
                height: 10px;
                cursor: pointer;
                display: block;
                font-size: 0;
                line-height: 1;
                outline: none;
                letter-spacing: 0;
                width: 20px;
            }

        .header-slider-dots .slick-active button {
            background-color: #013066;
            border: 1px solid #013066;
        }

    .header-slider-content.slick-slide {
        padding: 0px 0;
    }

    .header-slider-content .container {
        position: relative;
    }

    .header-slider-content .section-title {
        color: #fff;
        font-size: 40px;
        font-size: 4rem;
    }

    .header-slider-content .section-description {
        color: #fdfdfd;
        font-weight: 400;
    }

    /* Static Header Image  */
    #header-image.section {
        margin-bottom: 0;
        /*position:absolute;
	width:100%;
	top:0;*/
    }

    #header-image {
        color: #fff;
        padding: 70px 0 170px 0px;
    }

        #header-image .section-title {
            color: #ffffff;
            font-size: 40px;
            font-size: 4rem;
            /*-webkit-text-shadow: 1px 1px 5px rgba(0, 0, 0, .16);
    text-shadow: 1px 1px 5px rgba(0, 0, 0, .16);   */
        }

        #header-image .section-description {
            font-weight: 400;
        }

    .sup-form {
        /*max-width:510px;
	margin-top:15px;*/
        display: block;
        position: relative;
    }

        .sup-form .countrypicker {
            background-color: transparent;
            height: 60px;
        }
        .sup-form .countrypicker .filter-option{
            margin-top:-3px;
            width:97%!important;
        }
        .sup-form .dropdown-toggle {
            width: 100%;
            font-weight: 400;
            background-color: #ffffff;
            border: 1px solid #ffffff;
            padding: 22px 20px 18px;
            height: 60px;
            color: #333;
            border-radius: 50px;
            -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, .16);
            box-shadow: 0 0 20px rgba(0, 0, 0, .16);
        }

        .sup-form .dropdown-menu > li > a {
            padding-top: 5px;
            padding-bottom: 5px;
        }

            .sup-form .dropdown-menu > li > a .text {
                padding-top: 5px;
                padding-bottom: 5px;
            }

        .sup-form .btn-theme {
            bottom: 4px;
            position: absolute;
            right: 4px;
            font-weight: 500;
            letter-spacing: 1px;
            padding: 18px 25px 14px;
            text-align: center;
            text-decoration: none;
            text-transform: uppercase;
            white-space: normal;
            /*width: auto;*/
            border-width: 0;
            color: #fff;
            cursor: pointer;
            height: 52px;
            z-index: 2;
        }

    @media (max-width: 600px) {
        .sup-form .btn-theme {
            bottom: 4px;
            position: relative;
            right: 0;
            border-width: 0;
            height: 52px;
            margin-top: 12px;
            width: 100%;
        }
    }
    /* Main */
    .site-content {
        /*margin-bottom:-240px;*/
    }

    /* Section About */
    #about .section-description {
        margin-bottom: 0;
    }

    #about .container {
        /*background-color:#ffffff;
	-webkit-box-shadow: 0 0 20px 0 rgba(62,28,131,0.08);
    box-shadow: 0 0 20px 0 rgba(62,28,131,0.08);*/
        padding-top: 20px;
        padding-bottom: 20px;
        border-radius: 13px;
    }

    /* Section Services */
    #services {
        /*margin-bottom:-240px;*/
        padding-bottom: 0px;
        padding-top: 0px;
    }

        #services .container {
            /*background-color:#f4f4f4;
	-webkit-box-shadow: 0 0 20px 0 rgba(62,28,131,0.08);
    box-shadow: 0 0 20px 0 rgba(62,28,131,0.08);
	padding-top:20px;
	padding-bottom:20px;
	border-radius:13px;	*/
        }

        #services .media {
            border-radius: 4px;
            margin-top: 0;
            /*padding: 45px 30px;*/
        }

        #services .media-heading {
            margin-bottom: 10px;
            font-weight: 400;
        }

        #services .media-left {
            padding-right: 30px;
        }

        #services .media-object {
            color: #013066;
            font-size: 40px;
        }

        #services li:first-child .media {
            /*background-color: #013066;
    color: #fbfbfb;*/
        }

            #services li:first-child .media .media-object,
            #services li:first-child .media .media-heading {
                /*color: #fff;*/
            }
    /* Section Mobile Apps */
    .mobileApps .container{
        background-color: #24c985;
        padding: 0px;
        border-radius:45px;
    }

    .mobileAppsImg {
        position: relative;
        margin-top: -78px;
        z-index: 1;
    }

    @media (min-width: 768px) {
        .mobileAppsImg {
            margin-bottom: -85px;
            z-index: 1;
        }
    }

    /* Section Setup */
    #setup {
        /*color: #bec1c4;
    padding:0px;*/
    }

        #setup.bg {
            background-position: left center !important;
            background-size: auto;
            background-repeat: no-repeat;
        }

        #setup .overlay-black {
            background-color: #000000ad;
        }

        #setup .cover-half {
            background-color: #111;
            bottom: 0;
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 50%;
        }

        #setup .container {
            /*-webkit-box-shadow: 0 0 20px 0 rgba(62,28,131,0.08);
    box-shadow: 0 0 20px 0 rgba(62,28,131,0.08);
	padding-top:20px;
	padding-bottom:20px;
	border-radius:13px;*/
        }

        #setup a.btn-link,
        #setup a.btn-link:hover,
        #setup a.btn-link:focus,
        #setup .block-title,
        #setup .section-title,
        #setup .section-description {
            color: #013066;
            text-decoration: none;
        }

        #setup ol.media-list {
            background-color: #111;
            padding: 70px 15px;
        }

        #setup .media {
            margin-top: 35px;
        }

            #setup .media:first-child {
                margin-top: 0;
            }

        #setup .media-heading {
            color: #efefef;
            margin-bottom: 18px;
            text-transform: capitalize;
        }

        #setup .media-left {
            padding-right: 30px;
        }

        #setup .media-object {
            color: #efefef;
            border: 1px solid #013066;
            font-size: 20px;
            font-weight: 700;
            line-height: 1;
            border-radius: 50px;
            padding: 10px 15px;
        }

    /* Section Prices */
    .amount-card {
        padding-bottom: 30px;
        padding-top: 30px;
        -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, .06);
        box-shadow: 0 0 20px rgba(0, 0, 0, .06);
    }

    .bit-amount {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 20px;
    }

    .amount {
        font-size: 20px;
        font-weight: 300;
        margin-bottom: 20px;
    }

    /* Section Number */
    #numbers.section {
        margin-bottom: 0;
    }

    #numbers {                
        /*padding: 80px 0;*/
        text-align: center;
    }

    .number {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 60px;
    }

        .number:last-child {
            margin-bottom: 0;
        }

        .number .fa {
            font-size: 38px;
        }

        .number .counter {
            color: #013066;
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 10px;
        }

    /* Section Reviews */
    #reviews {
        background-color: #ffffff;
        background-repeat:no-repeat;
        background-position:center;
        background-size:auto;
        padding: 70px 0 70px 0px;
        margin-bottom: -30px;
    }

    .reviewer-name {
        font-size: 12px;
        font-size: 1.2rem;
        font-weight: 800;
        text-transform: uppercase;
    }

    .reviewer-career {
        color: #013066;
        font-size: 13px;
        font-size: 1.3rem;
        text-transform: capitalize;
    }

    #reviews .star-rate {
        color: #f2a900;
        margin-bottom: 20px;
    }

    #reviews .review img {
        border-radius: 50%;
        height: 120px;
        margin: 0 auto 20px;
        width: 120px;
    }

    #reviews .btn {
        z-index: 3;
        position: relative;
    }

    #reviews-inner .slick-slide {
        height: auto;
        margin-bottom: 20px;
    }

    @media (min-width: 768px) {
        .reviews-inner {
            max-width: 768px;
            margin-left: auto;
            margin-right: auto;
        }
    }

    .reviews-slider-dots {
        list-style: none;
        margin: 0;
        padding: 0;
        text-align: center;
    }

        .reviews-slider-dots li {
            display: inline-block;
            margin-left: 10px;
            margin-right: 10px;
            padding: 2px;
        }

            .reviews-slider-dots li button {
                background-color: transparent;
                border-radius: 45px;
                border: 1px solid #fff;
                color: transparent;
                height: 10px;
                cursor: pointer;
                display: block;
                font-size: 0;
                line-height: 1;
                outline: none;
                letter-spacing: 0;
                width: 10px;
            }

        .reviews-slider-dots .slick-active button {
            background-color: #013066;
            border-color: #013066;
        }

    /* Section Features */
    #features.section {
        margin-bottom: 0;
    }

    #features ul {
        margin: 0;
        padding: 0;
    }

        #features ul li {
            line-height: 27px;
            list-style: none;
            margin-bottom: 0;
            padding-bottom: 35px;
            padding-top: 35px;
        }

            #features ul li .h4 {
                margin-bottom: 20px;
            }

            #features ul li .icon {
                border: 2px dashed #666666;
                border-radius: 50px;
                color: #013066;
                font-size: 30px;
                height: 100px;
                margin: 0 auto 25px;
                padding: 32px;
                width: 100px;
            }

    /* Section Register */
    #register {
        padding: 70px 0;
    }

        #register p.h1 {
            color: #fff;
            font-weight: 300;
            margin-bottom: 50px;
        }

        #register .btn {
            position: relative;
        }

    /* Section Philosophy */
    .article {
        /*background-color: #f5f5f5;*/
        padding: 48px;
    }

        .article p {
            color: #555;
            line-height: 1.786;
            margin-top: 30px;
            margin-bottom: 50px;
        }

        .article .location {
            color: #013066;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 2px;
            line-height: 3;
        }

    /* Section Contact */
    #contact.section {
        /* Overide default margin set on all sections */
        padding-bottom: 0;
    }

    #contact {
        /*color: #fff;
    font-size: 15px;
    font-size: 1.5rem;
    line-height: normal;*/
        padding: 70px 0;
        background-color: #eef0ff;
    }

        #contact a {
            color: #747984;
        }

            #contact a:hover,
            #contact a:focus,
            #contact .section-title,
            #contact .section-description {
                color: #013066;
                text-decoration: none;
            }

        #contact .block-title {
            color: #013066;
            margin: 0 0 30px;
            text-transform: capitalize;
        }

        #contact .social-networks {
            margin: 0;
            padding: 0;
        }

            #contact .social-networks li {
                list-style: none;
                display: inline-block;
                padding: 4px 5px;
            }

            #contact .social-networks a {
                display: -webkit-flex;
                display: -ms-flexbox;
                display: flex;
                -webkit-align-items: center;
                -ms-flex-align: center;
                align-items: center;
                -webkit-justify-content: center;
                -ms-flex-pack: center;
                justify-content: center;
                border: 1px solid #013066;
                border-radius: 100%;
                width: 4rem;
                height: 4rem;
            }

    .facebook-icon {
        color: #3b5998;
    }

    .twitter-icon {
        color: #1da1f2;
    }

    .linkedIn-icon {
        color: #0077B5;
    }

    .instagram-icon {
        color: #e13063;
    }

    /* Section Site Footer */
    .footer-title {
        /*color: #ffffff;*/
        font-weight: 400;
    }

    .footer-widget .widget-title {
        font-size: 22px;
    }

    .footer-widget ul {
        padding: 0px;
        margin: 0px;
    }

        .footer-widget ul li {
            list-style: none;
            margin-top: 5px;
            display: block;
        }

            .footer-widget ul li a {                
                color: #013066;
            }

                .footer-widget ul li a:hover {
                    color: #24c985;
                }

    .copyright {
        font-size: 14px;
        font-size: 1.4rem;
    }

    #btt-btn {
        background-color: #013066;
        bottom: 15px;
        color: #fff;
        display: none;
        font-size: 15px;
        font-size: 1.5rem;
        height: 50px;
        line-height: 2.5;
        outline: 0;
        padding: 5px;
        position: fixed;
        right: 40px;
        text-align: center;
        width: 50px;
    }

        #btt-btn .btt-icon {
            line-height: 2.5;
        }

    /* Others */
    .modal-title {
        position: static;
    }

    /* Overiding Bootstrap Defaut */
    .nav-pills > li {
        float: none;
        display: inline-block;
    }

        .nav-pills > li + li {
            margin-left: 0;
        }

        .nav-pills > li > a {
            background-color: #333;
            border-radius: 0;
            color: #fff;
        }

    .nav > li > a:hover,
    .nav > li > a:focus {
        text-decoration: none;
        background-color: #393939;
    }

    .nav-pills > li.active > a,
    .nav-pills > li.active > a:hover,
    .nav-pills > li.active > a:focus {
        color: #fff;
        background-color: #013066;
    }

    /*--------------------------------------------------------------
Media Query
--------------------------------------------------------------*/
    @media ( min-width: 768px ) {

        /*--------------------------------------------------------------
    Typography
    --------------------------------------------------------------*/
        h1, .h1 {
            font-size: 36px;
        }

        h2, .h2 {
            font-size: 36px;
        }

        h3, .h3 {
            font-size: 24px;
        }

        h4, .h4 {
            font-size: 18px;
        }

        h5, .h5 {
            font-size: 14px;
        }

        h6, .h6 {
            font-size: 12px;
        }

        blockquote {
            font-size: 18px;
            font-size: 3.2rem;
            line-height: 1.8;
        }

        /* Branding And Navigation */
        .top-menu-absolute .top-menu {
            position: absolute;
            top: 0;
            width: 100%;
            z-index: 2;
        }

        /*--------------------------------------------------------------
    Sections
    --------------------------------------------------------------*/
        .section {
            padding-top: 90px;
            padding-bottom: 90px;
        }

        .section-title {
            font-size: 40px;
            font-size: 4rem;
            margin-bottom: 10px;
        }

        .section-description {
            font-size: 22px;
            font-size: 2.2rem;
            margin-bottom: 30px;
            max-width: 768px;
        }

        /* Section Site Header */

        /*  Header Video */
        .header-video-content {
            padding: 180px 0;
        }

        #header-video .section-title {
            font-size: 55px;
            font-size: 5.5rem;
            max-width: 768px;
            margin-bottom: 10px;
        }

        #header-video .section-description {
            font-weight: 400;
            max-width: 768px;
            margin: 0 auto 40px;
        }

        /*  Header Slider */
        .header-slider-content.slick-slide {
            padding: 0px 0;
        }

        .header-slider-content .section-title {
            font-size: 55px;
            font-size: 5.5rem;
            max-width: 768px;
            margin-bottom: 30px;
        }

        .header-slider-content .section-description {
            font-weight: 400;
            max-width: 768px;
            margin: 0 auto 40px;
        }

        /* Static Header Image  */
        #header-image.section {
            margin-bottom: 0;
        }

        #header-image {
            color: #fff;
            padding: 110px 0 100px 0px;
        }

            #header-image .section-title {
                color: #013066;
                font-size: 55px;
                font-size: 5.8rem;
                /*max-width: 768px;*/
                margin-bottom: 40px;
            }

            #header-image .section-description {
                font-weight: 400;
                max-width: 768px;
                margin: 0 auto 40px;
            }

        
            /* Section About */
        #about .section-description {
            margin-left: auto;
            margin-right: auto;
        }

        /* Section Services */
        #services .media {
            /*padding: 45px 15px;*/
        }

        /* Section Setup */
        #setup {
            /*padding:15px 0;*/
        }

            #setup.bg {
                background-position: center;
            }

            #setup ol.media-list {
                padding: 0 30px 0 15px;
            }

        /* Section Prices */
        #prices .section-description {
            margin-left: auto;
            margin-right: auto;
        }

        /* Section Numbers */
        .number {
            margin-bottom: 0;
        }

        /* Section Reviews */
        #reviews {
            padding: 70px 0px 70px 0px;
        }

        #reviews-inner {
            max-width: 768px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Section Features */
        #features .section-description {
            margin-left: auto;
            margin-right: auto;
        }

        #features ul li {
            margin-bottom: 70px;
        }

        /* Section Register */
        #register {
            padding: 100px 0;
        }


        /* Section Contact */
        #contact {
            font-size: 1.8rem;
            line-height: 1.8;
            padding: 100px 0;
        }

            #contact .section-title {
                margin-bottom: 50px;
            }
    }

    @media ( min-width: 992px ) {
        /*--------------------------------------------------------------
    Sections
    --------------------------------------------------------------*/
        .bg {
            background-size: 100%;
        }
    }

    /*--------------------------------------------------------------
Clearings
--------------------------------------------------------------*/
    .site-header::before,
    .site-header::after,
    .section::before,
    .section::after {
        content: " ";
        display: block;
    }
/* Section Search */
.bg-search {
 margin:-150px 0 20px;
 background-color:#FFFFFF;
 border-radius:8px;
 position:relative;
 width:100%;
 /*z-index:500;*/
 padding:15px;
 box-shadow:0 2px 13px 0 rgba(0,0,0,.11);
 /*box-shadow: 0px 8px 24px 0 rgba(38,38,38,0.1);*/
}
    .bg-search.bg-info {
        background-color:#d9edf7;
    }
    .bg-search.transactionSummary {
        margin-top:0px;
    }
@media (min-width:768px) {
 .bg-search {
  padding:25px 25px
 }
 .bg-search.transactionSummary {
        margin-top:-150px;
    }
}
@media (min-width:992px) {
 .bg-search {
  padding:25px 25px
 }  
}



.bg-search .form-inline {
 display:block
}
@media (min-width:768px) {
 .bg-search .form-inline {
  display:-moz-flex;
  display:-ms-flex;
  display:-o-flex;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-pack:justify;
  -ms-flex-pack:justify;
  justify-content:space-between
 }
}
.bg-search .form-inline .form-group:last-child {
 width:100%
}
@media (min-width:768px) {
 .bg-search .form-inline .form-group:last-child {
  width:12%
 }
}

    /*.site-header::after,
.section::after {
    clear: both;
}
.site-header::after {
    background: url(../assets/images/triangle-bg.png) no-repeat;
    background-size: 100% 150px;
    bottom: 0;
    content: "";
    height: 150px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    width: 100%;
}*/
    /** Bootstrap Cookie Alert*/

.cookiealert {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    margin: 0 !important;
    z-index: 999;
    opacity: 0;
    border-radius: 0;
    transform: translateY(100%);
    transition: all 500ms ease-out;
    color: #ecf0f1;
    background: #212327;
}

.cookiealert.show {
    opacity: 1;
    transform: translateY(0%);
    transition-delay: 1000ms;
}

.cookiealert a {
    text-decoration: underline
}

.cookiealert .acceptcookies {
    margin-left: 10px;
    vertical-align: baseline;
}

    /*--------------------------------------------------------------
Utilities
--------------------------------------------------------------*/
    .bd-left {
        border-left: 1px solid #013066;
    }

    .arrow-left::after {
        top: 10%;
        content: "\f105";
        position: absolute;
        right: 0;
        font-family: 'FontAwesome';
        font-size: 46px;
        font-weight: bold;
        color: #cdcdcd;
    }

    .theme-text-color-light {
        color: #013066;
    }

    .theme-text-color-dark {
        color: #eec702;
    }

    .opaque {
        opacity: 0;
    }

    .padding-10 {
        padding: 10px;
    }

    .padding-20 {
        padding: 20px;
    }

    .padding-30 {
        padding: 30px;
    }

    .padding-40 {
        padding: 40px;
    }

    .padding-50 {
        padding: 50px;
    }

    .padding-60 {
        padding: 60px;
    }

    .margin-10 {
        margin: 10px;
    }

    .margin-20 {
        margin: 20px;
    }

    .margin-30 {
        margin: 30px;
    }

    .margin-40 {
        margin: 40px;
    }

    .margin-50 {
        margin: 50px;
    }

    .margin-60 {
        margin: 60px;
    }

    .padding-horiz-10 {
        padding-left: 10px;
        padding-right: 10px;
    }

    .padding-horiz-15 {
        padding-left: 15px;
        padding-right: 15px;
    }

    .padding-horiz-20 {
        padding-left: 20px;
        padding-right: 20px;
    }

    .padding-horiz-30 {
        padding-left: 30px;
        padding-right: 30px;
    }

    .padding-horiz-40 {
        padding-left: 40px;
        padding-right: 40px;
    }

    .padding-horiz-50 {
        padding-left: 50px;
        padding-right: 50px;
    }

    .padding-horiz-60 {
        padding-left: 60px;
        padding-right: 60px;
    }

    .padding-vert-5 {
        padding-top: 5px;
        padding-bottom: 5px;
    }

    .padding-vert-10 {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .padding-vert-15 {
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .padding-vert-20 {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .padding-vert-30 {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .padding-vert-40 {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .padding-vert-50 {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .padding-vert-60 {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .margin-horiz-10 {
        margin-left: 10px;
        margin-right: 10px;
    }

    .margin-horiz-15 {
        margin-left: 15px;
        margin-right: 15px;
    }

    .margin-horiz-20 {
        margin-left: 20px;
        margin-right: 20px;
    }

    .margin-horiz-30 {
        margin-left: 30px;
        margin-right: 30px;
    }

    .margin-horiz-40 {
        margin-left: 40px;
        margin-right: 40px;
    }

    .margin-horiz-50 {
        margin-left: 50px;
        margin-right: 50px;
    }

    .margin-horiz-60 {
        margin-left: 60px;
        margin-right: 60px;
    }

    .margin-vert-5 {
        margin-top: 5px;
        margin-bottom: 5px;
    }

    .margin-vert-10 {
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .margin-vert-15 {
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .margin-vert-20 {
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .margin-vert-30 {
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .margin-vert-40 {
        margin-top: 40px;
        margin-bottom: 40px;
    }

    .margin-vert-50 {
        margin-top: 50px;
        margin-bottom: 50px;
    }

    .margin-vert-60 {
        margin-top: 60px;
        margin-bottom: 60px;
    }

    .no-padding {
        padding: 0 0 4px !important;
    }

    .no-margin {
        margin: 0 !important;
    }

    .margin-top-0 {
        margin-top: 0;
    }

    .margin-top-5 {
        margin-top: 5px;
    }

    .margin-top-10 {
        margin-top: 10px;
    }

    .margin-top-15 {
        margin-top: 15px;
    }

    .margin-top-20 {
        margin-top: 20px;
    }

    .margin-top-30 {
        margin-top: 30px;
    }

    .margin-top-40 {
        margin-top: 40px;
    }

    .margin-top-50 {
        margin-top: 50px;
    }

    .margin-top-60 {
        margin-top: 60px;
    }

    .margin-bottom-0 {
        margin-bottom: 0;
    }

    .margin-bottom-5 {
        margin-bottom: 5px;
    }

    .margin-bottom-10 {
        margin-bottom: 10px;
    }

    .margin-bottom-15 {
        margin-bottom: 15px;
    }

    .margin-bottom-20 {
        margin-bottom: 20px;
    }

    .margin-bottom-30 {
        margin-bottom: 30px;
    }

    .margin-bottom-40 {
        margin-bottom: 40px;
    }

    .margin-bottom-50 {
        margin-bottom: 50px;
    }

    .margin-bottom-60 {
        margin-bottom: 60px;
    }

    .padding-top-0 {
        padding-top: 0;
    }

    .padding-top-5 {
        padding-top: 5px;
    }

    .padding-top-10 {
        padding-top: 10px;
    }

    .padding-top-15 {
        padding-top: 15px;
    }

    .padding-top-20 {
        padding-top: 20px;
    }

    .padding-top-30 {
        padding-top: 30px;
    }

    .padding-top-40 {
        padding-top: 40px;
    }

    .padding-top-50 {
        padding-top: 50px;
    }

    .padding-top-60 {
        padding-top: 60px;
    }

    .padding-bottom-0 {
        padding-bottom: 0;
    }

    .padding-bottom-5 {
        padding-bottom: 5px;
    }

    .padding-bottom-10 {
        padding-bottom: 10px;
    }

    .padding-bottom-15 {
        padding-bottom: 15px;
    }

    .padding-bottom-20 {
        padding-bottom: 20px;
    }

    .padding-bottom-30 {
        padding-bottom: 30px;
    }

    .padding-bottom-40 {
        padding-bottom: 40px;
    }

    .padding-bottom-50 {
        padding-bottom: 50px;
    }

    .padding-bottom-60 {
        padding-bottom: 60px;
    }