

@import url('https://fonts.googleapis.com/css2?family=Lobster&family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&family=Orelega+One&family=Roboto+Slab:wght@100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');




/* Varialbes */
:root {
	--font-default: 'Roboto Slab', sans-serif;
	--font-heading:'Roboto Slab', sans-serif;
	--font-secondary: 'Manrope', sans-serif;
	--fontawesome: "Font Awesome 5 Pro";
	--black: #000000;
	--dark: #1D2027;
	--dark-secondary: #022b6d;
	--dark-optional: #3e00a7;
	--white: #ffffff;
	
	--color-secondary: #0b57e3;
	--color-optional: #57B33E;
	--color-heading: #0e0e0e;
	--color-paragraph: #666666;
	--box-shadow-primary: -1px 3px 10px 0 rgba(0, 0, 0, 0.6);
	--box-shadow-secondary: 0 10px 30px 0 rgba(44, 130, 237, 0.4);
	--box-shadow-regular: 0px 2px 12px 0px #e7e7e7;
	--bg-gray: #F7F7F7;

}



/* ============================================================== 
     # Reset Browsers
=================================================================== */

* {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	
}

body,
html {
	height: 100%;
	overflow-x: hidden;
}

html {
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
	scroll-behavior: smooth;
}

html, body, div, span, img,
ol, ul, li, a, p, h1, h2, h3,
h4, h5, h6, option, legend, label,
table, th, td, tr, article, aside,
caption, figure, footer, header, hgroup,
mark, nav, section, time, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
}

.wrapper {
	height: 100%;
}

.navbar-brand>img {
    display: block;
    /* max-height: 60px; */
    
    right: 65px;
}
label {
	display: inline-block;
	font-weight: normal;
	margin-bottom: 5px;
	max-width: 100%;
}

a {
	outline: none;
	text-decoration: none;
	color:black;
}

a img {
	border: none;
}

a:active {
	outline: none;
	text-decoration: none;
	color: var(--color-heading);
	opacity: 1;
}

a:focus {
	outline: none;
	text-decoration: none;
	color: var(--color-heading);
}

a:hover {
	outline: none;
	text-decoration: none;
	color: var(--color-primary);
	opacity: 1;
}

button {
	outline: medium none;
}

iframe {
	border: none;
}

hr {
	margin-top: 0;
	margin-bottom: 0;
	border: 0;
	border-top: 1px solid #eeeeee;
}

pre {
	display: block;
	margin: 0 0 30px;
	padding: 9.5px;
	word-wrap: break-word;
	word-break: break-all;
	color: #333333;
	border: 1px solid #ededed;
	border-radius: inherit;
	background-color: #f9f9f9;
	font-size: 13px;
	line-height: 1.42857143;
}




ul {
	list-style-type: none;
}

ul, li {
	margin: 0;
	padding: 0;
	list-style: none;
}

b {
	font-weight: 600;
}

strong {
	font-weight: 600;
}

.row {
	--bs-gutter-x: 30px;
}

i::before {
	line-height: inherit !important;
}


/* ============================================================== 
    # Template Default Styles
=================================================================== */

body {
	font-family: var(--font-default);
	font-size: 16px;
	font-weight: 400;
	line-height: 28px;
	overflow-x: hidden;
	background-color: var(--white);
	color: var(--color-paragraph);
}

h1, h2, h3, h4, h5, h6 {
	color: var(--color-heading);
	font-weight: normal;
	line-height: 1.2;
	font-family: var(--font-heading);
	letter-spacing: 0;
	margin: 0;
	margin-bottom: 15px;
}

h1 {
	font-size: 40px;
}

h2 {
	font-size: 36px;
}

h3 {
	font-size: 27px;
}

h4 {
	font-size: 20px;
}

h5 {
	font-size: 18px;
}

h6 {
	font-size: 14px;
}

/* a, .btn, button {
	-webkit-transition: all 0.35s ease-in-out;
	transition: all 0.35s ease-in-out;
	outline: medium none;
	text-decoration: none;
	font-weight: 600;
} */

p {
	color: var(--color-paragraph);
	margin: 0 0 15px;
	text-transform: none;
	font-weight: 400;
	font-family: var(--font-default);
}


/* ============================================================== 
    # Helper CSS
=================================================================== */

@media (min-width: 1250px) {
	.container, 
	.container-lg, 
	.container-md, 
	.container-sm, 
	.container-xl, 
	.container-xxl {
		max-width: 1250px;
	}
}

.container-full {
	padding: 0 15px;
	margin: auto;
	max-width: 1400px;
}

@media (min-width: 576px) {
	.container-full {
		max-width: 540px;
		width: 100%;
	}
}

@media (min-width: 768px) {
	.container-full {
		max-width: 720px;
		width: 100%;
	}
}

@media (min-width: 992px) {
	.container-full {
		max-width: 960px;
		width: 100%;
	}
}

@media (min-width: 1200px) {
	.container-full {
		max-width: 95%;
		width: 95%;
	}
}

.container-fill {
	padding: 0 15px;
	margin: auto;
	max-width: 100%;
}

@media (min-width: 576px) {
	.container-fill {
		max-width: 540px;
		width: 100%;
	}
}

@media (min-width: 768px) {
	.container-fill {
		max-width: 720px;
		width: 100%;
	}
}

@media (min-width: 992px) {
	.container-fill {
		max-width: 960px;
		width: 100%;
	}
}

@media (min-width: 1200px) {
	.container-fill {
		width: 100%;
		max-width: 100%;
	}
}

@media (max-width: 1199px) {
	.container-fill {
		padding: 0 25px;
		width: 100%;
	}
}

@media only screen and (min-width: 1367px) {
	.container-stage {
		margin-left: calc((100% - 1250px)/ 2);
		width: auto;
		min-width: auto;
		max-width: inherit;
		padding-right: 0;
	}
}

@media only screen and (max-width: 767px) {
	.row {
		--bs-gutter-x: 1.5rem;
	}
}

.bg-cover {
	background-position: center center !important;
	background-size: cover !important;
}

.bg-contain {
	background-size: contain !important;
	background-repeat: no-repeat !important;
	background-position: left top !important;
}

.bg-fixed {
	background-attachment: fixed !important;
	background-position: center center !important;
	background-size: cover !important;
}

.bg-fit {
	background-size: 100% 100% !important;
	background-position: center !important;
}

.bg-gray {
	background: var(--bg-gray);
}

.bg-light {
	background-color: var(--white);
}

.bg-dark {
	background-color: var(--dark) !important;
}

.bg-theme {
	background-color: var(--color-primary);
}

.bg-theme-secodnary {
	background-color: var(--color-secondary);
}

.bg-gradient {
	background-color: var(--color-primary);
	background: var(--bg-gradient) !important;
}

.bg-gradient-secondary {
	background-color: var(--color-secondary);
	background: var(--bg-gradient-secondary) !important;
}

.gradient-bg {
	background-color: var(--color-primary);
	background: var(--gradient-bg) !important;
}

.text-light {
	color: var(--white);
}

.text-light h1,
.text-light h2,
.text-light h3,
.text-light h4,
.text-light h5,
.text-light h6,
.text-light p,
.text-light span,
.text-light a {
	color: var(--white);
}

.shadow {
	-webkit-box-shadow: inherit !important;
	box-shadow: inherit !important;
}

.shadow.dark {
	position: relative;
	z-index: 1;
}

.shadow.dark:after {
	background: var(--dark);
	content: "";
	height: 100%;
	left: 0;
	opacity: 0.35;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: -1;
	-webkit-transition: all 0.35s ease-in-out;
	transition: all 0.35s ease-in-out;
}

.shadow.dark-hard {
	position: relative;
	z-index: 1;
}

.shadow.dark-hard:after {
	background: rgba(0, 4, 30, 0) none repeat scroll 0 0;
	content: "";
	height: 100%;
	left: 0;
	opacity: 0.5;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: -1;
	-webkit-transition: all 0.35s ease-in-out;
	transition: all 0.35s ease-in-out;
}

.shadow.theme {
	position: relative;
	z-index: 1;
}

.shadow.theme:after {
	background: var(--color-primary) none repeat scroll 0 0;
	content: "";
	height: 100%;
	left: 0;
	opacity: 0.7;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: -1;
	-webkit-transition: all 0.35s ease-in-out;
	transition: all 0.35s ease-in-out;
}

.shadow.light {
	position: relative;
	z-index: 1;
}

.shadow.light:after {
	background: var(--white) none repeat scroll 0 0;
	content: "";
	height: 100%;
	left: 0;
	opacity: 0.6;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: -1;
	-webkit-transition: all 0.35s ease-in-out;
	transition: all 0.35s ease-in-out;
}

.default-padding,
.default-padding-top,
.default-padding-bottom,
.default-padding-mx {
	position: relative;
}

.default-padding {
	padding-top: 120px;
	padding-bottom: 120px;
}

@media only screen and (max-width: 767px) {
	.default-padding {
		padding-top: 50px;
		padding-bottom: 50px;
	}
}

.default-padding-big {
	padding: 250px 0;
}

@media only screen and (max-width: 767px) {
	.default-padding-big {
		padding: 50px 0;
	}
}

.default-padding-top {
	padding-top: 120px;
}

@media only screen and (max-width: 767px) {
	.default-padding-top {
		padding-top: 50px;
	}
}

.default-padding-bottom {
	padding-bottom: 120px;
}

@media only screen and (max-width: 767px) {
	.default-padding-bottom {
		padding-bottom: 50px;
	}
}

.default-padding.bottom-less {
	padding-top: 120px;
	padding-bottom: 90px;
}

@media only screen and (max-width: 767px) {
	.default-padding.bottom-less {
		padding-top: 50px;
		padding-bottom: 20px;
	}
}

.default-padding-bottom.bottom-less {
	margin-bottom: -30px;
}

@media only screen and (max-width: 767px) {
	.default-padding-bottom.bottom-less {
		margin-bottom: 0;
	}
}

.default-padding-top.bottom-less {
	margin-bottom: -30px;
}

@media only screen and (max-width: 767px) {
	.default-padding-top.bottom-less {
		margin-bottom: -20px;
	}
}

@media only screen and (min-width: 1200px) {
	.align-center {
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}
}

.relative {
	position: relative;
}

.overflow-hidden {
	overflow: hidden;
}

.border-top {
	border-top: 1px solid #e7e7e7;
}

.border-bottom {
	border-bottom: 1px solid #e7e7e7;
}

.border-left {
	border-left: 1px solid #e7e7e7;
}

.border-right {
	border-right: 1px solid #e7e7e7;
}

.heading {
	font-weight: 600;
	margin-bottom: 25px;
	margin-top: -5px;
	font-size: 42px;
	line-height: 1.3;
}

.heading span {
	font-weight: 400;
}

.site-heading {
	margin-bottom: 60px;
}

.title {
	font-weight: 600;
	font-size: 42px;
}

.site-heading .title {
	margin-bottom: 0;
}

.sub-title {
	text-transform: uppercase;
	color: var(--color-primary);
	font-weight: 600;
	background: var(--bg-gradient);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	display: inline-block;
	position: relative;
	z-index: 1;
}

.bg-gradient .sub-title {
	color: var(--white);
	-webkit-background-clip: inherit;
	background-clip: inherit;
	-webkit-text-fill-color: inherit;
	background: transparent;
}

.site-heading p {
	margin-bottom: 0;
	margin-top: 25px;
	padding: 0 10%;
}

.site-heading .devider {
	display: inline-block;
	width: 50px;
	height: 2px;
	background: var(--color-primary);
	position: relative;
	z-index: 1;
	left: 10px;
}

.secondary.site-heading .devider {
	background: var(--color-heading);
}

.site-heading.light .devider,
.bg-theme .site-heading .devider,
.bg-gradient .site-heading .devider,
.shadow .site-heading .devider,
.bg-dark .site-heading .devider {
	background: var(--white);
}

.site-heading .devider:before {
	position: absolute;
	left: -15px;
	top: 0;
	content: "";
	height: 2px;
	width: 10px;
	background: var(--color-primary);
}

.secondary.site-heading .devider:before {
	background: var(--color-heading);
}

.site-heading.light .devider:before,
.bg-theme .site-heading .devider:before,
.bg-gradient .site-heading .devider:before,
.shadow .site-heading .devider:before,
.bg-dark .site-heading .devider:before {
	background: var(--white);
}

@media (max-width: 767px) {
	.site-heading p {
		padding: 0;
	}
}

@media only screen and (max-width: 767px) {
	.site-heading {
		margin-bottom: 30px;
	}
}

.heading-left {
	position: relative;
	z-index: 1;
	margin-bottom: 60px;
}

.heading-left .heading {
	font-weight: 600;
	margin-bottom: 0;
}

@media only screen and (max-width: 767px) {
	.heading-left .heading {
		margin-bottom: 15px;
	}
}

.heading-left p {
	margin-bottom: 0;
}

.heading-left .btn {
	margin-top: 30px;
}

@media only screen and (max-width: 767px) {
	.heading-left {
		margin-bottom: 30px;
	}
}

.bg-dark .heading-left p {
	opacity: 0.8;
}

/* .sub-heading {
	text-transform: uppercase;
	color: var(--color-primary);
	font-weight: 600;
	background: var(--bg-gradient-reverse);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	display: inline-block;
	position: relative;
	z-index: 1;
	margin-bottom: 20px;
} */

/* .secondary .sub-heading,
.secondary.sub-heading,
.bg-dark .secondary.sub-heading {
	background: var(--bg-gradient-secondary);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	font-weight: 600;
} */

.text-center .sub-heading,
.text-center.sub-heading {
	margin-bottom: 15px;
}

.bg-gradient .sub-heading {
	color: var(--white);
	background: transparent;
	-webkit-background-clip: inherit;
	background-clip: inherit;
	-webkit-text-fill-color: inherit;
	opacity: 0.9;
}

