﻿/*===================== 
	Color information
	
	-
	-
	-
	-
		 
=======================*/
/*===================== 
	CSS reset/normalize 
=======================*/

/**Correct `block` display not defined in IE 8/9.**/
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
	display: block;
}

pre {
	white-space: pre-wrap;
}

small {
	font-size: 80%;
}


/*===================== 
	@Font-Face 
=======================*/


/*===================== 
	base styles 
=======================*/

html {
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}

body {
	font-family: "Noto Sans", sans-serif;
	margin: 0;
	padding: 0;
}

svg:not(:root) {
	overflow: hidden;
	/*reset*/
}

.clear {
	clear: both;
}

img {
	border: 0;
}

/*===================== 
	typography 
=======================*/

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	padding: 0;
}

h1 {
	font-family: "Noto Sans", sans-serif;
	font-size: 30px;
	font-weight: 700;
}

h2 {
	font-family: "Noto Sans", sans-serif;
	font-size: 28px;
	font-weight: 700;
}

h3 {
	font-family: "Noto Sans", sans-serif;
	font-size: 24px;
	font-weight: 700;
}

h4 {
	font-family: "Noto Sans", sans-serif;
	font-size: 20px;
	font-weight: 700;
}

h5 {
	font-family: "Noto Sans", sans-serif;
	font-size: 18px;
	font-weight: 700;
}

h6 {}

p {
	font-family: "Noto Sans", sans-serif;
	font-size: 18px;
	margin: 0;
}

.bold {
	font-weight: bold;
}

/*===================== 
	link styles 
=======================*/

a:focus {
	outline: thin dotted;
	/*reset*/
}

a,
a:link,
a:visited,
a:active {
	outline: 0;
	/*reset*/
	color: #000;
	text-decoration: none;
}

a:hover {
	outline: 0;
	/*reset*/
	text-decoration: none;
	color: #ccc;
}

.butn-red {
	font-family: "Noto Sans", sans-serif;
	background:#ed1b24;
	color:#fff!important;
	display: inline-block;
	padding:10px 30px;
	font-size: 18px;
	font-weight: 400;
	text-align:center;
	margin:0;
    transition: .2s ease-in;
	border:1px solid #ed1b24;
	outline: none;
	cursor: pointer;
	border-radius: 0px!important;
	text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}
.butn-red:hover {
	color:#000!important;
	background:#fff;
	text-shadow: 0 0 5px rgba(0, 0, 0, 0.0);
}
.butn-black {
	font-family: "Noto Sans", sans-serif;
	background:#000;
	color:#fff!important;
	display: inline-block;
	padding:10px 30px;
	font-size: 18px;
	font-weight: 400;
	text-align:center;
	margin:0;
    transition: .2s ease-in;
	border:1px solid #000;
	outline: none;
	cursor: pointer;
	border-radius: 0px!important;
}
.butn-black:hover {
	color:#000!important;
	background:#fff;
}
.text-link-color {
	font-weight: 600;
	color:#000;
	transition: .2s ease-in;
	background: none;
	border: 0;
	padding: 0;
	margin: 0;
	cursor: pointer;
	text-align: inherit;
}
.text-link-color:hover {
	opacity: 0.7;
}

/*===================== 
	header styles 
=======================*/

.header-wrap {
	width: 100%;
	margin: 0;
}

header {
	margin: 0 auto;
	width:100%;
	height: auto;
	display: flex;
}
.head-logo  {
	width: 100%;
	max-width: 280px;
	padding: 20px;
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: center;
	border-top-right-radius: 100px;
	border-bottom-right-radius: 100px;
	background: #ebebeb;
	position: relative;
	z-index: 1;
	margin-right: -80px;
}
.head-logo a {
	display: block;
	width:100%;
	max-width:120px;
	height: auto;
}
.head-logo a img {
	display: block;
	width:100%;
	height: auto;
}
.head-right {
	width:calc(100% - 200px);
	display: flex;
	flex-direction: column;
	align-items: stretch;
}
.head-top {
	width:100%;
	background:#ed1b24;
	padding-right: 5vw;
	box-sizing: border-box;
}
.head-top ul {
	display: flex;
	justify-content: flex-end;
	width:100%;
	gap:10px;
	box-sizing: border-box;
	padding:10px 0;
	margin:0;
}
.head-top ul li {
	padding:0;
	margin:0;
	list-style: none;
}
.head-top ul li a {
	font-family: "Noto Sans", sans-serif;
	font-size: 16px;
	color:#fff;
	transition: .2s ease-in;
	padding:5px;
	text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}
