@charset "UTF-8";

/*
--------------------------
	Css Indexing
--------------------------
** @typography
--------------------------
** Reset css
--------------------------
** Global css
--------------------------
** Helper css
-------------------------- 
** Preloader css
-------------------------- 
** Header area css
-------------------------- 
** Hero area css
-------------------------- 
** Demo section css
-------------------------- 
** Feature section css
-------------------------- 
** footer css
-------------------------- 
*/


/*-----------------
    @Typography
-----------------*/

@import url("https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700");

/*---------------------------
** Reset css
---------------------------*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    vertical-align: baseline;
}

HTML5 display-role reset for older browsers article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}


/*---------------------------
** Global css
---------------------------*/

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #888888;
}

.back-to-top {
    bottom: 30px;
    right: 0px;
    position: fixed;
    color: #fff;
    height: 40px;
    width: 40px;
    line-height: 40px;
    background-color: #58BED3;
    border: 1px solid #58BED3;
    text-align: center;
    border-radius: 3px;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    -webkit-transition: .5s;
    transition: .5s;
}

.back-to-top:hover {
    background-color: #fff;
    color: #58BED3;
}

.back-to-top.show {
    opacity: 1;
    right: 30px;
}

button.cancel-preloader {
    border: 1px solid #58BED3;
    background-color: #58BED3;
    color: #fff;
    padding: 20px 35px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    position: fixed;
    top: 20px;
    right: 20px;
    font-weight: 600;
    cursor: pointer;
    outline: 0;
    transition: .5s;
}

button.cancel-preloader:hover {
    color: #58BED3;
    background-color: #fff;
    border: 1px solid #58BED3;
}


/*---------------------------
** Helper Css
---------------------------*/

.height-100 {
    height: 100%;
}

.no-margin {
    margin: 0px;
}

.no-padding {
    padding: 0px;
}

.base-bg {
    background-color: #1f415f !important;
}


/*---------------------------
** Preloader Css
---------------------------*/

.loader-container {
    position: fixed;
    background-color: #fff;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1500;
    opacity: 1;
    visibility: visible;
    -webkit-transition: .5s;
    transition: .5s;
}

.loader {
    display: inline-block;
    width: 60px;
    height: 60px;
    position: fixed;
    top: 50%;
    left: 50%;
    margin-top: -30px;
    margin-left: -30px;
    border: 4px solid #58BED3;
    -webkit-animation: loader 2s infinite ease;
    animation: loader 2s infinite ease;
}

.loader-inner {
    vertical-align: top;
    display: inline-block;
    width: 100%;
    background-color: #58BED3;
    -webkit-animation: loader-inner 2s infinite ease-in;
    animation: loader-inner 2s infinite ease-in;
}

.loader-fadeout {
    opacity: 0;
    visibility: hidden;
}

@-webkit-keyframes loader {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    25% {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }
    50% {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }
    75% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes loader {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    25% {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }
    50% {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }
    75% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes loader-inner {
    0% {
        height: 0%;
    }
    25% {
        height: 0%;
    }
    50% {
        height: 100%;
    }
    75% {
        height: 100%;
    }
    100% {
        height: 0%;
    }
}

@keyframes loader-inner {
    0% {
        height: 0%;
    }
    25% {
        height: 0%;
    }
    50% {
        height: 100%;
    }
    75% {
        height: 100%;
    }
    100% {
        height: 0%;
    }
}


/*---------------------------
** Header Area Css
---------------------------*/

.header-absolute {
    position: absolute;
    width: 100%;
    z-index: 1000;
}

.logo-wrapper {
    display: table;
    height: 100%;
}

.logo-wrapper a {
    display: table-cell;
    vertical-align: middle;
}

.logo-wrapper img {
    max-width: 230px;
    max-height: 60px;
}

#mobileMenu {
    display: none;
}

.header-navbar {
    padding: 34px 0px 33px 0px;
    border-bottom: 1px solid #94a7b2;
}

a.boxed-btn {
    padding: 20px;
    display: inline-block;
    color: #fff;
    background-color: #58BED3;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
    border: 1px solid #58BED3;
    text-decoration: none;
    border-radius: 50px;
    -webkit-transition: .5s;
    transition: .5s;
}

a.boxed-btn:hover {
    color: #58BED3;
    background-color: #fff;
    border: 1px solid #58BED3;
}


/*---------------------------
** Hero Area Css
---------------------------*/

.hero-area {
    position: relative;
}

.hero-area-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(135deg, rgba(10, 48, 65, 1) 0%, rgba(10, 48, 65, 0.6) 99%, rgba(10, 48, 65, 0.6) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#0a3041', endColorstr='#990a3041', GradientType=1);
}

.hero-bg {
    background-image: url('../img/hero_bg.jpg');
    background-size: cover;
}

.hero-txt {
    padding: 283px 0px 160px 0px;
    color: #fff;
    position: relative;
    z-index: 100;
    text-align: center;
}

.hero-txt h4 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 19px;
    text-transform: capitalize;
}

