/*======================================
 Default css
======================================*/
@import url('https://fonts.googleapis.com/css?family=Cormorant+Garamond|Open+Sans');

* {
	margin: 0;
	padding: 0;
	outline: 0;
}

*:focus {
	outline: none;
}

.animate {
    visibility: hidden;
}

.no-js .animate,
.no-cssanimations .animate {
    visibility: visible;
}

body {
	position: relative;
	font-family: 'Open Sans', sans-serif; /* Default font-family */
	font-size: 14px; /* Default font-size */
    background-color: #fff; /* Body background color */
    color:#555555; /* Body text color */
    text-shadow: 1px 1px 1px rgba(0,0,0,0.004);
    overflow-x: hidden;
}


h1 {
    color: #000000;
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
}

h2 {
    color: #000000;
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    text-transform: uppercase;
    text-decoration: underline;
    font-weight: bold;
    letter-spacing: 1px;
}

h3 {
    color: #555555;
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
}

h4 {
    color: #555555;
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    text-transform: uppercase;
}

h5 {
    color: #555555;
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
}

p {
    color: #555555;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
}

/* Each section icon css */
.sec-icon {
    width: 35px;
    height: 35px;
    font-size: 16px;
    margin: 0 auto;
    padding: 7px;
    text-align: center;
    margin-bottom: -10px;
    color: #fff; /* Section icon color */
    background-color: #45ada8; /* icon background color */
    border-top-left-radius: 14px; /* icon border radius */
}

/* Each section title css */
h2.sec-title {
    font-weight: 700;
	text-align: center;
	position:relative;
    margin-bottom: 40px;
    line-height: 1.5;
}

h2.sec-title:after {
	 content: "";
    font-weight: 700;
    position: absolute;
    top: 100%;
    border-bottom: 3px solid #45ada8; /* section title underline color */
    left: 50%;
    text-align: center;
    width: 100px;
    margin-left: -50px;
    margin-top: 5px;
}

/* Each section description css */
.sec-desc {
    width: 65%;
    margin: 0 auto;
    text-align: center;
    font-family: 'Signika', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #4a4949; 
}

.sec-desc.desc-light {
    color: #fff;
}

/* anchor(link) css */
a {
    color: #555555;
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
	text-decoration: none;
	-webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

a:hover {
	color:#333; /* anchor(link) hover color */
	text-decoration: none;
}

a:focus,
a:active,
a:visited {
	text-decoration: none;
	color:#000000; /* anchor(link) focus, active, visited color */
	outline: none;
}

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


.no-padding {
    padding: 0 !important;
}

.no-margin {
    margin: 0;
}

.img-responsive {
    display: inline-block !important;
}

.hidden-desktop {
    display: none !important;
}

/*======================================
 Navbar css
======================================*/
.logo {
	float:left;
	font-size: 30px; /* logo font size */
	padding: 15px 0; /* logo padding */
	min-height:85px;
    line-height: 25px;
	color:#000000; /* logo color (if your not using an image for logo) */
	font-weight: 700;
}

ul.menu, .menu ul {
	float:right;
	position: relative;
    list-style: none;
    margin-left: 0;
    margin-bottom: 0;
    margin-right: -12px;
}

ul.menu li, .menu ul li {
	float:left;
	position: relative;
    font-weight: 600;
    font-size: 16px;
}

ul.menu li a, .menu ul li a {
	padding: 30px 12px;
	text-decoration: none;
	color:#555555;	/* navigation link color */
	display: inline-block;
    text-align: center;
    line-height: 25px;
    text-transform: uppercase;
}

/* navigation link css for active or current link */
ul.menu li.current-menu-item a, .menu ul li.current-menu-item a {
    color: #000000;
    text-decoration: underline;
}

ul.menu li a:hover, .menu ul li a:hover {
	color: #000000; /* navigation link hover color */
    text-decoration: underline;
}

.nav-bar {
	min-height:65px;
	position: fixed;
    padding: 0 15px;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff; /* navbar background color */
    z-index:9999;
     -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.nav-bar-shadow {
    -webkit-box-shadow: 0px 1px 10px 0px #333;
    -moz-box-shadow: 0px 1px 10px 0px #333;
    box-shadow: 0px 1px 10px 0px #333;
}

/* sub menu css */
.nav-bar ul.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 200%;
    background-color: #333;
    display: none;
}

.nav-bar ul.sub-menu:hover {
    display: block;
    opacity: 1;
}

.nav-bar ul.sub-menu li {
    width: 100%;
    float: none;
    text-align: center;
}

.nav-bar ul.sub-menu li.menu-item-has-children:hover {
    background-color: #444;
}

.nav-bar .menu ul.sub-menu li a {
    width: 100%;
    color: #fff;
    padding-top: 12px;
    padding-bottom: 12px;
}

.nav-bar .menu ul.sub-menu li a:hover {
    background-color: #444;
}

.nav-bar .sub-menu .sub-menu {
    left: 100%;
    top: 0;
    background-color: #333;
}

/*mobile menu css*/
.slicknav_menu {
    box-sizing: border-box;
    background-color: #fff;; /* navbar mobile background color */
    padding: 0 !important;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    display:none;
}

ul.slicknav_nav {
    text-align: center;
    background-color: #333; /* mobile menu slidedown area background color */
    list-style: none;
    margin-left: 0;
    margin-bottom: 0;
}

.slicknav_btn {
    margin: 18px 15px;
    background-color: transparent;
}

.slicknav_menu .slicknav_icon-bar {
    background-color: #333; /* mobile menu button bar color */
    height: 2px;
}

.slicknav_btn .slicknav_icon-bar + .slicknav_icon-bar {
    margin-top: 4px;
}

.slicknav_menu ul li {
    font-family: 'Signika', sans-serif;
	font-weight: 700;
	font-size: 16px;
}

.slicknav_nav a {
    margin:0;
    padding: 10px;
    color: #fff; /* mobile menu link color */
}

.slicknav_nav a:hover {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    background-color: transparent;
    color: #fff; /*navigation mobile link hover color */
}

/*mobile navigation active or current link color css */
.slicknav_nav li.current-menu-item a {
	color: #fff;
}



/*======================================
slider section css
======================================*/
#slider {
    position: relative;
    min-height: 300px;
    height: 100vh;
}

