/*------------------------------------------------------------------------

Template Name:  BuildGo - Constructions NextJs Template
Author:  wpCodify
Author URI: http://wpcodify.com
Version: 1.0.2
Description: This Template is created for web template

--------------------------------------------------------------------------
START TABLE OF CONTENTS
--------------------------------------------------------------------------
* Color & Google Fonts
* Common Css
* Form CSS
* Hedging CSS
* Button CSS
* Scroll Top CSS
* Preloader CSS
* Video Animation CSS
* Menu Bar CSS
* Menu Bar Sticky CSS
* Menu Sidebar CSS
* Responsive Menu Sidebar CSS
* Banner One CSS
* Banner Two CSS
* Banner Three CSS
* Banner Four CSS
* About One CSS
* About Two CSS
* About Three CSS
* About Four CSS
* About Five CSS
* Company History CSS
* Blog One CSS
* Blog Two CSS
* Blog Three CSS
* Blog Four CSS
* Blog Standard CSS
* Blog Details CSS
* All Side Bar
* Counter CSS
* Process Css
* Faq CSS
* Request Quote CSS
* Contact CSS
* Pricing Css
* Choose Us Css
* Experience CSS
* Industry One CSS
* Industry Two CSS
* Experience CSS
* Footer One CSS
* Footer Two CSS
* Footer Four CSS
* Copyright CSS
* Cta CSS
* Subscribe CSS
* Award CSS
* Text Slider CSS
* Portfolio One Css
* Portfolio Two CSS
* Portfolio Two CSS
* Portfolio Four CSS
* Portfolio Four CSS
* Portfolio Four CSS
* Services One CSS
* Services Two CSS
* Services Three CSS
* Services Four CSS
* Services Details CSS
* Video CSS
* Skill Bar CSS
* Team CSS
* Testimonial One CSS
* Testimonial Two CSS
* Breadcrumb CSS
* Error CSS
* Theme Pagination CSS
* Switch Tab CSS
* Dark CSS
--------------------------------------------------------------------------
END TABLE OF CONTENTS
--------------------------------------------------------------------------

/*==========================================================================
* Color & Google Fonts
==========================================================================*/
@import url('https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400..700;1,400..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');
:root {
	--body-font: 'DM Sans', sans-serif;
	--heading-font: 'Instrument Sans', sans-serif;
	--body-color: #555855;
	--text-heading-color: #222222;
	--text-white: #ffffff;
	--bg-white: #ffffff;
	/* --primary-color-1: #ffbf43; */
	--primary-color-1: #3b82f6;
	--color-1: #222222;
	--color-2: #f8f7f0;
	--color-3: #ebebeb;
	/* --color-4: #eab342; */
	--color-4: #0056d2;
	--color-5: #4b4a4a;
	--color-6: #cccccc;
	--color-7: #313131;
	--color-8: #282828;
	--border-color-1: #eeede8;
	--border-color-2: #cdd0cd;
	--border-color-3: #474644;
}

/*==========================================================================
* Common Css
==========================================================================*/
body {
	font-family: var(--body-font);
	color: var(--body-color);
	font-size: 18px;
	line-height: 30px;
	font-weight: 400;
	overflow-x: hidden;
}

img {
	max-width: 100%;
	height: auto;
	transition: 0.4s;
}

a {
	outline: none;
	color: inherit;
	text-decoration: none;
	transition: 0.4s;
}

a,
button,
i {
	text-decoration: none;
	color: inherit;
}

a:focus,
a:hover {
	text-decoration: none;
	color: inherit;
}

.section-padding {
	padding: 120px 0px;
}

.section-padding-two {
	padding: 120px 0 95px 0;
}

.section-padding-three {
	padding: 95px 0 120px 0;
}

@media (max-width: 575px) {
	.section-padding {
		padding: 100px 0px;
	}
	.section-padding-two {
		padding: 100px 0 75px 0;
	}
	.section-padding-three {
		padding: 75px 0 100px 0;
	}
}
.display-none {
	display: none;
}

.display-block {
	display: block;
}

.img_full {
	width: 100%;
}

/*==========================================================================
* Form CSS
==========================================================================*/
button,
input[type='button'],
input[type='reset'],
input[type='submit'] {
	background: var(--primary-color-1);
	border-color: transparent;
	border-radius: 5px;
	color: var(--color-1);
	padding: 17px 40px;
}

button:hover,
input[type='button']:hover,
input[type='reset']:hover,
input[type='submit']:hover {
	border-color: transparent;
}

button:active,
button:focus,
input[type='button']:active,
input[type='button']:focus,
input[type='reset']:active,
input[type='reset']:focus,
input[type='submit']:active,
input[type='submit']:focus {
	border-color: transparent;
}

input[type='text'],
input[type='file'],
input[type='email'],
input[type='url'],
input[type='password'],
input[type='search'],
input[type='number'],
input[type='tel'],
input[type='range'],
input[type='date'],
input[type='month'],
input[type='week'],
input[type='time'],
input[type='datetime'],
input[type='datetime-local'],
input[type='color'],
textarea {
	color: var(--body-color);
	border-radius: 6px;
	width: 100%;
	height: 60px;
	background: var(--bg-white);
	border: 1px solid var(--border-color-1);
	padding: 0 15px;
	font-size: 16px;
	line-height: 26px;
}
input[type='text']::-moz-placeholder,
input[type='file']::-moz-placeholder,
input[type='email']::-moz-placeholder,
input[type='url']::-moz-placeholder,
input[type='password']::-moz-placeholder,
input[type='search']::-moz-placeholder,
input[type='number']::-moz-placeholder,
input[type='tel']::-moz-placeholder,
input[type='range']::-moz-placeholder,
input[type='date']::-moz-placeholder,
input[type='month']::-moz-placeholder,
input[type='week']::-moz-placeholder,
input[type='time']::-moz-placeholder,
input[type='datetime']::-moz-placeholder,
input[type='datetime-local']::-moz-placeholder,
input[type='color']::-moz-placeholder,
textarea::-moz-placeholder {
	color: var(--body-color);
}
input[type='text']::placeholder,
input[type='file']::placeholder,
input[type='email']::placeholder,
input[type='url']::placeholder,
input[type='password']::placeholder,
input[type='search']::placeholder,
input[type='number']::placeholder,
input[type='tel']::placeholder,
input[type='range']::placeholder,
input[type='date']::placeholder,
input[type='month']::placeholder,
input[type='week']::placeholder,
input[type='time']::placeholder,
input[type='datetime']::placeholder,
input[type='datetime-local']::placeholder,
input[type='color']::placeholder,
textarea::placeholder {
	color: var(--body-color);
}

input[type='text']:focus,
input[type='file']:focus,
input[type='email']:focus,
input[type='url']:focus,
input[type='password']:focus,
input[type='search']:focus,
input[type='number']:focus,
input[type='tel']:focus,
input[type='range']:focus,
input[type='date']:focus,
input[type='month']:focus,
input[type='week']:focus,
input[type='time']:focus,
input[type='datetime']:focus,
input[type='datetime-local']:focus,
input[type='color']:focus,
textarea:focus {
	color: var(--body-color);
	outline: none;
	box-shadow: none;
	border-color: var(--primary-color-1);
}

select {
	border: 1px solid var(--border-color-1);
}

textarea {
	width: 100%;
	height: 150px;
	padding-top: 15px;
}

button,
button:hover,
button:focus {
	box-shadow: none;
	border: none;
	outline: none;
}

/*==========================================================================
* Hedging CSS
==========================================================================*/
h1,
.h1 {
	font-size: 84px;
	line-height: 94px;
	padding: 0;
	margin: 0;
	color: var(--text-heading-color);
	font-family: var(--heading-font);
	font-weight: 500;
}

h2,
.h2 {
	font-size: 56px;
	line-height: 66px;
	padding: 0;
	margin: 0;
	color: var(--text-heading-color);
	font-family: var(--heading-font);
	font-weight: 500;
}

h3,
.h3 {
	font-size: 36px;
	line-height: 46px;
	padding: 0;
	margin: 0;
	color: var(--text-heading-color);
	font-family: var(--heading-font);
	font-weight: 500;
}

h4,
.h4 {
	font-size: 28px;
	line-height: 38px;
	padding: 0;
	margin: 0;
	color: var(--text-heading-color);
	font-family: var(--heading-font);
	font-weight: 500;
}

h5,
.h5 {
	font-size: 22px;
	line-height: 32px;
	padding: 0;
	margin: 0;
	color: var(--text-heading-color);
	font-family: var(--heading-font);
	font-weight: 500;
}

h6,
.h6 {
	font-size: 18px;
	line-height: 28px;
	padding: 0;
	margin: 0;
	color: var(--text-heading-color);
	font-family: var(--heading-font);
	font-weight: 500;
}

p {
	font-size: 18px;
	line-height: 30px;
	color: var(--body-color);
	font-family: var(--body-font);
}

.t-left {
	text-align: left;
}

.t-center {
	text-align: center;
}

.t-right {
	text-align: right;
}

@media (max-width: 767px) {
	h2,
	.h2 {
		font-size: 34px;
		line-height: 44px;
	}
	h3,
	.h3 {
		font-size: 28px;
		line-height: 38px;
	}
	h4,
	.h4 {
		font-size: 22px;
		line-height: 32px;
	}
}
/*==========================================================================
* Button CSS
==========================================================================*/
.theme-inline-icon {
	display: inline-block;
	vertical-align: middle;
	flex-shrink: 0;
	color: currentColor;
}

