html,
body {
    height: 100%;
    font-family: 'Roboto', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #222222;
    margin: 0;
    margin-bottom: 10px;
    font-weight: 700;
}

h1 {
    font-size: 40px;
    margin-bottom: 40px;
}

h1 span {
    background: #54b9e1;
    padding: 0 0px;
    color: #222222;
    display: inline-block;
}

h2 {
    font-size: 36px;
}

h3 {
    font-size: 24px;
    margin-bottom: 30px;
}

h4 {
    font-size: 15px;
}

p {
    font-size: 15px;
    color: #727272;
    line-height: 2;
}

img {
    max-width: 100%;
}

input:focus,
select:focus,
button:focus,
textarea:focus {
    outline: none;
}

a:hover,
a:focus {
    text-decoration: none;
    outline: none;
}

ul,
ol {
    padding: 0;
    margin: 0;
}

/*------------------------
  Helper css
--------------------------*/
.sp-title {
    font-size: 40px;
    margin-bottom: 40px;
}

.sp-title span {
    background: #54b9e1;
    padding: 0 10 px;
    color: #ffffff;
    display: inline-block;
}

.pt100 {
    padding-top: 100px;
}

.pb100 {
    padding-bottom: 100px;
}

.pt50 {
    padding-top: 50px;
}

.pb50 {
    padding-bottom: 50px;
}

.mb100 {
    margin-bottom: 100px;
}

.spad {
    padding: 100px 0;
}

.section-title {
    margin-bottom: 75px;
}

.section-title h1,
.section-title h2 {
    display: inline-block;
    background: #54b9e1;
    padding: 0 20px;
    margin-bottom: 0;
    font-size: 60px;
}

.set-bg {
    background-size: cover;
    background-repeat: no-repeat;
}

/*------------------------
  Common element css
--------------------------*/
/*=== Preloder ===*/
#preloder {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 999999;
    background: #fff;
}

.loader {
    width: 30px;
    height: 30px;
    border: 3px solid #000;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -13px;
    margin-left: -13px;
    border-radius: 60px;
    border-left-color: transparent;
    animation: loader 0.8s linear infinite;
    -webkit-animation: loader 0.8s linear infinite;
}