#slider .item {
    height: 100vh;
}

/* Carousel controls css */
#slider .owl-controls {
    margin-top: -60px;
    position: relative;
}

#testimonials .owl-theme .owl-controls {
    margin-top: 30px;
    position: relative;
}

.owl-theme .owl-controls .owl-page.active span {
    background-color: #999999;
}

.owl-theme .owl-controls .owl-page span {
    background-color: transparent;
    border: 2px solid #999999;
    margin: 5px;
}

.owl-theme .owl-controls .owl-page:hover span {
    background-color: #999999;
}

/* Home section scroll down arrow css */
.scroll-down {
    color: #555555;
    font-size: 30px;
    height: 45px;
    width: 45px;
    font-size: 40px;
    text-align: center; 
    display: block;
    position: absolute;
    bottom: 3.2em;
    left: 50%;
    margin-left: -22.5px;
    animation: scrollDown 2s linear infinite;
    -webkit-animation: scrollDown 2s linear infinite;
    -moz-animation: scrollDown 2s linear infinite;
}

.scroll-down:active,
.scroll-down:focus,
.scroll-down:visited {
    color: #999999;
}

@keyframes scrollDown {
    0%   {opacity: 0; bottom: 3.2em;}
    50%   {opacity: 1;}
    100% {opacity: 0; bottom: 1.2em;}
}

@-webkit-keyframes scrollDown {
    0%   {opacity: 0; bottom: 3.2em;}
    50%   {opacity: 1;}
    100% {opacity: 0; bottom: 1.2em;}
}

@-moz-keyframes scrollDown {
    0%   {opacity: 0; bottom: 3.2em;}
    50%   {opacity: 1;}
    100% {opacity: 0; bottom: 1.2em;}
}


/*======================================
process section css
======================================*/

#process {
	background-color:#F6F5F5;
    padding-top: 50px;
    padding-bottom: 50px;
}

/*======================================
intro section css
======================================*/
#intro {
    position: relative;
    min-height: 600px;
    height:100vh;
}

.intro-bg-wrap {
    clip: rect(0, auto, auto, 0);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.intro-bg {
    position: fixed;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    transform: translateZ(0);
}

#intro .container {
    display: table;
    height: 100%;
}

/* Home section overlay */
.overlay {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.12);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9;
}


/* Header personal info css */
.header-info-wrapper {
    padding-bottom: 7%;
    position: relative;
    z-index: 99;
    display: table-cell;
    vertical-align: bottom;
}

.page-title h1 {
    color: #333333;
    text-transform: capitalize;
    font-size: 60px;
    text-shadow: -1px -1px 10px #fff, 1px -1px 10px #fff, -1px 1px 10px #fff, 1px 1px 10px #fff;
}


