@charset "utf-8";

* {
	margin: 0;
	padding: 0;
	outline: 0 !important
}

:root {
	--first-color: #cc9036;
	--second-color: #111;
	--white-color: #fff;
	--gray-color: #e726301a;
	/* --gray-color: #fff9f9; */
	--red-bg-color: rgba(231, 38, 48, 0.1);
	--primary-font-family: 'Varela Round', sans-serif;
	--secondary-font-family: 'Jost', sans-serif;
}

body {
	margin: 0.1px auto 0;
	padding: 0;
	color: var(--third-color);
	font-size: 16px;
	width: 100%;
	font-weight: 400;
	background-color: #fff;
	overflow-x: hidden;
	font-family: var(--primary-font-family);

}

::-moz-selection {
	color: var(--white-color);
	background: var(--first-color)
}

::selection {
	color: var(--white-color);
	background: var(--first-color)
}


h1,
h2,
h3,
h4,
h5,
h6 {
	color: var(--second-color);
	font-family: var(--secondary-font-family);
}

p {
	margin: 0 0 8px;
}

p,
ul li {
	font-size: 16px;
	line-height: 28px;
	color: var(--second-color);
}

ol,
ul {
	padding-left: 0;
	color: var(--second-color);
}



.navbar-toggler:focus {
	box-shadow: none;
}

a,
button,
input[type=submit] {
	color: var(--first-color);
	text-decoration: none;
	cursor: pointer;
	display: inline-block;
	-webkit-transition: .3s all ease-in-out;
	transition: .3s all ease-in-out
}

a:focus,
a:hover,
button:focus,
button:hover {
	color: var(--second-color);
	text-decoration: none;
	outline: 0 !important;
}



.scroll-to-top {
	position: fixed;
	right: 20px;
	bottom: 20px;
	cursor: pointer;
	-webkit-transition: .5s easeIn;
	transition: .3s all;
	opacity: 0;
	z-index: 99;
	transform-origin: bottom center;
	transform: rotate(-90deg) scale(0) translateX(85px);
	width: 50px;
	height: 50px;
	display: inline-block;
	background-color: var(--first-color);
	border-radius: 50%;
	padding: 0;
	text-align: center;
	line-height: 50px;
	color: var(--white-color);
	font-size: 25px;
	box-shadow: 0 5px 25px rgb(0 0 0 / 20%);
}

.scroll-to-top.fade.in {
	opacity: 1;
	transform: rotate(0) scale(1) translateX(0)
}

.scroll-to-top:hover {
	color: var(--white-color);
	background-color: var(--second-color);
}

.btn-main {
	display: inline-block;
	text-align: center;
	font-size: 15px;
	line-height: 25px;
	font-weight: 500;
	color: var(--white-color);
	background-color: var(--second-color);
	padding: 10px 15px;
	min-width: 160px;
	border-radius: 5px;
	border: none;
	-webkit-transition: 0.3s all ease-in-out;
	transition: 0.3s all ease-in-out;
	overflow: hidden;
}

.btn-main:hover,
.btn-main:focus {
	color: var(--white-color);
	background-color: var(--first-color);
	border-color: var(--first-color);
}

.btn-red {
	border-color: var(--first-color);
	background-color: var(--first-color);
}

.btn-red:hover {
	border-color: var(--second-color);
	background-color: var(--second-color);
}

.bdr-btn {
	color: var(--second-color);
	background-color: transparent;
}

.btn-main {
	text-transform: none;
}

.btn-main i:first-child {
	transform: translateX(-55px);
	opacity: 0;
	width: 0;
}

.btn-main:hover i:first-child {
	width: auto;
	padding-right: 5px;
	transform: translateX(0);
	opacity: 1;
}

.btn-main:hover i,
.btn-main i {
	-webkit-transition: 0.3s all ease-in-out;
	transition: 0.3s all ease-in-out;
	font-weight: 300;
}

.btn-main i:last-child {
	padding-left: 5px;
}

.btn-main:hover i:last-child {
	width: 0;
	padding-left: 0;
	transform: translateX(55px);
	opacity: 0;
}