.build_button {
	display: inline-flex;
	align-items: center;
	position: relative;
	z-index: 3;
	justify-content: center;
	text-align: center;
	overflow: hidden;
	transition: 0.4s;
	font-family: var(--heading-font);
	font-size: 16px;
	font-weight: 600;
	line-height: 26px;
	text-transform: uppercase;
	color: var(--color-1);
	background: var(--primary-color-1);
	border-radius: 50px 50px 50px 50px;
	padding: 8px 8px 8px 30px;
	gap: 20px;
}
.build_button::before {
	content: '';
	z-index: -1;
	position: absolute;
	top: 50%;
	left: 100%;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: var(--color-1);
	transform-origin: 100% 50%;
	transform: scale3d(1, 2, 1);
	transition:
		transform 0.4s,
		opacity 0.4s;
	transition-timing-function: cubic-bezier(0.7, 0, 0.9, 1);
}
.build_button i,
.build_button svg {
	position: relative;
	z-index: 2;
	transition: 0.4s;
	color: var(--color-1);
	background: var(--color-4);
	width: 44px;
	height: 44px;
	padding: 9px;
	box-sizing: border-box;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50px 50px 50px 50px;
}
.build_button i {
	font-size: 26px;
	padding: 0;
}
.build_button:hover {
	color: var(--text-white);
}
.build_button:hover i,
.build_button:hover svg {
	color: var(--text-white);
	background: var(--color-5);
	transform: rotate(45deg);
}
.build_button:hover::before {
	transform: scale3d(10, 9, 1);
	transform-origin: 103% 55%;
}

.more_btn {
	font-family: var(--heading-font);
	font-size: 16px;
	font-weight: 600;
	text-transform: uppercase;
	line-height: 26px;
	color: var(--text-heading-color);
	transition: 0.4s;
	display: inline-flex;
	align-items: center;
	gap: 4px;
}
.more_btn i,
.more_btn svg {
	font-size: 22px;
	width: 22px;
	height: 22px;
	transition: 0.4s;
	flex-shrink: 0;
}
.more_btn i {
	width: auto;
	height: auto;
}
.more_btn:hover {
	color: var(--primary-color-1);
}
.more_btn:hover i,
.more_btn:hover svg {
	transform: rotate(45deg);
}

.subtitle {
	color: var(--text-heading-color);
	font-family: var(--heading-font);
	font-size: 14px;
	line-height: 14px;
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 15px;
	padding: 7px 15px;
	border: 1px solid var(--border-color-2);
	border-radius: 50px;
	display: inline-block;
}

@media (min-width: 992px) {
	.columns_sticky {
		position: sticky;
		z-index: 1;
		height: 100%;
		top: 120px;
	}
}
.card_sticky {
	position: sticky;
	z-index: 1;
	top: var(--card-top);
}

/*==========================================================================
* Preloader CSS
==========================================================================*/
.theme-loader {
	position: fixed;
	width: 100%;
	height: 100%;
	background: var(--color-1);
	z-index: 9999999999;
}

.spinner {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	display: flex;
}

.spinner-bounce {
	will-change: transform;
	height: 45px;
	width: 45px;
	border-radius: 50%;
	background: var(--primary-color-1);
	display: inline-block;
	animation: bounces 1s ease-in-out infinite alternate;
	transform-origin: 50% 50%;
}
.spinner-bounce.one {
	margin-right: 15px;
}
.spinner-bounce.two {
	margin-right: 15px;
	animation-delay: 0.4s;
}
.spinner-bounce.three {
	animation-delay: 0.8s;
}

@keyframes bounces {
	0% {
		transform: scale(0.8);
		background: var(--primary-color-1);
	}
	50% {
		background: var(--primary-color-2);
	}
	100% {
		transform: scale(0.2);
		background: var(--primary-color-3);
	}
}
/*==========================================================================
* Video Animation CSS
==========================================================================*/
.video {
	position: relative;
	text-align: center;
	display: inline-block;
	z-index: 4;
}
.video span {
	position: relative;
	background: var(--primary-color-1);
	font-size: 20px;
	z-index: 1;
	color: var(--color-1);
	width: 90px;
	height: 90px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.video-pulse::after,
.video-pulse::before {
	position: absolute;
	content: '';
	width: 100%;
	height: 100%;
	border: 1px solid var(--bg-white);
	left: 0;
	top: 0;
	border-radius: 50%;
	animation-duration: 2.5s;
	animation-timing-function: linear;
	animation-name: video-animation;
	animation-iteration-count: infinite;
}

.video-pulse::before {
	animation-delay: 1s;
}

.modal-video-close-btn {
	padding: 0;
}

@keyframes video-animation {
	0% {
		opacity: 0.5;
		transform: scale(1);
	}
	50% {
		opacity: 0.2;
		transform: scale(1.5);
	}
	100% {
		opacity: 0;
		transform: scale(2);
	}
}
@keyframes rotate {
	100% {
		transform: rotate(90deg);
	}
}
@keyframes rollShape {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(-359deg);
	}
}
@keyframes rollIn {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(359deg);
	}
}
@keyframes bounce-y {
	0% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-10px);
	}
	100% {
		transform: translateY(0);
	}
}
@keyframes bounce-x {
	0% {
		transform: translateX(0);
	}
	50% {
		transform: translateX(5px);
	}
	100% {
		transform: translateX(0);
	}
}
.bounce_y {
	animation: bounce-y 3s infinite linear;
}

.bounce_x {
	animation: bounce-x 2s infinite linear;
}

.roll_in {
	animation: rollShape 20s infinite linear;
}

.h_rotate:hover {
	transform: rotate(45deg);
}

.slider-arrow {
	display: flex;
	gap: 10px;
}
.slider-arrow i,
.slider-arrow svg {
	font-size: 24px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	color: var(--text-heading-color);
	background: var(--bg-white);
	transition: 0.4s;
	border: 1px solid var(--border-color-1);
	width: 60px;
	height: 60px;
	padding: 18px;
	box-sizing: border-box;
	cursor: pointer;
}
.slider-arrow i {
	padding: 0;
}
.slider-arrow i:hover,
.slider-arrow svg:hover {
	color: var(--color-1);
	background: var(--primary-color-1);
	border-color: var(--primary-color-1);
}

.slider-area {
	position: relative;
	z-index: 1;
}
.slider-area .slider-arrow {
	justify-content: space-between;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 100%;
	transition: 0.4s;
	visibility: hidden;
	opacity: 0;
}
.slider-area .slider-arrow-prev {
	transform: translateX(-80px);
	transition: 0.4s;
}
.slider-area .slider-arrow-next {
	transform: translateX(80px);
	transition: 0.4s;
}
.slider-area:hover .slider-arrow {
	visibility: visible;
	opacity: 1;
}
.slider-area:hover .slider-arrow-prev {
	transform: translateX(-110px);
}
.slider-area:hover .slider-arrow-next {
	transform: translateX(110px);
}

.img_left_animation {
	animation: left-animation 3000ms forwards cubic-bezier(0.4, 0.98, 0.52, 0.99);
	opacity: 0;
}

@keyframes left-animation {
	0% {
		-webkit-clip-path: inset(0 100% 0 0);
		clip-path: inset(0 100% 0 0);
		opacity: 0;
	}
	100% {
		-webkit-clip-path: inset(0 0 0 0);
		clip-path: inset(0 0 0 0);
		opacity: 1;
	}
}
.img_right_animation {
	animation: right-animation 3000ms forwards cubic-bezier(0.4, 0.98, 0.52, 0.99);
	opacity: 0;
}

@keyframes right-animation {
	0% {
		-webkit-clip-path: inset(0 0 0 100%);
		clip-path: inset(0 0 0 100%);
		opacity: 0;
	}
	100% {
		-webkit-clip-path: inset(0 0 0 0);
		clip-path: inset(0 0 0 0);
		opacity: 1;
	}
}
.img_top_animation {
	animation: top-animation 3000ms forwards cubic-bezier(0.4, 0.98, 0.52, 0.99);
	opacity: 0;
}

@keyframes top-animation {
	0% {
		-webkit-clip-path: inset(0 0 100% 0);
		clip-path: inset(0 0 100% 0);
		opacity: 0;
	}
	100% {
		-webkit-clip-path: inset(0 0 0 0);
		clip-path: inset(0 0 0 0);
		opacity: 1;
	}
}
.data_cursor {
	cursor: none;
}

.cursor #cursor-ball {
	width: 12px;
	height: 12px;
	background: var(--color-1);
	border-radius: 50%;
	position: absolute;
	transform: translate(-50%, -50%);
	pointer-events: none;
	z-index: 999;
	transition:
		width 0.4s ease,
		height 0.4s ease;
}
.cursor #cursor-text {
	position: absolute;
	transform: translate(-50%, -50%);
	pointer-events: none;
	opacity: 0;
	z-index: 999;
	transition: opacity 300ms ease-in-out;
	color: var(--text-white);
	font-size: 18px;
	line-height: 18px;
}
.cursor.no #cursor-text {
	background: var(--color-1);
	padding: 31px 21px;
	border-radius: 50%;
}

.container {
	max-width: 1345px;
}

.custom_container {
	max-width: 1770px;
	margin: 0 auto;
	padding: 0 12px;
}

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

.t-left {
	text-align: left;
}

.t-center {
	text-align: center;
}

.t-right {
	text-align: right;
}

.jc-left {
	justify-content: left;
}

.jc-center {
	justify-content: center;
}

.jc-end {
	justify-content: end;
}

.al-start {
	align-items: start;
}

.al-left {
	align-items: left;
}

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

