* {
	margin: 0;
	padding: 0;
}
body {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 15px;
	line-height: 22px;
	color: #434343;
	width: 100%;
	min-width: 1100px;
	font-weight: normal;
	background: #161617 url(images/body_bg.png) center repeat-y;
	position: relative;
}

/* text styles
-----------------------------------------------------------------------------*/

h1, .h1 {
	font-size: 27px;
	line-height: 30px;
	font-weight: normal;
	color: #696c7c;
	padding: 0px 0px 10px 0px;
	margin: 0px;
}
h2, .h2 {
	font-size: 24px;
	line-height: 27px;
	font-weight: normal;
	color: #756b5c;
	padding: 0px 0px 10px 0px;
	margin: 0px;
	text-align: center;
}
h3, .h3 {
	font-size: 21px;
	line-height: 24px;
	font-weight: normal;
	color: #5d635e;
	padding: 0px 0px 10px 0px;
	margin: 0px;
}
h4, .h4 {
	font-size: 19px;
	line-height: 21px;
	font-weight: normal;
	color: #000;
	padding: 0px 0px 10px 0px;
	margin: 0px;
}

a {
	color: #b80000;
	text-decoration: none;
	outline: none;
}
a:hover {
	text-decoration: underline;
}

table {
	border: 0px;
	border-spacing: 0px;
    border-collapse: separate;
	padding: 0px;
	margin: 0px;
}

ul, ol {
	margin: 0px 0px 10px 20px;
	padding: 0px 0px 0px 0px;
/*	list-style-position: inside;*/
}
ul {
/*	list-style-image: url(images/icon_bullet.png);*/
}
ul.no-list-image, ul.no-list-image li {
	list-style: none;
	list-style-image: none;
}

p {
	margin: 15px 0px 15px 0px;
}
img {
	border: none;
}

/* forms styles
-----------------------------------------------------------------------------*/
input, textarea, select {
	color: #000;
	font-size: 18px;
	line-height: 18px;
    box-sizing: border-box;
}
label {
	box-sizing: border-box;
}
input {
	vertical-align: middle;
}

.form_standard {
	width: 700px !important;
	display: table;
	margin: 0 auto;
}
.form_standard_half {
	width: 350px !important;
	display: table;
	margin: 0 auto;
}

.form {
	width: 100%;
}
.form input.submit, input.button {
	width: auto;
	color: #fff;
	background: #b80000;
	font-family: 'Poppins', sans-serif;
	font-size: 15px;
	line-height: 15px;
	text-transform: uppercase;
	border: 0px;
	padding: 12px 20px 11px 20px;
}
.form fieldset {
	border: 0px;
	padding: 0px;
	margin: 0px;
}
.form fieldset legend {
	color: #000;
	font-size: 16px;
	font-weight: bold;
	padding: 0px;
}

.form label {
	float: left;
	padding: 0px 2px 0px 0px;
	margin: 0;
	font-family: 'Poppins', sans-serif;
	color: #000;
	font-size: 14px;
	line-height: 17px;
}
.form label.edit {
	width: 50%;
}
.form label.edit_full {
	width: 100%;
}
.form label.edit_half {
	width: 25%;
}

.form input[type=text], .form input[type=email], .form select, .form textarea {
	width: 100%;
	color: #000;
	font-size: 16px;
	line-height: 16px;
	padding: 9px;
	margin: 0px 0px 10px 0px;
	background: #fff url(images/input_bg.png) top repeat-x;
	border: 1px solid #bfbfbf;
}
.form select {
	padding: 8px;
}

.form textarea {
	height: 150px;
}

.required {
	color: #f00;
}

/* Call-to-Action Button */
.cta-container {
  margin-top: 1.5rem; /* space above the button */
  text-align: center; /* center the button under tagline */
}

.cta-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #b80000; 
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 2rem; /* pill-shaped */
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.cta-button:hover {
  background-color: #1a252f; /* darker shade on hover */
  transform: translateY(-2px); /* subtle lift */
  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

/* scode_block
-----------------------------------------------------------------------------*/
#scode_block {
	width: 100%;
	text-align: center;
}
#scode_block table {
	border: 0px;
	border-spacing: 0px;
    border-collapse: separate;
	margin-left: auto;
	margin-right: auto;
	padding-top: 10px;
}
#scode_block table tr {
    vertical-align: top;
}
#scode_block table td {
	width: auto;
}
#scode_block table td {
	padding: 0px 2px 0px 2px;
	margin: 0px;
}
#scode_block #scode {
	width: 105px;
}
#scode_block input[type=text] {
	margin: 0px;
}
#scode_block #img_code {
}