.head-top ul li a:hover {
	opacity: 0.7;
}



/*===================== 
	nav styles 
=======================*/

#menu-button {
	display: none;
}

nav.mobile, .mobile-nav-cont-1 { display:none;} 



nav.primary {
	padding: 0 5vw 0 0;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	margin: 0;
	position: relative;
	width: 100%;
	box-sizing: border-box;
	height: 100%;
	
}

nav.primary ul {
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: flex-end;
	gap:0 1vw;
}

nav.primary ul li {
	display: inline-block;
	margin: 0;
	list-style-type: none;
}

nav.primary ul li a {
	font-family: "Noto Sans", sans-serif;
	color: #000;
	font-size: 18px;
	text-decoration: none;
	padding: 10px 5px;
	display: block;
	margin: 0;
	text-align: center;
	text-transform: uppercase;
	-webkit-transition: .4s ease-in;
	-moz-transition: .2s ease-in;
	-o-transition: .2s ease-in;
	transition: .2s ease-in;
	font-weight: 700;
}

nav.primary ul li a:hover {
	background: #000;
	color: #fff;
}
nav.primary ul li > a:hover {
	border-radius: 10px;
}
nav.primary ul li:hover a {
	background: #000;
	color: #fff;
}

/* Appearance of the sub-level links */
nav.primary ul li li a {
	
}

/* Appearance of the sub-level links on hover */
nav.primary ul li li a:hover {
	color:#ed1b24;
}

/* This controls the Primary nav dropdowns for sublinks. Should not have to edit this too muuch */
nav.primary ul ul {
	display: none;
	position: absolute;
}

nav.primary ul ul ul {
	position: absolute;
	left: 100%;
	top: 0;
}

nav.primary ul li:hover>ul {
	display: block;
	line-height: 18px;
	z-index: 100;
}

nav.primary ul ul li {
	display: block;
	float: none;
	width: 230px;
	position: relative;
	margin: 0;
}

/*===================== 
	content styles 
=======================*/

.wrap-hero {
	width: 100%;
	height: auto;
	position: relative;
}
.hero-bg-img-1 {
	width: 100%;
	height: auto;
	display: flex;
	justify-content: center;
}

.hero-img-cont-1, .hero-img-cont-3  {
	width:36%;
	position: relative;
	border-top:5px solid #fff;
	border-bottom:5px solid #fff;
	z-index: 1;
}
.hero-img-cont-1 img {
	object-fit: cover;
	object-position: 50% center;
}

.hero-img-cont-3 img {
	object-fit: cover;
	object-position: 25% center;
}
.hero-img-cont-2 {
	width:58%;
	object-fit: cover;
	object-position: center;
	position: relative;
	border:5px solid #fff;
	border-radius: 500px;
	z-index: 2;
	margin:0 -15vw;
}
.hero-img-cont-2 img {
	border-radius: 500px;
}
.hero-img-cont-2:after {
	content: " ";
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: 2;
	display: block;
	top: 0;
	left: 0;
	border-radius: 500px;
	background-image: -webkit-linear-gradient(270deg,rgba(0,0,0,0.00) 56.48%,rgba(0,0,0,0.6) 100%);
	background-image: -moz-linear-gradient(270deg,rgba(0,0,0,0.00) 56.48%,rgba(0,0,0,0.6) 100%);
	background-image: -o-linear-gradient(270deg,rgba(0,0,0,0.00) 56.48%,rgba(0,0,0,0.6) 100%);
	background-image: linear-gradient(180deg,rgba(0,0,0,0.00) 56.48%,rgba(0,0,0,0.6) 100%);	
}