.al-end {
	align-items: end;
}

.mt-0 {
	margin-top: 0px;
}

.mb-0 {
	margin-bottom: 0px;
}

.ml-0 {
	margin-left: 0px;
}

.mr-0 {
	margin-right: 0px;
}

.pt-0 {
	padding-top: 0px;
}

.pb-0 {
	padding-bottom: 0px;
}

.pl-0 {
	padding-left: 0px;
}

.pr-0 {
	padding-right: 0px;
}

.mt-5 {
	margin-top: 5px;
}

.mb-5 {
	margin-bottom: 5px;
}

.ml-5 {
	margin-left: 5px;
}

.mr-5 {
	margin-right: 5px;
}

.pt-5 {
	padding-top: 5px;
}

.pb-5 {
	padding-bottom: 5px;
}

.pl-5 {
	padding-left: 5px;
}

.pr-5 {
	padding-right: 5px;
}

.mt-10 {
	margin-top: 10px;
}

.mb-10 {
	margin-bottom: 10px;
}

.ml-10 {
	margin-left: 10px;
}

.mr-10 {
	margin-right: 10px;
}

.pt-10 {
	padding-top: 10px;
}

.pb-10 {
	padding-bottom: 10px;
}

.pl-10 {
	padding-left: 10px;
}

.pr-10 {
	padding-right: 10px;
}

.mt-15 {
	margin-top: 15px;
}

.mb-15 {
	margin-bottom: 15px;
}

.ml-15 {
	margin-left: 15px;
}

.mr-15 {
	margin-right: 15px;
}

.pt-15 {
	padding-top: 15px;
}

.pb-15 {
	padding-bottom: 15px;
}

.pl-15 {
	padding-left: 15px;
}

.pr-15 {
	padding-right: 15px;
}

.mt-20 {
	margin-top: 20px;
}

.mb-20 {
	margin-bottom: 20px;
}

.ml-20 {
	margin-left: 20px;
}

.mr-20 {
	margin-right: 20px;
}

.pt-20 {
	padding-top: 20px;
}

.pb-20 {
	padding-bottom: 20px;
}

.pl-20 {
	padding-left: 20px;
}

.pr-20 {
	padding-right: 20px;
}

.mt-25 {
	margin-top: 25px;
}

.mb-25 {
	margin-bottom: 25px;
}

.ml-25 {
	margin-left: 25px;
}

.mr-25 {
	margin-right: 25px;
}

.pt-25 {
	padding-top: 25px;
}

.pb-25 {
	padding-bottom: 25px;
}

.pl-25 {
	padding-left: 25px;
}

.pr-25 {
	padding-right: 25px;
}

.mt-30 {
	margin-top: 30px;
}

.mb-30 {
	margin-bottom: 30px;
}

.ml-30 {
	margin-left: 30px;
}

.mr-30 {
	margin-right: 30px;
}

.pt-30 {
	padding-top: 30px;
}

.pb-30 {
	padding-bottom: 30px;
}

.pl-30 {
	padding-left: 30px;
}

.pr-30 {
	padding-right: 30px;
}

.mt-35 {
	margin-top: 35px;
}

.mb-35 {
	margin-bottom: 35px;
}

.ml-35 {
	margin-left: 35px;
}

.mr-35 {
	margin-right: 35px;
}

.pt-35 {
	padding-top: 35px;
}

.pb-35 {
	padding-bottom: 35px;
}

.pl-35 {
	padding-left: 35px;
}

.pr-35 {
	padding-right: 35px;
}

.mt-40 {
	margin-top: 40px;
}

.mb-40 {
	margin-bottom: 40px;
}

.ml-40 {
	margin-left: 40px;
}

.mr-40 {
	margin-right: 40px;
}

.pt-40 {
	padding-top: 40px;
}

.pb-40 {
	padding-bottom: 40px;
}

.pl-40 {
	padding-left: 40px;
}

.pr-40 {
	padding-right: 40px;
}

.mt-45 {
	margin-top: 45px;
}

.mb-45 {
	margin-bottom: 45px;
}

.ml-45 {
	margin-left: 45px;
}

.mr-45 {
	margin-right: 45px;
}

.pt-45 {
	padding-top: 45px;
}

.pb-45 {
	padding-bottom: 45px;
}

.pl-45 {
	padding-left: 45px;
}

.pr-45 {
	padding-right: 45px;
}

.mt-50 {
	margin-top: 50px;
}

.mb-50 {
	margin-bottom: 50px;
}

.ml-50 {
	margin-left: 50px;
}

.mr-50 {
	margin-right: 50px;
}

.pt-50 {
	padding-top: 50px;
}

.pb-50 {
	padding-bottom: 50px;
}

.pl-50 {
	padding-left: 50px;
}

.pr-50 {
	padding-right: 50px;
}

.mt-55 {
	margin-top: 55px;
}

.mb-55 {
	margin-bottom: 55px;
}

.ml-55 {
	margin-left: 55px;
}

.mr-55 {
	margin-right: 55px;
}

.pt-55 {
	padding-top: 55px;
}

.pb-55 {
	padding-bottom: 55px;
}

.pl-55 {
	padding-left: 55px;
}

.pr-55 {
	padding-right: 55px;
}

.mt-60 {
	margin-top: 60px;
}

.mb-60 {
	margin-bottom: 60px;
}

.ml-60 {
	margin-left: 60px;
}

.mr-60 {
	margin-right: 60px;
}

.pt-60 {
	padding-top: 60px;
}

.pb-60 {
	padding-bottom: 60px;
}

.pl-60 {
	padding-left: 60px;
}

.pr-60 {
	padding-right: 60px;
}

.mt-65 {
	margin-top: 65px;
}

.mb-65 {
	margin-bottom: 65px;
}

.ml-65 {
	margin-left: 65px;
}

.mr-65 {
	margin-right: 65px;
}

.pt-65 {
	padding-top: 65px;
}

.pb-65 {
	padding-bottom: 65px;
}

.pl-65 {
	padding-left: 65px;
}

.pr-65 {
	padding-right: 65px;
}

.mt-70 {
	margin-top: 70px;
}

.mb-70 {
	margin-bottom: 70px;
}

.ml-70 {
	margin-left: 70px;
}

.mr-70 {
	margin-right: 70px;
}

.pt-70 {
	padding-top: 70px;
}

.pb-70 {
	padding-bottom: 70px;
}

.pl-70 {
	padding-left: 70px;
}

.pr-70 {
	padding-right: 70px;
}

.mt-75 {
	margin-top: 75px;
}

.mb-75 {
	margin-bottom: 75px;
}

.ml-75 {
	margin-left: 75px;
}

.mr-75 {
	margin-right: 75px;
}

.pt-75 {
	padding-top: 75px;
}

.pb-75 {
	padding-bottom: 75px;
}

.pl-75 {
	padding-left: 75px;
}

.pr-75 {
	padding-right: 75px;
}

.mt-80 {
	margin-top: 80px;
}

.mb-80 {
	margin-bottom: 80px;
}

.ml-80 {
	margin-left: 80px;
}

.mr-80 {
	margin-right: 80px;
}

.pt-80 {
	padding-top: 80px;
}

.pb-80 {
	padding-bottom: 80px;
}

.pl-80 {
	padding-left: 80px;
}

.pr-80 {
	padding-right: 80px;
}

.mt-85 {
	margin-top: 85px;
}

.mb-85 {
	margin-bottom: 85px;
}

.ml-85 {
	margin-left: 85px;
}

.mr-85 {
	margin-right: 85px;
}

.pt-85 {
	padding-top: 85px;
}

.pb-85 {
	padding-bottom: 85px;
}

.pl-85 {
	padding-left: 85px;
}

.pr-85 {
	padding-right: 85px;
}

.mt-90 {
	margin-top: 90px;
}

.mb-90 {
	margin-bottom: 90px;
}

.ml-90 {
	margin-left: 90px;
}

.mr-90 {
	margin-right: 90px;
}

.pt-90 {
	padding-top: 90px;
}

.pb-90 {
	padding-bottom: 90px;
}

.pl-90 {
	padding-left: 90px;
}

.pr-90 {
	padding-right: 90px;
}

.mt-95 {
	margin-top: 95px;
}

.mb-95 {
	margin-bottom: 95px;
}

.ml-95 {
	margin-left: 95px;
}

.mr-95 {
	margin-right: 95px;
}

.pt-95 {
	padding-top: 95px;
}

.pb-95 {
	padding-bottom: 95px;
}

.pl-95 {
	padding-left: 95px;
}

.pr-95 {
	padding-right: 95px;
}

.mt-100 {
	margin-top: 100px;
}

.mb-100 {
	margin-bottom: 100px;
}

.ml-100 {
	margin-left: 100px;
}

.mr-100 {
	margin-right: 100px;
}

.pt-100 {
	padding-top: 100px;
}

.pb-100 {
	padding-bottom: 100px;
}

.pl-100 {
	padding-left: 100px;
}

.pr-100 {
	padding-right: 100px;
}

.mt-105 {
	margin-top: 105px;
}

.mb-105 {
	margin-bottom: 105px;
}

.ml-105 {
	margin-left: 105px;
}

.mr-105 {
	margin-right: 105px;
}

.pt-105 {
	padding-top: 105px;
}

.pb-105 {
	padding-bottom: 105px;
}

.pl-105 {
	padding-left: 105px;
}

.pr-105 {
	padding-right: 105px;
}

.mt-110 {
	margin-top: 110px;
}

.mb-110 {
	margin-bottom: 110px;
}