/* placeholder
-----------------------------------------------------------------------------*/
::-webkit-input-placeholder {
	color: #231f20 !important;
	font-weight: normal;
	text-overflow: ellipsis;
}
::-moz-placeholder {
	color: #231f20 !important;
	font-weight: normal;
	text-overflow: ellipsis;
}
:-moz-placeholder {
	color: #231f20 !important;
	font-weight: normal;
	text-overflow: ellipsis;
}
:-ms-input-placeholder {
	color: #231f20 !important;
	font-weight: normal;
	text-overflow: ellipsis;
}

/* standard styles
-----------------------------------------------------------------------------*/

.uppercase {
	text-transform: uppercase;
}
.underline {
	text-decoration: underline
}

.align_center {
	text-align: center;
	margin: auto;
}
.align_right {
	text-align: right;
}
.align_left {
	text-align: left;
}
.align_justify {
	text-align: justify;
}

.valign_top {
	vertical-align: top;
}
.valign_middle {
	vertical-align: middle;
}
.valign_bottom {
	vertical-align: bottom;
}

.position_center {
	left: 0;
	right: 0;
	margin-left: auto;
	margin-right: auto;
}
.position_middle:before {
	content: '';
	display: inline-block;
	height: 100%;
	vertical-align: middle;
}

.box_center {
	display: table;
	margin: 0 auto !important;
}

.clear {
	height:0;
	font-size: 1px;
	line-height: 0px;
	clear: both;
}

.clearfix:before,
.clearfix:after {
	content: "";
	display: table;
} 
.clearfix:after {
	clear: both;
}

.hidden {
	display: none;
}

.desktop_only {
}
.mobile_only {
	display: none;
}

.img_left {
	width: auto;
	float: left;
	margin: 0px 15px 10px 0px;
}
.img_right {
	width: auto;
	float: right;
	margin: 0px 0px 10px 15px;
}

.images, .images_left, .images_right {
	border: 1px solid #ccc;
}
.images_left {
	width: auto;
	float: left;
	margin: 0px 25px 15px 0px;
}
.images_right {
	width: auto;
	float: right;
	margin: 0px 0px 15px 25px;
}

hr, .hr {
  border: none;
  border-top: 1px solid #ccc;
  margin: 2rem 0;
  height: 0; /* prevents thickness doubling */
}

.a_button {
	display: inline-block;
	color: #fff;
	font-family: 'Poppins', sans-serif;
	font-size: 13px;
	line-height: 13px;
	text-decoration: none;
	text-transform: uppercase;
	outline: none;
	background: #b80000;
	text-align: center;
	padding: 13px 17px 13px 17px;
	transition: all 250ms ease-in;
	-webkit-transition: all 250ms ease-in;
}
.a_button:hover {
	background: #231f20;
	text-decoration: none;
}

.columns {
	-moz-column-gap: 20px;
	-webkit-column-gap: 20px;
	column-gap: 20px;
}

.columns[data-columns-count="2"] {
	-moz-column-count: 2;
	-webkit-column-count: 2;
	column-count: 2;
}
.columns[data-columns-count="3"] {
	-moz-column-count: 3;
	-webkit-column-count: 3;
	column-count: 3;
}
.columns[data-columns-count="4"] {
	-moz-column-count: 4;
	-webkit-column-count: 4;
	column-count: 4;
}
.columns[data-columns-count="5"] {
	-moz-column-count: 5;
	-webkit-column-count: 5;
	column-count: 5;
}
.columns[data-columns-count="6"] {
	-moz-column-count: 6;
	-webkit-column-count: 6;
	column-count: 6;
}

.res_list div {
	display: inline-block;
	padding-bottom: 10px;
}