/*======================================
about section css
======================================*/
#about {
	background-color: #fff;
    padding: 70px 0 30px;
}

.about-wrapper {
    overflow: hidden;
    position: relative;
}

.about-heading {
    text-align: center;
    margin-bottom: 30px;
}

.about-text-wrap {
    width: 70%;
    margin: 0 auto;
}

.about-img-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
}

#about-img-col {
    background-color: #fff;
    padding: 70px 0;
}

.about-img-col-wrapper {
    overflow: hidden;
    margin-bottom: -30px;
}

.about-img {
    text-align: center;
    margin-bottom: 30px;
}

.about-img img {
    opacity: 0.5;
    filter: alpha(opacity=50); /* For IE8 and earlier */
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.cta:hover, .cta:focus {
    color:#fff; /* call to action button hover color */
    background-color: #333;
}


/*======================================
Clients section css
======================================*/
#clients {
    padding-top: 70px;
    padding-bottom: 70px;
    background-color: #fff;
}

.client-wrapper {
    padding-top: 20px;
}

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

.single-client .client-image {
    display: inline-block;
}

.single-client .client-image a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 999;
}

/*
.single-client .client-image img {
    filter: url("data:image/svg+xml;utf8,&lt;svg xmlns=\'http://www.w3.org/2000/svg\'&gt;&lt;filter id=\'grayscale\'&gt;&lt;feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/&gt;&lt;/filter&gt;&lt;/svg&gt;#grayscale"); /* Firefox 10+, Firefox on Android *
    filter: gray; /* IE6-9 *
    -webkit-filter: grayscale(100%); /* Chrome 19+, Safari 6+, Safari 6+ iOS *
    opacity: .8;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease; 
}

.single-client .client-image img:hover {
  filter: url("data:image/svg+xml;utf8,&lt;svg xmlns=\'http://www.w3.org/2000/svg\'&gt;&lt;filter id=\'grayscale\'&gt;&lt;feColorMatrix type=\'matrix\' values=\'1 0 0 0 0, 0 1 0 0 0, 0 0 1 0 0, 0 0 0 1 0\'/&gt;&lt;/filter&gt;&lt;/svg&gt;#grayscale");
    -webkit-filter: grayscale(0%);
    opacity: 1; 
}
*/

.client-inner {
    position: relative;
}

.single-client:last-child .client-inner:before, .single-client:nth-child(3n) .client-inner:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding: 0 30px;
    border-right: 1px solid #e5e5e5;
    margin-left: -30px;
    webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}

.single-client:last-child .client-inner:after, .single-client:nth-last-child(2) .client-inner:after, .single-client:nth-last-child(3) .client-inner:after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding: 30px 0;
    border-bottom: 1px solid #e5e5e5;
    margin-top: -30px;
    webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}

.cl-hor-helper {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    padding: 0 30px;
    border-left: 1px solid #e5e5e5;
    margin-left: -30px;
}

.cl-ver-helper {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    padding: 30px 0;
    border-top: 1px solid #e5e5e5;
    margin-top: -30px;
}



/*======================================
Services section css
======================================*/
#service {
    padding: 70px 0;
    background-color: #fff;
}

.service-wrapper {
    overflow: hidden;
}

/* Timeline override css */
.VivaTimeline dl:before {
    width: 10px;
    margin-left: -5px;
    background-color: #fff;
    background-image: url(../img/service/dot-service.png);
    background-position: center;
}

/* Timeline override css */
.VivaTimeline dl:first-child:before {
    width: 10px;
    margin-left: -5px;
    background-color: #fff;
    background-image: url(../img/service/dot-service.png);
    background-position: center;
    top: 60px;
}

/* Timeline override css */
.VivaTimeline dl:last-child:before {
    width: 10px;
    margin-left: -5px;
    background-color: #fff;
    background-image: url(../img/service/dot-service.png);
    background-position: center;
    transform: translateY(-70%);
    -webkit-transform: translateY(-70%);
    -moz-transform: translateY(-70%);
}

.VivaTimeline dl dt {
    top: 50px;
    background-color: #45ada8; /* Timeline Year( 2016 ) background color */
    border-radius: 0;
    padding: 8px;
    margin: 0 auto;
    margin-bottom: 60px;
    font-weight: 600;
}

.VivaTimeline dl dt:first-child {
    top: 0;
    margin: 0 auto;
    margin-bottom: 10px;
}

.VivaTimeline dl dd .circ {
    background-color: #ffffff; /* Timeline bar circle background color */
    border-width: 0px;  /* Timeline bar circle border color */
    top: 20px;
    left: 50%;
    z-index: 200;
    width: 100px;
    height: 70px;
	padding: 10px 15px;
    margin-left: -50px;
    border-radius: 0px;
}