.ml-110 {
	margin-left: 110px;
}

.mr-110 {
	margin-right: 110px;
}

.pt-110 {
	padding-top: 110px;
}

.pb-110 {
	padding-bottom: 110px;
}

.pl-110 {
	padding-left: 110px;
}

.pr-110 {
	padding-right: 110px;
}

.mt-115 {
	margin-top: 115px;
}

.mb-115 {
	margin-bottom: 115px;
}

.ml-115 {
	margin-left: 115px;
}

.mr-115 {
	margin-right: 115px;
}

.pt-115 {
	padding-top: 115px;
}

.pb-115 {
	padding-bottom: 115px;
}

.pl-115 {
	padding-left: 115px;
}

.pr-115 {
	padding-right: 115px;
}

.mt-120 {
	margin-top: 120px;
}

.mb-120 {
	margin-bottom: 120px;
}

.ml-120 {
	margin-left: 120px;
}

.mr-120 {
	margin-right: 120px;
}

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

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

.pl-120 {
	padding-left: 120px;
}

.pr-120 {
	padding-right: 120px;
}

@media (max-width: 1199px) {
	.xl-pb-0 {
		padding-bottom: 0px;
	}
	.xl-pl-0 {
		padding-left: 0px;
	}
	.xl-pr-0 {
		padding-right: 0px;
	}
	.xl-mb-0 {
		margin-bottom: 0px;
	}
	.xl-ml-0 {
		margin-left: 0px;
	}
	.xl-mr-0 {
		margin-right: 0px;
	}
	.xl-pb-5 {
		padding-bottom: 5px;
	}
	.xl-pl-5 {
		padding-left: 5px;
	}
	.xl-pr-5 {
		padding-right: 5px;
	}
	.xl-mb-5 {
		margin-bottom: 5px;
	}
	.xl-ml-5 {
		margin-left: 5px;
	}
	.xl-mr-5 {
		margin-right: 5px;
	}
	.xl-pb-10 {
		padding-bottom: 10px;
	}
	.xl-pl-10 {
		padding-left: 10px;
	}
	.xl-pr-10 {
		padding-right: 10px;
	}
	.xl-mb-10 {
		margin-bottom: 10px;
	}
	.xl-ml-10 {
		margin-left: 10px;
	}
	.xl-mr-10 {
		margin-right: 10px;
	}
	.xl-pb-15 {
		padding-bottom: 15px;
	}
	.xl-pl-15 {
		padding-left: 15px;
	}
	.xl-pr-15 {
		padding-right: 15px;
	}
	.xl-mb-15 {
		margin-bottom: 15px;
	}
	.xl-ml-15 {
		margin-left: 15px;
	}
	.xl-mr-15 {
		margin-right: 15px;
	}
	.xl-pb-20 {
		padding-bottom: 20px;
	}
	.xl-pl-20 {
		padding-left: 20px;
	}
	.xl-pr-20 {
		padding-right: 20px;
	}
	.xl-mb-20 {
		margin-bottom: 20px;
	}
	.xl-ml-20 {
		margin-left: 20px;
	}
	.xl-mr-20 {
		margin-right: 20px;
	}
	.xl-pb-25 {
		padding-bottom: 25px;
	}
	.xl-pl-25 {
		padding-left: 25px;
	}
	.xl-pr-25 {
		padding-right: 25px;
	}
	.xl-mb-25 {
		margin-bottom: 25px;
	}
	.xl-ml-25 {
		margin-left: 25px;
	}
	.xl-mr-25 {
		margin-right: 25px;
	}
	.xl-pb-30 {
		padding-bottom: 30px;
	}
	.xl-pl-30 {
		padding-left: 30px;
	}
	.xl-pr-30 {
		padding-right: 30px;
	}
	.xl-mb-30 {
		margin-bottom: 30px;
	}
	.xl-ml-30 {
		margin-left: 30px;
	}
	.xl-mr-30 {
		margin-right: 30px;
	}
	.xl-pb-35 {
		padding-bottom: 35px;
	}
	.xl-pl-35 {
		padding-left: 35px;
	}
	.xl-pr-35 {
		padding-right: 35px;
	}
	.xl-mb-35 {
		margin-bottom: 35px;
	}
	.xl-ml-35 {
		margin-left: 35px;
	}
	.xl-mr-35 {
		margin-right: 35px;
	}
	.xl-pb-40 {
		padding-bottom: 40px;
	}
	.xl-pl-40 {
		padding-left: 40px;
	}
	.xl-pr-40 {
		padding-right: 40px;
	}
	.xl-mb-40 {
		margin-bottom: 40px;
	}
	.xl-ml-40 {
		margin-left: 40px;
	}
	.xl-mr-40 {
		margin-right: 40px;
	}
	.xl-pb-45 {
		padding-bottom: 45px;
	}
	.xl-pl-45 {
		padding-left: 45px;
	}
	.xl-pr-45 {
		padding-right: 45px;
	}
	.xl-mb-45 {
		margin-bottom: 45px;
	}
	.xl-ml-45 {
		margin-left: 45px;
	}
	.xl-mr-45 {
		margin-right: 45px;
	}
	.xl-pb-50 {
		padding-bottom: 50px;
	}
	.xl-pl-50 {
		padding-left: 50px;
	}
	.xl-pr-50 {
		padding-right: 50px;
	}
	.xl-mb-50 {
		margin-bottom: 50px;
	}
	.xl-ml-50 {
		margin-left: 50px;
	}
	.xl-mr-50 {
		margin-right: 50px;
	}
	.xl-pb-55 {
		padding-bottom: 55px;
	}
	.xl-pl-55 {
		padding-left: 55px;
	}
	.xl-pr-55 {
		padding-right: 55px;
	}
	.xl-mb-55 {
		margin-bottom: 55px;
	}
	.xl-ml-55 {
		margin-left: 55px;
	}
	.xl-mr-55 {
		margin-right: 55px;
	}
	.xl-pb-60 {
		padding-bottom: 60px;
	}
	.xl-pl-60 {
		padding-left: 60px;
	}
	.xl-pr-60 {
		padding-right: 60px;
	}
	.xl-mb-60 {
		margin-bottom: 60px;
	}
	.xl-ml-60 {
		margin-left: 60px;
	}
	.xl-mr-60 {
		margin-right: 60px;
	}
	.xl-pb-65 {
		padding-bottom: 65px;
	}
	.xl-pl-65 {
		padding-left: 65px;
	}
	.xl-pr-65 {
		padding-right: 65px;
	}
	.xl-mb-65 {
		margin-bottom: 65px;
	}
	.xl-ml-65 {
		margin-left: 65px;
	}
	.xl-mr-65 {
		margin-right: 65px;
	}
	.xl-pb-70 {
		padding-bottom: 70px;
	}
	.xl-pl-70 {
		padding-left: 70px;
	}
	.xl-pr-70 {
		padding-right: 70px;
	}
	.xl-mb-70 {
		margin-bottom: 70px;
	}
	.xl-ml-70 {
		margin-left: 70px;
	}
	.xl-mr-70 {
		margin-right: 70px;
	}
	.xl-pb-75 {
		padding-bottom: 75px;
	}
	.xl-pl-75 {
		padding-left: 75px;
	}
	.xl-pr-75 {
		padding-right: 75px;
	}
	.xl-mb-75 {
		margin-bottom: 75px;
	}
	.xl-ml-75 {
		margin-left: 75px;
	}
	.xl-mr-75 {
		margin-right: 75px;
	}
	.xl-pb-80 {
		padding-bottom: 80px;
	}
	.xl-pl-80 {
		padding-left: 80px;
	}
	.xl-pr-80 {
		padding-right: 80px;
	}
	.xl-mb-80 {
		margin-bottom: 80px;
	}
	.xl-ml-80 {
		margin-left: 80px;
	}
	.xl-mr-80 {
		margin-right: 80px;
	}
	.xl-pb-85 {
		padding-bottom: 85px;
	}
	.xl-pl-85 {
		padding-left: 85px;
	}
	.xl-pr-85 {
		padding-right: 85px;
	}
	.xl-mb-85 {
		margin-bottom: 85px;
	}
	.xl-ml-85 {
		margin-left: 85px;
	}
	.xl-mr-85 {
		margin-right: 85px;
	}
	.xl-pb-90 {
		padding-bottom: 90px;
	}
	.xl-pl-90 {
		padding-left: 90px;
	}
	.xl-pr-90 {
		padding-right: 90px;
	}
	.xl-mb-90 {
		margin-bottom: 90px;
	}
	.xl-ml-90 {
		margin-left: 90px;
	}
	.xl-mr-90 {
		margin-right: 90px;
	}
	.xl-pb-95 {
		padding-bottom: 95px;
	}
	.xl-pl-95 {
		padding-left: 95px;
	}
	.xl-pr-95 {
		padding-right: 95px;
	}
	.xl-mb-95 {
		margin-bottom: 95px;
	}
	.xl-ml-95 {
		margin-left: 95px;
	}
	.xl-mr-95 {
		margin-right: 95px;
	}
	.xl-t-left {
		text-align: left !important;
	}
	.xl-t-center {
		text-align: center !important;
	}
	.xl-t-right {
		text-align: right !important;
	}
	.xl-display-n {
		display: none !important;
	}
	.xl-display-b {
		display: block !important;
	}
}
@media (max-width: 991px) {
	.lg-mb-0 {
		margin-bottom: 0px;
	}
	.lg-mt-0 {
		margin-top: 0px;
	}
	.lg-ml-0 {
		margin-left: 0px;
	}
	.lg-mr-0 {
		margin-right: 0px;
	}
	.lg-pt-0 {
		padding-top: 0px;
	}
	.lg-pb-0 {
		padding-bottom: 0px;
	}
	.lg-pl-0 {
		padding-left: 0px;
	}
	.lg-pr-0 {
		padding-right: 0px;
	}
	.lg-mb-5 {
		margin-bottom: 5px;
	}
	.lg-mt-5 {
		margin-top: 5px;
	}
	.lg-ml-5 {
		margin-left: 5px;
	}
	.lg-mr-5 {
		margin-right: 5px;
	}
	.lg-pt-5 {
		padding-top: 5px;
	}
	.lg-pb-5 {
		padding-bottom: 5px;
	}
	.lg-pl-5 {
		padding-left: 5px;
	}
	.lg-pr-5 {
		padding-right: 5px;
	}
	.lg-mb-10 {
		margin-bottom: 10px;
	}
	.lg-mt-10 {
		margin-top: 10px;
	}
	.lg-ml-10 {
		margin-left: 10px;
	}
	.lg-mr-10 {
		margin-right: 10px;
	}
	.lg-pt-10 {
		padding-top: 10px;
	}
	.lg-pb-10 {
		padding-bottom: 10px;
	}
	.lg-pl-10 {
		padding-left: 10px;
	}
	.lg-pr-10 {
		padding-right: 10px;
	}
	.lg-mb-15 {
		margin-bottom: 15px;
	}
	.lg-mt-15 {
		margin-top: 15px;
	}
	.lg-ml-15 {
		margin-left: 15px;
	}
	.lg-mr-15 {
		margin-right: 15px;
	}
	.lg-pt-15 {
		padding-top: 15px;
	}
	.lg-pb-15 {
		padding-bottom: 15px;
	}
	.lg-pl-15 {
		padding-left: 15px;
	}
	.lg-pr-15 {
		padding-right: 15px;
	}
	.lg-mb-20 {
		margin-bottom: 20px;
	}
	.lg-mt-20 {
		margin-top: 20px;
	}
	.lg-ml-20 {
		margin-left: 20px;
	}
	.lg-mr-20 {
		margin-right: 20px;
	}
	.lg-pt-20 {
		padding-top: 20px;
	}
	.lg-pb-20 {
		padding-bottom: 20px;
	}
	.lg-pl-20 {
		padding-left: 20px;
	}
	.lg-pr-20 {
		padding-right: 20px;
	}
	.lg-mb-25 {
		margin-bottom: 25px;
	}
	.lg-mt-25 {
		margin-top: 25px;
	}
	.lg-ml-25 {
		margin-left: 25px;
	}
	.lg-mr-25 {
		margin-right: 25px;
	}
	.lg-pt-25 {
		padding-top: 25px;
	}
	.lg-pb-25 {
		padding-bottom: 25px;
	}
	.lg-pl-25 {
		padding-left: 25px;
	}
	.lg-pr-25 {
		padding-right: 25px;
	}
	.lg-mb-30 {
		margin-bottom: 30px;
	}
	.lg-mt-30 {
		margin-top: 30px;
	}
	.lg-ml-30 {
		margin-left: 30px;
	}
	.lg-mr-30 {
		margin-right: 30px;
	}
	.lg-pt-30 {
		padding-top: 30px;
	}
	.lg-pb-30 {
		padding-bottom: 30px;
	}
	.lg-pl-30 {
		padding-left: 30px;
	}
	.lg-pr-30 {
		padding-right: 30px;
	}
	.lg-mb-35 {
		margin-bottom: 35px;
	}
	.lg-mt-35 {
		margin-top: 35px;
	}
	.lg-ml-35 {
		margin-left: 35px;
	}
	.lg-mr-35 {
		margin-right: 35px;
	}
	.lg-pt-35 {
		padding-top: 35px;
	}
	.lg-pb-35 {
		padding-bottom: 35px;
	}
	.lg-pl-35 {
		padding-left: 35px;
	}
	.lg-pr-35 {
		padding-right: 35px;
	}
	.lg-mb-40 {
		margin-bottom: 40px;
	}
	.lg-mt-40 {
		margin-top: 40px;
	}
	.lg-ml-40 {
		margin-left: 40px;
	}
	.lg-mr-40 {
		margin-right: 40px;
	}
	.lg-pt-40 {
		padding-top: 40px;
	}
	.lg-pb-40 {
		padding-bottom: 40px;
	}
	.lg-pl-40 {
		padding-left: 40px;
	}
	.lg-pr-40 {
		padding-right: 40px;
	}
	.lg-mb-45 {
		margin-bottom: 45px;
	}
	.lg-mt-45 {
		margin-top: 45px;
	}
	.lg-ml-45 {
		margin-left: 45px;
	}
	.lg-mr-45 {
		margin-right: 45px;
	}
	.lg-pt-45 {
		padding-top: 45px;
	}
	.lg-pb-45 {
		padding-bottom: 45px;
	}
	.lg-pl-45 {
		padding-left: 45px;
	}
	.lg-pr-45 {
		padding-right: 45px;
	}
	.lg-mb-50 {
		margin-bottom: 50px;
	}
	.lg-mt-50 {
		margin-top: 50px;
	}
	.lg-ml-50 {
		margin-left: 50px;
	}
	.lg-mr-50 {
		margin-right: 50px;
	}
	.lg-pt-50 {
		padding-top: 50px;
	}
	.lg-pb-50 {
		padding-bottom: 50px;
	}
	.lg-pl-50 {
		padding-left: 50px;
	}
	.lg-pr-50 {
		padding-right: 50px;
	}
	.lg-mb-55 {
		margin-bottom: 55px;
	}
	.lg-mt-55 {
		margin-top: 55px;
	}
	.lg-ml-55 {
		margin-left: 55px;
	}
	.lg-mr-55 {
		margin-right: 55px;
	}
	.lg-pt-55 {
		padding-top: 55px;
	}
	.lg-pb-55 {
		padding-bottom: 55px;
	}
	.lg-pl-55 {
		padding-left: 55px;
	}
	.lg-pr-55 {
		padding-right: 55px;
	}
	.lg-mb-60 {
		margin-bottom: 60px;
	}
	.lg-mt-60 {
		margin-top: 60px;
	}
	.lg-ml-60 {
		margin-left: 60px;
	}
	.lg-mr-60 {
		margin-right: 60px;
	}
	.lg-pt-60 {
		padding-top: 60px;
	}
	.lg-pb-60 {
		padding-bottom: 60px;
	}
	.lg-pl-60 {
		padding-left: 60px;
	}
	.lg-pr-60 {
		padding-right: 60px;
	}
	.lg-mb-65 {
		margin-bottom: 65px;
	}
	.lg-mt-65 {
		margin-top: 65px;
	}
	.lg-ml-65 {
		margin-left: 65px;
	}
	.lg-mr-65 {
		margin-right: 65px;
	}
	.lg-pt-65 {
		padding-top: 65px;
	}
	.lg-pb-65 {
		padding-bottom: 65px;
	}
	.lg-pl-65 {
		padding-left: 65px;
	}
	.lg-pr-65 {
		padding-right: 65px;
	}
	.lg-mb-70 {
		margin-bottom: 70px;
	}
	.lg-mt-70 {
		margin-top: 70px;
	}
	.lg-ml-70 {
		margin-left: 70px;
	}
	.lg-mr-70 {
		margin-right: 70px;
	}
	.lg-pt-70 {
		padding-top: 70px;
	}
	.lg-pb-70 {
		padding-bottom: 70px;
	}
	.lg-pl-70 {
		padding-left: 70px;
	}
	.lg-pr-70 {
		padding-right: 70px;
	}
	.lg-t-left {
		text-align: left !important;
	}
	.lg-t-center {
		text-align: center !important;
	}
	.lg-t-right {
		text-align: right !important;
	}
	.lg-jc-left {
		justify-content: left !important;
	}
	.lg-jc-center {
		justify-content: center !important;
	}
	.lg-jc-end {
		justify-content: end !important;
	}
	.lg-jc-space-between {
		justify-content: space-between !important;
	}
	.lg-display-n {
		display: none !important;
	}
	.lg-display-b {
		display: block !important;
	}
	.lg_img_full {
		width: 100%;
	}
}
@media (max-width: 767px) {
	.md-mb-0 {
		margin-bottom: 0px;
	}
	.md-mt-0 {
		margin-top: 0px;
	}
	.md-pt-0 {
		padding-top: 0px;
	}
	.md-pb-0 {
		padding-bottom: 0px;
	}
	.md-pl-0 {
		padding-left: 0px;
	}
	.md-pr-0 {
		padding-right: 0px;
	}
	.md-mb-5 {
		margin-bottom: 5px;
	}
	.md-mt-5 {
		margin-top: 5px;
	}
	.md-pt-5 {
		padding-top: 5px;
	}
	.md-pb-5 {
		padding-bottom: 5px;
	}
	.md-pl-5 {
		padding-left: 5px;
	}
	.md-pr-5 {
		padding-right: 5px;
	}
	.md-mb-10 {
		margin-bottom: 10px;
	}
	.md-mt-10 {
		margin-top: 10px;
	}
	.md-pt-10 {
		padding-top: 10px;
	}
	.md-pb-10 {
		padding-bottom: 10px;
	}
	.md-pl-10 {
		padding-left: 10px;
	}
	.md-pr-10 {
		padding-right: 10px;
	}
	.md-mb-15 {
		margin-bottom: 15px;
	}
	.md-mt-15 {
		margin-top: 15px;
	}
	.md-pt-15 {
		padding-top: 15px;
	}
	.md-pb-15 {
		padding-bottom: 15px;
	}
	.md-pl-15 {
		padding-left: 15px;
	}
	.md-pr-15 {
		padding-right: 15px;
	}
	.md-mb-20 {
		margin-bottom: 20px;
	}
	.md-mt-20 {
		margin-top: 20px;
	}
	.md-pt-20 {
		padding-top: 20px;
	}
	.md-pb-20 {
		padding-bottom: 20px;
	}
	.md-pl-20 {
		padding-left: 20px;
	}
	.md-pr-20 {
		padding-right: 20px;
	}
	.md-mb-25 {
		margin-bottom: 25px;
	}
	.md-mt-25 {
		margin-top: 25px;
	}
	.md-pt-25 {
		padding-top: 25px;
	}
	.md-pb-25 {
		padding-bottom: 25px;
	}
	.md-pl-25 {
		padding-left: 25px;
	}
	.md-pr-25 {
		padding-right: 25px;
	}
	.md-mb-30 {
		margin-bottom: 30px;
	}
	.md-mt-30 {
		margin-top: 30px;
	}
	.md-pt-30 {
		padding-top: 30px;
	}
	.md-pb-30 {
		padding-bottom: 30px;
	}
	.md-pl-30 {
		padding-left: 30px;
	}
	.md-pr-30 {
		padding-right: 30px;
	}
	.md-mb-35 {
		margin-bottom: 35px;
	}
	.md-mt-35 {
		margin-top: 35px;
	}
	.md-pt-35 {
		padding-top: 35px;
	}
	.md-pb-35 {
		padding-bottom: 35px;
	}
	.md-pl-35 {
		padding-left: 35px;
	}
	.md-pr-35 {
		padding-right: 35px;
	}
	.md-mb-40 {
		margin-bottom: 40px;
	}
	.md-mt-40 {
		margin-top: 40px;
	}
	.md-pt-40 {
		padding-top: 40px;
	}
	.md-pb-40 {
		padding-bottom: 40px;
	}
	.md-pl-40 {
		padding-left: 40px;
	}
	.md-pr-40 {
		padding-right: 40px;
	}
	.md-mb-45 {
		margin-bottom: 45px;
	}
	.md-mt-45 {
		margin-top: 45px;
	}
	.md-pt-45 {
		padding-top: 45px;
	}
	.md-pb-45 {
		padding-bottom: 45px;
	}
	.md-pl-45 {
		padding-left: 45px;
	}
	.md-pr-45 {
		padding-right: 45px;
	}
	.md-t-left {
		text-align: left !important;
	}
	.md-t-center {
		text-align: center !important;
	}
	.md-t-right {
		text-align: right !important;
	}
	.md-jc-left {
		justify-content: left !important;
	}
	.md-jc-center {
		justify-content: center !important;
	}
	.md-jc-end {
		justify-content: end !important;
	}
	.md-display-n {
		display: none !important;
	}
	.md-display-b {
		display: block !important;
	}
	.md_img_full {
		width: 100%;
	}
}
@media (max-width: 575px) {
	.sm-mb-0 {
		margin-bottom: 0px;
	}
	.sm-mt-0 {
		margin-top: 0px;
	}
	.sm-ml-0 {
		margin-left: 0px;
	}
	.sm-pt-0 {
		padding-top: 0px;
	}
	.sm-pb-0 {
		padding-bottom: 0px;
	}
	.sm-pl-0 {
		padding-left: 0px;
	}
	.sm-pr-0 {
		padding-right: 0px;
	}
	.sm-mb-5 {
		margin-bottom: 5px;
	}
	.sm-mt-5 {
		margin-top: 5px;
	}
	.sm-ml-5 {
		margin-left: 5px;
	}
	.sm-pt-5 {
		padding-top: 5px;
	}
	.sm-pb-5 {
		padding-bottom: 5px;
	}
	.sm-pl-5 {
		padding-left: 5px;
	}
	.sm-pr-5 {
		padding-right: 5px;
	}
	.sm-mb-10 {
		margin-bottom: 10px;
	}
	.sm-mt-10 {
		margin-top: 10px;
	}
	.sm-ml-10 {
		margin-left: 10px;
	}
	.sm-pt-10 {
		padding-top: 10px;
	}
	.sm-pb-10 {
		padding-bottom: 10px;
	}
	.sm-pl-10 {
		padding-left: 10px;
	}
	.sm-pr-10 {
		padding-right: 10px;
	}
	.sm-mb-15 {
		margin-bottom: 15px;
	}
	.sm-mt-15 {
		margin-top: 15px;
	}
	.sm-ml-15 {
		margin-left: 15px;
	}
	.sm-pt-15 {
		padding-top: 15px;
	}
	.sm-pb-15 {
		padding-bottom: 15px;
	}
	.sm-pl-15 {
		padding-left: 15px;
	}
	.sm-pr-15 {
		padding-right: 15px;
	}
	.sm-mb-20 {
		margin-bottom: 20px;
	}
	.sm-mt-20 {
		margin-top: 20px;
	}
	.sm-ml-20 {
		margin-left: 20px;
	}
	.sm-pt-20 {
		padding-top: 20px;
	}
	.sm-pb-20 {
		padding-bottom: 20px;
	}
	.sm-pl-20 {
		padding-left: 20px;
	}
	.sm-pr-20 {
		padding-right: 20px;
	}
	.sm-mb-25 {
		margin-bottom: 25px;
	}
	.sm-mt-25 {
		margin-top: 25px;
	}
	.sm-ml-25 {
		margin-left: 25px;
	}
	.sm-pt-25 {
		padding-top: 25px;
	}
	.sm-pb-25 {
		padding-bottom: 25px;
	}
	.sm-pl-25 {
		padding-left: 25px;
	}
	.sm-pr-25 {
		padding-right: 25px;
	}
	.sm-mb-30 {
		margin-bottom: 30px;
	}
	.sm-mt-30 {
		margin-top: 30px;
	}
	.sm-ml-30 {
		margin-left: 30px;
	}
	.sm-pt-30 {
		padding-top: 30px;
	}
	.sm-pb-30 {
		padding-bottom: 30px;
	}
	.sm-pl-30 {
		padding-left: 30px;
	}
	.sm-pr-30 {
		padding-right: 30px;
	}
	.sm-mb-35 {
		margin-bottom: 35px;
	}
	.sm-mt-35 {
		margin-top: 35px;
	}
	.sm-ml-35 {
		margin-left: 35px;
	}
	.sm-pt-35 {
		padding-top: 35px;
	}
	.sm-pb-35 {
		padding-bottom: 35px;
	}
	.sm-pl-35 {
		padding-left: 35px;
	}
	.sm-pr-35 {
		padding-right: 35px;
	}
	.sm-mb-40 {
		margin-bottom: 40px;
	}
	.sm-mt-40 {
		margin-top: 40px;
	}
	.sm-ml-40 {
		margin-left: 40px;
	}
	.sm-pt-40 {
		padding-top: 40px;
	}
	.sm-pb-40 {
		padding-bottom: 40px;
	}
	.sm-pl-40 {
		padding-left: 40px;
	}
	.sm-pr-40 {
		padding-right: 40px;
	}
	.sm-mb-45 {
		margin-bottom: 45px;
	}
	.sm-mt-45 {
		margin-top: 45px;
	}
	.sm-ml-45 {
		margin-left: 45px;
	}
	.sm-pt-45 {
		padding-top: 45px;
	}
	.sm-pb-45 {
		padding-bottom: 45px;
	}
	.sm-pl-45 {
		padding-left: 45px;
	}
	.sm-pr-45 {
		padding-right: 45px;
	}
	.sm-mb-50 {
		margin-bottom: 50px;
	}
	.sm-mt-50 {
		margin-top: 50px;
	}
	.sm-ml-50 {
		margin-left: 50px;
	}
	.sm-pt-50 {
		padding-top: 50px;
	}
	.sm-pb-50 {
		padding-bottom: 50px;
	}
	.sm-pl-50 {
		padding-left: 50px;
	}
	.sm-pr-50 {
		padding-right: 50px;
	}
	.sm-mb-55 {
		margin-bottom: 55px;
	}
	.sm-mt-55 {
		margin-top: 55px;
	}
	.sm-ml-55 {
		margin-left: 55px;
	}
	.sm-pt-55 {
		padding-top: 55px;
	}
	.sm-pb-55 {
		padding-bottom: 55px;
	}
	.sm-pl-55 {
		padding-left: 55px;
	}
	.sm-pr-55 {
		padding-right: 55px;
	}
	.sm-t-left {
		text-align: left !important;
	}
	.sm-t-center {
		text-align: center !important;
	}
	.sm-t-right {
		text-align: right !important;
	}
	.sm-display-n {
		display: none !important;
	}
	.sm-display-b {
		display: block !important;
	}
	.sm_img_full {
		width: 100%;
	}
}
/*==========================================================================
* Menu Bar CSS
==========================================================================*/
/*==========================================================================
* Banner One CSS
==========================================================================*/
.banner__one {
	background-position: 0px -85px;
	background-repeat: no-repeat;
	padding-top: 110px;
	overflow: hidden;
}
.banner__one .container {
	max-width: 1460px;
}
.banner__one-content {
	position: relative;
	z-index: 1;
}
.banner__one-content h1 {
	font-size: 130px;
	line-height: 130px;
}
.banner__one-content-user {
	margin-top: 55px;
	display: flex;
	align-items: center;
	gap: 30px;
}
.banner__one-content-user h5 {
	font-weight: 400;
	max-width: 300px;
}
.banner__one-content-award {
	position: absolute;
	bottom: 0;
	right: 20%;
}
.banner__one-image {
	margin-top: -200px;
	position: relative;
	z-index: -1;
}