/* columns_list
-----------------------------------------------------------------------------*/
ul.columns_list {
	list-style: none;
}
ul.columns_list > li {
	list-style: none;
	list-style-image: none;
	display: inline-block;
	padding: 0px 0px 15px 0px;
	margin: 0px 0px 0px 0px;
	vertical-align: top;
}
ul.columns_list > li, ul.columns_list[data-columns-count="2"] > li {
	width: 47%;
	margin-right: 3%;
}
ul.columns_list[data-columns-count="3"] > li {
	width: 30%;
	margin-right: 3%;
}
ul.columns_list[data-columns-count="4"] > li {
	width: 22%;
	margin-right: 3%;
}
ul.columns_list[data-columns-count="5"] > li {
	width: 17%;
	margin-right: 3%;
}


/* portfolio styles
-----------------------------------------------------------------------------*/
.sectionname, .imagepages {
	display: inline-block;
	color: #fff;
	background: #878787;
	padding: 3px 6px 3px 6px;
	margin: 0px 3px 5px 0px;
	border-radius: 2px;
}
.sectionname:hover, .imagepages:hover {
	text-decoration: none;
	color: #fff;
	background: #1d8917;
}

.sectionnameselected, .imagepageselected {
	display: inline-block;
	color: #fff;
	background: #1d8917;
	padding: 3px 6px 3px 6px;
	margin: 0px 3px 5px 0px;
	border-radius: 2px;
}
.sectionnameselected:hover, .imagepageselected:hover {
	text-decoration: none;
}

.sectionname_divider {
	display: none;
}

.imagesmallname {
	color: #000;
}

.imagemediumname {
	color: #000; 
	font-weight: bold;
}

.image_delimiter {
	font-size: 1px;
	line-height: 1px;
	height: 3px;
	padding: 0px;
	margin: 0px;
}


/* portfolio
-----------------------------------------------------------------------------*/
.portfolio {
}
.portfolio ul {
	display: table;
	margin: 0 auto;
	padding: 0px;
	list-style: none;
	list-style-image: none;
}
.portfolio ul li {
	display: inline-block;
	margin: 0px 5px 20px 5px;
	padding: 0px;
	vertical-align: top;
}
.portfolio ul li:first-child {
}
.portfolio ul li:last-child {
}
a.portfolio_button {
	display: inline-block;
	position: relative;
	color: #fff;
	font-family: 'Poppins', sans-serif;
	font-size: 14px;
	line-height: 14px;
	text-decoration: none;
	outline: none;
	background: #b80000;
	text-align: center;
	padding: 10px 10px 10px 10px;
	transition: all 250ms ease-in;
	-webkit-transition: all 250ms ease-in;
}
a.portfolio_button:hover, .portfolio ul li:hover a.portfolio_button, .portfolio li.selected a.portfolio_button {
	background: #231f20;
	text-decoration: none;
}

/* portfolio_sections_list
-----------------------------------------------------------------------------*/
.portfolio_sections_list {
	padding: 0px 0px 15px 0px;
	text-align: center;
	border-bottom: 1px solid #eae9e9;
	margin-bottom: 15px;
}
.portfolio_sections_list_caption {
	font-size: 16px;
	line-height: 19px;
	color: #5d635e;
	font-weight: bold;
	padding: 0px 0px 5px 0px;
}
.portfolio_sections_list select {
	width: 100%;
	font-size: 16px;
	line-height: 16px;
	padding: 8px;
	margin: 0px 0px 10px 0px;
	background: #fff url(images/input_bg.png) top repeat-x;
	border: 1px solid #ccc;
}
.portfolio_sections_list ul li {
	margin: 0px 4px 10px 4px;
	padding: 0px;
	vertical-align: top;
}

.portfolio_section_name {
	font-size: 30px;
	line-height: 33px;
	font-weight: normal;
	color: #5d635e;
	padding: 0px 0px 10px 0px;
	margin: 0px;
	text-transform: uppercase;
	text-align: left;
}
.portfolio_section_text {
	padding: 0px 0px 20px 0px;
	text-align: left;
}


/* portfolio_navigation
-----------------------------------------------------------------------------*/
.portfolio_navigation {
	padding: 0px 0px 10px 0px;
}
.portfolio_navigation_last {
	width: 100px;
	float: left;
}
.portfolio_navigation_next {
	width: 100px;
	float: right;
	text-align: right;
}
.portfolio_navigation_pages {
	width: -webkit-calc(100% - 200px);
	width: -moz-calc(100% - 200px);
	width: calc(100% - 200px);
	float: left;
	text-align: center;
}


