* {
    -webkit-font-smoothing: antialiased;
}

body {
    text-rendering: optimizeLegibility;
}

/* read more button */

p.readmore a {
	display: inline-block;
	padding: 4px 12px;
	margin-bottom: 0;
	color: #333333;
	text-align: center;
	text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
	vertical-align: middle;
	cursor: pointer;
	background-color: #f5f5f5;
	background-image: -moz-linear-gradient(top, #ffffff, #e6e6e6);
	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6));
	background-image: -webkit-linear-gradient(top, #ffffff, #e6e6e6);
	background-image: -o-linear-gradient(top, #ffffff, #e6e6e6);
	background-image: linear-gradient(to bottom, #ffffff, #e6e6e6);
	background-repeat: repeat-x;
	border: 1px solid #cccccc;
	border-color: #e6e6e6 #e6e6e6 #bfbfbf;
	border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
	border-bottom-color: #b3b3b3;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e6e6e6', GradientType=0);
	filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
	-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
	-moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
}

p.readmore a:hover, p.readmore a:focus {
	color: #333333;
	text-decoration: none;
	background-position: 0 -15px;
	-webkit-transition: background-position 0.1s linear;
	-moz-transition: background-position 0.1s linear;
	-o-transition: background-position 0.1s linear;
	transition: background-position 0.1s linear;
}

.acc li a, p.readmore a {
	font-weight: normal;
}

p.readmore .icon-chevron-right, p.readmore .icon-chevron-left {
	display: none;
}

/* forms */

.inputbox, input.required, textarea.required, .form-control {
	display: inline-block;
	vertical-align: middle;
	padding: 8px;
	margin: 0;
	background-color: #ffffff;
	color:#555555;
	border: 1px solid #cccccc;
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
	transition: border linear 0.2s, box-shadow linear 0.2s;
	border-radius: 4px;
}

.button, .btn, a.btn, button.btn {
	display: inline-block;
	padding: 8px;
	margin: 0;
	color: #333333;
	text-align: center;
	text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
	vertical-align: middle;
	cursor: pointer;
	background-color: #f5f5f5;
	background-image: linear-gradient(to bottom, #ffffff, #e6e6e6);
	background-repeat: repeat-x;
	border: 1px solid #cccccc;
	border-color: #e6e6e6 #e6e6e6 #bfbfbf;
	border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
	border-bottom-color: #b3b3b3;
	border-radius: 4px;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
}

.button:hover, .btn:hover {
	color: #333333;
	text-decoration: none;
	background-position: 0 -15px;
	transition: background-position 0.1s linear;
	background-color: #e6e6e6;
}

dt, dd {
    line-height: 1.5;
}

/* typography */

strong {
	color: #34495E;
}

img.img_left {
	float:left;
	margin:0 30px 30px 0;
}

img.img_right {
	float:right;
	margin:0 0 30px 30px;
}

/* animation */

.sparky_home .item-image img,
.friends_row img {
    opacity: 0;
}

.slide-in-left {
    -webkit-animation: slide-in-left 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
            animation: slide-in-left 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

@-webkit-keyframes slide-in-left {
  0% {
    -webkit-transform: translateX(-100px);
            transform: translateX(-100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slide-in-left {
  0% {
    -webkit-transform: translateX(-100px);
            transform: translateX(-100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

.rotate-in-center {
    -webkit-animation: rotate-in-center 0.6s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
            animation: rotate-in-center 0.6s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

@-webkit-keyframes rotate-in-center {
  0% {
    -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg);
    opacity: 0;
  }
  100% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
    opacity: 1;
  }
}
@keyframes rotate-in-center {
  0% {
    -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg);
    opacity: 0;
  }
  100% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
    opacity: 1;
  }
}

/* logo row */

.logo_row:not(.topmenushow) {
	padding: 40px 0;
}

.sparky_cell.mp_logo {
    background: url(../images/logo1.png) no-repeat;
    background-size: 35px 35px;
    background-position: center left;
    padding-left: 45px;
}

.logo_row.fix_menu {
	position: fixed;
	top: 0;
	z-index: 89;
	width: 100%;
	background: #eee !important;
	border-bottom: 1px solid #dde5de;
	padding: 0;
}

.logo_row.fix_menu .mp_logo img {
	width: auto;
	height: 50px;
	content: url(../images/logo_small.png);
}

.logo_row.fix_menu .mp_topmenu {
	padding-top: 0;
}

.logo_row.fix_menu .mp_logo .cell_pad, .logo_row.fix_menu .mp_topmenu .cell_pad {
	padding: 10px 5%;
}

.navv_sparky > li > a, .navv_sparky > li > span {
	text-transform: uppercase;
}

.mnu_mainmenu > li.parent {
	padding-right: 20px;
    background-size: 25px 15px;
}

.mnu_mainmenu li li.parent {
    background-size: 10px 10px;
}

@media(max-width: 979px) {
	.logo_row nav:not(.opened) ul.menu {
		display: none;
	}
}

.mp_top1 {
	padding-top: 13px;
}

.mp_top1 button {
	background: #1abc9c;
	border:none;
	font-size: 14px;
	color: #fff;
	font-weight: normal;
	display: block;
	width: 100%;
	margin: 0;
	padding: 10px 0;
	border-radius: 5px;
	text-transform: uppercase;
	cursor: pointer;
	transition: .4s;
}

.mp_top1 button:hover {
	background: #34495E;
	transition: .4s;
}

/* rotator row */

.rotator_row {
	border-top: 1px solid #dde5de;

}

.rotator_row a {
	color: inherit !important;
	font-weight: bold;
	text-decoration: underline !important;
}

.rotator_row h3, .rotator_row p {
	color:#fff;
	text-align: center;
}

.rotator_row p {
	line-height: 1.5;
}

.rotator_row h3 {
	text-transform: uppercase;
	font-size: 36px;
	margin-top: 30px;
}

.rotator_row p {
	max-width: 575px;
	margin: 0 auto 30px;
}

#hot_film_tape_pager {
	display: block;
}

.pager a {
	margin: 0 10px !important;
	padding: 0 !important;
	display: inline-block;
	width: 20px;
	height: 20px;
	border-radius: 50%;
}

.pager a.selected {
	background: #1abc9c;
}

.pager a span {
	display: none;
}

.mp_header1 {
	padding-top: 30px;
	padding-bottom: 30px;
}

.mp_header1 h1 {
	color: #fff;
	font-size: 48px;
	text-align: center;
	padding-bottom: 30px;
	margin-bottom: 0;
}

.mp_header1 button {
	background: #fff;
	border:none;
	font-size: 28px;
	color: #34495e;
	font-weight: bold;
	margin: 0;
	padding: 15px 30px;
	border-radius: 10px;
	cursor: pointer;
	text-transform: uppercase;
	transition: .4s;
}

.mp_header1 button:hover {
	background: #dde5de;
	transition: .4s;
}

.sparky_inner .mp_header1 p {
	width: 50%;
}

/* header 2 module */

.sparky_container .mp_header2 {
	text-align: center;
	padding-top: 50px;
	padding-bottom: 50px;
}

.mp_header2 .cell_pad {
	max-width: 450px;
	margin: 0 auto;
}

.mp_header2 button {
	background: orange;
	border:none;
	font-size: 28px;
	color: #fff;
	font-weight: bold;
	margin: 0;
	padding: 15px 50px;
	border-radius: 5px;
	cursor: pointer;
	text-transform: uppercase;
	transition: .4s;
}

.mp_header2 button:hover {
	background: #34495E;
	transition: .4s;
}

.mp_header2 p {
	margin: 30px auto;
	max-width: 500px;
}

/* content row */

div.abovecontent {
	padding: 0 0 30px 0;
}

div.belowcontent {
	padding: 30px 0 0 0;
}

fieldset {
	border: none;
}

dl.article-info {
	padding: 0;
	font-size: 14px;
    font-family: georgia;
    font-style: italic;
}

dl.article-info .icon-calendar {
	display: none;
}

.article-info dd {
	margin-left: 0;
}

.article-info-term {
	display: none;
}

.sparky_inner .content_sparky .cell_pad {
	margin: 0px 50px;
}

.content_sparky.sparkle9 {
	padding-right: 50px;
}

.sparky_inner h2 {
	text-transform: uppercase;
	padding-bottom: 30px;
}

.sparky_inner .item-page p.first_paragraph {
	font-size: 24px;
	margin-bottom: 30px;
}

.columns-3 .blog-item {
	margin: 0 3% 0 0;
}

.blog-items .blog-item {
	padding-bottom: 40px;
}

.blog-items.columns-3 .blog-item {
    width: 30.33%;
}

.sparky_home .pull-left.item-image, .sparky_home .pull-right.item-image {
	width: 60px;
	height: 150px;
	margin-top: 5px;
}

.sparky_inner .right.item-image {
    margin-left: 30px;
    margin-bottom: 30px;
}

.sparky_inner .left.item-image {
    margin-right: 30px;
    margin-bottom: 30px;
}

.sparky_inner .pull-none.item-image {
    margin-bottom: 30px;
}

.sparky_inner .pull-none.item-image img {
	width: 100%;
}

.content_row {
/*	padding-top: 70px;
*/	padding-bottom: 50px;
	border-top: 1px solid #dde5de;
}

.content_row li {
	line-height: 1.5;
}

.mp_right .moduletable, .mp_left .moduletable {
	margin-bottom: 30px;
}

.mp_right input.search-query, .mp_left input.search-query {
	width: 170px !important;
	padding: 12px;
}

.mp_right ul.mod-list, .mp_left ul.mod-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.mp_right ul.mod-list:not(.acc_sparky) li, .mp_left ul.mod-list:not(.acc_sparky) li {
	margin: 0 0 7px;
	padding: 0;
}

/* video row */

.video_row {
	padding: 50px 0 70px;
}

.video_row h3, .video_row p {
	text-align: center;
	color: #fff;
}

.video_row h3 {
	text-transform: uppercase;
	margin-bottom: 15px;
}

.video_container {
	text-align: center;
	position: relative;
	max-width: 600px;
	margin: 30px auto 0;
}

.video_container::before {
    content: "";
    display: block;
    padding-top: 56.25%;
}

.video_container iframe {
	position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video_row .mp_bottom1 p {
	max-width: 500px;
	margin: 0 auto 15px;
}



/* friends row */

.friends_row {
	text-align: center;
	margin: 50px 0;
}

.friends_row h3 {
	text-align: center;
	text-transform: uppercase;
}

.friends_row img {
	padding: 0 8px;
}

.mp_bottom2 p {
	margin: 30px auto;
	max-width: 500px;
}

/* user row */

.user_row {
	padding: 50px 0;
}

.user_row h3 {
	font-size: 18px;
    font-weight:400;
	color:#fff;
    margin-bottom:30px;
    padding-top: 0;
    text-transform:uppercase;
}

/* social row */

.social_row {
	text-align: center;
}

.social_row a {
    margin: 0 12px;
    text-align: center;
}

.social_row i {
    border-radius: 5px;
    font-size: 24px;
    color: #fff;
    width: 45px;
    line-height: 45px;
    position: relative;
}

.social_row i:hover {
	top: 2px;
}

.social_row .fa-facebook-f {
    background: #5370b9;
    border: 1px solid #4160ac;
    border-bottom: 3px solid #4160ac;
}

.social_row .fa-facebook-f:hover {
    border-bottom: 1px solid #4160ac;
}

.social_row .fa-twitter {
    background: #1e9bc8;
    border: 1px solid #0e86b1;
    border-bottom: 3px solid #0e86b1;
}

.social_row .fa-twitter:hover {
    border-bottom: 1px solid #0e86b1;
}

.social_row .fa-instagram {
    background: #b330a8;
    border: 1px solid #9e1d93;
    border-bottom: 3px solid #9e1d93;
}

.social_row .fa-instagram:hover {
    border-bottom: 1px solid #9e1d93;
}

.social_row .fa-pinterest-p {
    background: #d7333d;
    border: 1px solid #c01c26;
    border-bottom: 3px solid #c01c26;
}

.social_row .fa-pinterest-p:hover {
    border-bottom: 1px solid #c01c26;
}

.social_row .fa-linkedin-in {
    background: #3b95c9;
    border: 1px solid #2681b5;
    border-bottom: 3px solid #2681b5;
}

.social_row .fa-linkedin-in:hover {
    border-bottom: 1px solid #2681b5;
}

.sparky_container .mp_footer {
	padding: 50px 0 30px;
}

/* copyright */

p.copyright {
	padding-bottom: 50px;
	text-align: center;
}

/* team page */

.content_row .team {
	text-align:center;
	width: auto;
}

.content_row .team h2 {
	text-align: center;
}

.content_row .team .sparky_cell {
	padding: 40px;
}

.content_row .team p {
	color: #34495E;
	font-size: 18px;
}

.content_row .team img {
	opacity: 0;
	filter:grayscale(30%);
	transition: all 0.5s;
}

.content_row .team img:hover {
	filter:grayscale(0%);
	transition: all 0.5s;
}

.content_row .team_position {
	display: block;
	font-size: 14px;
	text-transform: none;
	color: #666;
	font-weight: 400;
}

/* pricing page */

.sparky_container.pricing {
	text-align: center;
	width: auto;
}

.sparky_container.pricing h2 {
	text-align: center;
}

.sparky_container.pricing .plan {
	border: 1px solid #ccc;
	padding: 50px 0 30px;
	border-radius: 5px;
	margin: 0 15px;
}

.plan_name {
	text-transform: uppercase;
	color: #34495e;
	font-size: 24px;
	font-weight: 700;
}

.plan_price {
	font-size: 48px;
	font-weight: 700;
	margin-bottom: 0;
	color: #7f8c8d;
}

.sparky_container.pricing ul {
	margin: 50px 30px;
	padding: 0;
	list-style: none;
	min-height: 150px;
	text-align:left;
}

.sparky_container.pricing li::before {
	content:"\f00c";
	font-family: "Font Awesome 5 Free";
  	font-weight: 900;
	display: inline-block;
	margin: 0 10px;
	color: #58b75d;
}

.sparky_container.pricing .plan.recommended {
	border: 1px solid #1abc9c;
    background: #1abc9c;
}

.sparky_container.pricing .plan.recommended,
.sparky_container.pricing .plan.recommended .plan_name,
.sparky_container.pricing .plan.recommended .plan_price,
.sparky_container.pricing .plan.recommended li::before {
	color: #fff;
}

.sparky_container.pricing .plan a.btn {
	color: #ff6900;
	background: #fff;
	border: 2px solid #ff6900;
	padding: 12px 24px;
	font-size: 18px;
	border-radius: 28px;
	transition: all .3s;
}

.sparky_container.pricing .plan a.btn:hover {
	border: 2px solid #34495E;
	color: #34495E;
	transition: all .3s;
}

.sparky_container.pricing .plan.recommended a.btn {
	border: 2px solid #fff;
}

/* portfolio page */

.sparky_container.portfolio h2 {
	text-align: center;
}

.sparky_container.portfolio {
	padding-bottom: 30px;
}

.portfolio_type {
	display: block;
	font-size: 11px;
	text-transform: uppercase;
}

/* coming soon page */

.sparky_container.soon p {
	font-size: 24px;
}

.sparky_container.soon input.email {
	padding: 11px;
}

.sparky_container.soon p.terms {
	font-size: 14px;
	margin-top: 15px;
}

/* 404 page */

.sparky_container.page404 input.search-query {
	padding: 12px;
	width: 200px;
}

/* faq */

h2.accordion-header {
	padding-bottom: 0; 
}

.accordion-button:not(.collapsed) {
    color: #1abc9c;
    background-color: #eee;
}

/* responsive */

@media (max-width: 1169px) {

	.sparky_home p.readmore {
		margin-left: 75px;
	}

}

@media (max-width: 991px) {

	.mp_top1 button {
		padding: 6px 0;
      	font-size: 13px;
	}

	.sparky_home .left.item-image, .sparky_home .right.item-image {
		height: auto;
	}

	.sparky_home p.readmore {
		margin-left: 0;
	}

	.nav-collapse.opened ul ul {
		padding: 0 0 0 15px;
	}

	.nav-collapse.opened li a {
	    padding: 0 15px;
	    line-height: 40px;
	    height: 40px;
	}

	.mnu_mainmenu > li.parent {
		padding-right: 0;
	}

	.content_row .team .sparky_cell {
	    padding: 20px;
	}

	.sparky_inner .mp_header1 p {
	    width: 100%;
	}

	.sparky_container.page404,
	.sparky_container.soon {
		width: 100%;
	}

	.sparky_container.pricing .sparky_cell,
	.sparky_container.soon .sparky_cell,
	.sparky_container.page404 .sparky_cell {
		width: 100%;
		float: none;
	}

	.sparky_container.pricing .plan {
	    margin: 0;
	}

	.sparky_container.pricing ul {
		text-align: center;
	}

	.mp_right input.search-query, .mp_left input.search-query {
		width: 133px !important;
	}

}

@media (max-width: 767px) {
  
    .blog-items.columns-3 .blog-item {
    	width: 100%;
	}

	.logo_row {
		padding: 0;
	}

	.one .mp_logo {
	    width: 49% !important;
	    padding-top: 8px;
    	margin-left: 1%;
	}

	.one .mp_mainmenu {
	    width: 20% !important;
	}

	.one .mp_top1 {
	    width: 30% !important;
	}

	.row-fluid .span4 {
		width: 100%;
		margin: 0;
	}

	.sparky_home p.readmore {
		margin-left: 75px;
	}

	.blog-items {
		padding: 0;
	}

	.columns-3 div.blog-item {
	    margin: 0 0 30px 0;
	}

	.sparky_home .left.item-image, .sparky_home .right.item-image {
	    height: 150px;
	}

	.user_row .sparky_cell {
		width: 50% !important;
		float: left;
	}
  
}

	