/*==========================================================================
* Banner Two CSS
==========================================================================*/
@keyframes activeBar {
	0% {
		width: 0;
	}
	100% {
		width: 100%;
	}
}
.banner__two {
	position: relative;
	z-index: 1;
}
.banner__two-area {
	padding-bottom: 120px;
	padding-top: 70px;
}
.banner__two-area-image {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}
.banner__two-area-image::after {
	position: absolute;
	content: '';
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: var(--color-1);
	opacity: 0.6;
}
.banner__two-content {
	padding: 170px 0;
}
.banner__two-content .subtitle {
	color: var(--text-white);
}
.banner__two-content h2 {
	color: var(--text-white);
	font-size: 80px;
	line-height: 90px;
	margin-bottom: 10px;
}
.banner__two-content h1 {
	font-size: 150px;
	line-height: 160px;
	color: var(--text-white);
	letter-spacing: 1.6px;
	text-transform: uppercase;
	margin-bottom: 40px;
}
.banner__two-slide {
	margin-top: -119px;
	position: relative;
	z-index: 1;
}
.banner__two-slide-area {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.banner__two-slide-area-thumb {
	width: 100%;
}
.banner__two-slide-area-thumb-item {
	display: flex;
	align-items: center;
	gap: 25px;
	padding: 29px 50px;
	border-right: 1px solid var(--border-color-1);
	border-bottom: 1px solid var(--border-color-1);
	background: var(--bg-white);
	cursor: pointer;
	position: relative;
	width: 33.33% !important;
	transition: 0.4s;
}
.banner__two-slide-area-thumb-item::after {
	position: absolute;
	content: '';
	left: 0;
	bottom: 0;
	width: 0;
	height: 4px;
	background: #d8a743;
}
.banner__two-slide-area-thumb-item img {
	width: 60px;
	height: 60px;
	min-width: 60px;
	-o-object-fit: cover;
	object-fit: cover;
	border-radius: 50%;
}
.banner__two-slide-area-thumb-item h6 {
	font-size: 20px;
	line-height: 30px;
	max-width: 150px;
	transition: 0.4s;
}
.banner__two-slide-area-thumb-item:last-child {
	border-right: none;
}
.banner__two-slide-area-thumb-item.swiper-slide-thumb-active {
	background: var(--primary-color-1);
}
.banner__two-slide-area-thumb-item.swiper-slide-thumb-active::after {
	animation-name: activeBar;
	animation-duration: 4.7s;
}
.banner__two-slide-area-thumb-item.swiper-slide-thumb-active h6 {
	color: var(--color-1);
}
.banner__two-slide-area-arrow {
	display: flex;
	margin-left: -1px;
	width: 140px;
}
.banner__two-slide-area-arrow .banner_next,
.banner__two-slide-area-arrow .banner_prev {
	position: static;
	width: auto;
	height: auto;
	margin-top: 0;
}
.banner__two-slide-area-arrow .banner_prev {
	border-right: 1px solid var(--border-color-1);
}
.banner__two-slide-area-arrow-next,
.banner__two-slide-area-arrow-prev {
	display: inline-block;
}
.banner__two-slide-area-arrow-next i,
.banner__two-slide-area-arrow-prev i,
.banner__two-slide-area-arrow-next svg,
.banner__two-slide-area-arrow-prev svg {
	cursor: pointer;
	width: 70px;
	height: 118.1px;
	padding: 24px 24px 48px;
	box-sizing: border-box;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--color-2);
	color: var(--text-heading-color);
	transition: 0.4s;
}
.banner__two-slide-area-arrow-next i,
.banner__two-slide-area-arrow-prev i {
	font-size: 22px;
	padding: 0;
}
.banner__two-slide-area-arrow-next i:hover,
.banner__two-slide-area-arrow-prev i:hover,
.banner__two-slide-area-arrow-next svg:hover,
.banner__two-slide-area-arrow-prev svg:hover {
	background: var(--color-1);
	color: var(--text-white);
}

