/*
* ----------------------------------------------------------------------------------------
Author       : Perfect-coder
Template Name: Linda - 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
    -SINGLE SERVICE CSS
* 06.WORK CSS STYLE
* 07.TESTIMONIAL CSS STYLE
* 08.CONTACT CSS STYLE
* 09.FOOTER CSS STYLE
* 10.BLOG CSS STYLE
* ----------------------------------------------------------------------------------------
*/


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

@import url(http://fonts.googleapis.com/css?family=Raleway:400,600,700);

body {
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
    letter-spacing: 1px;
    height: 100%;
    font-family: 'Poppins', sans-serif;
}

html,
body {
    height: 100%
}

h1,
h2,
h3,
h4,
h5,
h6 {}

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;
}

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

.no-padding {
    padding: 0
}

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

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

.section-title h2 {
    margin-top: 0;
    font-weight: 900;
    text-transform: capitalize;
    font-size: 40px;
}

.section-title h2 span {
    color: #FFD504;
}


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

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

.double-bounce1,
.double-bounce2 {
    width: 100%;
    height: 100%;
    background-color: #FFD504;
    opacity: 0.6;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
    position: absolute;
    top: 50%;
    left: 50%;
    height: 20px;
    width: 20px;
    margin-left: -10px;
    margin-top: -10px;
    -webkit-animation: sk-bounce 4.0s infinite ease-in-out;
    animation: sk-bounce 2.0s infinite ease-in-out;
}

.double-bounce2 {
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s;
}

@-webkit-keyframes sk-bounce {
    0%,
    100% {
        -webkit-transform: scale(0.0)
    }
    50% {
        -webkit-transform: scale(1.0)
    }
}

@keyframes sk-bounce {
    0%,
    100% {
        transform: scale(0.0);
        -webkit-transform: scale(0.0);
    }
    50% {
        transform: scale(1.0);
        -webkit-transform: scale(1.0);
    }
}


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

.welcome-area {
    height: 100%;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
}

.welcome-image-area {
    position: relative;
    height: 100%;
    background: url(http://baroquedub.co.uk/about/assets/images/bg/bg.jpg);
    background-size: cover;
    z-index: 1;
}
.welcome-image-area.pink {

    background: url(http://baroquedub.co.uk/about/assets/images/bg/bg.png);

}

.welcome-image-area: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;
}

.header-text h2 {
    color: #fff;
    font-size: 80px;
    margin: 0;
    font-weight: 900;
    text-transform: capitalize;
}

.header-text .home-arrow-down {
    text-align: center;
    position: absolute;
    bottom: -240px;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.header-text .home-arrow-down .btn {
    font-size: 35px;
}

.header-text .home-arrow-down .fa {
    color: #ffffff;
    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: #FFD504;
    text-transform: uppercase;
    letter-spacing: 6px;
    /*font-weight: 900;
    font-size: 40px;*/
	
	/* new */
	    font-family: 'Raleway', sans-serif;
   	 font-weight: 700;
	   /* line-height: 38px;*/
	    font-size: 22px;
}


.mainmenu .navbar-nav li a {
    color: #fff;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    padding: 30px 15px;
    -webkit-transition: .3s;
    transition: .3s;
    font-weight: 300;
}

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

.mainmenu .navbar-nav li.active a {
    color: #FFD504;
}

.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;
	margin-bottom: -2px; /* jdp fix */
}

.menu-bg {
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    background: #000;
}

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

.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: #FFD504;
}

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


/*
* ----------------------------------------------------------------------------------------
* 04.ABOUT CSS STYLE
* ----------------------------------------------------------------------------------------
*/

.about-text p {
    font-weight: 300;
}

.about-text h2 {
    text-transform: uppercase;
    font-size: 22px;
    margin-top: 0;
    margin-bottom: 30px;
}

.about-text h2 span{
    color: #FFD504;
    margin: 0px 5px;
}


/*
* ----------------------------------------------------------------------------------------
* 05.SERVICE CSS STYLE
* ----------------------------------------------------------------------------------------
*/

.service-area {
    background: #F6F6F6;
}

.single-service {
    text-align: center;
    padding: 30px 20px;
}

.single-service i {
    font-size: 50px;
    margin-bottom: 10px;
    color: #000;
    height: 100px;
    width: 100px;
    border-radius: 50%;
    line-height: 100px;
    -webkit-transition: .3s;
    transition: .3s;
    border: 1px solid #000;
}