.navigation-area {
	position: sticky;
	/* position: absolute; */
	width: 100%;
	top: 0;
	left: 0;
	z-index: 99;
	-webkit-animation-duration: .5s;
	animation-duration: .5s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-transition: 0.3s all ease-in-out;
	transition: 0.3s all ease-in-out;
	box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.08);

}

.navigation-area.menu-fix {
	animation-name: fadeInDown;
	animation-fill-mode: none;
	background-color: #fff;
}

.logo-sec {
	padding: 8px 0;
}

.logo-sec img {
	-webkit-animation-duration: .6s;
	animation-duration: .6s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	animation-name: fadeInDown;
	animation-fill-mode: none;
	width: 200px;
}

.menu-fix .logo-sec img {
	-webkit-animation-duration: .8s;
	animation-duration: .8s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	animation-name: fadeInUp;
	animation-fill-mode: none;
}

@-webkit-keyframes fadeInDown {
	from {
		opacity: 0;
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0)
	}

	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
}

@keyframes fadeInDown {
	from {
		opacity: 0;
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0)
	}

	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
}

.navigation-area.menu-fix {
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 999;
}


.top-header {
	background-color: var(--first-color);
	padding: 5px 0;
	-webkit-transition: 0.1s all ease-in-out;
	transition: 0.1s all ease-in-out;
}

.offer-828-bar {
	position: relative;
	background-color: var(--second-color);
}

.marquee {
	display: inline-block;
	color: #fff;
	margin: 0;
	text-align: center;
	animation: grow;
	animation-duration: 1.7s;
	animation-iteration-count: infinite;
	font-size: 15px;
	line-height: 25px;
	font-weight: 400;
	padding: 5px 0;
}

.offer-828-bar a {
	text-decoration: underline;
	padding: 0 5px;
	font-weight: 800;
}

@keyframes grow {
	0% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.02);
	}

	100% {
		transform: scale(1);
	}
}

@keyframes move {
	0% {
		left: 0;
		opacity: 0;
	}

	5% {
		opacity: 0.0;
	}

	48% {
		opacity: 0.4;
	}

	80% {
		opacity: 0.0;
	}

	100% {
		left: 82%;
	}
}

.offer-828-bar:after {
	content: '';
	position: absolute;
	opacity: 0;
	top: 0;
	left: 0;
	background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.05) 1%, rgba(255, 255, 255, 0.8) 30%, rgba(255, 255, 255, 0.95) 50%, rgba(255, 255, 255, 0.95) 70%, rgba(255, 255, 255, 0.85) 71%, rgba(255, 255, 255, 0) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffffff', endColorstr='#00ffffff', GradientType=1);
	width: 15%;
	height: 100%;
	transform: skew(-10deg, 0deg);
	animation: move 2s;
	animation-iteration-count: infinite;
	animation-delay: 2s;
}

.menu-fix .top-header {
	max-height: 0;
	overflow: hidden;
	padding: 0;
}

.top-links {
	color: var(--white-color);
	font-size: 14px;
	line-height: 24px;
	margin: 0 10px 0 0;
	font-weight: 500;
}

.top-links i {
	margin: 0 5px 0 0;
}

.top-icons.top-call-btn {
	text-align: right;
}

.menu-block {
	background-color: rgba(255, 255, 255, 0.9);
	padding: 0px 0;

}

.menu-fix .menu-block {
	background-color: #fff;
}

.menu-sec {
	display: flex;
	justify-content: flex-end;
}

nav.navbar.navbar-expand-xl {
	padding: 0;
}

.navbar-expand-lg .navbar-nav {
	justify-content: flex-end;

}

.offcanvas-start {
	width: 100%;
}

.navbar-nav {
	justify-content: flex-end;
	align-items: center;
}

.nav-item {
	margin: 0 0 0 10px;
}

.nav-link {
	font-size: 16px;
	color: var(--second-color);
	line-height: 25px;
	padding: 15px 25px;
	font-weight: 500;
	position: relative;
	-webkit-transition: 0.3s all ease-in-out;
	transition: 0.3s all ease-in-out;
}

