/*
Theme Name: sumeet
Theme URI: http://wordpress.org/themes/twentytwelve
Author: the WordPress team
Author URI: http://wordpress.org/
Description: The 2012 theme for WordPress is a fully responsive theme that looks great on any device. Features include a front page template with its own widgets, an optional display font, styling for post formats on both index and single views, and an optional no-sidebar page template. Make it yours with a custom menu, header image, and background.
Version: 1.5
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: light, gray, white, one-column, two-columns, right-sidebar, fluid-layout, responsive-layout, custom-background, custom-header, custom-menu, editor-style, featured-images, flexible-header, full-width-template, microformats, post-formats, rtl-language-support, sticky-post, theme-options, translation-ready
Text Domain: twentytwelve

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/

/* =Notes
--------------------------------------------------------------
This stylesheet uses rem values with a pixel fallback. The rem
values (and line heights) are calculated using two variables:

$rembase:     14;
$line-height: 24;

---------- Examples

* Use a pixel value with a rem fallback for font-size, padding, margins, etc.
	padding: 5px 0;
	padding: 0.357142857rem 0; (5 / $rembase)

* Set a font-size and then set a line-height based on the font-size
	font-size: 16px
	font-size: 1.142857143rem; (16 / $rembase)
	line-height: 1.5; ($line-height / 16)

---------- Vertical spacing

Vertical spacing between most elements should use 24px or 48px
to maintain vertical rhythm:

.my-new-div {
	margin: 24px 0;
	margin: 1.714285714rem 0; ( 24 / $rembase )
}

---------- Further reading

http://snook.ca/archives/html_and_css/font-size-with-rem
http://blog.typekit.com/2011/11/09/type-study-sizing-the-legible-letter/


/* =Reset
-------------------------------------------------------------- */
@font-face {
    font-family: 'Helvetica';
    src: url('fonts/Helvetica.eot');
    src: url('fonts/Helvetica.eot') format('embedded-opentype'),
         url('fonts/Helvetica.woff2') format('woff2'),
         url('fonts/Helvetica.woff') format('woff'),
         url('fonts/Helvetica.ttf') format('truetype'),
         url('fonts/Helvetica.svg#Helvetica') format('svg');
}

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 {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	vertical-align: baseline;
}
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;
}
caption,
th,
td {
	/*font-weight: normal;
	text-align: right;*/
}
h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
}

html {
	overflow-y: scroll;
	font-size: 100%;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}
/*a:focus {
	outline: thin dotted;
}*/
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
.slicknav_menu,
section {
	display: block;
}
audio,
canvas,
video {
	display: inline-block;
}
audio:not([controls]) {
	display: none;
}
del {
	color: #333;
}
ins {
	background: #fff9c0;
	text-decoration: none;
}
hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin: 24px;
	margin-bottom: 1.714285714rem;
}
sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}
sup {
	top: -0.5em;
}
sub {
	bottom: -0.25em;
}
small {
	font-size: smaller;
}
img {
	border: 0;
	-ms-interpolation-mode: bicubic;
}

/* Clearing floats */
.clear:after,
.wrapper:after,
.format-status .entry-header:after {
	clear: both;
}
.clear:before,
.clear:after,
.wrapper:before,
.wrapper:after,
.format-status .entry-header:before,
.format-status .entry-header:after {
	display: table;
	content: "";
}


/* =Repeatable patterns
-------------------------------------------------------------- */

/* Small headers */
.archive-title,
.page-title,
.widget-title,
.entry-content th,
.comment-content th {
	font-size: 11px;
	font-size: 0.785714286rem;
	line-height: 2.181818182;
	font-weight: bold;
	text-transform: uppercase;
	color: #636363;
}

/* Shared Post Format styling */
article.format-quote footer.entry-meta,
article.format-link footer.entry-meta,
article.format-status footer.entry-meta {
	font-size: 11px;
	font-size: 0.785714286rem;
	line-height: 2.181818182;
}

/* Form fields, general styles first */
button,
input,
select,
textarea {
	border: 1px solid #ccc;
	border-radius: 3px;
	font-family: inherit;
	padding: 6px;
	padding: 0.428571429rem;
}
button,
input {
	line-height: normal;
}
textarea {
	font-size: 100%;
	overflow: auto;
	vertical-align: top;
}

/* Reset non-text input types */
input[type="checkbox"],
input[type="radio"],
input[type="file"],
input[type="hidden"],
input[type="image"],
input[type="color"] {
	border: 0;
	border-radius: 0;
	padding: 0;
}