/* portfolio_thumbnails
-----------------------------------------------------------------------------*/
.portfolio_thumbnails {
	padding: 0px 0px 10px 0px;
	text-align: center;
}
.portfolio_thumbnails_caption {
	padding: 0px 0px 20px 0px;
}
.portfolio_thumbnails ul li {
	text-align: left;
	position: relative;
}

.portfolio_thumbnail_link {
}
.portfolio_thumbnail_image {
	box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.2);
}
.portfolio_thumbnail_image img {
	vertical-align: bottom;
}

.portfolio_thumbnail_caption {
	width: 92%;
	overflow: hidden;
	color: #fff;
	font-size: 16px;
	line-height: 18px;
	position: absolute;
	bottom: -10px;
	left: 0px;
	padding: 7px 4% 7px 4%;
	opacity: 0;
	background: rgba(72,72,72,0.8);
	transition: all 250ms ease-in;
	-webkit-transition: all 250ms ease-in;
}
.portfolio_thumbnails ul li:hover .portfolio_thumbnail_caption {
	opacity: 1;
	bottom: 0px;
}
.portfolio_thumbnail_caption a {
	color: #FF0;
}


/* portfolio_index
-----------------------------------------------------------------------------*/
.portfolio_index {
	padding: 0px 0px 10px 0px;
	text-align: center;
}
.portfolio_index ul li {
	text-align: left;
	position: relative;
}

.portfolio_index_link {
	color: #FF0;
}
.portfolio_index_image {
	box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.2);
	overflow: hidden;
}
.portfolio_index_image img {
	vertical-align: bottom;
	transition: all 250ms ease-in;
	-webkit-transition: all 250ms ease-in;
}
.portfolio_index ul li:hover .portfolio_index_image img {
	transform: scale(1.1);
}

.portfolio_index_caption {
	width: 92%;
	overflow: hidden;
	color: #fff;
	font-size: 16px;
	line-height: 18px;
	position: absolute;
	bottom: -10px;
	left: 0px;
	padding: 7px 4% 7px 4%;
	opacity: 1;
	visibility: visible;
	display: block;
	background: rgba(72,72,72,0.8);
	transition: all 250ms ease-in;
	-webkit-transition: all 250ms ease-in;
}
.portfolio_index ul li:hover .portfolio_index_caption {
	opacity: 1;
	bottom: 0px;
}


/* /* hero slider -----------------------------------------------------------------------------*/
/* Hero slider full-width inside a constrained container */
.my-slider {
  position: relative;
  width: 100vw;
  left: 50%;
  margin-left: -50vw;
  overflow: hidden;
}

/* Each slide relative for overlay positioning */
.my-slider .slide {
  position: relative;
}

.my-slider .slick-slide img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  object-position: center center;
  display: block;
  z-index: 1;
}

/* Overlay container */
.my-slider .slide-overlay {
  position: absolute;
  top: 50%;               /* vertical offset from top */
  left: 10%;              /* horizontal offset from left */
  max-width: 400px;       /* adjust as needed */
  background: rgba(0,0,0,0.8); /* semi-transparent for readability */
  color: #fff;
  padding: 15px;
  border-radius: 5px;
 /*  opacity: 0;             /* hidden initially */
/*  transform: translateX(-20px); /* start slightly left */
 /* transition: all 0.7s ease-out; */
  z-index: 2;
}

.my-slider .slide-overlay.active {
  opacity: 1;
  transform: translateX(0);  /* slide into final position */
}

.my-slider .slide-overlay h2 {
  margin: 0 0 10px 0;
  font-size: 1.8em;
  color: #fff;
}

/* .my-slider .slide-overlay p { */
  /* margin: 0; */
  /* font-size: 1em; */
/* } */


/* Slick dots */
.my-slider .slick-dots {
  display: flex !important;
  justify-content: center;
  padding: 0;
  margin: 0;
  list-style: none;
  bottom: 20px;
}

.my-slider .slick-dots li {
  margin: 0 6px;
}

.my-slider .slick-dots li button:before {
  content: '' !important; 	
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.7);
  opacity: 1;
}

.my-slider .slick-dots li.slick-active button:before {
  background: #ffffff;
}