.nav-link:hover,
.nav-link:focus {
	color: var(--first-color);
	animation: toBottomFromTop10 0.3s forwards;
}


@keyframes toBottomFromTop10 {
	49% {
		-webkit-transform: translateY(-10%);
		-ms-transform: translateY(-10%);
		transform: translateY(-10%);
	}

	50% {
		opacity: 0;
		-webkit-transform: translateY(10%);
		-ms-transform: translateY(10%);
		transform: translateY(10%);
	}

	51% {
		opacity: 1;
	}
}

/* .nav-link.active::before {
	position: absolute;
	content: "";
	bottom: -12px;
	left: 0;
	width: 100%;
	border-bottom: 3px solid var(--second-color);
} */

.dropdown-toggle::after {
	content: none;
}

.nav-link.btn-main {
	color: #fff;
	padding: 10px 15px;
	animation: none;
	overflow: hidden;
}

@media(max-width:1400px) {
	.nav-link.active::before {
		bottom: -6px;
	}
}

@media(min-width:1200px) {
	.dropdown-menu {
		display: block;
		width: 300px;
		opacity: 0;
		visibility: hidden;
		transform: translateX(-30px);
		background-color: var(--white-color);
		-webkit-transition: 0.3s all ease-in-out;
		transition: 0.3s all ease-in-out;
		padding: 15px 15px;
		border-top: 3px solid var(--first-color);
	}

	.nav-item:hover .dropdown-menu {
		opacity: 1;
		visibility: visible;
		transform: translateX(0%);
	}
}

.dropdown-item {
	color: var(--second-color);
	background-color: transparent;
	border-bottom: 1px solid #fff;
	padding: 0 0 10px;
}




.dropdown-item:hover,
.dropdown-item:active {
	color: var(--first-color);
	background-color: transparent;
	padding-left: 5px !important;
}

.dropdown-menu li:last-child .dropdown-item {
	border-bottom: none;
}

@media(min-width:1200px) {
	.dropdown-menu li:last-child a {
		padding: 0;
	}
}

@media(max-width:1199px) {

	#hamburger {
		background-color: transparent;
		border: none;
		cursor: pointer;
		padding: 0;
		box-shadow: none;
	}

	#hamburger .line {
		fill: none;
		stroke: var(--first-color);
		stroke-width: 6;
		transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1), stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
	}

	#hamburger .line1 {
		stroke-dasharray: 60 207;
		stroke-width: 6;
	}

	#hamburger .line2 {
		stroke-dasharray: 60 60;
		stroke-width: 6;
	}

	#hamburger .line3 {
		stroke-dasharray: 60 207;
		stroke-width: 6;
	}

	#hamburger.open .line1 {
		stroke-dasharray: 90 207;
		stroke-dashoffset: -134;
		stroke-width: 6;
	}

	#hamburger.open .line2 {
		stroke-dasharray: 1 60;
		stroke-dashoffset: -30;
		stroke-width: 6;
	}

	#hamburger.open .line3 {
		stroke-dasharray: 90 207;
		stroke-dashoffset: -134;
		stroke-width: 6;
	}

	button#hamburger {
		display: inline-block;
	}

	.offcanvas-start {
		width: 260px;
		background-color: var(--first-color);
		border-right: none;
	}

	.nav-item {
		padding: 0 10px;
		border-bottom: 1px solid #fff;
		margin: 0;
	}

	.navbar-nav {
		align-items: unset;
	}

	.nav-link {
		color: var(--white-color);
		margin: 0 10px;
	}

	.nav-link.active::before {
		content: none;
	}

	.menu-arrow {
		display: inline-block;
		position: absolute;
		top: 3px;
		right: 10px;
		width: 43px;
		line-height: 39px;
		background-color: #fff;
		color: var(--first-color);
		text-align: center;
		font-size: 16px;
		/* z-index: 99; */
	}

	.dropdown .menu-arrow i {
		transform: rotate(0deg);
		-webkit-transition: 0.3s all ease-in-out;
		transition: 0.3s all ease-in-out;
		display: inline-block;
	}

	.menu-arrow.show i {
		transform: rotate(45deg);
	}

	.dropdown-menu {
		max-height: 0px;
		visibility: hidden;
		opacity: 0;
		overflow: visible;
		transform: none;
		-webkit-transition: 0.3s all ease-in-out;
		transition: 0.3s all ease-in-out;
		padding: 0;
		display: block;
		background-color: var(--second-color);
	}

	.dropdown-menu.show {
		max-height: 500px;
		visibility: visible;
		opacity: 1;
	}

	.dropdown-item {
		color: var(--white-color);
		padding: 8px 12px;
		border-bottom: 1px solid var(--second-color);
	}

	.navbar-expand-xl .navbar-nav .dropdown-menu li {
		padding: 0 15px;
	}

	.nav-item:last-child {
		border-bottom: none;
		padding: 15px 0 0 0;
	}
}