.VivaTimeline dl dd .circ:before {
    position: absolute;
    content: "";
    top: 50%;
    left: -50px;
    width: 50px;
    height: 9px;
    background-color: #ffffff;
    margin-top: -4.5px;
    background-image: url(../img/service/dot-service.png);
    background-position: center;
    z-index: 100;
}

.VivaTimeline dl dd .circ:after {
    position: absolute;
    content: "";
    top: 50%;
    right: -50px;
    width: 50px;
    height: 9px;
    background-color: #ffffff;
    margin-top: -4.5px;
    background-image: url(../img/service/dot-service.png);
    background-position: center;
    z-index: 100;
}

.VivaTimeline dl dd .time {
    color: #45ada8;  /* Timeline Month( may 06 ) color */
    font-weight: 600;
}

.VivaTimeline dl dd .events {
    padding: 0;
    background-color: transparent; /* Timeline header background color */
    border-radius: 0;
    color: #404040; /* Timeline text color */
    margin-top: 61px;
}

.VivaTimeline dl dd .events:nth-child(2n) {
    margin-top: 15px;
    margin-bottom: 30px;
}

.VivaTimeline dl dd .events:before {
    border-width: 0px;
}

.VivaTimeline dl dd.pos-left .events:before {
    right: -18px;
    border-color: transparent transparent transparent #45ada8; /* Timeline triangle color */
}

.VivaTimeline dl dd.pos-right .events:before {
    left: -18px;
    border-color: transparent #45ada8 transparent transparent; /* Timeline triangle color */
}

.VivaTimeline dl dd .events .events-object {
    margin-bottom: 5px;
}

.VivaTimeline dl dd.pos-right .events .events-header {
    line-height: 1.5;
    font-size: 16px;
    font-weight: 400;
    color: #555555; /* Timeline header text color */
    font-family: 'Open Sans', sans-serif;;
    padding: 10px;
    text-align: left;
    width: 70%;
    margin-left: 70px;
}

.VivaTimeline dl dd.pos-left .events .events-header {
    font-size: 20px;
    font-weight: 400;
    color: #555555; /* Timeline header text color */
    font-family: 'Cormorant Garamond', serif;
    padding: 5px;
    text-transform: uppercase;
    text-align: right;
    width: 100%;
    margin-left: -70px;
}

.VivaTimeline dl dd .events .events-body {
    background-color: #fff; /* Timeline body background color */
    padding: 25px 15px;
    border: 1px solid #ebebeb;
    border-top: none;
    font-size: 13px;
    line-height: 1.6;
}

.VivaTimeline dl dd .events .events-body .events-desc {
   text-indent: 0;
}

.VivaTimeline dl dd .events .events-body .events-desc h4 {
    margin: 0 0 10px;
}
.VivaTimeline dl dd .events .events-body .events-desc p {
    margin: 0;
}




.service-vertical-content {
	margin-top:75px;
	padding:15px 15px 35px 15px;
	border:3px solid #F6F5F5;
}

.service-vertical-content h3 {
	text-align:center;
    color: #000;
    font-size: 24px;
	margin-top:-50px;
	margin-bottom:25px;
}
.service-vertical-photo {
	border:7px solid #fff;
	position:relative;
	bottom:75px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 992px) {
	.service-vertical-wrapper {
	    display: -webkit-box;
	    display: -webkit-flex;
	    display: -ms-flexbox;
	    display:  flex;
	    flex-wrap: wrap;
	}
	.service-vertical-content {
		margin-top:75px;
		padding:15px;
		margin-bottom:-75px;
		border:3px solid #F6F5F5;
		position:relative;
		height:100%;
	}
	.service-vertical-wrapper::after {
		content:"\00a0";
	}
}

.service-horizontal-wrapper {
	margin:100px 50px 10px 100px;
	padding:10px;
	border:3px solid #F6F5F5;
	display: flex;
}
.service-horizontal-content {
	margin-left:-75px;
}
.service-horizontal-photo {
	border:7px solid #fff;
	position:relative;
	right:75px;
}
.service-horizontal-content h3 {
	text-align:center;
    color: #000;
    font-size: 24px;
}


/*======================================
icon box section css
======================================*/
#iconBox {
	padding: 70px 0 0;
	background-color: #fff; /*Secrvices section background color*/
}

.icon-box-text-wrap {
    width: 70%;
    margin: 0 auto;
}

