/*
* ----------------------------------------------------------------------------------------
Author       : Tanvir Rahman Hridoy
Author  Uri  : www.hridoy.me
Template Name: Sprit - Startup Agency Creative Template
Version      : 1.0                                          
* ----------------------------------------------------------------------------------------
*/

/*
* ----------------------------------------------------------------------------------------
* 01.GLOBAL CSS STYLE
* 02.PRELOADER & BOUNCE CCS STYLE
* 03.HOMEPAGE CSS STYLE
    -MENU CSS STYLE
* 04.SERVICE CSS STYLE
* 05.PORTFOLIO CSS STYLE
* 06.TESTIMONIAL CSS STYLE
* 07.PROCESS CSS STYLE
* 08.KEYSKILLS DETAILS CSS STYLE
* 09.TEAM DESIGN AREA
* 10.CONTACT CSS STYLE
* 11.MAP CSS STYLE
* 11.FOOTER CSS STYLE
* ----------------------------------------------------------------------------------------
*/

/*
* ----------------------------------------------------------------------------------------
* 01.GLOBAL STYLE
* ----------------------------------------------------------------------------------------
*/

body {
    font-size: 16px;
    font-weight: 300;
    height: 100%;
    font-family: 'Raleway', sans-serif;
}

html,
body {
    height: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
}

a {
    text-decoration: none;
    -webkit-transition: all 0.4s;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    font-family: 'Raleway', sans-serif;
}

img {
    width: 100%;
}

a:hover {
    text-decoration: none;
}

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

p {
    line-height: 28px;
}

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

fieldset {
    border: 0 none;
    margin: 0 auto;
    padding: 0;
}

.no-padding {
    padding: 0
}

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

.no-padding {
    padding: 0;
}

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

.section-title h2 {
    font-size: 60px;
    margin-bottom: 10px;
    font-weight: 700;
    margin-top: 0;
    color: #1b1b1b;
    margin-top: -20px;
    text-transform: capitalize;
    position: relative;
}

.section-title h2::before {
    position: absolute;
    left: 20px;
    top: 75px;
    height: 2px;
    width: 70px;
    background: #ddd;
    content: "";
    margin-left: -15px;
}

.section-title p {
    padding: 0px 250px;
}

.white-title h2 {
    color: #fff;
}

.scrollup {
    border-radius: 50%;
    height: 40px;
    width: 40px;
    font-size: 18px;
    color: #fff;
    text-align: center;
    position: fixed;
    bottom: 30px;
    right: 30px;
    line-height: 40px;
    cursor: pointer;
    display: none;
    z-index: 2;
    background: #000;
}

.scrollup:hover {
    box-shadow: 0 3px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
    -webkit-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
}



/*
* ----------------------------------------------------------------------------------------
* 02.PRELOADER & BOUNCE CCS STYLE
* ----------------------------------------------------------------------------------------
*/

.preloader {
    background: #fff;
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 99999;
}

.status-mes {
    width: 35px;
    height: 35px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -17px 0 0 -17px;
    font-size: 10px;
    text-indent: -12345px;
    border-top: 6px solid #ccc;
    border-right: 6px solid #000;
    border-bottom: 6px solid #ccc;
    border-left: 6px solid #000;
    -webkit-animation: spinner 1000ms infinite linear;
    animation: spinner 1000ms infinite linear;
    z-index: 10000;
}

@-webkit-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/*
* ----------------------------------------------------------------------------------------
* 03.HOMEPAGE CSS STYLE
* ----------------------------------------------------------------------------------------
*/

.welcome-area {
    height: 100%;
    position: relative;
}

.welcome-image-area:before {
    position: absolute;
    background: url(../images/banner-poly.png) background-size: contain !important;
    background-repeat: no-repeat;
    background-position: bottom center;
    content: '';
    height: 200px;
    width: 100%;
    left: 0;
    bottom: 0;
    z-index: -1;
}