.section-divider {
	margin: 0 0 60px;
}


/****footer******/
.footer-sec {
	padding: 120px 0 40px;
	background-color: rgb(229 186 19 / 21%);
	position: relative;
}

.footer-logo img {
	width: 200px;
}

.footer-left-block p {
	color: var(--second-color);
}

.footer-head {
	font-size: 22px;
	line-height: 32px;
	color: var(--first-color);
	margin: 0px 0 20px;
	font-weight: 600;
}

.useful-links li {
	list-style-type: none;
	margin-bottom: 5px;
	display: flex;
	align-items: center;
	position: relative;
	padding: 0 0 0 15px;
	overflow: hidden;
	-webkit-transition: 0.3s all ease-in-out;
	transition: 0.3s all ease-in-out;

}

.useful-links li:before {
	content: "";
	position: absolute;
	font-family: 'Font Awesome 6 Pro';
	left: 0;
	color: var(--second-color);
	font-size: 15px;
}

.useful-links li:after {
	content: "";
	position: absolute;
	font-family: 'Font Awesome 6 Pro';
	left: 8px;
	color: var(--first-color);
	font-size: 16px;
	-webkit-transform: translatex(-20px);
	transform: translatex(-20px);
	-webkit-transition: 0.3s all ease-in-out;
	transition: 0.3s all ease-in-out;
}

.footer-links.useful-links.adderess li,
.footer-links.useful-links.adderess li {
	padding: 0;
}

.footer-links.useful-links.adderess li:before,
.footer-links.useful-links.adderess li:after {
	content: none;
}

.useful-links li:hover:after {
	-webkit-transform: translatex(0px);
	transform: translatex(0px);
}

.useful-links li:hover {
	padding: 0px 0 0 20px;
}

.social-links {
	display: flex;
	justify-content: flex-start;
}

.social-links a {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: transparent;
	font-size: 14px;
	color: var(--second-color);
	border: 1px solid var(--second-color);
	-webkit-transition: 0.3s all ease-in-out;
	transition: 0.3s all ease-in-out;
}

.social-links a:hover {
	background-color: var(--first-color);
	color: var(--white-color);
	border: 1px solid var(--first-color);
	animation: toBottomFromTop10 0.3s forwards;
}





.footer-links li a,
.footer-links li p {
	display: flex;
	align-items: baseline;
	color: var(--second-color);
	font-size: 14px;
	line-height: 24px;
}

.footer-links li a:hover {
	color: var(--first-color);
}

.footer-bg a,
.footer-bg p {
	color: #fff;
	font-size: 14px;
	line-height: 25px;
}

.footer-links li i {
	margin-right: 8px;
}

.copyright-bg {
	background-color: var(--second-color);
	padding: 20px 0;
}

.copyright-bg p {
	color: #fff;
	font-size: 14px;
	line-height: 24px;
}

.copyright-bg a {
	-webkit-transition: 0.3s all ease-in-out;
	transition: 0.3s all ease-in-out;

}

.copyright-bg a:hover {
	text-decoration: underline;
	color: var(--white-color);
	font-style: italic;

}

.copyright-r {
	text-align: right;
}

