@import url("https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i,800,800i");
@import url("https://fonts.googleapis.com/css?family=PT+Sans:400,400i,700,700i");
body {
    padding: 0;
    font-family: "Open Sans", sans-serif;
    margin: 0;
    font-size: 15px;
}

a {
    display: block;
    outline: 0 !important;
    text-decoration: none !important;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    color: #000000;
    margin-bottom: 15px;
    font-family: "PT Sans", sans-serif;
}

.h1:last-child,
.h2:last-child,
.h3:last-child,
.h4:last-child,
.h5:last-child,
.h6:last-child,
h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
    margin-bottom: 0;
}

p {
    line-height: 1.8;
    margin-bottom: 15px;
    color: #828893;
}

p:last-child {
    margin-bottom: 0;
}

img {
    max-width: 100%;
}

.mt-30 {
    margin-top: 30px;
}

.ptb-70 {
    padding-top: 70px;
    padding-bottom: 70px;
}

.ptb-100 {
    padding-top: 100px;
    padding-bottom: 100px;
}

.d-table {
    width: 100%;
    height: 100%;
}

.d-table-cell {
    vertical-align: middle;
}


/*btn btn-primary*/

.btn {
    font-weight: 600;
    font-size: 15px;
    color: #ffffff;
    -webkit-box-shadow: 0 8px 6px -6px rgba(50, 51, 51, 0.4);
    box-shadow: 0 8px 6px -6px rgba(50, 51, 51, 0.4);
    border: none;
    padding: 15px 30px;
    border-radius: 0;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.btn-primary {
    color: #ffffff;
    background: #000000;
    position: relative;
    z-index: 1;
}

.btn-primary::before,
.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    width: 51%;
    background: #009ee3;
    height: 100%;
    z-index: -1;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.btn-primary::before {
    left: 0;
}

.btn-primary::after {
    right: 0;
}

.btn-primary:hover::before,
.btn-primary:hover::after,
.btn-primary:focus::before,
.btn-primary:focus::after {
    width: 0;
}

.btn-primary.focus,
.btn-primary:focus {
    -webkit-box-shadow: unset;
    box-shadow: unset;
    color: #ffffff;
}

.btn-primary:hover,
.btn-primary:focus {
    background: #000000;
    color: #ffffff;
    -webkit-box-shadow: unset;
    box-shadow: unset;
}

.btn-primary:not(:disabled):not(.disabled).active:focus,
.btn-primary:not(:disabled):not(.disabled):active:focus {
    -webkit-box-shadow: unset;
    box-shadow: unset;
}

.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active {
    background: #000000;
    color: #ffffff;
}

.btn-primary.disabled,
.btn-primary:disabled {
    opacity: 1;
    background: #000000;
}


/*form-control*/

.form-group {
    margin-bottom: 20px;
}

.form-control {
    height: 60px;
    padding: 15px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid #eeeeee;
    border-radius: 0;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.form-control:hover,
.form-control:focus {
    -webkit-box-shadow: unset;
    box-shadow: unset;
    border-color: #009ee3;
}

textarea.form-control {
    min-height: 120px;
}


/*section-title*/

.section-title {
    text-align: center;
    margin-bottom: 60px;
    margin-top: -5px;
    position: relative;
    z-index: 1;
}

.section-title span {
    text-transform: uppercase;
    display: block;
    letter-spacing: 1px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #009ee3;
}

.section-title h2 {
    margin: 0;
    font-size: 35px;
    font-weight: 700;
}

.section-title h2 b {
    font-weight: 600 !important;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(80%, rgba(0, 0, 0, 0)), color-stop(80%, #009ee3));
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 80%, #009ee3 80%);
    background-size: 90px 1.1em !important;
}

.section-title p {
    max-width: 665px;
    margin: 18px auto 0;
}


/*================================================
Preloader CSS
=================================================*/

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    overflow: hidden;
    background: #000000;
}

.preloader .loader {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 110px;
    height: 110px;
    margin: -80px 0 0 -75px;
    border-radius: 50%;
    border: 7px solid transparent;
    border-top-color: #009ee3;
    -webkit-animation: spin 1.7s linear infinite;
    animation: spin 1.7s linear infinite;
    z-index: 11;
}

.preloader .loader::before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 7px solid transparent;
    border-top-color: #ffffff;
    -webkit-animation: spin-reverse .6s linear infinite;
    animation: spin-reverse .6s linear infinite;
}

.preloader .loader::after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 7px solid transparent;
    border-top-color: #009ee3;
    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes spin-reverse {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }
}

@keyframes spin-reverse {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }
}


/*================================================
Navbar CSS
=================================================*/

.navbar {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 9;
    padding: 25px 0 0;
    height: auto;
}

.navbar.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 25px 0;
    z-index: 999;
    -webkit-box-shadow: 0px 0px 18px 1px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 18px 1px rgba(0, 0, 0, 0.1);
    background-color: #ffffff !important;
    -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
    animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
}

.bg-light {
    background-color: transparent !important;
}

.navbar-brand img:last-child {
    display: none;
}

.navbar-light .navbar-nav .nav-item {
    padding-right: 13px;
    padding-left: 13px;
}

.navbar-light .navbar-nav .nav-item .nav-link {
    color: #ffffff;
    padding: 0;
    position: relative;
    font-size: 15px;
    font-weight: 600;
}

.navbar-light .navbar-nav .nav-item .nav-link::before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: #009ee3;
    left: 0;
    right: 0;
    margin: 0 auto;
    opacity: 0;
    visibility: hidden;
    -webkit-clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    bottom: 0;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.navbar-light .navbar-nav .nav-item .nav-link:hover,
.navbar-light .navbar-nav .nav-item .nav-link:focus,
.navbar-light .navbar-nav .nav-item .nav-link.active {
    color: #009ee3;
}

.navbar-light .navbar-nav .nav-item .nav-link:hover::before,
.navbar-light .navbar-nav .nav-item .nav-link:focus::before,
.navbar-light .navbar-nav .nav-item .nav-link.active::before {
    bottom: -13px;
    opacity: 1;
    visibility: visible;
}

.navbar-light .navbar-nav .nav-item:last-child {
    padding-right: 0;
}

.navbar-light .navbar-nav .nav-item:first-child {
    padding-left: 0;
}

.navbar-light .navbar-nav .nav-item.active .nav-link {
    color: #009ee3;
}

.navbar-light .navbar-nav .nav-item.active .nav-link::before {
    bottom: -13px;
    opacity: 1;
    visibility: visible;
}

.navbar-light.is-sticky .navbar-brand img:last-child {
    display: block;
}

.navbar-light.is-sticky .navbar-brand img:first-child {
    display: none;
}

.navbar-light.is-sticky .navbar-nav .nav-item .nav-link {
    color: #000000;
}

.navbar-light.is-sticky .navbar-nav .nav-item .nav-link::before {
    bottom: auto;
    top: 0;
}

.navbar-light.is-sticky .navbar-nav .nav-item .nav-link:hover,
.navbar-light.is-sticky .navbar-nav .nav-item .nav-link:focus,
.navbar-light.is-sticky .navbar-nav .nav-item .nav-link.active {
    color: #009ee3;
}

.navbar-light.is-sticky .navbar-nav .nav-item .nav-link:hover::before,
.navbar-light.is-sticky .navbar-nav .nav-item .nav-link:focus::before,
.navbar-light.is-sticky .navbar-nav .nav-item .nav-link.active::before {
    bottom: auto;
    top: -10px;
}

.navbar-light.is-sticky .navbar-nav .nav-item.active .nav-link {
    color: #009ee3;
}

.navbar-light.is-sticky .navbar-nav .nav-item.active .nav-link::before {
    bottom: auto;
    top: -10px;
}


/*================================================
Main Banner CSS
=================================================*/

