
/* Montserrat - Self-hosted */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/montserrat-v31-latin-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Montserrat';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/montserrat-v31-latin-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/montserrat-v31-latin-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Montserrat';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/montserrat-v31-latin-500italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600;
  font-display: optional;
  src: url('../fonts/montserrat-v31-latin-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Montserrat';
  font-style: italic;
  font-weight: 600;
  font-display: optional;
  src: url('../fonts/montserrat-v31-latin-600italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  font-display: optional;
  src: url('../fonts/montserrat-v31-latin-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Montserrat';
  font-style: italic;
  font-weight: 700;
  font-display: optional;
  src: url('../fonts/montserrat-v31-latin-700italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 800;
  font-display: optional;
  src: url('../fonts/montserrat-v31-latin-800.woff2') format('woff2');
}
@font-face {
  font-family: 'Montserrat';
  font-style: italic;
  font-weight: 800;
  font-display: optional;
  src: url('../fonts/montserrat-v31-latin-800italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 900;
  font-display: optional;
  src: url('../fonts/montserrat-v31-latin-900.woff2') format('woff2');
}
@font-face {
  font-family: 'Montserrat';
  font-style: italic;
  font-weight: 900;
  font-display: optional;
  src: url('../fonts/montserrat-v31-latin-900italic.woff2') format('woff2');
}

/*==BASIC-SETUP==*/
body {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #000000;
  background: #ffffff;
}

a,
a:hover {
  text-decoration: none;
}

ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
label {
  margin-bottom: 0;
}

p {
	font-family: 'Montserrat', sans-serif;
}


/* Scroll top START */

.progress-wrap {
	position: fixed;
	right: 30px;
	bottom: 30px;
	height: 46px;
	width: 46px;
	cursor: pointer;
	display: block;
	border-radius: 50px;
	box-shadow: inset  0 0 0 2px rgba(0,0,0,0.1);
	z-index: 10000;
	opacity: 0;
	visibility: hidden;
	transform: translateY(15px);
	-webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.progress-wrap.active-progress {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.progress-wrap::after {
	position: absolute;
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  content: "\f106";
	text-align: center;
	line-height: 46px;
	font-size: 24px;
	color: rgba(0, 0, 0, 0.3);
	left: 0;
	top: 0;
	height: 46px;
	width: 46px;
	cursor: pointer;
	display: block;
	z-index: 1;
	-webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.progress-wrap:hover::after {
	opacity: 0;
}
.progress-wrap::before {
	position: absolute;
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  content: "\f106";
	text-align: center;
	line-height: 46px;
	font-size: 24px;
	opacity: 0;
	background: black;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	left: 0;
	top: 0;
	height: 46px;
	width: 46px;
	cursor: pointer;
	display: block;
	z-index: 2;
	-webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.progress-wrap:hover::before {
	opacity: 1;
}
.progress-wrap svg path {
	fill: none;
}
.progress-wrap svg.progress-circle path {
	stroke: rgba(0, 0, 0, 0.2);
	stroke-width: 4;
	box-sizing:border-box;
	-webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

/* Scroll top END */

.nav-area {
	padding: 15px 0;
	border-bottom: 1px solid #eee;
}

.nav-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.nav-inner .logo img {
	max-width: 180px;
}

.nav-btn {
	display: flex;
	align-items: center;
}

.nav-btn a {
	font-family: 'Montserrat', sans-serif;
	display: block;
	padding: 10px 20px;
	background-color: #ffffff;
	color: #000000;
	font-size: 15px;
	border: 1px solid  #b6b6b6;
	text-align: center;
	transition: 0.2s;
	border-radius: 4px;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-weight: 600;
}

.nav-btn-2 a {
	background: linear-gradient(90deg, rgba(161, 2, 1, 1) 0%, rgba(246, 6, 24, 1) 50%, rgba(189, 21, 19, 1) 100%);
	color: #ffffff;
	border: 0;
}

.nav-btn a:hover {
	opacity: 0.8;
}

.nav-btn-2 {
	margin-left: 15px;
}

/*==== sticky-nev start=== */

.fixed-menu {
	background-color: rgba(255,255,255,0.6);
	backdrop-filter: blur(5px);
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
	border-bottom: 1px solid #eee;
	position: fixed;
	top:0;
	animation:slide-down 0.5s !important;
	left:0;
	right:0;
    box-shadow:4px -86px 103px rgba(0,0,0,0.9);
	z-index:250;
    transition: .10s;
}


@keyframes slide-down {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes slide {
  0% {
      opacity: 0;
      transform: translateY(50%);
  }
  100% {
      opacity: 1;
      transform: translateY(0);
  }
}

/*==== sticky-nev end=== */

.hero-area {
	background-image: url('images/banner_1.jpg');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	position: relative;
	z-index: 99;
	padding: 150px 0;
	text-align: center;
}

.hero-area::after {
	content: '';
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: -1;
}

.hero-inner h1 {
	font-size: 56px;
	line-height: 1.5;
	font-weight: 800;
	color: #fff;
	text-transform: uppercase;
}

.hero-inner h4 {
	font-family: 'Montserrat', sans-serif;
	font-size: 24px;
	line-height: 1.5;
	font-weight: 400;
	color: #fff;
	position: absolute;
	left: 50%;
	transform: translate(-50%);
	bottom: 30px;
}

.tyu-area {
	padding: 80px 0;
}

.tyu-wrapper {
	max-width: 870px;
	margin: 0 auto;
}

.tyu-content h2 {
	font-size: 38px;
	font-weight: 800;
	color: #000000;
	margin: 0 0 20px;
	text-align: center;
	line-height: 1.5;
	text-transform: uppercase;
	padding: 10px;
}

.tyu-content h2 span {
	color: #000!important;
}

.tyu-content p {
	font-size: 18px;
	font-weight: 400;
	color:  #000000;
	line-height: 36px;
	margin: 0 0 20px;
}

.tyu-img {
	padding: 40px 0 60px;
}

.wci-area {
	padding: 30px 0 80px;
}

.wci-title h2 {
	font-size: 38px;
	font-weight: 800;
	color: #000000;
	margin: 0 0 20px;
	text-align: center;
	line-height: 1.5;
	text-transform: uppercase;
	margin: 0 0 80px;
}

.wci-wrapper {
	display: grid;
	grid-template-columns: repeat(4,1fr);
	grid-gap: 30px;
}

.wci-cnt {
	box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
	border-radius: 20px;
	text-align: center;
	padding: 40px 20px;
}

.wci-cnt img {
	width: 250px;
	height: 250px;
	border-radius: 50%;
}

.wci-cnt h2 {
	font-family: 'Montserrat', sans-serif;
	font-size: 19px;
	font-weight: 600;
	color: #000000;
	line-height: 28px;
	margin: 20px 0;
	text-transform: uppercase;
}

.wci-cnt h3 {
	font-size: 16px;
	font-weight: 600;
	color: #000000;
	line-height: 28px;
	margin: 0;
	text-transform: uppercase;
}

.wte-area {
	padding: 80px 0 0;
	background-color: #000000;
}

.wte-title h2 {
	font-size: 38px;
	font-weight: 800;
	color: #ffffff;
	margin: 0 0 90px;
	text-transform: uppercase;
}

.wte-title h2 span {
	color:#8BB600;
}

.wte-inner {
	max-width: 870px;
	margin: 0 auto;
}

.wte-inner-cnt {
	display: grid;
	grid-template-columns: repeat(2,1fr);
	grid-gap: 50px;
	padding-bottom: 80px;
}

.wte-inner-text {
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
}

.wte-inner-text p {
	font-size: 24px;
	color: #ffffff;
	text-align: center;
	font-weight: 500;
}

.wte-inner-text p a {
	color: #ffffff;
}

.wte-inner-img img {
	width: 400px;
	height: 400px;
	object-fit: cover;
}

.hys-area {
	padding: 80px 0;
}

.hys-title {
	text-align: center;
}

.hys-title h2 {
	text-transform: uppercase;
	font-weight: 800;
	font-size: 38px;
	color: #000000;
	margin: 0 0 20px;
}

.hys-title p {
	font-size: 20px;
	margin: 0;
}

.hys-cart {
	max-width: 870px;
	margin: 40px auto;
}

.hys-cart-content {
	border: 2px solid #8BB600;
	padding: 20px;
	box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.8);
	border-radius: 10px;
}

.hys-cart-content span {
	font-family: 'Montserrat', sans-serif;
	font-size: 20px;
	font-weight: 700;
	color: #678600;
	text-decoration: underline;
	margin-bottom: 20px;
	display: inline-block;
}

.hys-cart-content p {
	font-size: 20px;
	font-weight: 400;
	color: #000000;
	margin: 0;
	line-height: 34px;
}

.hys-cart-content ul {
	padding-left: 15px;
}

.hys-cart-content ul li {
	font-family: 'Montserrat', sans-serif;
	list-style-type: disc;
	font-size: 20px;
	font-weight: 400;
	color: #000000;
	margin: 0;
	line-height: 34px;
	padding-bottom: 10px;
}

.hys-cart-content ul li ul {
	padding-left: 60px;
}

.hys-btm {
	max-width: 870px;
	margin:50px auto 0;
}

.hys-btm p {
	font-size: 20px;
	font-weight: 400;
	color: #000000;
	line-height: 30px;
	text-align: center;
}

.etr-area {
	padding: 0 0 80px;
}

.etr-main {
	max-width: 870px;
	margin: 0 auto;
}

.etr-title h2 {
	font-size: 38px;
	font-weight: 800;
	color: #000000;
	text-transform: uppercase;
	margin: 0 0 30px;
	text-align: center;
}

.etr-title h2 span {
	color:#000;
}

.etr-title p {
	font-size: 20px;
	font-weight: 400;
	color: #000000;
	line-height: 35px;
	margin: 0 0 20px;
}

.etr-img img {
	border-radius: 5px;
}

.etr-img {
	padding: 10px 0 30px;
}

.etr-2-area {
	/* background-color: #F4F4F4; */
	padding-top: 80px;
}

.etr-area-01 {
	background-color: #F4F4F4;
	padding-top: 80px;
}

.etr-2-inner {
	padding: 0 0 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
}

.etr-2-text {
	width: 60%;
	padding-right: 83px;
}

.etr-2-img {
	width: 40%;
}

.etr-2-img img {
	border-radius: 4px;
}

.pas-area {
	padding: 80px 0;
	background-color: #fff;
}

.pas-main {
	margin: 0 auto;
	max-width: 870px;
}

.pas-title h2 {
	font-size: 38px;
	font-weight: 800;
	color: #000000;
	text-transform: uppercase;
	margin: 0 0 70px;
	text-align: center;
}

.pas-inner {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	grid-gap: 30px;
}

.pas-inner video{
	width: 100%;
}

.pasm-cnt img {
	border-radius: 12px;
}

.pas-area2 {
	background-color: #ffffff;
	padding-top: 80px;
}

.pas-area2 h2 {
	margin-bottom: 20px;
}

.pas-area2 p {
	font-size: 20px;
	font-weight: 400;
	color: #000000;
	line-height: 35px;
	margin-bottom: 25px;
}

.pas-2-img {
	padding: 30px 0;
}

.pas-area3 {
	background-color: #F4F4F4;
	padding-top: 80px;
}

.main-btn {
	text-align: center;
}

.main-btn a {
	font-family: 'Montserrat', sans-serif;
	background: linear-gradient(90deg, rgba(161, 2, 1, 1) 0%, rgba(246, 6, 24, 1) 50%, rgba(189, 21, 19, 1) 100%);
	padding: 15px 50px;
	background-color: #ffffff;
	color: #000000;
	font-size: 20px;
	text-align: center;
	transition: 0.2s;
	border-radius: 4px;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-weight: 600;
	color: #ffffff;
	margin-top: 10px;
	display: inline-block;
}

.main-btn a:hover {
	opacity: 0.8;
}

.pas-area3 p a {
	color: #8BB600;
}

.footer-area {
	padding: 30px 0;
}

.footer-text {
	text-align: center;
}

.footer-text p {
	font-size: 11px;
	font-weight: 400;
	padding-bottom: 20px;
	border-bottom: 1px solid  #dee2e6;
	color:  #212529;
}

.footer-nav ul {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	padding-top: 20px;
}

.footer-nav ul li {
	padding: 0 10px;
}

.footer-nav ul li a {
	font-family: 'Montserrat', sans-serif;
	font-size: 0.70em;
	letter-spacing: 0.03em;
	color:  #333;
	text-transform: uppercase;
	transition: 0.2s;
}

.footer-nav ul li a:hover {
	opacity: 0.7;
}

.byp-area {
	padding: 0 0 80px;
}

.byp-top-1 {
	max-width: 870px;
	margin: 0 auto;
	padding-bottom: 100px;
}

.byp-top {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	grid-gap: 20px;
}

.byp-top-cnt {
	box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
	border: 2px solid #198754;
	border-radius: 15px;
	min-height: 190px;
	position: relative;
}

.byp-top-cnt2 {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

.byp-top-cnt2 h5 {
	position: absolute;
	border: 5px solid red;
	border-radius: 10px;
	color: red;
	font-weight: 700;
	padding: 12px 10px;
	font-size: 40px;
	transform: rotate(-25deg);
	opacity: .2;
	width: 90%;
	line-height: 1;
	text-transform: uppercase;
	text-align: center;
}

.byp-top-cnt h3 {
	font-size: 20px;
	font-weight: 700;
	text-transform: uppercase;
	background-color: #198754;
	text-align: center;
	padding: 8px;
	color: #ffffff;
	border-radius: 12px 12px 0 0;
}

.byp-top-cnt h2 {
	text-align: center;
	text-transform: uppercase;
	font-size: 30px;
	font-weight: 700;
	color: #000000;
	margin: 0;
	padding-top: 30px;
}

.byp-top-cnt p {
	text-align: center;
	font-size: 25px;
	font-weight: 500;
	color: #212529;
	margin: 0;
	padding-bottom: 20px;
}

.byp-top-cnt2 {
	border: 2px solid #dc3545;
}

.pas-main2 p {
	font-size: 20px;
	font-weight: 400;
	color: #000000;
	line-height: 35px;
	margin-bottom: 25px;
}

.pas-main2 .pas-title h2 {
	margin-bottom: 30px;
}

.pas-main2 ul {
	padding-left: 30px;
}

.pas-main2 ul li {
	list-style-type: disc;
	font-size: 20px;
	font-weight: 400;
	color: #000000;
	line-height: 35px;
	margin-bottom: 25px;
}

.pas-area01 {
	background-color: #F4F4F4;
}