.welcome-image-area {
    position: relative;
    height: 100%;
    background: url(../images/bg/bg.jpg);
    background-size: cover;
    z-index: 1;
}

.welcome-image-area:after {
    position: absolute;
    background: rgba(0, 0, 0, .2);
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    z-index: -1;
}


.header-text {
    margin-top: 180px;
}

.display-table {
    display: table;
    width: 100%;
    height: 100%;
}

.display-table-cell {
    display: table-cell;
    vertical-align: middle;
}

.header-text h1 {
    color: #fff;
    font-size: 110px;
    font-weight: 700;
    margin: 0;
}

.header-text p {
    color: #fff;
    font-size: 20px;
    font-weight: 400;
    margin-top: 20px;
    padding-right: 300px;
}


a.home-button {
    display: inline-block;
    background: transparent;
    padding: 15px 40px;
    border-radius: 30px;
    color: #fff;
    margin-top: 40px;
    border: 5px solid #ff006c;
    font-weight: 700;
}

a.home-button:hover {
    background: #fff;
    border: 5px solid #fff;
    color: #000;
}

.header-top-area {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 999;
    background: #303030;
    -webkit-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;

}

.logo {
    padding-top: 20px;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.logo a p {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 5px;
    display: inline-block;
    border-bottom: 1px solid #ddd;
}

.mainmenu .navbar-nav li {
    margin-right: 30px;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.menu-bg .mainmenu .navbar-nav li {
    margin-right: 27px;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.mainmenu .navbar-nav li a {
    text-transform: uppercase;
    padding-top: 35px;
    padding-bottom: 35px;
    padding-right: 0;
    padding-left: 0;
    color: #fff;
    display: block;
    font-size: 13px;
    font-weight: 600;
}

.mainmenu .navbar-nav li a:hover {
    background: none;
    color: #b9b9b9;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.nav li a:focus,
.nav li a:hover {
    background: none;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.navbar {
    margin: 0;
}

.menu-bg {
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    background: #fff;
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.4);
    border: none;
    background: #303030;
}

.menu-bg .logo {
    padding-top: 26px;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.menu-bg .logo a p {
    color: #fff;
}

.menu-bg .mainmenu .navbar-nav li a {
    color: #fff;
    padding-top: 30px;
    -webkit-transition: .3s;
    transition: .3s;
    padding-bottom: 30px;
}

.menu-bg .mainmenu .navbar-nav li.active a {
    color: #b9b9b9;
}

.menu-bg .mainmenu .navbar-nav li a:hover {
    color: #b9b9b9;
}


/*
* ----------------------------------------------------------------------------------------
* HOMEPAGE SLIDER BACKGROUND CSS STYLE
* ----------------------------------------------------------------------------------------
*/

.welcome-area,
.welcome-slider-area,
.welcome-slider-area div {
    height: 100%;
}

.welcome-slider-area div.single-slide-item-tablecell,
.welcome-slider-area div.single-slide-item-tablecell div {
    height: auto;
}

.single-slide-item-table {
    display: table;
    width: 100%;
}

.single-slide-item-tablecell {
    display: table-cell;
    vertical-align: middle;
}

.single-slide-item {
    position: relative;
    z-index: 1;
}

.single-slide-item:after {
    position: absolute;
    background: rgba(0, 0, 0, .5);
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    z-index: -1;
}

.slide-1 {
    background: url(../images/bg/slider1.jpg) scroll 0 0;
    background-size: cover;
}

.slide-2 {
    background: url(../images/bg/slider2.jpg) scroll 0 0;
    background-size: cover;
}

.slide-3 {
    background: url(../images/bg/bg.jpg) scroll 0 0;
    background-size: cover;
}

.carousel-fade .carousel-inner .item {
    -webkit-transition-property: opacity;
    transition-property: opacity;
}

.carousel-fade .carousel-inner .item,
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
}

.carousel-fade .carousel-inner .active,
.carousel-fade .carousel-inner .next.left,
.carousel-fade .carousel-inner .prev.right {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
}

.carousel-fade .carousel-inner .next,
.carousel-fade .carousel-inner .prev,
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.carousel-fade .carousel-inner .item {
    -webkit-transition-property: opacity;
    transition-property: opacity;
}

.carousel-fade .carousel-inner .item,
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}

.carousel-fade .carousel-inner .active,
.carousel-fade .carousel-inner .next.left,
.carousel-fade .carousel-inner .prev.right {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.carousel-fade .carousel-inner .next,
.carousel-fade .carousel-inner .prev,
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.carousel-fade .carousel-control {
    z-index: 2;
}

.right.slider-control {
    left: auto;
    right: -52px;
}

.left.slider-control {
    left: -52px;
}

.welcome-slider-area:hover .right.slider-control {
    right: 30px;
    transition: .25s;
    -webkit-transition: .25s
}

.welcome-slider-area:hover .left.slider-control {
    left: 30px;
    transition: .25s;
    -webkit-transition: .25s
}

.slider-control {
    background: transparent;
    border: 1px solid #fff;
    border-radius: 50%;
    color: #82B440;
    font-size: 24px;
    width: 40px;
    height: 40px;
    left: 0;
    line-height: 40px;
    position: absolute;
    text-align: center;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 20;
}

.slider-control:hover {
    background: transparent;
    border: 1px solid #fff;
    border-radius: 50%;
    color: #82B440;
}

.carousel-indicators {
    bottom: 6px;
    left: 10%;
}
.carousel-indicators li {
    width: 5px;
    height: 5px;
    border-radius: 4px;
    margin: 0;
    background: #fff;
    border: none;
    -webkit-transition: .3s;
    transition: .3s;
}

.carousel-indicators li.active {
    width: 5px;
    height: 5px;
    border-radius: 4px;
    border: none;
    -webkit-transition: .3s;
    transition: .3s;
    background: #ccc;
}

/*
* ----------------------------------------------------------------------------------------
* VIDEO BACKGROUND CSS STYLE
* ----------------------------------------------------------------------------------------
*/

.welcome-video-area {
    position: relative;
    height: 100%;
    background-size: cover;
    z-index: 1;
    background-position: center center;
}

.welcome-video-area:after {
    position: absolute;
    background: rgba(0, 0, 0, .5);
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    z-index: -1;
}

.display-table {
    display: table;
    width: 100%;
    height: 100%;
}

.display-table-cell {
    display: table-cell;
    vertical-align: middle;
}

/*
* ----------------------------------------------------------------------------------------
* 04.SERVICE CSS STYLE
* ----------------------------------------------------------------------------------------
*/

.service-area {
    background: #303030;
}

.single-service {
    background: #0C0C0C;
    padding: 60px 40px;
    margin-bottom: 30px;
    height: 500px;
    border-radius: 20px;
}

.service-icon i {
    font-size: 60px;
    margin-bottom: 20px;
    color: #ff006c;
}

.single-service h2 {
    font-size: 26px;
    text-transform: capitalize;
    margin-top: 15px;
    margin-bottom: 20px;
    -webkit-transition: .3s;
    transition: .3s;
    color: #fff;
    font-weight: 400;
}


.single-service p {
    color: #ddd;
    font-size: 14px;
    margin-bottom: 0;
}




/*
* ----------------------------------------------------------------------------------------
* 05.WORK CSS STYLE
* ----------------------------------------------------------------------------------------
*/

.gallery {}

.gallery .col-md-4 {
    padding: 0;
}

.gallery .item {
    padding: 0;
    margin: 0;
}

.gallery figure.effect-julia img {
    height: auto;
    width: 100%;
}

.gallery .grid figure {
    position: relative;
    float: left;
    overflow: hidden;
    margin: 10px 1%;
    width: 100%;
    height: auto;
    background: #b22e6e;
    text-align: center;
    cursor: pointer;
    padding: 0;
    margin: 0;
}

.gallery figure.effect-bubba h2 {
    padding-top: 20%;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    font-size: 18px;
    text-transform: capitalize;
    font-weight: 600;
    -webkit-transition: .3s;
    transition: .3s;
}

.gallery figure.effect-bubba p {
    font-size: 20px;
    text-transform: capitalize;
    color: #ddd;
    font-weight: 400;
    position: absolute;
    bottom: 40px;
    left: 5%;
}

.gallery .item:hover figure.effect-bubba h2 {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-transition: .3s;
    transition: .3s;
}

.portfolio-more {
    margin-top: 40px;
}

figure.effect-bubba figcaption:before {
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
}

figure.effect-bubba figcaption:after {
    border-right: 1px solid #333;
    border-left: 1px solid #333;
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
}



/*
* ----------------------------------------------------------------------------------------
* 06.TESTIMONIAL CSS STYLE
* ----------------------------------------------------------------------------------------
*/

.testimonial-area {
    background: #000;
}


.single-testi-des,
.testi-name {
    text-align: center;

}

.single-testi-des p {
    font-size: 18px;
    line-height: 32px;
    color: #ddd;
}


.testi-name h2 {
    font-size: 22px;
    margin-top: 30px;
    text-transform: capitalize;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}

.testi-name h3 {
    font-size: 14px;
    margin-top: 0;
    color: #ddd;
}

.single-testimonial i {
    font-size: 40px;
    color: #ddd;
    margin-bottom: 20px;
}

.single-testimonial {
    text-align: center;
}

.testimonial-area .owl-theme .owl-controls .owl-page span {
    display: block;
    width: 5px;
    height: 5px;
    margin: 5px 7px;
    border-radius: 20px;
    background: #fff;
}


/*
* ----------------------------------------------------------------------------------------
* 07.PROCESS CSS STYLE
* ----------------------------------------------------------------------------------------
*/

.process-area {
    background: #0C0C0C;
}

.process-description {
    position: absolute;
    right: 0px;
    bottom: 33%;
    background: #fff;
    height: 200px;
    width: 400px;
    padding: 30px;
}

.single-process img {
    position: relative;
}

.process-description h2 {
    margin: 0;
    font-size: 24px;
    margin-bottom: 20px;
}

.process-description p {
    margin: 0;
}

.process-area .owl-theme .owl-controls .owl-page span {
    display: block;
    width: 5px;
    height: 5px;
    margin: 5px 7px;
    border-radius: 20px;
    background: #fff;
}

/*
* ----------------------------------------------------------------------------------------
* 08.TEAM CSS STYLE
* ----------------------------------------------------------------------------------------
*/

.team-area {
    background: #000;
}

.single-team {
    margin-top: 30px;
}

.single-team img {
    width: 100%;
}

.single-team h4 {
    font-size: 26px;
    text-transform: capitalize;
    margin-top: 20px;
    margin-bottom: 0px;
    -webkit-transition: .3s;
    transition: .3s;
    color: #fff;
    font-weight: 400;
}

.single-team h6 {
    font-size: 16px;
    color: #ddd;
    font-weight: 200;
}

.team-description {
    margin-top: 15px;
}

.team-social ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.team-social ul li {
    display: inline-block;
    margin-right: 5px;
}

.team-social ul li a {
    display: block;
    color: #ddd;
    font-size: 16px;
}

.team-social ul li a:hover {
    color: #fff;
}


/*
* ----------------------------------------------------------------------------------------
* 09.CONTACT CSS STYLE
* ----------------------------------------------------------------------------------------
*/

.contact-area {
    background: #0C0C0C;
}

.contact-form {
    margin-left: -10px;
}

.form-control {
    display: block;
    border: 1px solid #DDDDDD;
    width: 100%;
    height: 60px;
    font-size: 16px;
    line-height: 1.42857143;
    color: #000;
    background-color: #fff;
    background-image: none;
    border-radius: 0px;
    box-shadow: none;
    padding: 20px 30px;
    -webkit-transition: .3s;
    transition: .3s;
    margin-bottom: 30px;
    border-radius: 30px;
}

.form-control:focus {
    border-color: #dddddd;
    outline: 0;
    box-shadow: none;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .1) inset;
}

.contact-form button {
    display: inline-block;
    color: #000;
    padding: 16px 35px;
    text-transform: capitalize;
    font-size: 14px;
    border: 1px solid #fff;
    background-color: #fff;
    font-weight: 600;
    width: 200px;
    margin-bottom: 0;
    border-radius: 30px;
}

.contact-form button:hover {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
    -webkit-transition: .3s;
    transition: .3s;
}

.btn.active.focus,
.btn.active:focus,
.btn.focus,
.btn.focus:active,
.btn:active:focus,
.btn:focus {
    outline: none;
}

#contact .text-success,
#contact .text-danger {
    display: none;
}

.text-success {
    text-align: center;
    background: #3c763d;
    color: #fff;
    padding: 20px;
    margin-bottom: 20px;
}

.text-danger {
    text-align: center;
    background: red;
    color: #fff;
    padding: 20px;
    margin-bottom: 20px;
}

input,
select,
textarea {
    color: #ff0000;
}

.single-contact-info {
    margin-bottom: 30px;
    text-align: center;
}

.single-contact-info i {
    font-size: 40px;
    color: #000;
    height: 80px;
    width: 80px;
    text-align: center;
    background: #ff006c;
    border-radius: 50%;
    line-height: 80px;
}

.single-contact-info h2 {
    font-size: 22px;
    margin-top: 20px;
    margin-bottom: 0;
    text-transform: capitalize;
    font-weight: 400;
    color: #fff;
}

.single-contact-info p {
    margin-bottom: 0;
    color: #ddd;
    font-size: 14px;
}

/*
* ----------------------------------------------------------------------------------------
* 10.FOOTER CSS STYLE
* ----------------------------------------------------------------------------------------
*/

.footer-area {
    background: #303030;
}

.footer-text p {
    font-size: 14px;
    color: #ddd;
    margin-bottom: 0;
}

.social-links ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-text h2 {
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 3px;
    border: 1px solid #ddd;
    display: inline-block;
    padding: 7px 7px;
    margin-top: 0;
    margin-bottom: 13px;
}

.social-links ul li {
    display: inline-block;
    margin: 0px 10px;
}

.social-links ul li a {
    display: block;
    color: #fff;
}

/*
* ----------------------------------------------------------------------------------------
* 11.MAP CSS STYLE
* ----------------------------------------------------------------------------------------
*/

.gmap {
    height: 500px;
    width: 100%;
}

/*
* ----------------------------------------------------------------------------------------
* 12.KEY SKILL AREA CSS STYLE
* ----------------------------------------------------------------------------------------
*/

.our-key-skill-area {
    background: #0C0C0C;
    padding-bottom: 150px;
}

.our-skill,
.skill-text {
    margin-top: 30px;
}

.progress-bar-text span {
    float: right
}

.progress-bar-text {
    font-size: 18px;
    text-transform: capitalize;
    font-weight: 400;
    -webkit-transition: .3s;
    transition: .3s;
    color: #fff;
}

.progress-bar {
    background: #ddd none repeat scroll 0 0;
    box-shadow: 0 0 0;
    height: 8px;
    margin: 0 0 20px;
    position: relative;
    width: 100%;
}

.progress-bar > span {
    background: #ff006c none repeat scroll 0 0;
    display: block;
    height: 100%;
    width: 0;
}

.skill-text h2 {
    font-size: 30px;
    text-transform: capitalize;
    margin-bottom: 30px;
    font-weight: 400;
    margin-top: 0;
    color: #fff;
}

.skill-text p {
    color: #ddd;
}