.main-banner {
    height: 100vh;
    position: relative;
    z-index: 1;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.main-banner::before {
    position: absolute;
    left: 0;
    top: 0;
    background: rgba(13, 15, 20, 0.50);
    width: 100%;
    height: 100%;
    z-index: -1;
    content: '';
}

.video-banner {
    overflow: hidden;
}

.video-banner .video-background {
    position: absolute;
    left: 0;
    top: 0;
    width: auto;
    height: auto;
    min-height: 100%;
    min-width: 100%;
    z-index: -2;
}

.ripple-effect.main-banner::before {
    z-index: 1;
}

.ripple-effect.main-banner .main-banner-content {
    position: relative;
    z-index: 2;
}

.item-bg1 {
    background-image: url(../img/banner.jpg);
}

.item-bg2 {
    background-image: url(../img/main-banner2.jpg);
}

.item-bg3 {
    background-image: url(../img/main-banner3.jpg);
}

.item-bg4 {
    background-image: url(../img/main-banner4.jpg);
}

.item-bg5 {
    background-image: url(../img/main-banner5.jpg);
}

.item-bg6 {
    background-image: url(../img/main-banner6.jpg);
}

.item-bg7 {
    background-image: url(../img/main-banner7.jpg);
}

.item-bg8 {
    background-image: url(../img/main-banner8.jpg);
}

.main-banner-content {
    max-width: 100%;
    position: relative;
    z-index: 3;
    margin: 60px 0 0;
}

.main-banner-content.text-center {
    margin: 60px auto 0;
}

.main-banner-content.text-center p {
    margin-left: auto;
    margin-right: auto;
}

.main-banner-content span {
    color: #ffffff;
    font-size: 16px;
    text-transform: uppercase;
    display: block;
    letter-spacing: 2px;
    opacity: .88;
}

.main-banner-content h1 {
    color: #ffffff;
    margin: 18px 0 28px;
    font-size: 55px;
    font-family: "Open Sans", sans-serif;
    font-weight: 700;
}

.main-banner-content h1 b {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(80%, rgba(0, 0, 0, 0)), color-stop(80%, #ffffff));
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 80%, #ffffff 80%);
    background-size: 100px 1.2em !important;
    font-weight: 700;
    font-family: "PT Sans", sans-serif;
}

.main-banner-content h1 .typewrite {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(80%, rgba(0, 0, 0, 0)), color-stop(80%, #009ee3));
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 80%, #009ee3 80%);
    background-size: 100px 1em !important;
    font-weight: 700;
    font-family: "PT Sans", sans-serif;
    display: inline-block;
}

.main-banner-content h1 .typewrite span {
    text-transform: capitalize;
    margin: 0;
    opacity: 1;
    display: inline;
    letter-spacing: 0;
    font-size: 55px;
}

.main-banner-content p {
    color: #ffffff;
    margin-bottom: 30px;
    max-width: 580px;
    opacity: .88;
}

.main-banner-content .btn-box span {
    display: inline-block;
    letter-spacing: 0;
    margin: 0 15px;
    font-weight: 700;
    font-size: 14px;
}

.main-banner-content .btn-box .video-btn {
    color: #dddddd;
    display: inline-block;
    font-weight: 600;
}

.main-banner-content .btn-box .video-btn i {
    width: 50px;
    display: inline-block;
    height: 50px;
    line-height: 52px;
    text-align: center;
    background-color: #ffffff;
    border-radius: 50%;
    margin-right: 5px;
    z-index: 1;
    color: #009ee3;
    position: relative;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.main-banner-content .btn-box .video-btn i::after {
    z-index: -1;
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    -webkit-animation: ripple 1.6s ease-out infinite;
    animation: ripple 1.6s ease-out infinite;
    opacity: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
}

.main-banner-content .btn-box .video-btn:hover,
.main-banner-content .btn-box .video-btn:focus {
    color: #ffffff;
}

.main-banner-content .btn-box .video-btn:hover i,
.main-banner-content .btn-box .video-btn:focus i {
    background-color: #009ee3;
    color: #ffffff;
}

.main-banner.main-banner-with-form {
    height: 840px;
}

.main-banner.main-banner-with-form .main-banner-content {
    margin-top: 0;
    max-width: 100%;
}

.banner-form {
    background: #ffffff;
    -webkit-box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
    padding: 40px 25px;
    position: relative;
}

.banner-form::before {
    content: '';
    position: absolute;
    z-index: -1;
    background: #ffffff;
    width: 96%;
    opacity: .62;
    height: 50%;
    bottom: -10px;
    left: 0;
    right: 0;
    margin: auto;
    border-radius: 3px;
}

.banner-form form .form-control {
    border: 1px solid #eeeeee;
    font-size: 14px;
    border-radius: 2px;
}

.banner-form form label {
    color: #828893;
    margin-bottom: 8px;
    font-size: 15px;
}

.banner-form form select.form-control {
    height: 50px;
    cursor: pointer;
}

.banner-form form .btn {
    margin-top: 10px;
}

.banner-video {
    position: relative;
    text-align: center;
    border: 5px solid #ffffff;
    -webkit-box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.banner-video::before {
    background: -webkit-gradient(linear, left top, left bottom, from(#0975bc), color-stop(#0d5b93), color-stop(#0d426d), color-stop(#092b48), to(#041527));
    background: linear-gradient(to bottom, #0975bc, #0d5b93, #0d426d, #092b48, #041527);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
    content: '';
    opacity: .70;
    z-index: 1;
}

.banner-video img {
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.banner-video .video-btn {
    position: absolute;
    left: 0;
    top: 50%;
    z-index: 2;
    right: 0;
    margin: 0 auto;
    width: 70px;
    height: 70px;
    line-height: 72px;
    border-radius: 50%;
    margin-top: -30px;
    color: #ffffff;
    font-size: 20px;
    background-color: #009ee3;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.banner-video .video-btn::before {
    z-index: -1;
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 70px;
    height: 70px;
    -webkit-animation: ripple 1.6s ease-out infinite;
    animation: ripple 1.6s ease-out infinite;
    opacity: 0;
    border-radius: 50%;
    background: rgba(148, 107, 255, 0.5);
}

.banner-video .video-btn:hover,
.banner-video .video-btn:focus {
    color: #009ee3;
    background-color: #ffffff;
}

.banner-video:hover img,
.banner-video:focus img {
    -webkit-transform: scale(1.4);
    transform: scale(1.4);
}

.text-animation-home .main-banner-content h1 {
    margin-bottom: 15px;
}

#particles-js {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

#particles-js-bubble {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

#particles-js-star {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

#particles-js-big-bubble {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

#particles-js-small-bubble {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.slideshow-banner .slideshow {
    z-index: -2;
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.slideshow-banner .slideshow li span {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    z-index: -2;
    -webkit-animation: imageAnimation 24s linear infinite 0s;
    animation: imageAnimation 24s linear infinite 0s;
}

.slideshow-banner .slideshow li:nth-child(1) span {
    background-image: url(../img/main-banner8.jpg);
}

.slideshow-banner .slideshow li:nth-child(2) span {
    background-image: url(../img/main-banner2.jpg);
    -webkit-animation-delay: 6s;
    animation-delay: 6s;
}

.slideshow-banner .slideshow li:nth-child(3) span {
    background-image: url(../img/main-banner5.jpg);
    -webkit-animation-delay: 12s;
    animation-delay: 12s;
}

.slideshow-banner .slideshow li:nth-child(4) span {
    background-image: url(../img/main-banner7.jpg);
    -webkit-animation-delay: 18s;
    animation-delay: 18s;
}

.clip-path-banner {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 90%, 70% 100%, 0 90%);
    clip-path: polygon(0 0, 100% 0, 100% 90%, 70% 100%, 0 90%);
}

.clip-path-banner .main-banner-content {
    margin-top: 0;
}

.clip-path-banner-two {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 90%, 30% 100%, 0 90%);
    clip-path: polygon(0 0, 100% 0, 100% 90%, 30% 100%, 0 90%);
}

.clip-path-banner-two .main-banner-content {
    margin-top: 0;
}

.creative-banner .creative-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.creative-banner .main-banner-content {
    margin-top: 0;
}

.gradient-banner.main-banner::before {
    background: -webkit-gradient(linear, right top, left bottom, from(#292e49), color-stop(#303d55), color-stop(#394b61), color-stop(#455a6b), to(#536976));
    background: linear-gradient(to left bottom, #292e49, #303d55, #394b61, #455a6b, #536976);
    opacity: .90;
}

.home-slides.owl-theme .owl-nav {
    margin-top: 0;
    line-height: .01;
}

.home-slides.owl-theme .owl-nav [class*=owl-] {
    position: absolute;
    left: 50px;
    top: 50%;
    width: 60px;
    height: 60px;
    outline: 0;
    -webkit-box-shadow: unset;
    box-shadow: unset;
    opacity: 0;
    visibility: hidden;
    line-height: 60px;
    background-color: #000000;
    border-radius: 0;
    color: #ffffff;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    opacity: .7;
    margin-top: -50px;
    font-size: 28px;
}

.home-slides.owl-theme .owl-nav [class*=owl-].owl-next {
    left: auto;
    right: 50px;
}

.home-slides.owl-theme .owl-nav [class*=owl-]:hover {
    background-color: #009ee3;
    color: #ffffff;
    opacity: 1;
    outline: 0;
    -webkit-box-shadow: unset;
    box-shadow: unset;
}

.home-slides.owl-theme:hover .owl-nav [class*=owl-],
.home-slides.owl-theme:focus .owl-nav [class*=owl-] {
    opacity: 1;
    left: 10px;
    visibility: visible;
}

.home-slides.owl-theme:hover .owl-nav [class*=owl-].owl-next,
.home-slides.owl-theme:focus .owl-nav [class*=owl-].owl-next {
    left: auto;
    right: 10px;
}

@-webkit-keyframes ripple {
    0%,
    35% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 1;
    }
    50% {
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
        opacity: 0.8;
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(2);
        transform: scale(2);
    }
}

@keyframes ripple {
    0%,
    35% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 1;
    }
    50% {
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
        opacity: 0.8;
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(2);
        transform: scale(2);
    }
}

@-webkit-keyframes imageAnimation {
    0% {
        opacity: 0;
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    12.5% {
        opacity: 1;
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
    25% {
        opacity: 1;
    }
    37.5% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

@keyframes imageAnimation {
    0% {
        opacity: 0;
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    12.5% {
        opacity: 1;
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
    25% {
        opacity: 1;
    }
    37.5% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

.no-cssanimations .slideshow li span {
    opacity: 1;
}

.shape1 {
    position: absolute;
    left: 70px;
    bottom: 70px;
    z-index: -1;
    -webkit-animation: movebounce 5s linear infinite;
    animation: movebounce 5s linear infinite;
    opacity: .6;
}

.shape2 {
    position: absolute;
    right: 70px;
    bottom: 70px;
    z-index: -1;
    opacity: .6;
}

.shape3 {
    position: absolute;
    left: 70px;
    top: 70px;
    z-index: -1;
    opacity: .6;
}

.shape4 {
    position: absolute;
    right: 100px;
    top: 100px;
    z-index: -1;
    opacity: .6;
    -webkit-animation: movebounce 5s linear infinite;
    animation: movebounce 5s linear infinite;
}

.rotateme {
    -webkit-animation-name: rotateme;
    animation-name: rotateme;
    -webkit-animation-duration: 40s;
    animation-duration: 40s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

@-webkit-keyframes rotateme {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes rotateme {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes movebounce {
    0% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
    50% {
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }
    100% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
}

@keyframes movebounce {
    0% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
    50% {
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }
    100% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
}


/*================================================
Features CSS
=================================================*/

.features-area {
    position: relative;
    padding-bottom: 70px;
    z-index: 1;
}

.features-area.bg-image {
    background-image: url(../img/bg.jpg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.single-features {
    background-color: #ffffff;
    -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
    -webkit-transition: 0.5s;
    transition: 0.5s;
    padding: 35px 25px;
    text-align: center;
    margin-bottom: 30px;
    transition: 0.5s;
    height: 100%;
}

.single-features .icon {
    font-size: 45px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    color: #009ee3;
}

.single-features h3 {
    font-size: 22px;
    font-weight: 600;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    margin-top: 15px;
    margin-bottom: 15px;
}

.single-features p {
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.single-features:hover,
.single-features:focus {
    background-color: #009ee3;
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
}

.single-features:hover .icon,
.single-features:focus .icon {
    color: #ffffff;
}

.single-features:hover h3,
.single-features:focus h3 {
    color: #ffffff;
}

.single-features:hover p,
.single-features:focus p {
    color: #ffffff;
    opacity: .88;
}

.single-features.active {
    background-color: #009ee3;
}

.single-features.active .icon {
    color: #ffffff;
}

.single-features.active h3 {
    color: #ffffff;
}

.single-features.active p {
    color: #ffffff;
    opacity: .88;
}


/*================================================
About CSS
=================================================*/

.about-area {
    position: relative;
    z-index: 1;
}

.about-area.bg-image {
    background-image: url(../img/bg2.jpg);
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
}

.about-area.bg-image2 {
    background-image: url(../img/bg.jpg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.about-image .col-lg-6:first-child .image img {
    border-radius: 25px 0 0 0;
}

.about-image .col-lg-6:nth-child(2) .image img {
    border-radius: 0 25px 0 0;
}

.about-image .col-lg-6:nth-child(3) .image img {
    border-radius: 0 0 0 25px;
}

.about-image .col-lg-6:last-child .image img {
    border-radius: 0 0 25px 0;
}

.about-image .image img {
    -webkit-box-shadow: 0px 10px 20px 0px rgba(130, 136, 147, 0.15);
    box-shadow: 0px 10px 20px 0px rgba(130, 136, 147, 0.15);
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.about-image .image img:hover,
.about-image .image img:focus {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
}

.about-image .image.mt-30 {
    margin-top: 25px;
}

.about-content {
    padding-left: 10px;
}

.about-content h5{
    margin-top: 30px;
    font-weight: 600;
}

.about-content span {
    text-transform: uppercase;
    display: block;
    letter-spacing: 1px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #009ee3;
}

.about-content h2 {
    margin: 0 0 20px;
    font-size: 33px;
    font-weight: 700;
}

.about-content h2 b {
    font-weight: 600 !important;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(80%, rgba(0, 0, 0, 0)), color-stop(80%, #009ee3));
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 80%, #009ee3 80%);
    background-size: 90px 1.1em !important;
}

.about-content ul {
    padding: 0;
    margin: 18px 0 0;
    list-style-type: none;
}

.about-content ul li {
    color: #828893;
    margin-bottom: 10px;
    font-weight: 600;
    padding-left: 17px;
    position: relative;
}

.about-content ul li:last-child {
    margin-bottom: 0;
}

.about-content ul li::before {
    content: '';
    top: 6px;
    left: 0;
    position: absolute;
    width: 10px;
    height: 10px;
    background: #009ee3;
    -webkit-clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.about-content p {
    margin-bottom: 0;
    margin-top: 18px;
}


/*================================================
CTA CSS
=================================================*/

.cta-area {
    position: relative;
    z-index: 1;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-image: url(../img/cta-bg.jpg);
    padding-top: 70px;
    padding-bottom: 70px;
}

.cta-area::before {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    position: absolute;
    content: '';
    opacity: .7;
    z-index: -1;
}

.cta-area .cta-content h3 {
    text-transform: capitalize;
    margin: 0;
    color: #ffffff;
    font-size: 34px;
    font-weight: 500;
}

.cta-area .cta-content h3 b {
    font-weight: 600 !important;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(80%, rgba(0, 0, 0, 0)), color-stop(80%, #000000));
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 80%, #000000 80%);
    background-size: 90px 1.1em !important;
}

.cta-area .cta-content span {
    text-transform: capitalize;
    display: block;
    color: #ffffff;
    opacity: .88;
    font-size: 14px;
    font-weight: 600;
    margin-top: 12px;
}

.cta-area .btn {
    color: #000000;
}

.cta-area .btn:hover,
.cta-area .btn:focus {
    color: #ffffff;
}

.cta-area .btn::before,
.cta-area .btn::after {
    background: #ffffff;
}


/*================================================
Services CSS
=================================================*/

.services-area {
    position: relative;
    padding-bottom: 25px;
    z-index: 1;
}

.single-services {
    margin-bottom: 15px;
    -webkit-transition: 0.5s;
    height: 100%;
    transition: 0.5s;
    background: #ffffff;
    -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
}

.single-services .services-image {
    overflow: hidden;
    position: relative;
}

.single-services .services-image::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    z-index: 2;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.single-services .services-image img {
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.single-services .services-image .icon {
    position: absolute;
    left: 0;
    top: 50%;
    z-index: 3;
    right: 0;
    margin: 0 auto;
    text-align: center;
    -webkit-transform: translateY(-40%);
    transform: translateY(-40%);
    width: 60px;
    opacity: 0;
    visibility: hidden;
    height: 60px;
    line-height: 58px;
    background: #009ee3;
    color: #ffffff;
    border-radius: 50%;
    font-size: 22px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.single-services .services-content {
    padding: 30px 20px;
}

.single-services .services-content h3 {
    font-size: 22px;
    font-weight: 600;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    margin-bottom: 15px;
}

.single-services .services-content p {
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.single-services:hover,
.single-services:focus {
    background: #009ee3;
}

.single-services:hover .services-image img,
.single-services:focus .services-image img {
    -webkit-transform: scale(1.4);
    transform: scale(1.4);
}

.single-services:hover .services-image::before,
.single-services:focus .services-image::before {
    opacity: .70;
    visibility: visible;
}

.single-services:hover .services-image .icon,
.single-services:focus .services-image .icon {
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    opacity: 1;
    visibility: visible;
}

.single-services:hover .services-content h3,
.single-services:hover .services-content p,
.single-services:focus .services-content h3,
.single-services:focus .services-content p {
    color: #ffffff;
}


/*================================================
Who We Are CSS
=================================================*/

.who-we-are {
    position: relative;
    padding-bottom: 70px;
    z-index: 1;
}

.who-we-are.bg-image {
    background-image: url(../img/bg.jpg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.who-we-are .section-title {
    text-align: left;
    margin-bottom: 0;
}

.who-we-are .section-title p {
    margin-bottom: 25px;
    margin-left: 0;
    margin-right: 0;
}

.who-we-are .content p {
    margin-bottom: 0;
}

.who-we-are .content ul {
    padding: 0;
    list-style-type: none;
    margin: 10px 0 0;
    overflow: hidden;
}

.who-we-are .content ul li {
    color: #828893;
    margin-top: 10px;
    float: left;
    width: 45%;
    padding-left: 17px;
    font-weight: 600;
    position: relative;
}

.who-we-are .content ul li::before {
    content: '';
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    position: absolute;
    width: 10px;
    height: 10px;
    background: #009ee3;
    -webkit-clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}


/*================================================
Skill CSS
=================================================*/

.skill-image {
    width: 100%;
    height: 100%;
    background-image: url(../img/skill-bg.jpg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.skill-image img {
    display: none;
}

.skill-content {
    background-color: #009ee3;
    padding-left: 100px;
    padding-right: 100px;
}

.skill-content .section-title {
    text-align: left;
    margin-bottom: 35px;
}

.skill-content .section-title span {
    color: #ffffff;
    opacity: .95;
}

.skill-content .section-title h2 {
    color: #ffffff;
}

.skill-content .section-title h2 b {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(80%, rgba(0, 0, 0, 0)), color-stop(80%, #000000));
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 80%, #000000 80%);
}

.skill-content .section-title p {
    margin-left: 0;
    margin-right: 0;
    color: #ffffff;
    opacity: .95;
}

.skill-content .skills {
    position: relative;
}

.skill-content .skills .skill-item {
    position: relative;
    margin-bottom: 25px;
}

.skill-content .skills .skill-item .skill-header {
    position: relative;
    margin-bottom: 10px;
}

.skill-content .skills .skill-item .skill-header .skill-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0;
    color: #ffffff;
}

.skill-content .skills .skill-item .skill-header .skill-percentage {
    position: absolute;
    right: 0;
    top: 1px;
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
}

.skill-content .skills .skill-item:last-child {
    margin-bottom: 0;
}

.skill-content .skills .skill-item .skill-bar {
    position: relative;
    width: 100%;
}

.skill-content .skills .skill-item .skill-bar .bar-inner {
    position: relative;
    width: 100%;
    border-top: 3px solid #000000;
    border-bottom: 3px solid #000000;
    border-radius: 30px;
}

.skill-content .skills .skill-item .skill-bar .bar-inner .bar {
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 6px;
    background: #ffffff;
    -webkit-transition: all 2000ms ease;
    transition: all 2000ms ease;
    border-radius: 30px;
    margin-top: -3px;
}


/*================================================
Why We Different CSS
=================================================*/

.why-we-different {
    position: relative;
    z-index: 1;
}

.why-we-different.bg-image {
    background-image: url(../img/bg2.jpg);
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
}

.tab .tabs {
    list-style-type: none;
    padding: 0;
    margin: 0 0 50px;
    text-align: center;
}

.tab .tabs li {
    display: inline-block;
    margin: 0 5px;
}

.tab .tabs li a {
    color: #000000;
    padding: 15px 30px;
    background: transparent;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    border: 1px solid #eeeeee;
    border-radius: 5px;
    text-transform: capitalize;
    font-weight: 600;
}

.tab .tabs li a:hover,
.tab .tabs li a:focus {
    background: #009ee3;
    color: #ffffff;
    border-color: #009ee3;
}

.tab .tabs li.current a {
    background: #009ee3;
    color: #ffffff;
    border-color: #009ee3;
}

.tab .tabs_item {
    display: none;
}

.tab .tabs_item:first-child {
    display: block;
}

.tab .tabs_item .tabs_item_img img {
    width: 100%;
    border-radius: 5px;
}

.tab .tabs_item .tabs_item_content h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

.tab .tabs_item .tabs_item_content p {
    margin-bottom: 0;
}

.tab .tabs_item .tabs_item_content ul {
    padding: 0;
    list-style-type: none;
    margin: 20px 0;
    overflow: hidden;
}

.tab .tabs_item .tabs_item_content ul li {
    color: #828893;
    margin-bottom: 10px;
    float: left;
    width: 45%;
    padding-left: 17px;
    font-weight: 600;
    position: relative;
}

.tab .tabs_item .tabs_item_content ul li:last-child {
    margin-bottom: 0;
}

.tab .tabs_item .tabs_item_content ul li::before {
    content: '';
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    position: absolute;
    width: 10px;
    height: 10px;
    background: #009ee3;
    -webkit-clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}


/*================================================
Portfolio CSS
=================================================*/

.portfolio-area {
    position: relative;
    padding-bottom: 70px;
    z-index: 1;
}

.portfolio-area.bg-image {
    background-image: url(../img/bg.jpg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.shorting-menu {
    text-align: center;
    margin-bottom: 40px;
}

.shorting-menu .filter {
    border: none;
    margin: 0 15px;
    position: relative;
    font-weight: 600;
    outline: 0 !important;
    -webkit-box-shadow: unset !important;
    box-shadow: unset !important;
    background: transparent;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    z-index: 1;
}

.shorting-menu .filter::before {
    -webkit-clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    background: #bbbbbb;
    content: '';
    position: absolute;
    left: -22px;
    top: 50%;
    width: 10px;
    margin-top: -4px;
    height: 10px;
}

.shorting-menu .filter::after {
    position: absolute;
    content: '';
    width: 12px;
    height: 2px;
    z-index: -1;
    background: #000000;
    left: 3px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    bottom: 8px;
    -webkit-transform: rotate(0);
    transform: rotate(0);
}

.shorting-menu .filter:first-child::before {
    display: none;
}

.shorting-menu .filter:hover,
.shorting-menu .filter:focus,
.shorting-menu .filter.active {
    color: #009ee3;
}

.shorting-menu .filter:hover::after,
.shorting-menu .filter:focus::after,
.shorting-menu .filter.active::after {
    opacity: 1;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    visibility: visible;
}

.shorting .mix {
    display: none;
}

.single-work {
    margin-bottom: 30px;
    overflow: hidden;
    position: relative;
}

.single-work a.popup-btn {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.single-work .work-image {
    position: relative;
}

.single-work .work-image img {
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.single-work .work-image .work-overlay {
    position: absolute;
    overflow: hidden;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
}

.single-work .work-image .work-overlay::before {
    content: '';
    -webkit-transition: 0.5s;
    transition: 0.5s;
    position: absolute;
    width: 100%;
    bottom: 0;
    height: 50%;
    background: #009ee3;
    right: -100%;
}

.single-work .work-image .work-overlay::after {
    content: '';
    -webkit-transition: 0.5s;
    transition: 0.5s;
    position: absolute;
    background: #009ee3;
    top: 0;
    height: 50%;
    width: 100%;
    left: -100%;
}

.single-work .work-image .work-overlay h3 {
    color: transparent;
    overflow: hidden;
    position: absolute;
    top: 30px;
    text-align: center;
    right: 25px;
    margin: 0;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    font-size: 22px;
    font-weight: 600;
    z-index: 2;
}

.single-work .work-image .work-overlay h3::before {
    content: '';
    background: #000000;
    position: absolute;
    width: 100%;
    bottom: 0;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    left: 100%;
    top: 0;
    right: auto;
}

.single-work .work-image .work-overlay span {
    color: transparent;
    overflow: hidden;
    z-index: 2;
    position: absolute;
    top: 62px;
    display: block;
    right: 25px;
    font-weight: 600;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    text-align: center;
}

.single-work .work-image .work-overlay span::before {
    content: '';
    background: #ffffff;
    width: 100%;
    top: 0;
    bottom: 0;
    position: absolute;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    right: 100%;
}

.single-work:hover .work-image img,
.single-work:focus .work-image img {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
}

.single-work:hover .work-image .work-overlay::before,
.single-work:focus .work-image .work-overlay::before {
    right: 0;
    opacity: 1;
    width: 100%;
    height: 50%;
    -webkit-transition: all .8s;
    transition: all .8s;
}

.single-work:hover .work-image .work-overlay::after,
.single-work:focus .work-image .work-overlay::after {
    left: 0;
    opacity: 1;
    -webkit-transition: all .8s;
    transition: all .8s;
}

.single-work:hover .work-image .work-overlay span,
.single-work:focus .work-image .work-overlay span {
    color: #ffffff;
}

.single-work:hover .work-image .work-overlay span::before,
.single-work:focus .work-image .work-overlay span::before {
    right: -100%;
}

.single-work:hover .work-image .work-overlay h3,
.single-work:focus .work-image .work-overlay h3 {
    color: #ffffff;
}

.single-work:hover .work-image .work-overlay h3::before,
.single-work:focus .work-image .work-overlay h3::before {
    left: -100%;
}


/*================================================
Fun Facts CSS
=================================================*/

.funfacts-area {
    position: relative;
    z-index: 1;
}

.funfacts-area.bg-image {
    background-image: url(../img/overlay.png);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.funfacts-area .section-title {
    margin-bottom: 0;
    text-align: left;
}

.funfacts-area .section-title p {
    margin-bottom: 25px;
    margin-left: 0;
    margin-right: 0;
}

.counter-wrap .single-counter {
    padding-left: 125px;
    position: relative;
    margin-left: 40px;
    margin-bottom: 30px;
}

.counter-wrap .single-counter h2 {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 45px;
    font-weight: 600;
    color: #009ee3;
    margin: 0;
}

.counter-wrap .single-counter h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

.counter-wrap .single-counter p {
    margin-bottom: 0;
}

.counter-wrap .single-counter:last-child {
    margin-bottom: 0;
}

.counter-wrap .odometer-formatting-mark {
    display: none;
}


/*funfacts-style-two*/

.funfacts-area-two {
    position: relative;
    z-index: 1;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-image: url(../img/funfacts-bg.jpg);
}

.funfacts-area-two::before {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    position: absolute;
    content: '';
    opacity: .80;
    z-index: -1;
}

.single-funfact {
    text-align: center;
}

.single-funfact i {
    color: #009ee3;
    font-size: 40px;
}

.single-funfact .odometer-formatting-mark {
    display: none;
}

.single-funfact h3 {
    font-size: 35px;
    font-weight: 700;
    margin: 25px 0 6px;
    display: block !important;
    color: #ffffff;
}

.single-funfact p {
    color: #ffffff;
    opacity: .88;
}


/*================================================
Team CSS
=================================================*/

.team-area {
    position: relative;
    z-index: 1;
}

.team-area.bg-image {
    background-image: url(../img/bg.jpg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.team-box {
    overflow: hidden;
    position: relative;
}

.team-box::before {
    content: "";
    display: block;
    border: 10px solid rgba(255, 255, 255, 0.3);
    position: absolute;
    top: 5px;
    left: 5px;
    bottom: 5px;
    right: 5px;
    opacity: 1;
    z-index: 2;
    -webkit-transition: all 1s ease 0s;
    transition: all 1s ease 0s;
}

.team-box::after {
    content: "";
    display: block;
    border: 5px solid rgba(255, 255, 255, 0.7);
    position: absolute;
    top: 15px;
    left: 15px;
    bottom: 15px;
    right: 15px;
    opacity: 1;
    z-index: 1;
    -webkit-transition: all 1s ease 0s;
    transition: all 1s ease 0s;
}

.team-box img {
    width: 100%;
    height: auto;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 1s ease 0s;
    transition: all 1s ease 0s;
}

.team-box .box-content {
    padding: 20px;
    text-align: center;
    position: absolute;
    top: 45px;
    left: 45px;
    bottom: 45px;
    right: 45px;
    opacity: 1;
    z-index: 2;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.team-box .box-content .box-inner-content {
    width: 100%;
    padding: 20px;
    opacity: 0;
    background-color: #ffffff;
    position: absolute;
    bottom: 0;
    left: 0;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.team-box .box-content .box-inner-content .title {
    font-size: 22px;
    font-weight: 600;
    margin: 0;
}

.team-box .box-content .box-inner-content .post {
    display: block;
    margin-top: 6px;
    color: #009ee3;
}

.team-box .box-content .box-inner-content ul {
    padding: 0;
    list-style-type: none;
    margin: 15px 0 0;
}

.team-box .box-content .box-inner-content ul li {
    display: inline-block;
    margin: 0 1px;
}

.team-box .box-content .box-inner-content ul li a {
    width: 40px;
    height: 40px;
    line-height: 39px;
    border: 1px solid #eeeeee;
    border-radius: 50%;
    color: #828893;
}

.team-box .box-content .box-inner-content ul li a:hover,
.team-box .box-content .box-inner-content ul li a:focus {
    background-color: #009ee3;
    color: #ffffff;
    border-color: #009ee3;
}

.team-box:hover::before,
.team-box:focus::before {
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.team-box:hover::after,
.team-box:focus::after {
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
}

.team-box:hover img,
.team-box:focus img {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}

.team-box:hover .box-content,
.team-box:focus .box-content {
    top: 6px;
    left: 6px;
    bottom: 6px;
    right: 6px;
}

.team-box:hover .box-content .box-inner-content,
.team-box:focus .box-content .box-inner-content {
    opacity: 1;
}

.team-slides.owl-theme .owl-nav {
    margin-top: 0;
    line-height: .01;
}

.team-slides.owl-theme .owl-nav [class*=owl-] {
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    outline: 0;
    margin: 0;
    font-size: 20px;
    -webkit-box-shadow: unset;
    box-shadow: unset;
    border-radius: 0;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    width: 40px;
    opacity: 0;
    visibility: hidden;
    height: 40px;
    background-color: #828893;
    line-height: 40px;
    color: #ffffff;
}

.team-slides.owl-theme .owl-nav [class*=owl-].owl-next {
    left: auto;
    right: 0;
}

.team-slides.owl-theme .owl-nav [class*=owl-]:hover,
.team-slides.owl-theme .owl-nav [class*=owl-]:focus {
    background-color: #009ee3;
    color: #ffffff;
}

.team-slides.owl-theme:hover .owl-nav [class*=owl-],
.team-slides.owl-theme:focus .owl-nav [class*=owl-] {
    left: -25px;
    opacity: 1;
    visibility: visible;
}

.team-slides.owl-theme:hover .owl-nav [class*=owl-].owl-next,
.team-slides.owl-theme:focus .owl-nav [class*=owl-].owl-next {
    left: auto;
    right: -25px;
}


/*================================================
Story CSS
=================================================*/

.story-area {
    position: relative;
    z-index: 1;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-image: url(../img/story-bg.jpg);
}

.story-area::before {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    position: absolute;
    content: '';
    opacity: .77;
}

.story-content {
    max-width: 520px;
    margin: 0 auto;
}

.story-content .section-title {
    margin-bottom: 0;
}

.story-content .section-title h2 {
    color: #ffffff;
    line-height: 48px;
    margin-bottom: 35px;
}

.story-content .video-btn {
    display: inline-block;
}

.story-content .video-btn i {
    width: 70px;
    display: inline-block;
    height: 70px;
    line-height: 72px;
    text-align: center;
    background-color: #ffffff;
    border-radius: 50%;
    z-index: 1;
    color: #009ee3;
    font-size: 25px;
    position: relative;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.story-content .video-btn i::after {
    z-index: -1;
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 70px;
    height: 70px;
    -webkit-animation: ripple 1.6s ease-out infinite;
    animation: ripple 1.6s ease-out infinite;
    opacity: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
}

.story-content .video-btn:hover i,
.story-content .video-btn:focus i {
    background-color: #009ee3;
    color: #ffffff;
}


/*================================================
Pricing CSS
=================================================*/

.tab-slider-nav {
    text-align: center;
    margin-bottom: 40px;
}

.tab-slider-nav .tab-slider-tabs {
    margin: 0;
    padding: 0;
    list-style: none;
}

.tab-slider-nav .tab-slider-tabs .tab-slider-trigger {
    font-weight: 600;
    font-size: 14px;
    color: #828893;
    text-transform: uppercase;
    background-color: #ffffff;
    margin: 0 -2px;
    padding: 10px 20px;
    -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    border-bottom: 3px solid #009ee3;
    display: inline-block;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.tab-slider-nav .tab-slider-tabs .tab-slider-trigger.active,
.tab-slider-nav .tab-slider-tabs .tab-slider-trigger:hover,
.tab-slider-nav .tab-slider-tabs .tab-slider-trigger:focus {
    color: #ffffff;
    background: #009ee3;
}

.pricing-table {
    text-align: center;
    padding-bottom: 35px;
    -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.pricing-table .pricing-header {
    padding: 30px 20px;
    border-bottom: 1px solid #eeeeee;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    position: relative;
    z-index: 1;
    font-size: 22px;
    font-weight: 700;
}

.pricing-table .pricing-header::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0;
    background: #009ee3;
    z-index: -1;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    opacity: 1;
    visibility: hidden;
}

.pricing-table .price {
    font-size: 40px;
    font-weight: 900;
    color: #009ee3;
    margin-top: 25px;
    margin-bottom: 25px;
}

.pricing-table .price sup {
    font-size: 22px;
    top: -20px;
}

.pricing-table .pricing-features {
    padding: 0;
    margin: 0 0 35px;
    list-style-type: none;
}

.pricing-table .pricing-features li {
    color: #828893;
    margin-bottom: 13px;
}

.pricing-table .pricing-features li:last-child {
    margin-bottom: 0;
}

.pricing-table.active .pricing-header,
.pricing-table:hover .pricing-header {
    border-color: #009ee3;
    color: #ffffff;
}

.pricing-table.active .pricing-header::before,
.pricing-table:hover .pricing-header::before {
    height: 100%;
    opacity: 1;
    visibility: visible;
}


/*================================================
Testimonial CSS
=================================================*/

.testimonial-area {
    position: relative;
    z-index: 1;
}

.testimonial-area.bg-image {
    background-image: url(../img/bg.jpg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.testimonial-item {
    border-right: 3px solid #000000;
    -webkit-box-shadow: 0 15px 15px 0 rgba(0, 0, 0, 0.06);
    box-shadow: 0 15px 15px 0 rgba(0, 0, 0, 0.06);
    padding: 30px 20px 30px 125px;
    margin-bottom: 30px;
    background: #ffffff;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.testimonial-item::after,
.testimonial-item::before {
    content: "";
    position: absolute;
    z-index: -1;
    left: -17px;
    border-top: 25px solid #009ee3;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
}

.testimonial-item::before {
    bottom: -4px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.testimonial-item::after {
    top: -4px;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}

.testimonial-item .client-image {
    display: inline-block;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    position: absolute;
    top: 30px;
    left: 20px;
}

.testimonial-item .client-image img {
    border-radius: 50%;
}

.testimonial-item .testimonial-content .client-info {
    margin-top: 20px;
}

.testimonial-item .testimonial-content .client-info h3 {
    font-size: 22px;
    font-weight: 600;
    margin: 0;
}

.testimonial-item .testimonial-content .client-info span {
    display: block;
    color: #009ee3;
    margin-top: 7px;
}

.testimonial-slides.owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 25px;
    line-height: .01;
}

.testimonial-slides.owl-theme .owl-dots .owl-dot span {
    width: 15px;
    height: 15px;
    margin: 0 4px;
    background: transparent;
    border: 1px solid #dfdfdf;
    display: block;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    border-radius: 50%;
    position: relative;
}

.testimonial-slides.owl-theme .owl-dots .owl-dot:hover,
.testimonial-slides.owl-theme .owl-dots .owl-dot:focus {
    outline: 0;
    -webkit-box-shadow: unset !important;
    box-shadow: unset !important;
}

.testimonial-slides.owl-theme .owl-dots .owl-dot:hover span,
.testimonial-slides.owl-theme .owl-dots .owl-dot:focus span {
    background: #009ee3;
    border-color: #009ee3;
}

.testimonial-slides.owl-theme .owl-dots .owl-dot.active span {
    background: #009ee3;
    border-color: #009ee3;
}


/*================================================
Call To Action CSS
=================================================*/

.call-to-action {
    position: relative;
    z-index: 1;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-image: url(../img/call-to-action-bg.jpg);
}

.call-to-action::before {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    position: absolute;
    content: '';
    opacity: .77;
}

.call-to-action-content {
    max-width: 520px;
    margin: 0 auto;
}

.call-to-action-content .section-title {
    margin-bottom: 0;
}

.call-to-action-content .section-title h2 {
    color: #ffffff;
    line-height: 48px;
}

.call-to-action-content p {
    color: #ffffff;
}

.call-to-action-content .btn {
    background-color: #ffffff;
    margin-top: 25px;
}

.call-to-action-content .btn:hover,
.call-to-action-content .btn:focus,
.call-to-action-content .btn.active {
    background-color: #ffffff;
    color: #000000;
}


/*================================================
FAQ CSS
=================================================*/

.accordion {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.accordion .accordion-item {
    -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
    display: block;
    margin-bottom: 15px;
}

.accordion .accordion-item:last-child {
    margin-bottom: 0;
}

.accordion .accordion-item .accordion-title {
    display: block;
    color: #000000;
    padding: 12px 35px 12px 15px;
    position: relative;
    font-weight: 600;
    text-decoration: none;
}

.accordion .accordion-item .accordion-title:hover,
.accordion .accordion-item .accordion-title.active,
.accordion .accordion-item .accordion-title:focus {
    color: #ffffff;
    background-color: #009ee3;
}

.accordion .accordion-item .accordion-title i {
    position: absolute;
    right: 10px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.accordion .accordion-item .accordion-title.active i::before {
    content: "\ef9a";
}

.accordion .accordion-content {
    display: none;
    padding: 15px;
}

.accordion .accordion-content.show {
    display: block;
}

.faq-image {
    width: 100%;
    height: 100%;
    background-image: url(../img/faq-bg.jpg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.faq-image img {
    display: none;
}


/*================================================
Blog CSS
=================================================*/

.blog-area {
    position: relative;
    z-index: 1;
}

.blog-area.bg-image {
    background-image: url(../img/bg.jpg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.single-blog-post {
    margin-bottom: 30px;
    background-color: #ffffff;
    -webkit-box-shadow: 0 15px 15px 0 rgba(0, 0, 0, 0.06);
    box-shadow: 0 15px 15px 0 rgba(0, 0, 0, 0.06);
}

.single-blog-post .blog-image {
    position: relative;
    overflow: hidden;
}

.single-blog-post .blog-image a {
    display: block;
}

.single-blog-post .blog-image a img {
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.single-blog-post .blog-image .post-tag {
    position: absolute;
    left: 0;
    top: 40px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.single-blog-post .blog-image .post-tag a {
    background: #009ee3;
    color: #ffffff;
    padding: 9px 28px;
}

.single-blog-post .blog-post-content {
    padding: 25px;
}

.single-blog-post .blog-post-content .date {
    color: #009ee3;
    display: block;
    text-transform: uppercase;
    font-size: 14px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.single-blog-post .blog-post-content h3 {
    margin-top: 13px;
    margin-bottom: 15px;
    line-height: 30px;
    font-size: 22px;
    font-weight: 600;
}

.single-blog-post .blog-post-content h3 a {
    color: #000000;
}

.single-blog-post .blog-post-content h3 a:hover,
.single-blog-post .blog-post-content h3 a:focus {
    color: #009ee3;
}

.single-blog-post .blog-post-content p {
    margin-bottom: 18px;
}

.single-blog-post .read-more-btn {
    position: relative;
    font-weight: 500;
    color: #009ee3;
}

.single-blog-post .read-more-btn:hover {
    color: #009ee3;
    letter-spacing: 1px;
}

.single-blog-post:hover .blog-image a img,
.single-blog-post:focus .blog-image a img {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}

.single-blog-post:hover .blog-image .post-tag,
.single-blog-post:focus .blog-image .post-tag {
    top: 50px;
}

.single-blog-post:hover .blog-image .post-tag a,
.single-blog-post:focus .blog-image .post-tag a {
    background: #009ee3;
    color: #ffffff;
}

.blog-slides.owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 25px;
    line-height: .01;
}

.blog-slides.owl-theme .owl-dots .owl-dot span {
    width: 15px;
    height: 15px;
    margin: 0 4px;
    background: transparent;
    border: 1px solid #dfdfdf;
    display: block;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    border-radius: 50%;
    position: relative;
}

.blog-slides.owl-theme .owl-dots .owl-dot:hover,
.blog-slides.owl-theme .owl-dots .owl-dot:focus {
    outline: 0;
    -webkit-box-shadow: unset !important;
    box-shadow: unset !important;
}

.blog-slides.owl-theme .owl-dots .owl-dot:hover span,
.blog-slides.owl-theme .owl-dots .owl-dot:focus span {
    background: #009ee3;
    border-color: #009ee3;
}

.blog-slides.owl-theme .owl-dots .owl-dot.active span {
    background: #009ee3;
    border-color: #009ee3;
}


/*================================================
Partner CSS
=================================================*/

.partner-area {
    background-color: #f7f7f7;
}

.partner-item {
    background: #ffffff;
    text-align: center;
    position: relative;
    z-index: 1;
}

.partner-item::before,
.partner-item::after {
    content: '';
    position: absolute;
    z-index: -1;
    width: 0;
    height: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.partner-item::before {
    border-left: 3px solid #009ee3;
    border-top: 3px solid #009ee3;
    left: 0;
    top: 0;
}

.partner-item::after {
    border-right: 3px solid #009ee3;
    border-bottom: 3px solid #009ee3;
    right: 0;
    bottom: 0;
}

.partner-item a {
    display: block;
    padding: 25px 15px;
}

.partner-item a img {
    display: inline-block !important;
    width: auto !important;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.partner-item:hover::after,
.partner-item:hover::before,
.partner-item:focus::after,
.partner-item:focus::before {
    width: 40px;
    height: 40px;
    opacity: 1;
    visibility: visible;
}

.partner-item:hover a img,
.partner-item:focus a img {
    opacity: .66;
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
}


/*================================================
Subscribe CSS
=================================================*/

.subscribe-area {
    background-image: url(../img/pattern.png);
    background-position: center;
    background-size: contain;
    background-repeat: repeat;
    background-attachment: fixed;
    text-align: center;
}

.newsletter {
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    -webkit-box-shadow: 0 0 30px 0 rgba(67, 67, 67, 0.15);
    box-shadow: 0 0 30px 0 rgba(67, 67, 67, 0.15);
    background: #ffffff;
    padding: 35px;
    border-radius: 5px;
}

.newsletter h2 {
    text-transform: capitalize;
    margin-bottom: 30px;
    font-size: 35px;
    font-weight: 500;
}

.newsletter h2 b {
    font-weight: 600 !important;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(80%, rgba(0, 0, 0, 0)), color-stop(80%, #009ee3));
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 80%, #009ee3 80%);
    background-size: 90px 1.1em !important;
}

.newsletter form {
    position: relative;
}

.newsletter form .form-control {
    -webkit-box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
    border: none;
    height: 75px;
    border-radius: 50px;
    padding-left: 20px;
    font-size: 17px;
}

.newsletter form button {
    position: absolute;
    right: 7px;
    border-radius: 30px;
    top: 7px;
    height: 60px;
    width: 175px;
    background: #009ee3;
    border: none;
    outline: 0;
    cursor: pointer;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    color: #ffffff;
    font-weight: 600;
    font-size: 16px;
}

.newsletter form button:hover,
.newsletter form button:focus {
    background-color: #000000;
    color: #ffffff;
}

.newsletter form .validation-danger {
    margin-top: 20px;
    color: red;
}

.newsletter form .validation-success {
    margin-top: 20px;
}


/*================================================
Contact CSS
=================================================*/

.contact-area {
    position: relative;
    z-index: 1;
}

.contact-area.bg-image {
    background-image: url(../img/bg.jpg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

#map iframe {
    height: 400px;
    width: 100%;
    margin-bottom: -10px;
}

.contact-info {
    -webkit-box-shadow: 0 0 30px 0 rgba(67, 67, 67, 0.15);
    box-shadow: 0 0 30px 0 rgba(67, 67, 67, 0.15);
    background: #ffffff;
    padding: 30px;
    border-top: 3px solid #009ee3;
    border-bottom: 3px solid #009ee3;
}

.contact-info ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.contact-info ul li {
    position: relative;
    padding-left: 60px;
    font-weight: 600;
    margin-bottom: 34px;
    color: #828893;
}

.contact-info ul li:last-child {
    margin-bottom: 0;
}

.contact-info ul li a {
    color: #828893;
}

.contact-info ul li a:hover,
.contact-info ul li a:focus {
    color: #009ee3;
}

.contact-info ul li i {
    position: absolute;
    left: 0;
    top: 50%;
    color: #009ee3;
    font-size: 19px;
    background: #f6f6f6;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    border-radius: 50%;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.contact-info ul li:hover i,
.contact-info ul li:focus i {
    background-color: #009ee3;
    color: #ffffff;
}

.contact-form {
    border-top: 3px solid #009ee3;
    border-bottom: 3px solid #009ee3;
    -webkit-box-shadow: 0 0 30px 0 rgba(67, 67, 67, 0.15);
    box-shadow: 0 0 30px 0 rgba(67, 67, 67, 0.15);
    background-color: #ffffff;
    padding: 35px 25px;
}

.contact-form h2 {
    margin-bottom: 27px;
    font-size: 22px;
    font-weight: 600;
}

.contact-form .btn {
    margin-top: 12px;
}

.contact-form .has-error ul {
    padding: 0;
    margin: 10px 0 0;
    list-style-type: none;
}

.contact-form .has-error ul li {
    color: red;
}

.contact-form #msgSubmit {
    margin: 0;
}

.contact-form .text-danger {
    margin: 15px 0 0 !important;
    font-size: 20px;
    font-weight: 600;
}


/*================================================
Page Title CSS
=================================================*/

.page-title-area {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
    text-align: center;
    padding-top: 200px;
    padding-bottom: 120px;
}

.page-title-area::before {
    position: absolute;
    left: 0;
    top: 0;
    background: rgba(13, 15, 20, 0.75);
    width: 100%;
    height: 100%;
    z-index: -1;
    content: '';
}

.page-title-area h2 {
    font-size: 45px;
    font-weight: 600;
    margin-bottom: 0;
    color: #ffffff;
}


/*================================================
Pagination CSS
=================================================*/

.pagination-area {
    margin-top: 10px;
}

.pagination-area ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.pagination-area ul li a {
    width: 40px;
    height: 40px;
    padding: 0;
    margin: 0 5px !important;
    background-color: #ffffff;
    border-radius: 50px !important;
    text-align: center;
    line-height: 40px;
    color: #000000;
    font-size: 18px;
    font-weight: 600;
    -webkit-box-shadow: 0 2px 10px 0 #d8dde6;
    box-shadow: 0 2px 10px 0 #d8dde6;
    border: none;
}

.pagination-area ul li a.active,
.pagination-area ul li a:hover,
.pagination-area ul li a:focus {
    background: #009ee3;
    color: #ffffff;
    -webkit-box-shadow: unset;
    box-shadow: unset;
}


/*================================================
Sidebar CSS
=================================================*/

.sidebar .widget {
    margin-bottom: 40px;
}

.sidebar .widget:last-child {
    margin-bottom: 0;
}

.sidebar .widget .widget-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
}

.sidebar .widget .widget-title::before {
    content: '';
    position: absolute;
    right: 0;
    top: 2px;
    width: 17px;
    height: 17px;
    background: #009ee3;
    -webkit-clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.sidebar .widget:hover .widget-title::before,
.sidebar .widget:focus .widget-title::before {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.sidebar .widget.widget_search {
    background: #ffffff;
    -webkit-box-shadow: 0px 0px 29px 0px rgba(102, 102, 102, 0.1);
    box-shadow: 0px 0px 29px 0px rgba(102, 102, 102, 0.1);
    padding: 15px;
}

.sidebar .widget.widget_search form {
    position: relative;
}

.sidebar .widget.widget_search form .form-control {
    background: transparent;
}

.sidebar .widget.widget_search form button {
    position: absolute;
    right: 5px;
    top: 0;
    height: 100%;
    border: none;
    outline: 0;
    -webkit-box-shadow: unset;
    box-shadow: unset;
    background: transparent;
    color: #009ee3;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.sidebar .widget.widget_search form button:hover,
.sidebar .widget.widget_search form button:focus {
    color: #000000;
}

.sidebar .widget.widget_categories ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.sidebar .widget.widget_categories ul li {
    position: relative;
    border-top: 1px solid #eeeeee;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 18px;
}

.sidebar .widget.widget_categories ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 10px;
    height: 10px;
    background: #009ee3;
    margin-top: -5px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.sidebar .widget.widget_categories ul li:last-child {
    border-bottom: 1px solid #eeeeee;
}

.sidebar .widget.widget_categories ul li a {
    color: #828893;
}

.sidebar .widget.widget_categories ul li a:hover {
    color: #009ee3;
}

.sidebar .widget.widget_categories ul li:hover::before {
    border-radius: 50%;
}

.sidebar .widget.widget_recent_entries ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.sidebar .widget.widget_recent_entries ul li {
    position: relative;
    padding-left: 100px;
    margin-bottom: 15px;
}

.sidebar .widget.widget_recent_entries ul li a {
    display: block;
}

.sidebar .widget.widget_recent_entries ul li a img {
    position: absolute;
    left: 0;
    top: 3px;
    height: 65px;
}

.sidebar .widget.widget_recent_entries ul li h5 {
    font-size: 20px;
    font-weight: 600;
    line-height: 22px;
    margin-bottom: 3px;
}

.sidebar .widget.widget_recent_entries ul li h5 a {
    color: #000000;
    display: inline-block;
}

.sidebar .widget.widget_recent_entries ul li h5 a:hover,
.sidebar .widget.widget_recent_entries ul li h5 a:focus {
    color: #009ee3;
}

.sidebar .widget.widget_recent_entries ul li p {
    font-size: 14px;
}

.sidebar .widget.widget_recent_entries ul li:last-child {
    margin-bottom: 0;
}

.sidebar .widget.widget_tag_cloud .tagcloud a {
    font-size: 15px !important;
    border: 1px dashed #eeeeee;
    padding: 7px 20px;
    margin-top: 6px;
    color: #828893;
    display: inline-block;
}

.sidebar .widget.widget_tag_cloud .tagcloud a:hover {
    background: #009ee3;
    color: #ffffff;
    border-color: #009ee3;
}

.sidebar .widget.widget_archive ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.sidebar .widget.widget_archive ul li {
    position: relative;
    border-top: 1px solid #eeeeee;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 18px;
}

.sidebar .widget.widget_archive ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 10px;
    height: 10px;
    background: #009ee3;
    margin-top: -5px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.sidebar .widget.widget_archive ul li:last-child {
    border-bottom: 1px solid #eeeeee;
}

.sidebar .widget.widget_archive ul li a {
    color: #828893;
    display: inline-block;
}

.sidebar .widget.widget_archive ul li a:hover {
    color: #009ee3;
}

.sidebar .widget.widget_archive ul li:hover::before {
    border-radius: 50%;
}


/*================================================
Blog Details CSS
=================================================*/

.blog-details .post-image {
    margin-bottom: 35px;
}

.blog-details .post-image img {
    width: 100%;
}

.blog-details h3 {
    font-size: 22px;
    font-weight: 600;
    margin-top: 5px;
    margin-bottom: 15px;
}

.blog-details .blog-meta ul {
    padding: 0;
    margin: 20px 0;
    list-style-type: none;
}

.blog-details .blog-meta ul li {
    display: inline-block;
    position: relative;
    color: #828893;
    font-size: 14px;
    margin-left: 9px;
    margin-right: 9px;
}

.blog-details .blog-meta ul li i {
    margin-right: 4px;
    color: #009ee3;
}

.blog-details .blog-meta ul li::before {
    width: 2px;
    height: 14px;
    background: #828893;
    left: -10px;
    top: 50%;
    position: absolute;
    content: '';
    margin-top: -6px;
    -webkit-transform: rotate(11deg);
    transform: rotate(11deg);
}

.blog-details .blog-meta ul li a {
    display: inline-block;
    color: #828893;
}

.blog-details .blog-meta ul li a:hover,
.blog-details .blog-meta ul li a:focus {
    color: #009ee3;
}

.blog-details .blog-meta ul li:last-child {
    margin-right: 0;
}

.blog-details .blog-meta ul li:first-child {
    margin-left: 0;
}

.blog-details .blog-meta ul li:first-child::before {
    display: none;
}

.blog-details p {
    margin-top: 15px;
    margin-bottom: 0;
}

.blog-details p:last-child {
    margin-bottom: 0;
}

.blog-details blockquote,
.blog-details .blockquote {
    background: #f6f6f6 none repeat scroll 0 0;
    padding: 35px 20px 35px 100px;
    position: relative;
    border-left: 5px solid #009ee3;
    margin-top: 25px;
    margin-bottom: 25px;
}

.blog-details blockquote::before,
.blog-details .blockquote::before {
    font-family: IcoFont !important;
    position: absolute;
    content: "\efcd";
    left: 25px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 55px;
    color: #009ee3;
}

.blog-details blockquote p,
.blog-details .blockquote p {
    color: #000000;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.post-tag-media {
    background-color: #f5f7fb;
    padding: 20px;
    margin-top: 25px;
    margin-bottom: 35px;
}

.post-tag-media ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.post-tag-media ul li {
    display: inline-block;
}

.post-tag-media ul li span {
    font-weight: 600;
    margin-right: 5px;
    display: inline-block;
}

.post-tag-media ul li a {
    color: #828893;
    margin-right: 4px;
}

.post-tag-media ul li a:hover,
.post-tag-media ul li a:focus {
    color: #009ee3;
}

.post-tag-media ul.social-share {
    text-align: right;
}

.comments-area .comments-title,
.comments-area .comment-reply-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 25px;
}

.comments-area .comment-reply-title {
    margin-bottom: 8px;
}

.comments-area ol,
.comments-area ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.comments-area ol li ol li,
.comments-area ol li ul li,
.comments-area ul li ol li,
.comments-area ul li ul li {
    margin-top: 15px;
    margin-left: 35px;
    margin-bottom: 15px;
}

.comments-area ol li .comment-body,
.comments-area ul li .comment-body {
    background: #f7f7ff;
    padding: 25px 20px;
    position: relative;
}

.comments-area ol li .comment-body .comment-meta,
.comments-area ul li .comment-body .comment-meta {
    position: relative;
    padding-left: 85px;
    padding-top: 8px;
}

.comments-area ol li .comment-body .comment-meta .comment-author img,
.comments-area ul li .comment-body .comment-meta .comment-author img {
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 50%;
    max-width: 68px;
}

.comments-area ol li .comment-body .comment-meta .comment-author .fn,
.comments-area ul li .comment-body .comment-meta .comment-author .fn {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    display: block;
}

.comments-area ol li .comment-body .comment-meta .comment-author .says,
.comments-area ul li .comment-body .comment-meta .comment-author .says {
    display: none;
}

.comments-area ol li .comment-body .comment-meta .comment-metadata a,
.comments-area ul li .comment-body .comment-meta .comment-metadata a {
    display: inline-block;
    color: #828893;
    font-size: 14px;
}

.comments-area ol li .comment-body .comment-meta .comment-metadata a:hover,
.comments-area ol li .comment-body .comment-meta .comment-metadata a:focus,
.comments-area ul li .comment-body .comment-meta .comment-metadata a:hover,
.comments-area ul li .comment-body .comment-meta .comment-metadata a:focus {
    color: #009ee3;
}

.comments-area ol li .comment-body .comment-content,
.comments-area ul li .comment-body .comment-content {
    margin-top: 25px;
}

.comments-area ol li .comment-body .reply,
.comments-area ul li .comment-body .reply {
    position: absolute;
    right: 30px;
    top: 30px;
}

.comments-area ol li .comment-body .reply a,
.comments-area ul li .comment-body .reply a {
    display: inline-block;
    background: #000000;
    padding: 5px 15px;
    color: #ffffff;
}

.comments-area ol li .comment-body .reply a:hover,
.comments-area ol li .comment-body .reply a:focus,
.comments-area ul li .comment-body .reply a:hover,
.comments-area ul li .comment-body .reply a:focus {
    background: #009ee3;
}

.comments-area .comment-respond {
    margin-top: 30px;
}

.comments-area .comment-respond .comment-notes {
    font-size: 14px;
    margin-bottom: 20px;
}

.comments-area .comment-respond .comment-form-comment input,
.comments-area .comment-respond .comment-form-comment textarea,
.comments-area .comment-respond .comment-form-author input,
.comments-area .comment-respond .comment-form-author textarea,
.comments-area .comment-respond .comment-form-email input,
.comments-area .comment-respond .comment-form-email textarea,
.comments-area .comment-respond .comment-form-url input,
.comments-area .comment-respond .comment-form-url textarea {
    display: block;
    width: 100%;
    height: 45px;
    outline: 0 !important;
    -webkit-box-shadow: unset !important;
    box-shadow: unset !important;
    border: 1px solid #eeeeee;
    padding: 15px;
    border-radius: 3px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.comments-area .comment-respond .comment-form-comment input:focus,
.comments-area .comment-respond .comment-form-comment textarea:focus,
.comments-area .comment-respond .comment-form-author input:focus,
.comments-area .comment-respond .comment-form-author textarea:focus,
.comments-area .comment-respond .comment-form-email input:focus,
.comments-area .comment-respond .comment-form-email textarea:focus,
.comments-area .comment-respond .comment-form-url input:focus,
.comments-area .comment-respond .comment-form-url textarea:focus {
    border-color: #009ee3;
}

.comments-area .comment-respond .comment-form-comment textarea,
.comments-area .comment-respond .comment-form-author textarea,
.comments-area .comment-respond .comment-form-email textarea,
.comments-area .comment-respond .comment-form-url textarea {
    height: auto;
}

.comments-area .comment-respond .form-submit input {
    display: inline-block;
    background: #009ee3;
    border: none;
    color: #ffffff;
    padding: 8px 30px;
    text-transform: uppercase;
    font-weight: 600;
    outline: 0 !important;
    margin-top: 5px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.comments-area .comment-respond .form-submit input:hover,
.comments-area .comment-respond .form-submit input:focus {
    background: #000000;
    -webkit-box-shadow: 0 13px 27px 0 rgba(255, 82, 2, 0.11);
    box-shadow: 0 13px 27px 0 rgba(255, 82, 2, 0.11);
}


/*================================================
404 Error CSS
=================================================*/

.error-content {
    margin: 0 auto;
    max-width: 650px;
}

.error-content .search-form {
    position: relative;
    margin-top: 45px;
}

.error-content .search-form .search-field {
    display: block;
    width: 100%;
    height: 50px;
    outline: 0;
    -webkit-box-shadow: unset;
    box-shadow: unset;
    padding-left: 15px;
    text-transform: capitalize;
    font-weight: 600;
    border: 1px solid #eeeeee;
}

.error-content .search-form .search-submit {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 50px;
    width: 110px;
    outline: 0;
    -webkit-box-shadow: unset;
    box-shadow: unset;
    border: none;
    background: #009ee3;
    color: #ffffff;
    font-weight: 600;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.error-content .search-form .search-submit:hover,
.error-content .search-form .search-submit:focus {
    background-color: #000000;
    color: #ffffff;
}


/*================================================
Footer CSS
=================================================*/

.footer-area {
    background-color: #057ed9;
    padding-top: 30px;
    padding-bottom: 30px;
}

.footer-area p {
    color: #ffffff;
    font-family: "PT Sans", sans-serif;
    font-weight: 500;
}

.footer-area p .icofont-heart {
    color: red;
}

.footer-area p a {
    display: inline-block;
    color: #ffffff;
}

.footer-area p a:hover,
.footer-area p a:focus {
    color: #009ee3;
}

.footer-area ul {
    text-align: right;
    padding: 0;
    list-style-type: none;
    margin: 0;
}

.footer-area ul li {
    display: inline-block;
    margin-left: 2px;
}

.footer-area ul li a {
    height: 40px;
    font-size: 16px;
    width: 40px;
    text-align: center;
    line-height: 40px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    color: #000000;
    border-radius: 50%;
    background: #ffffff;
}

.footer-area ul li a:hover,
.footer-area ul li a:focus {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
    background-color: #009ee3;
    color: #ffffff;
}


/*================================================
Go Top CSS
=================================================*/

.go-top {
    position: fixed;
    cursor: pointer;
    bottom: 15px;
    right: 15px;
    font-size: 25px;
    color: #ffffff;
    background-color: #009ee3;
    z-index: 4;
    display: none;
    width: 45px;
    text-align: center;
    height: 45px;
    line-height: 45px;
    border-radius: 5px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.go-top:hover {
    color: #ffffff;
    background: #36ab66;
}


/*# sourceMappingURL=style.css.map */

.main-logo {
    width: 300px;
}

.sticky-logo {
    width: 250px;
}

span.text-green {
    color: #00963f;
    font-size: 55px;
    display: inline;
}
span.text-blue {
    color: #009ee3;
    font-size: 55px;
    display: inline;

}