/*  Page styles  */

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background-color: rgb(250,250,250);
}

/*-------------------------------------------------------------------------------------------------------------------- */
/* Page header / top 
/*-------------------------------------------------------------------------------------------------------------------- */

.header {
	width: 100%;
	height: 150px;
	position: fixed;
	z-index: 5000;
	display: flex;
	flex-direction: column;
}

.header .top_bar {
	width: 100%;
	height: 40px;
	background-color: rgba(255,255,255,0.7);
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0px 2%;
}

.header .top_bar .contactline {
	width: auto;
	margin-left: 13%;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	color: #000;
}

.header .top_bar .contactline .address {
	font-size: 1em;	
}

.header .top_bar .contactline .phone_number {
	display: flex;
	align-items: center;
	font-size: 1.2em;
	font-weight: 700;
}

.header .top_bar .phrase_label {
	font-style: italic;
	font-size: 0.6em;
	font-weight: 400;	
	padding: 0px 8px;
}

.header .top_bar .socialline {
	width: auto;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	font-size: 1.8em;	
}

.header .top_bar .socialline .social_btn {
	color: #000;
	padding: 0px 5px;
	cursor: pointer;
}

.header .top_bar .socialline .social_btn:hover {
	color: #b63c5f;
}

.header .bottom_bar {
	width: 100%;
	height: 60px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0px 2%;
	background-color: rgba(55,85,133,0);
}


.header .bottom_bar .logoblock {
	display: flex;
	width: 12%;
}


.header .bottom_bar .logoblock .Toplogo {
	width: 100%;
	margin-top: 10px;
}

.mobile_nav {
	display: none;
	width: 85%;	
	justify-content: center;	
	align-items: center;
	font-size: 3em;
	color: #000;
	cursor: pointer;
}

.mobile_wrap {
	width: 100%;
	height: auto;
	overflow: auto;
	padding-bottom: 20px;
	position: fixed;
	z-index: 1000;
	top: 60px;
	left: 0px;
	background-color: #fff;
	display: none;
	flex-direction: column;
	padding: 2%;
	-webkit-box-shadow: 0px 4px 5px 0px rgba(0,0,0,0.75);
	-moz-box-shadow: 0px 4px 5px 0px rgba(0,0,0,0.75);
	box-shadow: 0px 4px 5px 0px rgba(0,0,0,0.75);	
}

.mobile_wrap .menu_item {
	width: 100%;
	text-align: center;
	font-size: 1.5em;	
	line-height: 1.5em;
}

.mobile_wrap .selected_menu {
	width: 100%;
	text-align: center;
	font-size: 1.8em;	
	color: #000;
	line-height: 1.6em;
}

.header .bottom_bar .navbar {
	width: 85%;	
	display: flex;
	justify-content: flex-end;
}

.header .bottom_bar .navbar .menu_item {
	font-size: 1.4em;	
	width: auto;	
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 8px 2%;
	border-radius: 8px;
	margin-left: 5px;
}

.header .bottom_bar .navbar .menu_item a {
	color: #fff;
}

.header .bottom_bar .navbar .menu_item a:hover {
	color: #b63c5f;
}

.header .bottom_bar .navbar .selected_menu {
	font-size: 1.4em;
	width: auto;
	padding: 8px 2%;
	border-radius: 8px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: rgba(182,60,95,0.6);
	color: #fff;
}