.hero-txt h1 {
    font-size: 50px;
    font-weight: 600;
    line-height: 1.3;
}

a.hero-boxed-btn {
    display: inline-block;
    width: 200px;
    height: 60px;
    line-height: 60px;
    color: #fff;
    text-align: center;
    border: 2px solid #fff;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    margin-top: 45px;
    position: relative;
    background-color: transparent;
    -webkit-transition: .5s;
    transition: .5s;
    letter-spacing: 1px;
}

a.hero-boxed-btn:hover {
    color: #fff;
    background-color: #58BED3;
}

a.hero-boxed-btn::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    bottom: 100%;
    right: 100%;
    border-top: 2px solid #0a3041;
    border-left: 2px solid #0a3041;
    visibility: hidden;
    -webkit-transition: .5s;
    transition: .5s;
}

a.hero-boxed-btn::after {
    content: "";
    position: absolute;
    bottom: -2px;
    right: -2px;
    top: 100%;
    left: 100%;
    border-right: 2px solid #0a3041;
    border-bottom: 2px solid #0a3041;
    visibility: hidden;
    -webkit-transition: .5s;
    transition: .5s;
}

a.hero-boxed-btn:hover::before {
    visibility: visible;
    bottom: 0px;
    right: 0px;
}

a.hero-boxed-btn:hover::after {
    visibility: visible;
    top: -2px;
    left: -2px;
}

.hero-area span#typed {
    font-size: 28px;
    font-weight: 500;
}

.hero-area span.typed-cursor {
    font-size: 28px;
    font-weight: 500;
}


/* Demo Section CSS */

.home-demo {
    padding: 111px 0px 113px 0px;
}

.home-demo div[class="col-*"] {
    margin-bottom: 30px;
}

.home-demo div[class*='col-'] {
    margin: 15px 0px;
}

.home-demo div[class*='col-']:nth-last-child(1) {
    margin-bottom: 0px;
}

.home-demo div[class*='col-']:nth-last-child(2) {
    margin-bottom: 0px;
}

.home_bg_1 {
    background-image: url('../img/home_1.jpg');
}

.home_bg_2 {
    background-image: url('../img/home_2.jpg');
}

.home_bg_3 {
    background-image: url('../img/home_3.jpg');
}

.home_bg_5 {
    background-image: url('../img/home_5.jpg');
}

.home_bg_6 {
    background-image: url('../img/home_6.jpg');
}

.home_bg_7 {
    background-image: url('../img/home_7.jpg');
}

.home_bg_8 {
    background-image: url('../img/home_8.jpg');
}

.home_bg_9 {
    background-image: url('../img/home_9.jpg');
}

.home_bg_4 {
    background-image: url('../img/home_4.jpg');
}

.home_bg_13 {
    background-image: url('../img/home_13.jpg');
}

.home_bg_14 {
    background-image: url('../img/home_14.jpg');
}

.home_bg_15 {
    background-image: url('../img/home_15.jpg');
}

.home_coming_bg {
    background-image: url('../img/home_coming_soon.jpg');
    background-size: cover;
    background-position: center;
}

.single-demo {
    position: relative;
    border-radius: 8px;
    height: 450px;
    -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.10);
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.10);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 0px 0%;
    transition: 3s;
}