/* Buttons */
.menu-toggle,
input[type="submit"],
input[type="button"],
input[type="reset"],
article.post-password-required input[type=submit],
.bypostauthor cite span {
	padding: 6px 10px;
	padding: 0.428571429rem 0.714285714rem;
	font-size: 11px;
	font-size: 0.785714286rem;
	line-height: 1.428571429;
	font-weight: normal;
	color: #7c7c7c;
	background-color: #e6e6e6;
	background-repeat: repeat-x;
	background-image: -moz-linear-gradient(top, #f4f4f4, #e6e6e6);
	background-image: -ms-linear-gradient(top, #f4f4f4, #e6e6e6);
	background-image: -webkit-linear-gradient(top, #f4f4f4, #e6e6e6);
	background-image: -o-linear-gradient(top, #f4f4f4, #e6e6e6);
	background-image: linear-gradient(top, #f4f4f4, #e6e6e6);
	border: 1px solid #d2d2d2;
	border-radius: 3px;
	box-shadow: 0 1px 2px rgba(64, 64, 64, 0.1);
}
.menu-toggle,
button,
input[type="submit"],
input[type="button"],
input[type="reset"] {
	cursor: pointer;
}
button[disabled],
input[disabled] {
	cursor: default;
}
.menu-toggle:hover,
.menu-toggle:focus,
button:hover,
input[type="submit"]:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
article.post-password-required input[type=submit]:hover {
	color: #5e5e5e;
	background-color: #ebebeb;
	background-repeat: repeat-x;
	background-image: -moz-linear-gradient(top, #f9f9f9, #ebebeb);
	background-image: -ms-linear-gradient(top, #f9f9f9, #ebebeb);
	background-image: -webkit-linear-gradient(top, #f9f9f9, #ebebeb);
	background-image: -o-linear-gradient(top, #f9f9f9, #ebebeb);
	background-image: linear-gradient(top, #f9f9f9, #ebebeb);
}
.menu-toggle:active,
.menu-toggle.toggled-on,
button:active,
input[type="submit"]:active,
input[type="button"]:active,
input[type="reset"]:active {
	color: #757575;
	background-color: #e1e1e1;
	background-repeat: repeat-x;
	background-image: -moz-linear-gradient(top, #ebebeb, #e1e1e1);
	background-image: -ms-linear-gradient(top, #ebebeb, #e1e1e1);
	background-image: -webkit-linear-gradient(top, #ebebeb, #e1e1e1);
	background-image: -o-linear-gradient(top, #ebebeb, #e1e1e1);
	background-image: linear-gradient(top, #ebebeb, #e1e1e1);
	box-shadow: inset 0 0 8px 2px #c6c6c6, 0 1px 0 0 #f4f4f4;
	border-color: transparent;
}
.bypostauthor cite span {
	color: #fff;
	background-color: #21759b;
	background-image: none;
	border: 1px solid #1f6f93;
	border-radius: 2px;
	box-shadow: none;
	padding: 0;
}

/* Responsive images */
.entry-content img,
.comment-content img,
.widget img {
	max-width: 100%; /* Fluid images for posts, comments, and widgets */
}
img[class*="align"],
img[class*="wp-image-"],
img[class*="attachment-"] {
	height: auto; /* Make sure images with WordPress-added height and width attributes are scaled correctly */
}
img.size-full,
img.size-large,
img.header-image,
img.wp-post-image {
	max-width: 100%;
	height: auto; /* Make sure images with WordPress-added height and width attributes are scaled correctly */
}

/* Make sure videos and embeds fit their containers */
embed,
iframe,
object,
video {
	max-width: 100%;
}
.entry-content .twitter-tweet-rendered {
	max-width: 100% !important; /* Override the Twitter embed fixed width */
}

/* Images */
.alignleft {
	float: left;
}
.alignright {
	float: right;
}
.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.entry-content img,
.comment-content img,
.widget img,
img.header-image,
.author-avatar img,
img.wp-post-image {
	/* Add fancy borders to all WordPress-added images but not things like badges and icons and the like 
	border-radius: 3px;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);*/
}
.wp-caption {
	max-width: 100%; /* Keep wide captions from overflowing their container. */
	padding: 4px;
}
.wp-caption .wp-caption-text,
.gallery-caption,
.entry-caption {
	font-style: italic;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 2;
	color: #757575;
}
img.wp-smiley,
.rsswidget img {
	border: 0;
	border-radius: 0;
	box-shadow: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}
.entry-content dl.gallery-item {
	margin: 0;
}
.gallery-item a,
.gallery-caption {
	width: 90%;
}
.gallery-item a {
	display: block;
}
.gallery-caption a {
	display: inline;
}
.gallery-columns-1 .gallery-item a {
	max-width: 100%;
	width: auto;
}
.gallery .gallery-icon img {
	height: auto;
	max-width: 90%;
	padding: 5%;
}
.gallery-columns-1 .gallery-icon img {
	padding: 3%;
}

/* Navigation */
.site-content nav {
	clear: both;
	line-height: 2;
	overflow: hidden;
}
#nav-above {
	padding: 24px 0;
	padding: 1.714285714rem 0;
}
#nav-above {
	display: none;
}
.paged #nav-above {
	display: block;
}
.nav-previous,
.previous-image {
	float: left;
	width: 50%;
}
.nav-next,
.next-image {
	float: right;
	text-align: right;
	width: 50%;
}
.nav-single + .comments-area,
#comment-nav-above {
	margin: 48px 0;
	margin: 3.428571429rem 0;
}

/* Author profiles */
.author .archive-header {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
.author-info {
	border-top: 1px solid #ededed;
	margin: 24px 0;
	margin: 1.714285714rem 0;
	padding-top: 24px;
	padding-top: 1.714285714rem;
	overflow: hidden;
}
.author-description p {
	color: #757575;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
}
.author.archive .author-info {
	border-top: 0;
	margin: 0 0 48px;
	margin: 0 0 3.428571429rem;
}
.author.archive .author-avatar {
	margin-top: 0;
}


/* =Basic structure
-------------------------------------------------------------- */

/* Body, links, basics */
html {
	font-size: 87.5%;
}
body {
	font-size: 14px;
	font-size: 1rem;
	font-family: Helvetica, Arial, sans-serif;
	text-rendering: optimizeLegibility;
	color: #444;
}
body.custom-font-enabled {
	font-family: "Open Sans", Helvetica, Arial, sans-serif;
}
a {
	outline: none;
	color: #21759b;
}
a:hover {
	color: #0f3647;
}

/* Assistive text */
.assistive-text,
.site .screen-reader-text {
	position: absolute !important;
	clip: rect(1px, 1px, 1px, 1px);
}
.main-navigation .assistive-text:focus {
	background: #fff;
	border: 2px solid #333;
	border-radius: 3px;
	clip: auto !important;
	color: #000;
	display: block;
	font-size: 12px;
	padding: 12px;
	position: absolute;
	top: 5px;
	left: 5px;
	z-index: 100000; /* Above WP toolbar */
}

/* Page structure */
.site {
	/*padding: 0 24px;
	padding: 0 1.714285714rem;*/
	background-color: #fff;
}
.site-content {
	margin: 24px 0 0;
	margin: 1.714285714rem 0 0;
}
.widget-area {
	margin: 24px 0 0;
	margin: 1.714285714rem 0 0;
}

/* Header */
.site-header {
	/*padding: 24px 0;
	padding: 1.714285714rem 0;*/
}
.site-header h1,
.site-header h2 {
	text-align: center;
}
.site-header h1 a,
.site-header h2 a {
	color: #515151;
	display: inline-block;
	text-decoration: none;
}
.site-header h1 a:hover,
.site-header h2 a:hover {
	color: #21759b;
}
.site-header h1 {
	font-size: 24px;
	font-size: 1.714285714rem;
	line-height: 1.285714286;
	margin-bottom: 14px;
	margin-bottom: 1rem;
}
.site-header h2 {
	font-weight: normal;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
	color: #757575;
}
.header-image {
	margin-top: 24px;
	margin-top: 1.714285714rem;
}

/* Navigation Menu */
.main-navigation, .slicknav_menu {
	/*margin-top: 24px;
	margin-top: 1.714285714rem;*/
	text-align: center;
}
.main-navigation li {
	margin-top: 24px;
	margin-top: 1.714285714rem;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 1.42857143;
}
.main-navigation a {
	color: #5e5e5e;
}
.main-navigation a:hover,
.main-navigation a:focus {
	color: #21759b;
}
.main-navigation ul.nav-menu,
.main-navigation div.nav-menu > ul {
	display: none;
}
.main-navigation ul.nav-menu.toggled-on,
.menu-toggle {
	display: inline-block;
}

/* Banner */
section[role="banner"] {
	margin-bottom: 48px;
	margin-bottom: 3.428571429rem;
}

/* Sidebar */
.widget-area .widget {
	-webkit-hyphens: auto;
	-moz-hyphens: auto;
	hyphens: auto;
	margin-bottom: 48px;
	margin-bottom: 3.428571429rem;
	word-wrap: break-word;
}
.widget-area .widget h3 {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
.widget-area .widget p,
.widget-area .widget li,
.widget-area .widget .textwidget {
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
}
.widget-area .widget p {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
.widget-area .textwidget ul {
	list-style: disc outside;
	margin: 0 0 24px;
	margin: 0 0 1.714285714rem;
}
.widget-area .textwidget li {
	margin-left: 36px;
	margin-left: 2.571428571rem;
}
.widget-area .widget a {
	color: #757575;
}
.widget-area .widget a:hover {
	color: #21759b;
}
.widget-area .widget a:visited {
	color: #001358;
}
.widget-area #s {
	width: 53.66666666666%; /* define a width to avoid dropping a wider submit button */
}

/* Footer */

footer[role="contentinfo"] {
	/*border-top: 1px solid #ededed;
	clear: both;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 2;
	max-width: 960px;
	max-width: 68.571428571rem;
	margin-top: 24px;
	margin-top: 1.714285714rem;
	margin-left: auto;
	margin-right: auto;
	padding: 24px 0;
	padding: 1.714285714rem 0;*/
}
footer[role="contentinfo"] a {
	/*color: #686868;*/
}
footer[role="contentinfo"] a:hover {
	/*color: #21759b;*/
}


/* =Main content and comment content
-------------------------------------------------------------- */

.entry-meta {
	clear: both;
}
.entry-header {
	/*margin-bottom: 24px;
	margin-bottom: 1.714285714rem;*/
}
.entry-header img.wp-post-image {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
.entry-header .entry-title {
	font-size: 20px;
	font-size: 1.428571429rem;
	line-height: 1.2;
	font-weight: normal;
}
.entry-header .entry-title a {
	text-decoration: none;
	color:#413b2f;
}
.entry-header .entry-format {
	margin-top: 24px;
	margin-top: 1.714285714rem;
	font-weight: normal;
}
.entry-header .comments-link {
	margin-top: 24px;
	margin-top: 1.714285714rem;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
	color: #757575;
}
.comments-link a,
.entry-meta a {
	color: #757575;
}
.comments-link a:hover,
.entry-meta a:hover {
	color: #21759b;
}
article.sticky .featured-post {
	border-top: 4px double #ededed;
	border-bottom: 4px double #ededed;
	color: #757575;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 3.692307692;
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
	text-align: center;
}
.entry-content,
.entry-summary,
.mu_register {
	line-height: 1.714285714;
}
.entry-content h1,
.comment-content h1,
.entry-content h2,
.comment-content h2,
.entry-content h3,
.comment-content h3,
.entry-content h4,
.comment-content h4,
.entry-content h5,
.comment-content h5,
.entry-content h6,
.comment-content h6 {
	margin: 24px 0;
	margin: 1.714285714rem 0;
	line-height: 1.714285714;
}
.entry-content h1,
.comment-content h1 {
	font-size: 21px;
	font-size: 1.5rem;
	line-height: 1.5;
}
.entry-content h2,
.comment-content h2,
.mu_register h2 {
	font-size: 18px;
	font-size: 1.285714286rem;
	line-height: 1.6;
}
.entry-content h3,
.comment-content h3 {
	font-size: 16px;
	font-size: 1.142857143rem;
	line-height: 1.846153846;
}
.entry-content h4,
.comment-content h4 {
	font-size: 14px;
	font-size: 1rem;
	line-height: 1.846153846;
}
.entry-content h5,
.comment-content h5 {
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
}
.entry-content h6,
.comment-content h6 {
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 1.846153846;
}
.entry-content p,
.entry-summary p,
.comment-content p,
.mu_register p, p {
	color: #333;
    font-family: 'Lato',sans-serif;
    font-size: 14px;
    font-weight: normal;
    margin: 0 0 10px;
    line-height: 170%;
    text-align: justify;
}
.entry-content a:visited,
.comment-content a:visited {
	color: #001358;
}
.entry-content ol,
.comment-content ol,
.entry-content ul,
.comment-content ul,
.mu_register ul {
	/*margin: 0 0 24px;
	margin: 0 0 1.714285714rem;
	line-height: 1.714285714;*/
}
.entry-content ul ul,
.comment-content ul ul,
.entry-content ol ol,
.comment-content ol ol,
.entry-content ul ol,
.comment-content ul ol,
.entry-content ol ul,
.comment-content ol ul {
	margin-bottom: 0;
}
.entry-content ul,
.comment-content ul,
.mu_register ul {
	list-style: none outside;
}
.entry-content ol,
.comment-content ol {
	list-style: decimal outside;
}
.entry-content li,
.comment-content li,
.mu_register li {
	/*margin: 0 0 0 36px;
	margin: 0 0 0 2.571428571rem;*/
}
.entry-content blockquote,
.comment-content blockquote {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
	padding: 24px;
	padding: 1.714285714rem;
	font-style: italic;
}
.entry-content blockquote p:last-child,
.comment-content blockquote p:last-child {
	margin-bottom: 0;
}
.entry-content code,
.comment-content code {
	font-family: Consolas, Monaco, Lucida Console, monospace;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 2;
}
.entry-content pre,
.comment-content pre {
	border: 1px solid #ededed;
	color: #666;
	font-family: Consolas, Monaco, Lucida Console, monospace;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 1.714285714;
	margin: 24px 0;
	margin: 1.714285714rem 0;
	overflow: auto;
	padding: 24px;
	padding: 1.714285714rem;
}
.entry-content pre code,
.comment-content pre code {
	display: block;
}
.entry-content abbr,
.comment-content abbr,
.entry-content dfn,
.comment-content dfn,
.entry-content acronym,
.comment-content acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}
.entry-content address,
.comment-content address {
	display: block;
	line-height: 1.714285714;
	margin: 0 0 24px;
	margin: 0 0 1.714285714rem;
}
img.alignleft,
.wp-caption.alignleft {
	margin: 12px 24px 12px 0;
	margin: 0.857142857rem 1.714285714rem 0.857142857rem 0;
}
img.alignright,
.wp-caption.alignright {
	margin: 12px 0 12px 24px;
	margin: 0.857142857rem 0 0.857142857rem 1.714285714rem;
}
img.aligncenter,
.wp-caption.aligncenter {
	clear: both;
	margin-top: 12px;
	margin-top: 0.857142857rem;
	margin-bottom: 12px;
	margin-bottom: 0.857142857rem;
}
.entry-content embed,
.entry-content iframe,
.entry-content object,
.entry-content video {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
.entry-content dl,
.comment-content dl {
	margin: 0 24px;
	margin: 0 1.714285714rem;
}
.entry-content dt,
.comment-content dt {
	font-weight: bold;
	line-height: 1.714285714;
}
.entry-content dd,
.comment-content dd {
	line-height: 1.714285714;
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
.entry-content table,
.comment-content table {
	/*border-bottom: 1px solid #ededed;
	color: #757575;*/
	font-size: 12px;
	font-size: 0.857142857rem;
	/*line-height: 2;
	margin: 0 0 24px;
	margin: 0 0 1.714285714rem;*/
	width: 100%;
	font-family: "Lato",sans-serif !important;
}
.entry-content table caption,
.comment-content table caption {
	font-size: 16px;
	font-size: 1.142857143rem;
	margin: 24px 0;
	margin: 1.714285714rem 0;
}
.entry-content td,
.comment-content td {
	/*border-top: 1px solid #ededed;*/
	padding: 6px 0px;
}
.site-content article {
	/*border-bottom: 4px double #ededed;
	margin-bottom: 72px;
	margin-bottom: 5.142857143rem;
	padding-bottom: 24px;
	padding-bottom: 1.714285714rem;
	word-wrap: break-word;
	-webkit-hyphens: auto;
	-moz-hyphens: auto;
	hyphens: auto;*/
}
.page-links {
	clear: both;
	line-height: 1.714285714;
}
footer.entry-meta {
	/*margin-top: 24px;
	margin-top: 1.714285714rem;*/
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
	color: #757575;
}
.single-author .entry-meta .by-author {
	display: none;
}
.mu_register h2 {
	color: #757575;
	font-weight: normal;
}


/* =Archives
-------------------------------------------------------------- */

.archive-header,
.page-header {
	margin-bottom: 48px;
	margin-bottom: 3.428571429rem;
	padding-bottom: 22px;
	padding-bottom: 1.571428571rem;
	border-bottom: 1px solid #ededed;
}
.archive-meta {
	color: #757575;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 2;
	margin-top: 22px;
	margin-top: 1.571428571rem;
}

/* =Single audio/video attachment view
-------------------------------------------------------------- */

.attachment .entry-content .mejs-audio {
	max-width: 400px;
}

.attachment .entry-content .mejs-container {
	margin-bottom: 24px;
}


/* =Single image attachment view
-------------------------------------------------------------- */

.article.attachment {
	overflow: hidden;
}
.image-attachment div.attachment {
	text-align: center;
}
.image-attachment div.attachment p {
	text-align: center;
}
.image-attachment div.attachment img {
	display: block;
	height: auto;
	margin: 0 auto;
	max-width: 100%;
}
.image-attachment .entry-caption {
	margin-top: 8px;
	margin-top: 0.571428571rem;
}


/* =Aside post format
-------------------------------------------------------------- */

article.format-aside h1 {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
article.format-aside h1 a {
	text-decoration: none;
	color: #4d525a;
}
article.format-aside h1 a:hover {
	color: #2e3542;
}
article.format-aside .aside {
	padding: 24px 24px 0;
	padding: 1.714285714rem;
	background: #d2e0f9;
	border-left: 22px solid #a8bfe8;
}
article.format-aside p {
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
	color: #4a5466;
}
article.format-aside blockquote:last-child,
article.format-aside p:last-child {
	margin-bottom: 0;
}


/* =Post formats
-------------------------------------------------------------- */

/* Image posts */
article.format-image footer h1 {
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
	font-weight: normal;
}
article.format-image footer h2 {
	font-size: 11px;
	font-size: 0.785714286rem;
	line-height: 2.181818182;
}
article.format-image footer a h2 {
	font-weight: normal;
}

/* Link posts */
article.format-link header {
	padding: 0 10px;
	padding: 0 0.714285714rem;
	float: right;
	font-size: 11px;
	font-size: 0.785714286rem;
	line-height: 2.181818182;
	font-weight: bold;
	font-style: italic;
	text-transform: uppercase;
	color: #848484;
	background-color: #ebebeb;
	border-radius: 3px;
}
article.format-link .entry-content {
	max-width: 80%;
	float: left;
}
article.format-link .entry-content a {
	font-size: 22px;
	font-size: 1.571428571rem;
	line-height: 1.090909091;
	text-decoration: none;
}

/* Quote posts */
article.format-quote .entry-content p {
	margin: 0;
	padding-bottom: 24px;
	padding-bottom: 1.714285714rem;
}
article.format-quote .entry-content blockquote {
	display: block;
	padding: 24px 24px 0;
	padding: 1.714285714rem 1.714285714rem 0;
	font-size: 15px;
	font-size: 1.071428571rem;
	line-height: 1.6;
	font-style: normal;
	color: #6a6a6a;
	background: #efefef;
}

/* Status posts */
.format-status .entry-header {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
.format-status .entry-header header {
	display: inline-block;
}
.format-status .entry-header h1 {
	font-size: 15px;
	font-size: 1.071428571rem;
	font-weight: normal;
	line-height: 1.6;
	margin: 0;
}
.format-status .entry-header h2 {
	font-size: 12px;
	font-size: 0.857142857rem;
	font-weight: normal;
	line-height: 2;
	margin: 0;
}
.format-status .entry-header header a {
	color: #757575;
}
.format-status .entry-header header a:hover {
	color: #21759b;
}
.format-status .entry-header img {
	float: left;
	margin-right: 21px;
	margin-right: 1.5rem;
}


/* =Comments
-------------------------------------------------------------- */

.comments-title {
	margin-bottom: 48px;
	margin-bottom: 3.428571429rem;
	font-size: 16px;
	font-size: 1.142857143rem;
	line-height: 1.5;
	font-weight: normal;
}
.comments-area article {
	margin: 24px 0;
	margin: 1.714285714rem 0;
}
.comments-area article header {
	margin: 0 0 48px;
	margin: 0 0 3.428571429rem;
	overflow: hidden;
	position: relative;
}
.comments-area article header img {
	float: left;
	padding: 0;
	line-height: 0;
}
.comments-area article header cite,
.comments-area article header time {
	display: block;
	margin-left: 85px;
	margin-left: 6.071428571rem;
}
.comments-area article header cite {
	font-style: normal;
	font-size: 15px;
	font-size: 1.071428571rem;
	line-height: 1.42857143;
}
.comments-area cite b {
	font-weight: normal;
}
.comments-area article header time {
	line-height: 1.714285714;
	text-decoration: none;
	font-size: 12px;
	font-size: 0.857142857rem;
	color: #5e5e5e;
}
.comments-area article header a {
	text-decoration: none;
	color: #5e5e5e;
}
.comments-area article header a:hover {
	color: #21759b;
}
.comments-area article header cite a {
	color: #444;
}
.comments-area article header cite a:hover {
	text-decoration: underline;
}
.comments-area article header h4 {
	position: absolute;
	top: 0;
	right: 0;
	padding: 6px 12px;
	padding: 0.428571429rem 0.857142857rem;
	font-size: 12px;
	font-size: 0.857142857rem;
	font-weight: normal;
	color: #fff;
	background-color: #0088d0;
	background-repeat: repeat-x;
	background-image: -moz-linear-gradient(top, #009cee, #0088d0);
	background-image: -ms-linear-gradient(top, #009cee, #0088d0);
	background-image: -webkit-linear-gradient(top, #009cee, #0088d0);
	background-image: -o-linear-gradient(top, #009cee, #0088d0);
	background-image: linear-gradient(top, #009cee, #0088d0);
	border-radius: 3px;
	border: 1px solid #007cbd;
}
.comments-area .bypostauthor cite span {
	position: absolute;
	margin-left: 5px;
	margin-left: 0.357142857rem;
	padding: 2px 5px;
	padding: 0.142857143rem 0.357142857rem;
	font-size: 10px;
	font-size: 0.714285714rem;
}
.comments-area .bypostauthor cite b {
	font-weight: bold;
}
a.comment-reply-link,
a.comment-edit-link {
	color: #686868;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
}
a.comment-reply-link:hover,
a.comment-edit-link:hover {
	color: #21759b;
}
.commentlist .pingback {
	line-height: 1.714285714;
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}

/* Comment form */
#respond {
	margin-top: 48px;
	margin-top: 3.428571429rem;
}
#respond h3#reply-title {
	font-size: 16px;
	font-size: 1.142857143rem;
	line-height: 1.5;
}
#respond h3#reply-title #cancel-comment-reply-link {
	margin-left: 10px;
	margin-left: 0.714285714rem;
	font-weight: normal;
	font-size: 12px;
	font-size: 0.857142857rem;
}
#respond form {
	margin: 24px 0;
	margin: 1.714285714rem 0;
}
#respond form p {
	margin: 11px 0;
	margin: 0.785714286rem 0;
}
#respond form p.logged-in-as {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
#respond form label {
	display: block;
	line-height: 1.714285714;
}
#respond form input[type="text"],
#respond form textarea {
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 1.714285714;
	padding: 10px;
	padding: 0.714285714rem;
	width: 100%;
}
#respond form p.form-allowed-tags {
	margin: 0;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 2;
	color: #5e5e5e;
}
.required {
	color: red;
}


/* =Front page template
-------------------------------------------------------------- */

.entry-page-image {
	margin-bottom: 14px;
	margin-bottom: 1rem;
}
.template-front-page .site-content article {
	border: 0;
	margin-bottom: 0;
}
.template-front-page .widget-area {
	clear: both;
	float: none;
	width: auto;
	padding-top: 24px;
	padding-top: 1.714285714rem;
	border-top: 1px solid #ededed;
}
.template-front-page .widget-area .widget li {
	margin: 8px 0 0;
	margin: 0.571428571rem 0 0;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.714285714;
	list-style-type: square;
	list-style-position: inside;
}
.template-front-page .widget-area .widget li a {
	color: #757575;
}
.template-front-page .widget-area .widget li a:hover {
	color: #21759b;
}
.template-front-page .widget-area .widget_text img {
	float: left;
	margin: 8px 24px 8px 0;
	margin: 0.571428571rem 1.714285714rem 0.571428571rem 0;
}


/* =Widgets
-------------------------------------------------------------- */

.widget-area .widget ul ul {
	margin-left: 12px;
	margin-left: 0.857142857rem;
}
.widget_rss li {
	margin: 12px 0;
	margin: 0.857142857rem 0;
}
.widget_recent_entries .post-date,
.widget_rss .rss-date {
	color: #aaa;
	font-size: 11px;
	font-size: 0.785714286rem;
	margin-left: 12px;
	margin-left: 0.857142857rem;
}
#wp-calendar {
	margin: 0;
	width: 100%;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
	color: #686868;
}
#wp-calendar th,
#wp-calendar td,
#wp-calendar caption {
	text-align: left;
}
#wp-calendar #next {
	padding-right: 24px;
	padding-right: 1.714285714rem;
	text-align: right;
}
.widget_search label {
	display: block;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
}
.widget_twitter li {
	list-style-type: none;
}
.widget_twitter .timesince {
	display: block;
	text-align: right;
}


ul.resource-list li a.download-btn {
    background: #071762;
    border-bottom: 3px solid #bebebe;
    border-radius: 5px;
    color: #fff!important;
   
    font-size: 13px;
    font-weight: bold;
    padding: 5px 12px 6px;
    text-decoration: none;
    margin-left: 15px;
}
ul.resource-list li a.download-btn:hover {
    background: #685f4a;
    color: #FFF;
}
html ul.resource-list li {
    background-position: 2px 15px;
    display: flex;
    align-items: center;
    margin-bottom: 17px;
    font-size: 18px;
}


/* =Plugins
----------------------------------------------- */

img#wpstats {
	display: block;
	margin: 0 auto 24px;
	margin: 0 auto 1.714285714rem;
}


/* =Media queries
-------------------------------------------------------------- */

/* Does the same thing as <meta name="viewport" content="width=device-width">,
 * but in the future W3C standard way. -ms- prefix is required for IE10+ to
 * render responsive styling in Windows 8 "snapped" views; IE10+ does not honor
 * the meta tag. See http://core.trac.wordpress.org/ticket/25888.
 */
@-ms-viewport {
	width: device-width;
}
@viewport {
	width: device-width;
}

/* Minimum width of 600 pixels. */
@media screen and (min-width: 767px) {
	.author-avatar {
		float: left;
		margin-top: 8px;
		margin-top: 0.571428571rem;
	}
	.author-description {
		float: right;
		width: 80%;
	}
	/*.site {
		margin: 0 auto;
		max-width: 960px;
		max-width: 68.571428571rem;
		overflow: hidden;
	}*/
	.site-content {
		float: left;
		width:100%;
	}
	body.template-front-page .site-content,
	body.attachment .site-content,
	body.full-width .site-content {
		width: 100%;
	}
	.widget-area {
		float: right;
		width: 26.041666667%;
	}
	.site-header h1,
	.site-header h2 {
		text-align: left;
	}
	.site-header h1 {
		font-size: 26px;
		font-size: 1.857142857rem;
		line-height: 1.846153846;
		margin-bottom: 0;
	}
	.main-navigation ul.nav-menu,
	.main-navigation div.nav-menu > ul {
		/*border-bottom: 1px solid #ededed;
		border-top: 1px solid #ededed;*/
		display: inline-block !important;
		text-align: left;
		width: 100%;
	}
	.main-navigation ul {
		margin: 0;
		text-indent: 0;
	}
	.main-navigation li a,
	.main-navigation li {
		display: inline-block;
		text-decoration: none;
	}
	.main-navigation li a {
		 border-bottom: 0 none;
		color: #fff;
		font-family: 'Lato',sans-serif;
		font-size: 16px;
		line-height: 50px;
		padding: 0 24px;
		text-transform: none;
		white-space: nowrap;
	}
	
	.main-navigation li:first-child a {
		padding: 0 17px;
	}
	.main-navigation li:last-child {
		border:none;
	}
	.main-navigation li a:hover,
	.main-navigation li .sub-menu li a:hover,
	.main-navigation li a:focus {
		background:#685F4A;
		color: #FFF;
	}
	.main-navigation li {
		border-right: 1px solid #7b7159;
		float: left;
		height: 50px;
		margin: 0;
		padding: 0;
		position: relative;
	}
	.main-navigation li ul {
		margin: 0;
		padding: 0;
		position: absolute;
		top: 100%;
		z-index: 1;
		height: 1px;
		width: 1px;
		overflow: hidden;
		clip: rect(1px, 1px, 1px, 1px);
	}
	.main-navigation li ul ul {
		top: 0;
		left: 100%;
	}
	.main-navigation ul li:hover > ul,
	.main-navigation ul li:focus > ul,
	.main-navigation .focus > ul {
		border-left: 0;
		clip: inherit;
		overflow: inherit;
		height: inherit;
		width: inherit;
	}
	.main-navigation li ul li a {
		background: #efefef;
		border-bottom: 1px solid #ededed;
		display: block;
		font-size: 11px;
		font-size: 0.785714286rem;
		line-height: 2.181818182;
		padding: 8px 10px;
		padding: 0.571428571rem 0.714285714rem;
		width: 180px;
		width: 23.85714286rem;
		white-space: normal;
	}
	.main-navigation li ul li a:hover,
	.main-navigation li ul li a:focus {
		background: #e3e3e3;
		color: #444;
	}
	.main-navigation .current-menu-item > a,
	.main-navigation .current-menu-ancestor > a,
	.main-navigation .current_page_item > a,
	.main-navigation .current_page_ancestor > a,
	.main-navigation li .sub-menu li.current-menu-item a {
		background:#685f4a;
		color: #fff;
		font-weight: normal;
	}
	.menu-toggle {
		display: none;
	}
	.entry-header .entry-title {
		font-size: 22px;
		font-size: 1.571428571rem;
	}
	#respond form input[type="text"] {
		width: 46.333333333%;
	}
	#respond form textarea.blog-textarea {
		width: 79.666666667%;
	}
	.template-front-page .site-content,
	.template-front-page article {
		overflow: hidden;
	}
	.template-front-page.has-post-thumbnail article {
		float: left;
		width: 47.916666667%;
	}
	.entry-page-image {
		float: right;
		margin-bottom: 0;
		width: 47.916666667%;
	}
	.template-front-page .widget-area .widget,
	.template-front-page.two-sidebars .widget-area .front-widgets {
		float: left;
		width: 51.875%;
		margin-bottom: 24px;
		margin-bottom: 1.714285714rem;
	}
	.template-front-page .widget-area .widget:nth-child(odd) {
		clear: right;
	}
	.template-front-page .widget-area .widget:nth-child(even),
	.template-front-page.two-sidebars .widget-area .front-widgets + .front-widgets {
		float: right;
		width: 39.0625%;
		margin: 0 0 24px;
		margin: 0 0 1.714285714rem;
	}
	.template-front-page.two-sidebars .widget,
	.template-front-page.two-sidebars .widget:nth-child(even) {
		float: none;
		width: auto;
	}
	.commentlist .children {
		margin-left: 48px;
		margin-left: 3.428571429rem;
	}
}

/* Minimum width of 960 pixels. */
@media screen and (min-width: 960px) {
	body {
		background-color: #FFF;
	}
	/*body .site {
		padding: 0 40px;
		padding: 0 2.857142857rem;
		margin-top: 48px;
		margin-top: 3.428571429rem;
		margin-bottom: 48px;
		margin-bottom: 48px;
		margin-bottom: 3.428571429rem;
		box-shadow: 0 2px 6px rgba(100, 100, 100, 0.3);
	}*/
	body.custom-background-empty {
		background-color: #fff;
	}
	body.custom-background-empty .site,
	body.custom-background-white .site {
		padding: 0;
		margin-top: 0;
		margin-bottom: 0;
		box-shadow: none;
	}
}


/* =Print
----------------------------------------------- */

@media print {
	body {
		background: none !important;
		color: #000;
		font-size: 10pt;
	}
	footer a[rel=bookmark]:link:after,
	footer a[rel=bookmark]:visited:after {
		content: " [" attr(href) "] "; /* Show URLs */
	}
	a {
		text-decoration: none;
	}
	.entry-content img,
	.comment-content img,
	.author-avatar img,
	img.wp-post-image {
		border-radius: 0;
		box-shadow: none;
	}
	.site {
		clear: both !important;
		display: block !important;
		float: none !important;
		max-width: 100%;
		position: relative !important;
	}
	.site-header {
		margin-bottom: 72px;
		margin-bottom: 5.142857143rem;
		text-align: left;
	}
	.site-header h1 {
		font-size: 21pt;
		line-height: 1;
		text-align: left;
	}
	.site-header h2 {
		color: #000;
		font-size: 10pt;
		text-align: left;
	}
	.site-header h1 a,
	.site-header h2 a {
		color: #000;
	}
	.author-avatar,
	#colophon,
	#respond,
	.commentlist .comment-edit-link,
	.commentlist .reply,
	.entry-header .comments-link,
	.entry-meta .edit-link a,
	.page-link,
	.site-content nav,
	.widget-area,
	img.header-image,
	.main-navigation {
		display: none;
	}
	.wrapper {
		border-top: none;
		box-shadow: none;
	}
	.site-content {
		margin: 0;
		width: auto;
	}

	.entry-header .entry-title,
	.entry-title {
		font-size: 21pt;
	}
	footer.entry-meta,
	footer.entry-meta a {
		color: #444;
		font-size: 10pt;
	}
	.author-description {
		float: none;
		width: auto;
	}

	/* Comments */
	.commentlist > li.comment {
		background: none;
		position: relative;
		width: auto;
	}
	.commentlist .avatar {
		height: 39px;
		left: 2.2em;
		top: 2.2em;
		width: 39px;
	}
	.comments-area article header cite,
	.comments-area article header time {
		margin-left: 50px;
		margin-left: 3.57142857rem;
	}
}
/*------------------------home-page--------------------*/

.container {margin: 0 auto;width: 1000px;}
.top-bar {background:#D4D4D4;float: left;width: 100%;} 
.top-bar .contact-no {background: url("images/contact-icon.png") no-repeat left center;color: #333;float: left;font-family: 'Lato',sans-serif;font-size: 16px;font-weight: bold;height: 22px;line-height: 135%;margin: 9px 0 9px 1px;padding-left: 24px;}
.top-bar .menu-home-top-right-container {float:right;}
.top-bar .menu-home-top-right-container li {float:left;}
.top-bar .menu-home-top-right-container li a {color:#413B2F;float: left;font-family: 'Lato',sans-serif;font-size: 16px;font-weight: normal;padding:12px 18px;text-decoration: none;}
.top-bar .menu-home-top-right-container li a:hover, .top-bar .menu-home-top-right-container li.current_page_item a {background:#b1b1b1;color:#FFF;}
.main-navigation li .sub-menu li {background:#413b2f;border-right:none;float: left;height:auto;margin: 0;padding:0;position: relative;}
.main-navigation li .sub-menu li a {background:none;border-top: 1px solid #7b7159;border-bottom:none;color: #fff;font-family: 'Lato',sans-serif;font-size: 16px;padding:10px 24px;line-height:100%;}
.header-logo {margin-left: 1px;margin-top: 18px;max-width: 100%;width: auto;height: auto;}
#widget_sp_image-2.widget.widget_sp_image {float: right;}
.widget.widget_sp_image .widget-title {background: url("images/award-bg.png") no-repeat left center;color: #413b2f;float: right;font-family: 'Oswald',sans-serif;font-size: 14px;font-weight: 400;height: 44px;letter-spacing: 0.2px;line-height: 120%;margin-top: 26px;padding-left: 10px;padding-bottom: 0;padding-top: 9px;text-align: center;text-transform: none;width: 110px;}
#widget_sp_image-2 .attachment-full {margin-right: -6px;margin-top: 11px;}
.mein-menu {background:#413b2f;float: left;height: 50px;margin-top: 8px;width: 100%;}
#slider {margin: 0 auto;max-width: 100%;width: 100%;}
#slider .nemus-slider {margin:0 0 21px;min-height: 40px;position: relative;}
#slider .nemus-slider .slide-image {height: 488px !important;}
#slider .nemus-slider .nemus-control-nav, #slider .nemus-slider .nemus-direction-nav {display: none;}
#slider .nemus-slider .caption {background: none;color: #00144f;float: left;font-family: 'Lato',sans-serif;font-size: 45px;font-weight: bold;left: 10px;line-height: 63px;padding: 0;text-shadow: -2px 3px 17px #fff;text-transform: uppercase;top: 100px;}
.widget-title , h2.widget-title  {background: url("images/widget-title.png") no-repeat left bottom;color: #413b2f;float: left;font-family: 'Lato',sans-serif;font-size: 25px;font-weight: normal;line-height: 100%;margin-bottom: 10px;padding-bottom: 28px;width: 100%;}
.widget-title span, h2.widget-title span{font-family: 'Lato',sans-serif;font-size: 25px;font-weight: bold;}
.about {background: url("images/about-shadow.png") no-repeat right center;float: left;min-height: 240px;padding-right: 36px;width: 570px;}
.about > p {color: #333;font-family: 'Lato',sans-serif;font-size: 14px;font-weight: normal;margin-bottom: 15px;letter-spacing: 0.1px;line-height: 165%;text-align: justify;}
.last_news {float: right;position: relative;width: 360px;}		
.last_news .arrow1 {position: absolute;right: 0;top:3px;}
.last_news .arrow1 #slide_prev {background: url("images/news-l-arrow.png") no-repeat left top;float: left;font-size: 0;height: 20px;width: 20px;}
.last_news .arrow1 #slide_prev:hover {background: url("images/news-l-ho-arrow.png") no-repeat left top;}
.last_news .arrow1 #slide_next {background: url("images/news-r-arrow.png") no-repeat left top;float: left;font-size: 0;margin-left: 10px;height: 20px;width: 20px;}
.last_news .arrow1 #slide_next:hover {background: url("images/news-r-ho-arrow.png") no-repeat left top;}
.last_news .caroufredsel_wrapper, .last_news .caroufredsel_wrapper ul {width: 100% !important;height:180px!important;}
.last_news .caroufredsel_wrapper ul li {border-bottom: 1px solid #ccc;margin-bottom: 16px;margin-top: 6px;padding-bottom: 12px;width: 100% !important;}
.last_news .caroufredsel_wrapper .news-title a {color:#040A5B;font-family: 'Lato',sans-serif;font-size: 15px;font-weight: bold;text-decoration:none;}
.last_news .caroufredsel_wrapper .news-title a:hover {color:#413b2f;}
.last_news .caroufredsel_wrapper .details {color: #333;font-family: 'Lato',sans-serif;font-size: 14px;font-weight: normal;line-height: 145%;text-align: justify;}
.last_news .caroufredsel_wrapper .date  {color: #040a5b;font-family: 'Lato',sans-serif;font-size: 13px;font-weight: bold;margin: 6px 0;}
.entry-content .read-more, .read-more, .view-all > a {background:#071762;border-bottom: 3px solid #bebebe;border-radius: 5px;color:#fff!important;float: left;font-size: 15px;font-weight: bold;padding: 7px 10px 8px;text-decoration: none;}
.entry-content .read-more:hover, .read-more:hover, .view-all > a:hover {background:#685f4a;color:#FFF;}
.services {/*background: url("images/our-services-bg.png") repeat left top;*/float:left;width:100%;margin-top: 37px;min-height: 397px;}
.services .widget-title {background: url("images/services-title-bg.png") no-repeat center bottom;color: #413b2f;float: left;font-family: 'Lato',sans-serif;font-size: 25px;font-weight: normal;line-height: 100%;/*margin-top: 54px;*/text-align:center; margin-bottom: 20px;padding-bottom: 24px;width: 100%;}
.services .widget-title span {font-family: 'Lato',sans-serif;font-size: 25px;font-weight: bold;}
.services .caroufredsel_wrapper {width: 100% !important;height: 240px !important;float: left !important;}
.services .caroufredsel_wrapper  ul li {border: 2px solid #d4d4d4;float: left;margin-right: 32px;cursor: pointer;padding:4px;width: 300px;}
/*.services .caroufredsel_wrapper ul li:hover {border: 2px solid #685f4a;}*/
.services .caroufredsel_wrapper ul li .service-thumb {text-align:center;height: 138px; background:#fff;}
.services .caroufredsel_wrapper ul li .service-content {background:#fff;float:left;position: relative;padding:13px 13px 9px;width: 91.1%;}
.services .caroufredsel_wrapper ul li .service-content .service-title a {color: #413b2f;font-family: 'Helvetica';font-weight: bold;line-height: 100%;text-decoration: none;text-transform: uppercase;}
.services .caroufredsel_wrapper ul li .service-content .service-title a:hover {color:#080f6a}
.services .caroufredsel_wrapper ul li .service-content .details {color:#595959;font-family: 'Lato',sans-serif;font-size: 14px;font-weight: normal;line-height: 145%;}
.services .caroufredsel_wrapper ul li .service-content  a.services-more {background: url("images/services-cornar-bg.png") no-repeat right bottom;bottom: 0;color: #fff;float: right;font-size: 16px;height: 21px;padding: 12px 7px 0 0;position: absolute;right: 0;text-align: right;text-decoration: none; width: 24px;}
.services .caroufredsel_wrapper ul li .service-content  a.services-more:hover {color:#c8a273;/*font-size: 21px;font-weight: bold;height: 24px;padding: 8px 5px 0;*/}
.services .arrow1 {float: left;position: relative;width: 100%;}
.services .arrow1 #slide_prev1 {background: url("images/services-L-arrow.png") no-repeat left top;float: left;font-size: 0;height: 35px;left: -80px;position: absolute;top: 80px;width: 20px;}
.services .arrow1 #slide_prev1:hover {background: url("images/services-L-ho-arrow.png") no-repeat left top;}
.services .arrow1 #slide_next1 {background: url("images/services-R-arrow.png") no-repeat left top;float: left;font-size: 0;height: 35px;right: -80px;position: absolute; top: 80px;width: 20px;}
.services .arrow1 #slide_next1:hover {background: url("images/services-R-ho-arrow.png") no-repeat left top;}
.news-box .news-title > a 	{
	background: url("images/entr-a.png") no-repeat 2px 4px;
   color: #333333;
    display: table;
    font-family: 'Lato',sans-serif;
    font-size: 14px;
    font-weight: normal;
    line-height: 121%;
    list-style: none outside none;
    margin: 2px 0 11px;
    padding-left: 26px;
    text-decoration: none;
}
.news-box .news-title > a:hover {
  background: url("images/entr-a-ho.png") no-repeat 2px 4px;
    color: #c8a273;
}
.last_news .news-box {
  display: table;
  width: 100%;
}
.news-box .news-title {
  display: block;
  clear: both;
}
.last_news .view-all > a {
  margin-top: 7px;
}
.post-type-archive-news .entry-header h1.entry-title {
  display: none;
}
.post-type-archive-news .container .entry-content {
  margin-bottom: 0!important;
}

/************-footer***********/

footer.footer {background: url("images/footer-bg.png") repeat left top;float:left;width:100%;}
footer.footer .footer-title {background: url("images/footer-title-bg.png") no-repeat left top;height: 85px;line-height: 62px;margin: -9px auto 27px;max-width: 438px;width: 100%;}
footer.footer .footer-title a {background: url("images/download-icon.png") no-repeat left center;color: #001358;float: left;font-family: 'Lato',sans-serif;font-size: 20px;font-weight: bold;height: 35px;line-height: 28px;text-shadow: 0 1px 1px #fff;margin: 13px 0 0 79px;padding-left: 53px;text-decoration: none;}
footer.footer .footer-title a:hover {background: url("images/download-icon-ho.png") no-repeat left center;color:#4a261d;}
footer.footer .widget_nav_menu  h3.widget-title  {width:88%;}
footer.footer h3.widget-title {background: none;border-bottom: 1px solid #666;color: #fff;float: left;font-family: 'Lato',sans-serif;font-size: 18px;font-weight: bold;line-height: 100%;margin-bottom: 15px;padding-bottom: 12px;text-transform: none;width: 100%;}
footer.footer .widget_nav_menu {float: left;width: 343px;}
footer.footer .widget_nav_menu ul li {float: left;margin-bottom: 14px;width: 50%;}
footer.footer .widget_nav_menu ul li a {background: url("images/footer-menu-arrow.png") no-repeat left center;color: #fff;float: left;font-family: 'Lato',sans-serif;font-size: 14px;font-weight: normal;line-height: 100%;padding-left: 14px;text-decoration: none;}
footer.footer .widget_nav_menu ul li a:hover {background: url("images/footer-menu-arrow-ho.png") no-repeat left center;color:#c8a273;}
footer.footer .widget_nav_menu ul li.current-menu-item a{color:#c8a273;}
footer.footer #text-2.widget.widget_text {
    /* background: url("images/footer-blog-shadow.png") no-repeat left center; */
    float: left;
    margin-left: 25px;
    margin-right: 25px;
    min-height: 198px;
    padding-left: 32px;
    width: 265px;
}
footer.footer #text-2.widget.widget_text h3.widget-title {margin-bottom: 13px;}
footer.footer #text-2.widget.widget_text .textwidget > h3 {color: #fff;float: left;font-family: 'Lato',sans-serif;font-size: 14px;font-weight: bold;line-height: 100%;width:100%;}
footer.footer #text-2.widget.widget_text p.footer-address{color: #cccccc;float: left;font-family: 'Lato',sans-serif;font-size: 14px;line-height: 165%;margin: 4px 0 9px;width: 100%;}
footer.footer #text-2.widget.widget_text p.footer-phone{background: url("images/fo-call-icon.png") no-repeat left center;color: #FFF;float: left;font-family: 'Lato',sans-serif;font-size: 14px;line-height: 15px;margin: 4px 0 11px;padding-left: 27px;width: 100%;}
footer.footer #text-2.widget.widget_text p.footer-fax{background: url("images/fo-fax-icon.png") no-repeat left center;color: #FFF;float: left;font-family: 'Lato',sans-serif;font-size: 14px;line-height: 15px;margin: 4px 0 11px;padding-left: 27px;width: 100%;}
footer.footer #text-2.widget.widget_text a.email {
    /* background: url("images/fo-message-icon.png") no-repeat left center; */
    color: #FFF;
    float: left;
    font-family: 'Lato',sans-serif;
    font-size: 14px;
    line-height: 15px;
    margin: 0;
    padding-left: 0;
    text-decoration: none;
    width: 100%;
}

footer.footer #text-2.widget.widget_text a.email:hover {color: #c8a273;}
footer.footer #text-3.widget.widget_text {float:right;}
footer.footer #text-3.widget.widget_text iframe {border: 5px solid #545454 !important;margin-bottom: 34px;margin-top: 1px;}
footer.footer #text-3.widget.widget_text iframe:hover {border: 5px solid #c8a273!important;}
footer.footer .site-info {background: url("images/site-info-bg.png") repeat-x left top;float: left;width: 100%;height: 40px;}
footer.footer .site-info .copy-right {color: #fff;float: left;font-family: 'Lato',sans-serif;font-size: 14px;line-height: 100%;margin-top: 11px;}
footer.footer .site-info .copy-right a {color: #fff;font-family: 'Lato',sans-serif;font-size: 14px;text-decoration: none;}
footer.footer .site-info .copy-right a:hover {color:#c8a273;}
footer.footer .site-info ul li {background: none;float: left;margin-bottom: 0px;width: auto;}
footer.footer .site-info ul li a {background: url("images/Privacy-sepretor.png") no-repeat right center!important;padding:0 11px 0 0px;}
footer.footer .site-info ul li a:hover {background: none;}
footer.footer .site-info ul li:last-child a {padding:0 0px 0 10px;background:none !important;}
footer.footer .site-info .bottom-right {float: right;margin-top: 11px;text-align: right;}
footer.footer .site-info .widget_nav_menu {width: auto;}

/*****************About-us*************/
#banner {margin: 0 auto;max-width: 1280px;position: relative;height:auto;width: 100%;}
/*#banner .widget_sp_image-description p {color: #00144f;float: left;font-family: 'Lato',sans-serif;font-size: 45px;font-weight: bold;left: 139px;line-height: 63px;padding: 0;text-shadow: -2px 3px 17px #fff;text-transform: uppercase;top: 85px;position: absolute;text-align: left;}*/
#banner .widget_sp_image-description p {color: #00144f;font-family: 'Lato',sans-serif;font-size: 45px;font-weight: bold;line-height: 63px;padding: 0;text-shadow: -2px 3px 17px #fff;text-transform: uppercase;text-align: left;}
.bread_wrapper {background:#f8f8f8;border-bottom: 1px solid #e9e9e9; border-top: 1px solid #e9e9e9;float: left;width: 100%;}
.breadcrumbs {margin: 0 auto;width: 1000px; padding:13px 0;}
.breadcrumbs span {font-family: 'Lato',sans-serif;font-size: 14px;font-weight: bold;color:#030945;}
.breadcrumbs span a {font-family: 'Lato',sans-serif;font-size: 14px;margin-right: 8px;font-weight:normal;color:#333;text-decoration: none;}
.breadcrumbs span a:hover {color:#c8a273;}
.breadcrumbs span span {margin-left: 8px;}
.breadcrumbs span span span {margin-left: 0;}
.entry-header h1.entry-title {background: url("images/widget-title.png") no-repeat left bottom;color: #413b2f;float: left;font-family: 'Lato',sans-serif;font-size: 25px;font-weight: normal;line-height: 100%;margin-bottom: 10px;padding-bottom: 28px;margin-top: 20px;text-transform: uppercase;width: 100%;}
.entry-header h1.entry-title span {font-family: 'Lato',sans-serif;font-size: 25px;font-weight: bold;color: #413b2f;}
.about_page .title {background: url("images/widget-title.png") no-repeat left bottom;color: #413b2f;float: left;font-family: 'Lato',sans-serif;font-size: 20px;font-weight: bold;line-height: 100%;margin-bottom: 10px;padding-bottom: 28px;text-transform: none;width: 100%;}
.about_page p {color: #333;font-family: 'Lato',sans-serif;font-size: 14px;font-weight: normal;margin: 0 0 10px;letter-spacing: 0.1px;line-height: 170%;text-align: justify;}
.entry-content.about_page {float: left;margin-bottom: 39px;width: 100%;}
.about_page .blog1, .about_page .blog2, .about_page .blog3, .about_page .blog4, .about_page .blog5 {float: left;width: 100%; margin-bottom: 28px}
.entry-content.about_page h2, .entry-content.about_page b {display: block; width: auto;float: none;background:none;padding:0px;color: #333;font-family: 'Lato',sans-serif;font-size: 16px;font-weight: bold;margin:0 0 12px;line-height: 100%;}
.about_page .desc {float: left;width: 100%;} 
.about_page .blog2{margin-bottom:18px;}
.about_page .blog3{margin-bottom:28px;}
.about_page .blog2 h2 {clear: none;}
.about_page .blog2 .desc img {border: 2px solid #ccc;margin: 0 0 0 24px;padding: 4px;width: 311px; float: right;}
.about_page .blog4 ul.left {width:49%;float:left;}
.about_page .blog4 ul.right {width:45.5%;float:right;}
.entry-content ul li, .comment-content ul li, .mu_register ul li, .wpc-content > ul li {background: url("images/entr-a.png") no-repeat 2px 6px;color: #333;  display: block;font-family: 'Lato',sans-serif;font-size: 14px;font-weight: normal;line-height: 160%;list-style: none outside none;margin: 0 0 11px;padding-left: 26px;}

.entry-content ul.sub-menu2 li {background: url("images/entr-a.png") no-repeat 2px 6px;color: #333;  display: block;font-family: 'Lato',sans-serif;font-size: 14px;font-weight: normal;line-height: 160%;list-style: none outside none;margin: 0 0 11px;padding-left: 26px;}
.entry-content ol.sub-menu2 li {color: #333;  display: block;font-family: 'Lato',sans-serif;font-size: 14px;font-weight: normal;line-height: 160%;margin: 0 0 11px;padding-left: 26px;background: none;}
.entry-content .main-ul> li {background: url("images/li-arrow.png") no-repeat 2px 6px;color: #333;  display: block;font-family: 'Lato',sans-serif;font-size: 14px;font-weight: normal;line-height: 160%;list-style: none outside none;margin: 0 0 11px;padding-left: 26px;}

ul.mile-stones {border: 1px solid #ccc;float: left;margin: 3px 0 19px;width: 100%;}
ul.mile-stones li.heading {background:#F8F8F8;color: #333;float: left;font-family: 'Lato',sans-serif;font-size: 14px;height: 38px;font-weight: bold;line-height: 160%;width:100%;} 
ul.mile-stones li p.left, ul.mile-stones li b.left {border-left:0px;float: left;margin: 0;text-align: center;padding:17px 0 0;width: 125px;}
ul.mile-stones li.heading b.left {padding: 0;}
ul.mile-stones li.heading b {line-height: 38px;margin: 0;padding-left: 45px;}
ul.mile-stones li b {border-left: 1px solid #ccc;color: #333;float:left;font-family: 'Lato',sans-serif;font-size: 14px;line-height: 54px;padding-left: 45px;margin: 0;}
ul.mile-stones li p {border-left: 1px solid #ccc;color: #333;float: left;font-family: 'Lato',sans-serif;font-size: 14px;line-height: 150%;margin: 0;padding:17px 0 16px 45px;width:82%;}
ul.mile-stones li {background: none;border-bottom: 1px solid #ccc;display: flex;margin: 0;min-height: 38px;padding: 0;width: 100%;}
ul.mile-stones li.last {border:none;} 
/*****************About-us-Close-*************/

/*****************Quality-Control--*************/
.quality_cont {float: left;width: 100%;}
.entry-content .job > h2, .quality_cont .poly > h2, .entry-content .infra .infra1 > h2 {background: url("images/widget-title.png") no-repeat left bottom;color: #413b2f;float: left;font-family: 'Lato',sans-serif;font-size: 20px;font-weight: bold;line-height: 100%;margin-bottom: 10px;margin-top: 12px;padding-bottom: 28px;text-transform: none;width: 100%;}
.infra1 > p {text-align:center;}
.quality_cont .poly img {float: left;border: 2px solid #ccc;margin:3px 24px 0 0;padding: 4px;}
.quality_cont .poly {float: left;margin-bottom: 14px;width: 100%;}
.quality_cont .poly ul.arrow {float: left; width: 60%;}
.quality_cont .poly ul.arrow li {margin:0;}
.quality_cont .poly strong {float: left;font-family: 'Lato',sans-serif;font-size: 16px;font-weight: bold;color:#333;margin: 6px 0 17px;line-height: 100%;}	
.quality_cont .poly strong span {font-family: 'Lato',sans-serif;font-size: 16px;font-weight: normal;color:#333;}
.entry-content ul.quarterly li, .entry-content ul.quarterly li a {background:none;  padding: 0; display:block;}
.entry-content ul.quarterly li > a{
	background: url("images/quarterly-arrow.png") no-repeat 15px center;
	background-color:#071762;
	color: #fff;
	display: block;
	font-family: "Lato",sans-serif;
	font-size: 18px;
	font-weight: bold;
	height: 38px;
	line-height: 38px;
	padding-left: 40px;
}
.entry-content ul.quarterly li > a:hover {
	background: url("images/quarterly-arrow-ho.png") no-repeat 15px center;
	background-color: #c8a273;
}
/*****************Quality-Control-Close-*************/

/*****************=-Infrastructure-*************/
.infra1 {float: left;margin-bottom: 14px;width: 100%;}
.infra1 img {float: left;border: 2px solid #ccc;margin:3px 24px 0 0px;padding: 4px;}
.infra > h2 {background: none;color: #031054;float: left;font-family: 'Lato',sans-serif;font-size: 18px;font-weight: bold;line-height: 100%;margin-bottom: 13px;margin-top: 5px;padding: 0;text-transform: none;width: 100%;}
.infra {float: left;width: 100%;}
/*****************-Infrastructure-Close-*************/

/*****************-products-*************/
.wp-catalogue-breadcrumb {display: none;}
#wpc-col-2 {float: left;width: 100%;}
.wpc-img, .product-img-view {background: none;border: 0 none;margin:3px 24px 0 0px;float: left;font-size: 0;height: auto !important;margin-bottom: 0;width: auto !important;}
/*.wpc-product .wpc-img:hover, .product-img-view:hover {border: 2px solid #685f4a !important;}*/
.wpc-img img {height: auto;max-height: 100%;max-width: 100%;}
/*****************-products-Close-*************/

/*****************-Career-*************/
h2.blue {background: none;color: #031054;float: left;font-family: 'Lato',sans-serif;font-size: 18px;font-weight: bold;line-height: 100%;margin-bottom: 13px;margin-top: 5px;padding: 0;text-transform: none;width: 100%;}
header.entry-header {float: left;position: relative;width: 100%;}		
header.entry-header .njob {background: url("images/stra-icon.png") no-repeat 20px center #071762;border-bottom: 3px solid #bebebe;border-radius:5px;color: #fff;float: left;font-family: 'Lato',sans-serif;font-size: 15px;font-weight: bold;padding: 7px 23px 8px 48px;position: absolute;right: 0;top:20px;}
/*.entry-content .contact-link > a { background: none!important;padding: 0;text-decoration: underline;color: #031054;float: left;font-family: 'Lato',sans-serif;font-size: 18px;font-weight: bold;line-height: 100%;}*/
.entry-content .contact-link {float: left;}
.entry-content .contact-link > a:hover {color: #c8a273;}
/*****************-Career-Close-*************/


/*****************-Quarterly-Results-*************/
.left.quarterly {float: left;width: 48.5%;}
.right.quarterly {float: right;width: 48.5%;}
.result_desc > br {display: none;}	
.quarterly > li .year {background: url("images/quarterly-arrow.png") no-repeat scroll 15px center #071762;color: #FFF;font-family: 'Lato',sans-serif;font-size: 18px;font-weight: bold;display: block;height: 38px;line-height: 38px;padding-left:40px;}
.quarterly.custom-link > li .year {background: #071762 none;color: #FFF;font-family: 'Lato',sans-serif;font-size: 18px;font-weight: bold;display: block;height: 38px;line-height: 38px;padding-left:40px;}
.quarterly.custom-link > li .year:hover {background: #c8a273 none;}
.quarterly > li .year:hover {background: url("images/quarterly-arrow-ho.png") no-repeat scroll 15px center #c8a273;}
.quarterly > li .year.active{background: url("images/quarterly-arrow-ho.png") no-repeat scroll 15px center #c8a273;}
.quarterly > li {margin:5px 0;width: 100%;float: left;cursor: pointer;}
/*.quarterly > li:hover .result_desc {display: block;}*/
.result_desc {display: none;float: left;margin-left: 25px;margin-top:8px;}
.result_desc a {color: #040a5b;font-family: 'Lato',sans-serif;font-size: 14px;font-weight: bold;float: left;text-decoration:none;margin: 5px 0;}
.result_desc > a:hover {color: #4a261d;}
/*****************-Quarterly-Results-close-*************/

/*****************-Cms-All-inner-page-*************/
.entry-content h2, .comment-content h2, .entry-content h3, .comment-content h3, .entry-content h4, .comment-content h4, .entry-content h5, .comment-content h5, .entry-content h6, .comment-content h6, .wpc-product .wpc-title a, .wpc-content > h3 {display: block; width: auto;float: none;background:none;padding:0px;clear: none;color: #333;font-family: 'Lato',sans-serif;font-size: 16px;font-weight: bold;margin:0 0 12px;line-height: 100%;}
.wpc-product .wpc-title   {color: #333 !important;padding:0px;}
.info {float: left;margin-bottom: 20px;width: 100%;}
.entry-content, .entry-summary, .mu_register {margin-bottom: 50px;float: left;margin-bottom: 50px;width: 100%;}
.entry-content .inve_info .infra:last-child, .entry-content a:last-child {margin:0px;}
.entry-content a {background: url("images/entr-a.png") no-repeat left center;color: #040a5b;padding-left: 23px;font-family: 'Lato',sans-serif;font-size: 14px;font-weight: bold;text-decoration: none;}
.entry-content a:hover {background: url("images/entr-a-ho.png") no-repeat left center;color: #c8a273;}
.entry-content .bg-none > li {background:none;padding: 0;}
.wpc-product .wpc-content {display: table;}
#wpc-products .wpc-product {border-bottom: 1px solid #ccc;float: left;margin: 0 0 21px;padding-bottom: 27px; width: 100%;}
.wpc-paginations {clear: both;padding: 0;text-align: center;width: 100%;}
#wpc-catalogue-wrapper .wpc-paginations a {background:#071762 !important;color: #fff;display: -moz-deck;border-radius: 4px;height: 40px;float: none;line-height:40px;margin: 0 2px 50px;text-align: center;text-decoration: none;width: 40px;}
#wpc-catalogue-wrapper .wpc-paginations a:hover, #wpc-catalogue-wrapper .wpc-paginations .active-wpc-page {background:#685F4A!important;}
.entry-content ul, .comment-content ul, .mu_register ul {display: table;list-style: none outside none;}
.comp_img {border: 2px solid #ccc;float: right;margin: 0 0 0 24px;padding: 4px;width: auto;}
/*****************-Cms-All-inner-page-Close--*************/

/*****************-Contact-page-*************/

.contact-page > h3 {color: #031054;float: left;font-family: 'Lato',sans-serif;font-size: 18px;font-weight: bold;margin-top: 5px;line-height: 100%;width: 100%;}
.contact-page .map > iframe {border: 1px solid #ccc !important;margin-top: 6px;}
.contact-page .contact-us-form > h3, .contact-page .our-address > h2 {color: #413b2f;float: left;font-family: 'Lato',sans-serif;font-size:18px;font-weight: bold;margin: 0 0 18px;line-height: 100%;width: 100%;}
.contact-page .contact-us-form {background: url("images/contact-us-form-shadow.png") no-repeat right center;float: left;padding-right:58px;width: 582px;}
.contact-page .contact-us-form input {background: url("images/input-bg.png") repeat-x left top;border: 1px solid #f3f2ef;border-radius: 5px;font-family: 'Lato',sans-serif;font-size:14px;float: left;height: 28px;margin-bottom: 10px;margin-right: 20px;padding: 5px;width: 269px;}	
.contact-page .contact-us-form textarea {background: url("images/textarea-bg.png") repeat-x left top;border: 1px solid #f3f2ef;border-radius: 5px;font-family: 'Lato',sans-serif;font-size:14px;float: left;margin-bottom: 10px;padding: 5px;min-height: 198px;width: 560px;}	
.contact-page .contact-us-form .wpcf7-form p {float: left;margin:0px;}
.contact-page .contact-us-form .your-subject input, .contact-page .contact-us-form .your-email input{margin-right:0px;}
.contact-page .our-address {float: left;margin-left: 52px;width:307px;}
.contact-page .contact-us-form input.wpcf7-submit {background:#071762;border-bottom: 3px solid #bebebe;border-width:0px 0px 3px 0px;border-radius: 5px;color: #fff;float: left;font-family: 'Lato',sans-serif;font-size: 15px;font-weight: bold;height: auto;margin: 0;padding: 4px 30px;width: auto;}
.contact-page .contact-us-form input.wpcf7-submit:hover{background:#685f4a;}
.contact-page .our-address h3 {color: #01125a;display: block;font-family: 'Lato',sans-serif;font-size: 15px;font-weight: bold;margin:0 0 7px;}
.contact-page .our-address h4 {color: #333;display: block;font-family: 'Lato',sans-serif;font-size: 15px;font-weight: bold;line-height: 100%;margin:7px 0 3px;}
.contact-page .our-address .address {background: url("images/address-icon.png") no-repeat left top;padding-left:60px;float: left;margin-top:3px;}
.contact-page .our-address .phone-num {background: url("images/phone-num-icon.png") no-repeat left top;padding-left:60px;margin-top: 18px;float: left;}
.contact-page .our-address .fax-num {background: url("images/fax-num-icon.png") no-repeat left top;padding-left:60px;margin-top: 12px;float: left;}
.contact-page .our-address .email-id {background: url("images/email-id-icon.png") no-repeat left top;padding-left:60px;margin-top: 10px;float: left;}
.contact-page .our-address p {color: #333;font-family: 'Lato',sans-serif;font-size: 14px;font-weight: normal;line-height: 150%;margin: 0 0 10px;text-align: inherit;}
.contact-page .our-address .email-id p a, .contact-page .our-address .phone-num a {
    background: none !important;
    color: #333;
    font-family: 'Lato',sans-serif;
    font-size: 14px;
    font-weight: normal;
    padding: 0px;
    line-height: 150%;
}
.contact-page .our-address .email-id p a:hover {color:#01125A;}

/*****************-Contact-page-Close-*************/
.contact-page .contact-us-form input::-webkit-input-placeholder { color: #666;opacity:1;}
.contact-page .contact-us-form input:-moz-placeholder { color: #666;opacity:1;}
.contact-page .contact-us-form input::-moz-placeholder { color: #666;opacity:1;}
.contact-page .contact-us-form input:-ms-input-placeholder { color: #666;opacity:1;}
.contact-page .contact-us-form textarea::-webkit-input-placeholder { color: #666;opacity:1;}
.contact-page .contact-us-form textarea:-moz-placeholder { color: #666;opacity:1;}
.contact-page .contact-us-form textarea::-moz-placeholder { color: #666;opacity:1;}
.contact-page .contact-us-form textarea:-ms-input-placeholder { color: #666;opacity:1;}

/****************--404--****************/
.contain404 .error .error_text h3 {color: #474745;font-family: 'Helvetica';font-size: 25px;font-weight: bold;line-height: 100%;}
.contain404 .error .error_img {margin: 15px 0 17px;text-align: center;width: 100%;}
.contain404 .error .error_text {text-align: center;margin-bottom: 50px;width: 100%;}
.contain404 .error .error_text > p {color: #333;font-family: 'Lato',sans-serif;font-size: 14px;text-align: center;font-weight: normal;}
.contain404 .error .error_text a {color:#685f4a;font-family: 'Lato',sans-serif;font-size: 14px;font-weight: normal;}
.contain404 .error .error_text a:hover {color:#01125A;}
.error404 #banner, .error404 .bread_wrapper {display: none;}
/****************--404-Close ****************/
.nav-single{display:none;}
.single-services #primary > div {
    float: left;
    width: 100%;
}
.single-services .services {
	background: none;
    float: left;
    margin-top: 0;
    min-height: inherit;
    width: 100%;
}
.single-services .entry-content img, .services .entry-content img, .type-news .entry-content img{
	border: 2px solid #ccc;
    float: left;
    font-size: 0;
    height: auto;
    margin: 3px 24px 0 0;
    padding: 4px;
    width: auto;
}
/*01-05-2015*/
.product-container .product-img-view{
	float:right;
	margin:3px 0 0 24px;
}
.product-container .wpc-next-prev{
	display: none;
}
.product-container h2 {
	background: url("images/widget-title.png") no-repeat left bottom;
	color: #413b2f;
	font-family: 'Lato',sans-serif;
	font-size: 20px;
	font-weight: bold;
	line-height: 100%;
	margin-bottom: 10px;
	padding-bottom: 28px;
	text-transform: none;
	width: 100%;
}
.product-container h1.entry-title{
	font-weight:bold;
}
.product-container .product-desc h3{
	color:#031054;
	font-size:18px;
	margin-top:6px;
}
.product-container .product-desc > ul{
	margin:20px 0 10px;
}
.product-container .specification{
	margin-top:30px;
	margin-bottom: 33px;
}
.product-container .specification ul{
	border-bottom: 1px solid #ccc;
	border-right: 1px solid #ccc;
}
.product-container ul.first-ul{
	border-bottom: 1px solid #ccc;
	border-right: 1px solid #ccc;
	border-top: 1px solid #ccc;
}
.product-container br{
	display: none;
}
.product-container .specification ul li{
	float: left;
	border-left: 1px solid #ccc;
	font-family: 'Lato',sans-serif;
	font-size: 14px;
	color:#333;
	line-height:55px;
	margin:0;
	padding: 0 0 0 50px;
	background-image:none;
	height:55px;
	text-overflow:ellipsis;
	overflow:hidden;
	white-space:nowrap;
}
.product-container .specification ul.first-ul li{
	height:40px;
	background:#F8F8F8;
	line-height:40px;
	font-family: 'Lato',sans-serif;
	font-size: 14px;
	font-weight: bold;
	color:#333;
}
.product-container .specification p{
	display: none;
}
.product-container ul li.first{
	width:130px;
}
.product-container ul li.sec{
	width:358px;
}
.product-container ul li.third{
	width:358px;
}



.product-container .packing_details{
	margin-top:30px;
	margin-bottom: 33px;
}
.product-container .packing_details ul{
	border-bottom: 1px solid #ccc;
	border-right: 1px solid #ccc;
}
.product-container .packing_details ul li{
	float: left;
	border-left: 1px solid #ccc;
	font-family: 'Lato',sans-serif;
	font-size: 14px;
	color:#333;
	line-height:50px;
	margin:0;
	padding: 0 0 0 50px;
	background-image:none;
	height:50px;
	text-overflow:ellipsis;
	overflow:hidden;
	white-space:nowrap;
}
.product-container .packing_details ul.first-ul li{
	width:150px;
	height:40px;
	background:#F8F8F8;
	line-height:40px;
	font-family: 'Lato',sans-serif;
	font-size: 14px;
	font-weight: bold;
	color:#333;
}
/*.product-container .packing_details p{
	display: none;
}*/
.product-container .packing_details ul li.first{
	width:120px;
}
.product-container .packing_details ul li.sec{
	width:350px;
}
.product-container .packing_details ul li.third{
	width:160px;
}
.product-container .packing_details ul li.fourth{
	width:165px;
}
.product-container .separator{
	width:100%;
	height:1px;
	border-bottom: 1px solid #ccc;
	margin:18px 0 25px;
}
.product-container .features li{
	margin-bottom: 8px;
}
.product-container .entry-content{
	margin-bottom: 35px;
}

.attachment-post-thumbnail.wp-post-image{
	transition:all 0.5s;
}
.attachment-post-thumbnail.wp-post-image:hover{
	opacity:0.7;
}
#slider .slide.slide-2 .caption{
	left:auto;
	right:70px;
}  
div.wpcf7-validation-errors{
	border:2px solid red;
	padding: 5px 10px ;
	margin:15px 0 0 0;
}
span.wpcf7-not-valid-tip{
	display: none;
}
input.wpcf7-not-valid{
	border: 1px solid red !important;
}
textarea.wpcf7-not-valid{
	border: 1px solid red !important;
}
.single-author .hentry .entry-content{
	margin-bottom: 50px;
}
.infra > h2{
	color:#040a5b;
	font-size:18px;
}
.entry-content .job h2{
	margin-top:23px;
}
.entry-content .inve_info > h2{
	margin:20px 0 18px;
	color:#031054;
}
.wpcf7-form.invalid .wpcf7-validation-errors{
	border: medium none;    
    margin: 0;
    padding: 0;
}
ul.wsp-pages-list li{
	background: none;
}
ul.wsp-pages-list li.current_page_item{display: none;}

ul.wsp-servicess-list li{
	background: none;
}
div.blog2 div.title{
	display:none !important;
}

/*
changes on 16 sep 2015 at 5:14pm
*/

.quarterlyheading {
    color: #333333;
    font-family: "Lato",sans-serif !important;
    font-size: 12px;
    font-weight: bold;
    line-height: 17px;
    text-align: left;
    text-decoration: none;
}
.quarterlycotain11 {
    color: #333333;
    font-family: "Lato",sans-serif !important;
    font-size: 12px;
    line-height: 17px;
    text-align: right;
    font-family: "Lato",sans-serif !important;
}
.quarterlycotain11h {
    color: #333333;
    font-family: "Lato",sans-serif !important;
    font-size: 12px;
    line-height: 17px;
    text-align: left;
    text-decoration: none;
    padding-left:10px !important;
}
.quarterlyfont11 {
    color: #000000;
    font-family: "Lato",sans-serif !important;
    font-size: 12px;
    font-weight: normal;
    line-height: 130%;
}
.horizental {
    border-bottom: 1px dotted #4376a5;
    font-family: "Lato",sans-serif !important;
}
.quarterly_results {
    color: #4d80af;
    font-family: "Lato",sans-serif !important;
    font-size: 12px;
    font-weight: bolder;
    line-height: 20px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
}
.myformtext {
    color: #000000;
    font-family: "Lato",sans-serif !important;
    letter-spacing: normal;
    text-decoration: none;
    word-spacing: 0;
}
 .newelement.addspace {
  margin-left: 20px;
}
.sub-menu2.related-party li{list-style: upper-roman outside none !important}
ul.mile-stones li.heading b{
	font-size:14px;
}
div.breadcrumbs span a span{
	font-weight:normal;
	margin-left:0;
	color: #333;
}

div.breadcrumbs span a:hover span{
	color: #c8a273;
}

.page-template-Home-page .services {margin-top:55px;min-height:0px;padding-top:55px;background: url('http://www.sumeetindustries.com/beta/wp-content/uploads/2016/01/our_pro_bg.jpg');}

.post-type-archive-services header.archive-header{display: none;}
.post-type-archive-news header.archive-header{display: none;}

.post-type-archive-services .services{margin:0px;min-height:0px;}

.entry-header h1.entry-title a {color:#413b2f;}
.entry-header h1.entry-title a:hover {color:#001358;}

.post-type-archive-news .comments-area{margin:0px;}
.single-news .comments-area{margin:0px;}

.quarterlycotain11 td.title {
  padding-left: 80px;
  text-align: center;
}
td.title {
    padding-left: 58px;
    text-align: center;
}
.tableset{width:580px;}
.mrg-set{padding:0px !important}
.block{display: block;}

/*changes on 17th sept 2015 ES444*/
.about_page div.blog6 div.desc h4{
	font-size: 13px;
}
.wpc-paginations a{
	display: inline-block;
}
a.wpc-product-link {cursor: default;}
.type-services .entry-content {margin-bottom:0px !important}
#primary > div#content .container:last-of-type .entry-content {margin-bottom: 50px !important;}

.single-services .entry-content{margin-bottom:50px !important;}
.wsp-newss-list > li{background:none !important}

.quality_table div.product-container div.specification ul li.third
{
width:255px;
}
.quality_table div.product-container div.specification ul li.sec
{
width:240px;
}


.product-container ul li.first_m{
	width:230px;
}
.product-container ul li.sec_m{
	width:160px;
}
.product-container ul li.third_m{
	width:200px;
}
.product-container ul li.fourth_m{
	width:200px;
}
#menu-footer-menu .sub-menu {
  display: none;
}

.product-container ul li.first_m1{
	width:290px;
}
.product-container ul li.sec_m1{
	width:261px;
}
.product-container ul li.third_m1{
	width:290px;
}
.f1, .f2 {
  width: 120px;
}
.f3, .f4 {
  width: 104px;
}
.extra li,.extra {
  border: none!important;
}
.f5{
	width:148px;
}
.pack {
  display: block!important;
  font-weight: bold!important;
  font-size: 15px!important;
}

.arrow, .arrow .border{
	left: -25px !important;
}

#forBalloon3.contentForBalloon ul li a{
  background: url("images/next3.png") no-repeat scroll 6px center rgba(0, 0, 0, 0);
  color: #fff;
  font-family: 'Lato',sans-serif;
  font-size: 15px;
  font-weight: normal;
  line-height: 100%;
  padding-left: 23px;
  text-decoration: none;
}
#forBalloon3 ul li a:hover{color: #c8a273;}

#forBalloon4.contentForBalloon ul li a:hover{color: #c8a273;}

#forBalloon5.contentForBalloon ul li a:hover{color: #c8a273;}

#forBalloon6.contentForBalloon ul li a:hover{color: #c8a273;}

#forBalloon4.contentForBalloon ul li a{
  background: url("images/next3.png") no-repeat scroll 6px center rgba(0, 0, 0, 0);
  color: #fff;
  font-family: 'Lato',sans-serif;
  font-size: 15px;
  font-weight: normal;
  line-height: 100%;
  padding-left: 23px;
  text-decoration: none;
}
#forBalloon5.contentForBalloon ul li a{
  background: url("images/next3.png") no-repeat scroll 6px center rgba(0, 0, 0, 0);
  color: #fff;
  font-family: 'Lato',sans-serif;
  font-size: 15px;
  font-weight: normal;
  line-height: 100%;
  padding-left: 23px;
  text-decoration: none;
}
#forBalloon6.contentForBalloon ul li a{
  background: url("images/next3.png") no-repeat scroll 6px center rgba(0, 0, 0, 0);
  color: #fff;
  font-family: 'Lato',sans-serif;
  font-size: 15px;
  font-weight: normal;
  line-height: 100%;
  padding-left: 23px;
  text-decoration: none;
}
#forBalloon3.contentForBalloon ul li{
margin-bottom: 10px;
margin-top: 10px;
margin-left: 10px;
}
#forBalloon4.contentForBalloon ul li{
margin-bottom: 10px;
margin-top: 10px;
}
#forBalloon5.contentForBalloon ul li{
margin-bottom: 10px;
margin-left: 10px;
margin-top: 10px;
}
#forBalloon6.contentForBalloon ul li{
margin-bottom: 10px;
margin-left: 10px;
margin-top: 10px;
}

.contentForBalloon .menu-item-has-children ul{
margin-left:20px;
}

.contentForBalloon .menu-item-has-children a{
margin-bottom: 10px;
}
.highlight a
	{
	color: #c8a273 !important;
	}
.site-content #post-17 {
  background: url("images/award.png") no-repeat scroll center 10px rgba(0, 0, 0, 0);
  min-height: 430px;
}
.site-content #post-127 {
  background: url("images/charts_reports_1.jpg") no-repeat scroll center center rgba(0, 0, 0, 0);

}
.entry-content .contact-link > a{
  background: #071762;
  border-bottom: 3px solid #bebebe;
  border-radius: 5px;
  color: #fff;
  float: left;
  font-family: 'Lato',sans-serif;
  font-size: 15px;
  font-weight: bold;
  padding: 7px 38px 8px 48px;
	margin-top : 25px
}

.service-thumb img {
  height: 138px;
  width: auto;
  max-width:100%;
}
.no-css3-columns > ul {
  float: left;
  width: 50%;
 
}
.no-css3-columns > ul:nth-child(2) {
 background: url("images/footer-blog-shadow.png") no-repeat scroll left center rgba(0, 0, 0, 0);
}
 .mbBalloon .arrow.border.w {
  border-bottom: medium none rgba(0, 0, 0, 0) !important;
  border-color: rgba(0, 0, 0, 0) #c8a273 !important;
  border-top: medium none rgba(0, 0, 0, 0) !important;
  }
  .mbBalloon .arrow.w {
  border-color: transparent #c8a273 !important;
}
.mbBalloon .arrow{height: 0 !important;}
.mbBalloon.w {
  border-left: 3px solid #c8a273 !important;
  
}
.post-125 div.entry-content div.product-container .specification
{
margin-bottom: 15px;
}
.sub-menu2.related-party strong {
  padding-right: 10px;
}
.relative_list li
	{
	list-style: lower-roman outside none;
	margin-left: 50px;
	}
.breadcrumbs a {
  margin-left: 8px;
}
.caret {
  border-left: 4px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #000;
  content: "";
  display: inline-block;
  height: 0;
  vertical-align: top;
  width: 0;
  border-bottom-color:#fff;
  border-top-color:#fff;
  margin-left: 7px;
  margin-top: 23px;
}
.caret-left {
  border-bottom: 6px solid transparent;
  border-left: 5px solid #fff;
  border-top: 6px solid transparent;
  content: "";
  display: inline-block;
  height: 0;
  margin-left: 7px;
  margin-top: 3px;
  vertical-align: top;
  width: 0;
}
#banner img {
  display: block;
  margin: 0 auto;
}
.wsp-wpcproducts-list li{
background: none!important;
}
.product_polyprop
	{
	margin-top:35px;
	}
div.quality_cont .quality_table strong
{
margin-bottom: 8px;
}
.widget_sp_image-description {
  left: 139px;
  margin: auto;
  max-width: 1280px;
  position: absolute;
  right: 0;
  top:85px;
}
.widget.widget_text {
  float: right;
  position:relative;
  margin-top: 16px;
}
#text-4 .email-id {
  background: url("images/email-id-icon.png") no-repeat left top;
  float: left;
  margin-top: 10px;
  padding-left: 45px;
}
#text-4 .email-id h3 {
  color: #01125a;
  display: block;
  font-family: 'Lato',sans-serif;
  font-size: 15px;
  font-weight: bold;
  margin: 0 0 7px;
}
#text-4 .email-id p {
  color: #333;
  font-family: 'Lato',sans-serif;
  font-size: 14px;
  font-weight: normal;
  line-height: 150%;
  margin: 7px 0 10px;
  text-align: inherit;
}
#text-4 .email-id p a {
  background: none repeat scroll 0 0 rgba(0, 0, 0, 0) !important;
  color: #333;
  font-family: 'Lato',sans-serif;
  font-size: 16px;
  font-weight: bold;
  line-height: 150%;
  padding: 0;
  text-decoration: none;
}
.entry-content .image2 {
  margin-bottom: 20px;
}
.product_full_content .image2 {
  float: right;
  width: 40%;
}
.product_full_content .product_details {
  float: left;
  width: 58%;
}
.image2 img {
  max-width: 100% !important;
  height: auto;
  margin-top:45px;
}
.product_full_content:after {
  content: "";
  clear: both;
  display: block;
}
 .product-container .product-img-view img {
  max-width: 96% !important;
  height: auto;
}
.image3 .image-content3 img {
  height: auto;
  max-width: 100% !important;
  width: auto;
}
.product-img-view2 img {
  width: auto;
  height: auto;
  max-width: 100% !important;
}
.product-img-view2 {
  margin-bottom: 20px;
}
.product-container .image3 {
  margin-bottom: 20px;
}
.product-container .product-img-view {
  width: 40% !important;
}
.wpc_image1 {
  display: block;
  height: 300px;
  line-height: 300px;
  text-align: center;
  width: 100%;
}
.wpc_image1 img {
  height: auto;
  max-height: 96%;
  max-width: 100%;
  vertical-align: middle;
  width: auto;
  border: 2px solid #ccc;
  padding: 4px;
}
/*
.postid-652 .product-img-view, .postid-662 .product-img-view{
 margin-top:70px;
}*/

/****************changes on 20-2-2016****************/
.contact-page .contact-us-form .wpcf7-form p {
  margin-right: 3%;
  width: 47%;
}
.contact-page .contact-us-form .wpcf7-form p.full_field {
  width: 97%;
}
.contact-us-form .select-wrapper {
  background-image:url("images/drop-aero.png"), url("images/input-bg.png");
  background-repeat: no-repeat, repeat-x;
  background-position: 98% center, left top;
  height: 38px;
  margin-bottom: 10px;
  width: 100%;
  border: 1px solid #F3F2EF;
  border-radius: 5px 5px 5px 5px;
  font-family: 'Lato',sans-serif;
  font-size: 14px;
  position: relative;
  padding-left: 5px;
}
.contact-us-form .select-wrapper select {
  height: 38px;
  padding: 0;
  position: relative;
  width: 100%;
  z-index: 2;
}
.contact-us-form .select-wrapper .holder {
  color: #666666;
  display: block;
  height: 38px;
  position: absolute;
  top: 6px;
  width: 100%;
  z-index: 1;
}
.contact-us-form .wpcf7-form p input {
  height: 38px;
  margin-right: 0;
  padding: 0 0 0 5px;
  width: 100%;
}
.services .caroufredsel_wrapper ul li .service-content a.services-more {
  background-color: #333333;
  background-image: none;
  font-size: 12px;
  height: 30px;
  line-height: 2.5;
  padding: 0;
  text-align: center;
  width: 40px;
}
.page-id-127 .entry-content {
  position: relative;
  background-color: #F7F7F7;
  padding-bottom: 74px;
}
.page-id-127 .entry-content:before {
  background:url("images/bg1.png") no-repeat;
  background-size: 100% 100%;
  position: absolute;
  content: "";
  width: 1068px;
  height: 1450px;
  left: -35px;
  right: 0;
  margin: auto;
  
}
.page-id-127 ul.mile-stones {
  float: none;
  margin: 74px auto 0;
  width: 88%;
}
.page-id-127 ul.mile-stones li p{
	padding: 14px 10px 13px 28px;
}
.page-id-127 ul.mile-stones li p.left, .page-id-127 ul.mile-stones li b.left {
  line-height: 100%;
  padding: 17px 0;
}
.page-id-127 ul.mile-stones li:nth-child(2n+1) {
  background-color: #EBEBEB;
}
.product-container .features .field-content1 {
  line-height: 170%;
}
ul.mile-stones li.heading b.left {
  border-right: 1px solid #CCCCCC;
}
ul.mile-stones li.heading b.mile_center {
  border: 0 none;
  margin: 0 auto;
  padding-left: 0;
}
/*29-2-2016*/
header .send-cv {
	background: #fff;
	border: 3px solid #413b2f;
	border-radius: 5px;
	padding: 20px 18px;
	position: absolute;
	top: 60px;
	z-index: 9999999;
	left:0;
	right:0;
}
header .send-cv:before{
	height:30px;
	background:url("images/login-popup-arrow.png") no-repeat 0 0;
	width:26px;
	top:-24px;
	left:60px;
	content:"";
	display:block;
	position:absolute;
}
header .send-cv form input.wpcf7-submit,
header .send-cv form .custom2 input[type="file"] {
	background:#071762;
	border-bottom: 3px solid #bebebe;
	border-top:0;
	border-left:0;
	border-right:0;
	border-radius: 5px;
	color: #fff;
	float: none;
	font-family: 'Lato',sans-serif;
	font-size: 15px;
	font-weight: bold;
	height: auto;
	margin: 0;
	padding: 4px 30px;
	width: auto;
}
header .send-cv form input.wpcf7-submit:hover,
header .send-cv form .custom2 input[type="file"]:hover{
	background:#685f4a;
}
header .send-cv form p{
	margin:0;
}
header .send-cv form .wpcf7-form-control-wrap{
	display:block;
	margin:0 0 2px;
}
header .send-cv form .wpcf7-form-control-wrap.attached-cv {
  background: none repeat scroll 0 0 #071762;
  border-bottom: 3px solid #BEBEBE !important;
  border-left-width: 0;
  border-radius: 5px 5px 5px 5px;
  border-right-width: 0;
  border-top-width: 0;
  color: #FFFFFF;
  float: left;
  font-family: 'Lato',sans-serif;
  font-size: 15px;
  font-weight: bold;
  height: auto;
  margin: 0;
  padding: 4px 30px;
  width: auto;
}
header .send-cv form .wpcf7-form-control-wrap.attached-cv {
	padding: 2px 23px;
}
/*
header .send-cv form .wpcf7-form-control-wrap.attached-cv {
	background: #071762;
	border-radius: 5px;
	color: #fff;
	cursor: pointer;
	display: inline-block;
	font-family: "Lato",sans-serif;
	font-size: 16px;
	font-weight: normal;
	line-height:120%;
	padding: 6px 15px 8px;
	text-align: center;
	vertical-align: top;
	white-space: nowrap;
}
*/
header .send-cv form .wpcf7-form-control-wrap.attached-cv:hover{
	background:#685F4A;
}
header .send-cv form .wpcf7-form-control-wrap .wpcf7-file{
	cursor: pointer;
	font-size: 20px;
	margin: 0;
	opacity: 0;
	padding: 0;
	position: absolute;
	right: 0;
	left:0;
	height:100%;
	width:100%;
	top: 0;
}

header .send-cv form .wpcf7-form-control-wrap.attached-cv::before {
	content: "Browse";
	display: inline-block;
	font-family: "Lato",sans-serif;
	vertical-align: top;
}
header .send-cv .wpcf7-response-output {
	margin-top: 10px !important;
	padding: 5px;
}
header .send-cv .wpcf7-response-output.wpcf7-validation-errors {
	border: 2px solid #ff0000;
	color: #ff0000;
	font-size: 13px;
	padding: 5px 8px;
}
header .send-cv form .custom1 {
	font-size: 15px;
	line-height: 120%;
	margin: 0 0 6px;
}
header .send-cv form .custom3 {
  clear: both;
  display: block;
  float: left;
  font-size: 12px;
  line-height: 120%;
  margin: 5px 0 12px;
}
.send-cv
{
display: none;
}
.field-content.custom {
  float: left;
}
.product-container .custom2.product-img-view {
  float: right;
  margin: 3px 0 0 9px;
  text-align: right;
}
header .send-cv form .wpcf7-form-control-wrap .wpcf7-file {
  height: 30px !important;
  padding: 0 !important;
  width: 98px !important;
}

.last_news .details a {
  background: rgba(0, 0, 0, 0) url("images/entr-a.png") no-repeat scroll left center;
  color: #040a5b;
  font-family: "Lato",sans-serif;
  font-size: 14px;
  font-weight: bold;
  padding-left: 23px;
  text-decoration: none;
}
.last_news .details a:hover {
  background: rgba(0, 0, 0, 0) url("//www.sumeetindustries.com/wp-content/themes/sumeet/images/entr-a-ho2.png") no-repeat scroll left center;
  color: #685f4a;
}

.last_news .caroufredsel_wrapper .details {
	padding: 5px 0;
}
.news-title {
  display: none;
}
.last_news .caroufredsel_wrapper .date {
  padding-left: 23px;
}
.bottom-right .widget.widget_text {
    margin-top: 0;
}
.social a {
    margin-right: 10px;
}
.social a:hover img {
    opacity: 0.6;
}
.top_widget .widget.widget_text {
  float: left;
  margin-left: 20px;
  margin-top: 10px;
}

.top_widget .social a {
  background-color: #040a5b;
  border-radius: 5px;
  display: inline-block;
  height: 25px;
  line-height: 32px;
  margin-right: 5px;
  text-align: center;
  vertical-align: middle;
  width: 25px;
}

.cf7sr-g-recaptcha {
float: left;
width: 100%;
margin-bottom: 10px;
}
form.wpcf7-form {
margin-bottom: 25px;
}
.left.quarterly li::after {
	clear: both;
	content: "";
	display: block;
}
.entry-content ul.quarterly li a {
	float: none;
}


/* start of the day ****27-11-2023 */


body .contact-page .contact-us-form textarea {
    resize: none;
}

body header .send-cv form .custom3 {
    float: none;
    margin: 14px 0 12px;
}
header .send-cv {
    width: 100%;
}
body header .send-cv .wpcf7-response-output {
    color: green;
}
p.footer-phone a.phone-link:hover {
    color: #c8a273;
}
html.scroll-hide {
    overflow: hidden;
}
span.wpcf7-not-valid-tip {
    display: block;
    margin-bottom: 10px;
}

/* end of the css **** 27-11-2023 */

/*Start of the day 23-11-2024*/
a.phone-link {
	text-decoration: none;
	color: #01125a !important;
}
a.phone-link:hover {
	color: #413b2f !important;
}
.contact-page .contact-us-form .wpcf7-form p.submit {
	position: relative;
	width: fit-content;
}
.contact-page .contact-us-form .wpcf7-form p.submit .wpcf7-spinner {
	margin: 0;
	position: absolute;
	top: 2px;
	left: auto;
	right: -35px;
	bottom: 0;
}
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
	border-color: red;
	color: red;
	text-align: center;
	padding: 10px;
}
.g-recaptcha.wpcf7-not-valid>div {
	border: 1px solid red;
}
/*End of the day 23-11-2024*/
/* 25-11-2024 */
footer.footer p.footer-phone a {
	color: #fff !important;
}
footer.footer p.footer-phone a:hover {
	color: #c8a273 !important;
}
.contact-page .contact-us-form .wpcf7-form p.submit {
	margin-top: 8px;
}
header #text-4 .email-id p a:hover {
	color: #c8a273;
}
footer.footer #text-2.widget.widget_text p.email a {
	color: #FFF;
	float: left;
	font-family: 'Lato', sans-serif;
	font-size: 14px;
	line-height: 15px;
	text-decoration: none;
	width: 100%;
}
header .send-cv form .custom2 input[type="file"] {
	border: 1px solid #333;
	border-radius: 5px;
	font-size: 14px;
	position: static;
	opacity: 1;
	width: 100% !important;
	height: 40px !important;
	background: #fff;
	color: #333;
	font-family: 'Lato', sans-serif;
	padding: 8px 5px !important;
	margin: 0;
	box-sizing: border-box;
}
header .send-cv form .wpcf7-form-control-wrap {
	position: relative;
	height: 100%;
	display: block;
	width: 100%;
}
header .send-cv form .filename {
	display: none;
}
header .send-cv form .custom2 input[type="file"]:hover {
	background: #fff;
}
header .send-cv form .submit-cv {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin: 5px 0 0;
}
.contact-us-form .wpcf7-form p input,
.contact-us-form .wpcf7-form p textarea,
.contact-us-form .select-wrapper {
	margin: 0;
}
.contact-page .contact-us-form .wpcf7-form>p {
	margin-bottom: 12px;
}
.g-recaptcha.wpcf7-not-valid>div {
	border: 0;
}
.g-recaptcha.wpcf7-not-valid>div>div iframe {
	border: 1px solid red;
}
/* 25-11-2024 */
/*Start of the day 28-11-2024*/
.wpcf7 form.sent .wpcf7-response-output {
	border-color: green;
	color: green;
	padding: 5px;
	text-align: center;
}
footer.footer .widget_nav_menu ul li.current-menu-ancestor > a {
	color: #c8a273;
}
header .send-cv form p.custom-email {
	display: none;
}
/*End of the day 28-11-2024*/
/*12-07-2024*/
footer.footer #text-2.widget.widget_text p.email {
    background: url("images/fo-message-icon.png") no-repeat left center;
    color: #FFF;
    float: left;
    font-family: 'Lato', sans-serif;
    margin: 4px 0 11px;
    padding-left: 27px;
    text-decoration: none;
    width: 100%;
}
#menu-footer-menu .sub-menu {
    transition: 0.5s all;
}
ul.left.quarterly .result_desc br {
    display: none;
}
ul.left.quarterly .result_desc  p {
    margin: 0;
}
ul.left.quarterly .result_desc p a {
    margin: 8px  0;
}
/* body div#page .main-navigation ul#menu-header-menu>li>ul.sub-menu {
    height: 297px;
    overflow: hidden;
    overflow-y: auto;
} */
body div#page .main-navigation li ul::-webkit-scrollbar {
	width: 5px;
	background: #fff;
}
body div#page .main-navigation li ul::-webkit-scrollbar-thumb {
	background: #413b2f;
}
html.no-scroll {
    overflow: hidden;
}

.contact-page .our-address .phone-num p a:hover {
    color: #01125a;
}
/*01-04-2025*/
#forBalloon3.contentForBalloon ul li.current-menu-item a {
    color: #c8a273;
}

.top-bar .contact-no a {
    color: #01125a;
	text-decoration: unset;
}
.top-bar .contact-no a:hover {
    color: #413b2f !important;
}
header#masthead aside#text-4 .email-id {
    margin-top: 0;
}
.top-bar .top_widget aside#text-5 {
    margin-top: 7px;
}
#forBalloon4.contentForBalloon ul li.current-menu-item a {
    color: #c8a273 !important;
}
#forBalloon6.contentForBalloon ul li.current-menu-item a{color: #c8a273;}
#menu-footer-menu .sub-menu li.current-menu-item > a {
	color: #c8a273 !important;
}
#forBalloon3 ul li.current-menu-item a{color: #c8a273;}

#forBalloon4.contentForBalloon ul li.current-menu-item a{color: #c8a273;}

#forBalloon5.contentForBalloon ul li.current-menu-item a{color: #c8a273;}

#forBalloon6.contentForBalloon ul li.current-menu-item a{color: #c8a273;}


/*20-11-2025*/
article .entry-content summary {
    background: url(images/quarterly-arrow.png) no-repeat scroll 15px center #071762;
    color: #FFF;
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    font-weight: bold;
    display: block;
    height: 38px;
    line-height: 38px;
    padding-left: 40px;
}
article .entry-content details {
    margin-bottom: 10px;
}
#primary>div#content .container:last-of-type .entry-content details[open] > summary {
    background: url(images/quarterly-arrow-ho.png) no-repeat scroll 15px center #c8a273;
}
#primary>div#content .container:last-of-type .entry-content {
    width: 100%;
}
article .entry-content details[open]> details {
    margin-left: 20px;
}
article .entry-content details[open] ul li a {
    color: #333;
    padding-left: 23px;
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    text-decoration: none;
    background: unset;
    margin: 0;
    padding-left: 15px;
    font-weight: 500;
    position: relative;
}
article .entry-content details[open] ul li {
    margin: 3px 0;
    background: unset;
    padding-left: 5px;
}
article .entry-content details[open] ul li a:hover {
    color: #c8a273;
}
article .entry-content details[open] ul {
    margin-top: 0px;
}
article .entry-content summary {
    pointer-events: all;
    cursor: pointer;
}
article .entry-content details[open] ul li a:before {
    content: "";
    height: 6px;
    width: 5.5px;
    background-color: #333;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 1px;
    right: 0;
    border-radius: 100%;
    margin: auto 0;
}
#primary>div#content .container:last-of-type .entry-content details[open] h2 {
    margin-bottom: 0;
    margin-top: 23px;
	margin-bottom: 4px;
}
article .entry-content details[open] ul li a:hover::before {
    background-color: #c8a273;
}