.icon-box-wrapper {
    overflow: hidden;
    margin-bottom: -50px;
    padding-top: 70px;
}

.icon-box-nowrap-row {
    overflow: hidden;
    margin-bottom: -50px;
    padding-top: 70px;
}

.single-icon-box {
	text-align: center;
    margin-bottom: 50px;
}

#iconBox img {
    filter: url("data:image/svg+xml;utf8,&lt;svg xmlns=\'http://www.w3.org/2000/svg\'&gt;&lt;filter id=\'grayscale\'&gt;&lt;feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/&gt;&lt;/filter&gt;&lt;/svg&gt;#grayscale"); /* Firefox 10+, Firefox on Android */
    filter: gray; /* IE6-9 */
    -webkit-filter: grayscale(100%); /* Chrome 19+, Safari 6+, Safari 6+ iOS */
    opacity: .5;
	height:83px;
}

.single-icon-box h2 {
    margin: 40px 0 20px;
    text-decoration: underline;
}

/*======================================
Home feeds section css
======================================*/
#feeds {
    padding: 70px 0 50px;
    background-color: #fff; /*Secrvices section background color*/
}

.feed-wrapper {
    overflow: hidden;
    margin-bottom: -30px;
    padding-top: 20px;
}

.single-feed {
    margin-bottom: 30px;
    padding: 15px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
}


.single-feed:hover {
    background-color: #f6f5f5;
}

.single-feed:hover .feed-img img {
/*    opacity: 1;
    filter: alpha(opacity=100); /* For IE8 and earlier */
}

.single-feed:hover .feed-img .date-bg {
    background-image: url(../img/date-bg-grey.png);
}


.single-feed h3 {
    margin: 40px 0 20px;
    text-decoration: underline;
}

.feed-img {
    text-align: center;
}

.feed-img-inner {
    position: relative;
    display: block;
}

.feed-img img {
    width: 100%;
/* 		opacity: 0.5;
    filter: alpha(opacity=100); /* For IE8 and earlier */
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.feed-img .date {
    position: absolute;
    top: 0;
    left: 0;
    margin-top: 28px;
    text-align: center;
}

.feed-img .date-bg {
    position: absolute;
    top: 0;
    left: 0;
    margin-left: -18px;
    margin-top: 20px;
    background-image: url(../img/date-bg.png);
    width: 66px;
    height: 73px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
}


.feed-img .month {
    color: #ffffff;
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    text-transform: uppercase;
}

.feed-img .day {
    color: #ffffff;
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px;
    margin-top: -8px;
}


/*======================================
News feed section css
======================================*/
#latestNewsFeed {
    padding: 100px 0 50px;
    background-color: #fff; /*Secrvices section background color*/
}

#latestNewsFeed .text-center h1 {
    text-transform: capitalize;
    font-size: 50px;
    color: #3a3a3a;
    letter-spacing: 2px;
}

.news-feed-wrapper {
    overflow: hidden;
    margin-bottom: -30px;
    padding-top: 30px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display:  flex;
    flex-wrap: wrap;
}

.single-news-feed {
    margin-bottom: 30px;
    background-color: #f6f5f5;
}

.normal-news-feed .single-news-feed {
    position: relative;
    height: 100%;
}

.normal-news-feed, .large-news-feed {
    display: flex;
    flex-direction: column;
}

.news-feed-content {
    text-align: center;
    padding: 0 20px 40px;
}

.normal-news-feed .news-feed-content {
    text-align: center;
    padding: 0 20px 40px;
    min-height: 320px;
}

.normal-news-feed .news-feed-content .sep {
    height: 65px;
    margin-top: 20px;
}


.large-news-feed .news-feed-content {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 350px;
    min-height: 350px;
    margin-top: -15px;
    margin-left: -175px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    transform: translateY(-50%);
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.7)
}

.large-news-feed .news-feed-content h1 {
    margin-top: 10px;
}

.cta {
    background-color: #707070;
    color: #fff;
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 18px;
    padding: 20px;
    display: inline-block;
    width: 245px; /* call to action button width */
    margin-top: 60px;
}

.normal-news-feed .cta {
    position: absolute;
    bottom: 0;
    left: 50%;
    margin-left: -122.5px;
    margin-bottom: 40px;
}

.cta:hover, .cta:focus {
    color:#fff; /* call to action button hover color */
    background-color: #333;
}


.single-news-feed h1 {
    margin: 40px 0 20px;
}

.news-feed-img {
    text-align: center;
}

.news-feed-img-inner {
    position: relative;
    display: block;
}