.single-service:hover.single-service i {
    border: 1px solid #FFD504;
    -webkit-transition: .3s;
    transition: .3s;
    /*-webkit-transform: rotate(360deg);
    transform: rotate(360deg);*/
    color: #FFD504;
}

.single-service:hover.single-service h2 {
    -webkit-transition: .3s;
    transition: .3s;
    color: #000;
}

.single-service h2 {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    margin: 10px 0px;
    -webkit-transition: .3s;
    transition: .3s;
    color: #333;
}

.single-service p {
    margin-bottom: 0;
    color: #333;
}


/*
* ----------------------------------------------------------------------------------------
* 06.WORK CSS STYLE
* ----------------------------------------------------------------------------------------
*/

.work {
    background: #fff;
}

.work-inner .mix {
    display: none;
}

ul.work {
    padding: 0;
    list-style: none;
    margin-left: 8px;
    text-align: center;
}

ul.work li {
    display: inline-block;
    padding-top: 8px;
    padding-bottom: 4px;
    margin: 0 8px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 300;
    color: #000;
    border: none;
    cursor: pointer;
    font-size: 12px;
    border: 1px solid #ccc;
    border-radius: 30px;
    padding-left: 15px;
    padding-right: 15px;
}

ul.work li:hover {
    color: #000;
    border: 1px solid #FFD504;
    -webkit-transition: .3s;
    transition: .3s;
}

ul.work li.active {
    border: none;
    color: #000;
    border: 1px solid #FFD504;
}

.work .item {
    margin-top: 30px;
    position: relative;
    overflow: hidden;
}

.work .item img {
    width: 100%;
}

.portfolio-caption {
    position: absolute;
    left: 0;
    top: 0;
    text-align: center;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, .9);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -webkit-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
}

.portfolio-caption h4 {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 700;
    color: #fff;
    -webkit-transition: .3s;
    transition: .3s;
    position: absolute;
    bottom: 0;
    left: 5%;
    text-align: center;
}

.portfolio-caption h3 {
    font-size: 12px;
    text-transform: capitalize;
    font-weight: 300;
    color: #fff;
    -webkit-transition: .3s;
    transition: .3s;
    position: absolute;
    bottom: 0;
    left: 5%;
    text-align: center;
}

.work .item:hover .portfolio-caption {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    -webkit-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
}

.work .item:hover .portfolio-caption h4 {
    margin-bottom: 130px;
    -webkit-transition: .3s;
    transition: .3s;
}

.work .item:hover .portfolio-caption h3 {
    margin-bottom: 100px;
    -webkit-transition: .5s;
    -webkit-transition: .53s;
    transition: .53s;
}


/*
* ----------------------------------------------------------------------------------------
* 07.TESTIMONIAL CSS STYLE
* ----------------------------------------------------------------------------------------
*/

.testimonial-area {
    background: #F6F6F6;
}

.testimonial-list {}

.single-testimonial {}

.single-testimonial h2 {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 700;
}