/* /* Arrows */
/* Slick arrows */
/*.my-slider .slick-prev,
.my-slider .slick-next {
  font-size: 0; 
  line-height: 0;
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 40px;
  height: 40px;
  z-index: 1000 !important;
  cursor: pointer;
  border: none;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  display: block !important;
}*/

/* Position */
/*.my-slider .slick-prev { left: 15px; }
.my-slider .slick-next { right: 15px; }*/

/*  Default chevron using CSS */
/*.my-slider .slick-prev:before,
.my-slider .slick-next:before {
  font-family: "slick";
  font-size: 30px;
  color: rgb(207, 30, 30);
  opacity: 0.85;
} */


/* Responsive */
@media (max-width: 768px) {
  .my-slider .slick-slide img {
    height: 400px;
  }
  .slide-overlay h2 {
    font-size: 1.8rem;
  }
  .slide-overlay p {
    font-size: 1rem;
  }
  .my-slider .slick-prev,
  .my-slider .slick-next {
    display: none !important;
  }
}



/* portfolio_slider
-----------------------------------------------------------------------------*/
.portfolio_slider {
}

.portfolio_slider_previews_area {
	position: relative;
}
.portfolio_slider_previews {
	vertical-align: middle;
	height: 500px;
	overflow: hidden;
	margin-bottom: 10px;
}