.hero-img-cont-1:after, .hero-img-cont-3:after {
	content:" ";
	width:100%;
	height: 100%;
	position: absolute;
	z-index: 2;
	display: block;
	top:0;
	left:0;
	background: rgba(0,0,0,0.3);
}
.hero-overlay {
	background: #000;
	padding: 20px;
	box-sizing: border-box;
	border-bottom: 1px solid #fff;
	width: 100%;
}
.hero-overlay h1 {
	font-family: "Noto Sans", sans-serif;
	font-size: 1.5vw;
	color: #fff;
	line-height: normal;
	text-align: center;
	font-weight: 600;
}
.hero-overlay h1 span {
	font-size: 2.3vw;
	display: block;
	text-transform: uppercase;
	font-weight: 800;
}
.wrap-cat-1 {
	width:100%;
	padding:30px 0;
	background:#ed1b24;
}
.wrap-cat-1 .container-2 {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	padding:0;
}
.wrap-cat-1 .container-2 a {
	padding:20px;
	display: flex;
	align-items: center;
	gap:10px;
	text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}
.wrap-cat-1 .container-2 a h2 {
	font-size:26px;
	font-weight:700;
	line-height: 1;
	color:#fff;
	transition: .2s ease-in;
}
.wrap-cat-1 .container-2 a h2 span {
	font-size:20px;
	font-weight:400;
}
.wrap-cat-1 .container-2 a img {
	width:100%;
	max-width: 74px;
	display: block;
	height: auto;
	transition: .2s ease-in;
}
.wrap-cat-1 .container-2 a:hover {
	opacity: 0.7;
}
.wrap-about {
	width:100%;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	padding:140px 0;
	gap:40px 0;
}
.about-left-1 {
	width:59%;
	padding:0 20px;
	box-sizing: border-box;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}
.about-cont-1 {
	width:100%;
	max-width: 1000px;
	
}
.about-cont-1 h2 {
	font-size:40px;
	font-weight:800;
	color:#ed1b24;
	line-height: 1;
}
.about-cont-1 h2 span {
	font-size:24px;
	font-weight:400;
	color:#000;
}
.about-cont-1 p {
	line-height: 1.5;
	display: block;
	padding:15px 0;
}
.btn-cont-1 {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap:15px;
	padding-top: 20px;
}
.btn-cont-1 a {
	flex-grow: 1;
}
.about-right-1 {
	width:39%;
	padding-left:20px;
	box-sizing: border-box;
}
.about-right-1 img {
	width:100%;
	height: 100%;
	display: block;
	object-fit: cover;
	object-position: center;
	border-bottom-left-radius: 400px;
	border-top-left-radius: 400px;
}
.wrap-banner {
	width: 100%;
	background-image: -webkit-linear-gradient(270deg,rgba(0,0,0,0.50) 0%,rgba(0,0,0,0.50) 100%), url("../siteart/home-foot-bg-1.jpg");
	background-image: -moz-linear-gradient(270deg,rgba(0,0,0,0.50) 0%,rgba(0,0,0,0.50) 100%), url("../siteart/home-foot-bg-1.jpg");
	background-image: -o-linear-gradient(270deg,rgba(0,0,0,0.50) 0%,rgba(0,0,0,0.50) 100%), url("../siteart/home-foot-bg-1.jpg");
	background-image: linear-gradient(180deg,rgba(0,0,0,0.50) 0%,rgba(0,0,0,0.50) 100%), url("../siteart/home-foot-bg-1.jpg");
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	padding: 140px 0;
}
.wrap-banner .container-2 {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap:40px 0;
	text-shadow: 0 0 10px rgba(0,0,0,0.5);
	line-height: 1.5;
}
.wrap-banner .container-2 h2 {
	padding-bottom: 20px;
}
.banner-left {
	width:75%;
	color:#fff;
}
.banner-right {
	width:24%;
}
.banner-right img {
	width:100%;
	max-width: 260px;
	height: auto;
	margin:0 auto;
	display: block;
}
.contact-info {
	padding:30px 0 0 0;
	margin:0;
	display: flex;
	flex-wrap: wrap;
	gap:10px;
}

.contact-info li {
	flex-grow: 1;
	padding:0;
	margin:0;
	font-family: "Noto Sans", sans-serif;
	font-size: 20px;
	font-weight: 700;
	list-style: none;
	text-align: center;
}
.contact-info li a {
	display: block;
	padding:10px;
	background:#ed1b24;
	color:#fff;
	transition: .2s ease-in;
}
.contact-info li a:hover {
	background:#be161d;
}
.map-right-1 {
	padding:20px 0 0 0;
}
.map-right-1 iframe {
	width: 100%;
	height: 100%;
	min-height: 400px;
}