.news-feed-img img {
    width: 100%;
}

.news-feed-img .date {
    position: absolute;
    top: 0;
    left: 0;
    margin-top: 30px;
    margin-left: 45px;
    text-align: center;
}

.news-feed-img .date-bg {
    position: absolute;
    top: 0;
    left: 0;
    margin-left: 20px;
    margin-top: 20px;
    background-image: url(../img/news-date-bg.png);
    width: 87px;
    height: 88px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
}


.news-feed-img .month {
    color: #ffffff;
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    text-transform: uppercase;
}

.news-feed-img .day {
    color: #ffffff;
    font-family: 'Cormorant Garamond', serif;
    font-size: 38px;
    margin-top: -10px;
}




/*======================================
Gallery section css
======================================*/
#gallery {
    background-color: #fff;
    padding: 100px 0 30px;
}

.gallery-wrapper {
    overflow: hidden;
    position: relative;
}

.gallery-text-wrap {
    width: 70%;
    margin: 0 auto;
}


#gallery .gallery-text-wrap h1 {
    text-transform: capitalize;
    font-size: 50px;
    color: #3a3a3a;
    letter-spacing: 2px;
}

#gallery .text-center h1 {
    text-transform: capitalize;
    font-size: 50px;
    color: #3a3a3a;
    letter-spacing: 2px;
}

#galleryImage {
    padding: 50px 0 70px;
    background-color: #fff; /*Secrvices section background color*/
}

.gallery-image-wrapper {
    overflow: hidden;
}

.ih-item {
  position: relative;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}
.ih-item,
.ih-item * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.ih-item a:hover {
  text-decoration: none;
}
.ih-item img {
  width: 100%;
  height: 100%;
}

#galleryImage .ih-item .img {
  opacity: 1;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}

.ih-item.square {
  position: relative;
  width: 100%;
  height: 100%;
}
.ih-item.square .info {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.ih-item.square.effect6 {
  overflow: hidden;
}

#galleryImage .ih-item.square.effect6 .info {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.7);
  visibility: hidden;
  opacity: 0;
  margin: 15px;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}

#galleryImage .ih-item.square.effect6:hover .info {
  visibility: visible;
  opacity: 1;
  cursor: pointer;
}

#galleryImage .ih-item.square.effect6:hover .img {
  opacity: 0.5;
  cursor: pointer;
}

#galleryImage .ih-item .info .info-wrapper {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    -webkit-transform: translate(0%, -50%);
    -moz-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
}

#galleryImage .ih-item.square.effect6 .info h3 {
    color: #000000;
    font-size: 24px;
    padding: 8px;
    margin: 0;
}

#galleryImage .ih-item ul.social {
    padding: 4px 0;
    list-style: none;
    margin-left: 0;
    margin-bottom: 0;

}

#galleryImage .ih-item ul.social li {
    display:inline-block;
    margin-right: 4px; 
}

#galleryImage .ih-item ul.social li a {
    color:#000000; /*social links color*/
    display: inline-block;
    font-size: 20px;
}


/*======================================
 Work section css
======================================*/



#work-project {
		padding: 100px 0 0 0;
}

#work-project h2 {
    text-transform: none;
		font-size:20px;
	text-decoration: none;
	text-align: center;
}


#work-project .container {
	border: 3px solid #CCC;
	padding-left:20px;
	padding-right:20px;
	margin:65px 10px;
}

#work-project .row {
		height: 100%;
		background:#fff;
		margin:-5px 0px;
		padding-top:20px;
		padding-bottom:20px;
}

#work-project [class*="col-"] {
	padding:5px 20%;
}

@media (min-width: 768px) {

	#work-project .container {
		margin-right:auto;
		margin-left:auto;
	}

	#work-project .row {
	  	display: flex;                 /* primary flex container */
	  	flex-direction: row;           /* horizontal alignment of flex items (default value; can be omitted) */
			align-items: stretch;          /* will apply equal heights to flex items (default value; can be omitted) */
			height: 100%;
			background:#fff;
			margin:-5px 20px;
	}
	
	#work-project [class*="col-"] {
			display: flex;                 /* nested flex container */
			flex-direction: column;        /* vertical alignment of flex items */
			justify-content: center;       /* center flex items vertically */
			align-items: center;           /* center flex items horizontally */
			padding:0px;
	}

	#work-project .work-project-image {
		padding-left:5px;
		padding-right:5px;
	}

	#work-project .work-project-summary {
		width:100%;
	}

}




#work {
    background-color: #fff;
    padding: 100px 0 0 0;
}