.single-demo:hover {
    background-position: 0px 100%;
    -webkit-box-shadow: 0 2px 15px 0 rgba(0, 0, 0, 0.10);
    box-shadow: 0 2px 15px 0 rgba(0, 0, 0, 0.10);    
}

.about_bg {
    background-image: url('../img/about.jpg');
}

.services_bg {
    background-image: url('../img/services.jpg');
}

.service_details_bg {
    background-image: url('../img/service_details.jpg');
}

.blogs_bg {
    background-image: url('../img/blogs.jpg');
}

.blogs_grid_bg {
    background-image: url('../img/blog_grid.jpg');
}

.gallery_grid_bg {
    background-image: url('../img/gallery_grid.jpg');
}

.gallery_masonry_bg {
    background-image: url('../img/gallery_masonry.jpg');
}

.blogs_grid_sidebar_bg {
    background-image: url('../img/blog_grid_sidebar.jpg');
}

.blog_details_bg {
    background-image: url('../img/blog_details.jpg');
}

.contact_bg {
    background-image: url('../img/contact.jpg');
}

.pricing_bg {
    background-image: url('../img/pricing.jpg');
}

.error_bg {
    background-image: url('../img/404.jpg');
}

.testimonial_bg {
    background-image: url('../img/testimonial.jpg');
}

.coming_bg {
    background-image: url('../img/coming_soon.jpg');
}

.faq_bg {
    background-image: url('../img/faq.jpg');
}

.quote_bg {
    background-image: url('../img/quote.jpg');
}

.inner-demo .single-demo {
    margin-top: 50px;
    height: 400px;
    background-size: cover;
    background-position: 0% 0%;
    transition: 2s;
}

.inner-demo .single-demo:hover {
    background-position: 0% 100%;
}

.inner-demo .single-demo.extra-mt {
    margin-top: 55px;
}

.single-demo img {
    border-radius: 8px;
    width: 100%;
}

a.view-btn {
    background-color: #58BED3;
    color: #fff;
    text-decoration: none;
    padding: 14px 32px;
    border: 1px solid #58BED3;
    font-size: 16px;
    border-radius: 5px;
    opacity: 0;
    -webkit-transition: .5s;
    transition: .5s;
}

.inner-demo a.view-btn {
    padding: 10px 20px;
}

a.view-btn:hover {
    border: 1px solid #58BED3;
    background-color: #fff;
    color: #58BED3;
}

.single-demo:hover .single-demo-overlay {
    background-color: rgba(0, 0, 0, 0.7);
}

.single-demo:hover a.view-btn {
    opacity: 1;
}

.outer {
    display: table;
    height: 100%;
    width: 100%;
    text-align: center;
}

.inner {
    display: table-cell;
    vertical-align: middle;
}

.inner-demo {
    background-color: #f7f7f7;
    padding: 110px 0px 95px 0px;
}

h2.section-title {
    color: #38383c;
    font-weight: 700;
    font-size: 42px;
    margin-bottom: 50px;
    text-align: center;
}

h2.section-title.extra-margin {
    margin-bottom: 60px;
}

.home-demo h3,
.inner-demo h3 {
    font-size: 20px;
    color: #38383c;
    text-align: center;
    font-weight: 600;
}

.home-demo h3 {
    margin-top: 24px;
}

.inner-demo h3 {
    margin-top: 23px;
}

.home-demo h3.version-title {
    font-size: 24px;
}


/* Feature section css */

.feature-section {
    padding: 110px 0px 120px 0px;
}

.single-feature {
    text-align: center;
    border-radius: 8px;
    padding: 60px 0px;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    background-color: #fff;
    -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.10);
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.10);
    -webkit-transition: .5s;
    transition: .5s;
}

.single-feature:hover {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
}

.single-feature .icon-wrapper {
    font-size: 60px;
    margin-bottom: 20px;
    color: #58BED3;
}

.single-feature h4 {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 20px;
}

.single-feature {
    color: #38383c;
    margin-bottom: 30px;
}


/* footer css */

footer {
    background-color: #282828;
    padding: 28px 0px 32px 0px;
}

footer p {
    color: #fff;
}