/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
	box-sizing: border-box;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}

body {
	line-height: 1;
	min-height: 100vh;
}

ol,
ul {
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

.container {
	max-width: 1200px;
	width: 100%;
	margin: 0 auto;
}

.img-fluid {
	max-width: 100%;
	height: 100%;
	display: block;
}

a {
	text-decoration: none;
	color: inherit;
	font: inherit;
}

.w-100 {
	width: 100%;
}

.w-75 {
	width: 75%;
}

.w-50 {
	width: 50%;
}

.w-25 {
	width: 25%;
}

.text-center {
	text-align: center !important;
}

.text-left {
	text-align: left !important;
}

.text-right {
	text-align: right !important;
}

.whiteColor {
	color: #fff !important;
}

.heading-1 {
	font-family: 'GothamBold';
	color: #000;
	text-transform: uppercase;
	font-size: 24px;
	text-align: center;
}

.heading-2 {
	font-family: 'GothamBold';
	color: #000;
	text-transform: uppercase;
	font-size: 18px;
	text-align: center;
}

.heading-big {
	font-family: 'GothamBook';
	color: #000;
	text-transform: uppercase;
	font-size: 50px;
	text-align: center;

}

.underline-link {
	text-align: center;
	font-family: 'GothamBold';
	font-size: 12px;
	color: #A02522;
	text-transform: uppercase;
	display: inline-flex;
	padding: 5px 3px;
	border: 0;
	background: transparent;
	border-bottom: 2px solid #A02522;
	cursor: pointer;
	z-index: 1;
	position: relative;
	transition: all 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.underline-link:before {
	content: "";
	background: #A02522;
	width: 100%;
	height: 0;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: -1;
	transition: all 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.underline-link:hover:before {
	height: 100%;
	transition: all 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.underline-link:hover {
	color: #fff;
	transition: all 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.underline-link.white-link {
	color: #fff;
	border-color: #fff;
}

.underline-link.white-link:hover {
	color: #A02522;
}

.underline-link.white-link:before {
	background: #fff;
}

.underline-div {
	padding-bottom: 30px;
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.underline-div:before {
	content: "";
	position: absolute;
	bottom: 0;
	width: 0;
	height: 1px;
	left: 0;
	right: 0;
	margin: 0 auto;
	background: #707070;
	transition: all 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.underline-div.aos-animate:before {
	width: 140px;
	transition: all 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
	transition-delay: 1s !important;
}

.underline-div h3 {
	width: 100%;
}

.underline-div .underline-link {
	margin-top: 15px;
}

.nounderline-div:before {
	opacity: 0;
}

.swiper-button {
	position: relative !important;
	width: 18px !important;
	height: 36px !important;
	margin: 0 auto !important;
	top: auto !important;
	right: auto !important;
	left: auto !important;
}

.swiper-button:after,
.swiper-button:before {
	content: "" !important;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
	background: #000;
	width: 1px;
	height: calc(50% + 3px);
	transform-origin: bottom center;
	transform: rotate(-35deg);
	transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.swiper-button:after {
	transform: rotate(35deg);
	transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.swiper-button:hover:before {
	transform: rotate(-45deg);
	transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.swiper-button:hover:after {
	transform: rotate(45deg);
	transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.swiper-pagination {
	min-height: 150px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	left: 0 !important;
	right: 0 !important;
	margin: 20px 0 0;
	position: relative !important;
}

.circleDiv {
	content: "";
	position: absolute;
	top: 0%;
	transform: translateX(-50%);
	left: 50%;
	margin: 0 auto;
	width: 40px;
	height: 40px;
	border: 1px solid rgba(0, 0, 0, 0.2);
	transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	border-radius: 50%;
	z-index: 0;
}

.swiper-pagination span {

	margin: 6px 0 !important;
	display: flex;
	opacity: 1 !important;
	transition: all 0.5s cubic-bezier(0.745, 0.065, 0.17, 1);
	position: relative;
	width: 100%;
	border-radius: 50%;
	background: transparent !important;
}

.swiper-pagination span:before {
	content: "";
	width: 2px;
	height: 2px;
	border-radius: 50%;
	background: #000;
	transition: all 0.5s cubic-bezier(0.745, 0.065, 0.17, 1);
	position: absolute;
	left: 0;
	right: 0;
	margin: 0 auto;
	top: 50%;
	transform: translateY(-50%);
}

.swiper-pagination span.swiper-pagination-bullet-active {
	margin: 16px 0 !important;
	transition: all 0.5s cubic-bezier(0.745, 0.065, 0.17, 1);
}

.swiper-pagination span.swiper-pagination-bullet-active:before {
	transition: all 0.5s cubic-bezier(0.745, 0.065, 0.17, 1);
	width: 4px;
	height: 4px;
}

.swiper-pagination span.swiper-pagination-bullet-active:nth-child(2)~.circleDiv {
	transform: translate(-50%, 20px);
}

.swiper-pagination span.swiper-pagination-bullet-active:nth-child(3)~.circleDiv {
	transform: translate(-50%, calc(20px*2));
}

.swiper-pagination span.swiper-pagination-bullet-active:nth-child(4)~.circleDiv {
	transform: translate(-50%, calc(20px*3));
}

.swiper-pagination span.swiper-pagination-bullet-active:nth-child(5)~.circleDiv {
	transform: translate(-50%, calc(20px*4));
}

.swiper-pagination span.swiper-pagination-bullet-active:nth-child(6)~.circleDiv {
	transform: translate(-50%, calc(20px*5));
}

.swiper-pagination span.swiper-pagination-bullet-active:nth-child(7)~.circleDiv {
	transform: translate(-50%, calc(20px*6));
}

.swiper-pagination span.swiper-pagination-bullet-active:nth-child(8)~.circleDiv {
	transform: translate(-50%, calc(20px*7));
}

.swiper-pagination span.swiper-pagination-bullet-active:nth-child(9)~.circleDiv {
	transform: translate(-50%, calc(20px*8));
}

.swiper-pagination span.swiper-pagination-bullet-active:nth-child(10)~.circleDiv {
	transform: translate(-50%, calc(20px*9));
}

.swiper-pagination span.swiper-pagination-bullet-active:nth-child(11)~.circleDiv {
	transform: translate(-50%, calc(20px*10));
}

.swiper-pagination span.swiper-pagination-bullet-active:nth-child(12)~.circleDiv {
	transform: translate(-50%, calc(20px*11));
}

.swiper-pagination span.swiper-pagination-bullet-active:nth-child(13)~.circleDiv {
	transform: translate(-50%, calc(20px*12));
}

.swiper-pagination span.swiper-pagination-bullet-active:nth-child(14)~.circleDiv {
	transform: translate(-50%, calc(20px*13));
}

span.swiper-pagination-bullet-active:nth-child(15)~.circleDiv {
	transform: translate(-50%, calc(20px*14));
}

.swiper-pagination.horizontal .circleDiv {
	top: 50%;
	transform: translate(0, -50%);
	left: 0;
}

.swiper-pagination.horizontal {
	min-height: auto;
	flex-wrap: nowrap;
	display: inline-flex;
	width: fit-content !important;
	left: 0 !important;
	right: 0 !important;
	bottom: 20vh !important;
	margin: 0 auto !important;
}

.swiper-pagination.horizontal span {
	width: auto;
	margin: 0 10px !important;
}

.swiper-pagination.horizontal span:before {
	left: -2px;
}

.swiper-pagination.horizontal span.swiper-pagination-bullet-active {
	margin: 0 20px !important;
}

.swiper-pagination.horizontal span.swiper-pagination-bullet-active:nth-child(2)~.circleDiv {
	transform: translate(calc(20px*1), -50%);
}

.swiper-pagination.horizontal span.swiper-pagination-bullet-active:nth-child(3)~.circleDiv {
	transform: translate(calc(20px*2), -50%);
}

.swiper-pagination.horizontal span.swiper-pagination-bullet-active:nth-child(4)~.circleDiv {
	transform: translate(calc(20px*3), -50%);
}

.swiper-pagination.horizontal span.swiper-pagination-bullet-active:nth-child(5)~.circleDiv {
	transform: translate(calc(20px*4), -50%);
}

.swiper-pagination.horizontal span.swiper-pagination-bullet-active:nth-child(6)~.circleDiv {
	transform: translate(calc(20px*5), -50%);
}

.swiper-pagination.horizontal span.swiper-pagination-bullet-active:nth-child(7)~.circleDiv {
	transform: translate(calc(20px*6), -50%);
}

.swiper-pagination.horizontal span.swiper-pagination-bullet-active:nth-child(8)~.circleDiv {
	transform: translate(calc(20px*7), -50%);
}

.swiper-pagination.horizontal span.swiper-pagination-bullet-active:nth-child(9)~.circleDiv {
	transform: translate(calc(20px*8), -50%);
}

.swiper-pagination.horizontal span.swiper-pagination-bullet-active:nth-child(10)~.circleDiv {
	transform: translate(calc(20px*9), -50%);
}

.closed-btn {
	width: 40px;
	height: 40px;
	position: relative;
	cursor: pointer;
}

.closed-btn:before,
.closed-btn:after {
	content: "";
	position: absolute;
	top: 0;
	transform-origin: center;
	width: 1px;
	height: 100%;
	background: #000;
	transform: rotate(-45deg);
	left: 0;
	right: 0;
	margin: 0 auto;
}

.closed-btn:after {
	transform: rotate(45deg);
}

.borderPlainBtn {
	border: 1px solid rgba(112, 112, 112, 0.3);
	padding: 13px 10px;
	min-width: 112px;
	font-size: 10px;
	color: #000 !important;
	transition: all 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
	font-family: 'GothamBold';
}

.borderPlainBtn:hover {
	transition: all 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
	background: #A02522;
	color: #fff !important;
	border-color: #A02522;
}

.solidBtn {
	min-width: 180px;
	background: #000;
	padding: 15px;
	font-family: 'GothamBold';
	font-size: 12px;
	list-style: 12px;
	text-transform: uppercase;
	color: #fff;
	transition: all 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.solidBtn:hover {
	transition: all 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
	background: #A02522;
	color: #fff;
}

.d-none {
	display: none !important;
}

.m-0 {
	margin: 0 !important;
}

.mt-0 {
	margin-top: 0 !important;
}

.mb-0 {
	margin-bottom: 0 !important;
}

.ml-0 {
	margin-left: 0 !important;
}

.mr-0 {
	margin-right: 0 !important;
}

.b-0 {
	border: 0 !important;
}

.bt-0 {
	border-top: 0 !important;
}

.bb-0 {
	border-bottom: 0 !important;
}

.bl-0 {
	border-left: 0 !important;
}

.br-0 {
	border-right: 0 !important;
}

input[type="number"] {
	appearance: none !important;
	-moz-appearance: none !important;
	-webkit-appearance: none !important;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
	display: none;
}

.bg-color:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: transparent linear-gradient(225deg, #F2F2F2 0%, #FFFFFF 50%, #F2F2F2 100%) 0% 0% no-repeat padding-box;
	opacity: 0.6;
}

@media screen and (min-width : 767px) {
	.desk-none{
		display: none !important;
	}
}
@media screen and (max-width : 767px) {
	.m-none{
		display: none !important;
	}
	.heading-1 {
		font-size: 20px;
	}

	.heading-big {
		font-size: 32px;
	}

	.container {
		max-width: 90%;
	}

	.underline-div {
		padding-bottom: 20px;
	}

	.closed-btn {
		width: 25px;
		height: 25px;
	}

	/* .swiper-pagination span {
		margin: 3px 0 !important;
	}
.swiper-pagination span:after {
		width: 25px;
		height: 25px;
	}

	.swiper-pagination span.swiper-pagination-bullet-active {
		margin: 10px 0 !important;
	} */
}