.work-wrapper {
    overflow: hidden;
    position: relative;
}

.work-text-wrap {
    width: 70%;
    margin: 0 auto;
}


#work .work-text-wrap h1 {
    text-transform: capitalize;
    font-size: 50px;
    color: #3a3a3a;
    letter-spacing: 2px;
}

#work .text-center h1 {
    text-transform: capitalize;
    font-size: 50px;
    color: #3a3a3a;
    letter-spacing: 2px;
}

#workImage {
    padding: 0 0 70px 0;
    background-color: #fff; /*Secrvices section background color*/
}

.work-image-wrapper {
    overflow: hidden;
}

#workImage .ih-item.square.effect6:hover .img {
    filter: url("data:image/svg+xml;utf8,&lt;svg xmlns=\'http://www.w3.org/2000/svg\'&gt;&lt;filter id=\'grayscale\'&gt;&lt;feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/&gt;&lt;/filter&gt;&lt;/svg&gt;#grayscale"); /* Firefox 10+, Firefox on Android *
    filter: gray; /* IE6-9 */
    -webkit-filter: grayscale(100%); /* Chrome 19+, Safari 6+, Safari 6+ iOS */
    opacity: .6;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}


#workImage .ih-item.square.effect6 .info {
  background-color: #eae9e9;
  background-color: rgba(234, 233, 233, 0.9);
  visibility: hidden;
  opacity: 0;
  margin: 25px;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}

#workImage .ih-item.square.effect6:hover .info {
  visibility: visible;
  opacity: 1;
  cursor: pointer;
}

#workImage .ih-item .img {
    filter: url("data:image/svg+xml;utf8,&lt;svg xmlns=\'http://www.w3.org/2000/svg\'&gt;&lt;filter id=\'grayscale\'&gt;&lt;feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/&gt;&lt;/filter&gt;&lt;/svg&gt;#grayscale"); /* Firefox 10+, Firefox on Android */
    filter: gray; /* IE6-9 */
    -webkit-filter: grayscale(0%); /* Chrome 19+, Safari 6+, Safari 6+ iOS */
  opacity: 1;
  cursor: pointer;
}

#workImage .ih-item .info .info-wrapper {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    padding: 25px;
    -webkit-transform: translate(0%, -50%);
    -moz-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
}

#workImage .ih-item.square.effect6 .info h3 {
    color: #000000;
    margin: 0 0 15px;
}

#workImage .ih-item.square.effect6 .info .cta {
    width: 100%;
    margin-top: 10px;
}

#workImage .ih-item p {
    line-height: 1.4;
}


/*======================================
 Testimonials section css
======================================*/
#testimonials {
    padding: 45px 0;
}

.tstm-wrapper {
    overflow: hidden;
    padding-top: 20px;
}

.single-tstm {
    font-size: 14px;
    border: none;
    margin: 0 auto;
    overflow: hidden;
    padding: 15px;
    background-color: #fff;
}


/* Author image css */
.author-img {
    margin-left: -75px;
    position: absolute;
    left: 50%;
    top: 100%;
    margin-top: -67px;
    border: 14px solid #fff;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.author-img img {
    width: 104px;
    height: 104px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    vertical-align: middle;
    border: 1px solid #999;
}

.author-info {
    padding-top: 60px;
    text-align: center;
}

/* Qoute text css */
.quote {
    background-color: #f6f5f5;
    padding: 20px;
    padding-bottom: 100px;
    position: relative;
}

.quote-icon {
    position: absolute;
    bottom: 0%;
    right: 20px;
    font-size: 138px;
    margin-top: -39px;
    opacity: 0.1;
}

/* Author name color */
.tstm-author {
    color: #45ada8;
    display: inline-block;
    margin-right: 4px;
}

/* Author profession color  */
.tstm-desc {
    color: #fff;
}


.grabbing { 
    cursor:url(../img/testimonial/grabbing.png) 8 8, move;
}

.owl-item.loading{
    background: url(../img/testimonial/AjaxLoader.gif) no-repeat center center;
}


/*======================================
 Contact section css
======================================*/
#contact {
	padding: 70px 0;
	background-color: #fff;
}

.contact-wrapper {
    overflow: hidden;
}

.contact-wrapper h1 {
	margin-bottom: 15px;
    margin-top: 0;
}