.portfolio_slider_preview {
	width: auto;
	height: 500px;
	text-align: center;
}
.portfolio_slider_preview_link {
	width: auto;
	display: inline-block;
	text-align: center;
	position: relative;
	top: 50%;
	-webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.portfolio_slider_preview_image {
	width: 100%;
	height: auto;
}
.portfolio_slider_preview_image img {
	width: 100%;
	height: auto;
}
.portfolio_slider_preview_caption {
	width: 94%;
	overflow: hidden;
	color: #fff;
	font-size: 14px;
	line-height: 15px;
	text-align: left;
	position: absolute;
	bottom: 0px;
	left: 0px;
	padding: 10px 3% 10px 3%;
	opacity: 1;
	background: rgba(72,72,72,0.7);
}
.portfolio_slider_preview_caption small {
	color: #CCC;
}

.portfolio_slider_previews_last, .portfolio_slider_thumbnails_last {
	position: absolute !important;
	top: 50%;
	margin-top: -20px;
	left: 20px;
}
.portfolio_slider_previews_last:after, .portfolio_slider_thumbnails_last:after {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
	background: url(images/portfolio_slider_last.png) center center no-repeat;
}

.portfolio_slider_previews_next, .portfolio_slider_thumbnails_next {
	position: absolute !important;
	top: 50%;
	margin-top: -20px;
	right: 20px;
}
.portfolio_slider_previews_next:after, .portfolio_slider_thumbnails_next:after {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
	background: url(images/portfolio_slider_next.png) center center no-repeat;
}

.portfolio_slider_navigation {
	display: table;
	margin: 0 auto;
	margin-bottom: 15px;
}

.portfolio_slider_slideshow {
	position: relative;
}

.portfolio_slider_thumbnails_area {
	position: relative;
}
.portfolio_slider_thumbnails {
	margin-bottom: 10px;
}

.portfolio_slider_thumbnail {
	text-align: center;
}

.portfolio_slider_thumbnail_link {
	text-align: left;
	position: relative;
	width: auto;
	display: inline-block;
}

.portfolio_slider_thumbnail_image img {
	opacity: 0.7;
	transition: all 250ms ease-in;
	-webkit-transition: all 250ms ease-in;
}
.portfolio_slider_thumbnail_image:hover img, .portfolio_slider_thumbnails .slick-current img {
	opacity: 1 !important;
}

.portfolio_slider_thumbnail_caption {
	width: 92%;
	overflow: hidden;
	color: #fff;
	font-size: 13px;
	line-height: 14px;
	position: absolute;
	bottom: -10px;
	left: 0px;
	padding: 7px 4% 7px 4%;
	opacity: 0;
	background: rgba(72,72,72,0.7);
	transition: all 250ms ease-in;
	-webkit-transition: all 250ms ease-in;
}
.portfolio_slider_thumbnail_link:hover .portfolio_slider_thumbnail_caption {
	opacity: 1;
	bottom: 0px;
}
.portfolio_slider_thumbnail_caption a {
	color: #FF0;
}


/* portfolio magnific-popup styles
-----------------------------------------------------------------------------*/
.mfp-figure {
}
.mfp-close {
}
.mfp-img {
}
.mfp-bottom-bar {
}
.mfp-title {
	font-size: 14px;
	line-height: 16px;
}
.mfp-title a {
	color: #FF0;
}
.mfp-title small {
	font-size: 13px;
	line-height: 14px;
	color: #fff;
}
.mfp-counter {
}


/* breadcrumbs
-----------------------------------------------------------------------------*/
.breadcrumbs {
	font-family: 'Poppins', sans-serif;
	font-size: 14px;
	line-height: 14px;
	color: #000;
	padding: 0px 0px 13px 0px;
	margin: 0px 0px 20px 0px;
	border-bottom: 1px solid #CCC;
}
.breadcrumbs ol {
	margin: 0px;
	padding: 0px;
	list-style: none;
	list-style-image: none;
}
.breadcrumbs ol li {
	position: relative;
	display: inline-block;
	padding: 0px 15px 0px 0px;
	margin: 0px 5px 0px 0px;
}
.breadcrumbs ol li:after {
	content: " >";
	display: block;
	width: 20px;
	height: 100%;
	position: absolute;
	top: 3px;
	right: 0px;
	text-align: right;
	font-size: 14px;
	line-height: 14px;
}
.breadcrumbs ol li:last-child {
	margin: 0px 0px 0px 0px;
}
.breadcrumbs ol li:last-child:after {
	content: "";
	display: block;
	width: 0px;
}

.breadcrumbs ol li a {
	color: #b80000;
}
.breadcrumbs ol li:hover a {
	text-decoration: underline;
}


/* Table
-----------------------------------------------------------------------------*/
.table {
	width: 100%;
	border-top: 1px solid #bdb6a3;
	border-left: 1px solid #bdb6a3;
}
.table tr {
	vertical-align: middle;
}
.table th, .table td {
	padding: 5px;
	border-bottom: 1px solid #bdb6a3; 
	border-right: 1px solid #bdb6a3; 
	color: #64534c;
}
.table thead td, .table tfoot td {
	background: #efae40 url(images/table_header_bg.png) top repeat-x;
	font-family: 'Poppins', sans-serif;
	color: #fff;
	font-weight: normal;
	font-size: 18px;
	line-height: 18px;
	text-transform: uppercase;
	text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}
.table tr th {
	font-family: 'Poppins', sans-serif;
	font-weight: normal;
	font-size: 18px;
	line-height: 18px;
	color: #fff;
	text-shadow: 1px 1px 1px rgba(0,0,0,0.3);
	background: #ada48c;
}
.table tr:nth-child(odd) {
	background: #efede8;
}
.table tr:nth-child(even) {
	background: #f5f3ee;
}


/* belgard
-----------------------------------------------------------------------------*/
table.belgard td {
	padding: 0px 20px 20px 0px;
}

/* main styles
-----------------------------------------------------------------------------*/
.animatedParent {
/*	overflow: hidden;*/
}

.page_wrapper {
	width: 1400px;
	height: 100%;
	position: relative;
	margin-left: auto;
	margin-right: auto;
}
@media screen and (max-width: 1449px) {
.page_wrapper {
	width: 1100px;
}
}

#main_wrapper {
	overflow: hidden;
}

.body_offset {
	padding-top: 0px;
}

.body_wrapper {
	max-width: 1920px !important;
	margin: 0 auto !important;
	float: none !important;
}

.box_fixed {
	position: fixed !important;
	top: 0 !important;
	left: 0 !important;
	right: 0 !important;
	margin-left: auto !important;
	margin-right: auto !important;
	z-index: 1000 !important;
	width: 100% !important;
	max-width: 1920px !important;
	float: none !important;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}


/* Header
-----------------------------------------------------------------------------*/
#header {
	width: 100%;
	position: relative;
	height: 856px;
	font-family: 'Poppins', sans-serif;
	background: url(images/header_shadow_bg.png) top repeat-x, url(images/MainCombined.jpg) center top no-repeat;
	color: #fff;
	font-size: 16px;
	line-height: 16px;
	z-index: 0;
	display:flex;
	justify-content: space-between;
	align-items: center;
}