.quote_sticky_btn {
	width: 8%;
	height: 72px;
	position: fixed;
	display: flex;
	justify-content: space-between;
	align-items: center;
	text-align: center;
	color: #fff;
	font-size: 1.6em;
	line-height: 0.8em;
	top: 0px;
	right: 0px;
	letter-spacing: -1px;
	cursor: pointer;
	padding: 10px;
	z-index: 8000;
   /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#f75c03+0,9e2c03+100 */
   background: rgb(247,92,3); /* Old browsers */
   background: -moz-linear-gradient(top,  rgba(247,92,3,1) 0%, rgba(158,44,3,1) 100%); /* FF3.6-15 */
   background: -webkit-linear-gradient(top,  rgba(247,92,3,1) 0%,rgba(158,44,3,1) 100%); /* Chrome10-25,Safari5.1-6 */
   background: linear-gradient(to bottom,  rgba(247,92,3,1) 0%,rgba(158,44,3,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
   filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f75c03', endColorstr='#9e2c03',GradientType=0 ); /* IE6-9 */
}

.quote_sticky_btn:hover {
	color: #000;
}

/*-------------------------------------------------------------------------------------------------------------------- */
/* home Page container wraps
/*-------------------------------------------------------------------------------------------------------------------- */

.fblock_wrap {
	width: 100%;
	height: auto;
	overflow: auto;	
	padding: 0px 10%;
	position: absolute;
	top: 70vh;
	left: 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	z-index: 500;
}

.fblock_wrap .fb_block {
	width: 25%;
	height: 200px;
	border-radius: 5px;
	display: flex;
	flex-direction: column;
	padding: 2%;
	border: 3px solid rgba(255,255,255,0);
}

.fblock_wrap .fb_block_link {
	width: 25%;
	height: 200px;
	border-radius: 5px;
	display: flex;
	flex-direction: column;
	padding: 2%;
	border: 3px solid rgba(0,0,0,0);
	cursor: pointer;	
}

.fblock_wrap .fb_block_link:hover {
	border: 3px solid rgba(255,255,255,1);
}

.fblock_wrap .large_text {
	font-size: 2em;
	font-weight: 800;
	letter-spacing: -1px;
	line-height: 1em;
	margin-bottom: 10px;
}

.fblock_wrap .block_text {
	font-size: 1.3em;
	font-weight: 600;
	line-height: 1.2em;
	color: #000;
}


.hp_feature_block_wrap {
	width: 100%;
	height: 29vh;
	margin-top: 1vh;
	display: flex;
	justify-content: space-between;
}

.hp_feature_block_wrap .feature_block {
	width: 49.5%;
	display: flex;
	flex-direction: row-reverse;
}

.hp_feature_block_wrap .feature_block:nth-child(odd) {
	flex-direction: row;
}

.hp_feature_block_wrap .feature_block .button_side {
	width: 30%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	font-size: 1em;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#004d69+0,003444+100 */
    background: rgb(0,77,105); /* Old browsers */
    background: -moz-linear-gradient(top,  rgba(0,77,105,1) 0%, rgba(0,52,68,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top,  rgba(0,77,105,1) 0%,rgba(0,52,68,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom,  rgba(0,77,105,1) 0%,rgba(0,52,68,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#004d69', endColorstr='#003444',GradientType=0 ); /* IE6-9 */
}

.hp_feature_block_wrap .feature_block .button_side:hover {
	font-size: 1.1em;	
}

.hp_feature_block_wrap .feature_block .button_side .fas {
	color: #ADCFE6;
	font-size: 3em;
}

.hp_feature_block_wrap .feature_block .button_side .button_label {
	color: #fff;
	font-size: 1.8em;
	letter-spacing: -1px;
	line-height: 0.9em;
	text-transform: uppercase;
	text-align: center;
	width: 100%;
	padding: 10px 20%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.hp_feature_block_wrap .feature_block .button_side .button_link_label {
	color: #ADCFE6;
	font-size: 1em;
}

.hp_feature_block_wrap .feature_block .image_side {
	width: 70%;
	height: 29vh;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.index_page_wrap {
	width: 100%;
	padding: 80px 10% 40px 10%;
	display: flex;
	flex-direction: column;
/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#556e8c+0,e8e9ea+29,ccd8ee+99 */
background: rgb(85,110,140); /* Old browsers */
background: -moz-linear-gradient(top,  rgba(85,110,140,1) 0%, rgba(232,233,234,1) 29%, rgba(204,216,238,1) 99%); /* FF3.6-15 */
background: -webkit-linear-gradient(top,  rgba(85,110,140,1) 0%,rgba(232,233,234,1) 29%,rgba(204,216,238,1) 99%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom,  rgba(85,110,140,1) 0%,rgba(232,233,234,1) 29%,rgba(204,216,238,1) 99%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#556e8c', endColorstr='#ccd8ee',GradientType=0 ); /* IE6-9 */

-webkit-box-shadow: inset 0px 4px 6px 0px rgba(0,0,0,0.48);
-moz-box-shadow: inset 0px 4px 6px 0px rgba(0,0,0,0.48);
box-shadow: inset 0px 4px 6px 0px rgba(0,0,0,0.48);
}

.product_cat_wrap {
	width: 100%;
	height: auto;
	overflow: auto;
	padding-bottom: 0px;
	display: flex;
	flex-direction: column;
	align-items: stretch;
}

.product_cat_wrap .cat_block {
	width: 100%;
	height: 535px;
	display: flex;
	justify-content: space-between;
	flex-direction: row;
	color: #fff;
	padding: 0px 10%;	
	margin-bottom: 50px;
	border-top: 4px rgb(51,85,133) solid;
	border-bottom: 4px rgb(51,85,133) solid;	
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#335585+0,073066+100 */
    background: rgb(51,85,133); /* Old browsers */
    background: -moz-linear-gradient(top,  rgba(51,85,133,1) 0%, rgba(7,48,102,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top,  rgba(51,85,133,1) 0%,rgba(7,48,102,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom,  rgba(51,85,133,1) 0%,rgba(7,48,102,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#335585', endColorstr='#073066',GradientType=0 ); /* IE6-9 */
}

.product_cat_wrap .cat_block:nth-child(even) {
	width: 100%;
	height: 470px;
	display: flex;
	padding: 0px 10%;				
	border: none;
	justify-content: space-between;
	flex-direction: row-reverse;	
	background: #fff; 
	color: #335585;	
}


.product_cat_wrap .cat_block .text_side {
	width: 70%;
	display: flex;
	flex-direction: column;
	padding: 80px 0% 40px
}

.product_cat_wrap .cat_block .text_side .cat_name {
	width: 100%;
	font-size: 2.8em;
	line-height: 0.9em;
	font-weight: 700;
	margin-bottom: 14px;
}

.product_cat_wrap .cat_block .text_side .cat_subname {
	width: 100%;
	font-size: 1.4em;
	font-weight: 400;
	font-style: italic;
	margin-bottom: 20px;	
}

.product_cat_wrap .cat_block .text_side .cat_summary {
	width: 100%;
	font-size: 1.4em;
	line-height: 1.1em;
	margin-bottom: 20px;	
}

.product_cat_wrap .cat_block .text_side .price_line {
	width: 100%;
	font-size: 2em;
	line-height: 1em;
	font-weight: 700;
	margin-bottom: 14px;
	text-align: right;
}

.product_cat_wrap .cat_block .text_side .saleprice_line {
	width: 100%;
	font-size: 2em;
	line-height: 1em;
	font-weight: 700;
	margin-bottom: 14px;
	text-align: right;
	color: #b63c5f;
}

.sale_tag {
	font-size: 0.6em;
	font-style: italic;
	vertical-align: 4px;
	padding-right: 10px;
}

.uom {
	font-size: 0.6em;
	vertical-align: 4px;
	padding-left: 5px;
}

.new_tag {
	background-color: #b0182e;
	color: #fff;
	font-size: 0.5em;
	border-radius: 5px;
	padding: 2px 8px;
	vertical-align: 7px;
}

.product_cat_wrap .cat_block .text_side .cat_btn_wrap {
	width: 100%;
	display: flex;
	justify-content: space-between;
}

.product_cat_wrap .cat_block .text_side .more_btn {
	background-color: #b63c5f;
	width: 45%;	
	text-align: left;
	padding: 12px 15px;
	border-radius: 5px;	
	font-size: 1.1em;
	line-height: 1em;
	color: #fff;
	cursor: pointer;	
}

.product_cat_wrap .cat_block .text_side .more_btn:hover {
	background-color: #000;
	color: #fff;
}

.product_cat_wrap .cat_block .image_side {
	width: 30%;
	margin: 0px 5%;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	border-radius: 2%;
}

.testimonial_wrap {
	width: 100%;
	height: 400px;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	background-image: url("../images/layout/test-block.jpg");
}

.testimonial_wrap .testimonial_text .test_header {
	width: 100%;
	font-size: 2.4em;
	font-weight: 400;
	line-height: 1em;
	color: #88a1c3;
	letter-spacing: -2px;
	text-align: center;
}

.testimonial_wrap .testimonial_text {
	width: 45%;
	color: #335585;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 2%;
	margin-right: 5%;
	border: 1px #88a1c3 solid;	
	background-color: rgba(255,255,255,0.7);
	border-radius: 5px;
}

.testimonial_wrap .testimonial_text .test_summary {
	width: 100%;
	font-size: 1.4em;
	font-style: italic;
	line-height: 1.2em;
	margin: 25px 0px;
}

.testimonial_wrap .testimonial_text .tbutton_wrap {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.testimonial_wrap .testimonial_text .tbutton_wrap .tbtn {
	width: auto;
	font-size: 1.2em;
	background-color: #335585;
	color: #fff;
	padding: 12px;
	border-radius: 5px;
	cursor: pointer;
}

.testimonial_wrap .testimonial_text .tbutton_wrap .tbtn:hover {
	background-color: #000;
	color: #fff;
}

.testimonial_wrap .testimonial_text .tbutton_wrap .test_name {
	width: auto;
	font-size: 1em;
	line-height: 1.2em;
	text-align: right;
}

.testimonial_wrap .testimonial_image {
	width: 50%;
	height: 300px;
	background-repeat: no-repeat;
	background-position: top center;
	background-size: cover;
}

.gmap {
	width: 100%;
	height: 500px;
	border-top: 2px solid #b63c5f;
	border-bottom: 2px solid #b63c5f;
}

.minigmap  {
	width: 100%;
	height: 209px;
	border: 2px solid #b63c5f;
    border-radius: 5px;
    margin-top: 28px;
}

.brand_title_band {
	width: 100%;
	background-color: #335585;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 2.4em;
	font-weight: 800;
	letter-spacing: -1px;
	padding: 20px 10%;
	height: 80px;
}


.brand_wrap {
	width: 100%;
	padding: 10px 10%;
	display: flex;
	justify-content: space-around;
	align-items: center;
	height: 150px;
	background-color: rgba(255,255,255,0.6);
}

.brand_wrap .links {
	height: 150px;
	width: 150px;
	margin: 0px 10px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
    filter: none;
    -webkit-filter: grayscale(100%);
    -moz-filter:    grayscale(100%);
    -ms-filter:     grayscale(100%);
    -o-filter:      grayscale(100%);
	opacity: 0.5;
    cursor: pointer;
    transition: all 300ms ease;
}

.brand_wrap .links:hover {
    filter: none;
    -webkit-filter: grayscale(0%);
    -moz-filter:    grayscale(0%);
    -ms-filter:     grayscale(0%);
    -o-filter:      grayscale(0%);
	opacity: 1;	
}

.footer {
	width: 100%;
	height: auto;
	overflow: auto;
	min-height: 300px;
	padding: 80px 4% 40px 4%;	
	display: flex;
	justify-content: space-between;
	background-repeat: no-repeat;
	background-position: top center;
	background-size: cover;
	background-image: url("../images/layout/foot_bg.jpg");
	-webkit-box-shadow: inset 0px 4px 9px -2px rgba(0,0,0,0.75);
	-moz-box-shadow: inset 0px 4px 9px -2px rgba(0,0,0,0.75);
	box-shadow: inset 0px 4px 9px -2px rgba(0,0,0,0.75);	
}

.footer .site_map_wrap {
	width: 35%;
	height: auto;
	overflow: auto;
	padding-bottom: 20px;
	display: flex;
	flex-direction: column;
}

.footer .site_map_wrap .sitemap_label {
	width: 100%;
	color: #335585;
	font-size: 2em;
	font-weight: 800;
	letter-spacing: -1px;
	margin-bottom: 10px;
}

.footer .site_map_wrap .site_block {
	width: 100%;
	font-size: 1.4em;
	line-height: 1.2em;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.footer .site_map_wrap .site_block a {
	width: 50%;
	color: #000;	
}

.footer .site_map_wrap .site_block a:hover {
	color: #b63c5f;
}

.footer .logo_social_wrap {
	width: 25%;
	height: auto;
	overflow: auto;
	padding-bottom: 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.footer .logo_social_wrap .foot_logo {
	width: 50%;
	height: 100px;
}

.footer .logo_social_wrap .socialline {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	height: auto;
	overflow: auto;
	padding-bottom: 20px;
	color: #000;		
	font-size: 2em;
	margin-top: 40px;
}

.footer .logo_social_wrap .socialline .social_btn {
	margin: 0px 5px;
	cursor: pointer;
}

.footer .logo_social_wrap .socialline .social_btn:hover {
	color: #b63c5f;
}

.footer .contact_wrap {
	width: 35%;
	height: auto;
	overflow: auto;
	padding-bottom: 20px;
	display: flex;
	flex-direction: column;
}

.footer .contact_wrap .contact_label {
	width: 100%;
	color: #335585;
	font-size: 2em;
	font-weight: 800;
	letter-spacing: -1px;
	text-align: right;
	margin-bottom: 10px;	
}

.footer .contact_wrap .address_box {
	width: 100%;
	display: flex;
	flex-direction: column;
	color: #000;	
	font-size: 1.4em;
	line-height: 1.1em;	
	text-align: right;
}

.footer .contact_wrap .address_box .title {
	font-size: 1.2em;
}

.footer .contact_wrap .phone_email_box {
	width: 100%;
	display: flex;
	flex-direction: column;
	color: #000;
	font-weight: 800;
	font-size: 1.4em;
	line-height: 1.1em;	
	text-align: right;
	margin-top: 15px;
}

.blackbar {
	width: 100%;
	background-color: #000;
	color: #ECEBF3;
	font-size: 0.7em;
	height: 40px;
	text-align: center;
	line-height: 40px;
}

.blackbar a {
	color: #999;
}

.blackbar a:hover {
	color: #b63c5f;
}


.page_container {
	width: 100%;
	height: auto;
	overflow: auto;
	padding: 0px 2% 0% 2%;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.page_top_image {
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	width: 100%;
	height: 320px;
	-webkit-box-shadow: 0px 3px 14px -4px rgba(0,0,0,0.75);
	-moz-box-shadow: 0px 3px 14px -4px rgba(0,0,0,0.75);
	box-shadow: 0px 3px 14px -4px rgba(0,0,0,0.75);	
	display: flex;
	flex-direction: column;
	padding: 0px 4%;
}

.page_top_image h1 {
	color: #fff;
	width: 100%;
	font-size: 4em;
	margin-top: 240px;
	letter-spacing: -1px;
	text-align: right;
    padding-right: 20px;
    text-shadow: 2px 1px 5px #1e3555;
}

.page_top_image .sub_heading {
	color: #fff;
	width: 100%;
	font-size: 1.5em;
}


.page_container .page_wrap {
	width: 100%;
	display: flex;
	flex-direction: column;
	margin-top: 30px;
	border-radius: 5px 5px 0px 0px;
	padding: 20px 2% 1% 2%;
	min-height: calc(100vh - 470px);
	background-color: rgba(255,255,255,0.5);
}

.page_container .page_wrap .subheading {
	width: 100%;
    color: #335585;
  	font-size: 3em;
  	line-height: 45px;
  	text-align: left;
	font-weight: 700;
  	letter-spacing: -1px;
  	margin-bottom: 60px;
	height: 40px;
  	margin-top: 5px;
}


.pagecontent_half {
	width: 100%;
	height: auto;
	overflow: auto;
	padding-bottom: 20px;
	display: flex;
	justify-content: space-between;
}

.pagecontent_full {
	width: 100%;
	height: auto;
	overflow: auto;
	padding-bottom: 20px;
	display: flex;
	flex-direction: column;
}

.page_text {
	width: 100%;
	height: auto;
	overflow: auto;
	padding-bottom: 20px;
	display: flex;
	flex-direction: column;
}

.product_side_wrap {
	width: 40%;
	margin-left: 2%;
	display: flex;
	flex-direction: column;
}

.product_side_wrap .cat_block {
	width: 100%;
	display: flex;
	flex-direction: column;
	padding-bottom: 20px;
}

.product_side_wrap .cat_block .cat_name {
	width: 100%;
	background-color: #004D69;
	color: #fff;
	font-size: 1.8em;
	height: 52px;
	display: flex;
	align-items: center;
	padding: 0px 10px;
	margin-bottom: 10px;
}

.product_side_wrap .cat_block .cat_content_wrap {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 10px 0px;
	height: 150px;
}

.product_side_wrap .cat_block .cat_content_wrap .cat_small_image {
	width: 50%;
	height: 120px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}

.product_side_wrap .cat_block .cat_content_wrap .cat_btn_wrap {
	width: 50%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}


.product_side_wrap .cat_block .cat_content_wrap .cat_btn_wrap .res_btn {
	background-color: #ADCFE6;
	width: 100%;
	text-align: center;
	padding: 12px 15px;
	border-radius: 5px;
	font-size: 1.1em;
	color: #004D69;
	cursor: pointer;
	margin-bottom: 10px;
}

.product_side_wrap .cat_block .cat_content_wrap .cat_btn_wrap .res_btn:hover {
	background-color: #000;
	color: #fff;
}

.product_side_wrap .cat_block .cat_content_wrap .cat_btn_wrap .com_btn {
	background-color: #B02E0C;
	width: 100%;	
	text-align: center;
	padding: 12px 15px;
	border-radius: 5px;	
	font-size: 1.1em;	
	color: #fff;
	cursor: pointer;	
}

.product_side_wrap .cat_block .cat_content_wrap .cat_btn_wrap .com_btn:hover {
	background-color: #000;
	color: #fff;
}

/*-------------------------------------------------------------------------------------------------------------------- */
/* faq page
/*-------------------------------------------------------------------------------------------------------------------- */

.topics_menu {
	width: 100%;
	background-color: #eee;
	border-radius: 5px;
	margin-bottom: 20px;
	padding: 1% 2%;
	height: auto;
	overflow: auto;
}

.topics_menu a:hover {
	color: #C9271E;
}

.topics_menu ul, .topics_menu a {
	font-weight: 600;
	font-size: 1em;
	color: #444;
}


.topic-row {
	margin-bottom: 20px;
}

.faqlist {
	display: flex;
	flex-direction: column;
	width: 100%;
	padding-right: 0%;
}

.faqlist .faq-row {
	width: 100%;
	padding: 5px 2% 5px 2%;
	margin-bottom: 5px;
}

.faqlist .faq-row .faq-question {
	font-size: 1em;
	font-weight: 800;
	cursor: pointer;
}

.faqlist .faq-row .faq-question:hover {
	color: #B02E0C;
	font-size: 1.1em;	
}

.faqlist .faq-row .faq-answer {
	display: none;
	width: 100%;
	padding: 16px 2% 5px 2%;
}

.faqlist .faq-row:nth-child(even) {
	background-color: #fff;
}

.faqlist .faq-row:nth-child(odd) {
	background-color: #eee;
}

/*************************************
	FORMS - NORMAL
*************************************/

.form_side {
	width: 50%;
}

.form-block {
	display: flex;
	flex-direction: column;
	width: 100%;
	height: auto;
	overflow: auto;
	border-radius: 5px;
	padding: 2%;
}

.form-block-nb {
	display: flex;
	flex-direction: row;
	align-items: stretch;
	width: 100%;
	height: auto;
	padding: 1% 3%;
}

.form-block .form-title {
	width: 100%;
	font-size: 1.8em;
    color: #224757;;
    font-weight: 600;
    padding-bottom: 10px;
    line-height: 1em;
    letter-spacing: -1px;
    word-spacing: -1px;		
}

.form-block .form-row {
  width: 100%;
  padding: 5px 0px;	 
  display: flex;
  flex-direction: row;
  align-items: center;	
}

.form-block .form-row:nth-child(even) {

}

.form-block .form-row .form-label {
    color: #000;
    font-size: 1.2em;
	font-weight: 500;
	letter-spacing: -1px;
    width: 29%;
	text-align: right;
	padding-right: 1%;
}

.form-block .form-row .form-input {
    width: 70%;
}

.form-block .form-row .form-input .checkbox_row {
	width: 100%;
	height: 30px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

.form-block .form-row .form-input .checkbox_row .chk_input {
	width: 30px;
	height: 30px;
	margin-right: 5px;

}

.form-block .form-row .form-input .checkbox_row .chk_label {
	color: #000;
	font-size: 1em;
	height: 30px;
	line-height: 30px;
}

.form-block .form-row .form-input input {
     font-size: 1.1em;
     border: thin solid #aaa;
	 border-radius: 5px;
	 background: #fff;
     padding: 5px 2%;
     width: 100%;
}

.form-block .form-row .form-input textarea {
     font-size: 1.1em;
     border: thin solid #aaa;
	 border-radius: 5px;
	 background: #fff;
     padding: 5px 2%;
     width: 100%;
  	 font-family: 'Open Sans', sans-serif;	
}

.form-block .form-row .form-input select {
     font-size: 1.1em;
     border: thin solid #aaa;
	 border-radius: 5px;
	 background: #fff;
     padding: 4px 2%;
     width: 100%;
}

.form-block-nb .g-recaptcha {
	width: 50%;
}

.form-block-nb .formbtn {
	width: 50%;
    text-align: center;
    font-size: 1.8em;
    font-weight: 600;
    color: #fff;
    line-height: 1em;
    height: 76px;
    cursor: pointer;
    padding: 0;
	background-color: #b63c5f;
	border-radius: 5px;
    -moz-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.form-block-nb .formbtn:hover {
		color: #fff;
		background: #000;
}

.form-block-nb  .formworking {
	display: none;
	width: 50%;
    text-align: center;
    font-size: 1.8em;
    font-weight: 600;
	color: #fff;
	background: #000;
    line-height: 76px;
    height: 76px;
    cursor: pointer;
    padding: 0;
	border-radius: 5px;
}


.form-block .form-row .form-input input.invalid, .form-block .form-row .form-input select.invalid, .form-block .form-row .form-input textarea.invalid {
        background: #FFD4D5;
}

.form_comment {
	width: 100%;
	height: 70px;
}

.contact_wrap {
	width: 100%;
	height: auto;
	overflow: auto;
	padding-bottom: 20px;
	display: flex;
}

.contact_wrap .office_block {
	width: 46%;
	height: auto;
	overflow: auto;
	padding: 20px;
	display: flex;
	flex-direction: column;
}

.contact_wrap .office_block .contact_box {
	width: 100%;
	display: flex;
	flex-direction: column;
	margin-top: 15px;
}

.contact_wrap .office_block .contact_box .team_name {
	width: 100%;
	font-size: 1.2em;
	font-weight: 600;
	line-height: 1em;
	color: #000;
}

.contact_wrap .office_block .contact_box .team_title {
	width: 100%;
	font-size: 1em;
	font-weight: 400;
	line-height: 1em;
	color: #222;
	font-style: italic;
}

.contact_wrap .office_block .contact_box .team_contact {
	width: 100%;
	font-size: 1em;
	font-weight: 400;
	line-height: 1.2em;
	color: #222;
}


.contact_wrap .contact_map_container {
	width: 60%;
	height: 300px;
	border: 2px #000 solid;
	border-radius: 5px;
}

.contact_wrap .office_block .company_label {
	width: 100%;
	color: #000;
	font-size: 1.5em;
	font-weight: 600;
	line-height: 1em;
}

.contact_wrap .office_block .address_label {
	width: 100%;
	color: #444;
	font-size: 1.2em;
	font-weight: 500;
	line-height: 1.2em;
}

.contact_map_container {
	width: 100%;
	height: 320px;
	border: 1px #444 solid;
}


/*-------------------------------------------------------------------------------------------------------------------- */
/* testimonail page
/*-------------------------------------------------------------------------------------------------------------------- */

.test_wrap {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.test_wrap .test_block {
	background-color: #ccc;
	border-radius: 5px;
	padding: 1%;
	width: 30%;
	height: auto;
	overflow: auto;
	margin: 0% 2% 20px 0%;
}

.test_wrap .test_block .test_image {
	width: 100%;
	height: 180px;
	background-repeat: no-repeat;
	background-position: top center;
	background-size: cover;
	margin-bottom: 15px;
}

.test_wrap .test_block .tests {
	font-size: 1.6em;
	font-weight: 500;
    line-height: 1em;
	color: #000;
	margin: 10px 0px;
}


.test_wrap .test_block .cust_name {
	fonr-size: 1em;
	color: #444;
	font-style: italic;
	text-align: right;
}

/*-------------------------------------------------------------------------------------------------------------------- */
/* news page
/*-------------------------------------------------------------------------------------------------------------------- */

.main_news_wrap {
	width: 100%;
	display: flex;
	flex-direction: column;
	height: auto;
	overflow: auto;
	padding-bottom: 5px;
}

.main_news_wrap .news_top_section {
	width: 100%;
	display: flex;
	height: 450px;
	justify-content: space-between;
}

.main_news_wrap .news_top_section .news_image {
	width: 50%;
	height: 450px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.main_news_wrap .news_top_section .news_top_block {
	width: 48%;	
	display: flex;
	flex-direction: column;
	height: 450px;
}

.main_news_wrap .news_top_section .news_top_block .news_back_btn_wrap {
	width: 100%;
	display: flex;
	justify-content: flex-end;
	height: 60px;	
}


.main_news_wrap .news_top_section .news_top_block .news_back_btn_wrap .news_btn_back {
	width: 47%;
	font-size: 1.2;
	height: 36px;
	line-height: 36px;
	padding: 0px 10px;
	background-color: #7D1813;
	border-radius: 5px;
	color: #fff;
	text-align: center;
	cursor: pointer;
}

.main_news_wrap .news_top_section .news_top_block .news_back_btn_wrap .news_btn_back:hover {
	font-size: 1.4em;
	background-color: #C9271E;
}

.main_news_wrap .news_top_section .news_top_block .news_main_headline {
	width: 100%;
	height: auto;
	overflow: auto;
    font-size: 2.2em;
	text-align: left;
    font-weight: 600;
    color: #0E4C65;
    line-height: 1em;
	padding-bottom: 20px;
}

.main_news_wrap .news_top_section .news_top_block .news_news_by {
	width: 100%;
    font-size: 0.8em;
	text-align: left;
    font-weight: 400;
    color: #444;
	font-style: italic;
    line-height: 1em;
	height: 30px;
	padding-bottom: 20px;
}

.main_news_wrap .news_top_section .news_top_block .news_main_tagline {
	width: 100%;
    font-size: 2em;
	text-align: left;
    font-weight: 500;
    line-height: 1em;
	height: auto;
	overflow: auto;
	padding-bottom: 20px;
}

.main_news_wrap .news_top_section .news_top_block .news_social {
	width: 100%;
	height: 60px;
}

.main_news_wrap .news-article {
	margin: 20px 0px;
	width: 100%;
	height: auto;
	overflow: auto;
}

.news_headlines_wrap {
	width: 100%;
	height: auto;
	overflow: auto;
	display: flex;
	flex-wrap: wrap;
	padding-bottom: 20px;
}

.news_headlines_wrap .news_headline_block {
	width: 23%;
	margin: 0px 1% 50px;
	height: 350px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.news_headlines_wrap .news_headline_block .headline_image {
	width: 100%;
	border-radius: 5px 5px 0px 0px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	height: 120px;
}

.news_headlines_wrap .news_headline_block .headline_headline {
	width: 100%;
	color: #BB6D24;
	font-size: 1.4em;
	font-weight: 600;
	padding: 5px 0px;
}

.news_headlines_wrap .news_headline_block .headline_article_date {
	color: #aaa;
	font-size: 0.8em;
	font-weight: 500;
	padding: 0px 0px 5px;
	font-style: italic;
}

.news_headlines_wrap .news_headline_block .headline_tagline {
	width: 100%;
	color: #686868;
	font-size: 1em;
	font-weight: 500;
	padding: 0px 0px 15px;
	line-height: 1.1em;
}

.news_headlines_wrap .news_headline_block .headline_read_btn {
	width: 50%;
	height: 30px;
	background-color: #7D1813;
	border-radius: 5px;
	color: #fff;
	line-height: 30px;
	font-size: 1em;
	text-align: center;
	cursor: pointer;
}

.news_headlines_wrap .news_headline_block .headline_read_btn:hover {
	font-size: 1.2em;
	background-color: #C9271E;
}

.article_nav_wrap {
	width: 100%;
	display: flex;
	justify-content: space-between;
	height: auto;
	overflow: auto;
	padding: 20px 0px;
}


.article_nav_wrap .nav_news_headline_block {
	width: 40%;
	margin: 0px 1% 50px;
	height: 380px;
	display: flex;
	flex-direction: column;
}


.article_nav_wrap .nav_news_headline_block .header_line {
	color: #0E4C65;
	width: 100%;
	font-size: 1.5em;
	font-weight: 600;
	padding: 0px 0px 10px 0px;
}


.article_nav_wrap .nav_news_headline_block .headline_image {
	width: 100%;
	border-radius: 5px 5px 0px 0px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	height: 150px;
}

.article_nav_wrap .nav_news_headline_block .headline_headline {
	width: 100%;
	color: #BB6D24;
	font-size: 1.4em;
	font-weight: 600;
	padding: 5px 0px;
}

.article_nav_wrap .nav_news_headline_block .headline_article_date {
	color: #aaa;
	font-size: 0.8em;
	font-weight: 500;
	padding: 0px 0px 5px;
	font-style: italic;
}

.article_nav_wrap .nav_news_headline_block .headline_tagline {
	width: 100%;
	color: #686868;
	font-size: 1em;
	font-weight: 500;
	padding: 0px 0px 15px;
	line-height: 1.1em;
}

.article_nav_wrap .nav_news_headline_block .headline_read_btn {
	width: 50%;
	height: 30px;
	background-color: #7D1813;
	border-radius: 5px;
	color: #fff;
	line-height: 30px;
	font-size: 1em;
	text-align: center;
	cursor: pointer;
}

.article_nav_wrap .nav_news_headline_block .headline_read_btn:hover {
	font-size: 1.2em;
	background-color: #C9271E;
}
/*-------------------------------------------------------------------------------------------------------------------- */
/* product  page
/*-------------------------------------------------------------------------------------------------------------------- */

.cat_wrap {
    width: 100%;
    height: 100px;
    padding: 15px 2%;
    display: flex;
    justify-content: space-around;
    align-items: center;    
}

.cat_wrap .cat_button {
    width: 100%;
    font-size: 2em;
    font-weight: 700;
    letter-spacing: -1px;
    color: #365581;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
    border-radius: 0px 0px 5px 5px; 
    cursor: pointer;
}

.cat_wrap .cat_button:hover {
    background-color: #365581;
    color: #fff;

}

.cat_wrap .selectedcat {
    background-color: #b63c5f;
    width: 100%;
    font-size: 2em;
    font-weight: 700;
    letter-spacing: -1px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
    border-radius: 0px 0px 5px 5px; 
}

.cat_wrap .selectedcat .fas {
    font-size: 2em;
    margin-right: 10px;
    vertical-align: 1px;
}

.prod_brands_wrap {
    width: 100%;
    height: auto;
    overflow: auto;
    padding: 25px 0px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    min-height: 400px;    
}

.prod_brands_wrap .brand_btn {
	height: 180px;
	width: 200px;
	margin: 0px 50px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
    filter: none;
    -webkit-filter: grayscale(100%);
    -moz-filter:    grayscale(100%);
    -ms-filter:     grayscale(100%);
    -o-filter:      grayscale(100%);
	opacity: 0.5;
    cursor: pointer;
    transition: all 300ms ease;
}

.prod_brands_wrap .brand_btn:hover {
    filter: none;
    -webkit-filter: grayscale(0%);
    -moz-filter:    grayscale(0%);
    -ms-filter:     grayscale(0%);
    -o-filter:      grayscale(0%);
	opacity: 1;	
}

.brand_info_wrap {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    height: auto;
    overflow: auto;
    background-color: #cfd6e0;
    min-height: 300px;
    padding: 20px 2%;
}

.brand_info_wrap .logo_block {
	background-repeat: no-repeat;
	background-position: top left;
	background-size: contain;
    width: 20%;
}

.brand_info_wrap .info_block {
    width: 80%;
    display: flex;
    flex-direction: column;
	justify-content: center;
}


/*-------------------------------------------------------------------------------------------------------------------- */
/* career page
/*-------------------------------------------------------------------------------------------------------------------- */

.job_title {
	width: 100%;
	font-size: 1.2em;
	font-weight: 600;
	letter-spacing: -1px;
	line-height: 1em;
}

.job_status {
	width: 100%;
	font-size: 0.9em;
	font-weight: 400;
	line-height: 1em;
	color: #888;
	font-style: italic;
	margin-top: 5px;
	margin-bottom: 15px;	
}

.job_summary {
	width: 100%;
	font-size: 1em;
	font-weight: 500;
	line-height: 1em;
	color: #888;
}

.job_details {
	width: 100%;	
	padding: 5px;
	border: 1px #aaa solid;
	border-radius: 5px;
}

.job_contact {
	width: 100%;	
	margin-bottom: 40px;	
	display: flex;
	background-color: #aaa;
	padding: 5px;
}

.job_contact .job_contact_line {
	width: auto;
	margin-right: 10px;
	font-size: 0.9em;
	font-weight: 500;
	line-height: 1em;
	color: #000;
}

.team_wrap {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	height: auto;
	overflow: auto;
	padding-bottom: 20px;
}

.team_wrap .team_box {
	width: 49%;
	padding: 8px 10px;
	height: auto;
	overflow: auto;
}

.team_wrap .team_name {
	width: 100%;
	font-size: 1.2em;
	font-weight: 700;
	line-height: 1em;
}

.team_wrap .team_title {
	width: 100%;
	font-size: 0.9em;
	line-height: 1em;
	font-style: italic;
	padding-bottom: 5px;
}

.team_wrap .team_contact {
	width: 100%;
	font-size: 1em;
	line-height: 1em;
	font-weight: 700;
}

.team_btn {
	width: 100%;
	height: auto;
	overflow: auto;
	background-color: #004D69;
	border-radius: 8px;
	color: #fff;
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	margin-bottom: 40px;
	cursor: pointer;	
}

.team_btn:hover {
	background-color: #158BB7;

}

.team_btn .btn_image_side {
	width: 30%;
	height: auto;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	background-image: url("../images/layout/team_btn.jpg");
}

.team_btn .btn_text_side {
	width: 70%;
	padding: 20px 15px;	
	display: flex;
	flex-direction: column;
	height: auto;
}

.team_btn .btn_text_side .large_text {
	font-size: 2em;
	font-weight: 700;
	line-height: 0.9em;
	padding-bottom: 10px;
}

.team_btn .btn_text_side .small_text {
	font-size: 1em;
	line-height: 0.9em;
}


.team_page_wrap {
	width: 100%;
	height: auto;
	overflow: auto;
	padding-bottom: 20px;
	display: flex;
	flex-direction: column;
}

.team_page_wrap .team_box {
	width: 100%;
	height: auto;
	overflow: auto;
	padding-bottom: 20px;
	display: flex;
	justify-content: space-between;
	margin-bottom: 80px;
}

.team_page_wrap .team_box .headshot {
	width: 10%;
	height: 190px;
	border-radius: 5px;
	padding-left: 2%;
	background-repeat: no-repeat;
	background-position: top center;
	background-size: cover;
    -webkit-box-shadow: 2px 5px 16px -6px rgba(0,0,0,0.75);
    -moz-box-shadow: 2px 5px 16px -6px rgba(0,0,0,0.75);
    box-shadow: 2px 5px 16px -6px rgba(0,0,0,0.75);	
}

.team_page_wrap .team_box .team_details {
	width: 88%;
	height: auto;
	overflow: auto;
	padding-bottom: 20px;
	display: flex;
	flex-direction: column;
}

.team_page_wrap .team_box .team_details .team_name {
	width: 100%;
	font-size: 1.6em;
	font-weight: 700;
	margin-top: 20px;
	line-height: 1em;
}

.team_page_wrap .team_box .team_details .team_title {
	width: 100%;
	font-size: 1.2em;
	line-height: 1em;
	font-style: italic;
}

.team_page_wrap .team_box .team_details .team_contact {
	width: 100%;
	font-size: 1.2em;
	line-height: 1em;
	display: flex;
	align-items: center;
	margin-top: 5px; 
}

.team_page_wrap .team_box .team_details .team_contact .team_contact_segment {
	margin-right: 2%;
	width: 15%;
}

.team_page_wrap .team_box .team_details .team_contact .team_contact_segment .far {
	margin-right: 10px;
}

.team_page_wrap .team_box .team_details .team_contact .team_contact_segment .fas {
	margin-right: 10px;
}

.team_page_wrap .team_box .team_details .team_bio {
	width: 100%;
	height: auto;
	margin-top: 15px;
	overflow: auto;
	padding-bottom: 20px;
	font-size: 1em;
	line-height: 1.1em;
	
}

.team_page_wrap .team_box .team_details .team_bio p {
	font-size: 1em;
	line-height: 1.1em;
}

.sticky_service_btn {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 68px;
	height: 120px;
	border-radius: 5px 0px 0px 5px;
	position: fixed;
	top: 40vh;
	right: 0px;
	color: #fff;
	padding: 1%;
	z-index: 10000;
	cursor: pointer;
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#b63c5f+0,992648+100 */
	background: rgb(182,60,95); /* Old browsers */
    background: -moz-linear-gradient(top,  rgba(182,60,95,1) 0%, rgba(153,38,72,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top,  rgba(182,60,95,1) 0%,rgba(153,38,72,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom,  rgba(182,60,95,1) 0%,rgba(153,38,72,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b63c5f', endColorstr='#992648',GradientType=0 ); /* IE6-9 */
}

.sticky_service_btn .btn_text {
	font-size: 1.4em;
	width: 50%;
	line-height: 1.em;
	margin-left: 20px;
}

.sticky_service_btn:hover {
	width: 280px;
}

.gallery_side_wrap {
    width: 45%;
    height: auto;
    overflow: auto;
    padding-bottom: 20px;
    display: flex;
    flex-wrap:wrap;
    justify-content: space-between;
    margin-left: 5%;    
}

.gallery_side_wrap h3 {
    width: 46%;
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
    line-height: 1.2em;
}

.gallery_side_wrap .small_image {
    width: 46%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 5px;
    margin: 1%;
    height: 250px;
}

/*************************************
	PETS PAGE
*************************************/

.page_pets__container {
	display: flex;
	flex-wrap: wrap;
}

.page_pets__pet_block {
	width: 23%;
    margin: 1% 1%;
    padding: 20px;
	box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 75%);
	font-family: 'Shadows Into Light', cursive;
	color: #000;
}

.page_pets__pet_block:hover {
	transform: rotateZ(5deg) scale(1.05);
	cursor: pointer;
}

.page_pets__pet_block:hover:nth-child(even) {
	transform: rotateZ(-5deg) scale(1.05);
	cursor: pointer;
}

.page_pets__pet_image {
	background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 250px;
	margin: 5% 0% 5%;
}

.page_pets__pet_name {
	text-align: center;
	font-size: 1.6em;
	font-weight: 600;
}

.page_pets__pet_owner {
	text-align: center;
	font-size: 1.3em;
	margin-top: 5%;
}

.page_pets__header {
	display: flex;
}

.page_pets__submit_pet {
	width: 20%;
    background: #375780;
    color: #fff;
    height: 60px;
    text-align: center;
    padding: 20px 30px;
    margin: 1% 1% 5%;
    border-radius: 5px;
    font-size: 1.3em;
}

.page_pets__submit_pet:hover {
	background: #000;
	cursor: pointer;
}

/*************************************
	PETS DETAIL PAGE
*************************************/

.page_pet_detail__container {
	display: flex;
}

.page_pet_detail__left {
	width: 40%;
}

.page_pet_detail__right {
	width: 45%;
	margin-left: 2%;
	padding-top: 2%;
	font-family: 'Shadows Into Light', cursive;
	line-height: 40px;
}

.page_pet_detail__title {
	margin-right: 10px;
	font-size: 1.3em;
	color: #000;
}

.page_pet_detail__image {
	background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 20vw;
    margin: 5% 0% 5%;
}

.page_pet_detail__name {
	font-size: 3em;
    font-weight: 600;
	color: #000;
}

.page_pet_detail__owner_name {
	font-size: 2em;
    font-weight: 600;
	display: flex;
}

.page_pet_detail__age {
	font-size: 1.7em;
    font-weight: 600;
	display: flex;
}

.page_pet_detail__short_desc {
	font-size: 1.7em;
    font-weight: 600;
	display: flex;
}

.page_pet_detail__fun_fact {
	font-size: 1.7em;
    font-weight: 600;
	display: flex;
}

.page_pet_detail__fav_food {
	font-size: 1.7em;
    font-weight: 600;
	display: flex;
}

.page_pet_detail__button_back {
	background: #375780;
    color: #fff;
    height: 60px;
    text-align: center;
    padding: 20px 30px;
    margin: 1% 0% 5%;
    border-radius: 5px;
	font-size: 1.3em;
}

.page_pet_detail__button_back:hover {
	background: #000;
	cursor: pointer;
}

.page_pet_detail__more_pets {
	display: flex;
	width: 99%;
	align-self: center;
}

.page_pet_detail__more_pets_title {
	width: 100%;
    color: #335585;
    font-size: 3em;
    line-height: 45px;
    text-align: left;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 60px;
    height: 40px;
    margin-top: 5px;
}

.page_pet_detail__product_image {
	background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 6vw;
    margin: 2% 2% 5%;
    width: 15%;
	cursor: pointer;
}

.page_pet_detail__product_image:hover {
	height: 7vw;
}

.page_pet_detail__sidebar {
	display: flex;
	flex-direction: column;
}

.page_pet_detail__product_details {
	display: flex;
}

.page_pet_detail__product_desc {
	font-size: 1.2em;
    line-height: 20px;
    color: #5D5D5D;
    margin-top: 3%;
    width: 70%;
    font-family: 'Open Sans', sans-serif;
}

.page_pet_detail__share {
	font-size: 1.5em;
    color: #375780;
    font-weight: 600;
    margin: 3% 10% 5%;
	text-align: center;
}

/*************************************
	HOME PAGE FEATURED PET
*************************************/

.homepage__featured_pet_banner {
	display: flex;
    background: linear-gradient(to bottom, rgba(85,110,140,1) 0%,rgba(232,233,234,1) 29%,rgba(204,216,238,1) 99%);
	flex-direction: row;
}

.homepage__page_text {
	width: 60%;
    padding: 80px 10% 40px 10%;
    display: flex;
    flex-direction: column;
}

.homepage__featured_pet {
	width: 40%;
    padding: 15px 5% 0px 1%;
    display: flex;
    flex-direction: column;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    cursor: pointer;
    height: auto;
    border-radius: 5px;
    justify-content: flex-end;
	margin: 2% 5% 1% 0%;
}

.homepage__featured_pet:hover {
	background-size: 110%;
}

.homepage__featured_pet_title {
	/*font-size: 2.8em; */
	font-size: calc(30px + (44 - 30) * ((100vw - 1140px) / (1880 - 1140)));
    text-align: left;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 30px;
    margin-top: 5px;
    margin-bottom: 23px;
    color: #fff;
    text-shadow: 3px 3px 5px black;
    font-family: 'Shadows Into Light', cursive;
}

.homepage__featured_pet_subtitle { 
	font-size: 0.5em;
	font-family: 'Open Sans', sans-serif;
	font-weight: 100;
}

.homepage__featured_pet_name {
	color: #fff;
    font-size: 2em;
    font-weight: 600;
    font-family: 'Shadows Into Light', cursive;
    text-shadow: 3px 3px 5px black;
}

.homepage__featured_pet_subheading {
	color: #fff;
    font-size: 1.5em;
    font-family: 'Shadows Into Light', cursive;
    text-shadow: 3px 3px 5px black;
	margin-top: 15px;
}

.homepage__featured_bottom {
	width: 80%;
	align-self: center;
	display: flex;
	justify-content: space-between;
	flex-direction: row-reverse;
	margin-bottom: 2%;
}

.homepage__featured_pet_bottom {
	display: flex;
    align-items: flex-end;
}

.homepage__featured_logo {
	background-image: url(/assets/images/layout/top-logo.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    height: 100px;
    width: 25%;
}

.homepage__featured_click {
	font-size: calc(45px + (65 - 45) * ((100vw - 1140px) / (1880 - 1140)));
    color: #fff;
    margin-left: 3%;	
}

.homepage__featured_pet:hover .homepage__featured_click {
	margin-left: 5%;
}

/*************************************
	HOME PAGE FEATURED PRODUCT
*************************************/

.homepage__featured_product_details {
	background: #fff;
    width: 48%;
    border: 1px #88a1c3 solid;
    border-radius: 5px;
    padding: 25px;
    display: flex;
    flex-direction: row;
	justify-content: space-between;
	height: 15vw;
}

.homepage__featured_images {
	width: 30%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

.homepage__featured_product_image {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 150px;
    width: 100%;
}

.homepage__featured_brand_image {
 	background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    height: 80px;	
}

.homepage__featured_product_info {
    width: 65%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.homepage__featured_product_title {
	line-height: 1em;
    color: #335585;
    letter-spacing: -2px;
    display: flex;
    font-size: 2.4em;
    text-align: left;
    font-weight: 800;
}

.homepage__featured_product_name {
	color: #000;
    font-size: 1.5em;
    width: 100%;
    line-height: 25px;
}

.homepage__featured_product_bottom {
	margin-top: 20px;
}

.homepage__featured_product_price {
    font-size: 2em;
    padding-top: 20px;
    color: #0c3469;
}

.homepage__featured_product_link {
	cursor: pointer;
    background: #335585;
    color: #fff;
    width: 40%;
    height: 40px;
    border-radius: 5px;
    text-align: center;
    padding-top: 10px;
    margin-top: 5%;
}

.homepage__featured_product_link:hover {
	background: #000;
}

/*************************************
	PET SUBMISSION PAGE
*************************************/

.page_submit__container {
	display: flex;
}

.page_submit__form {
	width: 60%;
}

.page_submit__featured {
	width: 40%;
    display: flex;
    flex-direction: column;
}

.page_submit__featured_block {
	display: flex;
    margin-top: 3%;
    border: #000 solid 1px;
	width: 100%;
}

.page_submit__featured_block:hover {
	width: 102%;
	cursor: pointer;
}

.page_submit__featured_image {
	background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 12vw;
    width: 40%;
}

.page_submit__featured_details {
	color: #000;
    font-family: 'Shadows Into Light', cursive;
    font-weight: 600;
    display: flex;
    flex-direction: column;
    border-left: #000 solid 1px;
    width: 60%;
}

.page_submit__featured_name {
	font-size: 3em;
    margin: 10% 5% 0%;
}

.page_submit__featured_owner {
	font-size: 2em;
    margin: 5% 5% 0%;
}

.page_submit__featured_desc {
	font-size: 1.5em;
    margin: 5% 5% 0%;
}

.page_submit__title {
	width: 68%;
    color: #335585;
    font-size: 3em;
    line-height: 45px;
    text-align: left;
    font-weight: 700;
    letter-spacing: -1px;
	height: 40px;
}

.page_submit__see_pets {
	width: 20%;
    background: #375780;
    color: #fff;
    height: 60px;
    text-align: center;
    padding: 20px 30px;
    margin: 0% 0% 5%;
    border-radius: 5px;
    font-size: 1.3em;
}

.page_submit__see_pets:hover {
	background: #000;
	cursor: pointer;
}