.banner__two .banner__two-content .subtitle,
.banner__two .banner__two-content h2,
.banner__two .banner__two-content h1,
.banner__two .banner__two-content .build_button {
	animation-name: fadeInUp;
	animation-fill-mode: both;
}
.banner__two .swiper-slide-active .banner__two-content .subtitle {
	animation-delay: 0.3s;
	animation-duration: 1s;
}
.banner__two .swiper-slide-active .banner__two-content h2 {
	animation-delay: 0.6s;
	animation-duration: 1s;
}
.banner__two .swiper-slide-active .banner__two-content h1 {
	animation-delay: 0.9s;
	animation-duration: 1s;
}
.banner__two .swiper-slide-active .banner__two-content .build_button {
	animation-delay: 1.2s;
	animation-duration: 1s;
}

/*==========================================================================
* Banner Three CSS
==========================================================================*/
.banner__three {
	padding-top: 110px;
	overflow: hidden;
	background: var(--color-1);
}
.banner__three-content h1 {
	color: var(--text-white);
	font-size: 110px;
	line-height: 110px;
	display: flex;
	align-items: center;
	gap: 40px;
}
.banner__three-content h1 img {
	height: 85px;
	width: 300px;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center center;
	object-position: center center;
	border-radius: 100px;
}
.banner__three .slider-arrow i,
.banner__three .slider-arrow svg {
	color: var(--text-white);
	background: #313131;
	border-color: #313131;
}
.banner__three .slider-arrow i:hover,
.banner__three .slider-arrow svg:hover {
	color: var(--color-1);
	background: var(--primary-color-1);
	border-color: var(--primary-color-1);
}
.banner__three .container {
	max-width: 1620px;
}
.banner__three-slider {
	margin-top: 65px;
	margin-right: -250px;
}
.banner__three .scroll__slider {
	margin-right: -250px;
	padding: 80px 0;
}
.banner__three .scroll__slider ul li img {
	max-width: inherit;
}