/*===================== 
	animation styles 
=======================*/

.animate-cont {
    overflow: hidden;
}

.js-scroll {
  opacity: 0;
  transition: opacity 500ms;
}

.js-scroll.scrolled {
  opacity: 1;
}

.scrolled.fade-in {
  animation: fade-in 1s ease-in-out both;
}

.scrolled.fade-in-bottom {
  animation: fade-in-bottom 1s ease-in-out both;
}
.scrolled.fade-in-top {
  animation: fade-in-top 1s ease-in-out both;
}

.scrolled.slide-left {
  animation: slide-in-left 1s ease-in-out both;
}

.scrolled.slide-right {
  animation: slide-in-right 1s ease-in-out both;
}

.load-right {
    animation: slide-in-right 1s ease-in-out both;
}
.load-left {
    animation: slide-in-left 1s ease-in-out both;
}
.load-bottom {
    animation: fade-in-bottom 1s ease-in-out both;
}
.load-top {
    animation: fade-in-top 1s ease-in-out both;
}



/* ----------------------------------------------
 * Generated by Animista on 2021-2-11 23:32:31
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

@keyframes slide-in-left {
  0% {
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slide-in-right {
  0% {
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fade-in-bottom {
  0% {
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fade-in-top {
  0% {
    -webkit-transform: translateY(-100px);
    transform: translateY(-100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}


/*===================== 
	Form styles 
=======================*/

/* Containers */