.bg-dark .sub-heading {
	background: linear-gradient(90deg, #df0a0a 0%, #7c00ff 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	font-weight: 600;
}

.bg-dark.secondary .sub-heading {
	background: linear-gradient(90deg, #0b57e3 0%, #7c00ff 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	font-weight: 600;
}

.bg-dark .sub-heading.secondary {
	background: transparent;
	-webkit-background-clip: inherit;
	background-clip: inherit;
	-webkit-text-fill-color: inherit;
	color: var(--color-secondary);
}

/* ============================================================== 
    # Video Play Button 
=================================================================== */
.video-play-button {
	display: inline-block;
	background: var(--color-primary);
	height: 60px;
	width: 60px;
	line-height: 60px;
	text-align: center;
	border-radius: 50%;
	color: var(--color-heading);
	position: relative;
}

.video-play-button i {
	font-weight: 400;
	font-size: 20px;
	position: relative;
	left: 3px;
	top: 2px;
}

.video-play-button .effect {
	position: absolute;
	width: 100px;
	height: 100px;
	background: var(--color-primary);
	opacity: 0;
	border-radius: 100%;
	left: 50%;
	top: 50%;
	z-index: -1;
	-webkit-animation: video-play 1500ms ease-out infinite;
	animation: video-play 1500ms ease-out infinite;
}

.video-play-button .effect::after {
	position: absolute;
	content: "";
	width: 70px;
	height: 70px;
	background: var(--color-primary);
	opacity: 0;
	border-radius: 100%;
	left: 50%;
	top: 50%;
	z-index: -1;
	-webkit-animation: video-play 1500ms ease-out infinite;
	animation: video-play 1500ms ease-out infinite;
	-webkit-animation-delay: 2s;
	animation-delay: 2s;
}

.video-play-button .effect::before {
	position: absolute;
	content: "";
	width: 60px;
	height: 60px;
	background: var(--color-secondary);
	opacity: 0;
	border-radius: 100%;
	left: 50%;
	top: 50%;
	z-index: -1;
	-webkit-animation: video-play 1500ms ease-out infinite;
	animation: video-play 1500ms ease-out infinite;
	-webkit-animation-delay: 3s;
	animation-delay: 3s;
}

.video-play-button.with-text {
	width: auto;
	background: transparent;
}

.video-play-button.with-text span {
	position: relative;
	z-index: 1;
}

.video-play-button.with-text span i {
	margin-left: 25px;
	margin-right: 30px;
	color: var(--white);
	left: -1px;
}

.video-play-button.with-text .effect {
	height: 60px !important;
	width: 60px;
	left: 0;
	-webkit-animation: inherit;
	animation: inherit;
	background: var(--color-primary);
	top: 0;
	opacity: 1;
	z-index: 1;
}

.video-play-button.with-text .effect::before {
	display: none;
}

.video-play-button.with-text .effect::after {
	background: var(--color-primary);
	height: 100%;
	width: 100%;
	z-index: inherit;
	-webkit-animation-delay: 0s;
	animation-delay: 0s;
}


/* ============================================================== 
    # Template Animation
=================================================================== */

/* Video Paly */
@-webkit-keyframes video-play {
	0% {
		-webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
		transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
		opacity: 1;
	}

	100% {
		-webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
		transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
		opacity: 0;
	}
}

@keyframes video-play {
	0% {
		-webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
		transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
		opacity: 1;
	}

	100% {
		-webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
		transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
		opacity: 0;
	}
}

/*Zoom Animation */
.zoom-animation {
	-webkit-animation: zoom 2000ms ease-out infinite;
	animation: zoom 2000ms ease-out infinite;
}

/* Slider Zoom Effect */
@-webkit-keyframes zoom {
	from {
		-webkit-transform: scale(1, 1);
	}

	to {
		-webkit-transform: scale(1.2, 1.2);
	}
}

@keyframes zoom {
	from {
		-webkit-transform: scale(1, 1);
		transform: scale(1, 1);
	}

	to {
		-webkit-transform: scale(1.2, 1.2);
		transform: scale(1.2, 1.2);
	}
}

/* Spiner Animation */
.spiner-animation {
	-webkit-animation: spinner 20s infinite linear;
	animation: spinner 20s infinite linear;
}

/*Preloader Spiner Animation */
@-webkit-keyframes spinner {
	to {
		-webkit-transform: rotateZ(360deg);
		transform: rotateZ(360deg);
	}
}

@keyframes spinner {
	to {
		-webkit-transform: rotateZ(360deg);
		transform: rotateZ(360deg);
	}
}


/* Spiner Animation */
.spiner-reverse-animation {
	-webkit-animation: spinnerReverse 20s infinite linear;
	animation: spinnerReverse 20s infinite linear;
}

/*Preloader Spiner Animation */
@-webkit-keyframes spinnerReverse {
	to {
		-webkit-transform: rotateZ(-360deg);
		transform: rotateZ(-360deg);
	}
}

@keyframes spinnerReverse {
	to {
		-webkit-transform: rotateZ(-360deg);
		transform: rotateZ(-360deg);
	}
}

/* Infinite Up Down Animation */
@keyframes UpDown {
	0% {
		-webkit-transform: translateY(0px);
		transform: translateY(0px);
	}

	50% {
		-webkit-transform: translateY(-25px);
		transform: translateY(-25px);
	}

	100% {
		-webkit-transform: translateY(0px);
		transform: translateY(0px);
	}
}

/* Animation UpDown */
.updown-animation {
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	-webkit-animation-timing-function: cubic-bezier(0.54, 0.085, 0.5, 0.92);
	animation-timing-function: cubic-bezier(0.54, 0.085, 0.5, 0.92);
	-webkit-animation-name: UpDown;
	animation-name: UpDown;
	-webkit-animation-duration: 2s;
	animation-duration: 2s;
}

@-webkit-keyframes UpDown {
	0% {
		-webkit-transform: translateY(0px);
		transform: translateY(0px);
	}

	50% {
		-webkit-transform: translateY(-25px);
		transform: translateY(-25px);
	}

	100% {
		-webkit-transform: translateY(0px);
		transform: translateY(0px);
	}
}

/* Animation Left Right */
.leftRight-animation {
	-webkit-animation: fadeLeftRight 10s ease-out infinite;
	animation: fadeLeftRight 10s ease-out infinite;
}

/* Fade Left Right */
@keyframes fadeLeftRight {
	0%, 100% {
		-webkit-transform: translateX(0px);
		transform: translateX(0px);
	}

	50% {
		-webkit-transform: translateX(100px);
		transform: translateX(100px);
	}
}

@-webkit-keyframes fadeLeftRight {
	0%, 100% {
		-webkit-transform: translateX(0px);
		transform: translateX(0px);
	}

	50% {
		-webkit-transform: translateX(100px);
		transform: translateX(100px);
	}
}

/* Animation Right Left */
.rightLeft-animation {
	-webkit-animation: fadeRightLeft 10s ease-out infinite;
	animation: fadeRightLeft 10s ease-out infinite;
}

@keyframes fadeRightLeft {
	0%, 100% {
		-webkit-transform: translateX(0px);
		transform: translateX(0px);
	}

	50% {
		-webkit-transform: translateX(-50px);
		transform: translateX(-50px);
	}
}

@-webkit-keyframes fadeRightLeft {
	0%, 100% {
		-webkit-transform: translateX(0px);
		transform: translateX(0px);
	}

	50% {
		-webkit-transform: translateX(-50px);
		transform: translateX(-50px);
	}
}

/* Animation Zoom Up Down */
.zoomUpDown-animation {
	-webkit-animation: zoomUpDown 10s ease-out infinite;
	animation: zoomUpDown 10s ease-out infinite;
}

/* Zoom Up Down */
@keyframes zoomUpDown {
	0%, 100% {
		-webkit-transform: scale(0.5);
		transform: scale(0.5);
	}

	50% {
		-webkit-transform: scale(0.7);
		transform: scale(0.7);
	}
}

@-webkit-keyframes zoomUpDown {
	0%, 100% {
		-webkit-transform: scale(0.5);
		transform: scale(0.5);
	}

	50% {
		-webkit-transform: scale(0.8);
		transform: scale(0.8);
	}
}

/* Animation Moving */
.moving-animation {
	-webkit-animation: moving 10s ease-out infinite;
	animation: moving 10s ease-out infinite;
}

/* Mooving Animation */
@-webkit-keyframes moving {
	0% {
		-webkit-transform: translate(0px, 0px);
		transform: translate(0px, 0px);
	}

	20% {
		-webkit-transform: translate(0px, -30px);
		transform: translate(0px, -30px);
	}

	50% {
		-webkit-transform: translate(-100px, -30px);
		transform: translate(-100px, -30px);
	}

	70% {
		-webkit-transform: translate(-100px, 0px);
		transform: translate(-100px, 0px);
	}

	100% {
		-webkit-transform: translate(0px, 0px);
		transform: translate(0px, 0px);
	}
}

@keyframes moving {
	0% {
		-webkit-transform: translate(0px, 0px);
		transform: translate(0px, 0px);
	}

	20% {
		-webkit-transform: translate(0px, -30px);
		transform: translate(0px, -30px);
	}

	50% {
		-webkit-transform: translate(-100px, -30px);
		transform: translate(-100px, -30px);
	}

	70% {
		-webkit-transform: translate(-100px, 0px);
		transform: translate(-100px, 0px);
	}

	100% {
		-webkit-transform: translate(0px, 0px);
		transform: translate(0px, 0px);
	}
}

/* Animation Rotation */
@keyframes infinite-rotate {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	50% {
		-webkit-transform: rotate(180deg);
		transform: rotate(180deg);
	}

	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@-webkit-keyframes infinite-rotate {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	50% {
		-webkit-transform: rotate(180deg);
		transform: rotate(180deg);
	}

	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

/* Button Border Animation */
@-webkit-keyframes open {
	0% {
		width: 0;
		height: 0;
	}

	50% {
		width: 100px;
		height: 0;
	}

	100% {
		width: 100px;
		height: 55px;
	}
}

@keyframes open {
	0% {
		width: 0;
		height: 0;
	}

	50% {
		width: 100px;
		height: 0;
	}

	100% {
		width: 100px;
		height: 55px;
	}
}

@-webkit-keyframes openB {
	0% {
		width: 0px;
	}

	100% {
		width: 100px;
	}
}

@keyframes openB {
	0% {
		width: 0px;
	}

	100% {
		width: 100px;
	}
}

/* Animation Shine (A shine color will move inside the text) */

@-webkit-keyframes shine {
	0% {
		background-position: 0;
	}

	60% {
		background-position: 180px;
	}

	100% {
		background-position: 180px;
	}
}

@keyframes shine {
	0% {
		background-position: 0;
	}

	60% {
		background-position: 180px;
	}

	100% {
		background-position: 180px;
	}
}

@-webkit-keyframes infiniteMove {
	0% {
		border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
	}

	50% {
		border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
	}

	100% {
		border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
	}
}

@keyframes infiniteMove {
	0% {
		border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
	}

	50% {
		border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
	}

	100% {
		border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
	}
}

@-webkit-keyframes infiniteMove2 {
	0% {
		border-radius: 60% 30% 70% 40% / 60% 40% 30% 70%;
	}

	50% {
		border-radius: 50% 60% 30% 60% / 30% 60% 70% 40%;
	}

	100% {
		border-radius: 60% 30% 70% 40% / 60% 40% 30% 70%;
	}
}

@keyframes infiniteMove2 {
	0% {
		border-radius: 60% 30% 70% 40% / 60% 40% 30% 70%;
	}

	50% {
		border-radius: 50% 60% 30% 60% / 30% 60% 70% 40%;
	}

	100% {
		border-radius: 60% 30% 70% 40% / 60% 40% 30% 70%;
	}
}

/* ============================================================== 
    # Button Styles
=================================================================== */
.btn {
	display: inline-block;
	font-weight: 500;
	text-transform: capitalize;
	transition: all 0.35s ease-in-out;
	overflow: hidden;
	border-radius: 8px;
	border: 2px solid transparent;
	-webkit-box-shadow: inherit;
	box-shadow: none;
	font-size: 16px;
	letter-spacing: 0;
	padding: 13px 30px;
	background: #E7EDF8;
	position: relative;
	z-index: 1;
}

.btn:focus, .btn.active {
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
	-webkit-box-shadow: inherit;
	box-shadow: inherit;
	border: 2px solid transparent;
}

.btn:hover {
	background-color: var(--color-primary);
	color: var(--white);
}

.btn.radius {
	border-radius: 6px;
}

.btn.btn-border {
	border: 2px solid #e7e7e7;
	background: transparent;
}

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

.btn.btn-border.animation::after {
	position: absolute;
	top: 0;
	right: inherit;
	bottom: inherit;
	left: 0;
	content: "";
	height: 100%;
	width: 0;
	z-index: -1;
	background: #e7e7e7;
	-webkit-transition: all 0.25s ease-in-out;
	transition: all 0.25s ease-in-out;
}

.btn.btn-border.animation:hover {
	border-color: #e7e7e7;
	color: var(--dark);
}

.btn.btn-border.animation:hover::after {
	width: 100%;
}

.btn.btn-border-dark {
	border: 2px solid var(--dark);
	background: transparent;
}

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

.btn.btn-border-dark.animation::after {
	position: absolute;
	top: 0;
	right: inherit;
	bottom: inherit;
	left: 0;
	content: "";
	height: 100%;
	width: 0;
	z-index: -1;
	background: var(--dark);
	-webkit-transition: all 0.25s ease-in-out;
	transition: all 0.25s ease-in-out;
}

.btn.btn-border-dark.animation:hover {
	border-color: var(--dark);
	color: var(--white);
}

.btn.btn-border-dark.animation:hover::after {
	width: 100%;
}

.btn.btn-border-theme {
	border: 2px solid var(--color-primary);
	background: transparent;
}

.btn.btn-border-theme:hover {
	background: var(--color-primary);
	border-color: var(--color-primary);
}

.btn.btn-border-theme.animation::after {
	position: absolute;
	top: 0;
	right: inherit;
	bottom: inherit;
	left: 0;
	content: "";
	height: 100%;
	width: 0;
	z-index: -1;
	background: var(--color-primary);
	-webkit-transition: all 0.25s ease-in-out;
	transition: all 0.25s ease-in-out;
}

.btn.btn-border-theme.animation:hover {
	border-color: var(--color-primary);
	color: var(--white);
}

.btn.btn-border-theme.animation:hover::after {
	width: 100%;
}

.btn.btn-border-light {
	border: 2px solid var(--white);
	background: transparent;
	color: var(--white);
}

.btn.btn-border-light:hover {
	background: var(--white);
	border-color: var(--white);
	color: var(--dark);
}

.btn.btn-border-light.animation::after {
	position: absolute;
	top: 0;
	right: inherit;
	bottom: inherit;
	left: 0;
	content: "";
	height: 100%;
	width: 0;
	z-index: -1;
	background: var(--white);
	-webkit-transition: all 0.25s ease-in-out;
	transition: all 0.25s ease-in-out;
}

.btn.btn-border-light.animation:hover {
	border-color: var(--white);
	color: var(--dark);
}

.btn.btn-border-light.animation:hover::after {
	width: 100%;
}

.btn.btn-gradient {
	border: none;
	color: var(--white);
}

.btn.btn-gradient::after {
	position: absolute;
	top: 0;
	right: inherit;
	bottom: inherit;
	left: 0;
	content: "";
	height: 100%;
	width: 100%;
	z-index: -1;
	background-image: linear-gradient(to right, var(--color-primary) , var(--color-secondary), var(--color-primary) );
	-webkit-transition: all 0.25s ease-in-out;
	transition: all 0.25s ease-in-out;
	background-size: 220%;
}

.btn.btn-gradient:hover::after {
	background-position: -70% 0;
}

.btn.btn-gradient.active {
	background-position: -70% 0;
}

.btn.btn-theme {
	color: var(--white);
	border: none;
	background: var(--color-primary);
}

.btn.btn-theme::after {
	position: absolute;
	top: inherit;
	right: inherit;
	bottom: inherit;
	left: -5%;
	content: "";
	height: 150px;
	width: 115%;
	z-index: -1;
	background-color: var(--dark);
	-webkit-transition: all 0.25s ease-in-out;
	transition: all 0.25s ease-in-out;
	-webkit-transform: translateY(-45%) skew(25deg) scale(0);
	transform: translateY(-45%) skew(25deg) scale(0);
}

.shadow .btn.btn-theme::after {
	background-color: var(--white) !important;
}

.shadow .btn.btn-theme:hover {
	color: var(--color-heading);
}

.btn.btn-theme:hover::after {
	-webkit-transform: translateY(-45%) skew(25deg) scale(1.2);
	transform: translateY(-45%) skew(25deg) scale(1.2);
}

.btn.btn-theme.secondary {
	color: var(--white);
	border: none;
	background: var(--color-secondary);
}

.btn.btn-theme.secondary::after {
	position: absolute;
	top: inherit;
	right: inherit;
	bottom: inherit;
	left: -5%;
	content: "";
	height: 150px;
	width: 115%;
	z-index: -1;
	background-color: var(--dark);
	-webkit-transition: all 0.25s ease-in-out;
	transition: all 0.25s ease-in-out;
	-webkit-transform: translateY(-45%) skew(25deg) scale(0);
	transform: translateY(-45%) skew(25deg) scale(0);
}

.text-light .btn.btn-theme.secondary::after {
	background-color: var(--white);
}

.text-light .btn.btn-theme.secondary:hover {
	color: var(--color-heading);
}

.btn.btn-theme.secondary:hover::after {
	-webkit-transform: translateY(-45%) skew(25deg) scale(1.2);
	transform: translateY(-45%) skew(25deg) scale(1.2);
}

.btn.btn-theme.hover-light::after {
	background-color: var(--white);
	-webkit-transition: all 0.25s ease-in-out;
	transition: all 0.25s ease-in-out;
}

.btn.btn-theme.hover-light:hover {
	color: var(--dark);
	-webkit-transition: all 0.25s ease-in-out;
	transition: all 0.25s ease-in-out;
}

.btn.btn-theme.hover-light:hover::after {
	-webkit-transform: translateY(-45%) skew(25deg) scale(1.2);
	transform: translateY(-45%) skew(25deg) scale(1.2);
}

.btn.btn-light {
	color: var(--color-heading);
	border: none;
	background: var(--white);
	border: 2px solid transparent;
}

.btn.btn-light.btn-md {
	padding: 13px 52px;
}

.btn.btn-light:hover {
	color: var(--white);
	background: transparent;
	border: 2px solid var(--white);
}

.btn.btn-dark {
	color: var(--white);
	background: var(--dark);
	border: none;
}

.btn.btn-dark::after {
	position: absolute;
	top: 0;
	right: inherit;
	bottom: inherit;
	left: 0;
	content: "";
	height: 100%;
	width: 0;
	z-index: -1;
	background-color: var(--color-primary);
	-webkit-transition: all 0.25s ease-in-out;
	transition: all 0.25s ease-in-out;
}

.secondary .btn.btn-dark::after {
	background-color: var(--color-secondary);
}

.shadow .btn.btn-dark::after {
	background-color: var(--white);
}

.shadow .btn.btn-dark:hover {
	color: var(--color-heading) !important;
}

.btn.btn-dark:hover::after {
	width: 100%;
}

.btn.btn-dark.secondary {
	color: var(--white);
	border: none;
	background: var(--dark-optional);
}

.btn.btn-dark.secondary::after {
	position: absolute;
	top: inherit;
	right: inherit;
	bottom: inherit;
	left: -5%;
	content: "";
	height: 150px;
	width: 115%;
	z-index: -1;
	background-color: var(--white);
	-webkit-transition: all 0.25s ease-in-out;
	transition: all 0.25s ease-in-out;
	-webkit-transform: translateY(-45%) skew(25deg) scale(0);
	transform: translateY(-45%) skew(25deg) scale(0);
}

.btn.btn-dark.secondary:hover::after {
	-webkit-transform: translateY(-45%) skew(25deg) scale(1.2);
	transform: translateY(-45%) skew(25deg) scale(1.2);
}

.btn.btn-dark.secondary:hover {
	color: var(--color-heading);
}

.btn i {
	position: relative;
	top: 1px;
	margin-left: 5px;
}

.btn.text-slide {
	min-width: 150px;
	height: 55px;
	line-height: 55px;
}

.btn.text-slide span {
	position: absolute;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	text-align: center;
}

.btn.animate-border {
	overflow: inherit;
	z-index: inherit;
	width: 200px;
	height: 55px;
	line-height: 55px;
	padding: 0;
}

.btn.animate-border:hover {
	background: transparent;
	color: var(--dark);
}

.btn.animate-border:hover .hover-border::after,
.btn.animate-border:hover .hover-border::before {
	opacity: 1;
	-webkit-animation: open 0.4s;
  /* Chrome, Safari, Opera */
	animation: open 0.4s;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	-webkit-animation-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
	animation-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
	-webkit-animation-direction: normal;
	animation-direction: normal;
}

.btn.animate-border:hover .hover-border-bottom::after,
.btn.animate-border:hover .hover-border-bottom::before {
	opacity: 1;
	-webkit-animation: openB 0.4s;
  /* Chrome, Safari, Opera */
	animation: openB 0.4s;
	-webkit-animation-delay: 0.4s;
	animation-delay: 0.4s;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	-webkit-animation-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
	animation-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
	-webkit-animation-direction: normal;
	animation-direction: normal;
}

.btn.animate-border .hover-border {
	position: absolute;
	left: 0;
	top: -1px;
	height: 100%;
	width: 100%;
}

.btn.animate-border .hover-border::before {
	position: absolute;
	content: "";
	height: 0;
	width: 0;
	display: block;
	opacity: 0;
	border-top: solid 2px var(--color-primary);
	border-left: solid 2px var(--color-primary);
	right: 98px;
	top: -1px;
}

.btn.animate-border .hover-border::after {
	position: absolute;
	content: "";
	height: 0;
	width: 0;
	display: block;
	opacity: 0;
	border-top: solid 2px var(--color-primary);
	border-right: solid 2px var(--color-primary);
	left: 98px;
	top: -1px;
}

.btn.animate-border .hover-border-bottom {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	z-index: 1;
}

.btn.animate-border .hover-border-bottom::before {
	position: absolute;
	content: "";
	width: 0;
	display: block;
	opacity: 0;
	height: 55px;
	border-bottom: solid 2px var(--color-primary);
	right: -1px;
	bottom: -2px;
}

.btn.animate-border .hover-border-bottom::after {
	position: absolute;
	content: "";
	width: 0;
	display: block;
	opacity: 0;
	height: 100%;
	border-bottom: solid 2px var(--color-primary);
	left: 0;
	bottom: -2px;
}

.btn.animated-arrow {
	border: none;
	background: transparent;
	min-width: 14rem;
	height: auto;
	padding: 0;
}

.btn.animated-arrow .circle {
	-webkit-transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
	transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
	position: relative;
	display: block;
	margin: 0;
	width: 3.5rem;
	height: 3.5rem;
	background: var(--color-primary);
	border-radius: 2rem;
}

.btn.animated-arrow .circle .icon {
	-webkit-transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
	transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
	left: 15px;
	width: 1.125rem;
	height: 0.125rem;
	background: none;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
}

.btn.animated-arrow .circle .icon::before {
	position: absolute;
	content: "";
	top: -0.25rem;
	right: 0.0625rem;
	width: 0.625rem;
	height: 0.625rem;
	border-top: 0.125rem solid var(--white);
	border-right: 0.125rem solid var(--white);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.btn.animated-arrow .button-text {
	-webkit-transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
	transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 15px 0;
	margin: 0 0 0 70px;
	color: var(--dark);
	line-height: 2;
	text-align: left;
	width: 100%;
	font-size: 14px;
}

.btn.animated-arrow:hover {
	color: var(--white);
}

.btn.animated-arrow:hover .circle {
	width: 100%;
}

.btn.animated-arrow:hover .circle .icon.arrow {
	background: var(--white);
	-webkit-transform: translate(1.5rem, 0);
	transform: translate(1.5rem, 0);
}

.btn.animated-arrow:hover .button-text {
	color: var(--white);
}

.btn.circle {
	border-radius: 30px !important;
}

.btn-simple {
	line-height: 1;
	text-transform: capitalize;
	display: inline-block;
	font-size: 17px;
}

.btn-simple i {
	display: inline-block;
	margin-left: 2px;
	height: 40px;
	width: 40px;
	text-align: center;
	line-height: 38px;
	border: 1px solid var(--dark);
	border-radius: 50%;
	margin-right: 10px;
	transition: all 0.35s ease-in-out;
	font-weight: 400;
	font-size: 16px;
	background: var(--dark);
	color: var(--white);
}

.btn-simple:hover {
	color: var(--color-primary);
}

.secondary .btn-simple:hover {
	color: var(--color-secondary);
}

.btn-simple:hover i {
	background: var(--color-primary);
	border-color: var(--color-primary);
	color: var(--white);
}

.secondary .btn-simple:hover i {
	background: var(--color-secondary);
	border-color: var(--color-secondary);
	color: var(--white);
}

.video-btn i {
	display: inline-block;
	height: 55px;
	width: 55px;
	text-align: center;
	line-height: 55px;
	background: var(--color-primary);
	border-radius: 50%;
	position: relative;
	margin-right: 20px;
	color: var(--white);
}

.text-light .video-btn i {
	background: var(--white);
	color: var(--color-primary);
}

.video-btn i::after {
	content: "";
	position: absolute;
	z-index: 0;
	left: 50%;
	top: 50%;
	-webkit-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
	display: block;
	width: 60px;
	height: 60px;
	background: var(--color-primary) repeat scroll 0 0;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	-webkit-animation: pulse-border 1500ms ease-out infinite;
	animation: pulse-border 1500ms ease-out infinite;
	z-index: -1;
}

.text-light .video-btn i::after {
	background: var(--white) repeat scroll 0 0;
}

.text-shine {
	background: linear-gradient(to right, var(--dark) 0, var(--white) 10%, var(--color-primary) 20%);
	background-position: 0;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	-webkit-animation: shine 3s infinite linear;
	animation: shine 3s infinite linear;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	-webkit-text-size-adjust: none;
	font-weight: 600;
	font-size: 16px;
	text-decoration: none;
	white-space: nowrap;
	padding: 12px 48px;
}

.animate-inout {
	background: -webkit-gradient(linear, left top, right top, from(#8A6552), to(#472d20));
	background: linear-gradient(90deg, #8A6552 0%, #472d20 100%);
	color: var(--white);
	font-size: 12px;
	text-transform: capitalize;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
	border: solid 2px var(--color-primary);
	cursor: pointer;
}

.btn-icon {
	position: relative;
	padding-left: 20px;
}

.btn-icon:hover {
	color: var(--color-primary);
}

.btn-icon::after {
	position: absolute;
	right: 10px;
	top: 50%;
	content: "";
	height: 2px;
	left: 0;
	background: var(--color-heading);
	transform: translateY(-50%);
	margin-top: -1px;
	transition: all 0.35s ease-in-out;
}

/* .btn-icon:hover::after {
	background: var(--color-primary);
}

.btn-icon i {
	font-weight: 500;
}

.btn-icon:hover {
	padding-left: 40px;
} */

.animate-inout span {
	z-index: 1;
	-webkit-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
	line-height: 20px;
}

.animate-inout::before, .animate-inout::after {
	width: 0%;
	height: 0%;
	position: absolute;
	content: "";
	border-radius: 100%;
}

.animate-inout:after {
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
	background-color: var(--white);
}

.animate-inout:before {
	-webkit-transition: all 0.5s ease-out;
	transition: all 0.5s ease-out;
	background: var(--color-primary);
}

.animate-inout.animate-inout-borde {
	background: transparent;
	color: var(--dark);
}

.animate-inout.animate-inout-borde::after {
	background: -webkit-gradient(linear, left top, right top, from(#8A6552), to(#472d20));
	background: linear-gradient(90deg, #8A6552 0%, #472d20 100%);
}

.animate-inout.animate-inout-borde:hover {
	color: var(--white);
}

.animate-inout.animate-inout-borde:hover::before {
	-webkit-transition: all 0.5s ease-in;
	transition: all 0.5s ease-in;
}

.animate-inout.animate-inout-borde:hover::after {
	-webkit-transition: all 0.7s ease-in;
	transition: all 0.7s ease-in;
}

.animate-inout:hover {
	color: var(--dark);
}

.animate-inout:hover::before, .animate-inout:hover::after {
	width: 200px;
	height: 200px;
	border-radius: 4px;
}

.animate-inout:hover::before {
	-webkit-transition: all 0.5s ease-in;
	transition: all 0.5s ease-in;
}

.animate-inout:hover::after {
	-webkit-transition: all 0.7s ease-in;
	transition: all 0.7s ease-in;
}
/* 
.btn-md {
	padding: 16px 52px;
	font-size: 17px;
}

.btn-sm {
	padding: 16px 50px;
	font-size: 14px;
} */

/* Btn Animation */

.btn-animation {
	z-index: 1;
	position: relative;
	font-size: 20px;
	display: inline-block;
	margin-left: 10px;
}

.btn-animation i {
	display: inline-block;
	height: 55px;
	width: 55px;
	text-align: center;
	line-height: 55px;
	background: var(--white);
	color: var(--color-heading);
	border-radius: 50%;
	font-weight: 400;
	margin-right: 10px;
	transition: all 0.35s ease-in-out;
	transform: scale(0);
}

.btn-animation:hover {
	margin-left: 0;
}

.btn-animation:hover i {
	transform: scale(1);
}

.btn-animation::after {
	position: absolute;
	left: -13px;
	top: 0;
	content: "";
	height: 60px;
	width: 60px;
	border: 1px solid rgba(255, 255, 255, 0.5);
	border-radius: 50%;
	transition: all 0.35s ease-in-out;
	transform: scale(1);
	z-index: -1;
}

.btn-animation:hover::after {
	transform: scale(0);
}

.btn-animation span {
	transition: all 0.35s ease-in-out;
	left: -50px;
	position: relative;
}

.btn-animation:hover span {
	left: 0;
}

.btn-animation.dark::after {
	border-color: #c5c5c5;
	z-index: -1;
}

.btn-animation.dark i {
	background: var(--color-primary);
	color: var(--white);
}

.btn-animation.dark:hover {
	color: var(--color-heading);
} */


/* ============================================================== 
    # Nice Select Styles
=================================================================== */
.nice-select {
	-webkit-tap-highlight-color: transparent;
	background-color: var(--white);
	border: solid 1px #e8e8e8;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	clear: both;
	cursor: pointer;
	display: block;
	float: left;
	font-family: inherit;
	font-size: 16px;
	font-weight: normal;
	height: 50px;
	line-height: 50px;
	outline: none;
	padding-left: 18px;
	padding-right: 30px;
	position: relative;
	text-align: left !important;
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	white-space: nowrap;
	width: 100%;
	margin-bottom: 15px;
}

.nice-select:hover {
	border-color: #dbdbdb;
}

.nice-select:active, .nice-select.open, .nice-select:focus {
	border-color: #999999;
}

.nice-select::after {
	border-bottom: 2px solid #999999;
	border-right: 2px solid #999999;
	content: '';
	display: block;
	height: 5px;
	margin-top: -6px;
	pointer-events: none;
	position: absolute;
	right: 12px;
	top: 50%;
	-webkit-transform-origin: 66% 66%;
	transform-origin: 66% 66%;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	-webkit-transition: all 0.15s ease-in-out;
	transition: all 0.15s ease-in-out;
	width: 5px;
}

.nice-select.open .list {
	opacity: 1;
	pointer-events: auto;
	-webkit-transform: scale(1) translateY(0);
	transform: scale(1) translateY(0);
	overflow-y: auto !important;
	height: auto;
}

.nice-select.open ::after {
	-webkit-transform: rotate(-135deg);
	transform: rotate(-135deg);
}

.nice-select.disabled {
	border-color: #ededed;
	color: #999999;
	pointer-events: none;
}

.nice-select.disabled::after {
	border-color: #96aac1;
}

.nice-select.wide {
	width: 100%;
}

.nice-select.wide .list {
	left: 0 !important;
	right: 0 !important;
}

.nice-select.right {
	float: right;
}

.nice-select.right .list {
	left: auto;
	right: 0;
}

.nice-select.small {
	font-size: 12px;
	height: 36px;
	line-height: 34px;
}

.nice-select.small::after {
	height: 4px;
	width: 4px;
}

.nice-select.small .option {
	line-height: 34px;
	min-height: 34px;
}

.nice-select .list {
	background-color: var(--white);
	border-radius: 5px;
	-webkit-box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
	box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	margin-top: 4px;
	opacity: 0;
	overflow: hidden;
	padding: 0;
	pointer-events: none;
	position: absolute;
	top: 100%;
	left: 0;
	-webkit-transform-origin: 50% 0;
	transform-origin: 50% 0;
	-webkit-transform: scale(0.75) translateY(-21px);
	transform: scale(0.75) translateY(-21px);
	-webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
	transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
	z-index: 9;
	width: 100%;
}

.nice-select .list:hover .option:not(:hover) {
	background-color: transparent !important;
}

.nice-select .option {
	cursor: pointer;
	font-weight: 400;
	line-height: 40px;
	list-style: none;
	min-height: 40px;
	outline: none;
	padding-left: 18px;
	padding-right: 29px;
	text-align: left;
	-webkit-transition: all 0.2s;
	transition: all 0.2s;
}

.nice-select .option:hover, .nice-select .option.focus, .nice-select .option.selected.focus {
	background-color: #f6f6f6;
}

.nice-select .option.selected {
	font-weight: 600;
}

.nice-select .option.disabled {
	background-color: transparent;
	color: #999999;
	cursor: default;
}

.no-csspointerevents .nice-select .list {
	display: none;
}

.no-csspointerevents .nice-select.open .list {
	display: block;
}

/* ============================================================== 
    # Topbar Styles
=================================================================== */

.item-flex {
	align-items: center;
	display: flex;
}

.item-flex li {
	margin-left: 30px;
}

.item-flex li:first-child {
	margin: 0;
}

.item-flex li i {
	margin-right: 10px;
	font-weight: 100;
	font-size: 24px;
	color: var(--color-primary);
}

.top-bar-area li {
	display: flex;
	align-items: center;
}

.top-bar-area li a {
	font-weight: 400;
}

.top-bar-area .social li {
	display: inline-block;
	margin-right: 30px;
}

.top-bar-area .social li:first-child {
	margin-right: 0;
}

.top-bar-area .text-end .social li {
	margin-right: 0;
	margin-left: 30px;
}

.top-bar-area .text-end .social li:first-child {
	margin-left: 0;
}

.top-bar-area {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 0;
}

.top-bar-area.top-bar-style-one.bg-dark {
	border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.top-bar-style-two {
	padding: 20px 0;
}

.top-bar-style-two .text-end .social li {
	margin-left: 8px;
}

.top-bar-style-two .social li a {
	display: inline-block;
	background: var(--dark);
	color: var(--white);
	height: 38px;
	width: 38px;
	text-align: center;
	line-height: 38px;
	border-radius: 50%;
}

.top-bar-style-two .item-flex li i {
	font-weight: 600;
	color: var(--color-paragraph);
}

.call-entry {
	display: flex;
	justify-content: right;
	text-align: left;
}

.call-entry p {
	margin-bottom: 5px;
	line-height: 1;
	font-size: 14px;
}

.call-entry p strong {
	font-weight: 600;
	color: var(--blue);
}

.call-entry h5 {
	margin: 0;
	font-weight: 600;
	font-size: 20px;
	letter-spacing: 0.6px;
}

.call-entry h5 a {
	padding: 0 !important;
	display: inline-block;
	text-transform: lowercase;
}

.call-entry i {
	display: inline-block;
	font-size: 40px;
	margin-right: 15px;
	position: relative;
	color: var(--color-secondary);
}

.top-bar-style-two .item-flex li strong {
	display: block;
	text-transform: uppercase;
	font-weight: 600;
	color: var(--color-heading);
}

.top-bar-style-two .item-flex li a {
	font-weight: 500;
	color: var(--color-paragraph);
}

.top-bar-style-two .item-flex li a:hover {
	color: var(--color-secondary);
}

.top-bar-style-two .item-flex li {
	line-height: 1.7;
}

.top-bar-style-two .item-flex li i {
	display: inline-block;
	font-size: 40px;
	color: var(--color-secondary);
	margin-right: 15px;
	font-weight: 100;
}

/* ============================================================== 
    # Navbar Styles
=================================================================== */
@media (min-width: 1200px) {

	nav.navbar.navbar-style-one.validnavs.navbar-fixed.no-background {
		box-shadow: inherit;
		top: 50px;
	}

	nav.navbar.navbar-style-one.validnavs.navbar-fixed.no-background .navbar-header {
		position: relative;
		z-index: 1;
		padding-right: 45px;
		margin-right: -45px;
	}

	nav.navbar.navbar-style-one.validnavs.navbar-fixed.no-background .navbar-header::after {
		position: absolute;
		right: 0;
		bottom: 0;
		height: 300px;
		width: 500%;
		background: var(--white);
		z-index: -1;
		transform: skewX(15deg);
	}

	nav.navbar.navbar-style-one.validnavs.navbar-fixed.no-background .navbar-header::before {
		position: absolute;
		right: -10px;
		bottom: 15px;
		content: "";
		height: 300px;
		width: 100%;
		background: #cfd2d5;
		z-index: -1;
		transform: skewX(15deg);
	}

	nav.navbar.navbar-style-one.validnavs.navbar-fixed.no-background .navbar-header a {
		position: relative;
	}

	nav.navbar.navbar-style-one.validnavs.navbar-fixed.no-background .navbar-header img {
		position: relative;
        top: -23px;
        width: 191%;
	
    
	}
}

/* ============================================================== 
    # Breadcrumb Styles
=================================================================== */
.breadcrumb-area {
	padding: 150px 0;
	padding-top: 160px;
	position: relative;
	z-index: 1;
	overflow: hidden;
}

.breadcrumb-area .top-pad-extra {
	padding-top: 240px;
}

.breadcrumb-area .row {
	position: relative;
	z-index: 1;
}

.breadcrumb-area .breadcrumb {
	background: transparent none repeat scroll 0 0;
	display: inline-block;
	margin: 0;
	padding: 0;
	position: relative;
	z-index: 1;
}

.breadcrumb-area .breadcrumb > li + li::before {
	content: "\f105";
	font-family: "Font Awesome 5 Pro";
	font-weight: 600;
	padding: 0 5px;
	color: var(--white);
	display: none;
}

.breadcrumb-area .breadcrumb li {
	padding: 0 10px;
	position: relative;
	display: inline-block;
	z-index: 1;
	font-weight: 600;
	font-size: 16px;
}

.breadcrumb-area .breadcrumb li a {
	font-weight: 600;
}

.breadcrumb-area .breadcrumb li::after {
	content: "\f105";
	font-family: "Font Awesome 5 Pro";
	font-weight: 500;
	right: -5px;
	position: absolute;
	line-height: 0;
	top: 50%;
	font-size: 14px;
	color: var(--white);
	margin-top: 2px;
}

.breadcrumb-area .breadcrumb li i {
	margin-right: 3px;
}

.breadcrumb-area .breadcrumb li:last-child::after {
	display: none;
}

.breadcrumb-area h1 {
	display: block;
	font-weight: 600;
	margin-top: -10px;
}

@media only screen and (max-width: 767px) {
	.breadcrumb-area {
		padding: 80px 0 !important;
	}
}

.breadcrum-shape {
	text-align: center;
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
}

.breadcrum-shape img {
	height: 100%;
}

/* ============================================================== 
    # Topbar Styles
=================================================================== */
.top-style-one .logo img {
	height: 60px;
}

.top-style-one .social li {
	display: inline-block;
}

.top-style-one {
	display: flex;
	align-items: center;
	justify-content: center;
	border-bottom: 1px solid #e7e7e7;
}

.top-style-one.transparent {
	border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.top-style-one .logo {
	text-align: center;
	border-left: 1px solid #e7e7e7;
	border-right: 1px solid #e7e7e7;
	padding: 15px 0;
}

.top-style-one.transparent .logo {
	border-left: 1px solid rgba(255, 255, 255, 0.3);
	border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.top-style-one .social li a {
	display: inline-block;
	height: 43px;
	width: 43px;
	text-align: center;
	line-height: 45px;
	background: var(--bg-gradient);
	color: var(--white);
	border-radius: 50%;
	font-size: 15px;
}

.top-style-one .text-end.social li {
	margin-left: 3px;
}

.top-style-one .info i {
	font-weight: 100;
	font-size: 20px;
	position: relative;
	top: 2px;
	margin-right: 3px;
	color: var(--color-primary);
}

.top-style-one .info li {
	font-weight: 500;
	text-transform: capitalize;
}

@media (min-width: 1024px) {
	.top-style-one.transparent {
		border-bottom: 1px solid rgba(255, 255, 255, 0.3);
		position: absolute;
		left: 0;
		top: 0;
		width: 100%;
		z-index: 9;
	}
}

/* ============================================================== 
    # Banner Styles
=================================================================== */
.banner-area {
	height: 90%;
	width: 100%;
	position: relative;
}
.text-light a {
    color: white;
}
@media (max-width: 1023px) {
	.banner-area {
		height: auto;
	}
}

.banner-area div {
	height: 100%;
}

.banner-area div.swiper-slide .row div {
	height: auto;
}

.banner-area.top-pad-80 .content {
	padding-top: 80px;
}

@media (max-width: 1023px) {
	.banner-area.top-pad-80 .content {
		padding-top: 200px;
	}
}

@media only screen and (max-width: 767px) {
	.banner-area.top-pad-80 .content {
		padding-top: 140px;
	}
}

.banner-area.top-pad-90 .content {
	padding-top: 90px;
}

@media (max-width: 1023px) {
	.banner-area.top-pad-90 .content {
		padding-top: 200px;
	}
}

@media only screen and (max-width: 767px) {
	.banner-area.top-pad-90 .content {
		padding-top: 140px;
	}
}

.banner-area.top-pad-100 .content {
	padding-top: 100px;
}

@media (max-width: 1023px) {
	.banner-area.top-pad-100 .content {
		padding-top: 200px;
	}
}

@media only screen and (max-width: 767px) {
	.banner-area.top-pad-100 .content {
		padding-top: 140px;
	}
}

.banner-area.top-pad-110 .content {
	padding-top: 110px;
}

@media (max-width: 1023px) {
	.banner-area.top-pad-110 .content {
		padding-top: 200px;
	}
}

@media only screen and (max-width: 767px) {
	.banner-area.top-pad-110 .content {
		padding-top: 140px;
	}
}

.banner-area.top-pad-120 .content {
	padding-top: 120px;
}

@media (max-width: 1023px) {
	.banner-area.top-pad-120 .content {
		padding-top: 200px;
	}
}

@media only screen and (max-width: 767px) {
	.banner-area.top-pad-120 .content {
		padding-top: 140px;
	}
}

.banner-area.top-pad-130 .content {
	padding-top: 130px;
}

@media (max-width: 1023px) {
	.banner-area.top-pad-130 .content {
		padding-top: 200px;
	}
}

@media only screen and (max-width: 767px) {
	.banner-area.top-pad-130 .content {
		padding-top: 140px;
	}
}

.banner-area.top-pad-150 .content {
	padding-top: 150px;
}

@media (max-width: 1023px) {
	.banner-area.top-pad-150 .content {
		padding-top: 200px;
	}
}

@media only screen and (max-width: 767px) {
	.banner-area.top-pad-150 .content {
		padding-top: 140px;
	}
}

.banner-area.auto-height {
	height: auto;
}

.banner-area.auto-height div {
	height: auto;
}

.banner-area.auto-height .content {
	padding: 200px 0;
}

@media only screen and (max-width: 767px) {
	.banner-area.auto-height .content {
		padding: 60px 0;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.banner-area.auto-height .content {
		padding: 120px 0;
	}
}

.banner-area.auto-height .content .thumb {
	padding-left: 35px;
}

@media (max-width: 991px) {
	.banner-area.auto-height .content .thumb {
		padding-left: 0;
		margin-top: 50px;
	}
}

.banner-area.auto-height.inc-header-transparent .content {
	padding-top: 250px;
}

@media only screen and (max-width: 767px) {
	.banner-area.auto-height.inc-header-transparent .content {
		padding-top: 140px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.banner-area.auto-height.inc-header-transparent .content {
		padding-top: 220px;
	}
}

.banner-area.auto-height.inc-header-transparent.double-items.bottom-thumb .content .info {
	padding-top: 80px;
}

.banner-area.auto-height.inc-header-transparent.double-items.bottom-thumb .content .thumb {
	margin-top: 250px;
}

@media only screen and (max-width: 767px) {
	.banner-area.auto-height.inc-header-transparent.double-items.bottom-thumb .content .thumb {
		margin-top: 30px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.banner-area.auto-height.inc-header-transparent.double-items.bottom-thumb .content .thumb {
		margin-top: 50px;
	}
}

.banner-area .content {
	position: relative;
	z-index: 9;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}

@media (max-width: 1023px) {
	.banner-area .content {
		padding: 120px 0;
	}
}

@media only screen and (max-width: 767px) {
	.banner-area .content {
		padding: 60px 0;
	}
}

.banner-area h4 {
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
	-webkit-transform: translate3d(-15%, 0, 0);
	transform: translate3d(-15%, 0, 0);
	opacity: 0;
	visibility: hidden;
}

.banner-area h2 {
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	opacity: 0;
	visibility: hidden;
}

.banner-area p,
.banner-area ul {
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
	-webkit-transform: translateY(50%);
	transform: translateY(50%);
	opacity: 0;
	padding-right: 25%;
	margin: 0;
	visibility: hidden;
}

@media (max-width: 1023px) {
	.banner-area p {
		padding-right: 0;
	}
}

.banner-area.text-center p {
	padding-left: 13%;
	padding-right: 13%;
}

@media (max-width: 1023px) {
	.banner-area.text-center p {
		padding: 0;
	}
}

.banner-area .thumb {
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
	opacity: 0;
	visibility: hidden;
}

.banner-area .button {
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
	-webkit-transform: translateY(50%);
	transform: translateY(50%);
	opacity: 0;
	visibility: hidden;
	margin-top: 30px;
}

.banner-area h4 {
	-webkit-transform: translateY(50%);
	transform: translateY(50%);
}

.banner-area h2 {
	-webkit-transform: translateY(50%);
	transform: translateY(50%);
}

.banner-area p,
.banner-area ul {
	-webkit-transform: translateY(50%);
	transform: translateY(50%);
}

.banner-area .button {
	-webkit-transform: translateY(50%);
	transform: translateY(50%);
}

.banner-area .swiper-slide.swiper-slide-active h4 {
	-webkit-transform: translateY(0);
	transform: translateY(0);
	-webkit-transition-delay: 1200ms;
	transition-delay: 1200ms;
}

.banner-area .swiper-slide.swiper-slide-active h2 {
	-webkit-transform: translateY(0);
	transform: translateY(0);
	-webkit-transition-delay: 1400ms;
	transition-delay: 1400ms;
}

.banner-area .swiper-slide.swiper-slide-active p,
.banner-area .swiper-slide.swiper-slide-active ul {
	-webkit-transform: translateY(0);
	transform: translateY(0);
	-webkit-transition-delay: 1600ms;
	transition-delay: 1600ms;
}

.banner-area.banner-style-one .swiper-slide.swiper-slide-active .button {
	-webkit-transform: translateY(0);
	transform: translateY(0);
	-webkit-transition-delay: 2200ms;
	transition-delay: 2200ms;
}

.banner-area.double-items .thumb {
	-webkit-transform: translateY(50%);
	transform: translateY(50%);
}

.banner-area.double-items .swiper-slide.swiper-slide-active .thumb {
	-webkit-transform: translateY(0);
	transform: translateY(0);
	-webkit-transition-delay: 500ms;
	transition-delay: 500ms;
	visibility: visible;
	opacity: 1;
}

.banner-area.double-items.bottom-thumb .content {
	padding: 0;
}

.banner-area.double-items.bottom-thumb .content .thumb {
	margin-top: 120px;
}

@media only screen and (max-width: 767px) {
	.banner-area.double-items.bottom-thumb .content {
		padding: 50px 0;
	}

	.banner-area.double-items.bottom-thumb .content .thumb {
		margin-top: 30px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.banner-area.double-items.bottom-thumb .content {
		padding: 120px 0;
	}

	.banner-area.double-items.bottom-thumb .content .thumb {
		margin-top: 50px;
	}
}

.banner-area.zoom-effect .banner-thumb {
	-webkit-transition: 10s ease-out;
	transition: 10s ease-out;
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
	position: absolute;
	left: 0;
	top: 0;
	content: "";
	height: 100%;
	width: 100%;
}

.banner-area.zoom-effect .swiper-slide.swiper-slide-active .banner-thumb {
	-webkit-transform: scale(1);
	transform: scale(1);
}

.banner-area .swiper-notification {
	display: none;
}

.banner-area .swiper-slide.swiper-slide-active h4 {
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	opacity: 1;
	visibility: visible;
	-webkit-transition-delay: 800ms;
	transition-delay: 800ms;
}

.banner-area .swiper-slide.swiper-slide-active h2 {
	-webkit-transform: translateY(0);
	transform: translateY(0);
	opacity: 1;
	visibility: visible;
	-webkit-transition-delay: 1600ms;
	transition-delay: 1600ms;
	
}

.banner-area .swiper-slide.swiper-slide-active p,
.banner-area .swiper-slide.swiper-slide-active ul {
	-webkit-transform: translateY(0);
	transform: translateY(0);
	opacity: 1;
	visibility: visible;
	-webkit-transition-delay: 2400ms;
	transition-delay: 2400ms;
}

.banner-area .swiper-slide.swiper-slide-active .button {
	-webkit-transform: translateY(0);
	transform: translateY(0);
	opacity: 1;
	visibility: visible;
	-webkit-transition-delay: 3200ms;
	transition-delay: 3200ms;
}

.banner-area.banner-style-two .swiper-slide.swiper-slide-active .button {
	-webkit-transition-delay: 2400ms;
	transition-delay: 2400ms;
}

.banner-area .banner-items {
	position: relative;
	width: 100%;
	height: 100%;
	z-index: 1;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-transition-property: -webkit-transform;
	transition-property: -webkit-transform;
	transition-property: transform;
	transition-property: transform, -webkit-transform;
	-webkit-box-sizing: content-box;
	box-sizing: content-box;
	-webkit-transform: translate3d(0px, 0, 0);
	transform: translate3d(0px, 0, 0);
}

.banner-area:hover .swiper-button-prev,
.banner-area:hover .swiper-button-next {
	opacity: 1;
}

.banner-area:hover .swiper-button-prev {
	left: 30px;
	right: auto;
}

.banner-area:hover .swiper-button-next {
	right: 30px;
	left: auto;
}

.banner-area .swiper-button-prev,
.banner-area .swiper-button-next {
	height: auto;
	-webkit-transition: all 0.35s ease-in-out;
	transition: all 0.35s ease-in-out;
	opacity: 0;
}

.banner-area .swiper-button-prev::after,
.banner-area .swiper-button-next::after {
	font-size: 28px;
	color: var(--color-heading);
}

.banner-area.navigation-circle .swiper-button-prev, 
.banner-area.navigation-circle .swiper-button-next {
	height: 55px;
	width: 55px;
	line-height: 55px;
	background: rgba(255, 255, 255, 0.8);
	border-radius: 50%;
	border: 2px solid var(--color-heading);
}

.banner-area.navigation-circle .swiper-button-prev::after,
.banner-area.navigation-circle .swiper-button-next::after {
	font-size: 16px;
}

.banner-area.navigation-right-bottom .swiper-button-prev,
.banner-area.navigation-right-bottom .swiper-button-next {
	left: auto;
	right: 30px;
	opacity: 1;
	top: auto;
	-webkit-transform: inherit;
	transform: inherit;
	bottom: 50px;
	border-radius: inherit;
}

.banner-area.navigation-right-bottom .swiper-button-prev {
	right: 92px;
}

.banner-area.navigation-between-bottom .content {
	padding-bottom: 105px;
}

@media only screen and (min-width: 829px) and (max-width: 1023px) {
	.banner-area.navigation-between-bottom .content {
		padding-bottom: 220px;
	}
}

.banner-area.navigation-between-bottom .swiper-button-prev,
.banner-area.navigation-between-bottom .swiper-button-next {
	left: auto;
	right: 30px;
	opacity: 1;
	top: auto;
	-webkit-transform: inherit;
	transform: inherit;
	bottom: 30px;
	border-radius: inherit;
}

.banner-area.navigation-between-bottom .swiper-button-prev {
	left: 30px;
	right: auto;
}

@media only screen and (max-width: 830px) {
	.banner-area .swiper-button-prev,
  .banner-area .swiper-button-next {
		display: none;
	}
}

.banner-area.navigation-custom .swiper-button-prev::after {
	font-family: 'ElegantIcons';
	content: "\23";
	font-size: 22px;
}

.banner-area.navigation-custom .swiper-button-next::after {
	font-family: 'ElegantIcons';
	content: "\24";
	font-size: 22px;
}

.banner-area.navigation-text .swiper-button-prev,
.banner-area.navigation-text .swiper-button-next {
	opacity: 1;
	top: auto;
	-webkit-transform: inherit;
	transform: inherit;
	left: auto;
	right: 0;
	bottom: 0;
	display: inline-block;
	width: 150px;
	background: rgba(0, 0, 0, 0.2);
	text-align: center;
	height: 100px;
	line-height: 100px;
}

@media only screen and (max-width: 830px) {
	.banner-area.navigation-text .swiper-button-prev,
  .banner-area.navigation-text .swiper-button-next {
		display: none;
	}
}

.banner-area.navigation-text .swiper-button-prev {
	right: 151px;
}

.banner-area.navigation-text .swiper-button-prev::after {
	font-family: var(--font-heading);
	content: "Prev";
	text-transform: uppercase !important;
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 0.6px;
}

.banner-area.navigation-text .swiper-button-next::after {
	font-family: var(--font-heading);
	content: "Next";
	text-transform: uppercase !important;
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 0.6px;
}

.banner-area.navigation-icon-solid .swiper-button-prev::after,
.banner-area.navigation-icon-solid .swiper-button-next::after {
	font-size: 30px;
}

.banner-area.navigation-custom-large .swiper-button-prev,
.banner-area.navigation-custom-large .swiper-button-next {
	min-width: 65px;
	height: 30px;
	margin: 0;
}

.banner-area.navigation-custom-large .swiper-button-prev::after {
	font-family: "Font Awesome 5 Pro";
	content: "\f104";
	font-weight: 100;
	font-size: 30px;
	position: absolute;
	left: 8px;
	color: var(--color-primary);
}

.banner-area.navigation-custom-large .swiper-button-prev::before {
	position: absolute;
	top: 50%;
	right: inherit;
	bottom: inherit;
	left: 12px;
	content: "";
	height: 2px;
	width: 35px;
	z-index: -1;
	background-color: var(--color-primary);
	margin-top: -1px;
}

.banner-area.navigation-custom-large .swiper-button-next::after {
	font-family: "Font Awesome 5 Pro";
	content: "\f105";
	font-weight: 100;
	font-size: 30px;
	position: absolute;
	right: 8px;
	color: var(--color-primary);
}

.banner-area.navigation-custom-large .swiper-button-next::before {
	position: absolute;
	top: 50%;
	left: 18px;
	bottom: inherit;
	right: inherit;
	content: "";
	height: 2px;
	width: 35px;
	z-index: -1;
	background-color: var(--color-primary);
	margin-top: -1px;
}

.banner-area.navigation-right-botom .swiper-button-prev,
.banner-area.navigation-right-botom .swiper-button-next {
	position: absolute;
	left: auto;
	left: 85px;
	top: auto;
	bottom: 40px;
	opacity: 1;
	-webkit-transform: inherit;
	transform: inherit;
}

.banner-area.navigation-right-botom .swiper-button-prev {
	right: 60px;
}

.banner-area.navigation-right-botom.navigation-custom-large .swiper-button-prev,
.banner-area.navigation-right-botom.navigation-custom-large .swiper-button-next {
	bottom: 30px;
}

.banner-area.navigation-right-botom.navigation-custom-large .swiper-button-prev {
	left: 30px;
}

.banner-area .swiper-pagination {
	height: auto;
	bottom: 35px;
}

.banner-area .swiper-pagination span.swiper-pagination-bullet {
	height: 4px;
	width: 50px;
	background: rgba(255, 255, 255, 0.5);
	opacity: 1;
	border-radius: inherit;
	-webkit-transition: all 0.35s ease-in-out;
	transition: all 0.35s ease-in-out;
}

.banner-area .swiper-pagination span.swiper-pagination-bullet.swiper-pagination-bullet-active {
	background: white;
	height: 7px;
}

@media only screen and (max-width: 767px) {
	.banner-area.include-pagination .content {
		padding-bottom: 100px;
	}
}

.banner-area .swiper-pagination-fraction span {
	-webkit-transition: all 0.35s ease-in-out;
	transition: all 0.35s ease-in-out;
}

.banner-area .swiper-pagination-fraction span.swiper-pagination-current {
	font-size: 30px;
	font-family: var(--font-heading);
	font-weight: 600;
}

/* ============================================================== 
    # Banner Custom Style
=================================================================== */

.banner-area .align-center {
	align-items: center;
}

.banner-style-one {
	position: relative;
	z-index: 1;
}

.banner-shape {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	z-index: 1;
}

.banner-shape .item {
	position: absolute;
	left: 20%;
	bottom: 0;
	height: 0;
	width: 30%;
	background: var(--black);
	transform: rotate(53deg) skewY(10deg);
	opacity: 0;
	box-shadow: 0px 0px 10px #232931;
	transition: all 1000ms ease;
}

.banner-shape .item:nth-child(2) {
	position: absolute;
	left: 18%;
	bottom: 0;
	height: 0;
	width: 60%;
	background: var(--black);
	transform: rotate(-45deg) skewY(-10deg);
	opacity: 0;
}

.banner-style-one.swiper-slide-visible .banner-shape .item {
	height: 150px;
	opacity: 0.3;
	transition-delay: 1000ms;
}

.banner-style-one.swiper-slide-visible .banner-shape .item:nth-child(2) {
	height: 200px;
	opacity: 0.5;
	transition-delay: 100ms;
}

.banner-shape {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	z-index: 1;
}

.banner-style-one h2 {


	line-height: 1.1;
	margin: 0;
	color: #fff;
    font-size: 42px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-align: center;
    text-transform: uppercase;
    font-family: 'Orelega One';
    letter-spacing: 1px;


}

.banner-style-one h2 strong {
	display: block;
	font-weight: 500;
}

.banner-style-one h4 {
	text-transform:capitalize;
	color: #E9A245;
 
    font-size: 52px;
    font-family: 'Lobster'
}

.banner-shape-bg {
	position: absolute;
	right: -50%;
	bottom: 0;
	z-index: 1;
	display: flex;
	max-width: 50%;
	height: 50% !important;
	transition: all 0.55s ease-in-out;
	justify-content: right;
}

.banner-style-one.swiper-slide-visible .banner-shape-bg {
	right: 0;
	bottom: 0;
	opacity: 1;
	transition-delay: 1200ms;
}


/* ============================================================== 
    # about Style
=================================================================== */
.section-header {
    position: relative;
    left: 10px;
}
.image-above-section img {
    width: 100%;
}
.year-counter {
    position: absolute;
    bottom: -30px;
    right: -25px;
}
.year-counter::before {
	content: '';
    display: block;
    width: 60px;
    height: 60px;
    background-color: #720004;
    position: absolute;
    top: 50%;
    margin-top: -30px;
    left: 50%;
    margin-left: -30px;
    z-index: -1;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
	animation: roundWaves infinite 1.5s;
}

@keyframes roundWaves {
	0% {
	  -webkit-transform: scale(0, 0);
	  transform: scale(0, 0);
	  opacity: 1;
	}
	100% {
	  -webkit-transform: scale(3, 3);
	  transform: scale(3, 3);
	  opacity: 0;
	}
  }
  @-moz-keyframes roundWaves {
	0% {
	  -webkit-transform: scale(0, 0);
	  transform: scale(0, 0);
	  opacity: 1;
	}
	100% {
	  -webkit-transform: scale(3, 3);
	  transform: scale(3, 3);
	  opacity: 0;
	}
  }
  @-webkit-keyframes roundWaves {
	0% {
	  -webkit-transform: scale(0, 0);
	  transform: scale(0, 0);
	  opacity: 1;
	}
	100% {
	  -webkit-transform: scale(3, 3);
	  transform: scale(3, 3);
	  opacity: 0;
	}
  }
.year-counter {
    height: 184px;
    width: 184px;
    background-color: #571315;
    border: 12px solid white;
    box-shadow: 0px 10px 30px rgba(8, 14, 28, 0.1);
    border-radius: 50%;
    text-align: center;
    padding: 25px 0;
}
.year-counter_number {
	font-family: 'Poppins', sans-serif;
    background-image: linear-gradient(180deg, #FCEBB3 0%, #5713156e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 66px;
    font-weight: 900;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 0;
    line-height: 76px;
    word-wrap: break-word;
    position: relative;
 
}
.year-counter_text {
    color: white;
    margin-bottom: 0;
    font-weight: 400;
}
.about-space-top {
    padding-top: 100px;
	width: 100%;
    padding: 0px 0;
    background-image: url(../images/ABOUT\ -PATTERN.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: auto;

    background-origin: content-box;
    overflow: hidden;
}
.image-above-section {
    position: absolute;
    content: "";
    /* height: 290px; */
    background-repeat: no-repeat;
    width: 100%;
	bottom: -207px;

    z-index: 1;
    left: 0;
}

.section-header h3 {
	font-family: 'Poppins', sans-serif;
    background-image: linear-gradient(180deg, #FCEBB3 0%, #5713156e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 66px;
    font-weight: 900;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 0;
    line-height: 76px;
    word-wrap: break-word;
    position: relative;
    right: 10px;

}
.section-header h5>span::before {
    position: absolute;
    content: '';
    width: 70px;
    height: 2px;
    background-image:linear-gradient(270deg, #ffffff 0%, #601112 100%);
    left: -76px;
    top: 12px;
}
.section-header h5>span {


		/* display: inline-block; */
		font-size: 30px;
		line-height: 28px;
		text-transform: uppercase;
		color: #601112;
		font-weight: 600;
		/* font-family: "Poppins"; */
		position: relative;
		/* left: 18%; */
		z-index: 1;
	
		
}
.section-header h5>span::after {
    position: absolute;
    content: '';
    width: 70px;
    height: 2px;
    background-image: linear-gradient(270deg, #601112 0%, #ffffff 100%);
    right: -74px;
    top: 12px;
}
.about-details-container p {
    font-size: 16px;
    line-height: 1.8;
    color: #4E4E4E;
   

    margin: 0;
}

h5.section-sub-title {
    font-size: 16px;
    color: #571315;
    font-weight: 600;
    /* font-family: "Poppins"; */
    border-radius: 20px;
    background-color: rgb(250 234 178);
    border: 1px solid rgb(115 0 2);
    display: inline-block;
    padding: 6px 29px;
    margin: 0;
    position: relative;
    z-index: 1;
    margin-bottom: 22px;
    line-height: 25px;
    text-decoration: none;
	

}

.about-read-more-button h5::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    opacity: 0;
    transform: translate(-50%, -50%) scale(1);
    transition: all 0.3s ease-in-out;
}


	.about-read-more-button:hover h5 {
		color: #000000;
		text-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 20px rgba(255, 255, 255, 0.6), 0 0 30px rgba(255, 255, 255, 0.4);
	}


.about-read-more-button:hover h5::before {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.5);
    animation: glow 1.5s infinite alternate;
}

@keyframes glow {
    0% {
        box-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
    }
    100% {
        box-shadow: 0 0 20px rgba(255, 255, 255, 1);
    }
}
h5.section-sub-title::before {
	position: absolute;
	content: "";
	width: 30px;
	height: 7px;
	background: #571315;
	border-radius: 30px;
	left: -8%;
	top: 14px;
}
h5.section-sub-title::after {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;

	transition: all 0.4s ease;
	z-index: -1; 
}


a.about-read-more-button {
	text-decoration: none;
}
.img-box2 {
	text-align: center;
    margin-left: 82px;
    position: relative;
    z-index: 2;
    right: 44px;

}
h2.title-color {
    font-size: 25px;
color:#571315;
font-weight: 700;
}

.section-header span.head {
	color:#571315;
	font-weight: 700;
}

.img-box2 .img1 img {
    -webkit-animation: morph 10s ease-in-out infinite;
    animation: morph 10s ease-in-out infinite;
    width: 100%;
    max-width: 760px;
}

  @-webkit-keyframes morph {
	0% {
	  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
	}
	50% {
	  border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
	}
	100% {
	  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
	}
  }
  @keyframes morph {
	0% {
	  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
	}
	50% {
	  border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
	}
	100% {
	  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
	}
  }
  .img-box2:before {
    top: -20px;
    left: -40px;
  
    -webkit-animation-delay: 0.2;
    animation-delay: 0.2;
}
.img-box2 .img1 img {
    -webkit-animation: morph 10s ease-in-out infinite;
    animation: morph 10s ease-in-out infinite;
    width: 100%;
    max-width: 760px;
}
.img-box2:after {
    right: -20px;
    bottom: -40px;
    background-color: var(--smoke-color2);
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
    z-index: -2;
}
 .img-box2:after {
    content: "";
    position: absolute;
    background-color: 601112;
    width: 100%;
    height: 100%;
    -webkit-animation: morph 10s ease-in-out infinite;
    animation: morph 10s ease-in-out infinite;
    z-index: -1;
}
.img-box2:before{
    content: "";
    position: absolute;
    background-color: #601112;
    width: 100%;
    height: 100%;
    -webkit-animation: morph 10s ease-in-out infinite;
    animation: morph 10s ease-in-out infinite;
    z-index: -1;
}
.img-box2:before {
    top: -20px;
    left: -40px;

	  -webkit-animation-delay: 0.2;
    animation-delay: 0.2;
}
.about-list .list-wrap {
	display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    margin: 0 -43px;
    gap: 30px 0;
    padding: 5px;
    margin-bottom: 25px;
  }
  .no-padding-desktop{
  padding:0;
  }
  @media (max-width: 1199.98px) {
	.about-list .list-wrap {
	  gap: 20px 0;
	  flex-wrap: wrap;
	}
  }
  .about-list .list-wrap li {
	padding: 0 15px;
	width: 50%;
	flex: 0 0 auto;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: flex-start;
	gap: 15px;
  }
  @media (max-width: 1199.98px) {
	.about-list .list-wrap li {
	  width: 100%;
	}
  }
  @media (max-width: 991.98px) {
	.about-list .list-wrap li {
	  width: 50%;
	}
  }
  @media (max-width: 767.98px) {
	.about-list .list-wrap li {
	  width: 100%;
	}
  }
  .about-list .list-wrap li .icon {
	
		width: 60px;
		height: 60px;
		display: -webkit-box;
		display: -moz-box;
		display: -ms-flexbox;
		display: -webkit-flex;
		display: flex;
		align-items: center;
		justify-content: center;
		background: #601112;
		color: var(--tg-theme-primary);
		-webkit-border-radius: 8px;
		-moz-border-radius: 8px;
		-o-border-radius: 8px;
		-ms-border-radius: 8px;
		border-radius: 8px;
		flex: 0 0 auto;
		font-size: 40px;
		line-height: 0;
	
  }
  
    /* section.about-space-top {
		background-image: linear-gradient(to bottom, #601112, #60111242, #60111200, #60111200, #60111200, #702e2f00, #60111200, #60111200);
	} */
  .about-list .list-wrap li .icon i {
	transition: 0.3s linear;
  }
  .about-list .list-wrap li:hover .icon i {
	-webkit-transform: rotateY(180deg);
	-moz-transform: rotateY(180deg);
	-ms-transform: rotateY(180deg);
	-o-transform: rotateY(180deg);
	transform: rotateY(180deg);
  }
  .about-list .list-wrap li .content .title {
	font-size: 20px;
	margin-bottom: 5px;
	font-weight: 600;
  }
  .about-list .list-wrap li .content p {
	margin-bottom: 0;
  }
 .img-box2:after {
    content: "";
    position: absolute;
    background-color:#FCEBB3;
    width: 100%;
    height: 100%;
    -webkit-animation: morph 10s ease-in-out infinite;
    animation: morph 10s ease-in-out infinite;
    z-index: -1;
}
/* ============================================================== 
    # vision Style
=================================================================== */

.space-top {
    padding-top: 100px;
}
.z-index-common
.service-featured {
	text-align: center;
	position: relative;
	z-index: 2;
  }
  
  .service-featured:after {
	content: "";
	height: 180px;
	width: 100%;
	background-color:#FCEBB3;
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	border-radius: 10px;
	z-index: -1;
	-webkit-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out;
  }
  .service-featured .shape-icon {
	margin: 0 auto 30px auto;
  }
  .service-featured .icon-btn {
	border-radius: 99px;
	background-color:#571315;
	box-shadow: 0px 6px 20px rgba(0, 96, 255, 0.5);
	border: none;
	color: var(--white-color);
	position: absolute;
	bottom: -28px;
	left: calc(50% - 28px);
  }
  .service-featured .shape-icon {
    margin: 0 auto 30px auto;
}
.shape-icon {
    position: relative;
    z-index: 2;
    width: 90px;
    height: 85px;
    line-height: 85px;
	
    text-align: center;

}
.shape-icon .iconn-dots{
	animation: rotateDots 3s infinite linear;
    animation-play-state: paused;

}
.icon-btn:hover {
    background-color: white;
  
   
}

.service-featured.icon-btn:hover {
    background-color: white;
    color:#571315;
}

.service-featured .icon-btn {
    border-radius: 99px;
    background-color: #FCEBB3;
    box-shadow: 0px 6px 20px #684c4d;
    border: none;
    color: var(--white-color);
    position: absolute;
    bottom: -28px;
    left: calc(50% - 28px);
}
 
 
  .service-featured_content {
	background-color: white;
	max-width: 312px;
	box-shadow: 0px 10px 30px rgba(8, 14, 28, 0.06);
	border-radius: 10px;
	margin-left: auto;
	margin-right: auto;
	padding: 40px 15px 28px 15px;
	margin-bottom: 28px;
  }
  .service-featured_text {
	max-width: 255px;
	margin: 0 auto 31px auto;
  }
  .shape-icon:before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: #FCEBB3;
    -webkit-clip-path: path("M4.76563 19.2144C-2.32686 32.07 -1.20075 48.6639 6.14105 61.3767C16.4024 79.1459 38.9816 89.016 58.6174 83.4451C78.2532 77.8741 92.5688 56.7417 89.6127 36.3982C84.2306 -0.647078 23.3991 -14.559 4.76563 19.2144Z");
    clip-path: path("M4.76563 19.2144C-2.32686 32.07 -1.20075 48.6639 6.14105 61.3767C16.4024 79.1459 38.9816 89.016 58.6174 83.4451C78.2532 77.8741 92.5688 56.7417 89.6127 36.3982C84.2306 -0.647078 23.3991 -14.559 4.76563 19.2144Z");
    z-index: -1;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
}
.shape-icon .dots:before, .shape-icon .dots:after {
    content: "";
    position: absolute;
	background-image: linear-gradient(to left bottom, #690000, #690000, #690000, #690000, #690000, #710002, #790003, #810004, #940005, #a70005, #bb0003, #cf0000);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    height: 24px;
    width: 23px;
    border-radius: 50%;
	transition: transform 0.3s ease;
		
}
.service-featured:hover .dots {
    animation: rotateDots 1s infinite linear;
}
.icon-btn {
    display: inline-block;
    width: var(--btn-size, 56px);
    height: var(--btn-size, 56px);
    line-height: var(--btn-size, 56px);
    font-size: var(--btn-font-size, 16px);
    background-color: var(--icon-bg, transparent);
    color: var(--title-color);
    text-align: center;
    border-radius: 4px;
    border: 1px solid #571315;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
}
.icon-btn:hover {
    background-color: white;
    color: 571315;
    border-color: white
}
.shape-icon .dots:after {
    height: 12px;
    width: 11px;
    bottom: 0;
	
    left: 27px;
}	.shape-icon .dots:before {
    top: 0;
    right: 9px;
}
.box-title {
    font-size: 1.5em;
    margin: 15px 0;
}

.box-title a {
    color: #fff;
    text-decoration: none;
}
.service-featured .icon-btn {
    border-radius: 99px;
background-image: linear-gradient(to right bottom, #571315, #5a0f11, #5d0a0d, #5f0507, #620000);
    box-shadow: 0px 6px 20px 0px 6px 20px rgb(94 7 9 / 59%);
    border: none;
    color: white;
    position: absolute;
    bottom: -28px;
    left: calc(50% - 28px);
}

@keyframes rotateDots {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
/* Responsive styles */
@media (max-width: 992px) {
    .service-featured {
        flex: 1 1 calc(50% - 20px);
    }
}

@media (max-width: 576px) {
    .service-featured {
        flex: 1 1 100%;
    }
}
/* ============================================================== 
     # video Section
=================================================================== */
.video-section {
	background-image: linear-gradient(to right top, #3f0000, #450001, #4b0001, #520001, #580000);

}

.video-section .container-fluid {
    padding: 0;
}

.video-section .row {
    margin: 0;
}

.video-section .col-lg-6 {
    padding: 0;
}

.video-section .col-lg-6 img {
    max-width: 100%;
    height: auto;
}

.video-section .fadeInUp {
    animation-name: fadeInUp;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.btn-play {
    position: absolute;
    top: 50%;
    right: -30px;
    transform: translateY(-50%);
    display: block;
    box-sizing: content-box;
    width: 16px;
    height: 26px;
    border-radius: 100%;
    border: none;
    outline: none !important;
    padding: 18px 20px 20px 28px;
    background: wheat;
}

@media (max-width: 992px) {
    .btn-play {
        left: 50%;
        right: auto;
        transform: translate(-50%, -50%);
    }
}



.btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: #F5BB00;
    border-radius: 100%;
    animation: pulse-border 1500ms ease-out infinite;
}

.btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 100%;
    transition: all 200ms;
}

.btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    left: -1px;
    border-left:16px solid #450001;
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
        opacity: 0;
    }
}

.modal-video .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

.modal-video .modal-body {
    position: relative;
    padding: 0px;
}


.modal-video .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}


/* Floating animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Floating animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}



/* ============================================================== 
    # Services Style
=================================================================== */
.fac-service-sec.space {
 background-image: url(../images/service-bg.png);

}
.service-card {
    padding: 40px;
    position: relative;
    z-index: 2;
    box-shadow: 0px 10px 30px rgba(8, 14, 28, 0.06);
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
}
.service-card:hover {
    width: 100%;
}
.service-card:before,
.service-card:after {
  content: "";
  position: absolute;
  height: 110px;
  width: 110px;
  background-color:#571315;
  opacity: 0.6;
  border-radius: 50%;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  z-index: -1;
}
.service-card .box-title a:hover {
    color: white;
}
.service-card:before {
  bottom: -73px;
  right: -28px;
}
h3.box-title:hover {
	color: #800004;
}
.service-card:after {
  right: -73px;
  bottom: -28px;
}
.service-card .shape-icon {
  margin-bottom: 30px;
}
.service-card .box-title a:hover {
  color: var(--smoke-color2);
}
.service-card .bg-shape {
  position: absolute;
  bottom: -200px;
  left: 0;
  width: 100%;
  opacity: 0;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  pointer-events: none;
}
.shape-icon .dots{
	animation: rotate-anim 3s infinite linear;
}
.service-card .bg-shape img {
  width: 100%;
}
.service-card_text:hover {
    color: white;
}
.box-title a {
    color: inherit;
}
.service-card_number {
  position: absolute;
  top: 25px;
  right: 40px;
  font-size: 100px;
  line-height: 1;
  font-weight: bold;
  color: var(--smoke-color2);
  opacity: 0.3;
}
.service-card_text {
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  margin-bottom: 22px;
}
.service-card .th-btn {
  background-color: var(--smoke-color2);
  color: var(--title-color);
  padding: 12.5px 20px;
  box-shadow: none;
}

.service-card_number {
	position: absolute;
    top: 25px;
	font-family: 'Poppins', sans-serif;
    right: 40px;
    font-size: 100px;
    line-height: 1;
    font-weight: bold;
    color: #571315;
    opacity: 0.3;

}
.service-card .th-btn:before,
.service-card .th-btn:after {
  background-color:#e2e8fa;
}
.service-card:hover {
  width: 100%;
}
.service-card:hover:before,
.service-card:hover:after {
  opacity: 1;
  height: 120%;
  width: 120%;
  border-radius: 0;
}
.service-card:hover .shape-icon:before {
  background-color: white;
}
.service-card:hover .bg-shape {
  bottom: 0;
  opacity: 1;
}
.service-card:hover .service-card_text {
    color: white;
}
.service-card:hover .box-title a {
    color: white;
}
.shape-icon:before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: #fef2d1;
    -webkit-clip-path: path("M4.76563 19.2144C-2.32686 32.07 -1.20075 48.6639 6.14105 61.3767C16.4024 79.1459 38.9816 89.016 58.6174 83.4451C78.2532 77.8741 92.5688 56.7417 89.6127 36.3982C84.2306 -0.647078 23.3991 -14.559 4.76563 19.2144Z");
    clip-path: path("M4.76563 19.2144C-2.32686 32.07 -1.20075 48.6639 6.14105 61.3767C16.4024 79.1459 38.9816 89.016 58.6174 83.4451C78.2532 77.8741 92.5688 56.7417 89.6127 36.3982C84.2306 -0.647078 23.3991 -14.559 4.76563 19.2144Z");
    z-index: -1;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
	animation: rotate-anim 3s infinite linear;
}
.box-title {
    font-size: 24px;
    line-height: 1.417;
    font-weight: 700;
    margin-top: -0.32em;
}
.box-title a {
    color: inherit;
}
.service-card_text {
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
    margin-bottom: 22px;
}
.service-card .th-btn {

    color: black;
    padding: 12.5px 20px;
    box-shadow: none;
}

.service-card:hover .th-btn{
	color:white;
}

/* ============================================================== 
    # Milestones
=================================================================== */

p.milestones-text {
	word-break: break-word;
	overflow-wrap: anywhere;
	display: flex;
	text-align: center;
	justify-content: center;
	font-size: 18px;
	color: #7b0004;
  }
  .it-up-achive-shape2 img {
    width: 100%;
}
  
  .milestones-section {
	padding: 100px 0px;
	background-color: #fdf8f4;
  }
  .milestones-section .it-up-achive-shape1 {
	top: 0;
	left: -50px;
  }
  .milestones-section .it-up-achive-shape2 {
	bottom: 0;
	right: -50px;
  }
  
  .milestones-content {
	padding-top: 50px;
  }
  
  .col-lg-3:nth-child(2) .milestones-innerbox .inner-border:before, .col-lg-3:nth-child(2) .milestones-innerbox .inner-border:after {
	background-image: linear-gradient(to left bottom, #690000, #690000, #690000, #690000, #690000, #710002, #790003, #810004, #940005, #a70005, #bb0003, #cf0000);
  }
  .col-lg-3:nth-child(3) .milestones-innerbox .inner-border:before, .col-lg-3:nth-child(3) .milestones-innerbox .inner-border:after {
	background-image: linear-gradient(to left bottom, #690000, #690000, #690000, #690000, #690000, #710002, #790003, #810004, #940005, #a70005, #bb0003, #cf0000);
  }
  .col-lg-3:nth-child(4) .milestones-innerbox .inner-border:before, .col-lg-3:nth-child(4) .milestones-innerbox .inner-border:after {
	background-image: linear-gradient(to left bottom, #690000, #690000, #690000, #690000, #690000, #710002, #790003, #810004, #940005, #a70005, #bb0003, #cf0000);}
  
  .milestones-innerbox {
	width: 190px;
	height: 190px;
	margin: 0 auto;
	padding-top: 22px;
	border-radius: 100%;
  }
  .milestones-innerbox .inner-border {
	width: 100%;
	top: 0;
	left: 0;
	height: 100%;
	position: absolute;
	border-radius: 100%;
	border: 2px solid #57131554;
	animation-duration: 1500ms;
	animation: rotate-anim 3s infinite linear;
	animation-play-state: paused;
  }

@keyframes rotate-anim {
	0% {
	  transform: rotate(0deg);
	}
	100% {
	  transform: rotate(360deg);
	}
  }
  .milestones-innerbox .inner-border:after{
	content: "";
    position: absolute;
    background-image: linear-gradient(to left bottom, #690000, #690000, #690000, #690000, #690000, #710002, #790003, #810004, #940005, #a70005, #bb0003, #cf0000);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    height: 12px;
    width: 13px;
    border-radius: 50%;
    transition: transform 0.3s ease;

  }
  .milestones-innerbox .inner-border:before {
	top: 0;
    right: 26px;
	content: "";
    height: 24px;
    width: 23px;
	margin: 0 auto;
	position: absolute;
	border-radius: 100%;
	background-image: linear-gradient(to left bottom, #690000, #690000, #690000, #690000, #690000, #710002, #790003, #810004, #940005, #a70005, #bb0003, #cf0000);
  }
  .milestones-innerbox .inner-border:after {
    top: auto;
    bottom: 5px;
    right: 129px;
}
  .milestones-innerbox .milestones-icon {
	width: 65px;
	height: 65px;
	margin: 0 auto;
	margin-bottom: 17px;
  }
  .milestones-innerbox .milestones-text h3 {
	color: #000000;
	/* font-size: 40px; */
	line-height: 1;
	font-weight: 700;
	display: inline-block;
  }
  .milestones-innerbox .milestones-text strong {
	color: #000000;
	font-size: 26px;
	line-height: 1;
	font-family: "Nunito";
  }
  .milestones-innerbox .milestones-text p {
	color: #010101;
  }
  .milestones-innerbox:hover .milestones-icon {
	animation: icon-bounce 0.8s ease-out infinite;
  }
  .milestones-innerbox:hover .inner-border {
	animation-play-state: running;
  }
  
  /* milestones heading */
  .milestones-section h2 {
	text-transform: uppercase;
	font-weight: 600;
	margin: 0 0 15px 0;
  }
  .milestones-section span.section-devider {
	display: inline-block;
	width: 190px;
	text-align: center;
	font-size: 9px;
	color: #ec6607;
	position: relative;
	top: -15px;
  }
  .milestones-section span.section-devider:before {
	position: absolute;
	content: "";
	left: 0;
	top: 6px;
	height: 1px;
	width: 80px;
	background:#14176C;
  }
  .milestones-section span.section-devider span:before {
	position: absolute;
	content: "";
	width: 5px;
	height: 5px;
	background: #323232;
	border-radius: 100px;
	left: 78px;
	top: 4px;
  }
  .milestones-section span.section-devider span:after {
	position: absolute;
	content: "";
	width: 5px;
	height: 5px;
	background: #323232;
	border-radius: 100px;
	right: 76px;
	top: 4px;
  }
  .milestones-section span.section-devider:after{
	position: absolute;
	content: "";
	right: 0;
	top: 6px;
	height: 1px;
	width: 80px;
	background:#14176C;
  }
  

/* ============================================================== 
    # News Section
=================================================================== */

.event-two {
	position: relative;
	display: block;
	padding-top: 100px;
	z-index: 1;
	background-image: url(../images/service-bg.png);
  }
  
  .event-two__shape-1 {
	position: absolute;
	top: 27px;
	left: 0;
	opacity: .40;
  }
  
  .event-two__shape-1 img {
	width: auto;
  }
  
  .event-two__left {
	position: relative;
	display: block;
	margin-right: -15px;
	z-index: 5;
  }
  
  .event-two__left .section-title {
	margin-bottom: 28px;
  }
  
  .event-two__right {
	position: relative;
	display: block;
	margin-left: 77px;
	margin-right: -380px;
  }
  
  .event-two__single {
	position: relative;
	display: block;
  }
  
  .event-two__img-box {
	position: relative;
	display: block;
  }
  
  .event-two__img {
	position: relative;
	display: block;
	overflow: hidden;
	border-radius: 10px;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
	z-index: 1;
  }
  
  .event-two__img:before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	border-radius: 10px;
	background: rgb(49, 49, 49);
	background: linear-gradient(0deg, #571315 -13%, #39000000 100%);
	z-index: 1;
  }
  
  .event-two__img img {
	width: 100%;
	border-radius: var(--wishon-bdr-radius);
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
  }
  
  .event-two__single:hover .event-two__img img {
	transform: scale(1.05);
  }
  
  .event-two__date {
	position: absolute;
	top: 0;
	right: 0;
	background-color: #571315;
	border-radius: 10px;
	border-bottom-right-radius: 0;
	border-top-left-radius: 0;
	padding: 16px 18px 18px;
	z-index: 3;
  }
  
  .event-two__date span {
	font-size: 20px;
	font-weight: 700;
	line-height: 20px;
	color:white;

  }
  
  
  .event-two__date p {
	font-size: 12px;
	font-weight: 700;
	line-height: 12px;
	color:white;

	margin-top: -6px;
  }
  
  .event-two__content {
	position: absolute;
	bottom: 22px;
	left: 30px;
	right: 30px;
	z-index: 3;
  }
  
  .event-two__meta {
	position: relative;
	display: flex;
	align-items: center;
  }
  
  .event-two__meta li {
	position: relative;
	display: block;
  }
  
  .event-two__meta li+li {
	margin-left: 7px;
  }
  
  .event-two__meta li a {
	font-size: 14px;
	color:white;
	font-weight: 400;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
  }
  
  .event-two__meta li a:hover {
	color: #fef2d1;
  }
  
  .event-two__meta li a i {
	color: var(--wishon-primary);
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
  }
  
  .event-two__meta li a:hover i {
	color: var(--wishon-base);
  }
  
  .event-two__title {
	font-size: 22px;
	font-weight: 700;
	line-height: 31px;
	margin-top: 4px;
	color: wheat;
  }
  
  .event-two__title a {
	color: white;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
  }
  
  .event-two__title a:hover {
	color:  wheat;
  }
  .owl-dots {
    text-align: center;
    margin-top: 20px;
}
.owl-dot {
    display: inline-block;
    margin: 5px;
}
.owl-dot span {
    width: 12px;
    height: 12px;
    background: #ddd;
    display: block;
    border-radius: 50%;
    transition: all 0.3s ease;
}
.owl-dot.active span {
    background: #ff3c00;
}
.owl-carousel .owl-nav.disabled {
    display: block !important;
}
.owl-carousel .owl-nav button.owl-next, 

.owl-carousel .owl-nav button.owl-prev {

    width: 35px;

    height: 35px;

}

.owl-carousel .owl-dots {

    text-align: center;

    margin-top: 20px;

}

.owl-carousel .owl-dot {

    display: inline-block;

}

.owl-dot.active span {

	border: none;

}

.owl-dot span {

    display: block;

    height: 15px;

    margin: 0 6px;

    width: 15px;

    border-radius: 0% 50% 50% 50%;

    -webkit-border-radius: 0% 50% 50% 50%;

    -moz-border-radius: 0% 50% 50% 50%;

    -ms-border-radius: 0% 50% 50% 50%;

    -o-border-radius: 0% 50% 50% 50%;

    border: 2px solid #dfdfdf;

    z-index: 999999;

    background: #fff;

    transform: rotate(44deg);

}

.owl-prev, .owl-next {

    display: inline-block;

    background: #FCEBB3;

    padding: 0 10px;

    color: #fff;

	right: 20px;

    left: inherit;

    top: -70px;

	position: absolute;

}



.owl-prev {

    margin-right: 42px;

}

.owl-prev span:after,

.owl-next span:after {

	content: "";

    width: 35px;

    height: 35px;

    position: absolute;

    bottom: 0;

	z-index: -1;

	margin: auto;

    border-radius: 6px;

    transform: rotate(-45deg);

}

.owl-prev span:after {

    left: 2px;

    right: 0;

}

/* .owl-next span:after {

    left: 0;

    right: 0;

} */


.owl-next span:before {

    content: "\f105";

}

.owl-prev span:before {

    content: "\f104";

}

.owl-next span:before,

.owl-prev span:before {

	font-family: "Font Awesome 5 Free";

    font-size: 18px;

    line-height: 35px;

	color:#601112;

}
.owl-prev span:after, .owl-next span:after {
    content: "";
    width: 35px;
    height: 35px;
    position: absolute;
    bottom: 0;
    z-index: -1;
    margin: auto;
    border-radius: 6px;

}
.owl-next span, .owl-prev span {

    font-size: 0;

}


/* ============================================================== 
    # gallery section
=================================================================== */
.Gallery-section-bg{
	background-repeat: no-repeat;
background-size: cover;
	padding-bottom: 100px;
    padding-top: 50px;

}
.gallery-section .item {
    position: relative;
}
.broken-top-165 {
    margin-top: -165px;
}

.gallery-section .item {
    position: relative;
    overflow: hidden;
}

.gallery-section .event-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #33000073;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.gallery-section .btn-primary{
	background-color:#FFCD92;
	color:#5E0000;
}
.gallery-section .item:hover .event-overlay {
    opacity: 1;
}

	.gallery-section .event-overlay h5 {
		margin-bottom: 10px;
		text-align: center;
		color: white;
	}

.gallery-section .event-overlay i {
    align-self: center;
}
.owl-dots .owl-dot span {
	width: 10px;
	height: 10px;
	margin: 5px 7px;
	background: #D6D6D6;
	display: block;
	-webkit-backface-visibility: visible;
	transition: opacity .2s ease;
	border-radius: 30px;
}

.owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
	background: #869791;
}
/* .gallery-owl .owl-nav .owl-prev, .gallery-owl.owl-nav .owl-next {
    margin-left: 15px;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    border-radius: 55px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .15);
    font-size: 25px;
    transition: .5s;
} */
/* .gallery-owl .owl-nav .owl-prev, .gallery-owl .owl-nav .owl-next {
    margin-left: 15px;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    border-radius: 55px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .15);
    font-size: 25px;
    transition: .5s;
} */
/* ============================================================== 
    # Footer Style
=================================================================== */
.footer-layout1 {
	background-color: #510000;
    --body-color: #fff;
    overflow: hidden;
}
.footer-layout1 .footer-top {
    background-color: #571315;
    position: relative;
    z-index: 2;
}
@media (max-width: 1500px) {
    .footer-layout1 .logo-bg {
        width: 27%;
    }
}
.footer-layout1 .logo-bg {
    position: absolute;
    left: 0;
    top: 0;
    background-color: white;
    height: 101%;

    z-index: -1;
    -webkit-clip-path: polygon(100% 0, calc(100% - 60px) 50%, 100% 100%, 0 100%, 0 0);
    clip-path: polygon(100% 0, calc(100% - 60px) 50%, 100% 100%, 0 100%, 0 0);
}
.footer-layout1 .logo-bg:before {
    content: "";
    height: 100%;
    width: calc(100% - 10px);
    background-color: #FCEBB3;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-clip-path: polygon(100% 0, calc(100% - 60px) 50%, 100% 100%, 0 100%, 0 0);
    clip-path: polygon(100% 0, calc(100% - 60px) 50%, 100% 100%, 0 100%, 0 0);
}
.footer-layout1 .footer-logo {
    padding: 45px 45px 45px 0;
}
.icon-masking {
    position: relative;
    display: inline-block;
    height: auto;
    width: auto;
}
.icon-masking .mask-icon {
    position: absolute;
    height: 100%;
    width: 100%;
    mix-blend-mode: hue;
    background: #571315;
    top: 0;
}
.footer-contact-wrap {
    
		display: grid;
		grid-template-columns: auto auto auto;
		-webkit-box-pack: justify;
		-webkit-justify-content: space-between;
		-ms-flex-pack: justify;
		justify-content: right;
		gap: 15px;
	
}
.footer-contact {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
}
.footer-contact_icon {
	width: 71px;
    height: 57px;
    line-height: 60px;
    min-width: 70px;
    font-size: 30px;
    background-color:white;
    color: #571315;
    border-radius: 5px;
    text-align: center;
    position: relative;
}
.footer-contact_icon:before {
    content: "";
    height: 100%;
    width: 100%;
    background-color: #FCEBB3;
    border-radius: inherit;
    position: absolute;
    top: -10px;
    left: -10px;
    z-index: -1;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}
.media-body {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
}
.footer-contact_text {
    display: block;
    color:white;
    margin-bottom: 5px;
}
.footer-contact_text a{
	color:wheat;
}
.footer-contact_link {
    display: inline-block;
    color: white;
    font-size: 20px;
    font-weight: 600;
}
.widget-area {
    padding-top: 50px;

}
.footer-wrap {
    width: 100%;
  background-color: #FFF9F4;
    padding: 30px 0;
  }
  
  .footer-wrap p {
  
    color: #000;
    margin-top: 15px;
  }
  
  .footer-wrap h3 {
    font-size: 20px;
    line-height: 30px;
    color: #DB4242;
    font-weight: bold;
    padding: 0;
    margin: 0;
  }
  
  .footer-links {
    list-style: none;
    margin-bottom: 0;
    padding-left: 10px;
  }
  
  .footer-links li {
    margin-bottom: 6px;
  }
  
  .footer-links li a {
    text-decoration: none;
    color:#fff;
  
  }
  h3.foot-address {

		position: relative;
		left: 15px;
		color: wheat;
	
}
h3.foot-address::after{
	position: absolute;
    content: '';
    width: 70px;
    height: 2px;
    background-image: linear-gradient(270deg, #601112 0%, #ffffff 100%);
    right: -74px;
    right: 193px;
    top: 14px;
}
h3.foot-address-contact {

	position: relative;
	left: 15px;
	color: wheat;

}

h3.foot-address-contact::after{
	position: absolute;
    content: '';
    width: 70px;
    height: 2px;
    background-image: linear-gradient(270deg, #601112 0%, #ffffff 100%);
	right: 28px;
    top: 16px;

}
.widget-area .h3.foot-address::after {
    background-image: linear-gradient(270deg, #ff3b00 0%, #05091d 100%);
}

.footer-links li a::before {
    content: "\f054";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    padding-right: 10px;
    color: wheat;
}
.footer-shape{
    position: absolute;
    top: -40px;
    right: 0;
    mix-blend-mode: luminosity;
}
.footer-shape img {
    position: absolute;
    bottom: 0;
}
.copyright-wrap.bg-title {
    background-color: #390000;
    /* line-height: 1; */
}
.map_cnt.mt-2 iframe {
    border-radius: 8px;
    border: 2px solid rgba(255, 179, 179, 0.8);
}
  .footer-links li a:hover {
    color: #DB4242;
  }
  
  .insta_pics li {
    display: inline-block;
    padding-right: 5px;
    margin-bottom: 9px;
  }
  
  .footer_info {
    width: 100%;
  }
  
  .footer-adress {
    list-style: none;
    padding-left: 0px;
    margin-bottom: 0;
  }
  
  .footer-adress li {
    margin: 0;
    padding-bottom: 15px;
    display: flex;
  }
  
  .footer-adress li:last-child {
    padding-bottom: 0;
  }
  
  .footer-adress li>i {
	vertical-align: top;
    font-size: 16px;
    color: #fff;
    width: 30px;
	padding: 8px 6px;


  }
  
  .footer-adress li span a,
  .footer-adress li span {
  
    color:white;
    text-decoration: none;
  }
  
  
  .footer_phone a {
    font-size: 16px !important;
  }
  
  .footer_address i,
  .footer_phone i {
    font-size: 20px !important;
  }
  
  .footerLinks li {
    position: relative;
    padding-left: 16px;
  }
  
  .footerLinks li a {
    font-size: 14px;
    color: white;
    line-height: 30px;
    text-decoration: none;
  }
  h3.quick-contact {
    color: wheat;
}
  h3.foot-address-contact1 {
    color: wheat;
}
/* h3.foot-address-contact1::after{
	position: absolute;
    content: '';
    width: 70px;
    height: 2px;
    background-image: linear-gradient(270deg, #601112 0%, #ffffff 100%);
    right: 28px;
    top: 16px;

} */


  
  
  .footerLinks ul li a span{
  font-size: 16px;
  color: #4896DE;
  display: inline-block;
  width: 24px;
  height: 24px;
  border: 1px solid #262121;
  border-radius: 50%;
  text-align: center;
  line-height: 24px;
  margin-right: 8px;
}
  .footer-bottom {
    background-color:rgba(255, 179, 179, 0.8);
  }
  .footer-wrap h3.ml-1 {
    margin-left: 13px;
}
.benefit-one__fact__icon {
	width: 40px;
    height: 40px;
    -webkit-mask: url(data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 55 55" ><path d="m11.7 48.1q-20.7-15.8-4.8-36.4 15.8-20.7 36.5-4.8 20.6 15.8 4.7 36.5-15.8 20.6-36.4 4.7z"/></svg>);
    mask: url(data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 55 55" ><path d="m11.7 48.1q-20.7-15.8-4.8-36.4 15.8-20.7 36.5-4.8 20.6 15.8 4.7 36.5-15.8 20.6-36.4 4.7z"/></svg>);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center center;
    mask-position: center center;
    -webkit-mask-size: cover;
    mask-size: cover;
    background-color: var(--accent-color);
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    z-index: 1;
    font-size: 35px;
    color: var(--careox-white, #fff);
    margin-right: 20px;
    display: flex;
    align-items: center;
    margin: auto;
    justify-content: center;
    transition: all 0.5s ease;
}

.btn-square:hover {
    background-color: wheat;
    color: white;
}
p.copyright-text {
    color: wheat;
    /* padding: 8px; */
    justify-content: center;
    /* text-align: center; */
    /* line-height: 1; */
    margin: 10px;
}



/* ============================================================== 
    # Responsive CSS
=================================================================== */

@media only screen and (min-width: 992px) and (max-width: 1199px) {


	.align-center {
		align-items: center;
	}

	.banner-style-two .container .banner-thumb img {
		height: auto;
		max-width: 50%;
		margin: 0;
		min-height: auto;
	}

	.banner-style-two .container .banner-thumb {
		text-align: right;
		display: flex;
		justify-content: right;
		top: auto;
		height: auto;
		display: none;
	}

	.banner-style-four h2 {
		font-size: 60px;
	}

	

	/* Team Single */
	.team-single-area .team-content-top {
		bottom: 0;
		margin: 0;
		padding-bottom: 120px;
	}

	.team-single-area .team-content-top .right-info {
		margin-bottom: 0;
	}


	/* Partner */
	.partner-heading::before {
		right: -50px;
	}

	.partner-heading::after {
		right: -50px;
	}

	/* Why Choose Us */
	.choose-us-style-one-area::after {
		width: 65%;
	}

	.partner-style-one-area .align-center {
		align-items: center;
	}

	.bottom-shape-light::after {
		top: 480px;
	}

	/* Feature */
	.half-angle-shape::after {
		transform: skewX(-7deg);
		width: 53%;
	}

	.feature-style-one-heading .arrow-shape {
		right: -150px;
	}

	/* Pricing */
	.pricing-badge {
		display: none;
	}


	
/* Home Software Landing */
	.soft-overview .overlay {
		position: inherit;
		top: 0;
		margin-top: 30px;
		max-width: 100%;
	}

	.soft-overview {
		padding-right: 0;
		padding-bottom: 0;
	}
}

/* Tablet Layout Custom */
@media only screen and (min-width: 768px) and (max-width: 1023px) {
}

@media screen and (max-width: 991px) {
  
	/* global reset - start */
	.order-last {
		order: 0;
	}
}

/* Tablet Layout: 768px.*/
@media only screen and (min-width: 768px) and (max-width: 991px) {

	/* Topbar */
	.top-bar-area .social {
		display: none;
	}

	.top-bar-area .item-flex {
		justify-content: center;
	}

	.top-bar-area .call-entry {
		display: none;
	}

	.top-bar-style-two {
		border-bottom: 1px solid #e7e7e7;
		background: var(--bg-gray);
	}

	/* Banner */
	.banner-style-two .container .banner-thumb {
		position: inherit;
		height: auto;
		max-width: 60%;
		margin: auto;
		display: none;
	}

	.banner-style-two .content {
		padding-top: 100px;
		padding-bottom: 120px;
	}

	.banner-style-two .container .banner-thumb img {
		margin-top: 50px;
	}

	.banner-area.navigation-right-botom.navigation-custom-large .swiper-button-prev {
		left: 50%;
		margin-left: -50px;
	}

	.banner-area.navigation-right-botom.navigation-custom-large .swiper-button-next {
		right: auto;
		left: 50%;
		margin-right: -50px;
	}

	.banner-style-four .thumb {
		display: none;
	}

	.banner-style-four .content {
		padding-top: 120px;
	}
	

	.shape-animated-left {
		display: none;
	}

	.triangle-shape {
		display: none;
	}

	.shape-right-bottom {
		max-width: 30%;
		bottom: -150px;
		display: none;
	}

	.feature-style-two-area {
		background-size: 0;
	}

	.shape-light-bottom::after {
		display: none;
	}


	.estimate-thumb {
		margin-top: 50px;
		text-align: center;
	}

	.estimate-thumb img {
		width: 100%;
	}


	
	/* Process */
	.process-style-one {
		margin-top: 60px;
		padding: 0 25%;
	}

	.col-lg-4:first-child .process-style-one {
		margin-top: 0;
	}

	/* Faq */

	.faq-style-one.default-padding {
		padding-bottom: 0;
	}

	.faq-thumb {
		text-align: center;
	}

	.faq-thumb img {
		max-width: 50%;
		margin-top: 20px;
	}

	.faq-style-one-area {
		background-size: contain;
	}

	/* Partner */

	.partner-heading {
		margin-bottom: 15px;
	}

	.partner-heading::after {
		display: none;
	}

	.partner-heading::before {
		display: none;
	}

	.partner-style-two-area {
		text-align: center;
	}

	.partner-heading h3 strong {
		color: var(--white);
	}


	/* Choose Us */
	.choose-us-style-one-area::after {
		width: 100%;
		transform: inherit;
		left: 0;
	}

	.choose-us-style-one-area .text-invisible {
		font-size: 100px;
		bottom: 20px;
	}

	/* Partner */
	.partner-map {
		text-align: center;
		margin-bottom: 50px;
	}

	.partner-items ul li {
		border: 1px solid #e7e7e7;
	}

	/* Portfolio */
	.gallery-items.colums-2 .gallery-item,
	.gallery-items.colums-3 .gallery-item {
		width: 50%;
	}

	.project-swiper-nav {
		position: relative;
		top: 0;
	}

	.project-style-one .info {
		padding: 50px;
		left: 0;
		margin: 0;
	}

	.project-style-one-carousel .swiper-wrapper {
		padding-bottom: 30px;
	}

	.project-swiper-nav .project-pagination {
		color: var(--color-heading);
	}

	.project-style-one-carousel {
		margin: 0;
		padding: 0;
	}

	.gallery-style-two .overlay {
		left: 30px;
		right: 30px;
	}

	.gallery-item.active .overlay {
		opacity: 0;
		visibility: hidden;
		transform: translateX(60px);
	}

	.gallery-item.active .shape {
		bottom: -30%;
		opacity: 0;
		visibility: hidden;
	}

	.shape-animated-arrow {
		display: none;
	}

	.project-details-area .top-info {
		margin-top: 30px;
	}

	/* Team Single */
	.team-single-area .team-content-top .right-info {
		padding: 0 15px;
		margin: 0;
	}

	.team-single-area .team-content-top img {
		margin-bottom: 40px;
	}

	.team-single-area .team-content-top {
		margin: 0;
		bottom: 0;
		padding-bottom: 120px;
	}

	.team-single-area .bottom-info .skill-items {
		padding-left: 0;
		margin-top: 50px;
	}


	/* Request Call Back */
	.request-call-back-area .text-end {
		text-align: left !important;
	}

	.achivement-counter ul {
		margin: 0 -15px;
	}

	.achivement-counter {
		border: none;
		padding: 0;
		margin-top: 50px;
	}

	.achivement-counter li {
		margin: 0;
		width: 50%;
		float: left;
		border-right: 1px solid rgba(255, 255, 255, 0.3);
		padding: 0 30px;
	}

	.achivement-counter li .icon {
		float: left;
	}

	.achivement-counter li:last-child {
		border: navajowhite;
	}

	.achivement-counter .fun-fact .medium {
		margin-top: 8px;
		display: block;
	}

	.achivement-counter li i {
		line-height: 0;
	}

	.request-call-back-area .achivement-counter {
		display: none;
	}


	/* Pricing */
	.pricing-badge {
		display: none;
	}


	/* Testimonial */
	.testimonial-style-one-area {
		text-align: center;
	}

	.testimonial-thumb::after {
		height: 500px;
		width: 500px;
	}

	.testimonial-thumb .thumb-item img {
		max-width: 490px;
	}

	.testimonial-thumb .thumb-item img {
		border-radius: 0 0 400px 400px;
		position: relative;
	}

	.testimonial-thumb .thumb-item {
		margin-bottom: 50px;
		margin-top: -35px;
	}

	.testimonial-thumb .mini-shape {
		right: 10%;
		top: 35%;
	}

	.testimonial-style-one .provider {
		justify-content: center;
	}

	/* Cirlce Progressbar */
	.half-angle-shape::after {
		width: 100%;
		transform: inherit;
		left: 0;
	}

	.feature-style-one-heading .arrow-shape {
		right: auto;
		top: -70px;
		height: 40px;
		left: -30px;
	}

	.circle-progress {
		display: block;
		border-bottom: 1px solid rgba(255, 255, 255, 0.3);
		padding-bottom: 50px;
		display: none;
	}

	.circle-progress .progressbar {
		display: inline-block;
		margin-right: 70px;
	}

	.feature-style-one {
		width: 50%;
		float: left;
		margin: 0;
		border: none;
		padding: 0 30px;
		display: block;
	}

	.feature-style-one:first-child {
		padding-left: 0;
	}

	.feature-style-one:last-child {
		padding-right: 0;
	}

	.feature-style-one h4 {
		color: var(--white);
	}

	.feature-style-one p {
		color: var(--white);
		opacity: 0.8;
	}

	.feature-style-one .icon {
		margin: 0;
		margin-bottom: 20px;
	}

	/* Contact */
	.contact-style-one-area.half-shape-top::after {
		height: 100%;
		background: transparent;
	}



	/* Footer */
	.footer-bottom {
		text-align: center;
	}

	.footer-bottom .text-end {
		text-align: center !important;
		margin-top: 10px;
	}

	.footer-shape .item:nth-child(2) img {
		display: none;
	}

	.footer-bottom .text-end li {
		margin: 0 15px;
	}

	.footer-shape .item.bottom {
		height: auto;
		top: auto;
		bottom: 0;
		max-width: 30%;
	}

	/* Home Software Landing */
	.feature-style-five-grid {
		grid-template-columns: 1fr 1fr;
	}

	.banner-style-six .content {
		padding-top: 120px;
	}

	.banner-style-six .content .thumb img:first-child {
		transform: inherit;
	}

	.banner-style-six .content .thumb img:nth-child(2) {
		transform: inherit;
		right: 0;
	}

	.banner-style-six .content .thumb {
		padding-right: 50px;
	}

	.fun-factor-style-two-box .fun-fact {
		display: block;
		text-align: center;
	}

	.fun-factor-style-two-box .fun-fact .counter {
		margin: 0;
		align-items: center;
		justify-content: center;
		margin-bottom: 15px;
	}

	.fun-factor-style-two-box {
		border: beige;
		padding-top: 60px;
		padding-bottom: 0;
	}
erview {
		padding: 0;
	}

	.soft-overview .overlay {
		position: inherit;
		margin-top: 30px;
		max-width: 100%;
	}

	.video-bg-live {
		width: 100%;
	}

	.software-video-preview {
		padding: 180px 0;
		margin-bottom: 20px;
	}

	.software-video-preview .video-play-button {
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
	}


	.process-style-two .thumb {
		width: 320px;
		position: relative;
		left: -20px;
	}

	.process-style-two .thumb span {
		right: 0;
		font-size: 50px;
	}

	.process-style-two-area {
		overflow: hidden;
		background-size: contain;
		background-position: center top;
	}

	.process-style-two {
		margin-top: 50px;
	}

	.process-style-two-items {
		margin-top: -20px;
	}


	.gallery-style-four img {
		width: 100%;
	}
}


/* Mobile Layout: 320px. */
@media only screen and (max-width: 767px) {

	/* Topbar */
	.top-bar-area {
		display: none;
	}


	/* Banner Area */
	.banner-area h2 {
		font-size: 36px !important;
		line-height: 1.2 !important;
	}

	.banner-area.banner-style-one .content {
		padding-bottom: 100px;
	}

	.banner-style-four h2 {
		font-size: 36px;
		line-height: 1.2;
	}

	.banner-style-four .content {
		padding: 60px 0;
	}

	.banner-style-four .thumb {
		display: none;
	}

	.banner-style-two .container .banner-thumb {
		display: none;
	}



	/* About Style Four */
	.company-autor {
		position: inherit;
		margin-top: 30px;
	}

	.shape-light-bottom::after {
		display: none;
	}



	/* Team Single */
	.team-single-area .team-content-top .right-info {
		padding: 0 15px;
		margin: 0;
	}

	.team-single-area .team-content-top img {
		margin-bottom: 40px;
	}

	.team-single-area .team-content-top {
		margin: 0;
		bottom: 0;
		padding-bottom: 60px;
	}

	.team-single-area .bottom-info .skill-items {
		padding-left: 0;
		margin-top: 50px;
	}



	/* Process */

	.process-style-one {
		margin-top: 50px;
	}

	.col-lg-4:first-child .process-style-one {
		margin-top: 0;
	}

	.process-style-one .thumb::before {
		opacity: 1;
		visibility: visible;
	}

	/* Why Choose Us */
	.choose-us-style-one-area .cover-bg {
		width: 100%;
		display: none;
	}

	.choose-us-style-one-area::after {
		transform: none;
		width: 100%;
		left: 0;
		opacity: 1;
	}

	.list-item::after {
		display: none;
	}

	.list-item {
		padding-left: 0;
	}

	.choose-us-style-one-area .text-invisible {
		font-size: 60px;
		right: auto;
		left: 10px;
		bottom: 0;
		opacity: 0.2;
		display: none;
	}

	/* Estimate Form */
	.price-range-slider .range-bar {
		float: left;
		width: 100%;
		margin-top: 15px;
	}

	.price-range-slider .range-value input {
		float: left;
		width: 100%;
		text-align: left;
		margin-top: 10px;
	}

	.price-range-slider .range-value span {
		font-size: 20px;
	}

	.estimate-thumb {
		margin-top: 40px;
	}

	.estimate-thumb .shape {
		display: none;
	}


	/* Our Mission */

	.shape-top-left {
		display: none;
	}

	.mission-tab-navs button {
		margin: 0 !important;
		width: 100%;
		margin-bottom: 15px !important;
		border: 1px solid var(--dark) !important;
	}

	.mission-tab-navs button:last-child {
		margin-bottom: 0 !important;
	}

	/* Team */
	.team-style-two .thumb {
		padding-left: 0;
	}

	.team-style-two .info {
		max-width: 100%;
		padding: 15px 30px;
	}

	.team-style-two .thumb img {
		border-radius: 10px 10px 0 0;
	}

	.team-style-two .social {
		left: 30px;
		bottom: 15px;
	}

	.team-style-two .thumb::after {
		left: 40px;
		top: 30px;
		display: none;
	}

	.team-style-two:hover .thumb::after {
		height: 30%;
	}

	.team-single-list {
		grid-template-columns: 1fr;
		grid-row-gap: 40px;
	}



	/* Partner */

	.partner-map {
		text-align: center;
	}

	.partner-items ul {
		grid-template-columns: 1fr 1fr;
		margin-top: 50px;
	}

	.partner-items ul li::after {
		display: none;
	}

	.partner-items ul li {
		border: 1px solid #e7e7e7;
	}

	/* Feature */
	.half-angle-shape::after {
		display: none;
	}

	.feature-style-one-heading h2 {
		color: var(--color-heading);
	}

	.feature-style-one-heading.text-light p {
		color: var(--color-paragraph);
		opacity: 1;
	}

	.circle-progress .circle strong {
		color: var(--color-heading);
	}

	.feature-style-one {
		display: block;
	}

	.feature-style-one .icon {
		margin: 0;
		margin-bottom: 30px;
	}

	.circle-progress .progressbar h4 {
		color: var(--color-heading);
		opacity: 1;
	}

	.feature-style-one-heading .arrow-shape {
		display: none;
	}
	
	/* Feature */
	.circle-progress {
		grid-template-columns: 1fr;
		grid-row-gap: 30px;
	}

	.feature-style-one-area {
		text-align: center;
	}

	.default-features {
		display: grid;
		grid-template-columns: 1fr 1fr;
		grid-column-gap: 30px;
	}


	/* SEO Form */
	form.seo-form button {
		position: inherit;
		border: none;
		width: 100%;
		left: 0;
		right: 0;
		min-height: 60px;
	}

	form.seo-form input {
		background: rgba(255, 255, 255, 0.2);
		border-radius: 30px;
		margin-bottom: 10px;
		border: none !important;
		text-align: center;
	}

	form.seo-form {
		text-align: center;
		padding: 30px;
	}

	form.seo-form input[type="email"] {
		padding-right: 30px;
	}


	/* Testimonial */

	.testimonial-thumb .mini-shape {
		right: 0;
	}

	.testimonial-thumb .thumb-item {
		margin-bottom: 30px;
		text-align: center;
	}

	.testimonial-style-one {
		text-align: center;
	}

	.testimonial-style-one .provider {
		justify-content: center;
		text-align: left;
	}

	.testimonial-thumb .thumb-item > img {
		height: 500px;
		border-radius: 0 0 480px 485px;
	}

	.testimonial-thumb .thumb-item {
		border-radius: inherit;
		margin-top: -30px;
	}

	
	.shape-right-bottom {
		display: none;
	}

	.about-style-three .thumb {
		margin-bottom: 70px;
	}


	/* Partner */

	.partner-heading {
		margin-bottom: 15px;
	}

	.partner-heading::after {
		display: none;
	}

	.partner-heading::before {
		display: none;
	}

	.partner-style-two-area {
		text-align: center;
	}

	.partner-heading h3 strong {
		color: var(--white);
	}

	
	/* Fun Factor */
	.fun-factor-style-one-box .item {
		margin-top: 30px;
	}

	.fun-factor-style-one-box .item .fun-fact {
		border-top: 1px solid #dddddd;
		display: block;
		padding-top: 30px;
	}

	.fun-factor-style-one-box .item:first-child {
		margin-top: 0;
	}

	.fun-factor-style-one-box .item:first-child .fun-fact {
		padding-top: 0;
		border: none;
	}

	/* Request Call Back */
	.achivement-counter {
		border: none;
		padding: 0;
		margin-top: 60px;
		display: block;
	}

	.request-call-back-area {
		text-align: center;
	}

	.achivement-counter li {
		display: block;
		text-align: center;
		margin-top: 60px;
	}

	.achivement-counter li i {
		margin: 0;
		margin-bottom: 10px;
		line-height: 1;
	}

	.achivement-counter .fun-fact .counter {
		justify-content: center;
	}

	/* Marketing Type */
	.marketing-types {
		height: 100%;
		width: 100%;
		border: none;
		padding: 0;
		display: block;
		text-align: left;
		margin: 0;
	}

	.marketing-types::before, 
	.marketing-types::after {
		display: none;
	}

	.marketing-types .icon {
		display: none;
	}

	.marketing-types .blur-shape {
		display: none;
	}

	.types-list {
		grid-template-columns: 1fr;
		grid-row-gap: 10px;
	}

	/* FAQ */
	.faq-thumb img {
		max-width: 50%;
		margin: auto;
	}

	.faq-thumb {
		text-align: center;
	}

	.faq-style-one-area {
		background-size: contain;
	}

	/* Pricing */
	.pricing-badge {
		display: none;
	}


	/* Portfolio */

	.project-swiper-nav {
		position: relative;
		top: 0;
	}

	.project-style-one .info {
		padding: 50px;
		left: 0;
		margin: 0;
	}

	.project-style-one-carousel .swiper-wrapper {
		padding-bottom: 30px;
	}

	.project-swiper-nav .project-pagination {
		color: var(--color-heading);
	}

	.gallery-style-two .overlay {
		left: 30px;
		right: 30px;
	}

	.gallery-item.active .overlay {
		opacity: 0;
		visibility: hidden;
		transform: translateX(60px);
	}

	.gallery-item.active .shape {
		bottom: -30%;
		opacity: 0;
		visibility: hidden;
	}

	.shape-animated-arrow {
		display: none;
	}

	.load-more-info {
		display: none;
	}

	.project-details-area .top-info {
		margin-top: 15px;
	}

	ul.check-list {
		grid-template-columns: 1fr;
	}

	

	/* Home Blog */
	.blog-meta ul {
		display: block;
	}

	.blog-meta ul li::after {
		display: none;
	}

	.blog-meta ul li {
		display: inline-block;
		padding-right: 18px;
	}

	/* Contact */
	.contact-style-one-area.half-shape-top::after {
		height: 100%;
	}

	.contact-style-one-area.half-shape-top::after {
		height: 100%;
		background: transparent;
	}

	.contact-shape {
		display: none;
	}

	.contact-form-style-one {
		margin-top: 30px;
		padding: 50px 30px;
	}

	.maps-area iframe {
		min-height: 360px;
	}

	

	.title {
		font-size: 36px;
	}




	.about-style-five-thumb h2 {
		display: none;
	}

	.about-style-five-thumb {
		margin-bottom: 30px;
		grid-template-columns: 1fr;
		grid-row-gap: 30px;
		margin-top: 0;
	}

	.about-style-five-thumb img {
		width: 100%;
	}

	.about-style-five-thumb img:nth-child(2) {
		display: none;
	}



}

/* Max Wide Mobile Layout: 600px. */
@media only screen and (min-width: 600px) and (max-width: 767px) {
}
  
  /* Max Wide Mobile Layout: 600px. */
@media only screen and (min-width: 600px) and (max-width: 1200px) {
  
	  /* Portfolio */
	.gallery-items.colums-4 .pf-item {
		width: 50%;
	}
}

  /* Wide Mobile Layout: 480px. */
@media only screen and (min-width: 480px) and (max-width: 767px) {
}

@media only screen and (max-width: 500px) {

	/* About */
	.owner-info .right-info {
		display: none;
	}

	.owner-info .left-info {
		margin: 0;
		padding: 0;
		border: none;
	}

	.about-card li {
		display: block;
		text-align: center;
	}

	.about-card li .fun-fact {
		text-align: center;
	}

	.about-card li .icon {
		margin-bottom: 40px;
	}

	.about-card .fun-fact .counter {
		justify-content: center;
	}

	.about-style-four .fun-fact {
		display: block;
		border: none;
		margin: 0;
		padding: 0;
		margin-top: 30px;
	}

	/* Testimonial */

	.testimonial-style-two .provider {
		display: block;
	}

	.testimonial-style-two .provider .thumb {
		margin-top: 15px;
	}

	/* Team */
	.team-single-area .right-info .social .share-link {
		display: none;
	}

	
	/* Home solar */
	.about-style-five-info ul li {
		margin: 0;
		padding: 0;
		border: none;
		display: block;
		width: 100%;
		margin-top: 30px;
		text-align: center;
	}

	.about-style-five-info ul li i {
		margin: 0;
		margin-bottom: 15px;
	}

	.about-style-five-info ul li .fun-fact {
		text-align: center;
		justify-content: center;
		align-items: center;
		display: block;
	}

	.about-style-five-info ul li .counter {
		justify-content: center;
	}

	.about-style-five-info ul li:first-child {
		margin-top: 0;
	}

	.about-style-five-info {
		text-align: center;
	}

	
}

@media only screen and (max-width: 400px) {

	/* About */
	.default-features {
		grid-template-columns: 1fr;
		grid-row-gap: 30px;
	}

	.default-feature-item {
		text-align: center;
	}

	/* Testimonial */

	.testimonial-thumb .mini-shape {
		right: 0;
	}

	.testimonial-thumb::after {
		height: 320px;
		width: 320px;
		bottom: 0;
	}

	.testimonial-thumb .thumb-item {
		padding: 0 30px;
		margin-bottom: 30px;
	}

	.testimonial-thumb .thumb-item > img {
		border-radius: 0 0 400px 400px;
		position: relative;
		margin-bottom: -4px;
		height: auto;
	}

	.testimonial-thumb .mini-shape {
		right: 0;
	}

	.testimonial-thumb::after {
		height: 320px;
		width: 320px;
		bottom: 0;
	}

	.testimonial-thumb .thumb-item {
		padding: 0 30px;
		margin-bottom: 30px;
	}

	.testimonial-thumb .thumb-item img {
		border-radius: 0 0 400px 400px;
		position: relative;
		margin-bottom: -4px;
	}

	.testimonial-style-one {
		text-align: center;
	}

	.testimonial-style-one .provider {
		justify-content: center;
		text-align: left;
	}

	.testimonial-style-one p {
		font-size: 20px;
	}

	.testimonial-style-one h4 {
		font-size: 20px;
	}

	.testimonial-style-one .provider i {
		font-size: 70px;
	}
}



/* ============================================================== 
     # Preloader 
=================================================================== */

 /* Preloader */
.ctn-preloader {
  align-items: center;
  -webkit-align-items: center;
  display: flex;
  display: -ms-flexbox;
  height: 100%;
  justify-content: center;
  -webkit-justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 999999;
  background: #601112;
}
.ctn-preloader .animation-preloader {
  position: absolute;
  z-index: 100;
}
/* Spinner cargando */
.ctn-preloader .animation-preloader .spinner {
  animation: spinner 1.5s infinite linear;
  border-radius: 50%;
  border: 3px solid rgb(101 92 151 / 6%);
  border-top-color: #fbebb3;
  border-bottom-color: #fbebb3;
  height: 170px;
  margin: 0 auto 45px auto;
  width: 170px;
}
/* Texto cargando */
.ctn-preloader .animation-preloader .txt-loading {
  text-align: center;
  user-select: none;
}
.ctn-preloader .animation-preloader .txt-loading .letters-loading:before {
  animation: letters-loading 4s infinite;
  color: #fbebb3;
  content: attr(data-text-preloader);
  left: 0;
  opacity: 0;
  top: 0;
  line-height: 70px;
  position: absolute;
}
.ctn-preloader .animation-preloader .txt-loading .letters-loading {
  font-family: "Rubik", sans-serif;
  font-weight: 500;
  letter-spacing: 15px;
  display: inline-block;
  color: rgb(101 92 151 / 14%);
  position: relative;
  font-size: 70px;
  line-height: 70px;
}
.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(2):before {
  animation-delay: 0.2s;
}
.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(3):before {
  animation-delay: 0.4s;
}
.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(4):before {
  animation-delay: 0.6s;
}
.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(5):before {
  animation-delay: 0.8s;
}
.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(6):before {
  animation-delay: 1s;
}
.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(7):before {
  animation-delay: 1.2s;
}
.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(8):before {
  animation-delay: 1.4s;
}
.ctn-preloader .loader-section {
  background-color: #ffffff;
  height: 100%;
  position: fixed;
  top: 0;
  width: calc(50% + 1px);
}
.loaded .animation-preloader {
  opacity: 0;
  transition: 0.3s ease-out;
}
/* AnimaciÃ³n del preloader */
@keyframes spinner {
  to {
    transform: rotateZ(360deg);
  }
}
@keyframes letters-loading {
  0%,
  75%,
  100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }

  25%,
  50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}

@media screen and (max-width: 767px) {
  .ctn-preloader .animation-preloader .spinner {
    height: 8em;
    width: 8em;
  }
}
@media screen and (max-width: 500px) {
  .ctn-preloader .animation-preloader .spinner {
    height: 7em;
    width: 7em;
  }
  .ctn-preloader .animation-preloader .txt-loading .letters-loading {
    font-size: 40px;
    letter-spacing: 10px;
  }
}

.download-button {
	position: relative;
	border-width: 0;
	color: white;
	font-size: 15px;
	font-weight: 600;
	border-radius: 4px;
	z-index: 1;
	float:right;
   }
   
   .download-button .docs {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	min-height: 40px;
	padding: 0 10px;
	border-radius: 4px;
	z-index: 1;
	background-color: #601112;
	border: solid 1px #e8e8e82d;
	transition: all .5s cubic-bezier(0.77, 0, 0.175, 1);
   }
   
   .download-button:hover {
	box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
   }
   
   .download {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: 90%;
	margin: 0 auto;
	z-index: -1;
	border-radius: 4px;
	transform: translateY(0%);
	background-color: #fcebb3;
   
	transition: all .5s cubic-bezier(0.77, 0, 0.175, 1);
	color:black;
   }
   
   .download-button:hover .download {
	transform: translateY(100%)
   }
   
   .download svg polyline,.download svg line {
	animation: docs 1s infinite;
   }
   
   @keyframes docs {
	0% {
	 transform: translateY(0%);
	}
   
	50% {
	 transform: translateY(-15%);
	}
   
	100% {
	 transform: translateY(0%);
	}
   } 
@media only screen and (max-width: 600px) {
	.milestones-section .it-up-achive-shape1{
		bottom: 0;
	
		left: -382px !important;
    }
	.milestones-section .it-up-achive-shape2 {
		bottom: 0;
		right: 0px !important;
	}}
	@media (max-width: 1199px) {
		.footer-layout1 .logo-bg {
			
			color:wheat;
		}
	}
	@media (max-width: 575px) {
		.footer-contact-wrap {
			display: flex;
			grid-template-columns: auto auto auto;
			-webkit-box-pack: justify;
			-webkit-justify-content: space-between;
			-ms-flex-pack: justify;
			justify-content: space-between;
		}
		h3.foot-address::after {
		
			right: 89px;
			
		}
	}
	
/* ============================================================== 
     # Mobile device response
=================================================================== */
@media (max-width: 767px) {
    .img-box1 .year-counter {
        bottom: 0;
    }
	.footer-layout1 .footer-logo {
		padding: 7px 45px 45px 10px;
	}
	.owl-carousel .owl-nav.disabled {
		display: none !important;
	}
	.event-two .section-header h3{
		line-height:50px;
	}
	.milestones-section .it-up-achive-shape1{
		bottom: 0;
	
		left: -382px !important;
    }
	.milestones-section .it-up-achive-shape2 {
		bottom: 0;
		right: 0px !important;
	}
	.section-header h3 {
	
		font-size: 37px;
		font-weight: 900;
  }
  .section-header h5>span {
  font-size: 16px; 
   
}
/* /* .image-above-section {
 
	bottom: -139px;
   
} */
	.year-counter { 
    height: 150px;
    width: 150px;
    background-color: #571315;
    border: 7px solid white;
    box-shadow: 0px 10px 30px rgba(8, 14, 28, 0.1);
    border-radius: 50%;
    text-align: center;
    padding: 25px 0;
}
.year-counter_number {
    font-family: 'Poppins', sans-serif;
    background-image: linear-gradient(180deg, #FCEBB3 0%, #5713156e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
     font-size: 37px; 
    font-weight: 900;
    /* letter-spacing: 2.4px; */
    text-transform: uppercase;
    /* margin-top: 0; */
    margin-bottom: 0;
    line-height: 32px; 
    /* word-wrap: break-word; */
    /* position: relative; */
}
.year-counter_text {
    color: white;
    margin-bottom: 0;
    font-weight: 400;
    font-size: 20px;
}
}
@media (max-width: 600px) {
	.footer-contact-wrap {
		
		display: flex;
        flex-direction: column;
	}
}



.innerpage_bnr.banner_cnt {
	/* position: relative; */
	margin-bottom: 30px;
	padding: 100px 60px;
	background-image: url(../images/inner.png);
	background-size: cover;
	background-position: center;

	background-repeat: no-repeat;
	transition: 0.7s all;
	-webkit-transition: 0.7s all;
  }
  
  .innerpage_bnr.banner_cnt:hover {
  
	background-position: right center;
  }
  .innerpage_bnr.banner_cnt h6 {
	font-size: 40px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
	top:42px;
    margin-right: 50%;
    position: relative;
    text-shadow: 2px 2px 13px #ffffff;
    /* font-family: 'fugaz one'; */

  }
  .navbar.navbar-style-one.no-background .attr-right .attr-nav li.button a{
	background-color: white;
  }
/*--------------------------------------------------------------
#mandatory
--------------------------------------------------------------*/
.social-icones {
	top: 87%;
	left: 39px;
	position: fixed;
	z-index: 999;
  }
  .fa-share:before {
	content: "\f1e0";
  }
  .tile,.tile1 {
	position: relative;
  }
  .float {
	position: relative;
	display: inline-block;
	width: 50px;
	height: 50px;
	line-height: 70px;
	background: linear-gradient(181deg, rgb(72 0 1) 15%, rgb(70 0 1 / 77%) 158.5%);
	color: #fff;
	cursor: pointer;
	border-radius: 50px;
	text-align: center;
	z-index: 1000;
	animation: bot-to-top 2s ease-out;
  }
  .float.menu-share i {
	position: relative;
	bottom: 8px;
	font-size: 20px;
  }
  .soc a {
	color: #fff;
	border-radius: 50%;
	text-align: center;
	width: 40px;
	height: 40px;
	line-height: 53px;
	padding: 0px;
	font-size: 20px;
	display: inline-block;
	position: absolute;
	top: 6px;
	left: 2px;
	transition: all 0.5s;
  }
  .soc a:hover {
	box-shadow: 2px 2px 3px #999;
  }
  .soc.pad i {
	position: relative;
	bottom: 4px;
  }
  a.facebook {
    background-image: linear-gradient(180deg, #470001 0%, #601112 100%);
	animation-delay: 0.5s;
	z-index: 1;
  }
  a.instagram {
	animation-delay: 0.7s;
    background-image: linear-gradient(180deg, #470001 0%, #601112 100%);
  
	z-index: 1;
  }
  
  .pad .facebook {
	left: 60px;
	z-index: 1;
  }
  .pad .instagram {
	left: 110px;
	z-index: 1;
  }
  
  .menu-share i {
	animation: rotate-in 0.5s;
  }
  @keyframes rotate-in {
	from {
	  transform: rotate(0deg);
	}
   to {
	  transform: rotate(360deg);
	}
  }
  .soc.pad.span.feepay{
  color: #000000;
    right: 145%;
    font-size: 14px;
    text-transform: capitalize;
    text-align: center;
    width: 252%;
    top: 34px;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transform-origin: 100% 50%;
    -ms-transform-origin: 100% 50%;
    transform-origin: 100% 50%;
    background-color: rgba(255, 255, 255, 0.719);
    padding: 0px 4px;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 30px;
  }
  .footer-links li.active {
	color: black;
    background-color: #571315;
    opacity: 1;
	border-radius:10px;
  }
  .video-section h5.section-sub-title::before{
	position: absolute;
    content: "";
    width: 30px;
    height: 7px;
    background: white;
    border-radius: 30px;
	left: -5%;
    top: 21px;


  }
  .video-section h5.section-sub-title:hover{
	background-color: rgb(240 240 240);
  }
/* Buttons */
a.main-button {
	transform: rotate(270deg);
    position: fixed;
    /* font-family: 'Inter'; */
    font-weight: 400;
	top: 65%;
    right: -95px;
    z-index: 1;
    background-color: #4f0600;
    border-color: #560e08e0;
    font-size: 16px;
    padding: 3px 13px;
    border: solid 1px #4f0600;
    color: white;
    line-height: 1.5;
    letter-spacing: 1.68px;
    border-radius: 12px 12px 0px 0px;
  }
  .side-button {
    position: relative;
    z-index: 3;
}
  a.main-button2{
	transform: rotate(270deg);
    position: fixed;
    /* font-family: 'Inter'; */
    font-weight: 400;
    top: 32%;
    right: -55px;
    z-index: 1;
    background-color: #4f0600;
    border-color: #560e08e0;
    font-size: 16px;
    padding: 3px 13px;
    border: solid 1px #4f0600;
    color: white;
    line-height: 1.5;
    letter-spacing: 1.68px;
    border-radius: 12px 12px 0px 0px
  }
 
  
  .side-button a:hover {
	color: white;
  }

  @media only screen and (max-width: 600px) {
	a.main-button2 {

		font-weight: 400;
        top: 33%;
      
        z-index: 3;}
		a.main-button {
		
			font-weight: 400;
			top: 64%;
			
			z-index: 3;}
  }
  @media (min-width: 1400px) and (max-width: 1960px) {
    /* Adjust padding and margin for the section */
	.image-above-section {
		position: absolute;
		content: "";
		height: 221px;
		background-repeat: no-repeat;
		width: 100%;
		bottom: -207px;
		z-index: 1;
		left: 0;
	}
}
@media (min-width: 768px) and (max-width: 1024px){
	
		li.side-menu {
			display: none;
	
	}
}
@media screen and (max-width:1600px) and( min-width:1400px){
    nav.navbar.navbar-style-one.validnavs.navbar-fixed.no-background .navbar-header img {
        position: relative;
        top: -23px;
		right: 94px;
    }
	.image-above-section {
        position: absolute;
        content: "";
        height: 250px;
        background-repeat: no-repeat;
        width: 100%;
		bottom: -181px;
        z-index: 1;
        left: 0;
    }
	.attr-nav {
		position: relative;
		top: -39px;
	}
	a.main-button{
		right: -46px;
	}
	a.main-button2{
		right: 19px;
	}
}