/*==========================================================================
* Banner Four CSS
==========================================================================*/
.banner__four {
	position: relative;
	z-index: 1;
	overflow: hidden;
	padding: 250px 0 0 0;
}
.banner__four::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 90px;
	background: var(--bg-white);
	z-index: -1;
}
.banner__four .bg-video {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}
.banner__four .bg-video video {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}
.banner__four-content {
	position: relative;
}
.banner__four-content img.h_rotate {
	position: absolute;
	right: 9%;
	bottom: 0;
}
.banner__four-content .subtitle {
	color: var(--text-white);
}
.banner__four-content h1 {
	font-size: 150px;
	line-height: 160px;
	font-weight: 600;
	color: var(--text-white);
	text-transform: uppercase;
}
.banner__four-content h2 {
	font-size: 100px;
	font-weight: 500;
	line-height: 100px;
	-webkit-text-stroke-width: 1px;
	stroke-width: 1px;
	-webkit-text-stroke-color: #ffffff;
	stroke: #ffffff;
	color: transparent;
	margin-bottom: 40px;
}
.banner__four .container {
	max-width: 1420px;
}
.banner__four-brand {
	background: var(--color-2);
	display: flex;
	align-items: center;
	margin-top: 150px;
}
.banner__four-brand .title {
	padding: 0 30px 0 60px;
	min-width: 290px;
}
.banner__four-brand .scroll__slider {
	margin-right: -260px;
	padding: 85px 0;
	background: var(--color-2);
	border-left: 1px solid var(--border-color-2);
}
.banner__four-brand .scroll__slider .text-slide {
	margin-left: 60px;
	overflow: hidden;
}
.banner__four-brand .scroll__slider ul li img {
	filter: invert(1);
	max-width: inherit;
}

