/*
* ----------------------------------------------------------------------------------------
Author       : wordpressboss
Template Name: Nista - Personal Portfolio Template
Version      : 1.0
* ----------------------------------------------------------------------------------------
*/

/*
* ----------------------------------------------------------------------------------------
* 01.GLOBAL CSS STYLE
* 02.PRELOADER & BOUNCE CCS STYLE
* 03.HOMEPAGE CSS STYLE
    -LOGO CSS
    -MENU CSS
    -VIDEO BACKGROUND CSS STYLE
* 04.ABOUT CSS STYLE
* 05.SKILLS CSS STYLE
* 06.SERVICE CSS STYLE
    -SINGLE SERVICE CSS
* 07.WORK CSS STYLE
* 08.COMPLETE PROJECT CSS STYLE
* 09.TESTIMONIAL CSS STYLE
* 10.BLOG CSS STYLE
* 11.CONTACT CSS STYLE
* 12.MAP CSS STYLE
* 13.FOOTER CSS STYLE
* ----------------------------------------------------------------------------------------
*/

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

body {
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
    height: 100%;
    font-family: 'Raleway', 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;	
    font-size: 14px;
    font-weight: 400;
}

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

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:80px 0px;
}

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

.section-title h2 {
    margin-top: 0;
    font-weight: 700;

    font-size: 40px;
    margin-bottom: 0;
}

.section-title p {
    font-weight: 300;
    font-size: 14px;
}


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



.img-hover img {
    -webkit-transition: all .3s ease; /* Safari and Chrome */
  	-moz-transition: all .3s ease; /* Firefox */
  	-o-transition: all .3s ease; /* IE 9 */
  	-ms-transition: all .3s ease; /* Opera */
  	transition: all .3s ease;
  	position:relative;
}
.img-hover img:hover {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform:translateZ(0) scale(1.20); /* Safari and Chrome */
    -moz-transform:scale(1.20); /* Firefox */
    -ms-transform:scale(1.20); /* IE 9 */
    -o-transform:translatZ(0) scale(1.20); /* Opera */
    transform:translatZ(0) scale(1.20);
}
  

  
.grayscale {
  -webkit-filter: brightness(1.10) grayscale(100%) contrast(90%);
  -moz-filter: brightness(1.10) grayscale(100%) contrast(90%);
  filter: brightness(1.10) grayscale(100%); 
}








}

      
#preloader-area {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    background: #000;
    width: 100%;
    height: 100%;
    text-align: center
}

.loader {
    position: relative;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center
}



h1.service_main_heading {
    color: #0181EC;
    font-size: 28px;
}

ul.custom_ul li {
    margin-left: 10px;
}

li {
    color: #494949;
}

.single-blog .blog-item blockquote em {
    margin-right: 15px;
    text-align: center;
    color: #ffffff;
    line-height: 65px;
    width: 50px;
    height: 50px;
    background-color: #0181EC;
    display: block;
    font-size: 34px;
    float: left;
}

.single-blog .blog-item blockquote {
    border-left: none;
    font-family: 'Georgia', serif;
    font-size: 16px;
    font-style: italic;
    color: #888888;
    display: block;
}

.single-blog .blog-item .down-content .post-info {
    border-left: 4px solid #0181EC;
    padding-left: 15px;
}

.single-blog .blog-item p {
    margin-top: 20px;
}


.portfolio-box {
    background-color: rgb(240, 93, 91);
    margin: 0;
    padding: 6px 0px;
    color: #fff;
}

.sitename{
	color: white;
    font-size: 16px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}




.loader div {
    display: inline-block;
    background-color: #f25f5d;
    width: 14px;
    height: 14px;
    margin: 3px;
    border-radius: 50%;
    -webkit-animation: bouncedelay 1.2s infinite ease-in-out;
    animation: bouncedelay 1.2s infinite ease-in-out;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

.loaded #loader-wrapper {
    visibility: hidden;
    background: rgba(255, 255, 255, 0);
    -webkit-transition: ease-out .3s;
    transition: ease-out .3s
}

.loaded #loader-wrapper,
.loaded .loader {
    -webkit-transition: ease-out .3s;
    -moz-transition: ease-out .3s;
    -o-transition: ease-out .3s
}

.loaded .loader {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transition: ease-out .3s;
    transition: ease-out .3s
}

.loader .bounce1 {
    -webkit-animation-delay: -.32s;
    animation-delay: -.32s
}

.loader .bounce2 {
    -webkit-animation-delay: -.16s;
    animation-delay: -.16s
}

