/* Table of Content
==================================================
	#Reset & Basics
	#Basic Styles
	#Site Styles
	#Typography
	#Links
	#Lists
	#Images
	#Buttons
	#Forms
	#Misc */

/* #Reset & Basics (Inspired by E. Meyers)
================================================== */
	html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video, select{
		margin: 0;
		padding: 0;
		border: 0;
		font-size: 100%;
		font: inherit;
		vertical-align: baseline; }
	article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
		display: block; }
	body {
		line-height: 1; }
	ol, ul {
		list-style: none; }
	blockquote, q {
		quotes: none; }
	blockquote:before, blockquote:after,
	q:before, q:after {
		content: '';
		content: none; }
	table {
		border-collapse: collapse;
		border-spacing: 0; }

/* #Basic Styles
================================================== */
	body {
		background: #f5f5f5;
		font-family: 'Lato', sans-serif;
		font-size: 16px;
		line-height:24px;
		color:#fff;
		overflow-x:hidden;
		-webkit-font-smoothing: antialiased; /* Fix for webkit rendering */
		text-shadow: 1px 1px 1px rgba(0,0,0,0.004);
		-webkit-text-size-adjust: 100%;
 }
 html {
	height: 100%;
}
/* #Typography
================================================== */
	h1, h2, h3, h4, h5, h6 {
		color: #e9e9e9;
		font-family: 'Lato', sans-serif, cursive;
		text-transform: uppercase;font-weight:500;
		 }
	h1 a, h2 a, h3 a, h4 a, h5 a, h6 a { font-weight: inherit; }
	h1 { font-size: 60px; line-height:62px;}
	h2 { font-size: 52px; line-height: 54px;}
	h3 { font-size: 44px; line-height: 46px;}
	h4 { font-size: 34px; line-height: 40px;color:#ffffff;}
	h5 { font-size: 26px; line-height: 25px;}
	h6 { font-size: 22px; line-height: 26px;}
	.subheader { color: #292929; }

	p {  }
	p img { margin: 0; }
	p.lead { font-size: 21px; line-height: 27px; color: #777;  }

	em { font-style: italic; }
	strong { font-weight: 500;}
	small { font-size: 80%; }
	
.dropcap {
	float: left;
	font-weight:bold;
	line-height: 0.95;
	font-size: 420%;
	margin-right: 10px;
	color: #292929;
}	
.dropcap-red {
	float: left;
	font-weight:bold;
	line-height: 0.95;
	font-size: 400%;
	margin-right: 10px;
	color: #EB767E;
}	
.dropcap-orange-circle {
	float: left;
	font-weight:800;
	line-height: 66px;
	font-size: 44px;
	border-radius:50%;
	background:#292929;
	height:66px;
	width:66px;
	text-align:center;
	margin-right: 10px;
	color: #e74c3c;
}
.line-sep{
	border-bottom:1px solid rgba(81,81,81,.1);
	padding-top:30px;
	margin-bottom:30px;
    position: relative;
}
.line-sep1{
	border-bottom:1px solid rgba(81,81,81,.1);
	padding-top:70px;
	margin-bottom:30px;
    position: relative;
}

/*	Blockquotes  */
	blockquote, blockquote p { font-size: 17px; line-height: 24px; color: #777; }
	blockquote { margin: 0 0 20px; padding: 9px 20px 0 19px; }
	blockquote cite { display: block; font-size: 12px; color: #555; }
	blockquote cite:before { content: "\2014 \0020"; }
	blockquote cite a, blockquote cite a:visited, blockquote cite a:visited { color: #555; }

	hr { border: solid #323a3d; border-width: 1px 0 0; clear: both; margin:0 10px 0 10px; height: 0; position:relative;}

/* #Links
================================================== */
	a, a:visited { text-decoration: none; }
	a:hover, a:focus { color: #e74c3c;}
	p a, p a:visited { line-height: inherit; text-decoration: none;}

/* #Lists
================================================== */
	ul, ol { }
	ul { list-style: none outside; }
	ol { list-style: decimal; }
	ol, ul.square, ul.circle, ul.disc { margin-left: 30px; }
	ul.square { list-style: square outside; }
	ul.circle { list-style: circle outside; }
	ul.disc { list-style: disc outside; }
	ul ul, ul ol,
	ol ol, ol ul { font-size: 90%;  }
	ul ul li, ul ol li,
	ol ol li, ol ul li {  }
	li { line-height: 18px; }
	ul.large li { line-height: 21px; }
	li p { line-height: 21px; }
/* #Buttons
================================================== */

	.button,
	button,
	input[type="submit"],
	input[type="reset"],
	input[type="button"] {
	background:#363636;	
	margin-top:10px;
	border:none;
	  color: #dfdfdf;
	  display: inline-block;
	  font-size: 16px;
	  cursor: pointer;
	  line-height: normal;
	  padding: 15px 25px;
	-webkit-transition : all 0.3s ease-out;
	-moz-transition : all 0.3s ease-out;
	-o-transition :all 0.3s ease-out;
	transition : all 0.3s ease-out; 
	width:100%}

	.button:hover,
	button:hover,
	input[type="submit"]:hover,
	input[type="reset"]:hover,
	input[type="button"]:hover {	
	  color: #dfdfdf;  
	background:#2e2e2e;	 }

	.button:active,
	button:active,
	input[type="submit"]:active,
	input[type="reset"]:active,
	input[type="button"]:active {	
	  color: #e74c3c;}

	.button.full-width,
	button.full-width,
	input[type="submit"].full-width,
	input[type="reset"].full-width,
	input[type="button"].full-width {
		width: 100%;
		padding-left: 0 !important;
		padding-right: 0 !important;
		text-align: center; }

	/* Fix for odd Mozilla border & padding issues */
	button::-moz-focus-inner,
	input::-moz-focus-inner {
    border: 0;
    padding: 0;
	}

/* #Images
================================================== */
	img.scale-with-grid {
		max-width: 100%;
		height: auto; }

/* #Misc
================================================== */
	.remove-bottom { margin-bottom: 0 !important; }
	.half-bottom { margin-bottom: 10px !important; }
	.add-bottom { margin-bottom: 20px !important; }

.clear {
	clear: both;
	display: block;
	overflow: hidden;
	visibility: hidden;
	width: 0;
	height: 0;
}
::selection {
	background: rgba(0,0,0,.2); /* Safari */
	}
::-moz-selection {
	background: rgba(0,0,0,.2); /* Firefox */
}

/*custome CSS*/
h5{font-size: 25px;text-transform: capitalize;}
.services-offer p{font-size: 14px;}
#profile{padding-top: 0 !important;}
.background-pat h1 span {color: #EC572C;}
.bx-wrapper{background: #ffffff !important;}
input{padding: 0 5px;}
.responsive {width: 100%;height: auto;}
.abt-venture .h5-text h5{padding-bottom: 0;}
.abt-venture{padding-bottom: 20px !important;}
.team1, .team2{height: 360px !important;}
hr{border: 1px  solid #3a3a3a;}
.team-text p{font-size: 13px;text-align: justify;}
/*accordion*/
.accordion {
    background-color: #383a3a;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.4s;
}

.panel p{font-size: 15px;}
.accordion:after {
    content: '\002B';
    color: #777;
    font-weight: bold;
    float: right;
    margin-left: 5px;
}
.active:after {
    content: "\2212";
}
.panel {
    padding: 0 18px;
    background-color: #292b2c;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}
.panel-open{height:110px;padding: 0 18px;background-color: #292b2c;overflow: hidden;transition: max-height 0.2s ease-out;}
/*accordion end*/
select:focus{background:rgba(0, 0, 0, 0.45);}
.singleproject-top{padding: 35px 0 !important;}
.singleproject-top button{margin-top: 0px !important;}
#project-details .bx-viewport{height: 330px !important;}
#project-details h3 {font-size: 40px;}
p span{color:#ec572c;}
#navigation ul li{margin-right: 15px !important;}

/*Modal Grid Image*/
/* The Image Box */
div.img {
    border: 1px solid #ccc;
}
div.img:hover {
    border: 1px solid #777;
}
/* The Image */
div.img img {
    width: 100%;
    height: auto;
    cursor: pointer;
}
/* Description of Image */
div.desc {
    padding: 12px;
    text-align: center;
    font-size: 14px;
}

* {
    box-sizing: border-box;
}

/* Add Responsiveness */
.responsive-modal {
    padding: 0 6px;
    float: left;
    width: 33.3%;
    margin: 10px 0;
}
.responsive-clients {
    padding: 0 6px;
    float: left;
    /*width: 32.99999%;*/
    margin: 8px 8px;
    width: 200px;
}
/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 2000; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}

/* Modal Content (image) */
.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
}
/* Caption of Modal Image */
#caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
}
/* Add Animation */
.modal-content, #caption {    
    -webkit-animation-name: zoom;
    -webkit-animation-duration: 0.6s;
    animation-name: zoom;
    animation-duration: 0.6s;
}
@-webkit-keyframes zoom {
    from {transform:scale(0)} 
    to {transform:scale(1)}
}
@keyframes zoom {
    from {transform:scale(0.1)} 
    to {transform:scale(1)}
}
/* The Close Button */
.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}
.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}
/* Responsive Columns */
@media only screen and (max-width: 700px){
    .responsive-modal {
        width: 49.99999%;
        margin: 6px 0;
    }
    .modal-content {
        width: 100%;
    }
}
@media only screen and (max-width: 500px){
    .responsive-modal {
        width: 100%;
    }
}
/* Responsive Columns */
@media only screen and (max-width: 700px){
    .responsive-clients {
        width: 49.99999%;
        margin: 6px 0;
    }
    .modal-content {
        width: 100%;
    }
}
@media only screen and (max-width: 500px){
    .responsive-clients {
        width: 50%;
    }
}
/* Clear Floats */
.clearfix:after {
    content: "";
    display: table;
    clear: both;
}
/*Modal Grid Image*/
#navigation a.active {
 color: #ec572c !important;
}
#navigation .active:after {
    content: none;
}
/*custome CSS*/
@media only screen and (max-width:768px){
	#home1{display:block;}}

@media only screen and (min-width:769px){
	#home{display:none !important;}}
/*Our CSS*/
h1{font-size: 35px;line-height: 62px;}
p{font-size: 14.5px; font-family: 'Lato', sans-serif;}
.services-offer h5{font-size: 20px;}
.iconimg {padding-top: 0px !important;padding-bottom: 0px!important;}
.whitebg{background: #ffffff !important;}
.whitebg h1{text-align:center;color: #353636;}
.whitebg h1 strong{font-weight: 600;}
.whitebg .bx-viewport {height: 100px !important;}
.slider2 img {width: 200px !important;height: 100px !important;}
.whitebg .slide{width: 200px !important;margin: 0px 10px;}
#ascrail2000-hr{display: none  !important;}
input, select, textarea {padding-left: 10px !important;padding-top: 5px !important;padding-bottom: 10px !important;}
.cd-top {display: inline-block;height: 40px;width: 40px;
  position: fixed;bottom: 40px;right: 10px;-webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  /* image replacement properties */
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  background: rgba(0, 0, 0, 0.74) url(../images/icons/cd-top-arrow.svg) no-repeat center 50%;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity .3s 0s, visibility 0s .3s, background-color .3s 0s;
  transition: opacity .3s 0s, visibility 0s .3s, background-color .3s 0s;
}
.cd-top.cd-top--show,
.cd-top.cd-top--fade-out,
.cd-top:hover {
  -webkit-transition: opacity .3s 0s, visibility 0s 0s, background-color .3s 0s;
  transition: opacity .3s 0s, visibility 0s 0s, background-color .3s 0s;
}
.cd-top.cd-top--show {
  /* the button becomes visible */
  visibility: visible;
  opacity: 1;
}
.cd-top.cd-top--fade-out {
  /* if the user keeps scrolling down, the button is out of focus and becomes less visible */
  opacity: .5;
}
.cd-top:hover {
  background-color: #363636;
  opacity: 1;
}
@media only screen and (min-width: 768px) {
  .cd-top {
    right: 20px;
    bottom: 20px;
  }
}
@media only screen and (min-width: 1024px) {
  .cd-top {
    height: 60px;
    width: 60px;
    right: 30px;
    bottom: 30px;
  }
}
/* demo style */
.cd-nugget-info {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 50px;
  line-height: 50px;
  top: 0;
  left: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.cd-nugget-info a {
  position: relative;
  font-size: 14px;
  color: #e86256;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  transition: all 0.2s;
}
.cd-nugget-info a:hover {
  opacity: .8;
}
.cd-nugget-info span {
  vertical-align: middle;
  display: inline-block;
}
.cd-nugget-info span svg {
  display: block;
}
.cd-nugget-info .cd-nugget-info-arrow {
  fill: #e86256;
}
@media only screen and (min-width:780px){
	    .isotope{margin-left: 5%;}
}
.ventureicons{width: 63px;margin: 12px 14px 5px 10px;}
textarea{height: 45px !important;}
.padding-small .columns{margin-top: 5px !important;margin-bottom: 5px !important;}
.services-offer{padding-bottom: 5px;}
.button, button, input[type="submit"], input[type="reset"], input[type="button"]{padding: 10px 25px !important;background: #2a2a2acf;}
.eleven .services-offer{background:none !important;box-shadow:none !important;}
input, select,textarea{font:14px/24px 'OpenSans-Light-webfont' !important;}
.contactadd p{border-bottom: 1px solid;
    padding-top: 10px;}
.contact-info p {
    font-size: 13px;
    padding-bottom: 10px;
}
#copy p {text-align: justify !important;font-size: 14px;}
#copy .cl-effect-18 {margin-top: 20px;float: right;}
#copy{padding-top: 0px !important;padding-bottom: 0px !important;}
.fa{font-size: 18px !important;}
#copy .cl-effect-19, #copy .cl-effect-18{margin-top: 10px !important;}
#contact .background-pat1-last{padding-top: 10px;padding-bottom: 40px;}
#navigation {background: #ffffff !important;}
#navigation a, #navigation a:active, #navigation a:visited{color: #202020 !important;}
.background-pat, #contact{background: #232323 !important;}
.background-pat{padding-top: 25px !important;padding-bottom: 25px !important;}
.profile-proces{padding-top: 15px !important;    padding-bottom: 30px !important;}
.read-more-state{display: none;}
.read-more-target{opacity: 0;max-height: 0;font-size: 0;color:#ffffff;transition: .25s ease;}
.read-more-state:checked ~ .read-more-wrap .read-more-target{opacity: 1;font-size: inherit;max-height: 999em;}
.read-more-state ~ .read-more-trigger:before{content: 'Read More';}
.read-more-state:checked ~ .read-more-trigger:before{content: 'Show less';}
.read-more-trigger{cursor: pointer;display: inline-block;padding: 0 .5em;color: #ffffff;font-size: .9em;
  line-height: 2;border: 1px solid #ddd;border-radius: .25em;}
#team p{text-align: justify;}
#profile .background-pat1-last, #team{padding-top: 0px !important;}
.logo{margin-left: 9% !important;}
#navigation ul{margin-right: 11% !important;}
.carousel-inner>.item>a>img,
.carousel-inner>.item>img,
.img-responsive,
.thumbnail a>img, .thumbnail>img{display: block;max-width: 100%;height: auto;}
.blgopg li{line-height: 24px;}
#career .profile-proces {padding-bottom: 25px !important;}
.contactuspg h5{border-bottom: 1px solid;margin-bottom: 20px;padding-bottom: 10px;}
.contactuspg p{margin-bottom: 10px;}
p a, p a:visited{color: #ffffff;}
.blog-section h4{font-size: 25px;}
.contactusform{padding: 0px 10%;} 
.paddingbt-small{padding-bottom:35px !important;}
@media only screen and (max-width:768px){
	.cl-effect-18{float: none !important;}
	#copy .cl-effect-19 p{text-align: center !important;}
	.testimonial h6{font-size: 14px !important;}
}
@media only screen and (max-width: 479px) and (min-width: 320px)
{#copy a {margin-bottom: 0px !important;}}
#blog .item h6{text-transform: capitalize;}
.owl-theme .owl-controlls .owl-page{display:none !important;}
.title .container .column, .title .container .columns{margin-bottom: 0px !important;margin-top: 5px !important;}
@media only screen and (max-width:768px){
	#services h5 {font-size: 21px;}
	#services p {font-size: 14px;text-align: center;}
}
#blogs-details .status{font-size:14px;}
#blogs-details h1{font-size: 25px;}
#blogs-details p{font-size: 14px;}
.profile-icon{background: #ffffff !important;}
#team .read-more-wrap {padding-top: 10px;}
@media only screen and (max-width: 768px){
.logo{margin-left: -5% !important;}}
.mobile-container{
  max-width: 480px;
  margin: auto;
  background-color: #555;
 /* height: 500px;*/
  color: white;
  border-radius: 10px;
}
.topnav {
  overflow: hidden;
  background-color: #fff;
  position: relative;
}
.topnav #myLinks {
  display: none;
}
.topnav a {
  color: white;
  padding: 28px 16px;
  text-decoration: none;
  font-size: 17px;
  display: block;
}
.topnav a.icon {
  display: block;
  position: absolute;
  right: 0;
  top: 0;
}
.topnav a:hover {
 color: black;
}
.active {
  background-color: #4CAF50;
  color: white;
}
@media only screen and (min-width: 780px){.mobile-container{display:none;}}
@media only screen and (max-width: 768px){
	#navigation{display:none;}
	.topnav #myLinks {margin-top: 35px;border-top: 1px solid #0000005c}
	.topnav a{color: #585353;}
	#myLinks a{padding: 7px 16px;border-bottom: 1px solid #00000026;}
	.sticky-wrapper{height:0 !important;}
	.contactusform {padding: 0px 5%;}
	.desktopbanner{display: none;}
	#arrow{bottom: 12px !important; display:none;}
	.whitebg .slide{width: 135px !important;}
	.slider2 img {width: 135px !important;height: 75px !important;}
	#project-details .bx-viewport {height: auto !important;}
	#cboxContent {background: url(../images/classy_fabric.png) repeat;
    overflow: hidden;}
    #cboxLoadedContent {height: 660px !important;}
    #cboxContent{height: none !important; background: none !important;overflow: none !important;}
    #portfolio .cl-effect-18{margin-bottom: 0 !important;}
   }
@media only screen and (min-width:770px){.mobilebanner{display: none;}}
#project-details{padding: 12% !important;}
#blog .item .img-blog .date{width: 170px !important;}
@media only screen and (max-width: 479px) and (min-width: 320px){
	#filter li a {margin-bottom: 0 !important;}
}
.align-center{text-align: center;}
 #project-details h3 {font-size: 30px !important;}
.singleproject-top  h3{padding-bottom: 10px !important; text-transform: capitalize;}
.cbp-so-scroller{z-index: 1000000 !important;}
@media only screen and (min-width:780px){
	.middle-venture{margin-left: 25% !important;}
	}
.blog-section h5{    line-height: 35px;font-size: 24px;}
.responsive-clients div.img{border: none;}

/*.bgimg{
	background-image: url('../images/banner.jpg');
}*/
.bgimg{
	position: relative; 
	margin: 0 auto;
	width: 100%;
	background:  url(../images/awards/awards-banner.jpg) repeat;
	padding-top:40px;
	padding-bottom:40px;
	height: 400px;
}
@media only screen and (max-width: 768px){
	.bgimg{display: none !important;}
}
@media only screen and (min-width: 768px){
	.img-desktop{display: none !important;}
}

/* fish animation */
svg {
  width:40px; 
  position:absolute;
}
#first-fish{
	width:30px;
}
#first-fish{
  top:150px;
  animation-name: glissement;
  animation-duration: 27s;
  animation-iteration-count: infinite;
}
#first-fish1{
  top:200px;
  animation-name: glissement1;
  animation-duration: 40s;
  animation-iteration-count: infinite;
}
@keyframes glissement {
  0% {
    transform: translate(0px,0px)
  }
  10% {
    transform: translate(150px,20px)
  }
  20%{
    transform: translate(300px,-20px)
  }
  30%{
    transform: translate(450px,20px)
  }
  40%{
    transform: translate(600px,-20px)
  }
  50%{
    transform: translate(750px,20px)
  }
  60%{
    transform: translate(900px,-20px)
  }
  70%{
    transform: translate(1050px,20px)
  }
  80%{
    transform: translate(1200px,-20px)
  }
  90%{
    transform: translate(1350px,20px)
  }

  100%{
    transform: translate(1500px,-20px)
  }
 }
 @keyframes glissement1 {
  0% {
    transform: translate(0px,0px)
  }
  10% {
    transform: translate(200px,20px)
  }
  20%{
    transform: translate(400px,-20px)
  }
  30%{
    transform: translate(600px,20px)
  }
  40%{
    transform: translate(800px,-20px)
  }
  50%{
    transform: translate(1000px,20px)
  }
  60%{
    transform: translate(1200px,-20px)
  }
  70%{
    transform: translate(1400px,20px)
  }
  80%{
    transform: translate(1600px,-20px)
  }
  90%{
    transform: translate(1800px,20px)
  }

  100%{
    transform: translate(2000px,-20px)
  }
 }
#third-fish{
  top:300px;
  animation-name: glissement;
  animation-duration: 30s;
  animation-iteration-count: infinite;
}


/*#second-fish {
  animation-name: glissement;
  animation-duration: 30s;
  animation-iteration-count: infinite;
}*/
/*@keyframes poissondeux {
  from {
    margin-left: 100%;
  }

  to {
    margin-left: 0%;
  }
}*/
/* fish animation */


.blog-section h6{font-size: 18px;text-transform: capitalize;}
.recent-post li{border-bottom: 1px solid #ccc;padding: 10px 0;}
.blog-follow .cl-effect-18{margin-top: 0;}
.blog-follow .cl-effect-18 a{padding: 10px;border:1px solid;color:#ffffff;}
.blog-follow .cl-effect-18 a:hover{color:#aca9a9;}
.blog-section p{font-size: 14px;}
.recent-post a{color:#ffffff;}



/*Accordian*/
.accordian {
  list-style:none;
  margin:0 0 40px;
  padding:0;
  border:1px solid #ffffff36;
  border-top:0;
}
.accordian header {
  display:block;
  margin:0;
  padding:10px;
  border-top:1px solid #ffffff36;
  cursor:pointer;
  font-size: 15px;
}
.accordian section {
  display:none;
  padding:1em;
  background:#292a2b;
  border-top:1px solid #ddd;
}
.accordian section.active {
  display:block;
}
.accordian section a{color: #ffffff;font-size: 12.5px;}
.accordian section a:hover{color:#d9d9d9;}

/*Accordian*/


.pagination {
  display: inline-block;
  margin-top: 30px;
}

.pagination a {
  color: #ffffff;
  float: left;
  padding: 8px 16px;
  text-decoration: none;
}
.pagination .actives{color:#939393;}
.pagination-center {text-align: center;}
.blog-section p a {
    color: #61b256;
}
/*Our CSS*/