.single-testimonial p {
    font-style: italic;
    padding: 20px 200px;
}
.owl-theme .owl-controls .owl-buttons div {
	color: #FFD504;
	margin: 5px;
	padding: 3px 10px;
	font-size: 12px;
	border-radius: 30px;
	background: #000;
	height: 30px;
	width: 30px;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

/*
* ----------------------------------------------------------------------------------------
* 08.CONTACT CSS STYLE
* ----------------------------------------------------------------------------------------
*/

.contact-me-area {
    background-color: #F6F6F6;
}


.contact-form {
    margin-top: 30px;
}

.form-control {
    display: block;
    border: 0px;
    width: 100%;
    height: 45px;
    padding: 5px 0px;
    font-size: 16px;
    line-height: 1.42857143;
    color: #333;
    background-color: transparent;
    background-image: none;
    border-radius: 0px;
    box-shadow: none;
    border-bottom: 1px solid rgba(0, 0, 0, .5);
    margin-bottom: 25px;
}

.form-control:focus {
    border-color: #000;
    outline: 0;
    box-shadow: none;
}

.contact-form input[type='submit'] {
    display: inline-block;
    color: #333;
    background: none;
    padding-top: 14px;
    padding-bottom: 10px;
    padding-left: 24px;
    padding-right: 24px;
    border: 1px solid #ccc;
    text-transform: uppercase;
    font-size: 12px;
    border-radius: 0px;
    font-weight: 600;
    -webkit-transition: .3s;
    transition: .3s;
    letter-spacing: 3px;
    border-radius: 30px;
}

.contact-form input[type='submit']:hover {
    border: 1px solid #FFD504;
    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: #0C0B0B;
    padding: 100px 0px;
}

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


/*
* ----------------------------------------------------------------------------------------
* 10.BLOG CSS STYLE
* ----------------------------------------------------------------------------------------
*/

.single-blog-heading {
    background: #000;
    /*padding: 100px 0px; original with header */
	padding: 40px 0px;
}

.single-blog a.blog-title {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    -webkit-transition: .3s;
    transition: .3s;
    color: #333;
    display: block;
    text-align: center;
    margin-top: 15px;
    margin-bottom: 5px;
}
.single-blog a img{
margin-bottom: 10px;

	 opacity: 0.8;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
    -webkit-transform: scale(.9);
    -moz-transform: scale(.9);
    -ms-transform: scale(.9);
    -o-transform: scale(.9);
    transform: scale(.9);
}
.single-blog a:hover img{


    opacity: 1;

    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

.single-blogarea a {
    color: #DD9700;
}

.single-blogarea a:hover {
    color: #D97200;
}

.single-blog a.blog-title:hover {
    color: #000;
}



.single-blog p {
    text-align: center;
}

.single-blog-heading h2 {
    color: #fafafa;
    text-transform: capitalize;
    font-size: 26px;
}

.single-blog-heading-text h4 a {
    color: #f8f8f8;
}

.comment-section {
    margin-top: 30px;
}

.single-blog-details,
.single-sidebar {
    border-radius: 3px;
    padding-top: 30px;
}

.search input {
    border: 1px solid #e3e8f0;
    box-shadow: none;
    color: #333;
    height: 50px;
    border-radius: 0px;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 10px;
}

.single-sidebar h4 {
    /*background: #FFD504;*/
    padding: 10px;
    color: #000;
    text-transform: capitalize;
    font-size: 16px;
    /*text-align: center;*/
    font-weight: 600;
}

a.re-button {
    text-transform: uppercase;
    color: #000;
    font-size: 14px;
    margin-top: 10px;
}

.single-sidebar,
.recent-single {
    margin-bottom: 30px;
}

.single-blog-details h4,
.comment-section h4,
.contact-form h4 {
    font-size: 16px;
    margin-top: 35px;
    text-transform: uppercase;
    font-weight: 600;
    border-bottom: 1px solid #ccc;
    margin-bottom: 30px;
    padding-bottom: 10px;
}

.single-comment {
    margin-bottom: 20px;
}

.single-comment h5 {
    font-size: 16px;
    color: #777;
}

.single-comment img {
    width: 120px;
}

.recent-single h4 {
    color: #333333;
}

.categories {}

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

.categories ul li {
    margin-bottom: 10px;
    color: #333333;
}

.categories ul li a {
    color: #333333;
}

.categories ul li a i {
    color: #000;
}

.blog-post {
    margin-top: 30px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
    margin-bottom: 30px;
}

.single-blog-form {
    margin-bottom: 30px;
}

a.learn-more {
    color: #00D664;
}

.blog-post-navigation .pager li > a,
.pager li > span {
    display: inline-block;
    padding: 10px 14px;
    background-color: #00D664;
    border: 1px solid #ddd;
    border-radius: 15px;
    width: 160px;
    border-radius: 30px;
    font-size: 14px;
    box-shadow: 0 20px 30px 0 rgba(0, 0, 0, .2);
    font-weight: 700;
    color: #fff;
}

.about-me-sidebar img {
    width: 160px;
    margin: 0 auto;
    border-radius: 50%;
    text-align: center;
    display: block;
}

.about-me-sidebar h2 {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    margin: 10px 0px;
    -webkit-transition: .3s;
    transition: .3s;
    color: #333;
    text-align: center;
}

.about-me-sidebar p {
    text-align: center;
}

.social-sidebar ul {
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}

.social-sidebar ul li {
    display: inline-block;
    margin: 10px 5px;
}

.social-sidebar ul li a {
    display: block;
    color: #000;
    font-size: 20px;
}

a.myLink,a:visited.myLink{
	color: #333;

}
a:hover.myLink,a:active.myLink,a:focus.myLink{
	color: #000;
	text-decoration: underline;
}