@-webkit-keyframes bouncedelay {
    0%,
    100%,
    80% {
        -webkit-transform: scale(0);
        transform: scale(0)
    }
    40% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes bouncedelay {
    0%,
    100%,
    80% {
        -webkit-transform: scale(0);
        transform: scale(0)
    }
    40% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}


/*
* ----------------------------------------------------------------------------------------
* 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(../images/bg/bg.jpg);
    background-size: cover;
    z-index: 1;
}

.welcome-image-area:after {
    position: absolute;
    background: rgba(0, 0, 0, 0.73);
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    z-index: -1;
}.bg-digitalmarket {    width: 45px; height: 45px;    background: url('css_sprites.html') -10px -10px;}.bg-MobApp {    width: 45px; height: 45px;    background: url('css_sprites.html') -75px -10px;}.bg-php_devl {    width: 45px; height: 45px;    background: url('css_sprites.html') -10px -75px;}.bg-seoMarkig {    width: 45px; height: 45px;    background: url('css_sprites.html') -75px -75px;}.bg-softwaredevl {    width: 45px; height: 45px;    background: url('css_sprites.html') -140px -10px;}.bg-webdsign {    width: 45px; height: 45px;    background: url('css_sprites.html') -140px -75px;}		.accordion {    background-color: #fafafa;    color: #444;    cursor: pointer;    padding: 32px;    width: 60%;    border: none;    text-align: center;    outline: none;    font-size: 50px;    transition: 0.4s;}.accordion:after {    content: '\002B';    color: #777;    font-weight: bold;    float: right;    margin-left: 5px;}.active:after {    content: "\2212";}.panel {    padding: 0 18px;    background-color: #fafafa;    max-height: 0;    overflow: hidden;    transition: max-height 0.2s ease-out;}

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

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

.header-text2 h2 {
    font-size: 10px;
    color: #000;
    font-weight: 400;
    margin-bottom: 40px;
    text-transform: capitalize;
    background: #f25f5d;
    display: inline-block;
    padding: 6px 12px;
}

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

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

.header-text h2 {
    font-size: 20px;
    color: #000;
    font-weight: 400;
    margin-bottom: 40px;
    text-transform: capitalize;
    background: #f25f5d;
    display: inline-block;
    padding: 6px 12px;
}

.header-social-links {
    margin-top: 35px;
}

.header-social-links li {
    display: inline-block;
    margin: 0px 6px;
}

.header-social-links li a {
    font-size: 20px;
    color: #fafafa;
}


strong.text-rotator span {
    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 {
    padding-top: 30px;
    padding-bottom: 25px;
    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 {
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.logo a {
    color: #fff;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 18px;
    letter-spacing: 4px;
}

.mainmenu .navbar-nav li {
    margin-left: 30px;
}

.mainmenu .navbar-nav li a {
    color: #fff;
    padding: 0;
    text-transform: uppercase;
    font-size: 13px;
    -webkit-transition: .3s;
    transition: .3s;
    font-weight: 600;
}

.mainmenu .navbar-nav li a span:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: #f25f5d;
    visibility: hidden;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.mainmenu .navbar-nav li a:hover span:before {
    visibility: visible;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}

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

.navbar {
    min-height: 0px;
    margin: 0;
}

.menu-bg {
    background: white;
    box-shadow: 0 2px 10px -1px rgba(87, 97, 100, 16.35);
    -webkit-transition: .3s;
    transition: .3s;
    padding-top: 10px;
    padding-bottom: 10px;
}

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

.menu-bg .mainmenu .navbar-nav li a {
    color: black;
	   
}

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

.menu-bg .mainmenu .navbar-nav li a span:before {
    background: #f25f5d;
}






.bg-digitalmarket {
    width: 45px; height: 45px;
    background: url('css_sprites.html') -10px -10px;
}


.bg-MobApp {
    width: 45px; height: 45px;
    background: url('css_sprites.html') -75px -10px;
}


.bg-php_devl {
    width: 45px; height: 45px;
    background: url('css_sprites.html') -10px -75px;
}


.bg-seoMarkig {
    width: 45px; height: 45px;
    background: url('css_sprites.html') -75px -75px;
}


.bg-softwaredevl {
    width: 45px; height: 45px;
    background: url('css_sprites.html') -140px -10px;
}

.bg-webdsign {
    width: 45px; height: 45px;
    background: url('css_sprites.html') -140px -75px;
}

/*
* ----------------------------------------------------------------------------------------
* 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 {}

.about-text h2 {
    font-size: 30px;
    margin-bottom: 15px;
    font-weight: 300;
    margin-top: 0;
}

.about-text h2 strong {
    font-weight: 700;
}

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

.about-text a {
    display: inline-block;
    background: #f25f5d;
    color: #000;
    padding: 6px 10px;
    margin-top: 20px;
    border: 1px solid #f25f5d;
    text-transform: capitalize;
    font-size: 14px;
    font-weight: 700;
}

.about-text a:hover {
    background: #f25f5d;
    border: 1px solid #f25f5d;
    -webkit-transition: .3s;
    transition: .3s;
    color: #000;
}

.about-right ul li {
    width: 40%;
    float: left;
    margin-bottom: 25px;
    color: #333;
    border-bottom: 1px dotted #ccc;
    display: inline-block;
    margin-right: 50px;
    padding-bottom: 10px;
}
.about-right ul li i{
    margin-right: 10px;
    color: #f25f5d;
}
/*
* ----------------------------------------------------------------------------------------
* 06.SERVICE CSS STYLE
* ----------------------------------------------------------------------------------------
*/

.service-area {
    background: #fafafa;
}

.single-service {
    text-align: center;
    background: #fff;
    
    border-radius: 3px;
}

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

.single-service:hover.single-service i {
    color: #000;
    font-size: 40px;
    -webkit-transition: .3s;
    transition: .3s;
}

.single-service h2 {
    font-size: 15px;
    text-transform: capitalize;
    font-weight: 700;
    margin: 20px 0px;
    -webkit-transition: .3s;
    transition: .3s;
    color: #8da8be;
	    cursor: pointer;
}

.btn-success {
    color: #fff;
    background-color: #1081bd!important;
    border-color: #4cae4c;
}


	.categorybox {
    margin-bottom: 20px;
}

.categorybox img:hover {
   
}

.portfolio-box {
    box-shadow: 1px 1px 4px rgba(0,0,0,0.2);
    border-radius: 3px;
    border: #1081bd solid 2px;
    margin-bottom: 20px;
    -webkit-animation: mymove 0.5s;
}


* {
    box-sizing: border-box;
}

.columns {
    float: left;
    width: 33.3%;
    padding: 8px;
}

.price {
    list-style-type: none;
    border: 1px solid #eee;
    margin: 0;
    padding: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.price:hover {
    box-shadow: 0 8px 12px 0 rgba(0,0,0,0.2)
}

.price .header {
    background-color: #111;
    color: white;
    font-size: 25px;
}

.price .header:hover {
    background-color: #1081bd;
    color: white;
    font-size: 25px;
}

.price li {
    border-bottom: 1px solid #eee;
    padding: 10px;
    text-align: center;
	    cursor: pointer;
}

.price li:hover {
   background-color:#1081bd;
   color: white;
       cursor: pointer;
}
.price .grey {
    background-color: #eee;
    font-size: 20px;
}

.button {
    background-color: #1081bd;
    border: none;
    color: white;
    padding: 10px 25px;
    text-align: center;
    text-decoration: none;
    font-size: 18px;
}

@media only screen and (max-width: 600px) {
    .columns {
        width: 100%;
    }
}


	.categorybox {
    margin-bottom: 20px;
}

.course{
	text-align:center;
	color:green;
}
.course1{
	text-align:center;
	font-family:Bradley Hand ITC;
}
.cours2{
	margin-top:30px;
}

.cours2{
	position:relative;
	margin-bottom:50px;
	
}


.cours3{
	-border:1px solid red;
	position:absolute;
	top:-100px;
	opacity:0;
	-bottom:100px;
	-background-color:rgba(142,198,63,.8);
	background-color:rgba(0,0,0,0.3);
	color:white;
	padding:10p;
}
.cours2:hover .cours3 {
	opacity:1;
	top:0px;
	transition:1s;
}
.cours4{
	position:absolute;
	-border:1px solid red;
	-margin-top:-80px;
	padding-top:20px;
	width:100%;
	height:80px;
	opacity:0;
	bottom:-50px;
	-background-color:rgba(142,198,63,.8);
	background-color:rgba(0,0,0,0.3);
}
.cours2:hover .cours4{
	opacity:1;
	bottom:0;
	transition:1s;
}
.cours2:hover .hover{
	transform:scale(1.3);
	transition:1s;
}
.cours7{
	border:1px solid rgb(73,183,43);
	background-color:rgb(73,183,43);
	color:white;
	font-size:18px;
	padding:10px 15px;
	border-radius:5px 20px;
}
.cours7:hover{
	background-color:transparent;
	color:rgb(73,183,43);
	border:1px solid rgb(73,183,43);
	transition:1s;
}

.cou:hover{
	background-color:transparent !important;
	color:rgb(237,78,110) !important;
	border:1px solid rgb(237,78,110) !important;
}


				.exprlst .icnimg>img {
    display: inline-block;
    width: 45px;
}


















#f25f5d
/*
* ----------------------------------------------------------------------------------------
* 07.WORK CSS STYLE
* ----------------------------------------------------------------------------------------
*/

.work {}

.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: #333;
    border: none;
    cursor: pointer;
    font-size: 12px;
    border-bottom: 2px solid transparent;
}

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

ul.work li.active {
    color: #000;
    border-bottom: 2px solid #f25f5d;
}

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

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

.work .item {
    padding: 0;
    margin: 0;
    margin-bottom: 30px;
}

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

.work .grid figure {
    height: 148px!important;
    position: relative;
    float: left;
    overflow: hidden;
    margin: 10px 1%;
    min-width: 300px;
    max-width: 480px;
    max-height: 360px;
    width: 100%;
    height: auto;
    background: #f25f5d;
    text-align: center;
    cursor: pointer;
    padding: 0;
    margin: 0;
}

.work figure.effect-bubba h2 {
    margin-top: 30%;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    font-size: 18px;
    text-transform: capitalize;
    font-weight: 600;
    -webkit-transition: .3s;
    transition: .3s;
    display: inline-block;
    padding: 2px 10px;
    color: #fff;
  
}

.work figure.effect-bubba p {
    font-size: 16px;
    text-transform: lowercase;
}

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


/*
* ----------------------------------------------------------------------------------------
* 08.COMPLETE PROJECT CSS STYLE
* ----------------------------------------------------------------------------------------
*/

.complete-project-area {
    padding: 100px 0px;
    position: relative;
    background: url(../images/bg/bg.jpg);
    background-size: cover;
    z-index: 1;
    background-attachment: fixed;
}

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

.single-project-complete {
    text-align: center;
}

.single-project-complete i {
    font-size: 50px;
    color: #f25f5d;
}

.single-project-complete h2 {
    font-size: 40px;
    font-weight: 900;
    color: #fff;
}

.single-project-complete h3 {
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 300;
    color: #fff;
}


/*
* ----------------------------------------------------------------------------------------
* 09.TESTIMONIAL CSS STYLE
* ----------------------------------------------------------------------------------------
*/

.testimonial-area {
    background: #FAFAFA;
}

.testimonial-area .section-title h2 {
    color: #fff;
}

.testimonial-list {}

.single-testimonial {}

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

.single-testimonial h3 {
    font-size: 12px;
    text-transform: capitalize;
    font-weight: 300;
    color: #000;
    margin-top: 0;
}

.single-testimonial p {
	line-height: 28px;
	color: #000;
	padding: 20px 250px;
}
.single-testimonial i {
    color: #f25f5d;
    background: #000;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    line-height: 30px;
}

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


/*
* ----------------------------------------------------------------------------------------
* 11.CONTACT CSS STYLE
* ----------------------------------------------------------------------------------------
*/

.contact-me-area {}

.contact-form {
    border-radius: 3px;
    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: #fff;
    background: none;
    padding: 10px 10px;
    border: 1px solid #f25f5d;
    font-size: 14px;
    border-radius: 0px;
    font-weight: 700;
    -webkit-transition: .3s;
    transition: .3s;
    background: #f25f5d;
    text-transform: capitalize;
}

.contact-form input[type='submit']:hover {
    background: #f25f5d;
    border: 1px solid #f25f5d;
    color: white;
    -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;
}


/*
* ----------------------------------------------------------------------------------------
* 12.MAP CSS STYLE
* ----------------------------------------------------------------------------------------
*/

#map {
    height: 350px;
}


/*
* ----------------------------------------------------------------------------------------
* 13.FOOTER CSS STYLE
* ----------------------------------------------------------------------------------------
*/


.footer-area {
    background: #FAFAFA;
}

.single-contact-info {
    text-align: center;
    background: #fff;
    padding: 30px;
	    box-shadow: 0 2px 10px -1px rgba(87, 97, 100, 1);
}

.single-contact-info:hover {
   
	    box-shadow: 0 2px 10px -1px black;
}

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

.single-contact-info h2 {
    font-size: 14px;
    margin-top: 40px;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: 700;
    color: #000;
    letter-spacing: 3px;
}

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

.footer-text {
    margin-top: 70px;

}

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

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

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

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



/*
* ----------------------------------------------------------------------------------------
* 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: 60px;
    color: #333;
    text-transform: uppercase;
    font-weight: 900;
}

.preview-header-top-area p {
    color: #333;
    font-size: 30px;
    font-weight: 300;
}

.main h2 {
    color: #000;
}

.main {
    margin-bottom: 180px;
}
