/*
* ----------------------------------------------------------------------------------------
Author       : Creativepersonal
Template Name: Monster - Personal Portfolio Template
Version      : 1.0
* ----------------------------------------------------------------------------------------
*/


/*
* ----------------------------------------------------------------------------------------
* 01.GLOBAL CSS STYLE
* 02.PRELOADER & BOUNCE CCS STYLE
* 03.HOMEPAGE CSS STYLE
    -LOGO CSS
    -MENU CSS
* 04.ABOUT CSS STYLE
* 05.SERVICE CSS STYLE
* 06.WORK CSS STYLE
* 07.AVAILABLE CSS STYLE
* 08.CONTACT CSS STYLE
* 09.FOOTER CSS STYLE
* ----------------------------------------------------------------------------------------
*/


/*
* ----------------------------------------------------------------------------------------
* 01.GLOBAL STYLE
* ----------------------------------------------------------------------------------------
*/

body {
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
    height: 100%;
    font-family: 'Poppins', sans-serif;
    color: #232323;
}

html,
body,form
 {
    height: 100%
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Rubik', sans-serif;
}

a {
    text-decoration: none;
    -webkit-transition: all 0.4s;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    color: #000;
}

img {
    width: 100%;
}

a:hover {
    color: #fff;
    text-decoration: none;
}

a:focus {
    outline: none;
    text-decoration: none;
}

p {
    line-height: 32px;
}

ul,
li {
    margin: 0;
    padding: 0;
    list-style: none;
}

fieldset {
    border: 0 none;
    margin: 0 auto;
    padding: 0;
}

.no-padding {
    padding: 0
}

.section-padding {
    padding: 70px 0px;
    overflow: hidden;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    margin-top: 0;
    font-weight: 900;
    text-transform: capitalize;
    font-size: 45px;
}

.section-title p {
    font-weight: 300;
}


/*
* ----------------------------------------------------------------------------------------
* 02.PRELOADER & BOUNCE CCS STYLE
* ----------------------------------------------------------------------------------------
*/

.preloader {
    background: #000;
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 99999;
}

.status-mes {
    width: 45px;
    height: 45px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -22px 0 0 -22px;
    font-size: 10px;
    text-indent: -12345px;
    border-top: 8px solid #222;
    border-right: 8px solid #222;
    border-bottom: 8px solid #222;
    border-left: 8px solid #fff;
    border-radius: 50%;
    -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: 430px;
}

@media(min-width:768px){
.welcome-area {
    height: 100%;
}
    
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
}

.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, .6);
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    z-index: -1;
}


.particle-bg {
    position: relative;
    height: 100%;
    background: url(../images/bg/bg2.jpg);
    background-size: cover;
    z-index: 1;
}

.particle-bg:after {
    position: absolute;
    background: rgba(0, 0, 0, .6);
    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;
}
.w{display:none !important;}

.header-text h1 {
    color: #fafafa;
    font-size: 80px;
    font-weight: 900;
    text-transform: capitalize;
}