/* Contact input group css */
input[type="text"],
input[type="email"],
input[type="url"],
input[type="tel"],
input[type="number"],
input[type="date"],
span select,
.widget input[type="search"],
.search-field,
textarea {
    width: 100%;
    padding: 20px;
    margin-bottom: 20px;
    border: none;
    border: 1px solid #eae9e9;
    color: #333; /* input and textarea color */
    background-color: transparent; /* input and textarea background-color */
    display: inline-block;
    font-size: 14px;
}

.wpcf7-form p {
    margin: 0;
}

.page-content .search-form {
    margin-bottom: 20px;
}

textarea {
    margin-left: 0;
    height:250px;
    resize: none;
    margin-bottom: 20px !important;
    font-size: 14px !important;
}
 

/* Contact button css */
#send, input[type="submit"] {
    font-size: 16px;
    font-weight: 600;
    margin-left: 0;
    border: none;
    padding: 20px;
    color: #fff; /* Contact button color */
    background-color: #707070; /* Contact button background-color */
    width: 200px;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

/* Contact button hover css */
#send:hover {
    background-color: #333;    
}

/*======================================
 Single Post section css
======================================*/
#singlePost {
    background-color: #fff;
    padding: 70px 0;
}

.single-post-wrapper {
    overflow: hidden;
    margin-bottom: -30px;
}

.post-navigation {
	padding-bottom:150px !important;
}

.post-nav-pagination-container {
margin-top: 50px ; 
font-size: 13px;
}

.post-nav-pagination-container ul, .post-nav-pagination-container ul * {
display: none;
}

@media (min-width: 768px) {
	.post-nav-pagination-container ul, .post-nav-pagination-container ul * {
		display: inline;
		padding: 0;
		margin: 0 !important;
	}
}

.post-nav-pagination-container .wpv_page_current span,
.post-nav-pagination-container a {
padding: 6px 14px;
text-decoration: none;
border-width: 1px;
border-style: solid;
border-color: #ddd;
}

.post-nav-pagination-container a:hover {
	background-color: #ddd;
	color: #fff;
}

/* Highlight wpv_page_current to make the current page stand out */
.post-nav-pagination-container .wpv_page_current span {
background-color: #ddd;
color: #fff;
}


/*======================================
 Footer section css
======================================*/
.main-footer {
    background-color: #f6f5f5;
}

.footer-wrapper {
    overflow: hidden;
    padding: 30px;
}

/* Footer heading css */
.main-footer h2 {
    margin: 15px 0;
    text-transform: capitalize;
   
}

.about-info, .about-info p {
    color: #555555;
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
}

.about-info,
.contact-info,
.footer-feed {
    padding: 40px 0;
}

.contact-info {
    margin-left: 40px;
}

.footer-feed {
    margin-left: 70px;
}

#contact .contact-info {
    margin-left: 0;
}

#contact .contact-info {
    padding: 0;
}

.footer-feed ul.recent-news {
    list-style: none;
    margin-left: 0;
    margin-bottom: 0;
}

.footer-feed ul.recent-news li {
    margin-bottom: 5px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
}

/* Footer Contact info css */
.contact-info address{
    display: inline-block;
    margin-bottom: 0;
    margin-left: 5px;
}

.contact-info ul.contact li span,
.contact-info ul.contact li a {
    margin-left: 5px;

}

.contact-info ul.contact {
    list-style: none;
    margin-left: 0;
    margin-bottom: 0;
}

.contact-info ul.contact li {
    margin-bottom: 10px;
    font-weight: 700;
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
}

#contact .contact-info ul.contact li {
    margin-bottom: 15px;
    font-weight: 400;
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
}
.contact-info ul.contact li i {
    font-size: 20px;
}

/*social links css*/

.contact-info ul.social {
    padding: 4px 0;
    list-style: none;
    margin-left: 0;
    margin-bottom: 0;

}

.contact-info ul.social li {
    display:inline-block;
    margin-right: 2px; 
}

.contact-info ul.social li a {
    color:#555555; /*social links color*/
    display: inline-block;
    font-size: 20px;
}

/* Footer copyright css */
.copyright-wrapper {
    width: 100%;
}

.copyright {
    text-align: center;
    background-color: #eae9e9;
    padding: 5px 0;
}

.copyright h1 {
    margin: 0;
    font-size: 18px;
    color: #555555;
    text-transform: lowercase;
}



/*======================================
 scroll to top css
======================================*/
#scrollUp {
    bottom: 20px;
    right: 20px;
    width: 35px;
    height: 35px;
    padding: 2px;
    color: #4a4a4a;
    text-align: center;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    border: 2px solid #4a4a4a;
    -webkit-transition: none;
    -moz-transition: none;
    -o-transition: none;
    -ms-transition: none;
    transition: none;
}