.form-info-cont {
	width: 100%;
	box-sizing: border-box;
}
.form-flex {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
.form-inline-1 {
	display: flex;
	flex-wrap: wrap;
}
.thankyou-container {
	width:100%;
	box-sizing: border-box;
	padding:30px 10% 10% 10%;
	margin-top:0;
}
.form-info-cont p {
	font-size:20px;
	font-weight: 600;
	padding:20px 0 10px 0;
	display: block;
}
/* Inputs */

.radio-pad {
	padding: 0 0 0 10px;
}

.form-info-cont input, .form-info-cont date {
	width: 100%;
	display: block;
	font-family: "Noto Sans", sans-serif;
	padding: 15px;
	font-size: 16px;
	margin:  0 0 15px 0;
	box-sizing: border-box;
    outline:none;
    border:1px solid #000;
    color:#000; 
	
}

.select-cont {
    display: flex;
    justify-content: space-between;
    align-items: center;
	padding:0px!important;
    border-radius: 0px!important;
    width:100%;
    background:#fff;
    box-sizing: border-box;
    position: relative;
}
.select-cont  select {
    -webkit-appearance: initial;
    -moz-appearance: initial;
    appearance: initial;
    width:100%;
    background-color:transparent;
    border:0px!important;
    outline:none!important;
    font-size: 17px!important;
    font-weight: 400!important;
    padding:15px!important;
    box-sizing: border-box;
    color:#000; 
    position: relative;
    z-index: 2;
    cursor: pointer;
}
.select-cont i {
    position: absolute;
    z-index: 1;
    right:0px;
}

.form-info-checkbox input[type="checkbox"] {
	padding: 5px 0 5px 5px;
	margin:  0 0 15px 0;
	box-sizing: border-box;
}
.form-info-cont textarea {
	width: 100%;
	display: block;
	padding: 15px;
	font-size: 16px;
	font-family: "Noto Sans", sans-serif;
	min-height: 120px;
	box-sizing: border-box;
	margin:  0 0 15px 0;
    outline:none;
    border:0px;
	border:1px solid #000;
}
.form-info-cont button {
	display: block;
	margin:0 auto;
}

.CaptchaImage {
  max-width: 100%;
}
.CaptchaWhatsThisPanel input {
    margin:0 auto;
}

.CaptchaWhatsThisPanel a {color:#000;}
.CaptchaWhatsThisPanel a:hover {text-decoration:underline;} 



/*===================== 
	layout styles 
=======================*/

.wrap {
	width: 100%;
	margin: 0;
}


.container-1 {
	max-width: 1600px;
	margin: 0 auto;
	padding: 20px;
	box-sizing: border-box;
}
.container-2 {
	max-width: 1100px;
	margin: 0 auto;
	padding: 20px;
	box-sizing: border-box;
}

.container-inv {
	max-width: 1100px;
	margin: 0 auto;
	padding: 10px;
	box-sizing: border-box;
}
.wrap-content {
	border-top: 5px solid #fff;
	width: 100%;
	padding: 120px 100px 300px 100px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	box-sizing: border-box;
}
.consign-bg-1 {
	background-image: -webkit-linear-gradient(270deg,rgba(0,0,0,0.50) 0%,rgba(0,0,0,0.50) 100%), url(../siteart/consign-bg-img-2.jpg);
	background-image: -moz-linear-gradient(270deg,rgba(0,0,0,0.50) 0%,rgba(0,0,0,0.50) 100%), url(../siteart/consign-bg-img-2.jpg);
	background-image: -o-linear-gradient(270deg,rgba(0,0,0,0.50) 0%,rgba(0,0,0,0.50) 100%), url(../siteart/consign-bg-img-2.jpg);
	background-image: linear-gradient(180deg,rgba(0,0,0,0.50) 0%,rgba(0,0,0,0.50) 100%), url(../siteart/consign-bg-img-2.jpg);
}
.contact-bg-1 {
	background-image: -webkit-linear-gradient(270deg,rgba(0,0,0,0.50) 0%,rgba(0,0,0,0.50) 100%), url(../siteart/contact-bg-img.jpg);
	background-image: -moz-linear-gradient(270deg,rgba(0,0,0,0.50) 0%,rgba(0,0,0,0.50) 100%), url(../siteart/contact-bg-img.jpg);
	background-image: -o-linear-gradient(270deg,rgba(0,0,0,0.50) 0%,rgba(0,0,0,0.50) 100%), url(../siteart/contact-bg-img.jpg);
	background-image: linear-gradient(180deg,rgba(0,0,0,0.50) 0%,rgba(0,0,0,0.50) 100%), url(../siteart/contact-bg-img.jpg);
}
.about-bg-1 {
	background-image: -webkit-linear-gradient(270deg,rgba(0,0,0,0.50) 0%,rgba(0,0,0,0.50) 100%), url(../siteart/about-bg-img.jpg);
	background-image: -moz-linear-gradient(270deg,rgba(0,0,0,0.50) 0%,rgba(0,0,0,0.50) 100%), url(../siteart/about-bg-img.jpg);
	background-image: -o-linear-gradient(270deg,rgba(0,0,0,0.50) 0%,rgba(0,0,0,0.50) 100%), url(../siteart/about-bg-img.jpg);
	background-image: linear-gradient(180deg,rgba(0,0,0,0.50) 0%,rgba(0,0,0,0.50) 100%), url(../siteart/about-bg-img.jpg);
	background-position: bottom center;
}
.wrap-content > div {
	background:#fff;
	border-radius: 60px;
	padding:80px 100px 80px 100px;
}

.content-bottom-cont-1 {
	padding: 0px 20px 60px 20px;
	border-top: 140px #000 solid;
	background:#ebebeb;
}
.content-bottom-cont-1 > div {
	border-radius: 60px;
	padding:60px;
	background:#fff;
	margin-top: -60px;
}

.flex-cont-1 {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
.col-1 {
	width: 100%;
	box-sizing: border-box;
}
.col-1-6 {
	width: 16%;
	box-sizing: border-box;
}

.col-1-5 {
	width: 20%;
	box-sizing: border-box;
}

.col-1-4 {
	width: 24%;
	box-sizing: border-box;
}

.col-1-3 {
	width: 33%;
	box-sizing: border-box;
}

.col-1-2 {
	width: 49%;
	box-sizing: border-box;
}

.col-2-3 {
	width: 65%;
	box-sizing: border-box;
}

.col-3-4 {
	width: 75%;
	box-sizing: border-box;
}

/*===================== 
	footer styles 
=======================*/

footer {
	margin: 0;
	width: 100%;
	background:#ed1b24;
	display: flex;
	justify-content: space-between;
	box-sizing: border-box;
}
.foot-left {
	padding: 20px 20px 20px 5vw;
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	box-sizing: border-box;
}
.foot-logo-1 {
	width:100%;
	max-width: 195px;
	height: auto;
	display: block;
}
.foot-logo-1 img {
	width:100%;
	height: auto;
	display: block;
}
.foot-contact-1 {
	display: none;
	flex-wrap: wrap;
	padding: 40px 0;
  	margin: 0 auto;
	gap:20px;
}
.foot-contact-1 li {
	padding:0;
	margin:0;
	list-style: none;
}
.foot-contact-1 li a {
	padding:0;
	margin:0;
	font-size:16px;
	color:#fff!important;
	transition: .2s ease-in;
}
.foot-contact-1 li a:hover {
	opacity: 0.7;
}
.foot-right {
	background:#be161d;
	border-bottom-left-radius: 400px;
	border-top-left-radius: 400px;
	padding: 100px 5vw 100px 150px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 60%;
	max-width: 700px;
}
.foot-nav-cont-1 {
	width:50%;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.foot-nav-cont-1 p {
	font-family: "Noto Sans", sans-serif;
	font-size: 22px;
	font-weight: 800;
	color:#fff;
	padding-bottom: 15px;
	display: block;
	width: 100%;
}
.foot-nav-cont-1 ul {
	padding:0;
	margin:0;
	list-style: none;
}
.foot-nav-cont-1 ul li {
	font-family: "Noto Sans", sans-serif;
	font-size: 16px;
	color:#fff;
	line-height:2;
}
.foot-nav-cont-1 ul li a {
	color:#fff;
	transition: .2s ease-in;
}
.foot-nav-cont-1 ul li a:hover {
	opacity: 0.7;
}

/*========================== 
	  Responsive styles 
============================*/

@media screen and (max-width: 1200px) {
	.hero-img-cont-1 img {
	  object-fit: cover;
	  object-position: 75% center;
	}
	.hero-img-cont-2 {
  		width: 70%;
	}
	.hero-img-cont-1, .hero-img-cont-3 {
  		width: 30%;
	}
	.hero-overlay h1 {
		font-size: 1.9vw;
	}
	.hero-overlay h1 span {
		font-size: 2.8vw;
	}
}

@media screen and (max-width: 1100px) {
	.head-top {
	  padding-right: 10px;
	}
	nav.primary {
		padding: 0 10px 0 0;
	}
	nav.primary ul {
		gap: 0;
	}
	nav.primary ul li a {
		font-size: 1.5vw;
		padding: 10px 1vw;
	}
	.wrap-content {
		padding:40px 20px 250px 20px;
	}
	.wrap-content > div, .content-bottom-cont-1 > div {
		background:#fff;
		border-radius: 40px;
		padding:40px 20px;
	}
	.col-1-2, .col-1-3 {
		width: 100%;
	}
}

@media screen and (max-width: 900px) {
	
	.head-right {
		border-bottom: 15px solid #ed1b24;
	}
	.head-top {
		display: none;
	}
	.head-right {
		width: calc(100% - 100px);
		flex-direction: row;
		align-items: center;
		justify-content: flex-end;
		padding: 10px 20px;
		box-sizing: border-box;
	}
	.head-logo {
		width: 100%;
		max-width: 180px;
		padding: 10px 20px;
	}
	.head-logo a {
	  max-width: 100px;
	}

	/*==============================
		Mobile Nav Styles			
	================================*/	
	nav.primary{display:none;}
    .mobile-nav-cont-1 { display:block;} /* New class to help control screen width visability */
    
	#menu-button{ 
		display: block;
	}
	
    .menu-toggle {
        display: flex;
        gap:13px;
        align-items: center;
		cursor: pointer;
    }
     .menu-hamburger {
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        width:35px;
        height: 27px;
        position: relative;
    }
    .menu-hamburger-bar-1 {
       display: block;
       background:#000;
        height: 5px;
        width:100%;
        transition: .2s ease-in;
		border-radius: 5px;
    }
    .menu-hamburger-bar-2 {
       display: block;
       background:#000;
        height: 5px;
        width:100%;
        transition: .2s ease-in;
		border-radius: 5px;
    }
    .menu-hamburger-bar-3 {
       display: block;
       background:#000;
        height: 5px;
        width:100%;
        transition: .2s ease-in;
		border-radius: 5px;
    }

    .clickopen .menu-hamburger-bar-2 {
        display: none;
    }
    .clickopen .menu-hamburger-bar-1 {
        position: absolute;
        top:10px;
        transform: rotate(45deg);
        width:25px;
    }
    .clickopen .menu-hamburger-bar-3 {
        position: absolute;
        top:10px;
        transform: rotate(-45deg);
        width:25px;
    }
    
	nav.mobile { /* this section is new updated position width and positioning*/
		display:none;
		position: absolute;
		left: 0px;
		width: 100%;
		height: auto;
		background: #000;
		z-index: 500; 
		overflow:auto;
	}


	/* MENU LIST STYLE */
	nav.mobile ul {
		list-style: none;
		font-weight: 300;
		margin:0;
		padding:0;
	}
	nav.mobile ul li {
		position:relative;
	}
	/* FIRST LEVEL */
	nav.mobile ul li a {
		font-family: "Noto Sans", sans-serif;
		position: relative;
		display: block;
		font-size:18px;
		font-weight: 600;
		padding: 10px;
		color: #fff;
		text-decoration: none;
		text-align: center;
		text-transform: uppercase;
	}
	nav.mobile ul li a:hover {
		background:#ebebeb; 
		color: #000; 
	}

	/* SECOND LEVEL */
	nav.mobile ul li li:last-child {border:none;}
	nav.mobile ul li li a {
		background: #444;
		position: relative;
		display: block;
		padding: 10px 10px 10px 15px;
		border-left:4px #444 solid;
		color: #ccc;
		text-decoration: none;
	}
	nav.mobile ul li li a:hover {background:rgba(65,65,65,0.5);}
	
	.nav-footer {
		padding:20px;
		width: 100%;
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		gap:10px;
		box-sizing:border-box;
	}
	.nav-footer a {
		font-family: "Noto Sans", sans-serif;
		font-size: 16px;
		color: #fff;
		transition: .2s ease-in;
		padding: 5px;
	}
	.nav-footer a:hover {
		opacity: 0.7;
	}
	.hero-overlay {
		position: static;
		width: 100%;
		padding:20px;
		box-sizing: border-box;
	}
	.hero-overlay h1 {
		font-size: 18px;
	}
	.hero-overlay h1 span {
		font-size: 24px;
	}
	.wrap-cat-1 {
		padding:0;
	}
	.wrap-cat-1 .container-2 a {
		width:100%;
		border-bottom: 2px solid #fff;
		padding: 40px 20px 40px 20vw;
		display: flex;
		align-items: center;
		gap:10px;
	}
	.wrap-cat-1 .container-2 a:hover {
		opacity: 1;
		background: #000;
	}
	.wrap-about {
		padding: 70px 0;
	}
	.about-left-1 {
		width: 100%;
		order:2;
	}
	.about-right-1 {
		width: 100%;
		order:1;
	}
	.wrap-banner {
		padding:40px 0 100px 20px;
		box-sizing: border-box;
		overflow: hidden;
	}
	.banner-left, .banner-right {
		width:100%;
	}
	footer {
		padding:20px 0 30px 10px;
		flex-wrap: wrap;
	}
	.foot-left {
		width: 100%;
		background: #be161d;
		border-bottom-left-radius: 400px;
		border-top-left-radius: 400px;
		padding:40px;
	}
	.foot-contact-1 {
		display: flex;
	}
	.foot-right {
		display: none;
	}
	


}
@media screen and (max-width: 500px) {
	.wrap-cat-1 .container-2 a {
		padding: 30px 20px;
	}
	.wrap-cat-1 .container-2 a h2 {
		font-size: 22px;
	}
	.wrap-cat-1 .container-2 a h2 span {
	  font-size: 16px;
	  font-weight: 400;
	}
	h1 {
		font-size: 24px;
	}

	h2 {
		font-size: 22px;
	}

	h3 {
		font-size: 20px;
	}

	h4 {
		font-size: 18px;
	}

	h5 {
		font-size: 16px;
	}


	p {
		font-size: 16px;
	}
	.about-cont-1 h2 {
		font-size:24px;
	}
	.about-cont-1 h2 span {
		font-size:16px;
	}
	.butn-red, .butn-black {
		font-size: 16px;
		display: block;
		width: 100%;
	}
	
}