.header-text .home-arrow-down {
    text-align: center;
    position: absolute;
    bottom: -210px;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.header-text .home-arrow-down .btn {
    font-size: 30px;
}

.header-text .home-arrow-down .fa {
    color: #fafafa;
    display: inline-block;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-animation-name: home-arrow-down;
    animation-name: home-arrow-down;
    animation-duration: 2s;
    -webkit-animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

@-webkit-keyframes home-arrow-down {
    from {
        -webkit-transform: translate3d( 0, 0px, 0);
        transform: translate3d( 0, 0px, 0);
        filter: alpha(opacity=0);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }
    10% {
        -webkit-transform: translate3d( 0, 5px, 0);
        transform: translate3d( 0, 5px, 0);
        filter: alpha(opacity=100);
        opacity: 1;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    }
    to {
        -webkit-transform: translate3d( 0, 30px, 0);
        transform: translate3d( 0, 30px, 0);
        filter: alpha(opacity=0);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }
}

@keyframes home-arrow-down {
    from {
        -webkit-transform: translate3d( 0, 0px, 0);
        transform: translate3d( 0, 0px, 0);
        filter: alpha(opacity=0);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }
    10% {
        -webkit-transform: translate3d( 0, 5px, 0);
        transform: translate3d( 0, 5px, 0);
        filter: alpha(opacity=100);
        opacity: 1;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    }
    to {
        -webkit-transform: translate3d( 0, 30px, 0);
        transform: translate3d( 0, 30px, 0);
        filter: alpha(opacity=0);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }
}

.header-top-area {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 999;
    -webkit-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
}

.logo {
    padding-top: 28px;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.logo a {
    display: block;
    color: #fff;
    text-transform: capitalize;
    font-weight: 400;
    font-size: 30px;
    font-family: 'Dancing Script', cursive;
}

.mainmenu .navbar-nav li a {
    color: #fff;
    font-size: 16px;
    padding: 30px 14px;
    -webkit-transition: .3s;
    transition: .3s;
    font-weight: 400;
    font-family: 'Rubik', sans-serif;
    text-transform: uppercase;
}

.mainmenu .navbar-nav li a:hover {
    background: none;
    color: #fff;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.nav li a:focus,
.nav li a:hover {
    background: none;
    color: #fff;
    -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: #000;
}

.menu-bg .logo {
    padding-top: 15px;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    padding-bottom: 15px;
}

.menu-bg .mainmenu .navbar-nav li a {
    color: #fff;
    padding: 20px 15px;
    -webkit-transition: .3s;
    transition: .3s;
}

.menu-bg .mainmenu .navbar-nav li a:hover {
    color: #fff;
}
/*
* ----------------------------------------------------------------------------------------
* 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.ABOUT CSS STYLE
* ----------------------------------------------------------------------------------------
*/

.about-image {}

.about-text h2 {
    font-size: 18px;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 20px;
    color: #232323;
    letter-spacing: 2px;
    font-weight: 700;
}

.about-text p {
    font-weight: 300;
    margin-bottom: 30px;
}

.about-text ul li {
   
    display: flex;
   
}

.about-text ul li > .fa,.about-text ul li > img {
    flex: 0 0 30px;
    width: 30px;
    margin-left:10px;
    font-size: 130%;
}
.fa,.about-text ul li > img {

      flex: 0 0 35px;
    width: 35px;
}


.about-text ul li:last-child{}

/*
* ----------------------------------------------------------------------------------------
* 05.SERVICE CSS STYLE
* ----------------------------------------------------------------------------------------
*/

.service-area {}

.single-service{}

.single-service img {
    font-size: 40px;
    margin-bottom: 10px;
    -webkit-transition: .3s;
    transition: .3s;
    background: #F5F5F5;
    height: 80px;
    width: 80px;
    border-radius: 50%;
    text-align: center;
    color: #1C1C1C;
    line-height: 80px;
    float: right;
    margin-left: 25px;
    margin-bottom: 50px;
}

.single-service h2 {
    font-size: 18px;
    text-transform: uppercase;
    margin: 7px 0px;
    -webkit-transition: .3s;
    transition: .3s;
    color: #232323;
    letter-spacing: 1px;
    font-weight: 700;
    padding-top:17px
}

.single-service p {
    color: #232323;
    line-height: 25px;
}


/*
* ----------------------------------------------------------------------------------------
* 06.WORK CSS STYLE
* ----------------------------------------------------------------------------------------
*/

.work {
    background: #F7F7F7;
}

.work-inner .mix {
    display: none;
}

ul.work {
    padding: 0;
    list-style: none;
    text-align: center;
    margin-bottom: 30px;
}

ul.work li {
    display: inline-block;
    padding-bottom: 4px;
    margin: 0 8px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 300;
    color: #938d8d;
    border: none;
    cursor: pointer;
    font-size: 18px;
    border-bottom: 2px solid transparent;
}

ul.work li:hover {
    color: #000;
    -webkit-transition: .3s;
    transition: .3s;
}

ul.work li.active {
    color: #000;
}

.work .item {
    padding: 0;
    margin: 0;
}

.work .col-md-4 {
    padding: 0 10px;
    margin: 0;
    margin-bottom: 20px;
}

.work figure.effect-ruby img {
    height: auto;
    width: 100%;
}

.work .grid figure {
    position: relative;
    float: left;
    overflow: hidden;
    min-width: 320px;
    max-width: 480px;
    max-height: 360px;
    width: 100%;
    height: auto;
    text-align: center;
    cursor: pointer;
    padding: 0;
    margin: 0;
}

.work .grid figure:hover {
    background: #000;
}

.work figure.effect-ruby h2 {
    margin-top: 20%;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    font-size: 30px;
    text-transform: uppercase;
    font-weight: 600;
    -webkit-transition: .3s;
    transition: .3s;
    display: inline-block;
    color: #fff;
}

.work figure.effect-ruby p {
    font-size: 14px;
    text-transform: capitalize;
    border: none;
    padding: 0;
    margin: 5px 0px;
}

.work figure.effect-ruby p strong {
    font-size: 16px;
    text-transform: uppercase;
    margin-right: 5px;
}

.work .item:hover figure.effect-ruby h2 {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-transition: .3s;
    transition: .3s;
}


/*
* ----------------------------------------------------------------------------------------
* 07.TESTIMONIAL CSS STYLE
* ----------------------------------------------------------------------------------------
*/

.testimonial-area {
    background: #F7F7F7;
}

.testimonial-list,.testimonial-list * {direction:ltr;
}


.single-testimonial h2 {
    font-size: 16px;
    text-transform: uppercase;
    -webkit-transition: .3s;
    transition: .3s;
    color: #232323;
    letter-spacing: 2px;
    font-weight: 700;
}

.single-testimonial h3 {
    font-size: 12px;
    text-transform: capitalize;
    font-weight: 300;
    margin-top: 0;
}

.single-testimonial p {
    line-height: 25px;
    direction: rtl;
}

.owl-theme .owl-controls .owl-page span {
    display: block;
    width: 5px;
    height: 5px;
    margin: 5px 7px;
    border-radius: 20px;
    background: #000;
}

/*
* ----------------------------------------------------------------------------------------
* 08.CONTACT CSS STYLE
* ----------------------------------------------------------------------------------------
*/

.contact-me-area {}

.contact-form {
    border-radius: 3px;
    margin-top: 30px;
}
.form-control {
    display: block;
    /* border: 0px; */
    width: 100%;
    height: 49px;
    padding: 5px 10px;
    font-size: 14pt;
    line-height: 1.42857143;
    color: #333;
    background-color: #F7F7F7;
    /* background-image: none; */
    /* border-radius: 0px; */
    /* box-shadow: none; */
    margin-bottom: 25px;
    /* border-color: #8c8c8c; */
    border-radius: 6px;
}
.form-control:focus {
    border-color: #000;
    outline: 0;
    box-shadow: none;
}

.contact-form input[type='submit'] {
    display: inline-block;
    color: #fff;
    background: none;
    padding: 15px 25px;
    border: 1px solid #333;
    font-size: 14px;
    border-radius: 0px;
    font-weight: 300;
    -webkit-transition: .3s;
    transition: .3s;
    background: #232323;
    text-transform: capitalize;
    border-radius: 30px;
}

.contact-form input[type='submit']:hover {
    background: transparent;
    border: 1px solid #000;
    color: #000;
    -webkit-transition: all 0.4s;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.btn.active.focus,
.btn.active:focus,
.btn.focus,
.btn.focus:active,
.btn:active:focus,
.btn:focus {
    outline: none;
}

.success {
    background: #50B948 none repeat scroll 0 0;
    color: #fff;
    font-weight: 700;
    padding: 20px;
    text-align: center;
}


/*
* ----------------------------------------------------------------------------------------
* 09.FOOTER CSS STYLE
* ----------------------------------------------------------------------------------------
*/

.footer-area {
    background: #F7F7F7;
    padding: 80px 0px;
    display: none;
}

.social-links ul {
    padding: 0;
    margin: 0;
}

.social-links ul li {
    display: inline-block;
}

.social-links ul li a {
    font-size: 32px;
    color: #222222;
    margin: 25px 10px;
    display: block;
}
.header-links ul li a {
    color: #fafafa;
}

.footer-area p {
    margin-bottom: 0;
    font-size: 14px;
    color: #222222;
}




/*
* ----------------------------------------------------------------------------------------
* PREVIEW CSS STYLE
* ----------------------------------------------------------------------------------------
*/

.preview-body {
    background: #fafafa;
}

.preview-single-image img {
    width: 100%;
}

.preview-single-image {
    -webkit-transition: 1s;
    transition: 1s;
    box-shadow: 1px 2px 2px 0px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.preview-single-image:hover {
    -webkit-transition: 1s;
    transition: 1s;
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
}

.preview-single-image h2 {
    font-size: 20px;
    text-align: center;
    color: #000;
    background: #fff;
    margin: 0;
    padding: 30px 20px;
}

.preview-header-top-area {
    padding: 50px 0px;
}

.preview-header-top-area h2 {
    font-size: 80px;
    color: #232323;
    text-transform: capitalize;
    font-weight: 900;
}

.preview-header-top-area p {
    color: #333;
    font-size: 30px;
    font-weight: 300;
}

.main h2 {
    color: #000;
}

.main {
    margin-bottom: 180px;
}




label.form-error { color: #e4b3af; font-weight: normal; font-size: 18px; text-transform: none; position: absolute; top: 0px; left: 15px; font-family: Arial; display: block; width: 0; height: 0; border-style: solid; border-width: 10px 10px 0 0; border-color: #d9534f transparent transparent transparent; line-height: 0px; _border-color: #e4b4af #000000 #000000 #000000; _filter: progid:DXImageTransform.Microsoft.Chroma(color='#000000'); overflow: hidden; }
select + label.form-error { /* right: 23px; */ }
.form-error.LTR + label.form-error { left: 0; }

div.form-error { color: #F36523; }
input.form-error, textarea.form-error, select.form-error, .form-error + .chosen-container .chosen-single { border: 1px solid rgba(185, 74, 72, 0.39); background-color: rgba(255, 122, 13, 0.06); }
input.form-error:focus, textarea.form-error:focus, select.form-error:focus { border: 1px solid rgba(185, 74, 72, 0.39); background-color: rgba(255, 122, 13, 0.06); }

input.form-error + label + .input-group-addon { background-color: rgba(255, 122, 13, 0.06); border-color: rgba(185, 74, 72, 0.39); }
input.form-error:focus + label + .input-group-addon { background-color: rgba(255, 122, 13, 0.06); border-color: #FF7A0D; }
.form-control:focus + .input-group-addon { border-color: rgba(46, 46, 46, 0.4); }


input.form-error::-webkit-input-placeholder { color: rgba(185, 74, 72, 0.6) !important; }
input.form-error::-moz-placeholder { color: rgba(185, 74, 72, 0.6) !important; }
input.form-error:-moz-placeholder { color: rgba(185, 74, 72, 0.6) !important; }
input.form-error:-ms-input-placeholder { color: rgba(185, 74, 72, 0.6) !important; }



.bbl{color:#fff; font-size:20px;}
@media(min-width:768px){
	
.bbl{font-size:30px;}
	
}



.creator { width: 71px; height: 31px; display: block; background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEcAAAATCAYAAAG1qCBoAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6NEYxMzM5QTE4NjZFMTFFN0IwOEZDNjg0MUIwM0Q3NEQiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6NEYxMzM5QTI4NjZFMTFFN0IwOEZDNjg0MUIwM0Q3NEQiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo0RjEzMzk5Rjg2NkUxMUU3QjA4RkM2ODQxQjAzRDc0RCIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDo0RjEzMzlBMDg2NkUxMUU3QjA4RkM2ODQxQjAzRDc0RCIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PpkA+BgAAAdlSURBVHjaYmBgYHj2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') no-repeat left center; text-align: center; margin:0 auto; }