@media (max-width: 1350px) {
	.banner__one-content h1 {
		font-size: 110px;
		line-height: 120px;
	}
	.banner__three-content h1 {
		font-size: 95px;
		line-height: 105px;
	}
	.banner__four-content h1 {
		font-size: 130px;
		line-height: 140px;
	}
}
@media (max-width: 1199px) {
	.banner__one {
		background-position: top;
	}
	.banner__one-image {
		margin-top: -100px;
	}
	.banner__three-content h1 {
		font-size: 80px;
		line-height: 90px;
	}
	.banner__four-content h1 {
		font-size: 110px;
		line-height: 120px;
	}
	.banner__four-content h2 {
		font-size: 90px;
		line-height: 90px;
	}
}
@media (max-width: 767px) {
	.banner__one-content h1 {
		font-size: 84px;
		line-height: 94px;
	}
	.banner__one-content-award {
		display: none;
	}
	.banner__one-image {
		margin-top: 0;
	}
	.banner__three-content h1 {
		font-size: 60px;
		line-height: 70px;
	}
	.banner__three-content h1 {
		font-size: 60px;
		line-height: 70px;
	}
	.banner__three-content h1 img {
		height: 70px;
		width: 100px;
		border-radius: 50px;
	}
	.banner__four-content h1 {
		font-size: 60px;
		line-height: 70px;
	}
	.banner__four-content h2 {
		font-size: 50px;
		line-height: 50px;
	}
	.banner__four-content img.h_rotate {
		display: none;
	}
}
@media (max-width: 575px) {
	.banner__one-content h1 {
		font-size: 54px;
		line-height: 64px;
	}
	.banner__three-content h1 {
		font-size: 50px;
		line-height: 60px;
	}
	.banner__four-brand {
		display: grid;
	}
	.banner__four-brand .title {
		padding: 50px 0 0 30px;
	}
	.banner__four-brand .scroll__slider {
		padding: 50px 30px;
		border-left: 0;
		margin: 0;
	}
	.banner__four-brand .scroll__slider .text-slide {
		margin-left: 0;
	}
}
@media (max-width: 359px) {
	.banner__one-content h1 {
		font-size: 46px;
		line-height: 56px;
	}
}
@media (max-width: 1199px) {
	.banner__two-slide-area-thumb-item {
		gap: 20px;
		padding: 29px 25px;
	}
}
@media (max-width: 1010px) {
	.banner__two-slide-area-thumb-item {
		width: 100% !important;
	}
	.banner__two-slide-area-thumb-item:last-child {
		border-right: 1px solid var(--border-color-1);
	}
	.banner__two-slide-area .thumb__area {
		display: grid;
		grid-template-columns: 50% 50%;
	}
	.banner__two-slide-area-arrow {
		display: block;
		width: 70px;
	}
	.banner__two-slide-area-arrow .banner_prev {
		border-right: 0;
		border-bottom: 1px solid var(--border-color-1);
	}
	.banner__two-content h1 {
		font-size: 130px;
		line-height: 140px;
	}
	.banner__two-content h2 {
		font-size: 60px;
		line-height: 70px;
	}
}
@media (max-width: 767px) {
	.banner__two-content h1 {
		font-size: 82px;
		line-height: 92px;
	}
	.banner__two-content h2 {
		font-size: 44px;
		line-height: 54px;
	}
}
@media (max-width: 660px) {
	.banner__two-content {
		padding: 145px 0 195px 0;
	}
	.banner__two-slide-area {
		display: block;
		position: relative;
	}
	.banner__two-slide-area .thumb__area {
		grid-template-columns: 100%;
	}
	.banner__two-slide-area-arrow {
		display: flex;
		gap: 15px;
		width: 100%;
		position: absolute;
		top: -70px;
		z-index: 1;
	}
	.banner__two-slide-area-arrow .banner_prev {
		border: 0;
	}
	.banner__two-slide-area-arrow-next i,
	.banner__two-slide-area-arrow-prev i {
		font-size: 22px;
		width: 60px;
		height: 60px;
		border-radius: 50%;
	}
	.banner__two-slide-area-thumb-item {
		border-left: 1px solid var(--border-color-1);
	}
	.banner__two-slide-area-thumb-item h6 {
		font-size: 18px;
		line-height: 28px;
		max-width: initial;
	}
}
@media (max-width: 465px) {
	.banner__two-content h2 {
		font-size: 32px;
		line-height: 42px;
	}
	.banner__two-content h1 {
		font-size: 50px;
		line-height: 60px;
	}
}
/*==========================================================================
* About One CSS
==========================================================================*/

/*==========================================================================
* About Two CSS
==========================================================================*/
/*==========================================================================
* About Three CSS
==========================================================================*/
.about__three {
	background: var(--color-2);
	position: relative;
	z-index: 1;
}
.about__three-image {
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
}
.about__three-right {
	background: var(--color-2);
}

/*==========================================================================
* About Four CSS
==========================================================================*/

/*==========================================================================
* About Five CSS
==========================================================================*/
.about__five-right .features {
	background-position: top center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 50px;
	margin-top: 30px;
	margin-bottom: 35px;
	position: relative;
	z-index: 1;
}
.about__five-right .features::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: linear-gradient(
		115deg,
		var(--color-1) 0%,
		rgba(242, 41, 91, 0) 100%
	);
	z-index: -1;
}
.about__five-right .features h3 {
	color: var(--text-white);
}

/*==========================================================================
* Company History CSS
==========================================================================*/
@media (max-width: 1199px) {
}
@media (max-width: 991px) {
	.about__three-image {
		position: inherit;
		width: 100%;
	}
}
@media (max-width: 660px) {
}
/*==========================================================================
* Blog One CSS
==========================================================================*/
.blog__one-item {
	border: 1px solid var(--border-color-2);
	border-top: 0;
	border-radius: 10px;
	margin-bottom: 25px;
}
/*==========================================================================
* All Side Bar
========================================================================== */
/*==========================================================================
* Counter CSS
==========================================================================*/
/*==========================================================================
* Process Css
==========================================================================*/
.process__area-title {
	max-width: 600px;
	margin: 0 auto;
}
.process__area-item {
	border-top: 1px dashed var(--border-color-3);
}
.process__area-item h6 {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--color-1);
	color: var(--text-white);
	font-size: 16px;
	line-height: 26px;
	margin-bottom: 20px;
	position: relative;
	top: -20px;
}
.process__area-item p {
	margin-bottom: 0;
	margin-top: 10px;
}

.certification {
	background: var(--color-2);
}

/*==========================================================================
* Cta CSS
==========================================================================*/
.cta__area {
	background: var(--primary-color-1);
	padding: 70px 0;
}
.cta__area h2 {
	color: var(--color-1);
}
.cta__area .build_button {
	background: var(--color-1);
	color: var(--text-white);
}
.cta__area .build_button i,
.cta__area .build_button svg {
	color: var(--text-white);
	background: var(--color-5);
}

.scroll__slider {
	position: relative;
	overflow: hidden;
}
.scroll__slider .text-slide {
	display: flex;
}
.scroll__slider ul {
	padding: 0;
	margin: 0;
	display: flex;
}
.scroll__slider ul li {
	display: inline-flex;
}
.scroll__slider ul li img {
	margin: 0 50px;
}
.scroll__slider ul li a {
	font-family: var(--heading-font);
	font-size: 80px;
	font-weight: 700;
	text-transform: uppercase;
	line-height: 88px;
	color: var(--text-heading-color);
	transition: 0.4s;
}
.scroll__slider ul li a:hover {
	color: var(--primary-color-1);
}
.scroll__slider ul li:nth-child(even) a {
	-webkit-text-fill-color: transparent;
	-webkit-text-stroke-width: 1px;
}

.sliders {
	flex-shrink: 0;
}

.text_scroll {
	animation: scroll 40s linear infinite;
	animation-direction: reverse !important;
}

@keyframes scroll {
	0% {
		transform: translateX(0%);
	}
	100% {
		transform: translateX(-100%);
	}
}
@media (max-width: 767px) {
	.scroll__slider ul li a {
		font-size: 40px;
		font-weight: 600;
		line-height: 50px;
	}
	.scroll__slider ul li img {
		margin: 0 30px;
		max-width: 40px;
	}
}

/*==========================================================================
* Portfolio Two CSS
==========================================================================*/
.success__area-title p {
	max-width: 500px;
}

.two__columns .portfolio__two-item {
	position: relative;
	z-index: 1;
}
.skill__area-item {
	margin-bottom: 30px;
}
.skill__area-item:last-child {
	margin-bottom: 0;
}
.skill__area-item-content {
	position: relative;
}
.skill__area-item h6 {
	font-weight: 500;
	font-size: 20px;
	line-height: 28px;
}
.skill__area-item-count {
	position: absolute;
	top: 0;
	right: 0;
	font-weight: 500;
	font-size: 20px;
	line-height: 28px;
	font-family: var(--heading-font);
	color: var(--text-heading-color);
}
.skill__area-item-bar {
	height: 10px;
	position: absolute;
	width: 0;
	top: 0;
	left: 0;
	background: var(--primary-color-1);
	transition: all 3.5s ease-out 0s;
}
.skill__area-item-inner {
	width: 100%;
	height: 10px;
	position: relative;
	background: var(--color-2);
	margin-top: 10px;
}

.cursor-no .cursor .hide #cursor-ball {
	opacity: 0;
}
.cursor-no .cursor #cursor-text {
	background: var(--color-1);
	padding: 31px 21px;
	border-radius: 50%;
}

/*==========================================================================
* Dark CSS
==========================================================================*/
.light-n {
	display: none;
}

.light {
	display: none;
}

.dark-mode {
	background: #1f1f1f;
	--body-color: #cccccc;
	--bg-white: #1e1e1e;
	--color-1: #1c1c1c;
	--color-2: #1e1e1e;
	--text-heading-color: #ffffff;
	--border-color-1: #383736;
	--border-color-2: #383736;
	--border-color-3: #383736;
}
.dark-mode .light-n {
	display: inline-block;
}
.dark-mode .dark-n {
	display: none;
}
.dark-mode .process__area {
	background: #222222;
}
.dark-mode .portfolio__four::after {
	background: #242424;
}
.dark-mode .skill__area-item-inner {
	background: #343434;
}
.dark-mode .banner__four-brand .scroll__slider,
.dark-mode .banner__four-brand,
.dark-mode .certification,
.dark-mode .contact__area-form {
	background: #1c1c1c;
}
.dark-mode .price__area-item.active .price__area-item-price span,
.dark-mode .price__area-item.active .price__area-item-list ul li,
.dark-mode .banner__one-content-user h5,
.dark-mode .banner__one-content h1 {
	color: #222222;
}
.dark-mode .cursor #cursor-ball {
	background: var(--primary-color-1);
}
.dark-mode .cursor #cursor-text {
	color: var(--color-1);
}
.dark-mode .cursor.no #cursor-text,
.dark-mode .process__area-item h6 {
	background: var(--primary-color-1);
	color: var(--color-1);
}
.dark-mode .banner__four-brand .scroll__slider ul li img {
	filter: inherit;
}
/*# sourceMappingURL=style.css.map */