.inside #header {
	height: 78px;
	background: url(images/header_inside_bg.png) top repeat-x;
	border-bottom: 4px solid #b80000;
}


#header_logo {
	width: 150px;
	position: absolute;
	left: 0px;
	top: 12px;
}



#header_phone {
	width: 112px;
	position: absolute;
	right: 0px;
	top: 28px;
	color: #fff;
	font-size: 16px;
	line-height: 16px;
	text-align: right;
	background: url(images/icon_phone.png) left center no-repeat;
}

#header_social {
	width: 112px;
	position: absolute;
	right: 0px;
	top: 28px;
	color: #fff;
	font-size: 16px;
	line-height: 16px;
	text-align: right;
	/* background: url(images/icon_phone.png) left center no-repeat; */
}


#header_tagline {
  width: 100%;
  margin: 0 auto;
  padding: 40px;
  position: absolute;
  left: 0;
  top: 30%;
  transform: translateY(-50%);
  text-align: center;
  color: #fff;
  font-size: 45px;
  line-height: 50px;
  text-transform: uppercase;
  text-shadow:
    0 0 8px rgba(0, 0, 0, 0.99),     /* thicker dark base */
    0 0 16px rgba(255, 255, 255, 0.9), /* thicker white halo */
    0 0 24px rgba(255, 255, 255, 0.9),
    0 0 32px #b80000;               /* thicker outer red glow */
}


.blurred-header {
  display: inline-block;              /* shrink to fit text */
  background-color: rgba(255, 255, 255, 0.001); /* translucent behind text only */
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0 15px;                    /* horizontal padding for spacing around text */
  color: black;
  border-radius: 5px;                 /* optional: rounded edges */
}

#header_slogan {
	width: auto;
	padding: 40px;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	text-align: Center;
	color: #fff;
	font-size: 45px;
	line-height: 50px;
	text-transform: uppercase;
	border: 6px solid #b80000;
/* 	background: url(images/header_slogan_bg.png) center center no-repeat; */
/*	background: rgba(0,0,0,0.7);*/
}

#header_slogan_left {
    width: auto;
    padding: 40px;
    position: absolute;
    left: 50px;
    top: 50%;
	transform: translateY(-50%);
    text-align: Center;
    color: #fff;
    font-size: 45px;
    line-height: 50px;
    text-transform: uppercase;
    border: 6px solid #b80000;
   /*  background: url(images/header_slogan_bg.png) center center no-repeat; */
}


#header_slogan span {
	color: #6d6d6d;
	font-size: 14px;
	line-height: 14px;
}


.header-link {
  text-decoration: none;
  color: white;
}

.header_box {
  padding: 10px;
  background-color: transparent; /* or give it a color to see the clickable area */
  text-align: center;
  pointer-events: none;
}

/* Enable pointer-events after the animation duration */
.header-link.animated.fadeInUp {
  animation-fill-mode: forwards; /* keep final state */
}

/* Trick: use animation duration to delay pointer-events */
.header-link.animated.fadeInUp {
  animation: fadeInUp 0.5s forwards; /* same as Animate.css duration */
}

.header-link.animated.fadeInUp {
  /* pseudo-element to switch pointer-events after animation */
  position: relative;
}

.header-link.animated.fadeInUp::after {
  content: "";
  display: block;
  animation: enablePointerEvents 0.5s forwards; /* matches fadeInUp duration */
}

@keyframes enablePointerEvents {
  to {
    pointer-events: auto;
  }
}

.header-link:hover {
  opacity: 0.9;
}

.header-link .a_button {
  text-decoration: underline;
}

/* menutop
-----------------------------------------------------------------------------*/
#menutop {
	width: auto;
	position: absolute;
	top: 20px;
	right: 120px;
}
#menutop ul {
	display: table;
	margin: 0 auto;
	padding: 0px;
	list-style: none;
	list-style-image: none;
}
#menutop li {
	float: left;
	padding: 0px 8px 0px 8px;
	margin: 0px 15px 0px 15px;
}
#menutop ul li:hover, #menutop li.selected {
	background: #b80000;
}