@keyframes loader {
    0% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(180deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes loader {
    0% {
        -webkit-transform: rotate(0deg);
    }

    50% {
        -webkit-transform: rotate(180deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

.site-btn {
    display: inline-block;
    font-weight: 500;
    border: 3px solid;
    min-width: 200px;
    text-align: center;
    padding: 19px 0;
    position: relative;
    background-color: #229abf;
    margin-right: 15px;
    z-index: 1;
}

.site-btn:after,
.site-btn:before {
    position: absolute;
    content: "";
    width: 26px;
    height: 4px;
    right: -15px;
}

.site-btn:after {
    bottom: 8px;
}

.site-btn:before {
    bottom: 18px;
}

.site-btn.sb-light {
    color: #fff;
}

.site-btn.sb-light:after,
.site-btn.sb-light:before {
    background: #fff;
}

.site-btn.sb-dark {
    color: #ffffff;
}

.site-btn.sb-dark:after,
.site-btn.sb-dark:before {
    background: #222222;
}

.site-btn.sb-solid-color {
    background: #54b9e1;
    border-color: #54b9e1;
}

.site-btn.sb-solid-color:after,
.site-btn.sb-solid-color:before {
    background: #222222;
}

.site-btn.sb-solid-dark {
    background: #222;
    border-color: #222;
    color: #54b9e1;
}

.site-btn.sb-dark:after,
.site-btn.sb-dark:before {
    background: #a3d2e5;
}

.element {
    margin-bottom: 100px;
}



/*----------------------------------------*/
/*  Header CSS
/*----------------------------------------*/
.header-area {
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 50;
}

.logo-area {
    float: left;
    display: inline-block;
    background: #121212;
    padding: 20px 60px 30px;
}

.nav-switch {
    display: none;
}

.nav-menu {
    display: inline-block;
    float: right;
}

.nav-menu ul {
    list-style: none;
}

.nav-menu ul li {
    display: inline;
}

.nav-menu ul li a {
    display: inline-block;
    padding: 40px 10px 5px;
    text-transform: uppercase;
    margin-right: 30px;
    font-size: 14px;
    color: #fff;
    font-weight: 500;
    position: relative;
}

.nav-menu ul li a:after {
    position: absolute;
    content: "";
    width: 2px;
    height: 0;
    left: 50%;
    margin-left: 1px;
    top: 0;
    background: #54b9e1;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

.nav-menu ul li a:hover:after {
    height: 25px;
}

.nav-menu ul li.active > a:after {
    height: 25px;
}

/*---------------------------------------*/
/*  Hero Section CSS
/*----------------------------------------*/
.hero-section {
    height: 960px;
    background: #ededed;
    position: relative;
}


.hero-right-text {
    position: absolute;
    right: 140 px;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    -webkit-transform-origin: right center;
    -ms-transform-origin: right center;
    transform-origin: right center;
    bottom: 65%;
    z-index: 30;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 10px;
}

.hero-slider .hero-slide-item {
    width: 100%;
    height: 960px;
    display: table;
}

.hero-slider .hero-slide-item .slide-inner {
    display: table-cell;
    vertical-align: middle;
    position: relative;
}

.hero-slider .owl-nav {
    position: absolute;
    display: inline-block;
    left: 350px;
    bottom: 70px;
}

.hero-slider .owl-nav .owl-prev,
.hero-slider .owl-nav .owl-next {
    display: inline-block;
    margin-right: 30px;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

.hero-slider .owl-nav .owl-prev:hover,
.hero-slider .owl-nav .owl-next:hover {
    color: #54b9e1;
}

.hero-slider .owl-nav .owl-prev i {
    margin-right: 5px;
}

.hero-slider .owl-nav .owl-next {
    margin-right: 0px;
}

.hero-slider .owl-nav .owl-next i {
    margin-left: 5px;
}

.slide-num-holder {
    width: 153px;
    height: 250px;
    position: absolute;
    right: 60px;
    background: rgba(18, 18, 18, 0.95);
    bottom: -40px;
    z-index: 111;
    text-align: right;
    padding-right: 20px;
    padding-top: 60px;
    color: #fff;
    font-weight: 700;
}

.slide-num-holder span {
    font-size: 48px;
    color: #54b9e1;
    position: relative;
    top: -10px;
    right: -10px;
}

.slide-content {
    margin-left: 350px;
    margin-bottom: 50px;
    padding-left: 190px;
    padding-top: 170px;
    padding-bottom: 70px;
    position: relative;
    opacity: 0;
    -webkit-transition: all 0.6s;
    -o-transition: all 0.6s;
    transition: all 0.6s;
}

.slide-content:after {
    position: absolute;
    content: "";
    height: calc(100% + 50px);
    width: 330px;
    border-top: 150px solid #54b9e1;
    border-left: 150px solid #54b9e1;
    border-bottom: 90px solid #54b9e1;
    top: 0;
    left: 0;
    opacity: 0.73;
}

.slide-content h2 {
    color: #fff;
    font-size: 80px;
    line-height: 80px;
}

.owl-item.active .slide-content {
    opacity: 1;
}

/*----------------------------------------*/
/*  Intro Section CSS
/*----------------------------------------*/
.intro-text p {
    margin-bottom: 50px;
}


/*Catagorie Start

#catagorie .block {
	margin-top: 30px;
}

#catagorie .block .thumbnail {
	border: none;
	cursor: pointer;
}
#catagorie .block .thumbnail:hover .catagotie-head img {
 opacity: 0.7;
}
#catagorie .block .thumbnail a img  {
	width: 100%;
	border:1px solid #dedede;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-ms-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}
#catagorie .block .thumbnail a img:hover {
	opacity: 0.7;
}
#catagorie .block .thumbnail:hover h3 {
	color: #54b9e1;
}
#catagorie .block .thumbnail a  h3 {
	font-weight: 500;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-ms-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}
#catagorie .block .thumbnail .caption p {
	font-size: 14px;
	color: #4b4b4b;
	font-weight: 300;
}
#catagorie .block .thumbnail .caption {
	padding: 0;
}
.catagorie-box p span {
	font-weight: bold;
}
.catagorie-box .catagotie-head h3 {
	color: #121212;
}*/


/* Blog */
.single-blog-area {
    position: relative;
    z-index: 1;
}

.single-blog-area .single-blog-thumbnail {
    position: relative;
    z-index: 1;
}

.single-blog-area .single-blog-thumbnail img {
    width: 100%;
}

.single-blog-area .single-blog-thumbnail .post-date {
    position: absolute;
    z-index: 10;
    left: 15px;
    top: 15px;
    border: 1px solid #787878;
    background-color: #ffffff;
    padding: 20px 8px;
    text-align: center;
}

.single-blog-area .single-blog-thumbnail .post-date a {
    font-size: 24px;
    text-transform: uppercase;
    color: #000000;
    line-height: 1;
    font-family: "helveticaneuemedium";
}

.single-blog-area .single-blog-thumbnail .post-date a span {
    display: block;
    font-family: "Open Sans", sans-serif;
    font-size: 11px;
    color: #878787;
}

.single-blog-area .single-blog-content .line {
    background-color: #c8c8c8;
    width: 26px;
    height: 2px;
    margin-bottom: 20px;
}

.single-blog-area .single-blog-content .post-tag {
    color: #a1a1a1;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
    display: block;
}

.single-blog-area .single-blog-content .post-tag:hover,
.single-blog-area .single-blog-content .post-tag:focus {
    color: #000000;
}

.single-blog-area .single-blog-content h4 a {
    display: inline-block;
    color: #000000;
    font-size: 24px;
    margin-bottom: 10px;
}

.single-blog-area .single-blog-content h4 a:hover,
.single-blog-area .single-blog-content h4 a:focus {
    color: #54b9e1;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .single-blog-area .single-blog-content h4 a {
        margin-bottom: 20px;
    }
}

.single-blog-area .single-blog-content > p {
    line-height: 2;
    margin-bottom: 70px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .single-blog-area .single-blog-content > p {
        margin-bottom: 30px;
    }
}

.single-blog-area .single-blog-content .post-meta p {
    font-size: 9px;
    text-transform: uppercase;
    margin-bottom: 0;
    letter-spacing: 3px;
    display: inline-block;
}

.single-blog-area .single-blog-content .post-meta p:first-of-type {
    margin-right: 30px;
}

.single-blog-area .single-blog-content .post-meta p a {
    font-size: 9px;
    text-transform: uppercase;
    color: #000000;
    letter-spacing: 3px;
}

.single-blog-area.blog-style-2 .single-blog-content > p {
    margin-bottom: 30px;
}

.single-catagory-area {
    position: relative;
    z-index: 1;
}

.single-catagory-area .catagory-title {
    background-color: #000000;
    top: 50%;
    left: 50%;
    width: 226px;
    height: 156px;
    position: absolute;
    z-index: 10;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -ms-grid-row-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
}

.single-catagory-area .catagory-title:hover {
    background-color: #229abf;
}

.single-catagory-area .catagory-title a {
    font-size: 10px;
    color: #ffffff;
    letter-spacing: 3px;
    display: inline-block;
    text-transform: uppercase;
}

/*welcome*/
.cool-facts-area {
    position: relative;
    z-index: 1;
    background-attachment: fixed;
}

.cool-facts-area .single-blog-area .line {
    margin: 0 auto 15px;
    background-color: #ffffff;
}

.cool-facts-area .single-blog-area .post-tag {
    color: #ffffff;
}

.cool-facts-area .single-blog-area .post-headline {
    color: #ffffff;
}

.cool-facts-area .single-blog-area p {
    color: #ffffff;
}

.cool-facts-area .single-cool-facts-area h2 {
    font-size: 42px;
    color: #ffffff;
    line-height: 1;
}

.cool-facts-area .single-cool-facts-area p {
    margin-bottom: 0;
    font-size: 18px;
    color: #ffffff;
}

.section-padding-100-0 {
    padding: 100px 0 0;
}

.mb-100 {
    margin-bottom: 100px;
}




/*----------------------------------------*/
/*  Client Section CSS
/*----------------------------------------*/
.client-slider .single-brand {
    display: table;
    height: 80px;
    width: 100%;
}

.client-slider .single-brand a {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}

.client-slider .single-brand a img {
    width: auto;
    margin: 0 auto;
    opacity: 0.2;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

.client-slider .single-brand a:hover img {
    opacity: 1;
}

/*----------------------------------------*/
/*  Other pages CSS
/*----------------------------------------*/
.page-header-section {
    height: 445px;
    padding-top: 200px;
}

.page-header-section .header-title {
    font-size: 82px;
    color: #fff;
}

.page-header-section .header-title span {
    background: none;
    color: #54b9e1;
}



/*Stages*/
.service-slider {
    position: relative;
}

.service-slider .owl-controls {
    position: absolute;
    height: 100%;
    width: 14px;
    left: 0;
    top: 0;
    display: -ms-grid;
    display: grid;
}

.service-slider .owl-dots {
    display: table-cell;
    vertical-align: middle;
}

.service-slider .owl-dots .owl-dot {
    width: 14px;
    height: 13px;
    margin-bottom: 10px;
    background: #e8e8e8;
}

.service-slider .owl-dots .owl-dot.active {
    background: #54b9e1;
}

.service-text h2 {
    font-size: 30px;
    margin-bottom: 30px;
}

.service-text p {
    margin-bottom: 50px;
}

.service-text ol {
    list-style: none;
}

.service-text ol li {
    font-size: 20px;
    font-weight: 700;
    color: #727272;
    margin-bottom: 20px;
}

.solid-service-box {
    text-align: center;
    background: #fff;
    padding: 50px 30px;
    -webkit-transition: all 0.4s ease-out 0s;
    -o-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
}

.solid-service-box h2 {
    font-size: 48px;
    color: #727272;
    margin-bottom: 20px;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

.solid-service-box h3 {
    margin-bottom: 20px;
}

.solid-service-box p {
    font-size: 14px;
    margin-bottom: 20px;
}

.solid-service-box .readmore {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: #222;
    opacity: 0;
    visibility: hidden;
    position: relative;
    bottom: -20px;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

.solid-service-box:hover {
    background: #54b9e1;
}

.solid-service-box:hover h2 {
    color: #222;
}

.solid-service-box:hover .readmore {
    visibility: visible;
    opacity: 1;
    bottom: 0;
}

.promo-box {
    width: 1383px;
    margin: 0 auto;
    padding: 40px 0;
}

.promo-box .promo-text h1,
.promo-box .promo-text p {
    color: #fff;
}

/*video stages*/


/* ===========================
  Responsive
==============================*/
@media only screen and (max-width: 1477px) {
    .slide-num-holder.test-slider {
        left: auto;
        right: 0;
    }
}

@media only screen and (max-width: 1400px) {
    .promo-box {
        width: 100%;
    }
}

/* Medium screen : 992px. */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .phone-number {
        margin-right: 30px;
    }

    .nav-menu ul li a {
        margin-right: 20px;
    }

    .slide-content {
        margin-left: 220px;
    }

    .milestone p {
        margin-left: 10px;
        font-size: 17px;
    }

    .milestone h2 {
        font-size: 55px;
    }

    .milestone:after {
        width: 90px;
        height: 90px;
    }

    .slide-num-holder {
        right: 20px;
    }

    .hero-right-text {
        right: 100px;
    }
}

/* Tablet :768px. */
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .logo-area {
        padding: 20px 40px 30px;
    }

    .slide-content {
        margin-left: 170px;
        margin-bottom: -35px;
        padding-left: 120px;
        padding-top: 120px;
        padding-bottom: 30px;
    }

    .slide-content h2 {
        font-size: 60px;
        line-height: 60px;
    }

    .slide-content:after {
        border-top: 100px solid #54b9e1;
        border-left: 100px solid #54b9e1;
        border-bottom: 60px solid #54b9e1;
    }

    .hero-slider .owl-nav {
        left: 170px;
    }

    .slide-num-holder {
        right: 20px;
    }

    .hero-right-text {
        bottom: 70%;
        right: 100px;
    }

    .nav-menu ul li a {
        margin-right: 5px;
        font-size: 13px;
        padding: 37px 7px 5px;
    }

    .phone-number {
        font-size: 12px;
        margin-right: 10px;
    }

    .team-member {
        margin-bottom: 30px;
    }

    .portfolio-warp .grid-item {
        width: 50%;
    }

    .portfolio-warp .grid-item.grid-wide,
    .portfolio-warp .grid-item.grid-long {
        width: 50%;
    }

    .portfolio-warp .grid-sizer {
        width: 50%;
    }

    .solid-service-box {
        margin-bottom: 30px;
    }

    .cta-section {
        background: #222;
        margin-bottom: 0;
    }

    .testimonials-section {
        background: #222;
        margin: 0;
    }

    .testimonials-image-box,
    .testimonials-section:after,
    .cta-image-box,
    .cta-section:after {
        display: none;
    }

    .hero-section,
    .hero-slider .hero-slide-item {
        height: 850px;
    }

    .milestone,
    .solid-service-box {
        margin-bottom: 30px;
    }

    .projects-filter-nav {
        text-align: left;
    }

    .projects-filter-nav li {
        margin-left: 0;
        margin-right: 15px;
    }

    .footer-section .copyright {
        position: relative;
        width: 100%;
        max-width: 720px;
        margin: 40px auto 0;
        left: 0;
        top: 0;
        margin-bottom: -50px;
        padding-left: 15px;
    }
}

/* Large Mobile :480px. */
@media only screen and (max-width: 767px) {

    h1,
    .sp-title {
        font-size: 45px;
    }

    .page-header-section .header-title {
        font-size: 55px;
    }

    .left-bar {
        width: 70px;
    }

    .slide-content:after,
    .hero-right-text,
    .phone-number {
        display: none;
    }

    .nav-switch {
        position: absolute;
        right: 20px;
        font-size: 30px;
        color: #fff;
        top: 20px;
        display: block;
    }

    .nav-menu {
        position: absolute;
        width: calc(100% - 90px);
        left: 80px;
        background: #121212;
        top: 100%;
        margin-top: 11px;
        display: none;
    }

    .nav-menu ul li a {
        display: block;
        padding: 16px 21px;
        border-bottom: 1px solid #202020;
        margin-right: 0;
    }

    .nav-menu ul li a:after {
        left: 20px;
    }

    .nav-menu ul li.active > a:after,
    .nav-menu ul li a:hover:after {
        height: 10px;
    }

    .hero-section {
        height: auto;
    }

    .hero-slider .hero-slide-item {
        padding: 150px 0;
        height: auto;
    }

    .slide-content h2 {
        font-size: 60px;
        line-height: 60px;
    }

    .hero-slider .owl-nav {
        padding-left: 70px;
        width: 100%;
        text-align: center;
        left: 0;
    }

    .slide-content {
        margin-left: 70px;
        padding: 0;
        text-align: center;
    }

    .slide-num-holder,
    .slide-num-holder.test-slider {
        right: 0;
        height: 75px;
        width: 136px;
        padding-top: 18px;
    }

    .slide-num-holder span,
    .slide-num-holder.test-slider span {
        font-size: 40px;
    }

    .slide-num-holder.test-slider {
        bottom: -135px;
    }

    .team-member {
        margin-bottom: 30px;
    }

    .portfolio-warp .grid-item {
        width: 50%;
    }

    .portfolio-warp .grid-item.grid-wide,
    .portfolio-warp .grid-item.grid-long {
        width: 50%;
    }

    .portfolio-warp .grid-sizer {
        width: 50%;
    }

    .cta-section {
        background: #222;
        margin-bottom: 0;
    }

    .testimonials-section {
        background: #222;
        margin: 0;
    }

    .testimonials-image-box,
    .testimonials-section:after,
    .cta-image-box,
    .cta-section:after {
        display: none;
    }

    .milestone,
    .solid-service-box {
        margin-bottom: 30px;
    }

    .projects-filter-nav {
        text-align: left;
    }


    /* small mobile :320px. */
    @media only screen and (max-width: 479px) {
        .logo-area {
            padding: 20px 30px 30px;
        }

        .header-area {
            background: #121212;
            padding-right: 66px;
        }

        .nav-menu {
            width: 100%;
            left: 0;
            margin-top: 0;
            border-top: 2px solid;
        }

        .left-bar {
            display: none;
        }

        .hero-slider .owl-nav {
            padding-left: 0;
        }

        .slide-content {
            margin-left: 0;
            padding: 0 15px;
        }

        .slide-content h2 {
            font-size: 35px;
            line-height: 1.5;
        }

        .portfolio-warp .grid-item {
            width: 100%;
        }

        .portfolio-warp .grid-item.grid-wide,
        .portfolio-warp .grid-item.grid-long {
            width: 100%;
        }

        .portfolio-warp .grid-sizer {
            width: 100%;
        }

        .projects-slider {
            padding: 0 15px;
        }
    }