@media(max-width:1024px) {


	.footer-left-block {
		display: flex;
		align-items: center;
		margin: 0 0 30px;
		justify-content: center;
		border-bottom: 1px solid var(--first-color);
		padding: 0 0 30px;
	}

	.footer-logo {
		margin: 0 50px 0 0px;
	}

	.footer-sec {
		padding: 80px 0 40px;
	}
}

@media(max-width:990px) {
	.footer-left-block {
		text-align: center;
		margin: 0 0 25px;
	}

	.footer-head {
		margin: 20px 0 10px !important;
	}

	.footer-logo {
		text-align: left;
	}


}

@media(max-width:767px) {
	.marquee {
		font-size: 12px;
		line-height: 22px;
	}

	.copyright-l {
		text-align: center;
	}

	.copyright-r {
		text-align: center;
		margin: 5px 0 0;
	}

	.gray-bg {
		padding: 30px 0;
	}

	.section-divider {
		margin: 0 0 40px;
	}

	.logo-sec img {
		width: 150px;
	}

	.footer-head {
		text-align: center;
	}

	.footer-links li {
		justify-content: center;
	}

	.footer-links.useful-links {
		margin: 0;
	}

	.footer-links li a {
		flex-direction: column;
		align-items: center;
	}

	.footer-links li i {
		margin: 10px 0;
	}

	.footer-links.useful-links li a {
		flex-direction: row;
	}

	.footer-links.useful-links li a i {
		margin: 0 8px 0 0;
	}

	.footer-links.useful-links {
		margin: 0;
		justify-content: center;
		display: flex;
		flex-direction: column-reverse;
		align-items: center;
	}

	.footer-logo {
		text-align: center;
	}

	.social-links {
		justify-content: center;
	}

	.footer-logo {
		margin: 0;
	}
}



.repubadge {
	border: 1px solid #eee;
	padding: 0px 15px;
	background-color: #fff;
	margin: 20px 0 0;
	width: 320px;
}

.repubadge a {
	margin-right: 15px;
}

.repubadge p {
	margin: 0;
	font-size: 16px;
}

.repubadge p i {
	color: #ff9300;
}







/*****wow-animation-css***/
.custom-wow {
	visibility: hidden;
	opacity: 0;
}

.custom-wow.animated {
	visibility: visible;
	opacity: 1;
	-webkit-transition: 0.3s all ease-in-out;
	transition: 0.3s all ease-in-out;
}

.custom-wow.animated.fadeInUp {
	-webkit-animation-name: fadeInUp;
	animation-name: fadeInUp;
}

.custom-wow.animated.fadeInRight {
	-webkit-animation-name: fadeInRight;
	animation-name: fadeInRight;
}

.custom-wow.animated.fadeInLeft {
	-webkit-animation-name: fadeInLeft;
	animation-name: fadeInLeft;
}

.custom-wow.animated.fadeInDown {
	-webkit-animation-name: fadeInDown;
	animation-name: fadeInDown;
}

@-webkit-keyframes fadeInUp {
	from {
		opacity: 0;
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0)
	}

	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0)
	}

	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
}

@-webkit-keyframes fadeInDown {
	from {
		opacity: 0;
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0)
	}

	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
}

@keyframes fadeInDown {
	from {
		opacity: 0;
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0)
	}

	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
}

@-webkit-keyframes fadeInRight {
	from {
		opacity: 0;
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0);
	}

	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

@keyframes fadeInRight {
	from {
		opacity: 0;
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0);
	}

	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

@-webkit-keyframes fadeInLeft {
	from {
		opacity: 0;
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
	}

	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

@keyframes fadeInLeft {
	from {
		opacity: 0;
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
	}

	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

.animated {
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

.animated.delay-1s {
	-webkit-animation-delay: 1s;
	animation-delay: 1s
}

.animated.delay-1-2s {
	-webkit-animation-delay: 1.2s;
	animation-delay: 1.2s
}

.animated.delay-1-4s {
	-webkit-animation-delay: 1.4s;
	animation-delay: 1.4s
}

.animated.delay-1-6s {
	-webkit-animation-delay: 1.6s;
	animation-delay: 1.6s
}