#menutop ul li a {
	display: block;
	color: #fff;
	font-family: 'Poppins', sans-serif;
	font-size: 13px;
	line-height: 13px;
	text-align: center;
	text-transform: uppercase;
	padding: 10px 25px 10px 25px;
	margin: 0px;
	transition: all 250ms ease-in;
	-webkit-transition: all 250ms ease-in;
}
#menutop ul li:hover a, #menutop li.selected a {
	text-decoration: none;
}

@media screen and (max-width: 1449px) {
#menutop li {
	margin: 0px 5px 0px 5px;
}
#menutop ul li a {
	padding: 10px 15px 10px 15px;
}
}




/* middle
-----------------------------------------------------------------------------*/
#middle {
	padding: 0px 0px 60px 0px;
	background: #fff url(images/middle_bg.png) top repeat-x;
	position: relative;
}
.inside #middle {
	min-height: 600px;
	height: auto !important;
	height: 600px;
}


/* content
-----------------------------------------------------------------------------*/
#content {
	width: 100%;
}


/* content_title
-----------------------------------------------------------------------------*/
.content_title {
	width: 100%;
	color: #5d5e63;
	font-family: 'Poppins', sans-serif;
	font-size: 33px;
	line-height: 33px;
	text-align: left;
	padding: 0px 0px 20px 0px;
	margin-bottom: 20px;
	text-transform: uppercase;
	background: url(images/content_title_bg.png) left bottom no-repeat;
}
.content_title h1 {
	padding: 0px;
	margin: 0px;
	width: 100%;
	color: #5d5e63;
	font-family: 'Poppins', sans-serif;
	font-size: 33px;
	line-height: 33px;
	text-align: left;
}


/* service_area
----------------------------------------------------------------------------*/
#service_area ul {
	margin: 10px 0px 0px 20px;
	padding: 0px;

	-moz-column-count: 4;
	-webkit-column-count: 4;
	column-count: 4;
	
	-moz-column-gap: 30px;
	-webkit-column-gap: 30px;
	column-gap: 30px;
}
#service_area span {
	font-weight: bold;
}
#service_area a[href="javascript:;"] {
	color: #5d5d5d;
	text-decoration: none;
	cursor: text;
}

.inside #service_area span {
	font-size: 16px;
	line-height: 17px;
	font-weight: bold;
}
.inside #service_area a[href="javascript:;"] {
	color: #434343;
}


/* Footer
----------------------------------------------------------------------------*/
#footer {
	color: #5d5d5d;
	position: relative;
	padding: 25px 0px 25px 0px;
	font-size: 13px;
	line-height: 18px;
	border-top: 4px solid #b80000;
}

#footer_address {
	float: left;
	width: 500px;
}
#footer_address span {
	font-weight: bold;
}

#footer_links {
	float: right;
	width: 500px;
	text-align: right;
}
#footer_links a {
	color: #5d5d5d;
}


/* Contact
-----------------------------------------------------------------------------*/

#contact_address {
	width: 250px;
	float: left;
}
#contact_form {
	width: 700px;
	margin-left: auto;
	margin-right: auto;
	display: table;
}


ul.items {
	list-style: none;
	list-style-image: none;
}
ul.items li {
	width: 200px;
	display: inline-block;
	vertical-align: top;
	padding: 20px;
}



/* styles
-----------------------------------------------------------------------------*/
#scroll_top {
	display: none;
	position: fixed;
	bottom: 15px;
	right: 15px;
	width: 50px;
	height: 50px;
	background: #b80000 url(images/scroll_top_bg.png) center no-repeat;
	-webkit-border-radius: 25px;
	-moz-border-radius: 25px;
	border-radius: 25px;
	text-decoration: none;
	cursor: pointer;
	box-shadow: 1px 1px 2px rgba(0,0,0,0.3);
	transition: all 250ms ease-in;
	-webkit-transition: all 250ms ease-in;
	z-index: 1000;
}
#scroll_top:hover {
	background: #231f20 url(images/scroll_top_bg.png) center no-repeat;
	text-decoration: none;
}

@keyframes shake {
  0% { transform: translateX(0); }
  20% { transform: translateX(-5px); }
  40% { transform: translateX(5px); }
  60% { transform: translateX(-5px); }
  80% { transform: translateX(5px); }
  100% { transform: translateX(0); }
}

.shake {
  animation: shake 0.5s;
  border: 2px solid red; /* optional: highlight field with red border */
}
