/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Utility
# Cards
# Common
# Form
# Navigations
# Animations
# Mobile Nav
# Search Popup
# Page Header
# Google Map
# Client Carousel
--------------------------------------------------------------*/
:root {
	--firdip-text: #7D8081;
	--firdip-text-rgb: 125, 128, 129;
	--firdip-text-gray: #EFE6E1;
	--firdip-text-gray-rgb: 239, 230, 225;
	--firdip-base: #CA4445;
	--firdip-base-rgb: 202, 68, 69;
	--firdip-secondary: #232728;
	--firdip-secondary-rgb:35, 39, 40 ;
	--firdip-gray: #DCCEC6;
	--firdip-gray-rgb: 220, 206, 198;
	--firdip-white: #fff;
	--firdip-white-rgb: 255, 255, 255;
	--firdip-black: #171818;
	--firdip-black-rgb: 23, 24, 24;
	--firdip-black2: #000;
	--firdip-black2-rgb: 0, 0, 0;
	--firdip-border-color: #F4F2EE;
	--firdip-border-color-rgb: 244, 242, 238;
	--firdip-letter-space: 0.1em;
	--firdip-letter-space-xl: 0.2em;
}

/*--------------------------------------------------------------
# Utility
--------------------------------------------------------------*/
.mt-20 {
	margin-top: 20px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.firdip-btn {
	display: inline-block;
	vertical-align: middle;
	-webkit-appearance: none;
	border: none;
	outline: none !important;
	background-color: var(--firdip-black, #171818);
	color: #fff;
	padding: 19px 40px;
	transition: 500ms;
	text-transform: uppercase;
	background-color: var(--firdip-black, #171818);
	color: #fff;
	font-style: normal;
	font-weight: 700;
	font-size: 16px;
	line-height: 112%;
	position: relative;
	overflow: hidden;
	text-align: center;
	z-index: 1;
}
.firdip-btn:hover {
	color: var(--firdip-black, #171818);
	background-color: #fff;
}
.firdip-btn::before {
	content: "";
	position: absolute;
	top: -50%;
	right: 50%;
	transform: translateX(50%);
	width: 150%;
	height: 150%;
	border-top-right-radius: 50%;
	border-top-left-radius: 50%;
	background-color: var(--firdip-secondary, #232728);
	transition: 700ms cubic-bezier(0.52, 1.64, 0.37, 0.66);
	z-index: -1;
}
.firdip-btn::after {
	content: "";
	position: absolute;
	bottom: 100%;
	right: 50%;
	transform: translateX(50%);
	width: 150%;
	height: 150%;
	border-bottom-right-radius: 50%;
	border-bottom-left-radius: 50%;
	background-color: var(--firdip-base, #CA4445);
	transition-duration: 700ms;
	transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
	z-index: -1;
}
.firdip-btn:hover {
	color: var(--firdip-white, #fff);
}
.firdip-btn:hover::before {
	top: 100%;
}
.firdip-btn:hover::after {
	bottom: -50%;
}
.firdip-btn span {
	position: relative;
	color: inherit;
	z-index: 2;
}
.firdip-btn--secondary {
	color: var(--firdip-white, #fff);
}
.firdip-btn--secondary:hover {
	color: var(--firdip-white, #fff);
}
.firdip-btn--secondary::after {
	background-color: var(--firdip-base, #CA4445);
}
.firdip-btn--secondary::before {
	background-color: var(--firdip-secondary, #232728);
}
.firdip-btn--base:hover {
	color: var(--firdip-white, #fff);
}
.firdip-btn--base::after {
	background-color: var(--firdip-secondary, #232728);
}
.firdip-btn--base::before {
	background-color: var(--firdip-base, #CA4445);
}

.sec-title {
	padding-bottom: 40px;
}
@media (min-width: 768px) {
	.sec-title {
		padding-bottom: 50px;
	}
}
.sec-title--two .sec-title__title {
	text-transform: none;
	font-weight: 800;
}
.sec-title__img {
	display: inline-flex;
	margin-top: -3px;
	margin-left: 7px;
}
.sec-title__tagline {
	margin: 0;
	font-weight: 600;
	font-size: 14px;
	line-height: normal;
	text-transform: uppercase;
	color: var(--firdip-text, #7D8081);
}
.sec-title__title {
	margin: 0;
	text-transform: uppercase;
	margin-top: 7px;
	color: var(--firdip-secondary, #232728);
	font-style: normal;
	font-weight: 700;
	line-height: 125%;
	font-size: 30px;
}
@media (min-width: 768px) {
	.sec-title__title {
		font-size: 40px;
	}
}
img{
	max-width:100%;
	height:auto;
}
ul.portal-system,.portal-system li{
	list-style:none;
	text-align:center;
}
ul.portal-system{
	padding:5%;
}
.portal-system img{
	padding:30px;
	-webkit-transition: all 0.5s ease;
	-khtml-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
.portal-system li:hover img{
	scale:1.2;
}
@media(min-width:768px){
	.portal-system,.portal-system li{
		display:flex;
	}
}
@media(max-width:768px){
	.portal-system li{
		display:inline-block;
		width:50%;
	}
}
/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/
body {
	color: var(--firdip-text, #7D8081);
	font-size: 16px;
	line-height: 2.125;
	font-weight: 500;
}

body.locked {
	overflow: hidden;
}

a {
	color: var(--firdip-base, #CA4445);
	transition: all 400ms ease;
}

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

::placeholder {
	color: inherit;
	opacity: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	color: var(--firdip-black, #171818);
}
@media (max-width: 575px) {
	h1 br,
	h2 br,
	h3 br,
	h4 br,
	h5 br,
	h6 br {
		display: none;
	}
}

@media (max-width: 575px) {
	p br {
		display: none;
	}
}

::placeholder {
	color: inherit;
	opacity: 1;
}

.page-wrapper {
	position: relative;
	margin: 0 auto;
	width: 100%;
	min-width: 300px;
	overflow: hidden;
}

.container-fluid,
.container {
	padding-right: 15px;
	padding-left: 15px;
}

@media (min-width: 1200px) {
	.container {
		max-width: 1200px;
	}
}
.row {
	--bs-gutter-x: 30px;
}

.gutter-y-10 {
	--bs-gutter-y: 10px;
}

.gutter-y-15 {
	--bs-gutter-y: 15px;
}

.gutter-y-20 {
	--bs-gutter-y: 20px;
}

.gutter-y-30 {
	--bs-gutter-y: 30px;
}

.gutter-y-60 {
	--bs-gutter-y: 60px;
}

.gutter-x-0 {
	--bs-gutter-x: 0px;
}

.tabs-box .tabs-content .tab:not(.active-tab) {
	display: none;
}

.bootstrap-select .dropdown-menu {
	padding-top: 0;
	padding-bottom: 0;
	border-radius: 0;
}
.bootstrap-select .dropdown-item.active,
.bootstrap-select .dropdown-item:active {
	background-color: var(--firdip-base, #CA4445);
}

.tns-outer .tns-controls {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 40px;
}
.tns-outer .tns-controls button {
	width: 45px;
	height: 45px;
	border: 2px solid #f4f4f4;
	outline: none;
	display: flex;
	justify-content: center;
	align-items: center;
	color: var(--firdip-text, #7D8081);
	border-radius: 50%;
	margin-right: 5px;
	margin-left: 5px;
}

.ul-list-one {
	margin-bottom: 0;
}
.ul-list-one li {
	position: relative;
	padding-right: 45px;
	font-size: 16px;
	font-weight: 500;
	color: var(--firdip-black, #171818);
}
@media (min-width: 481px) {
	.ul-list-one li {
		font-size: 20px;
	}
}
.ul-list-one li::before {
	content: "\e907";
	color: var(--firdip-base, #CA4445);
	font-size: 26px;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	font-family: "azino-icon";
}

.preloader {
	position: fixed;
	background-color: var(--firdip-black, #171818);
	background-position: center center;
	background-repeat: no-repeat;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	z-index: 9991;
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	align-items: center;
	text-align: center;
}
.preloader__image {
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-name: flipInY;
	animation-name: flipInY;
	-webkit-animation-duration: 2s;
	animation-duration: 2s;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 60px auto;
	width: 100%;
	height: 100%;
}

/* scroll to top */
.scroll-to-top {
	display: flex;
	align-items: center;
	width: auto;
	height: 35px;
	background: transparent;
	position: fixed;
	bottom: 60px;
	left: -12px;
	z-index: 99;
	text-align: center;
	opacity: 0;
	visibility: hidden;
	transform: rotate(90deg);
	cursor: pointer;
	transition: all 0.2s ease;
}
.scroll-to-top__text {
	display: inline;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: 700;
	margin-left: 8px;
}
.scroll-to-top__wrapper {
	display: inline-block;
	width: 30px;
	height: 4px;
	background-color: var(--firdip-base, #CA4445);
	position: relative;
	overflow: hidden;
}
.scroll-to-top__inner {
	position: absolute;
	right: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: var(--firdip-black, #171818);
}
.scroll-to-top.show {
	opacity: 1;
	visibility: visible;
	bottom: 70px;
}

.firdip-owl__carousel--with-shadow .owl-stage-outer {
	overflow: visible;
}
.firdip-owl__carousel--with-shadow .owl-item {
	opacity: 0;
	visibility: hidden;
	transition: opacity 500ms ease, visibility 500ms ease;
}
.firdip-owl__carousel--with-shadow .owl-item.active {
	opacity: 1;
	visibility: visible;
}

.firdip-owl__carousel--basic-nav.owl-carousel .owl-nav {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-top: 60px;
}
.firdip-owl__carousel--basic-nav.owl-carousel .owl-nav button {
	border: none;
	outline: none;
	border-radius: 50%;
	opacity: 1;
	margin: 0;
	padding: 0;
}
.firdip-owl__carousel--basic-nav.owl-carousel .owl-nav button span {
	border: none;
	outline: none;
	width: 50px;
	height: 50px;
	background-color: var(--firdip-text-gray, #EFE6E1);
	display: flex;
	justify-content: center;
	opacity: 1;
	align-items: center;
	color: var(--firdip-secondary, #232728);
	border-radius: 50%;
	font-size: 16px;
	transition: all 500ms ease;
}
.firdip-owl__carousel--basic-nav.owl-carousel .owl-nav button span:hover {
	background-color: var(--firdip-base, #CA4445);
	color: var(--firdip-white, #fff);
}
.firdip-owl__carousel--basic-nav.owl-carousel .owl-dots {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin-top: 60px;
}
.firdip-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot span {
	background-color: var(--firdip-black, #171818);
	border: 2px solid var(--firdip-white, #fff);
	box-shadow: 0 0 1px rgba(var(--firdip-black-rgb, 23, 24, 24), 1);
	margin: 0;
}
.firdip-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot:hover span, .firdip-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot.active span {
	background-color: var(--firdip-black, #171818);
	border: 2px solid var(--firdip-black, #171818);
	box-shadow: 0 0 1px rgba(var(--firdip-black-rgb, 23, 24, 24), 1);
}
.firdip-owl__carousel--basic-nav.owl-carousel .owl-dots.disabled {
	display: none;
}
.firdip-owl__carousel--basic-nav.owl-carousel .owl-nav.disabled + .owl-dots {
	margin-top: 60px;
}
.firdip-owl__carousel--basic-nav.owl-carousel .owl-nav.disabled {
	display: none;
}

.ui-datepicker .ui-datepicker-header {
	background-image: none;
	background-color: var(--firdip-black, #171818);
	color: var(--firdip-white, #fff);
}

.ui-datepicker-calendar th span {
}
.ui-datepicker-calendar td {
	background-color: var(--firdip-gray, #DCCEC6);
	background-image: none;
	color: var(--firdip-text, #7D8081);
}
.ui-datepicker-calendar td a {
	border-color: var(--firdip-border-color, #F4F2EE);
	background-color: var(--firdip-gray, #DCCEC6);
	background-image: none;
}
.ui-datepicker-calendar .ui-state-default,
.ui-datepicker-calendar .ui-widget-content .ui-state-default,
.ui-datepicker-calendar .ui-widget-header .ui-state-default {
	border-color: var(--firdip-border-color, #F4F2EE);
	background-color: var(--firdip-gray, #DCCEC6);
	background-image: none;
	color: var(--firdip-text, #7D8081);
	padding: 10px 5px;
	text-align: center;
	line-height: 1em;
}
.ui-datepicker-calendar .ui-state-default:hover,
.ui-datepicker-calendar .ui-widget-content .ui-state-default:hover,
.ui-datepicker-calendar .ui-widget-header .ui-state-default:hover {
	color: var(--firdip-white, #fff);
	background-color: var(--firdip-base, #CA4445);
}
.ui-datepicker-calendar .ui-state-highlight,
.ui-datepicker-calendar .ui-widget-content .ui-state-highlight,
.ui-datepicker-calendar .ui-widget-header .ui-state-highlight {
	color: var(--firdip-white, #fff);
	background-color: var(--firdip-base, #CA4445);
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
	background-image: none;
	background-color: var(--firdip-white, #fff);
	color: var(--firdip-black, #171818);
}
.ui-datepicker .ui-datepicker-prev:hover,
.ui-datepicker .ui-datepicker-next:hover {
	background-color: var(--firdip-base, #CA4445);
	color: var(--firdip-white, #fff);
	top: 2px;
}

.ui-datepicker .ui-datepicker-prev:hover {
	right: 2px;
}

.ui-datepicker .ui-datepicker-next:hover {
	left: 2px;
}

.logo-firdip img {
	image-rendering: -moz-crisp-edges;
	image-rendering: -o-crisp-edges;
	image-rendering: -webkit-optimize-contrast;
	image-rendering: crisp-edges;
	-ms-interpolation-mode: nearest-neighbor;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-ms-transform: translateZ(0);
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	max-height: 100px;
	display: block;
	margin: auto;
	width: auto;
}

/*--------------------------------------------------------------
# Cards
--------------------------------------------------------------*/
.video-one {
	position: relative;
	background-color: var(--firdip-black, #171818);
	padding: 100px 0;
}
.video-one__bg {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	background-color: var(--firdip-black, #171818);
	background-size: cover;
	background-position: center center;
	opacity: 0.5;
}
.video-one .container {
	position: relative;
	text-align: center;
}
.video-one__btn {
	width: 145px;
	height: 145px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	position: relative;
}
.video-one__btn .video-popup {
	font-size: 24px;
	color: var(--firdip-white, #fff);
	transition: all 500ms ease;
	position: relative;
	z-index: 10;
}
.video-one__btn .video-popup:hover {
	color: var(--firdip-base, #CA4445);
}
.video-one__btn .curved-circle {
	position: absolute;
	top: 0;
	right: 0;
	width: 145px;
	height: 145px;
	transform-origin: center center;
	display: flex;
	justify-content: center;
	align-items: center;
	animation: textRotate 15s linear 0s forwards infinite alternate;
}
.video-one__btn .curved-circle--item {
	width: 145px;
}
.video-one__btn .curved-circle--item span {
	text-transform: uppercase;
	font-size: 14px;
	color: var(--firdip-white, #fff);
	letter-spacing: 0.4em;
}
.video-one__title {
	margin: 0;
	text-transform: uppercase;
	color: var(--firdip-white, #fff);
	font-size: 40px;
	line-height: 1.2em;
	margin-bottom: 40px;
	margin-top: 30px;
}
@media (min-width: 768px) {
	.video-one__title {
		font-size: 50px;
	}
}
@media (min-width: 992px) {
	.video-one__title {
		font-size: 60px;
		margin-top: 20px;
		margin-bottom: 35px;
	}
}
.video-one__link::before {
	background-color: var(--firdip-base, #CA4445);
}

.video-two {
	position: relative;
	background-color: var(--firdip-black, #171818);
	padding: 143px 0 320px;
}
@media (max-width: 767px) {
	.video-two {
		padding: 100px 0 270px;
	}
	.video-two .text-end {
		text-align: right !important;
	}
}
.video-two__bg {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	background-color: var(--firdip-black, #171818);
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	opacity: 0.5;
}
.video-two__shape {
	position: absolute;
	right: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-position: right top;
	background-repeat: no-repeat;
	background-size: auto;
}
@media (max-width: 1199px) {
	.video-two__shape {
		display: none;
	}
}
.video-two .container {
	position: relative;
}
.video-two__btn {
	width: 145px;
	height: 145px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	position: relative;
	margin-top: 42px;
}
.video-two__btn .video-popup {
	font-size: 24px;
	color: var(--firdip-white, #fff);
	transition: all 500ms ease;
	position: relative;
	z-index: 10;
}
.video-two__btn .video-popup:hover {
	color: var(--firdip-base, #CA4445);
}
.video-two__btn .curved-circle {
	position: absolute;
	top: 0;
	right: 0;
	width: 145px;
	height: 145px;
	transform-origin: center center;
	display: flex;
	justify-content: center;
	align-items: center;
	animation: textRotate 15s linear 0s forwards infinite alternate;
}
.video-two__btn .curved-circle--item {
	width: 145px !important;
	height: 145px !important;
}
.video-two__btn .curved-circle--item span {
	text-transform: uppercase;
	font-size: 14px;
	color: var(--firdip-white, #fff);
	letter-spacing: 0.4em;
}
.video-two__title {
	margin: 0;
	text-transform: uppercase;
	color: var(--firdip-white, #fff);
	font-size: 40px;
	line-height: 1.2em;
	margin-bottom: 40px;
}
@media (min-width: 768px) {
	.video-two__title {
		font-size: 50px;
	}
}
@media (min-width: 992px) {
	.video-two__title {
		font-size: 60px;
		margin-bottom: 35px;
	}
}
.video-two__link::before {
	background-color: var(--firdip-base, #CA4445);
}

@media (max-width: 767px) {
	.team-card {
		max-width: 400px;
		margin-right: auto;
		margin-left: auto;
	}
}
.team-card--two .team-card__content::after {
	background: var(--firdip-secondary, #232728);
}
.team-card--two:hover .team-card__content {
	border-bottom: 4px solid var(--firdip-secondary, #232728) !important;
}
.team-card--two:hover .team-card__content::after {
	background: var(--firdip-secondary, #232728);
}
.team-card--two .team-card__content__hover__icon:hover {
	background: var(--firdip-secondary, #232728);
}
.team-card__inner {
	position: relative;
	z-index: 1;
}
.team-card__image {
	position: relative;
	z-index: 1;
	overflow: hidden;
}
.team-card__image::after {
	background: hsla(0, 0%, 100%, 0.3);
	content: "";
	position: absolute;
	right: 0;
	top: 0;
	width: 100%;
	height: 0;
	opacity: 1;
	z-index: 9;
	pointer-events: none;
}
.team-card__image img {
	object-fit: cover;
	width: 100%;
	transition: all 0.4s linear;
}
.team-card__content {
	margin-top: -70px;
	position: relative;
	z-index: 1;
	margin-right: 50px;
	background: var(--firdip-white, #fff);
	padding: 40px 40px 32px 0px;
	border-bottom: 4px solid var(--firdip-gray, #DCCEC6);
}
.team-card__content::after {
	position: absolute;
	bottom: 0;
	right: 0;
	height: 100%;
	content: "";
	background: var(--firdip-base, #CA4445);
	left: 50px;
	width: 0;
	z-index: -1;
	transition: all 0.4s ease-in-out;
}
.team-card__content__inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.team-card__content__title {
	margin-top: -6px;
	color: var(--firdip-secondary, #232728);
	margin-bottom: 5px;
	padding-bottom: 0;
	font-style: normal;
	font-weight: 700;
	font-size: 20px;
	line-height: 1.2;
	text-transform: capitalize;
}
@media (max-width: 991px) {
	.team-card__content__title {
		font-size: 19px;
	}
}
.team-card__content__title a {
	color: inherit;
	background: linear-gradient(to left, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
	transition: all 500ms ease;
}
.team-card__content__title a:hover {
	background-size: 100% 1px;
}
.team-card__content__designation {
	margin-bottom: -5px;
	padding-bottom: 0;
	color: var(--firdip-text, #7D8081);
	font-style: normal;
	font-weight: 600;
	font-size: 16px;
	line-height: 1.37;
	transition: all 0.4s ease-in-out;
}
.team-card__content__hover {
	position: absolute;
	left: 0;
	bottom: -4px;
}
.team-card__content__hover__icon {
	position: relative;
	width: 50px;
	height: 50px;
	background: var(--firdip-secondary, #232728);
	display: flex;
	justify-content: center;
	align-items: center;
	color: var(--firdip-white, #fff);
	font-size: 17px;
	cursor: pointer;
	transition: all 0.4s ease-in-out;
}
.team-card__content__hover__icon:hover {
	background: var(--firdip-base, #CA4445);
}
.team-card__content__hover__social {
	display: flex;
	flex-direction: column;
	background: var(--firdip-text-gray, #EFE6E1);
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 12px 14px;
	position: absolute;
	bottom: 6px;
	right: 5px;
	transform: translateY(-100%);
	opacity: 0;
	visibility: hidden;
	transition: 1000ms ease;
	transform-origin: bottom top;
}
.team-card__content__hover__social a {
	color: var(--firdip-secondary, #232728);
	line-height: 1;
	font-size: 12px;
}
.team-card__content__hover__social a:hover {
	color: var(--firdip-base, #CA4445);
}
.team-card__content__hover__social a + a {
	padding-top: 8px;
	margin-top: 8px;
	border-top: 1px solid rgba(35, 39, 40, 0.2);
}
.team-card__content__hover:hover .team-card__content__hover__social {
	transform: translateY(-40%);
	opacity: 1;
	visibility: visible;
}
.team-card:hover .team-card__content {
	border-bottom: 4px solid var(--firdip-base, #CA4445);
}
.team-card:hover .team-card__content__title, .team-card:hover .team-card__content__designation {
	color: var(--firdip-white, #fff);
}
.team-card:hover .team-card__content::after {
	width: 84.5%;
}
.team-card:hover .team-card__image img {
	transform: scale(1.1) rotate(-5deg);
}
.team-card:hover .team-card__image::after {
	height: 100%;
	opacity: 0;
	transition: all 0.4s linear;
}

.team-one {
	position: relative;
	z-index: 1;
}
.team-one__top {
	border-top: 1px solid var(--firdip-text-gray, #EFE6E1);
	border-bottom: 1px solid var(--firdip-text-gray, #EFE6E1);
	margin-bottom: 60px;
	position: relative;
}
@media (max-width: 991px) {
	.team-one__top {
		border-top: 0px solid var(--firdip-text-gray, #EFE6E1);
		border-bottom: 0px solid var(--firdip-text-gray, #EFE6E1);
		margin-bottom: 40px;
	}
	.team-one__top::after {
		display: none;
	}
}
.team-one__top::after {
	content: "";
	width: 1px;
	height: 100%;
	background: var(--firdip-text-gray, #EFE6E1);
	position: absolute;
	top: 0;
	right: 50%;
}
.team-one__top .sec-title {
	padding-top: 37px;
	padding-bottom: 27px;
}
@media (max-width: 991px) {
	.team-one__top .sec-title {
		padding-top: 0px;
		padding-bottom: 20px;
	}
}
.team-one__top .team-one__text {
	padding-right: 100px;
	font-style: normal;
	font-weight: 500;
	font-size: 16px;
	line-height: 188%;
	margin-bottom: 0;
	padding-bottom: 0;
}
@media (max-width: 991px) {
	.team-one__top .team-one__text {
		padding-right: 0;
	}
}
.team-one--page {
	padding: 120px 0px;
}
@media (max-width: 991px) {
	.team-one--page {
		padding: 100px 0px;
	}
}
@media (max-width: 767px) {
	.team-one--page {
		padding: 80px 0px;
	}
}
.team-one--home {
	background-color: var(--firdip-border-color, #F4F2EE);
	padding: 120px 0px;
}
@media (max-width: 991px) {
	.team-one--home {
		padding: 100px 0px;
	}
}
@media (max-width: 767px) {
	.team-one--home {
		padding: 80px 0px;
	}
}
.team-one--home-two {
	padding: 120px 0px 0px;
	margin-bottom: -270px;
	position: relative;
	z-index: 2;
}
@media (max-width: 991px) {
	.team-one--home-two {
		padding: 100px 0px 0;
	}
}
@media (max-width: 767px) {
	.team-one--home-two {
		padding: 80px 0px 0;
	}
}
.team-one__bg {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	background-repeat: no-repeat;
	background-size: cover;
	z-index: -1;
	mix-blend-mode: luminosity;
	opacity: 0.5;
}

.team-details {
	padding-top: 80px;
	padding-bottom: 80px;
	border-bottom: 1px solid var(--firdip-text-gray, #EFE6E1);
}
@media (min-width: 992px) {
	.team-details {
		padding-top: 120px;
		padding-bottom: 120px;
	}
}
.team-details__image {
	display: inline-block;
	position: relative;
	margin-left: -30px;
}
.team-details__image img {
	max-width: 100%;
	object-fit: cover;
}
@media (max-width: 1199px) {
	.team-details__image {
		margin-left: 0px;
	}
}
@media (max-width: 768px) {
	.team-details__content {
		margin-top: 30px;
	}
}
@media (min-width: 1199px) {
	.team-details__content {
		padding-right: 50px;
	}
}
.team-details__content__subtitle {
	margin-top: -6px;
	color: var(--firdip-text, #7D8081);
	font-size: 16px;
	font-weight: 600;
	line-height: 1.18;
	text-transform: uppercase;
	font-family: var(--firdip-text, #7D8081);
}
.team-details__content__title {
	margin-top: -5px;
	font-size: 30px;
	margin-bottom: 20px;
	color: var(--firdip-secondary, #232728);
	font-style: normal;
	font-weight: 800;
	line-height: 125%;
	text-transform: uppercase;
}
@media (min-width: 992px) {
	.team-details__content__title {
		font-size: 40px;
	}
}
.team-details__content__text {
	color: var(--firdip-text, #7D8081);
	margin-bottom: 20px;
	font-size: 16px;
	font-weight: 600;
	line-height: 200%;
}
@media (min-width: 992px) {
	.team-details__content__text {
		margin-bottom: 30px;
	}
}
.team-details__content__highlight {
	background-color: var(--firdip-secondary, #232728);
	position: relative;
	padding: 10px 20px;
	margin-bottom: 30px;
	transition: all 0.4s ease-in-out;
	border-right: 8px solid var(--firdip-base, #CA4445);
}
.team-details__content__highlight svg {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 315px;
	z-index: -1;
	height: 38px;
	fill: var(--firdip-text, #7D8081);
	transition: all 0.4s ease-in-out;
}
.team-details__content__highlight__text {
	max-width: 550px;
	display: block;
	width: 100%;
	color: var(--firdip-white, #fff);
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: 150%;
	transition: all 0.4s ease-in-out;
	text-transform: uppercase;
}
@media (min-width: 992px) {
	.team-details__content__highlight {
		padding: 22px 30px;
		margin-bottom: 38px;
	}
	.team-details__content__highlight__text {
		font-size: 20px;
	}
}
.team-details__content__highlight:hover {
	background: var(--firdip-base, #CA4445);
	border-right: 8px solid var(--firdip-secondary, #232728);
}
.team-details__content__highlight:hover .team-details__content__highlight__text {
	color: var(--firdip-secondary, #232728);
}
.team-details__content__highlight:hover svg {
	fill: var(--firdip-base, #CA4445);
}
.team-details__list {
	margin-bottom: 32px;
}
.team-details__list > li {
	margin-bottom: 11.5px;
	color: var(--firdip-secondary, #232728);
	font-style: normal;
	font-weight: 700;
	font-size: 16px;
	line-height: 1.375;
}
.team-details__list > li a {
	background: linear-gradient(to left, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
	transition: all 500ms ease;
	color: var(--firdip-secondary, #232728);
}
.team-details__list > li a:hover {
	background-size: 100% 1px;
}
.team-details__list > li a:hover {
	color: var(--firdip-base, #CA4445);
}
.team-details__list > li span {
	display: inline-block;
	color: var(--firdip-text, #7D8081);
}
.team-details__list > li:last-child {
	margin-bottom: 0;
}
.team-details__list > li i {
	color: var(--firdip-base, #CA4445);
	margin-left: 10px;
}
.team-details .team-skills {
	margin-bottom: 40px;
}
.team-details .team-skills__progress + .team-skills__progress {
	margin-top: 20px;
}
@media (min-width: 992px) {
	.team-details .team-skills__progress + .team-skills__progress {
		margin-top: 34px;
	}
}
.team-details .team-skills__progress__title {
	margin-bottom: 12px;
	color: var(--firdip-secondary, #232728);
	font-size: 18px;
	font-weight: 600;
	line-height: 144.444%;
	text-transform: uppercase;
}
.team-details .team-skills__progress__bar {
	width: 100%;
	height: 10px;
	position: relative;
	background-color: var(--firdip-text-gray, #EFE6E1);
}
.team-details .team-skills__progress__inner {
	position: absolute;
	height: 10px;
	background-color: var(--firdip-base, #CA4445);
	transition: all 700ms linear;
	width: 0px;
}
.team-details .team-skills__progress__number {
	position: absolute;
	bottom: calc(100% + 5px);
	left: 0;
	margin-bottom: 8px;
	color: var(--firdip-text, #7D8081);
	font-size: 18px;
	font-weight: 500;
	line-height: 144.444%;
}
.team-details__social {
	display: flex;
	flex-wrap: wrap;
	gap: 19px;
}
.team-details__social a {
	width: 35px;
	height: 35px;
	border-radius: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: var(--firdip-text-gray, #EFE6E1);
	font-size: 13px;
	color: var(--firdip-secondary, #232728);
	line-height: 1;
	transition: all 500ms ease;
}
.team-details__social a:hover {
	background-color: var(--firdip-base, #CA4445);
	color: var(--firdip-white, #fff);
}

.team-skills-one {
	padding: 120px 0px 110px 0;
}
@media (max-width: 767px) {
	.team-skills-one {
		padding: 60px 0;
	}
}
.team-skills-one__title {
	margin-bottom: 25px;
	color: var(--firdip-secondary, #232728);
	font-size: 25px;
	font-style: normal;
	text-transform: uppercase;
	font-weight: 700;
	line-height: 1.2;
}
@media (min-width: 768px) {
	.team-skills-one__title {
		font-size: 30px;
	}
}
.team-skills-one__text {
	max-width: 542PX;
	width: 100%;
	color: var(--firdip-text, #7D8081);
	font-size: 16px;
	font-weight: 600;
	line-height: 200%;
}
.team-skills-one__certificates {
	display: flex;
	justify-content: start;
	flex-wrap: wrap;
	gap: 21px;
}
.team-skills-one__certificates__item {
	max-width: 176px;
	width: 100%;
	cursor: pointer;
}
.team-skills-one__certificates__item img {
	object-fit: cover;
	filter: grayscale(100%);
	transition: all 0.5s ease-in-out;
}
.team-skills-one__certificates__item:hover img {
	object-fit: cover;
	filter: grayscale(0%);
}
.team-skills-one__bottom {
	margin-top: 70px;
}
.team-skills-one__skill {
	padding-top: 45px;
	position: relative;
}
.team-skills-one__skill::before {
	position: absolute;
	top: 7px;
	right: 0;
	content: "";
	clear: both;
	width: 110%;
	height: 1px;
	background-color: var(--firdip-gray, #DCCEC6);
}
@media (max-width: 767px) {
	.team-skills-one__skill::before {
		display: none;
	}
}
.team-skills-one__skill::after {
	position: absolute;
	top: 0%;
	right: 0;
	content: "";
	clear: both;
	width: 15px;
	height: 15px;
	border-radius: 500px;
	background-color: var(--firdip-secondary, #232728);
	transition: all 0.4s ease-in-out;
}
@media (max-width: 767px) {
	.team-skills-one__skill::after {
		display: none;
	}
}
.team-skills-one__skill__start {
	display: block;
	margin-bottom: 10px;
	color: var(--firdip-secondary, #232728);
	font-weight: 500;
	font-size: 16px;
	line-height: 1.189;
}
.team-skills-one__skill__title {
	margin-bottom: 10px;
	color: var(--firdip-secondary, #232728);
	text-transform: uppercase;
	font-weight: 700;
	font-size: 20px;
	line-height: 1.2;
}
.team-skills-one__skill__text {
	margin-bottom: 0;
	color: var(--firdip-text, #7D8081);
	font-size: 16px;
	font-weight: 500;
	line-height: normal;
}
.team-skills-one__skill:hover::after {
	background-color: var(--firdip-base, #CA4445);
}

.team-form-one {
	position: relative;
	padding: 120px 0 175px;
	z-index: 1;
	margin-bottom: -55px;
}
@media (max-width: 991px) {
	.team-form-one {
		padding: 100px 0 155px;
	}
}
@media (max-width: 767px) {
	.team-form-one {
		padding: 80px 0 135px;
	}
}
.team-form-one__bg {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	background-size: cover;
	background-repeat: no-repeat;
	z-index: -1;
}
.team-form-one .container {
	position: relative;
	max-width: 898px;
}
.team-form-one .sec-title {
	text-align: center;
}
.team-form-one .form-one .bootstrap-select > .dropdown-toggle,
.team-form-one .form-one input[type=text],
.team-form-one .form-one input[type=email],
.team-form-one .form-one textarea {
	background-color: var(--firdip-white, #fff);
}
.team-form-one .form-one textarea {
	height: 176px;
}
.team-form-one .form-one .ostech-btn {
	padding: 19px 40.5px;
	background: var(--firdip-base, #CA4445);
	color: var(--firdip-white, #fff);
}
.team-form-one .form-one .ostech-btn::after {
	background: var(--firdip-secondary, #232728);
}
.team-form-one__shape {
	position: absolute;
	top: 0;
	right: 0;
	z-index: -1;
	animation: topBottom 4s ease-in-out infinite;
	mix-blend-mode: overlay;
}
.joomirdate-persian,.joomirdate-english{
	font-size:12px;
}
.joomirdate-arabic{
	display:none;
}
.blog-card__image {
	display: block;
	max-height: 380px;
	height: 100%;
	width: 100%;
	overflow: hidden;
	position: relative;
	z-index: 1;
	height:250px;
}
.blog-card__image img {
	object-fit: cover;
	width: 100%;
	transition: all 1s ease-in-out;
}
.blog-card__image::after {
	background: hsla(0, 0%, 100%, 0.5);
	content: "";
	position: absolute;
	right: 0;
	top: 0;
	width: 100%;
	height: 0;
	opacity: 1;
	z-index: 9;
	pointer-events: none;
}
.blog-card__content {
	margin-top: -54px;
	background: var(--firdip-white, #fff);
	padding: 20px 30px;
	margin-right: 15px;
	margin-left: 15px;
	position: relative;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}
@media (max-width: 1199px) and (min-width: 991px) {
	.blog-card__content {
		margin-right: 0;
		margin-left: 0;
		padding: 20px;
	}
}
@media (max-width: 575px) {
	.blog-card__content {
		margin-right: 0;
		margin-left: 0;
		padding: 20px;
	}
}
.blog-card__content::before {
	content: "";
	width: 80px;
	height: 60px;
	position: absolute;
	bottom: -0.5px;
	left: -0.5px;
	background: var(--firdip-white, #fff);
	clip-path: polygon(100% 0, 0% 100%, 100% 100%);
	z-index: -1;
}
.blog-card__content::after {
	content: "";
	width: 67px;
	height: 51px;
	position: absolute;
	bottom: -0.5px;
	left: -15.5px;
	background: var(--firdip-text, #7D8081);
	clip-path: polygon(100% 0, 0% 100%, 100% 100%);
	z-index: -1;
	transition: all 0.4s ease-in-out;
}
.blog-card__meta {
	margin-bottom: 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.blog-card__comment {
	font-style: normal;
	font-weight: 600;
	font-size: 14px;
	line-height: 214%;
	margin-bottom: 0;
	padding-bottom: 0;
	color: var(--firdip-text, #7D8081);
	text-transform: uppercase;
}
.blog-card__comment i {
	color: var(--firdip-base, #CA4445);
	margin-left: 10px;
	font-size: 18px;
}
.blog-card__date {
	margin-top: -67px;
	margin-left: -30px;
	background: var(--firdip-base, #CA4445);
	color: var(--firdip-white, #fff);
	margin-bottom: 0;
	padding-bottom: 0;
	padding: 0px 20px;
	font-style: normal;
	font-weight: 600;
	font-size: 14px;
	line-height: 214%;
}
@media (max-width: 1199px) and (min-width: 991px) {
	.blog-card__date {
		margin-left: -20px;
	}
}
@media (max-width: 575px) {
	.blog-card__date {
		margin-left: -20px;
	}
}
.blog-card__title {
	font-style: normal;
	font-weight: 700;
	font-size: 20px;
	line-height: 145%;
	margin-bottom: 20px;
	padding-bottom: 0;
	text-transform: uppercase;
}
@media (max-width: 1199px) and (min-width: 991px) {
	.blog-card__title {
		font-size: 18px;
	}
}
@media (max-width: 575px) {
	.blog-card__title {
		font-size: 18px;
	}
}
.blog-card__title a {
	color: inherit;
	background: linear-gradient(to left, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
	transition: all 500ms ease;
}
.blog-card__title a:hover {
	background-size: 100% 1px;
}
.blog-card__title a:hover {
	color: var(--firdip-base, #CA4445);
}
.blog-card__link {
	font-style: normal;
	font-weight: 500;
	font-size: 14px;
	line-height: 25px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	text-transform: capitalize;
	color: var(--firdip-text, #7D8081);
	position: relative;
	transition: all 0.4s ease-in-out;
}
.blog-card__link i {
	margin-left: -30px;
	margin-bottom: -30px;
	position: relative;
	z-index: 1;
	color: var(--firdip-white, #fff);
	transition: all 0.4s ease-in-out;
}
@media (max-width: 1199px) and (min-width: 991px) {
	.blog-card__link i {
		margin-left: -20px;
	}
}
@media (max-width: 575px) {
	.blog-card__link i {
		margin-left: -20px;
	}
}
.blog-card__link::after {
	content: "";
	left: 40px;
	height: 1px;
	background: var(--firdip-gray, #DCCEC6);
	position: absolute;
	top: 55%;
	right: 95px;
	transition: all 0.4s ease-in-out;
}
.blog-card__link:hover {
	color: var(--firdip-base, #CA4445);
}
.blog-card__link:hover::after {
	background: var(--firdip-base, #CA4445);
}
.blog-card__link:hover i {
	color: var(--firdip-secondary, #232728);
}
.blog-card:hover .blog-card__image img {
	transform: scale(1.1);
}
.blog-card:hover .blog-card__image::after {
	height: 100%;
	opacity: 0;
	transition: all 0.6s linear;
}
.blog-card:hover .blog-card__content {
	background: var(--firdip-secondary, #232728);
}
.blog-card:hover .blog-card__content::after {
	background: var(--firdip-base, #CA4445);
}
.blog-card:hover .blog-card__content .blog-card__title {
	color: var(--firdip-white, #fff);
}
.blog-card:hover .blog-card__content .blog-card__link::after {
	background: rgba(var(--firdip-white-rgb, 255, 255, 255), 0.1);
}

.blog-card-two__image {
	display: block;
	width: 100%;
	overflow: hidden;
	position: relative;
	z-index: 1;
}
.blog-card-two__image img {
	object-fit: cover;
	width: 100%;
	transition: all 1s ease-in-out;
}
.blog-card-two__image::after {
	background: hsla(0, 0%, 100%, 0.5);
	content: "";
	position: absolute;
	right: 0;
	top: 0;
	width: 100%;
	height: 0;
	opacity: 1;
	z-index: 9;
	pointer-events: none;
}
.blog-card-two__date {
	background: var(--firdip-base, #CA4445);
	color: var(--firdip-white, #fff);
	margin-bottom: 0;
	padding-bottom: 0;
	padding: 0px 40px;
	position: absolute;
	bottom: 0;
	left: 0;
	font-style: normal;
	font-weight: 600;
	font-size: 20px;
	line-height: 220%;
}
.blog-card-two__content {
	margin-top: 31px;
}
.blog-card-two__meta {
	display: flex;
	align-items: center;
	margin: 7px;
	transition: all 0.4s ease-in-out;
}
.blog-card-two__meta li:not(:first-child)::before {
	content: "|";
	margin-right: 15px;
	margin-left: 15px;
	font-weight: 500;
	color: #6D7076;
	opacity: 0.5;
}
.blog-card-two__meta li a {
	color: var(--firdip-text, #7D8081);
	font-size: 14px;
	font-weight: 500;
	line-height: 214.286%;
	text-transform: uppercase;
}
.blog-card-two__meta li a i {
	font-size: 15px;
	color: var(--firdip-base, #CA4445);
	margin-left: 5px;
}
.blog-card-two__title {
	font-style: normal;
	font-weight: 700;
	font-size: 30px;
	line-height: 1.1666666667;
	color: var(--firdip-secondary, #232728);
	margin-bottom: 15px;
	padding-bottom: 0;
	text-transform: uppercase;
}
.blog-card-two__title a {
	color: inherit;
	background: linear-gradient(to left, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
	transition: all 500ms ease;
}
.blog-card-two__title a:hover {
	background-size: 100% 1px;
}
.blog-card-two__title a:hover {
	color: var(--firdip-base, #CA4445);
}
.blog-card-two__text {
	font-style: normal;
	font-weight: 500;
	font-size: 16px;
	line-height: 188%;
	margin-bottom: 0;
	padding-bottom: 0;
	color: var(--firdip-text, #7D8081);
}
.blog-card-two__link {
	margin-top: 22px;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: var(--firdip-base, #CA4445);
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 18px;
	color: var(--firdip-white, #fff);
}
.blog-card-two__link:hover {
	background-color: var(--firdip-base, #CA4445);
	color: var(--firdip-white, #fff);
}
.blog-card-two__link:hover i {
	animation: iconTranslateX 0.4s forwards;
}
.blog-card-two:hover .blog-card-two__image img {
	transform: scale(1.1);
}
.blog-card-two:hover .blog-card-two__image::after {
	height: 100%;
	opacity: 0;
	transition: all 0.6s linear;
}

.blog-card__three {
	position: relative;
	margin-bottom: 25px;
}
.blog-card__three__image {
	display: block;
	max-height: 380px;
	height: 100%;
	width: 100%;
	overflow: hidden;
	position: relative;
	z-index: 1;
}
.blog-card__three__image img {
	object-fit: cover;
	width: 100%;
	transition: all 1s ease-in-out;
}
.blog-card__three__image::after {
	background: hsla(0, 0%, 100%, 0.5);
	content: "";
	position: absolute;
	right: 0;
	top: 0;
	width: 100%;
	height: 0;
	opacity: 1;
	z-index: 9;
	pointer-events: none;
}
.blog-card__three__content {
	margin-top: -54px;
	background: var(--firdip-white, #fff);
	padding: 20px 40px 1px;
	position: relative;
	transition: all 0.4s ease-in-out;
	z-index: 1;
	border: 1px solid #EFE6E1;
	box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.1);
}
@media (max-width: 575px) {
	.blog-card__three__content {
		padding: 20px 20px 1px;
	}
}
.blog-card__three__meta {
	margin-bottom: 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.blog-card__three__comment {
	font-style: normal;
	font-weight: 600;
	font-size: 14px;
	line-height: 214%;
	margin-bottom: 0;
	padding-bottom: 0;
	color: var(--firdip-text, #7D8081);
	text-transform: uppercase;
}
.blog-card__three__comment i {
	color: var(--firdip-base, #CA4445);
	margin-left: 10px;
	font-size: 18px;
}
.blog-card__three__date {
	position: absolute;
	top: 11%;
	z-index: 1;
	left: -12.5%;
	transform: rotate(90deg);
	background: var(--firdip-base, #CA4445);
	color: var(--firdip-white, #fff);
	margin-bottom: 0;
	padding-bottom: 0;
	padding: 2px 20px;
	font-style: normal;
	font-weight: 600;
	font-size: 14px;
	line-height: 214%;
	text-transform: uppercase;
}
@media (max-width: 767px) and (min-width: 400px) {
	.blog-card__three__date {
		left: -9%;
	}
}
.blog-card__three__title {
	font-style: normal;
	font-weight: 700;
	font-size: 20px;
	line-height: 145%;
	margin-bottom: 20px;
	padding-bottom: 0;
	text-transform: capitalize;
}
.blog-card__three__title a {
	color: inherit;
	background: linear-gradient(to left, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
	transition: all 500ms ease;
}
.blog-card__three__title a:hover {
	background-size: 100% 1px;
}
.blog-card__three__title a:hover {
	color: var(--firdip-base, #CA4445);
}
.blog-card__three__link {
	margin-bottom: -25px;
	padding: 10px 20px;
	background: var(--firdip-secondary, #232728);
	font-style: normal;
	font-weight: 500;
	font-size: 14px;
	line-height: 25px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	text-transform: capitalize;
	color: var(--firdip-white, #fff);
	position: relative;
	transition: all 0.4s ease-in-out;
}
.blog-card__three__link i {
	font-size: 16px;
}
.blog-card__three__link::after {
	content: "";
	left: 50px;
	height: 1px;
	background: rgba(var(--firdip-text-gray-rgb, 239, 230, 225), 0.23);
	position: absolute;
	top: 50%;
	right: 104px;
	transition: all 0.4s ease-in-out;
}
.blog-card__three__link:hover {
	background: var(--firdip-base, #CA4445);
}
.blog-card__three:hover .blog-card__three__image img {
	transform: scale(1.1);
}
.blog-card__three:hover .blog-card__three__image::after {
	height: 100%;
	opacity: 0;
	transition: all 0.6s linear;
}

.blog-card__fore {
	position: relative;
}
@media (max-width: 767px) {
	.blog-card__fore {
		max-width: 390px;
		margin-right: auto;
		margin-left: auto;
		width: 100%;
	}
}
.blog-card__fore__image {
	display: block;
	max-height: 380px;
	height: 100%;
	width: 100%;
	overflow: hidden;
	position: relative;
	z-index: 1;
}
.blog-card__fore__image img {
	object-fit: cover;
	width: 100%;
	transition: all 1s ease-in-out;
}
.blog-card__fore__image::after {
	background: hsla(0, 0%, 100%, 0.5);
	content: "";
	position: absolute;
	right: 0;
	top: 0;
	width: 100%;
	height: 0;
	opacity: 1;
	z-index: 9;
	pointer-events: none;
}
.blog-card__fore__content {
	background: var(--firdip-white, #fff);
	padding: 20px 40px 1px;
	position: relative;
	transition: all 0.4s ease-in-out;
	z-index: 1;
	border: 1px solid #EFE6E1;
	box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.1);
}
.blog-card__fore__meta {
	margin-bottom: 5px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.blog-card__fore__comment {
	font-style: normal;
	font-weight: 600;
	font-size: 14px;
	line-height: 214%;
	margin-bottom: 0;
	padding-bottom: 0;
	color: var(--firdip-text, #7D8081);
	text-transform: uppercase;
}
.blog-card__fore__comment i {
	color: var(--firdip-base, #CA4445);
	margin-left: 10px;
	font-size: 18px;
}
.blog-card__fore__date {
	transition: all 0.4s ease-in-out;
	position: absolute;
	top: 38%;
	z-index: 1;
	left: -14.5%;
	transform: rotate(90deg);
	background: var(--firdip-secondary, #232728);
	display: block;
	color: var(--firdip-white, #fff);
	margin-bottom: 0;
	padding-bottom: 0;
	padding: 2px 27px;
	font-style: normal;
	font-weight: 600;
	font-size: 14px;
	line-height: 214%;
	text-transform: uppercase;
}
.blog-card__fore__title {
	font-style: normal;
	font-weight: 700;
	font-size: 20px;
	line-height: 145%;
	margin-bottom: 20px;
	padding-bottom: 0;
	text-transform: uppercase;
}
.blog-card__fore__title a {
	color: inherit;
	background: linear-gradient(to left, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
	transition: all 500ms ease;
}
.blog-card__fore__title a:hover {
	background-size: 100% 1px;
}
.blog-card__fore__title a:hover {
	color: var(--firdip-base, #CA4445);
}
.blog-card__fore:hover .blog-card__fore__date {
	background: var(--firdip-base, #CA4445);
}
.blog-card__fore:hover .blog-card__fore__image img {
	transform: scale(1.1);
}
.blog-card__fore:hover .blog-card__fore__image::after {
	height: 100%;
	opacity: 0;
	transition: all 0.6s linear;
}

.blog-one {
	padding: 120px 0px;
	position: relative;
	background: var(--firdip-white, #fff);
}
@media (max-width: 991px) {
	.blog-one {
		padding: 100px 0px;
	}
}
@media (max-width: 767px) {
	.blog-one {
		padding: 80px 0px;
	}
}
.blog-one--home {
	padding: 120px 0px 0;
}
@media (max-width: 991px) {
	.blog-one--home {
		padding: 100px 0px 0;
	}
}
@media (max-width: 767px) {
	.blog-one--home {
		padding: 80px 0px 0;
	}
}

.blog-two {
	padding: 0px 0px 120px;
	position: relative;
}
@media (max-width: 991px) {
	.blog-two {
		padding: 0px 0px 100px;
	}
}
@media (max-width: 767px) {
	.blog-two {
		padding-top: 0;
		padding: 0px 0px 80px;
	}
}

.blog-three {
	padding: 120px 0px;
	padding-bottom: 0;
	position: relative;
}
@media (max-width: 991px) {
	.blog-three {
		padding-bottom: 0;
		padding: 100px 0px;
		padding-bottom: 0;
	}
}
@media (max-width: 767px) {
	.blog-three {
		padding-bottom: 0;
		padding: 80px 0px;
		padding-bottom: 0;
	}
}

/*--------------------------------------------------------------
# Form
--------------------------------------------------------------*/
.form-one__group {
	display: grid;
	grid-template-columns: 1fr;
	grid-gap: 20px;
	margin: 0;
}
@media (min-width: 576px) {
	.form-one__group {
		grid-template-columns: repeat(2, 1fr);
	}
}
.form-one__control {
	border: none;
	width: auto;
	height: auto;
	border-radius: 0;
	padding: 0;
	position: relative;
}
.form-one__control__icon {
	position: absolute;
	top: 50%;
	left: 30px;
	transform: translateY(-50%);
	font-size: 14px;
}
.form-one__control--full {
	grid-column-start: 1;
	grid-column-end: -1;
}
.form-one .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
	width: 100%;
	height: 58px;
	display: flex;
	align-items: center;
}
.form-one .bootstrap-select > .dropdown-toggle {
	padding: 0;
	background-color: transparent;
	border-radius: 0;
	border: none;
	outline: none !important;
	color: var(--firdip-text, #7D8081);
	font-size: 14px;
}
.form-one .bootstrap-select > .dropdown-toggle,
.form-one input[type=text],
.form-one input[type=email],
.form-one textarea {
	display: block;
	width: 100%;
	height: 60px;
	background-color: var(--firdip-text-gray, #EFE6E1);
	color: var(--firdip-text, #7D8081);
	border: none;
	outline: none;
	padding-right: 30px;
	padding-left: 30px;
	font-style: normal;
	font-weight: 500;
	font-size: 16px;
	line-height: normal;
}
.form-one textarea {
	height: 195px;
	padding-top: 20px;
}
.form-one .bootstrap-select > .dropdown-toggle {
	display: flex;
	align-items: center;
}
.form-one .bootstrap-select > .dropdown-toggle .filter-option {
	display: flex;
	align-items: center;
}

/*--------------------------------------------------------------
# Custom Cursor
--------------------------------------------------------------*/
.custom-cursor__cursor {
	width: 30px;
	height: 30px;
	border-radius: 100%;
	border: 1px solid var(--firdip-base, #CA4445);
	-webkit-transition: all 200ms ease-out;
	transition: all 200ms ease-out;
	position: fixed;
	pointer-events: none;
	right: 0;
	top: 0;
	-webkit-transform: translate(calc(-1*(-50% + 5px)), -50%);
	transform: translate(calc(-1*(-50% + 5px)), -50%);
	z-index: 999991;
}
.custom-cursor__cursor-two {
	width: 10px;
	height: 10px;
	border-radius: 100%;
	background-color: var(--firdip-base, #CA4445);
	opacity: 0.3;
	position: fixed;
	-webkit-transform: translate(50%, -50%);
	transform: translate(50%, -50%);
	pointer-events: none;
	-webkit-transition: width 0.3s, height 0.3s, opacity 0.3s;
	transition: width 0.3s, height 0.3s, opacity 0.3s;
	z-index: 999991;
}
.custom-cursor__hover {
	background-color: var(--firdip-base, #CA4445);
	opacity: 0.4;
}
.custom-cursor__innerhover {
	width: 25px;
	height: 25px;
	opacity: 0.4;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.main-footer {
	position: relative;
	z-index: 1;
	background: var(--firdip-secondary, #232728);
	margin-top: 55px;
	padding-top: 1px;
}
.main-footer__bg {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	mix-blend-mode: overlay;
	background-size: cover;
	background-position: center center;
	background-repeat: repeat;
	z-index: -1;
	mix-blend-mode: luminosity;
	opacity: 0.4;
	animation: bgSlide 10s ease-in-out infinite;
}
.main-footer__top__inner {
	margin-top: -60px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: var(--firdip-base, #CA4445);
	padding: 30px 30px;
	position: relative;
}
@media (max-width: 575px) {
	.main-footer__top__inner {
		gap: 30px;
		flex-direction: column;
		justify-content: start;
		align-items: start;
		padding: 20px 30px;
	}
}
.main-footer__top__inner::after {
	content: "";
	height: 1px;
	background: rgba(255, 255, 255, 0.2);
	position: absolute;
	right: 230px;
	left: 310px;
	top: 50%;
}
@media (max-width: 767px) {
	.main-footer__top__inner::after {
		display: none;
	}
}
.main-footer__top__social {
	display: flex;
	align-items: center;
	gap: 19.2px;
}
.main-footer__top__social a {
	width: 35px;
	height: 35px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	color: var(--firdip-white, #fff);
	background: rgba(255, 255, 255, 0.2);
	transition: all 0.4s ease-in-out;
}
.main-footer__top__social a:hover {
	background: var(--firdip-secondary, #232728);
	color: var(--firdip-base, #CA4445);
}
.main-footer__middle {
	margin-top: 60px;
	margin-bottom: 110px;
}
@media (max-width: 991px) {
	.main-footer__middle {
		margin-bottom: 50px;
	}
}
.main-footer__bottom {
	border-top: var(--firdip-text, #7D8081);
	background: var(--firdip-secondary, #232728);
	box-shadow: inset 0px 1px 0px rgba(255, 255, 255, 0.1);
}
.main-footer__bottom__inner {
	padding: 30px 0px;
}
.main-footer__copyright {
	text-align: center;
	font-style: normal;
	font-weight: 500;
	font-size: 16px;
	line-height: normal;
	margin-bottom: 0;
	padding-bottom: 0;
}

.footer-widget__title {
	font-style: normal;
	font-weight: 600;
	font-size: 18px;
	line-height: normal;
	color: var(--firdip-white, #fff);
	padding-bottom: 0;
	margin-bottom: 15px;
	text-transform: uppercase;
}
.footer-widget__text {
	font-style: normal;
	font-weight: 500;
	font-size: 14px;
	line-height: 214%;
	margin-bottom: 20px;
	padding-bottom: 0;
	color: var(--firdip-text, #7D8081);
}
.footer-widget__newsletter {
	position: relative;
	width: 100%;
	gap: 0px;
	align-items: center;
	display: flex;
	z-index: 1;
}
.footer-widget__newsletter input[type=email] {
	max-width: 265px;
	width: 100%;
	display: block;
	border: none;
	outline: none;
	height: 56px;
	background: rgba(121, 117, 119, 0.2);
	color: var(--firdip-text, #7D8081);
	padding-right: 20px;
	padding-left: 20px;
	transition: all 500ms ease;
	font-weight: 500;
	font-size: 16px;
	line-height: 188%;
}
.footer-widget__newsletter input[type=email]::placeholder {
	color: var(--firdip-text, #7D8081);
	font-style: normal;
	font-weight: 500;
	font-size: 16px;
	line-height: 188%;
}
.footer-widget__newsletter button[type=submit] {
	background-color: var(--firdip-base, #CA4445);
	width: auto;
	height: auto;
	border: none;
	outline: none;
	color: var(--firdip-white, #fff);
	font-size: 22px;
	transition: all 500ms ease;
	padding: 17px 17.5px;
	font-weight: 400;
}
.footer-widget__newsletter button[type=submit]:hover {
	background-color: var(--firdip-white, #fff);
	color: var(--firdip-base, #CA4445);
}
.footer-widget__contact {
	margin-top: -4px;
}
.footer-widget__contact__item {
	display: flex;
	align-items: center;
	gap: 10px;
}
.footer-widget__contact__item:hover .footer-widget__contact__icon {
	background: var(--firdip-base, #CA4445);
	color: var(--firdip-white, #fff);
}
.footer-widget__contact__item a:hover {
	color: var(--firdip-base, #CA4445);
}
.footer-widget__contact__item + .footer-widget__contact__item {
	margin-top: 10px;
}
.footer-widget__contact__icon {
	max-width: 40px;
	width: 100%;
	height: 40px;
	border-radius: 50%;
	background: rgba(121, 117, 119, 0.2);
	display: flex;
	justify-content: center;
	align-items: center;
	color: var(--firdip-base, #CA4445);
	font-size: 17px;
	transition: all 0.4s ease-in-out;
}
.footer-widget__contact__text {
	color: var(--firdip-text, #7D8081);
	display: block;
	margin-bottom: 0;
	padding-bottom: 0;
	font-style: normal;
	font-weight: 500;
	font-size: 14px;
	line-height: 214%;
}
.footer-widget__contact p {
	line-height: 150.286%;
}
.footer-widget__contact__text + .footer-widget__contact__text {
	margin-top: -9px;
}
.footer-widget__links a {
	font-style: normal;
	font-weight: 500;
	font-size: 16px;
	line-height: 188%;
	margin-bottom: 0;
	padding-bottom: 0;
	color: var(--firdip-text, #7D8081);
}
.footer-widget__links a {
	color: inherit;
	transition: all 0.4s ease-in-out;
}
.footer-widget__links a:hover {
	color: var(--firdip-base, #CA4445);
}
.footer-widget__links + .footer-widget__links{
	margin-top: 5px;
}
.footer-widget__image {
	text-align: end;
}

@media (max-width: 991px) {
	.footer-widget {
		margin-bottom: 40px;
	}
}
.footer-widget--about {
	margin-left: 50px;
}
@media (max-width: 1199px) {
	.footer-widget--about {
		margin-left: 0;
	}
}
.footer-widget--contact {
	margin-right: 70px;
}
@media (max-width: 1199px) {
	.footer-widget--contact {
		margin-right: 0;
	}
}
.footer-widget--link {
	margin-right: 55px;
}
@media (max-width: 1199px) {
	.footer-widget--link {
		margin-right: 0;
	}
}
@media (max-width: 991px) {
	.footer-widget--image .footer-widget__image {
		text-align: right;
	}
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact-one {
	padding: 120px 0px;
}
@media (max-width: 991px) {
	.contact-one {
		padding: 100px 0px;
	}
}
@media (max-width: 767px) {
	.contact-one {
		padding: 80px 0px;
	}
}
.contact-one__form {
	max-width: 868px;
	margin-right: auto;
	margin-left: auto;
}

.contact-bottom {
	padding-bottom: 120px;
}
@media (max-width: 991px) {
	.contact-bottom {
		padding-bottom: 100px;
	}
}
@media (max-width: 767px) {
	.contact-bottom {
		padding-bottom: 80px;
	}
}
.contact-bottom__inner {
	position: relative;
	z-index: 1;
	display: flex;
	width: 100%;
	flex-direction: column;
	max-width: 950px;
	margin-right: auto;
	margin-left: auto;
}
.contact-bottom__inner__right {
	position: relative;
	width: 100%;
	margin-bottom: -120px;
}
.contact-bottom__inner__right__bottom {
	padding: 35px;
	background: var(--firdip-secondary, #232728);
}
.contact-bottom__inner__top {
	background: var(--firdip-secondary, #232728);
	display: flex;
	gap: 0;
}
@media (max-width: 767px) {
	.contact-bottom__inner__top {
		flex-direction: column;
		gap: 0px;
	}
}
.contact-bottom__inner__top__item {
	flex: 50%;
	width: 50%;
	position: relative;
	z-index: 1;
}
@media (max-width: 767px) {
	.contact-bottom__inner__top__item {
		width: 100%;
		flex: 100%;
	}
}
.contact-bottom__inner__top__item--two {
	margin-right: 40px;
}
@media (max-width: 767px) {
	.contact-bottom__inner__top__item--two {
		margin-right: 0;
	}
}
.contact-bottom__inner__top__item__content {
	padding: 48px 0px;
	text-align: center;
	font-style: normal;
	font-weight: 700;
	font-size: 20px;
	line-height: 23px;
	margin-bottom: 0;
	color: var(--firdip-white, #fff);
	text-transform: uppercase;
}
.contact-bottom__inner__top__item__list {
	padding: 35px 40px;
	display: flex;
	gap: 20px;
	border-bottom: 1px solid rgba(var(--firdip-white-rgb, 255, 255, 255), 0.1);
}
@media (max-width: 767px) {
	.contact-bottom__inner__top__item__list {
		border-bottom: 0px solid rgba(var(--firdip-white-rgb, 255, 255, 255), 0.1);
		padding-bottom: 0;
	}
}
.contact-bottom__inner__top__item__list__icon {
	max-width: 50px;
	width: 100%;
	height: 50px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	background: var(--firdip-base, #CA4445);
	font-size: 20px;
	color: var(--firdip-white, #fff);
	position: relative;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}
.contact-bottom__inner__top__item__list__icon::after {
	content: "";
	width: 0%;
	height: 0%;
	background: var(--firdip-white, #fff);
	position: absolute;
	top: 50%;
	right: 50%;
	transition: all 0.4s ease-in-out;
	border-radius: 50%;
	z-index: -1;
}
.contact-bottom__inner__top__item__list__subtitle {
	font-style: normal;
	font-weight: 700;
	font-size: 14px;
	line-height: normal;
	text-transform: uppercase;
	color: var(--firdip-text, #7D8081);
	margin-bottom: 0;
	padding-bottom: 0;
}
.contact-bottom__inner__top__item__list__text {
	font-style: normal;
	font-weight: 600;
	font-size: 20px;
	line-height: normal;
	margin-bottom: 0;
	padding-bottom: 0;
	color: var(--firdip-white, #fff);
}
.contact-bottom__inner__top__item__list__text a {
	color: inherit;
}
.contact-bottom__inner__top__item__list__text a:hover {
	background: linear-gradient(to left, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
	transition: all 500ms ease;
	color: var(--firdip-base, #CA4445);
}
.contact-bottom__inner__top__item__list__text a:hover:hover {
	background-size: 100% 1px;
}
.contact-bottom__inner__top__item__list:hover .contact-bottom__inner__top__item__list__icon {
	color: var(--firdip-secondary, #232728);
}
.contact-bottom__inner__top__item__list:hover .contact-bottom__inner__top__item__list__icon::after {
	width: 100%;
	height: 100%;
	top: 0%;
	right: 0%;
}
.contact-bottom__inner__bg {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	z-index: -1;
	mix-blend-mode: normal;
}
.contact-bottom__inner__bg::before {
	content: "";
	position: absolute;
	right: 0;
	top: 0;
	width: 100%;
	z-index: 1;
	height: 100%;
	background: rgba(var(--firdip-base-rgb, 202, 68, 69), 0.9);
}
.contact-bottom__thumb {
	width: 100%;
}
.contact-bottom__thumb img {
	object-fit: cover;
	width: 100%;
}
.contact-bottom__list {
	display: flex;
	gap: 20px;
	margin-bottom: 0;
	width: 100%;
}
@media (max-width: 991px) {
	.contact-bottom__list {
		flex-direction: column;
		gap: 30px;
	}
}
.contact-bottom__list__item {
	display: flex;
	gap: 20px;
	align-items: center;
	width: 100%;
}
.contact-bottom__list__item--two {
	justify-content: end;
}
@media (max-width: 991px) {
	.contact-bottom__list__item--two {
		justify-content: start;
	}
}
.contact-bottom__list__item__icon {
	max-width: 50px;
	width: 100%;
	height: 50px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	background: var(--firdip-base, #CA4445);
	font-size: 20px;
	color: var(--firdip-white, #fff);
	position: relative;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}
.contact-bottom__list__item__icon::after {
	content: "";
	width: 0%;
	height: 0%;
	background: var(--firdip-white, #fff);
	position: absolute;
	top: 50%;
	right: 50%;
	transition: all 0.4s ease-in-out;
	border-radius: 50%;
	z-index: -1;
}
.contact-bottom__list__item__subtitle {
	font-style: normal;
	font-weight: 700;
	font-size: 14px;
	line-height: normal;
	text-transform: uppercase;
	color: var(--firdip-text, #7D8081);
	margin-bottom: 0;
	padding-bottom: 0;
}
.contact-bottom__list__item__text {
	font-style: normal;
	font-weight: 600;
	font-size: 20px;
	line-height: normal;
	margin-bottom: 0;
	padding-bottom: 0;
	color: var(--firdip-white, #fff);
	display: block;
}
.contact-bottom__list__item__text a {
	color: inherit;
}
.contact-bottom__list__item__text a:hover {
	background: linear-gradient(to left, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
	transition: all 500ms ease;
	color: var(--firdip-base, #CA4445);
}
.contact-bottom__list__item__text a:hover:hover {
	background-size: 100% 1px;
}
.contact-bottom__list__item__social {
	display: inline-flex;
	align-items: center;
	justify-content: end;
	gap: 15px;
}
.contact-bottom__list__item__social a {
	width: 35px;
	height: 35px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 14px;
	color: var(--firdip-white, #fff);
	background: rgba(230, 224, 216, 0.17);
}
.contact-bottom__list__item__social a:hover {
	background: var(--firdip-base, #CA4445);
	color: var(--firdip-secondary, #232728);
}
.contact-bottom__list__item:hover .contact-bottom__list__item__icon {
	color: var(--firdip-secondary, #232728);
}
.contact-bottom__list__item:hover .contact-bottom__list__item__icon::after {
	width: 100%;
	height: 100%;
	top: 0%;
	right: 0%;
}

/*--------------------------------------------------------------
# Topbar
--------------------------------------------------------------*/
.topbar-one {
	position: relative;
	background: var(--firdip-base, #CA4445);
}
.topbar-one .container-fluid {
	max-width: 1760px;
}
.topbar-one__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.topbar-one__info {
	display: flex;
	align-items: center;
	margin-bottom: 0;
}
.topbar-one__info__item span, .topbar-one__info__item a {
	margin-bottom: 0;
	padding-bottom: 0;
	font-style: normal;
	font-weight: 500;
	font-size: 14px;
	line-height: 129%;
	color: var(--firdip-gray, #DCCEC6);
}
.topbar-one__info__item i {
	color: var(--firdip-white, #fff);
	transition: all 0.4s ease-in-out;
}
.topbar-one__info__item a {
	background: linear-gradient(to left, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
	transition: all 500ms ease;
}
.topbar-one__info__item a:hover {
	background-size: 100% 1px;
}
.topbar-one__info__item:hover i {
	color: var(--firdip-secondary, #232728);
}
.topbar-one__info__item + .topbar-one__info__item {
	margin-right: 30px;
}
.topbar-one__right {
	background: var(--firdip-secondary, #232728);
	padding-right: 50px;
	position: relative;
	padding-top: 10px;
	padding-bottom: 10px;
	z-index: 1;
}
.topbar-one__right::after {
	content: "";
	background: var(--firdip-secondary, #232728);
	width: 9999999px;
	height: 100%;
	position: absolute;
	top: 0;
	right: 99%;
	z-index: -1;
}
.topbar-one__social a {
	color: var(--firdip-white, #fff);
	font-size: 14px;
}
.topbar-one__social a + a {
	margin-right: 20px;
	transition: all 0.4s ease-in-out;
}
.topbar-one__social a + a:hover {
	color: var(--firdip-base, #CA4445);
}
@media (max-width: 767px) {
	.topbar-one {
		display: none;
	}
}

/*--------------------------------------------------------------
# Navigations
--------------------------------------------------------------*/
.main-header {
	background-color: var(--firdip-secondary, #232728);
	position: relative;
}
.main-header .container-fluid {
	max-width: 1760px;
}
.main-header__inner {
	display: flex;
	align-items: center;
}
@media (max-width: 767px) {
	.main-header__inner {
		padding: 10px 0px;
	}
}
.main-header__logo {
	display: flex;
	width: auto;
	align-items: center;
	justify-content: space-between;
}
@media (min-width: 768px) {
	.main-header__logo {
		width: 250px;
	}
}
@media (min-width: 768px) {
	.main-header__logo .mobile-nav__btn {
		margin-right: 30px;
	}
}
.main-header__nav {
	margin-right: 0px;
	margin-left: auto;
}
.main-header__nav *{
	white-space: nowrap;
}
.main-header__right {
	display: flex;
	align-items: center;
	position: relative;
	z-index: 1;
}
.main-header__right__call {
	background: var(--firdip-white, #fff);
	display: flex;
	position: relative;
	z-index: 1;
	align-items: center;
	gap: 10px;
	padding: 15px 40px 15px 0px;
	margin-right: 40px;
}
@media (max-width: 767px) {
	.main-header__right__call {
		display: none;
	}
}
.main-header__right__call::after {
	content: "";
	background: var(--firdip-white, #fff);
	width: 9999999px;
	height: 100%;
	position: absolute;
	top: 0;
	right: 99%;
	z-index: -1;
}
.main-header__right__call:hover .main-header__right__icon {
	color: var(--firdip-white, #fff);
}
.main-header__right__call:hover .main-header__right__icon::after {
	content: "";
	width: 100%;
	height: 100%;
	top: 0%;
	right: 0%;
}
.main-header__right__icon {
	width: 40px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 16px;
	color: var(--firdip-base, #CA4445);
	position: relative;
	overflow: hidden;
	border-radius: 50%;
	background: var(--firdip-text-gray, #EFE6E1);
	z-index: 1;
	transition: all 0.4s ease-in-out;
}
.main-header__right__icon::after {
	content: "";
	width: 0%;
	height: 0%;
	position: absolute;
	top: 50%;
	right: 50%;
	background: var(--firdip-base, #CA4445);
	z-index: -1;
	transition: all 0.4s ease-in-out;
	border-radius: 50%;
}
.main-header__right__text {
	font-style: normal;
	font-weight: 500;
	font-size: 12px;
	line-height: normal;
	color: var(--firdip-text, #7D8081);
	margin-bottom: 0;
	padding-bottom: 0;
}
.main-header__right__number {
	font-style: normal;
	font-weight: 700;
	font-size: 18px;
	line-height: 167%;
	margin-bottom: -5px;
	padding-bottom: 0;
	color: var(--firdip-secondary, #232728);
	transition: all 0.4s ease-in-out;
}
.main-header__right__number:hover {
	color: var(--firdip-base, #CA4445);
}
.main-header__right__info__item {
	font-size: 22px;
	color: var(--firdip-white, #fff);
	transition: all 0.4s ease-in-out;
}
@media (max-width: 575px) {
	.main-header__right__info__item {
		display: none;
	}
}
.main-header__right__info__item:hover {
	color: var(--firdip-base, #CA4445);
}
.main-header__right__info__item + .main-header__right__info__item {
	margin-right: 20px;
}
.main-header__bottom {
	background: transparent;
	position: relative;
	z-index: 1;
}
.main-header__bottom .container {
	margin-right: auto !important;
	margin-left: auto;
}
.main-header__bottom__inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	background: var(--firdip-base, #CA4445);
	padding: 17px 40px;
	position: relative;
	z-index: 1;
}
@media (max-width: 991px) {
	.main-header__bottom__inner {
		display: none;
	}
}
.main-header__bottom__inner::after {
	content: "";
	top: 50%;
	height: 1px;
	right: 575px;
	left: 200px;
	background: rgba(var(--firdip-white-rgb, 255, 255, 255), 0.23);
	position: absolute;
}
.main-header__bottom__left {
	display: flex;
	align-items: center;
	gap: 60px;
}
.main-header__bottom__call {
	display: flex;
	position: relative;
	z-index: 1;
	align-items: center;
	gap: 10px;
}
@media (max-width: 767px) {
	.main-header__bottom__call {
		display: none;
	}
}
.main-header__bottom__call:hover .main-header__bottom__icon {
	color: var(--firdip-white, #fff);
}
.main-header__bottom__call:hover .main-header__bottom__icon::after {
	content: "";
	width: 100%;
	height: 100%;
	top: 0%;
	right: 0%;
}
.main-header__bottom__icon {
	width: 40px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 16px;
	color: var(--firdip-base, #CA4445);
	position: relative;
	overflow: hidden;
	border-radius: 50%;
	background: var(--firdip-white, #fff);
	z-index: 1;
	transition: all 0.4s ease-in-out;
}
.main-header__bottom__icon::after {
	content: "";
	width: 0%;
	height: 0%;
	position: absolute;
	top: 50%;
	right: 50%;
	background: var(--firdip-secondary, #232728);
	z-index: -1;
	transition: all 0.4s ease-in-out;
	border-radius: 50%;
}
.main-header__bottom__text {
	font-style: normal;
	font-weight: 500;
	font-size: 12px;
	line-height: normal;
	color: var(--firdip-white, #fff);
	margin-bottom: 0;
	padding-bottom: 0;
}
.main-header__bottom__number {
	font-style: normal;
	font-weight: 700;
	font-size: 18px;
	line-height: 167%;
	margin-bottom: -5px;
	padding-bottom: 0;
	color: var(--firdip-white, #fff);
	transition: all 0.4s ease-in-out;
}
.main-header__bottom__number:hover {
	color: var(--firdip-secondary, #232728);
}
.main-header__bottom__list {
	display: flex;
	flex-direction: column;
	margin-bottom: 0;
}
.main-header__bottom__list__item {
	display: flex;
	align-items: center;
	gap: 5px;
}
.main-header__bottom__list__item i {
	color: var(--firdip-gray, #DCCEC6);
	transition: all 0.4s ease-in-out;
}
.main-header__bottom__list__item p, .main-header__bottom__list__item a {
	font-style: normal;
	font-weight: 500;
	font-size: 14px;
	line-height: 129%;
	margin-bottom: 0;
	padding-bottom: 0;
	color: var(--firdip-white, #fff);
	transition: all 0.4s ease-in-out;
}
.main-header__bottom__list__item p:hover, .main-header__bottom__list__item a:hover {
	color: var(--firdip-secondary, #232728);
}
.main-header__bottom__list__item a {
	background: linear-gradient(to left, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
	transition: all 500ms ease;
}
.main-header__bottom__list__item a:hover {
	background-size: 100% 1px;
}
.main-header__bottom__list__item:hover i {
	color: var(--firdip-white, #fff);
}
.main-header__bottom__list__item + .main-header__bottom__list__item {
	margin-top: 7px;
}
.main-header__bottom__social a {
	color: var(--firdip-white, #fff);
	font-size: 15px;
	transition: all 0.4s ease-in-out;
}
.main-header__bottom__social a:hover {
	color: var(--firdip-secondary, #232728);
}
.main-header__bottom__social a + a {
	margin-right: 18px;
}
@media (max-width: 767px) {
	.main-header .mobile-nav__btn span {
		background: var(--firdip-base, #CA4445);
	}
}
.main-header .mobile-nav__btn:hover span {
	background: var(--firdip-base, #CA4445);
}
.main-header--two {
	background: var(--firdip-white, #fff);
}
.main-header--two .main-header__nav {
	margin-right: 0;
}
.main-header--two .main-header__item {
	max-width: 1660px;
	margin-right: auto;
	margin-left: auto;
	display: flex;
	align-items: center;
}
@media (max-width: 1700px) {
	.main-header--two .main-header__item {
		padding-right: 15px;
	}
}
@media (max-width: 767px) {
	.main-header--two .main-header__inner {
		padding: 0;
	}
}
@media (max-width: 767px) {
	.main-header--two .main-header__right__info__item {
		display: none;
	}
}
@media (max-width: 575px) {
	.main-header--two .main-header__right__btn {
		display: none;
	}
	.main-header--two .main-header__right {
		padding: 0 !important;
		background: transparent !important;
	}
	.main-header--two .main-header__right::after {
		display: none !important;
	}
	.main-header--two .main-header__item {
		padding: 20px 15px;
	}
}
.main-header--two .container {
	margin-right: 100px;
	margin-left: auto;
}
.main-header--two .main-menu .main-menu__list > li > a {
	color: var(--firdip-text, #7D8081);
	text-transform: capitalize;
}
.main-header--two .main-header__right__btn {
	margin-right: 40px;
	color: var(--firdip-base, #CA4445);
	font-size: 14px;
	padding: 12px 28px;
	text-transform: capitalize;
}
.main-header--two .main-header__right__btn::before {
	background: var(--firdip-white, #fff);
}
.main-header--two .main-header__right__btn:hover {
	color: var(--firdip-white, #fff);
}
.main-header--two .main-header__right {
	padding: 17px 50px 16.25px 0px;
	background: var(--firdip-text-gray, #EFE6E1);
}
.main-header--two .main-header__right::after {
	content: "";
	background: var(--firdip-text-gray, #EFE6E1);
	width: 9999999px;
	height: 100%;
	position: absolute;
	top: 0;
	right: 99%;
	z-index: -1;
}
.main-header--two .main-header__right__info__item {
	color: var(--firdip-secondary, #232728);
}
.main-header--two .main-header__right__info__item:hover {
	color: var(--firdip-base, #CA4445);
}
.main-header--three {
	background: transparent;
	position: relative;
	z-index: 999;
	margin-bottom: -80px;
}
.main-header--three .main-header__nav {
	margin-right: 0;
}
.main-header--three .main-header__item {
	background: var(--firdip-white, #fff);
}
.main-header--three .main-header__item__inner {
	max-width: 1660px;
	margin-right: auto;
	margin-left: auto;
	display: flex;
	align-items: center;
}
@media (max-width: 1700px) {
	.main-header--three .main-header__item__inner {
		padding-right: 15px;
	}
}
.main-header--three .container {
	margin-right: 100px;
	margin-left: auto;
}
.main-header--three .main-menu .main-menu__list > li > a {
	color: var(--firdip-text, #7D8081);
	text-transform: capitalize;
}
.main-header--three .main-header__right__btn {
	margin-right: 40px;
	color: var(--firdip-base, #CA4445);
	font-size: 14px;
	padding: 12px 28px;
	text-transform: capitalize;
}
.main-header--three .main-header__right__btn::before {
	background: var(--firdip-text-gray, #EFE6E1);
}
.main-header--three .main-header__right__btn:hover {
	color: var(--firdip-white, #fff);
}
@media (max-width: 575px) {
	.main-header--three .main-header__right__btn {
		display: none;
	}
}
.main-header--three .main-header__right {
	padding: 17px 50px 16.25px 0px;
}
.main-header--three .main-header__right__info__item {
	color: var(--firdip-secondary, #232728);
}
.main-header--three .main-header__right__info__item:hover {
	color: var(--firdip-base, #CA4445);
}

.sticky-header--cloned {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	z-index: 999;
	top: 0;
	background-color: var(--firdip-secondary, #232728);
	transform: translateY(-100%);
	box-shadow: 0px 3px 18px rgba(var(--firdip-black-rgb, 23, 24, 24), 0.07);
	transition: 0.6s cubic-bezier(0.24, 0.74, 0.58, 1);
	visibility: hidden;
	transition: transform 500ms ease, visibility 500ms ease;
}
.sticky-header--cloned.active {
	transform: translateY(0%);
	visibility: visible;
}

.main-header--two.active {
	background-color: var(--firdip-white, #fff);
	box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.main-header--three.active {
	box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.main-header--three.active .main-header__bottom {
	background-color: transparent;
	visibility: hidden;
	opacity: 0;
	display: none;
}

.mobile-nav__btn {
	width: 24px;
	display: flex;
	align-items: center;
	flex-direction: column;
	flex-wrap: wrap;
	cursor: pointer;
	z-index: 3;
}
@media (max-width: 1199px) {
	.mobile-nav__btn {
		margin-right: 30px;
		margin-left: 10px;
	}
}
@media (min-width: 1200px) {
	.mobile-nav__btn {
		display: none;
	}
}
.mobile-nav__btn span {
	width: 100%;
	height: 2px;
	background-color: var(--firdip-secondary, #232728);
	transition: all 0.4s ease-in-out;
}
.mobile-nav__btn span:nth-child(2) {
	margin-top: 4px;
	margin-bottom: 4px;
}

.main-menu {
	/* after third level no menu */
}
.main-menu .main-menu__list,
.main-menu .main-menu__list ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
	align-items: center;
	display: none;
}
@media (min-width: 1200px) {
	.main-menu .main-menu__list,
	.main-menu .main-menu__list ul {
		display: flex;
	}
}
.main-menu .main-menu__list > li {
	padding-top: 25px;
	padding-bottom: 25px;
	position: relative;
}
.main-menu .main-menu__list > li.dropdown > a {
	position: relative;
}
.main-menu .main-menu__list > li + li {
	margin-right: 15px;
}
@media (max-width: 1199px) {
	.main-menu .main-menu__list > li + li {
		margin-right: 30px;
	}
}
.main-menu .main-menu__list > li > a {
	display: flex;
	align-items: center;
	position: relative;
	transition: all 500ms ease;
	color: var(--firdip-white, #fff);
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	text-transform: uppercase;
	line-height: 19px;
}
.main-menu .main-menu__list > li.current > a,
.main-menu .main-menu__list > li:hover > a {
	color: var(--firdip-base, #CA4445);
}
.main-menu .main-menu__list li ul {
	position: absolute;
	top: 100%;
	right: -25px;
	min-width: 235px;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	opacity: 0;
	visibility: hidden;
	transform-origin: top center;
	transform: scaleY(0) translateZ(100px);
	transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease;
	z-index: 99;
	background-color: var(--firdip-text-gray, #EFE6E1);
	padding: 30px 20px;
}
.main-menu .main-menu__list li:hover > ul {
	opacity: 1;
	visibility: visible;
	transform: scaleY(1) translateZ(0px);
}
.main-menu .main-menu__list > .megamenu {
	position: static;
}
.main-menu .main-menu__list > .megamenu > ul {
	top: 100% !important;
	right: 0 !important;
	left: 0 !important;
	background-color: transparent;
	box-shadow: none;
	padding: 0;
}
.main-menu .main-menu__list li ul li {
	flex: 1 1 100%;
	width: 100%;
	position: relative;
	margin-bottom: 10px;
}
.main-menu .main-menu__list li ul li:last-child {
	margin-bottom: 0;
}
.main-menu .main-menu__list li ul li > a {
	display: flex;
	padding: 10px 20px;
	transition: 400ms;
	color: var(--firdip-text, #7D8081);
	font-size: 14px;
	font-weight: 600;
	line-height: normal;
	text-transform: uppercase;
}
.main-menu .sub-menu .dropdown::before {
	position: absolute;
	left: 20px;
	top: 10px;
	transform: translate(-10px 10px);
	font-size: 16px;
	font-weight: 500;
	color: var(--firdip-secondary, #232728);
	visibility: hidden;
	opacity: 0;
	transition: all 500ms ease;
	transform: scaleX(0);
	font-family: "icomoon" !important;
	content: "\e912";
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
}
.main-menu .sub-menu .dropdown:hover::before {
	visibility: visible;
	opacity: 1;
	transform: scaleX(1);
}
.main-menu .main-menu__list li ul li.current > a,
.main-menu .main-menu__list li ul li:hover > a {
	background-color: var(--firdip-white, #fff);
	color: var(--firdip-base, #CA4445);
	text-shadow: 0 0 0.1px currentColor;
}
.main-menu .main-menu__list li ul li > ul {
	top: 0;
	right: calc(100% + 20px);
}
.main-menu .main-menu__list li ul li > ul.right-align {
	top: 0;
	right: auto;
	left: 100%;
}
.main-menu .main-menu__list li ul li > ul ul {
	display: none;
}

@media (min-width: 1200px) and (max-width: 1400px) {
	.main-menu__list li:nth-last-child(1) ul li > ul,
	.main-menu__list li:nth-last-child(2) ul li > ul {
		right: auto;
		left: calc(100% + 20px);
	}
}
/*--------------------------------------------------------------
# Megamenu Popup
--------------------------------------------------------------*/
.mobile-nav__container .main-menu__list > .megamenu.megamenu-clickable > ul,
.main-menu .main-menu__list > .megamenu.megamenu-clickable > ul,
.stricky-header .main-menu__list > .megamenu.megamenu-clickable > ul {
	position: fixed;
	top: 0 !important;
	right: 0 !important;
	width: 100vw;
	height: 100vh;
	visibility: visible;
	overflow-y: scroll;
	visibility: hidden;
	opacity: 0;
	-webkit-transform: scale(1, 0);
	transform: scale(1, 0);
	-webkit-transform-origin: bottom center;
	transform-origin: bottom center;
	transition: transform 0.7s ease, opacity 0.7s ease, visibility 0.7s ease;
	z-index: 999999;
	-ms-overflow-style: none;
	scrollbar-width: none;
	overflow-y: scroll;
	padding: 0;
	background-color: var(--firdip-white, #fff);
	display: block !important;
	margin: 0;
}

.main-menu__list > li.megamenu-clickable > ul::-webkit-scrollbar {
	display: none;
}

.mobile-nav__container .main-menu__list > .megamenu.megamenu-clickable > ul.megamenu-clickable--active,
.main-menu .main-menu__list > .megamenu.megamenu-clickable > ul.megamenu-clickable--active,
.stricky-header .main-menu__list > .megamenu.megamenu-clickable > ul.megamenu-clickable--active {
	-webkit-transform-origin: top center;
	transform-origin: top center;
	-webkit-transform: scale(1, 1);
	transform: scale(1, 1);
	opacity: 1;
	visibility: visible;
	transition: transform 0.7s ease, opacity 0.7s ease, visibility 0.7s ease;
}

body.megamenu-popup-active {
	overflow: hidden;
}

body.megamenu-popup-active .stricky-header {
	bottom: 0;
}

body.megamenu-popup-active .mobile-nav__content {
	overflow: unset;
}

.mobile-nav__content .demo-one .container {
	padding-right: 15px;
	padding-left: 15px;
}

.megamenu-popup {
	position: relative;
}
.megamenu-popup .megamenu-clickable--close {
	position: absolute;
	top: 18px;
	left: 20px;
	display: block;
	color: var(--firdip-black, #171818);
}
@media (min-width: 1300px) {
	.megamenu-popup .megamenu-clickable--close {
		top: 38px;
		left: 40px;
	}
}
.megamenu-popup .megamenu-clickable--close:hover {
	color: var(--firdip-base, #CA4445);
}
.megamenu-popup .megamenu-clickable--close span {
	width: 24px;
	height: 24px;
	display: block;
	position: relative;
	color: currentColor;
	transition: all 500ms ease;
}
.megamenu-popup .megamenu-clickable--close span::before, .megamenu-popup .megamenu-clickable--close span::after {
	content: "";
	width: 100%;
	height: 2px;
	background-color: currentColor;
	position: absolute;
	top: 50%;
	right: 50%;
	transform: translate(50%, -50%) rotate(45deg);
}
.megamenu-popup .megamenu-clickable--close span::after {
	transform: translate(50%, -50%) rotate(-45deg);
}

/*--------------------------------------------------------------
# Home Showcase
--------------------------------------------------------------*/
.demo-one {
	padding-top: 120px;
	padding-bottom: 120px;
}
.demo-one .container {
	margin-right: auto !important;
	margin-left: auto;
}
.demo-one .row {
	--bs-gutter-y: 30px;
}
.demo-one__card {
	background-color: var(--firdip-text-gray, #EFE6E1);
	box-shadow: 0px 10px 60px 0px rgba(var(--firdip-black-rgb, 23, 24, 24), 0.1);
	text-align: center;
	transition: 500ms ease;
	transform: translateY(0px);
}
.demo-one__card:hover {
	transform: translateY(-10px);
}
.demo-one__title {
	margin: 0;
	font-style: normal;
	font-weight: 600;
	font-size: 18px;
	line-height: 23px;
	text-transform: uppercase;
	color: var(--firdip-secondary, #232728);
}
.demo-one__title a {
	color: inherit;
	background: linear-gradient(to left, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
	transition: all 500ms ease;
}
.demo-one__title a:hover {
	background-size: 100% 1px;
}
.demo-one__image {
	position: relative;
	overflow: hidden;
}
.demo-one__image img {
	max-width: 100%;
	transition: filter 500ms ease;
	filter: blur(0px);
}
.demo-one__card:hover .demo-one__image img {
	filter: blur(2px);
}
.demo-one__btns {
	background-color: rgba(var(--firdip-black-rgb, 23, 24, 24), 0.7);
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	gap: 10px;
	transform: scale(1, 0);
	transition: transform 500ms ease, opacity 600ms linear;
	transform-origin: bottom center;
	opacity: 0;
}
.demo-one__card:hover .demo-one__btns {
	transform: scale(1, 1);
	opacity: 1;
	transform-origin: top center;
}
.demo-one__btn {
	font-size: 13px;
	padding: 12px 30px;
	min-width: 140px;
	text-align: center;
	justify-content: center;
}
.demo-one__btn::before {
	background-color: var(--firdip-base, #CA4445);
}
.demo-one__btn::after {
	background-color: var(--firdip-black, #171818);
}
.demo-one__btn:hover {
	color: var(--firdip-white, #fff);
}
@media (min-width: 768px) {
	.demo-one__btn {
		display: inline-flex;
	}
}
.demo-one__title {
	padding-top: 20.5px;
	padding-bottom: 20.5px;
}

.home-showcase {
	margin-top: 0px;
	margin-bottom: -20px;
}
.home-showcase .container {
	max-width: 1350px;
}
.home-showcase .row {
	--bs-gutter-x: 42px;
	--bs-gutter-y: 20px;
}
.home-showcase__inner {
	padding: 40px 40px 21px;
	background-color: var(--firdip-text-gray, #EFE6E1);
	box-shadow: 0px 10px 60px 0px rgba(var(--firdip-text-gray, #EFE6E1), 0.07);
	margin-right: 40px;
	margin-left: -40px;
}
@media (max-width: 1199px) {
	.home-showcase__inner {
		margin-right: 0px;
		margin-left: 0px;
	}
}
.home-showcase .demo-one__card {
	box-shadow: none;
}
.home-showcase .demo-one__title {
	padding: 0;
	margin-top: 20px;
	padding-bottom: 10px;
	font-weight: 600;
	font-size: 18px;
	line-height: 23px;
	text-transform: uppercase;
}

/*--------------------------------------------------------------
# Why choose
--------------------------------------------------------------*/
/**Why Choose Section One**/
.why-choose-one {
	position: relative;
	z-index: 1;
}
.why-choose-one--home {
	margin-top: 30px;
}
.why-choose-one__bg {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 66px;
	background-repeat: no-repeat;
	background-size: cover;
	z-index: -1;
}
.why-choose-one__left {
	padding-top: 90px;
}
@media (max-width: 991px) {
	.why-choose-one__left {
		padding-top: 70px;
	}
}
@media (max-width: 767px) {
	.why-choose-one__left {
		padding-top: 50px;
	}
}
.why-choose-one__top {
	margin-bottom: 38px;
}
.why-choose-one__top .sec-title {
	padding-bottom: 20px;
}
.why-choose-one__top .sec-title .sec-title__title {
	color: var(--firdip-white, #fff);
}
.why-choose-one__feature__item {
	background: var(--firdip-secondary, #232728);
	display: flex;
	align-items: center;
	position: relative;
	z-index: 1;
	transition: all 0.4s ease-in-out;
}
@media (max-width: 1199px) and (min-width: 991px) {
	.why-choose-one__feature__item {
		flex-direction: column;
	}
}
@media (max-width: 767px) {
	.why-choose-one__feature__item {
		flex-direction: column;
	}
}
.why-choose-one__feature__item--two::after {
	content: "";
	width: 37px !important;
	height: 43px !important;
	position: absolute;
	top: 0;
	right: auto !important;
	left: -36px !important;
	background: var(--firdip-secondary, #232728);
	clip-path: polygon(100% 50%, 0 100%, 0 0) !important;
	transition: all 0.4s ease-in-out;
}
.why-choose-one__feature__item--two:hover {
	background: var(--firdip-base, #CA4445);
}
.why-choose-one__feature__item--two:hover::after {
	background: var(--firdip-base, #CA4445);
}
.why-choose-one__feature__item::after {
	width: 37px;
	height: 43px;
	position: absolute;
	transition: all 0.4s ease-in-out;
	top: 0;
	right: -36px;
	background: var(--firdip-secondary, #232728);
	clip-path: polygon(0 50%, 100% 100%, 100% 0);
	content: "";
}
.why-choose-one__feature__item:hover {
	background: var(--firdip-base, #CA4445);
}
.why-choose-one__feature__item:hover::after {
	background: var(--firdip-base, #CA4445);
}
.why-choose-one__feature__item:hover .why-choose-one__feature__text {
	color: var(--firdip-white, #fff);
}
.why-choose-one__feature__item:hover .why-choose-one__feature__icon__bg::after {
	background: rgba(var(--firdip-secondary-rgb, 35, 39, 40), 0.91);
}
.why-choose-one__feature__item + .why-choose-one__feature__item {
	margin-top: 30px;
}
.why-choose-one__feature__content {
	padding: 0px 40px;
}
@media (max-width: 1199px) and (min-width: 991px) {
	.why-choose-one__feature__content {
		padding: 40px 40px 30px;
	}
}
@media (max-width: 767px) {
	.why-choose-one__feature__content {
		padding: 30px;
	}
}
.why-choose-one__feature__title {
	font-style: normal;
	font-weight: 700;
	font-size: 20px;
	line-height: 150%;
	margin-bottom: 10px;
	padding-bottom: 0;
	color: var(--firdip-white, #fff);
}
.why-choose-one__feature__text {
	font-style: normal;
	font-weight: 500;
	font-size: 16px;
	line-height: 188%;
	margin-bottom: 0;
	padding-bottom: 0;
	color: var(--firdip-text, #7D8081);
	transition: all 0.4s ease-in-out;
}
.why-choose-one__feature__icon {
	max-width: 230px;
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 1;
	margin-right: auto;
	margin-left: 0;
	font-size: 100px;
	color: var(--firdip-white, #fff);
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 47px 30px;
}
@media (max-width: 1199px) and (min-width: 991px) {
	.why-choose-one__feature__icon {
		max-width: 100%;
	}
}
@media (max-width: 767px) {
	.why-choose-one__feature__icon {
		max-width: 100%;
	}
}
.why-choose-one__feature__icon__bg {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	background-repeat: no-repeat;
	background-size: cover;
	z-index: -1;
}
.why-choose-one__feature__icon__bg::after {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	right: 0;
	content: "";
	background: rgba(var(--firdip-base-rgb, 202, 68, 69), 0.91);
	z-index: 1;
	transition: all 0.4s ease-in-out;
}
.why-choose-one__thumb__item {
	position: absolute;
	top: 0;
	left: 0;
	width: 40%;
}
@media (max-width: 991px) {
	.why-choose-one__thumb__item {
		width: 100%;
		position: relative;
	}
	.why-choose-one__thumb__item img {
		object-fit: cover;
		width: 100%;
	}
}
.why-choose-one__thumb__video {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 40%;
}
@media (max-width: 991px) {
	.why-choose-one__thumb__video {
		left: auto;
	}
}
@media (max-width: 767px) {
	.why-choose-one__thumb__video {
		width: 100%;
	}
}
.why-choose-one__thumb__video__item {
	background: var(--firdip-base, #CA4445);
	padding: 30px 50px;
	gap: 30px;
	display: flex;
	max-width: 325px;
	width: 100%;
}
@media (max-width: 767px) {
	.why-choose-one__thumb__video__item {
		max-width: 325px;
	}
}
.why-choose-one__thumb__video__text {
	font-style: normal;
	font-weight: 800;
	font-size: 20px;
	line-height: 150%;
	margin-bottom: 0;
	padding-bottom: 0;
	color: var(--firdip-white, #fff);
	text-transform: uppercase;
}
.why-choose-one__thumb__video__icon {
	max-width: 70px;
	width: 100%;
	border-radius: 50%;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	background: var(--firdip-secondary, #232728);
	height: 70px;
	color: var(--firdip-base, #CA4445);
	font-size: 17px;
	position: relative;
	z-index: 1;
	transition: all 0.4s ease-in-out;
}
.why-choose-one__thumb__video__icon i {
	transition: all 0.4s ease-in-out;
}
.why-choose-one__thumb__video__icon::after {
	content: "";
	animation: ping 1.5s ease-in-out infinite;
	position: absolute;
	height: 110%;
	width: 110%;
	background: var(--firdip-white, #fff);
	opacity: 0.08;
	border-radius: 50%;
	z-index: -1;
}
.why-choose-one__thumb__video__icon:hover {
	background: var(--firdip-white, #fff);
	color: var(--firdip-secondary, #232728);
}
.why-choose-one__thumb__video__icon:hover i {
	transform: scale(1.2);
}

/**Why Choose Section Two**/
.why-choose-two {
	position: relative;
	z-index: 1;
	padding-bottom: 120px;
	background: var(--firdip-white, #fff);
}
@media (max-width: 991px) {
	.why-choose-two {
		padding-bottom: 0;
	}
}
.why-choose-two__thumb {
	position: absolute;
	top: 0;
	right: 0;
	width: 46%;
	overflow: hidden;
}
@media (max-width: 991px) {
	.why-choose-two__thumb {
		padding-top: 100px;
		position: relative;
		width: 100%;
	}
	.why-choose-two__thumb img {
		object-fit: cover;
		width: 100%;
	}
}
@media (max-width: 767px) {
	.why-choose-two__thumb {
		padding-top: 80px;
	}
}
.why-choose-two__thumb__video {
	position: relative;
	z-index: 1;
	margin-top: -129px;
	max-width: 228px;
	width: 100%;
	background: var(--firdip-base, #CA4445);
	margin-right: auto;
	margin-left: auto;
	padding: 50px 20px;
}
@media (max-width: 991px) {
	.why-choose-two__thumb__video {
		position: absolute;
		bottom: 0;
	}
}
.why-choose-two__thumb__video__item {
	display: flex;
	justify-content: center;
	flex-direction: column;
}
.why-choose-two__thumb__video__icon {
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 30px;
	max-width: 70px;
	width: 100%;
	border-radius: 50%;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	background: var(--firdip-secondary, #232728);
	height: 70px;
	color: var(--firdip-white, #fff);
	font-size: 17px;
	position: relative;
	z-index: 1;
	transition: all 0.4s ease-in-out;
}
.why-choose-two__thumb__video__icon i {
	transition: all 0.4s ease-in-out;
}
.why-choose-two__thumb__video__icon::after {
	content: "";
	animation: ping 1.5s ease-in-out infinite;
	position: absolute;
	height: 110%;
	width: 110%;
	background: var(--firdip-white, #fff);
	opacity: 0.08;
	border-radius: 50%;
	z-index: -1;
}
.why-choose-two__thumb__video__icon:hover {
	background: var(--firdip-white, #fff);
	color: var(--firdip-secondary, #232728);
}
.why-choose-two__thumb__video__icon:hover i {
	transform: scale(1.2);
}
.why-choose-two__thumb__video__text {
	margin-bottom: -5px;
	padding-bottom: 0;
	text-align: center;
	font-style: normal;
	font-weight: 800;
	font-size: 20px;
	line-height: 150%;
	color: var(--firdip-white, #fff);
	text-transform: uppercase;
}
.why-choose-two__right {
	padding-top: 120px;
}
@media (max-width: 991px) {
	.why-choose-two__right {
		padding-top: 30px;
	}
}
.why-choose-two__top {
	margin-bottom: 36px;
}
.why-choose-two__top .sec-title {
	padding-bottom: 18px;
}
.why-choose-two__feature__item {
	background: var(--firdip-secondary, #232728);
	max-width: 432px;
	width: 100%;
}
.why-choose-two__feature__item:hover .why-choose-two__feature__top__icon {
	color: var(--firdip-base, #CA4445);
	background: var(--firdip-white, #fff);
}
.why-choose-two__feature__item:hover .why-choose-two__feature__top__thumb {
	border-bottom: 4px solid var(--firdip-white, #fff);
}
.why-choose-two__feature__item + .why-choose-two__feature__item {
	margin-top: 30px;
}
.why-choose-two__feature__top {
	display: flex;
	gap: 0px;
	position: relative;
	padding-right: 40px;
	z-index: 1;
}
.why-choose-two__feature__top__icon {
	width: 70px;
	height: 80px;
	background: var(--firdip-base, #CA4445);
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 40px;
	color: var(--firdip-white, #fff);
	transition: all 0.4s ease-in-out;
}
.why-choose-two__feature__top__thumb {
	position: absolute;
	height: 80px;
	right: 110px;
	left: 0;
	background-repeat: no-repeat;
	background-size: cover;
	z-index: -1;
	border-bottom: 4px solid var(--firdip-base, #CA4445);
	transition: all 0.4s ease-in-out;
}
.why-choose-two__feature__content {
	padding: 30px 40px 35px;
}
.why-choose-two__feature__title {
	margin-top: -7px;
	font-style: normal;
	font-weight: 700;
	font-size: 20px;
	line-height: 150%;
	padding-bottom: 0;
	margin-bottom: 5px;
	color: var(--firdip-white, #fff);
	text-transform: uppercase;
}
.why-choose-two__feature__title a {
	color: inherit;
	background: linear-gradient(to left, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
	transition: all 500ms ease;
}
.why-choose-two__feature__title a:hover {
	background-size: 100% 1px;
}
.why-choose-two__feature__text {
	font-style: normal;
	font-weight: 500;
	font-size: 16px;
	line-height: 188%;
	margin-bottom: -7px;
	padding-bottom: 0;
	color: var(--firdip-text, #7D8081);
}
.why-choose-two::after {
	content: "";
	height: 292px;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 20%;
	background: var(--firdip-text-gray, #EFE6E1);
	z-index: -2;
}
@media (max-width: 991px) {
	.why-choose-two::after {
		display: none;
	}
}
.why-choose-two__image {
	position: absolute;
	bottom: 0;
	right: 75%;
	bottom: 120px;
	z-index: -1;
}
@media (max-width: 991px) {
	.why-choose-two__image {
		bottom: 0;
	}
}

/**Why Choose Section One**/
.why-choose-three {
	position: relative;
	z-index: 1;
}
.why-choose-three::after {
	content: "";
	width: 100%;
	background: var(--firdip-secondary, #232728);
	position: absolute;
	bottom: 154px;
	top: 0;
	left: 0;
	right: 0;
	z-index: -1;
}
.why-choose-three__thumb {
	position: absolute;
	top: 0;
	right: 0;
	width: 49%;
	overflow: hidden;
}
@media (max-width: 991px) {
	.why-choose-three__thumb {
		width: 100%;
		position: relative;
	}
	.why-choose-three__thumb img {
		object-fit: cover;
		width: 100%;
	}
}
.why-choose-three__right {
	padding-top: 120px;
}
@media (max-width: 991px) {
	.why-choose-three__right {
		padding-top: 30px;
	}
}
.why-choose-three__top {
	margin-bottom: 45px;
}
.why-choose-three__top .sec-title {
	padding-bottom: 18px;
}
.why-choose-three__top .sec-title .sec-title__title {
	color: var(--firdip-white, #fff);
}
.why-choose-three__feature {
	margin-right: -155px;
	position: relative;
	display: flex;
	gap: 0;
}
@media (max-width: 1199px) and (min-width: 991px) {
	.why-choose-three__feature {
		flex-direction: column;
		gap: 20px;
		margin-right: 0px;
	}
}
@media (max-width: 991px) {
	.why-choose-three__feature {
		margin-right: 0;
	}
}
@media (max-width: 767px) {
	.why-choose-three__feature {
		flex-direction: column;
		justify-content: center;
		align-items: center;
		gap: 30px;
		margin-right: auto;
		margin-left: auto;
	}
}
.why-choose-three__feature__item {
	position: relative;
	max-width: 362px;
	width: 100%;
}
.why-choose-three__feature__item:nth-child(even) .why-choose-three__feature__content {
	top: 70px;
	bottom: 0;
}
.why-choose-three__feature__item:hover .why-choose-three__feature__icon {
	color: var(--firdip-base, #CA4445);
}
.why-choose-three__feature__item:hover .why-choose-three__feature__icon::after {
	width: 100%;
	height: 100%;
	top: 0%;
	right: 0%;
}
.why-choose-three__feature__item:hover .why-choose-three__feature__content {
	background: rgba(var(--firdip-base-rgb, 202, 68, 69), 0.95);
}
.why-choose-three__feature__item:hover .why-choose-three__feature__text {
	color: var(--firdip-gray, #DCCEC6);
}
.why-choose-three__feature__thumb {
	position: relative;
	z-index: 1;
}
@media (max-width: 575px) {
	.why-choose-three__feature__thumb img {
		object-fit: cover;
		width: 100%;
	}
}
.why-choose-three__feature__content {
	right: 0;
	left: 0;
	bottom: 70px;
	top: 0;
	position: absolute;
	padding: 40px;
	z-index: 1;
	background: rgba(var(--firdip-secondary-rgb, 35, 39, 40), 0.95);
	transition: all 0.4s ease-in-out;
}
@media (max-width: 575px) {
	.why-choose-three__feature__content {
		padding: 40px 20px;
	}
}
.why-choose-three__feature__icon {
	width: 80px;
	height: 80px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: var(--firdip-base, #CA4445);
	color: var(--firdip-white, #fff);
	font-size: 48px;
	margin-bottom: 30px;
	position: relative;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}
.why-choose-three__feature__icon::after {
	content: "";
	width: 0%;
	height: 0%;
	position: absolute;
	top: 50%;
	right: 50%;
	background: var(--firdip-white, #fff);
	z-index: -1;
	transition: all 0.4s ease-in-out;
}
.why-choose-three__feature__title {
	font-style: normal;
	font-weight: 700;
	font-size: 20px;
	line-height: 150%;
	margin-bottom: 26px;
	padding-bottom: 0;
	color: var(--firdip-white, #fff);
	text-transform: uppercase;
}
.why-choose-three__feature__text {
	font-style: normal;
	font-weight: 500;
	font-size: 16px;
	line-height: 188%;
	margin-bottom: -5px;
	padding-bottom: 0;
	color: var(--firdip-text, #7D8081);
	transition: all 0.4s ease-in-out;
}

/*--------------------------------------------------------------
# Funfact
--------------------------------------------------------------*/
/**Funfact Section One**/
.funfact-one {
	position: relative;
	z-index: 1;
	padding: 185px 0px 105px;
}
@media (max-width: 991px) {
	.funfact-one {
		padding: 100px 0px 100px;
	}
}
@media (max-width: 767px) {
	.funfact-one {
		padding: 80px 0px 80px;
	}
}
.funfact-one--home {
	margin-top: -71px;
}
@media (max-width: 991px) {
	.funfact-one--home {
		margin-top: 0;
	}
}
.funfact-one__bg {
	position: absolute;
	top: 0;
	right: -2px;
	left: 0;
	bottom: 0;
	background-repeat: no-repeat;
	background-size: cover;
	z-index: -1;
	background-color: var(--firdip-base, #CA4445);
	-webkit-mask: url('data:image/svg+xml;utf8,	<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 900.000000 279.000000" >	<g transform="translate(0.000000,279.000000) scale(0.100000,-0.100000)"> <path d="M0 1395 l0 -1395 4500 0 4500 0 0 1240 0 1240 -4245 0 -4244 0 -38 21 c-21 11 -51 29 -68 40 -16 10 -37 22 -45 26 -8 4 -46 25 -85 48 -38 22 -77 44 -85 48 -8 4 -28 16 -45 27 -16 10 -50 29 -74 42 -24 13 -46 31 -49 41 -2 9 -8 17 -13 17 -5 0 -9 -594 -9 -1395z"/> </g> </svg>');
	mask: url('data:image/svg+xml;utf8,	<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 900.000000 279.000000" >	<g transform="translate(0.000000,279.000000) scale(0.100000,-0.100000)"> <path d="M0 1395 l0 -1395 4500 0 4500 0 0 1240 0 1240 -4245 0 -4244 0 -38 21 c-21 11 -51 29 -68 40 -16 10 -37 22 -45 26 -8 4 -46 25 -85 48 -38 22 -77 44 -85 48 -8 4 -28 16 -45 27 -16 10 -50 29 -74 42 -24 13 -46 31 -49 41 -2 9 -8 17 -13 17 -5 0 -9 -594 -9 -1395z"/> </g> </svg>');
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: left bottom;
	mask-position: left bottom;
	-webkit-mask-size: 100%;
	mask-size: 100%;
}
@media (max-width: 1199px) {
	.funfact-one__bg {
		mask: none;
	}
}
.funfact-one__item {
	background: var(--firdip-white, #fff);
	position: relative;
	padding: 54px 10px 40px;
	z-index: 1;
}
.funfact-one__item__icon {
	width: 70px;
	height: 70px;
	background: var(--firdip-secondary, #232728);
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 50px;
	color: var(--firdip-white, #fff);
	position: relative;
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 40px;
	transition: all 0.4s ease-in-out;
}
.funfact-one__item__icon::after {
	content: "";
	width: 18px;
	height: 15px;
	background: var(--firdip-secondary, #232728);
	position: absolute;
	bottom: -14px;
	right: 40%;
	clip-path: polygon(50% 100%, 0 0, 100% 0);
	transition: all 0.4s ease-in-out;
}
.funfact-one__item__title {
	display: flex;
	justify-content: center;
	align-items: center;
	color: var(--firdip-secondary, #232728);
	padding-bottom: 0;
	font-style: normal;
	font-weight: 700;
	font-size: 40px;
	line-height: 47px;
}
.funfact-one__item__title span {
	color: inherit;
}
.funfact-one__item__text {
	margin-bottom: -4px;
	padding-bottom: 0;
	font-style: normal;
	font-weight: 600;
	font-size: 16px;
	line-height: 138%;
	color: var(--firdip-text, #7D8081);
	text-align: center;
	text-transform: uppercase;
}
.funfact-one__item::after {
	content: "";
	background: #EFE6E1;
	transform: matrix(1, 0, 0, -1, 0, 0);
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 124px;
	z-index: -1;
}
.funfact-one__item:hover .funfact-one__item__icon {
	background: var(--firdip-base, #CA4445);
}
.funfact-one__item:hover .funfact-one__item__icon::after {
	background: var(--firdip-base, #CA4445);
}

/**Funfact Section Two**/
.funfact-two__inner {
	background: var(--firdip-base, #CA4445);
	position: relative;
}
@media (max-width: 991px) {
	.funfact-two__inner {
		padding: 30px;
		padding-bottom: 0;
	}
}
@media (max-width: 767px) {
	.funfact-two__inner {
		padding: 30px;
	}
}
.funfact-two__list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	row-gap: 0;
	z-index: 3;
	position: relative;
}
@media (max-width: 767px) {
	.funfact-two__list {
		display: block;
	}
}
.funfact-two__list__item {
	padding-top: 74px;
	padding-bottom: 74px;
	flex: 0 0 25%;
	max-width: 25%;
	position: relative;
}
@media (max-width: 991px) {
	.funfact-two__list__item {
		margin-bottom: 30px;
	}
}
@media (max-width: 991px) {
	.funfact-two__list__item {
		flex: 0 0 50%;
		max-width: 50%;
		padding: 0;
	}
}
@media (max-width: 767px) {
	.funfact-two__list__item {
		flex: 0 0 100%;
		max-width: 100%;
		text-align: center;
		padding: 0;
	}
}
.funfact-two__list__item:hover .funfact-two__item__icon {
	color: var(--firdip-white, #fff);
}
.funfact-two__list__item:hover .funfact-two__item__icon::after {
	width: 100%;
	height: 100%;
	top: 0%;
	right: 0%;
}
.funfact-two__list__item + .funfact-two__list__item {
	border-right: 1px solid rgba(var(--firdip-white-rgb, 255, 255, 255), 0.43);
}
@media (max-width: 991px) {
	.funfact-two__list__item + .funfact-two__list__item {
		border-right: 0px solid rgba(var(--firdip-white-rgb, 255, 255, 255), 0.43);
	}
}
.funfact-two__item {
	display: flex;
	align-items: center;
	gap: 40px;
}
.funfact-two__item__icon {
	width: 80px;
	height: 80px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: var(--firdip-white, #fff);
	font-size: 55px;
	color: var(--firdip-text, #7D8081);
	position: relative;
	z-index: 1;
}
.funfact-two__item__icon::after {
	content: "";
	width: 0%;
	height: 0%;
	position: absolute;
	top: 50%;
	right: 50%;
	background: var(--firdip-secondary, #232728);
	z-index: -1;
	transition: all 0.4s ease-in-out;
}
.funfact-two__item__title {
	display: flex;
	gap: 0;
	font-style: normal;
	font-weight: 700;
	font-size: 40px;
	line-height: 47px;
	margin-bottom: 8px;
	padding-bottom: 0;
	color: var(--firdip-white, #fff);
}
.funfact-two__item__title span {
	color: inherit;
}
.funfact-two__item__text {
	font-style: normal;
	font-weight: 600;
	font-size: 16px;
	line-height: 138%;
	margin-bottom: 0;
	padding-bottom: 0;
	color: var(--firdip-white, #fff);
	text-transform: uppercase;
}
@media (max-width: 575px) {
	.funfact-two__item__text {
		text-align: start;
	}
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
/**testimonials One**/
.testimonials-one {
	padding: 120px 0px 0;
}
@media (max-width: 991px) {
	.testimonials-one {
		padding: 100px 0px 0;
	}
}
@media (max-width: 767px) {
	.testimonials-one {
		padding: 80px 0px 0;
	}
}
.testimonials-one--home {
	padding: 120px 0px;
}
@media (max-width: 991px) {
	.testimonials-one--home {
		padding: 100px 0px;
	}
}
@media (max-width: 767px) {
	.testimonials-one--home {
		padding: 80px 0px;
	}
}
.testimonials-one__item {
	margin-top: 30px;
	background: var(--firdip-text-gray, #EFE6E1);
	position: relative;
	z-index: 1;
	margin-bottom: 35px;
	position: relative;
	transition: all 0.4s ease;
}
.testimonials-one__item::after {
	width: 41px;
	height: 35px;
	background: var(--firdip-text-gray, #EFE6E1);
	position: absolute;
	bottom: -34px;
	right: 50px;
	content: "";
	clip-path: polygon(50% 100%, 0 0, 100% 0);
}
.testimonials-one__item:hover {
	box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.testimonials-one__top {
	display: flex;
	margin-right: 50px;
	align-items: center;
	position: relative;
	gap: 26px;
	border-bottom: 1px solid var(--firdip-white, #fff);
}
@media (max-width: 575px) {
	.testimonials-one__top {
		margin-right: 0;
	}
}
.testimonials-one__top::after {
	content: "";
	width: 50px;
	height: 100%;
	position: absolute;
	right: -50px;
	bottom: 0;
	background: var(--firdip-white, #fff);
}
@media (max-width: 575px) {
	.testimonials-one__top::after {
		display: none;
	}
}
.testimonials-one__top__thumb {
	position: relative;
	margin-top: -30px;
}
.testimonials-one__top__title {
	font-style: normal;
	font-weight: 700;
	font-size: 24px;
	line-height: 108%;
	margin-bottom: 0;
	padding-bottom: 0;
	text-transform: uppercase;
	color: var(--firdip-secondary, #232728);
}
@media (max-width: 575px) {
	.testimonials-one__top__title {
		font-size: 20px;
	}
}
.testimonials-one__top__dec {
	margin-bottom: 0;
	padding-bottom: 0;
	text-transform: uppercase;
	color: var(--firdip-text, #7D8081);
	font-style: normal;
	font-weight: 500;
	font-size: 14px;
	line-height: 179%;
}
.testimonials-one__content {
	padding: 30px 50px 56px;
}
@media (max-width: 575px) {
	.testimonials-one__content {
		padding: 30px 30px 50px;
	}
}
.testimonials-one__text {
	font-weight: 500;
	font-size: 16px;
	line-height: 188%;
	margin-bottom: 30px;
	padding-bottom: 0;
	color: var(--firdip-text, #7D8081);
}
.testimonials-one__star {
	display: flex;
	font-size: 28px;
	color: var(--firdip-base, #CA4445);
	letter-spacing: 4px;
}
.testimonials-one__quite {
	margin-top: -80px;
	position: relative;
	z-index: 1;
	font-size: 28px;
	color: var(--firdip-base, #CA4445);
	padding: 28px 0;
	max-width: 170px;
	width: 100%;
	margin-right: auto;
	margin-left: 0;
	display: flex;
	justify-content: center;
	align-items: center;
}
@media (max-width: 575px) {
	.testimonials-one__quite {
		max-width: 90px;
	}
}
.testimonials-one__quite__bg {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	background-repeat: no-repeat;
	background-size: cover;
	z-index: -1;
}
.testimonials-one__quite__bg::before {
	content: "";
	position: absolute;
	right: 0;
	top: 0;
	width: 100%;
	z-index: 1;
	height: 100%;
	background: rgba(var(--firdip-secondary-rgb, 35, 39, 40), 0.6);
}

/**testimonials Two**/
.testimonials-two {
	padding: 120px 0px;
	position: relative;
	z-index: 1;
	background: var(--firdip-white, #fff);
}
.testimonials-two__item {
	padding: 50px 50px 0px;
	position: relative;
	z-index: 1;
	background: var(--firdip-text-gray, #EFE6E1);
}
@media (max-width: 575px) {
	.testimonials-two__item {
		padding: 50px 20px 0px;
	}
}
.testimonials-two__item::after {
	content: "";
	width: 65%;
	height: 45px;
	background: var(--firdip-white, #fff);
	padding: auto;
	position: absolute;
	top: -0.5px;
	left: 0;
	clip-path: polygon(0 0, 100% 0, 100% 100%, 6% 100%);
	z-index: -1;
}
.testimonials-two__item__thumb {
	position: relative;
	z-index: 1;
	margin-left: -10px;
}
@media (max-width: 991px) {
	.testimonials-two__item__thumb {
		display: inline-block;
	}
}
.testimonials-two__item__thumb__item img {
	object-fit: cover;
	width: 100% !important;
}
@media (max-width: 991px) {
	.testimonials-two__item__thumb__item img {
		object-fit: cover;
		width: auto !important;
	}
}
@media (max-width: 575px) {
	.testimonials-two__item__thumb__item img {
		width: 100% !important;
	}
}
.testimonials-two__item__content {
	position: absolute;
	width: 100%;
	bottom: 0;
	background: var(--firdip-secondary, #232728);
	text-align: center;
	padding: 25px 20px 25px;
}
.testimonials-two__item__content__title {
	font-style: normal;
	font-weight: 700;
	font-size: 24px;
	line-height: 108%;
	color: var(--firdip-white, #fff);
	text-transform: uppercase;
	margin-bottom: 5px;
	padding-bottom: 0;
}
.testimonials-two__item__content__dec {
	font-style: normal;
	font-weight: 500;
	font-size: 14px;
	line-height: 179%;
	margin-bottom: -5px;
	padding-bottom: 0;
	display: block;
	color: var(--firdip-text, #7D8081);
	text-transform: uppercase;
}
.testimonials-two__item__box {
	position: absolute;
	height: 240px;
	width: 57px;
	clip-path: polygon(100% 0, 0 50%, 100% 100%);
	background: var(--firdip-white, #fff);
	bottom: -45px;
	left: 0;
	z-index: -1;
}
.testimonials-two__item::before {
	content: "";
	position: absolute;
	height: 155px;
	width: 37px;
	clip-path: polygon(100% 0, 0 50%, 100% 100%);
	background: var(--firdip-base, #CA4445);
	bottom: 0px;
	left: 0;
	z-index: 1;
}
.testimonials-two__content {
	padding-right: 50px;
	padding-top: 80px;
}
@media (max-width: 1199px) {
	.testimonials-two__content {
		padding-right: 30px;
		padding-top: 50px;
	}
}
@media (max-width: 991px) {
	.testimonials-two__content {
		padding-top: 20px;
		padding-right: 0;
		padding-bottom: 30px;
		position: relative;
		z-index: 1;
	}
}
.testimonials-two__content__star {
	font-size: 27px;
	color: var(--firdip-base, #CA4445);
	letter-spacing: 2px;
	margin-bottom: 2px;
}
.testimonials-two__content__text {
	font-style: normal;
	font-weight: 500;
	font-size: 16px;
	line-height: 188%;
	margin-bottom: 0;
	padding-bottom: 0;
	color: var(--firdip-text, #7D8081);
}
.testimonials-two__content__quite {
	font-size: 55px;
	color: var(--firdip-white, #fff);
	position: absolute;
	top: 120px;
	left: 55px;
	line-height: 1;
}
@media (max-width: 991px) {
	.testimonials-two__content__quite {
		top: 10px;
		left: 0px;
	}
}
.testimonials-two__carousel {
	position: relative;
}
.testimonials-two__carousel__inner {
	position: relative;
	z-index: 1;
}
.testimonials-two .carousel-thumb__two {
	position: absolute;
	top: -44%;
	right: 40%;
	width: 310px;
	transform: rotate(90deg);
}
@media (max-width: 1199px) {
	.testimonials-two .carousel-thumb__two {
		top: -55%;
	}
}
@media (max-width: 991px) {
	.testimonials-two .carousel-thumb__two {
		top: 10%;
		right: auto;
		left: -200px;
		transform: rotate(0deg);
	}
}
@media (max-width: 575px) {
	.testimonials-two .carousel-thumb__two {
		display: none;
	}
}
.testimonials-two .slick-current + .slick-active .testimonials-two__meta-thumb {
	border: 7px solid var(--firdip-base, #CA4445);
}
.testimonials-two .slick-button {
	border: none;
	outline: none;
	border-radius: 50%;
	opacity: 1;
	margin: 0;
	padding: 0;
	position: absolute;
	bottom: 95px;
	right: 45%;
	z-index: 1;
}
@media (max-width: 1199px) {
	.testimonials-two .slick-button {
		display: none !important;
	}
}
.testimonials-two .slick-button i {
	border: none;
	outline: none;
	width: 45px;
	height: 45px;
	background-color: var(--firdip-white, #fff);
	display: flex;
	justify-content: center;
	opacity: 1;
	align-items: center;
	color: var(--firdip-secondary, #232728);
	border-radius: 50%;
	font-size: 16px;
	transition: all 500ms ease;
}
.testimonials-two .slick-button i:hover {
	background-color: var(--firdip-base, #CA4445);
	color: var(--firdip-white, #fff);
}
.testimonials-two .slick-button--prev {
	right: 40%;
}
.testimonials-two__meta-thumb {
	width: 90px;
	height: 90px;
	border-radius: 50%;
	display: block;
	margin: 2px 0px;
	transform: rotate(-90deg);
	border: 7px solid transparent;
}
@media (max-width: 991px) {
	.testimonials-two__meta-thumb {
		transform: rotate(0deg);
	}
}
.testimonials-two__meta-thumb img {
	object-fit: cover;
	border-radius: 50%;
	width: 100%;
}
@media (max-width: 991px) {
	.testimonials-two__meta-thumb {
		width: 80px;
		height: 80px;
	}
}
.testimonials-two__shape {
	position: absolute;
	top: 5%;
	right: 0;
}

/**testimonials Three**/
.testimonials-three {
	padding: 120px 0px;
}
@media (max-width: 991px) {
	.testimonials-three {
		padding: 100px 0px;
	}
}
@media (max-width: 767px) {
	.testimonials-three {
		padding: 80px 0px;
	}
}
.testimonials-three__thumb {
	background: var(--firdip-base, #CA4445);
	padding: 0px 80px;
	position: relative;
}
.testimonials-three__thumb__item {
	position: absolute;
	z-index: 1;
	cursor: pointer;
	border: 7px solid transparent;
	transition: all 0.4s ease-in-out;
	border-radius: 50%;
}
.testimonials-three__thumb__item.owl-dot.active {
	border: 7px solid var(--firdip-white, #fff);
	border-radius: 50%;
}
.testimonials-three__thumb__item:nth-child(1) {
	top: 131px;
	right: 90px;
}
@media (max-width: 1199px) and (min-width: 991px) {
	.testimonials-three__thumb__item:nth-child(1) {
		right: 20px;
	}
}
.testimonials-three__thumb__item:nth-child(2) {
	top: 102px;
	left: 90px;
}
@media (max-width: 1199px) and (min-width: 991px) {
	.testimonials-three__thumb__item:nth-child(2) {
		left: 20px;
	}
}
.testimonials-three__thumb__item:nth-child(3) {
	top: 190px;
	left: 92px;
}
@media (max-width: 1199px) and (min-width: 991px) {
	.testimonials-three__thumb__item:nth-child(3) {
		left: 20px;
	}
}
.testimonials-three__thumb__item:nth-child(4) {
	top: 245px;
	right: 70px;
}
@media (max-width: 1199px) and (min-width: 991px) {
	.testimonials-three__thumb__item:nth-child(4) {
		right: 20px;
	}
}
.testimonials-three__thumb__item:nth-child(5) {
	top: 306px;
	left: 102px;
}
@media (max-width: 1199px) and (min-width: 991px) {
	.testimonials-three__thumb__item:nth-child(5) {
		left: 40px;
	}
}
.testimonials-three__thumb__item img {
	border-radius: 50%;
}
.testimonials-three__inner {
	background: var(--firdip-base, #CA4445);
	box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.07);
}
.testimonials-three__item {
	position: relative;
	z-index: 1;
	background: var(--firdip-white, #fff);
	box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.07);
	position: relative;
	padding: 50px 80px 50px 50px;
}
@media (max-width: 1199px) and (min-width: 991px) {
	.testimonials-three__item {
		padding: 50px;
	}
}
@media (max-width: 767px) {
	.testimonials-three__item {
		padding: 50px 30px;
	}
}
.testimonials-three__item__star {
	font-size: 22px;
	color: var(--firdip-base, #CA4445);
	letter-spacing: 2px;
	margin-bottom: 25px;
}
.testimonials-three__item__text {
	font-style: normal;
	font-weight: 500;
	font-size: 16px;
	line-height: 188%;
	margin-bottom: 0;
	padding-bottom: 0;
	color: var(--firdip-text, #7D8081);
	margin-bottom: 100px;
}
.testimonials-three__item__author__name {
	font-style: normal;
	font-weight: 700;
	font-size: 24px;
	line-height: 108%;
	margin-bottom: 0;
	padding-bottom: 0;
}
.testimonials-three__item__author__deg {
	display: block;
	font-style: normal;
	font-weight: 500;
	font-size: 14px;
	line-height: 179%;
	margin-bottom: -7px;
	padding-bottom: 0;
}
.testimonials-three__item__quite {
	position: absolute;
	top: 50px;
	left: 50px;
	font-size: 35px;
	color: var(--firdip-text-gray, #EFE6E1);
	line-height: 1;
	z-index: -1;
}
.testimonials-three__item::after {
	content: "";
	width: 1px;
	height: 100%;
	background: #EEEEEE;
	position: absolute;
	right: 30px;
	top: 0;
}
@media (max-width: 767px) {
	.testimonials-three__item::after {
		display: none;
	}
}
.testimonials-three .firdip-owl__carousel--basic-nav.owl-carousel .owl-nav {
	position: relative;
	margin-top: -143px !important;
	padding-top: 20px;
	margin-right: auto;
	margin-left: 0;
	display: flex;
	justify-content: end;
	align-items: center;
	padding-left: 50px;
	width: 314px;
	height: 143px;
	clip-path: polygon(30% 0%, 100% 0, 100% 100%, 0% 100%);
	z-index: 1;
	background: var(--firdip-text-gray, #EFE6E1);
}
@media (max-width: 575px) {
	.testimonials-three .firdip-owl__carousel--basic-nav.owl-carousel .owl-nav {
		display: none;
	}
}
.testimonials-three .firdip-owl__carousel--basic-nav.owl-carousel .owl-nav::after {
	background: var(--firdip-secondary, #232728);
	content: "";
	left: 0;
	bottom: 0;
	top: 20px;
	right: 30px;
	clip-path: polygon(30% 0%, 100% 0, 100% 100%, 0% 100%);
	position: absolute;
	z-index: -1;
}
.testimonials-three .firdip-owl__carousel--basic-nav.owl-carousel .owl-dots {
	margin: 0;
	position: absolute;
	bottom: 135px;
	right: 80px;
	gap: 20px;
	z-index: 1;
}
.testimonials-three .firdip-owl__carousel--basic-nav.owl-carousel .owl-dots::after {
	content: "";
	right: -50px;
	left: -70px;
	height: 1px;
	background: var(--firdip-text-gray, #EFE6E1);
	position: absolute;
	bottom: 50%;
	z-index: -1;
}
.testimonials-three .testimonials-three__carousel .owl-dots .owl-dot span {
	background-color: transparent;
	border: 1px solid #D9D9D9;
	box-shadow: none;
	width: 13px;
	height: 13px;
	margin: 0;
	position: relative;
}
.testimonials-three .testimonials-three__carousel .owl-dots .owl-dot span::after {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	background: rgba(202, 68, 69, 0.34);
	transform: scale(2.3);
	border-radius: 50%;
	visibility: hidden;
	opacity: 0;
	z-index: 1;
}
.testimonials-three .testimonials-three__carousel .owl-dots .active span {
	background-color: var(--firdip-base, #CA4445);
}
.testimonials-three .testimonials-three__carousel .owl-dots .active span::after {
	visibility: visible;
	opacity: 1;
}
.testimonials-three .firdip-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot:hover span,
.testimonials-three .firdip-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot.active span {
	background-color: var(--firdip-base, #CA4445);
	border: 0px solid transparent;
}
.testimonials-three .firdip-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot:hover span::after,
.testimonials-three .firdip-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot.active span::after {
	visibility: visible;
	opacity: 1;
}

/*--------------------------------------------------------------
# CTA
--------------------------------------------------------------*/
/** Cta one**/
.cta-one {
	position: relative;
	z-index: 1;
	padding-top: 120px;
}
@media (max-width: 991px) {
	.cta-one {
		padding-top: 100px;
	}
}
@media (max-width: 767px) {
	.cta-one {
		padding-top: 80px;
	}
}
.cta-one__bg {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	background-repeat: no-repeat;
	background-size: cover;
	z-index: -1;
	mix-blend-mode: normal;
}
.cta-one__inner {
	background: rgba(var(--firdip-base-rgb, 202, 68, 69), 0.95);
	padding: 115px 100px 120px 85px;
	position: relative;
	z-index: 1;
}
.cta-one__inner::after {
	content: "";
	width: 146px;
	height: 119px;
	background: var(--firdip-white, #fff);
	position: absolute;
	bottom: 0;
	right: 0;
	clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}
@media (max-width: 991px) {
	.cta-one__inner {
		padding: 80px 60px 80px 60px;
	}
}
@media (max-width: 767px) {
	.cta-one__inner {
		padding: 60px 40px 60px 40px;
	}
}
.cta-one__content__title {
	margin-top: -9px;
	font-style: normal;
	font-weight: 800;
	font-size: 40px;
	line-height: 125%;
	margin-bottom: 10px;
	padding-bottom: 0;
	color: var(--firdip-white, #fff);
	text-transform: uppercase;
}
@media (max-width: 767px) {
	.cta-one__content__title {
		font-size: 30px;
	}
}
.cta-one__content__text {
	font-style: normal;
	font-weight: 500;
	font-size: 16px;
	line-height: 188%;
	margin-bottom: 30px;
	padding-bottom: 0;
	color: var(--firdip-white, #fff);
}
.cta-one__content__btn::after {
	background: var(--firdip-white, #fff);
}
.cta-one__content__btn:hover {
	color: var(--firdip-secondary, #232728);
}
.cta-one__video {
	display: flex;
	justify-content: center;
	align-items: center;
	background: rgba(var(--firdip-white-rgb, 255, 255, 255), 0.3);
	padding: 75px 0px;
	position: relative;
}
.cta-one__video::after {
	content: "";
	width: 95px;
	height: 77px;
	background: var(--firdip-base, #CA4445);
	position: absolute;
	top: 0;
	right: 0;
	clip-path: polygon(100% 0, 0% 100%, 0 0);
}
.cta-one__video__icon {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	background: var(--firdip-white, #fff);
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 22px;
	color: var(--firdip-base, #CA4445);
	position: relative;
	z-index: 1;
}
.cta-one__video__icon i {
	transition: all 0.4s ease-in-out;
}
.cta-one__video__icon::after {
	content: "";
	animation: ping 1.5s ease-in-out infinite;
	position: absolute;
	height: 110%;
	width: 110%;
	background: var(--firdip-white, #fff);
	opacity: 0.2;
	border-radius: 50%;
	z-index: -1;
}
.cta-one__video__icon:hover {
	background: var(--firdip-secondary, #232728);
	color: var(--firdip-base, #CA4445);
}
.cta-one__video__icon:hover i {
	transform: scale(1.2);
}

/** Cta Two**/
.cta-two {
	position: relative;
	z-index: 1;
	padding: 102px 0px;
	overflow: hidden;
}
@media (max-width: 991px) {
	.cta-two {
		padding: 100px 0px;
	}
}
@media (max-width: 767px) {
	.cta-two {
		padding: 80px 0px;
	}
}
.cta-two__bg {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	background-repeat: no-repeat;
	background-size: cover;
	z-index: -1;
	filter: grayscale(100%);
}
.cta-two__bg::after {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	background: rgba(var(--firdip-secondary-rgb, 35, 39, 40), 0.9);
	mix-blend-mode: multiply;
}
.cta-two__content .sec-title {
	padding-bottom: 37px;
}
.cta-two__content .sec-title__tagline, .cta-two__content .sec-title__title {
	text-transform: none;
	color: var(--firdip-white, #fff);
}
.cta-two__content__btn::after {
	background: var(--firdip-white, #fff);
}
.cta-two__content__btn:hover {
	color: var(--firdip-secondary, #232728);
}
.cta-two__thumb__item {
	position: absolute;
	top: 0;
	right: 0;
}
.cta-two__thumb__item img {
	clip-path: polygon(0 0, 60% 0, 100% 100%, 0% 100%);
}
.cta-two__thumb__item__shape {
	position: absolute;
	top: -1px;
	left: -15%;
}
@media (max-width: 767px) {
	.cta-two__thumb__item__shape {
		display: none;
	}
}
@media (max-width: 991px) {
	.cta-two__thumb__item {
		position: relative;
	}
}
@media (max-width: 767px) {
	.cta-two__thumb__item img {
		object-fit: cover;
		width: 100%;
		clip-path: none;
	}
}
.cta-two__right {
	position: relative;
	z-index: 1;
}
.cta-two__shape {
	position: absolute;
	top: 0;
	left: 0;
}
.cta-two__image {
	position: absolute;
	left: 0;
	top: 5%;
}
.cta-two__image a {
	display: block;
}
@media (max-width: 575px) {
	.cta-two__image {
		margin-top: 30px;
		position: relative;
	}
}

/** Cta Three**/
.cta-three {
	background: var(--firdip-secondary, #232728);
	padding: 80px 0px 95px;
	position: relative;
	z-index: 1;
	overflow: hidden;
}
.cta-three__title {
	margin-top: -7px;
	font-style: normal;
	font-weight: 800;
	font-size: 40px;
	line-height: 150%;
	margin-bottom: 20px;
	padding-bottom: 25px;
	color: var(--firdip-white, #fff);
	text-transform: uppercase;
	border-bottom: 1px solid rgba(var(--firdip-white-rgb, 255, 255, 255), 0.1);
}
@media (max-width: 767px) {
	.cta-three__title {
		font-size: 35px;
	}
}
@media (max-width: 575px) {
	.cta-three__title {
		font-size: 30px;
	}
}
.cta-three__call {
	display: flex;
	align-items: center;
	gap: 30px;
}
.cta-three__call__icon {
	width: 73px;
	height: 73px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: var(--firdip-base, #CA4445);
	background: var(--firdip-white, #fff);
	font-size: 29px;
	position: relative;
	z-index: 1;
	transition: all 0.4s ease-in-out;
}
.cta-three__call__icon::after {
	content: "";
	width: 0%;
	height: 0%;
	position: absolute;
	top: 50%;
	right: 50%;
	background: var(--firdip-base, #CA4445);
	z-index: -1;
	transition: all 0.4s ease-in-out;
}
.cta-three__call__dec {
	font-style: normal;
	font-weight: 500;
	font-size: 20px;
	line-height: normal;
	margin-bottom: 0;
	padding-bottom: 0;
	text-transform: uppercase;
	color: var(--firdip-base, #CA4445);
}
.cta-three__call__number {
	font-style: normal;
	font-weight: 700;
	font-size: 40px;
	line-height: normal;
	color: var(--firdip-white, #fff);
	margin-bottom: 0;
	padding-bottom: 0;
	transition: all 0.4s ease-in-out;
}
.cta-three__call__number:hover {
	color: var(--firdip-base, #CA4445);
}
@media (max-width: 575px) {
	.cta-three__call__number {
		font-size: 30px;
	}
}
.cta-three__call:hover .cta-three__call__icon {
	color: var(--firdip-white, #fff);
}
.cta-three__call:hover .cta-three__call__icon::after {
	width: 100%;
	height: 100%;
	top: 0%;
	right: 0%;
}
.cta-three__btn {
	margin-top: 20px;
	padding-top: 40px;
	border-top: 1px solid rgba(var(--firdip-white-rgb, 255, 255, 255), 0.1);
}
.cta-three__btn a::after {
	background: var(--firdip-white, #fff);
}
.cta-three__btn a:hover {
	color: var(--firdip-secondary, #232728);
}
.cta-three__thumb__item {
	top: 0;
	position: absolute;
	width: 40%;
	overflow: hidden;
	left: 0;
	clip-path: polygon(32% 44%, 56% 0, 100% 0, 100% 54%, 85% 78%, 71% 100%, 0 100%, 0 100%);
}
@media (max-width: 1366px) {
	.cta-three__thumb__item {
		width: 50%;
	}
}
@media (max-width: 991px) {
	.cta-three__thumb__item {
		display: none;
	}
}
.cta-three__thumb::after {
	content: "";
	width: 45%;
	left: 0;
	top: 0;
	background: var(--firdip-base, #CA4445);
	position: absolute;
	height: 100%;
	z-index: -1;
	clip-path: polygon(0 100%, 51% 0, 100% 0, 100% 84%, 90% 100%, 0 100%, 0 100%);
}
@media (max-width: 1366px) {
	.cta-three__thumb::after {
		width: 55%;
	}
}
@media (max-width: 991px) {
	.cta-three__thumb::after {
		display: none;
	}
}
.cta-three__thumb__shape {
	position: absolute;
	bottom: 60px;
	left: 0px;
	animation: topBottom 3s ease-in-out infinite;
}
@media (max-width: 991px) {
	.cta-three__thumb__shape {
		display: none;
	}
}
.cta-three__thumb__shape-two {
	position: absolute;
	bottom: 60px;
	left: 24%;
}
@media (max-width: 1366px) {
	.cta-three__thumb__shape-two {
		display: none;
	}
}
.cta-three__leftshape {
	position: absolute;
	top: 0;
	right: 0;
	z-index: -1;
}

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
.gallery-one {
	padding-top: 120px;
	padding-bottom: 120px;
}
.gallery-one .container-fluid {
	width: 100%;
	max-width: 1572px;
}
.gallery-one--page {
	padding-top: 120px;
}
.gallery-one .row {
	--bs-gutter-x: 30px;
	--bs-gutter-y: 30px;
}
.gallery-one__carousel .owl-nav {
	display: none !important;
}
.gallery-one__filter__list {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 40px;
	flex-wrap: wrap;
	gap: 10px;
}
.gallery-one__filter__list li {
	cursor: pointer;
}
.gallery-one__filter__list li span {
	display: block;
	font-size: 14px;
	transition: all 500ms ease;
	font-weight: 600;
	padding: 12px 25px;
	line-height: normal;
}
.gallery-one__filter__list li.active .firdip-btn, .gallery-one__filter__list li:hover .firdip-btn {
	background-color: var(--firdip-base, #CA4445);
	color: var(--firdip-white, #fff);
}
.gallery-one__card {
	position: relative;
	overflow: hidden;
	background-color: var(--firdip-black, #171818);
}
.gallery-one__card img {
	transform: scale(1);
	max-width: 100%;
	transition: transform 500ms ease, opacity 500ms ease;
	opacity: 1;
}
.gallery-one__card__hover {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	background-color: rgba(var(--firdip-base-rgb, 202, 68, 69), 0.9);
	display: flex;
	justify-content: center;
	align-items: center;
	transform: scale(1, 0);
	transition: transform 500ms ease;
	transform-origin: bottom center;
}
.gallery-one__card__hover .img-popup {
	position: relative;
}
.gallery-one__card:hover img {
	transform: scale(1.05);
	opacity: 0.9;
	mix-blend-mode: screen;
}
.gallery-one__card:hover .gallery-one__card__hover {
	transform-origin: top center;
	transform: scale(1, 1);
}
.gallery-one__card__icon {
	width: 70px;
	height: 70px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: rgba(var(--firdip-white-rgb, 255, 255, 255), 0.2);
	transition: all 0.5s ease-in-out;
}
.gallery-one__card__icon__item {
	width: 30px;
	height: 30px;
	display: block;
	position: relative;
}
.gallery-one__card__icon__item::after, .gallery-one__card__icon__item::before {
	content: "";
	width: 3px;
	height: 100%;
	background-color: var(--firdip-white, #fff);
	position: absolute;
	top: 50%;
	right: 50%;
	transform: translate(50%, -50%);
}
.gallery-one__card__icon__item::after {
	transform: translate(50%, -50%) rotate(-90deg);
}
.gallery-one__card__icon:hover {
	background: var(--firdip-secondary, #232728);
}

/**galley-two**/
.galley-two {
	padding-bottom: 120px;
	position: relative;
	z-index: 1;
	background: var(--firdip-white, #fff);
}
@media (max-width: 991px) {
	.galley-two {
		padding-bottom: 100px;
	}
}
@media (max-width: 767px) {
	.galley-two {
		padding-bottom: 80px;
	}
}
.galley-two .container-fluid {
	max-width: 1500px;
}
.galley-two__list {
	display: flex;
	align-items: center;
	gap: 30px;
	flex-wrap: wrap;
	justify-content: center;
	margin-bottom: 0;
}
.galley-two__list__item {
	max-width: 270px;
	min-width: 270px;
	width: 100%;
}
@media (max-width: 575px) {
	.galley-two__list__item {
		max-width: 400px;
		min-width: 400px;
		width: 100%;
	}
}
@media (max-width: 420px) {
	.galley-two__list__item {
		max-width: 320px;
		min-width: 320px;
		width: 100%;
	}
}
.galley-two__list__item__image {
	position: relative;
	z-index: 1;
}
.galley-two__list__item__image img {
	object-fit: cover;
}
@media (max-width: 575px) {
	.galley-two__list__item__image img {
		object-fit: cover;
		width: 100%;
	}
}
.galley-two__list__item__image__hover {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	background-color: rgba(var(--firdip-base-rgb, 202, 68, 69), 0.9);
	display: flex;
	justify-content: center;
	align-items: center;
	transform: scale(1, 0);
	transition: transform 500ms ease;
	transform-origin: bottom center;
}
.galley-two__list__item__image__hover .img-popup {
	position: relative;
}
.galley-two__list__item__image__icon {
	width: 70px;
	height: 70px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: rgba(var(--firdip-white-rgb, 255, 255, 255), 0.2);
	transition: all 0.5s ease-in-out;
}
.galley-two__list__item__image__icon__item {
	width: 30px;
	height: 30px;
	display: block;
	position: relative;
}
.galley-two__list__item__image__icon__item::after, .galley-two__list__item__image__icon__item::before {
	content: "";
	width: 3px;
	height: 100%;
	background-color: var(--firdip-white, #fff);
	position: absolute;
	top: 50%;
	right: 50%;
	transform: translate(50%, -50%);
}
.galley-two__list__item__image__icon__item::after {
	transform: translate(50%, -50%) rotate(-90deg);
}
.galley-two__list__item__image__icon:hover {
	background: var(--firdip-secondary, #232728);
}
.galley-two__list__item__image:hover .galley-two__list__item__image__hover {
	transform-origin: top center;
	transform: scale(1, 1);
}

/**galley-three**/
.gallery-three {
	padding: 120px 0px;
}
@media (max-width: 991px) {
	.gallery-three {
		padding: 100px 0px;
	}
}
@media (max-width: 767px) {
	.gallery-three {
		padding: 80px 0px;
	}
}
.gallery-three .container-fluid {
	max-width: 1600px;
}
.gallery-three__list__item {
	width: 100%;
}
@media (max-width: 575px) {
	.gallery-three__list__item {
		max-width: 400px;
		min-width: 400px;
		width: 100%;
	}
}
.gallery-three__list__item__image {
	position: relative;
	z-index: 1;
}
.gallery-three__list__item__image img {
	object-fit: cover;
	width: 100%;
}
.gallery-three__list__item__image__hover {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	background-color: rgba(var(--firdip-base-rgb, 202, 68, 69), 0.9);
	display: flex;
	justify-content: center;
	align-items: center;
	transform: scale(1, 0);
	transition: transform 500ms ease;
	transform-origin: bottom center;
}
.gallery-three__list__item__image__hover .img-popup {
	position: relative;
}
.gallery-three__list__item__image__icon {
	width: 70px;
	height: 70px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: rgba(var(--firdip-white-rgb, 255, 255, 255), 0.2);
	transition: all 0.5s ease-in-out;
}
.gallery-three__list__item__image__icon__item {
	width: 30px;
	height: 30px;
	display: block;
	position: relative;
}
.gallery-three__list__item__image__icon__item::after, .gallery-three__list__item__image__icon__item::before {
	content: "";
	width: 3px;
	height: 100%;
	background-color: var(--firdip-white, #fff);
	position: absolute;
	top: 50%;
	right: 50%;
	transform: translate(50%, -50%);
}
.gallery-three__list__item__image__icon__item::after {
	transform: translate(50%, -50%) rotate(-90deg);
}
.gallery-three__list__item__image__icon:hover {
	background: var(--firdip-secondary, #232728);
}
.gallery-three__list__item__image:hover .gallery-three__list__item__image__hover {
	transform-origin: top center;
	transform: scale(1, 1);
}

/*--------------------------------------------------------------
# Sidebar
--------------------------------------------------------------*/
.sidebar__single {
	background-color: var(--firdip-white, #fff);
	padding: 30px 20px;
	box-shadow: 0px 0px 60px rgba(2, 2, 2, 0.07);
	max-width: 400px;
	width: 100%;
	margin-right: auto;
	margin-left: auto;
}
.sidebar__single--search {
	max-width: 400px;
	width: 100%;
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 30px;
}
@media (min-width: 1200px) {
	.sidebar__single {
		padding: 40px;
	}
}
.sidebar__single + .sidebar__single {
	margin-top: 30px;
}
.sidebar__title {
	margin: 0;
	margin-top: -5px;
	margin-bottom: 29px;
	padding-bottom: 24px;
	color: var(--firdip-secondary, #232728);
	border-bottom: 1px solid var(--firdip-base, #CA4445);
	text-transform: uppercase;
	font-style: normal;
	font-weight: 700;
	font-size: 24px;
	line-height: 108%;
}
.sidebar__search {
	position: relative;
	background-color: var(--firdip-text-gray, #EFE6E1);
	padding: 30px;
}
.sidebar__search input[type=search],
.sidebar__search input[type=text] {
	outline: none;
	width: 100%;
	height: 60px;
	background-color: var(--firdip-white, #fff);
	padding-right: 55px;
	padding-left: 20px;
	transition: all 500ms ease;
	border: none;
	color: var(--firdip-text, #7D8081);
	font-size: 16px;
	font-weight: 500;
	line-height: 162.5%;
}
.sidebar__search input[type=search]:focus,
.sidebar__search input[type=text]:focus {
	box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.1);
	border: none;
}
.sidebar__search input[type=search]::placeholder,
.sidebar__search input[type=text]::placeholder {
	color: var(--firdip-text, #7D8081);
	font-size: 16px;
	font-weight: 500;
	line-height: 162.5%;
}
.sidebar__search button[type=submit] {
	border: none;
	outline: none;
	background-color: transparent;
	position: absolute;
	top: 50%;
	right: 50px;
	transform: translateY(-50%);
	width: auto;
	font-size: 23px;
	color: var(--firdip-text, #7D8081);
	transition: all 0.4s ease-in-out;
}
.sidebar__search button[type=submit]:hover {
	color: var(--firdip-base, #CA4445);
}
.sidebar__posts {
	margin-bottom: 0;
}
.sidebar__posts__item {
	display: flex;
	align-items: center;
}
.sidebar__posts__item:not(:last-of-type) {
	border-bottom: 1px solid var(--firdip-text-gray, #EFE6E1);
	margin-bottom: 16px;
	padding-bottom: 17px;
}
.sidebar__posts__item:hover .sidebar__posts__image::after {
	width: 100%;
	left: auto;
	right: 0;
}
.sidebar__posts__item:hover .sidebar__posts__image img {
	transform: scale(1.3) rotate(15deg);
}
.sidebar__posts__image {
	margin-left: 20px;
	overflow: hidden;
	max-width: 70px;
	width: 100%;
	height: 70px;
	position: relative;
}
.sidebar__posts__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.4s ease-in-out;
}
.sidebar__posts__image::after {
	content: "";
	width: 0%;
	height: 100%;
	top: 0%;
	right: auto;
	left: 0;
	background-color: rgba(var(--firdip-secondary-rgb, 35, 39, 40), 0.5);
	position: absolute;
	transition: all 0.4s ease-in-out;
}
.sidebar__posts__title {
	margin-bottom: 0;
	color: var(--firdip-secondary, #232728);
	font-weight: 700;
	font-size: 16px;
	line-height: 1.1875;
	text-transform: uppercase;
}
.sidebar__posts__title a {
	text-shadow: 0 0 0 0.2 currentColor;
	color: inherit;
	background: linear-gradient(to left, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
	transition: all 500ms ease;
}
.sidebar__posts__title a:hover {
	background-size: 100% 1px;
}
.sidebar__posts__title a:hover {
	color: var(--firdip-base, #CA4445);
}
.sidebar__posts__meta {
	margin: 0;
	line-height: 1em;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	margin-bottom: 10px;
}
.sidebar__posts__meta a {
	line-height: normal;
	display: inline-flex;
	align-items: center;
	transition: all 500ms ease;
	color: var(--firdip-text, #7D8081);
	font-size: 16px;
	font-weight: 500;
	line-height: normal;
	text-transform: uppercase;
}
.sidebar__posts__meta a:hover {
	color: var(--firdip-base, #CA4445);
}
.sidebar__posts__meta a i {
	color: var(--firdip-base, #CA4445);
	margin-left: 10px;
}
.sidebar__categories {
	margin-bottom: -4px;
}
.sidebar__categories li:not(:last-of-type) {
	border-bottom: 1px solid var(--firdip-text-gray, #EFE6E1);
}
.sidebar__categories li:first-child a {
	padding-top: 0;
}
.sidebar__categories li:last-child a {
	padding-bottom: 0 !important;
}
.sidebar__categories li a {
	display: flex;
	align-items: center;
	padding: 12px 0px 12px 0;
	transition: all 500ms ease;
	color: var(--firdip-text, #7D8081);
	font-size: 16px;
	font-weight: 500;
	line-height: normal;
	text-transform: uppercase;
}
.sidebar__categories li a i {
	margin-left: 8px;
	color: var(--firdip-base, #CA4445);
}
.sidebar__categories li a:hover {
	padding-right: 20px;
	color: var(--firdip-base, #CA4445);
}
.sidebar__tags {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
}
.sidebar__tags a {
	background: var(--firdip-text-gray, #EFE6E1);
	transition: all 500ms ease;
	display: inline-flex;
	padding: 11px 15px;
	color: var(--firdip-text, #7D8081);
	line-height: normal;
	font-size: 14px;
	text-transform: uppercase;
	font-weight: 600;
}
.sidebar__tags a:hover {
	color: var(--firdip-white, #fff);
	background-color: var(--firdip-base, #CA4445);
}
.sidebar__comments {
	margin-bottom: -4px;
}
.sidebar__comments__item {
	display: flex;
	align-items: center;
}
.sidebar__comments__item:not(:last-of-type) {
	margin-bottom: 21px;
}
.sidebar__comments__icon {
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: var(--firdip-text-gray, #EFE6E1);
	font-size: 18px;
	color: var(--firdip-text, #7D8081);
	margin-left: 14px;
	border-radius: 50%;
	transition: all 500ms ease;
}
.sidebar__comments__item:hover .sidebar__comments__icon {
	background-color: var(--firdip-base, #CA4445);
	color: var(--firdip-white, #fff);
}
.sidebar__comments__title {
	color: var(--firdip-text, #7D8081);
	line-height: 185.714%;
	margin-bottom: 0px;
	width: 100%;
	font-size: 14px;
	font-weight: 500;
}
.sidebar__comments__title a {
	color: inherit;
	transition: all 500ms ease;
}
.sidebar__comments__title a:hover {
	color: var(--firdip-secondary, #232728);
}

@media (max-width: 991px) {
	.service-sidebar__single {
		max-width: 400px;
		margin-right: auto;
		margin-left: auto;
	}
}
.service-sidebar__single + .service-sidebar__single {
	margin-top: 30px;
}
.service-sidebar__title {
	position: relative;
	margin: 0;
	padding: 23px;
	background-color: var(--firdip-base, #CA4445);
	color: var(--firdip-white, #fff);
	text-transform: uppercase;
	font-style: normal;
	font-weight: 700;
	font-size: 24px;
	line-height: 108%;
	margin-right: 30px;
	margin-left: 30px;
	margin-bottom: -44px;
	text-align: center;
}
.service-sidebar__title::after {
	content: "";
	width: 45px;
	height: 100%;
	position: absolute;
	right: 0;
	bottom: -0.5px;
	clip-path: polygon(0 0, 0% 100%, 100% 100%);
	background: var(--firdip-secondary, #232728);
}
@media (min-width: 576px) {
	.service-sidebar__title {
		font-size: 24px;
	}
}
.service-sidebar__nav {
	border-top: 0;
	margin-bottom: 0;
	padding: 75px 30px 40px;
	background: var(--firdip-secondary, #232728);
}
@media (max-width: 1200px) and (min-width: 992px) {
	.service-sidebar__nav {
		padding: 30px 20px;
	}
}
@media (max-width: 575px) {
	.service-sidebar__nav {
		padding: 30px 20px;
	}
}
.service-sidebar__nav li a {
	overflow: hidden;
	position: relative;
	z-index: 1;
	background: rgba(var(--firdip-white-rgb, 255, 255, 255), 0.05);
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: all 500ms ease;
	padding-right: 30px;
	margin-bottom: 10px;
	text-transform: uppercase;
	font-style: normal;
	font-weight: 600;
	font-size: 16px;
	line-height: 162%;
	color: var(--firdip-white, #fff);
}
@media (max-width: 1200px) and (min-width: 992px) {
	.service-sidebar__nav li a {
		font-size: 14px;
	}
}
@media (max-width: 575px) {
	.service-sidebar__nav li a {
		font-size: 14px;
	}
}
.service-sidebar__nav li a i {
	font-size: 17px;
	padding: 18.5px;
	background: var(--firdip-base, #CA4445);
	color: var(--firdip-white, #fff);
	transition: all 0.4s ease-in-out;
}
@media (max-width: 1200px) and (min-width: 992px) {
	.service-sidebar__nav li a i {
		font-size: 16px;
	}
}
.service-sidebar__nav li.current a, .service-sidebar__nav li:hover a {
	color: var(--firdip-white, #fff);
}
.service-sidebar__nav li.current a i, .service-sidebar__nav li:hover a i {
	background: var(--firdip-white, #fff);
	color: var(--firdip-base, #CA4445);
}
.service-sidebar__nav li:last-child a {
	margin-bottom: 0;
}
.service-sidebar__contact {
	overflow: hidden;
	position: relative;
	z-index: 1;
	padding: 30px 30px 193px 30px;
	background-color: var(--firdip-secondary, #232728);
}
.service-sidebar__contact-title {
	margin-top: -7px;
	max-width: 255px;
	margin-bottom: 50px;
	color: var(--firdip-white, #fff);
	font-size: 25px;
	font-weight: 700;
	line-height: 133.333%;
	text-transform: uppercase;
}
@media (min-width: 992px) {
	.service-sidebar__contact-title {
		font-size: 30px;
	}
}
.service-sidebar__contact-btn .firdip-btn {
	padding: 7.5px 28px;
	color: var(--firdip-white, #fff);
	background: var(--firdip-base, #CA4445);
	font-size: 16px;
	font-weight: 600;
	line-height: 162.5%;
}
.service-sidebar__contact-btn .firdip-btn::after {
	background: var(--firdip-white, #fff);
}
.service-sidebar__contact-btn .firdip-btn:hover {
	color: var(--firdip-secondary, #232728);
}
.service-sidebar__contact-image, .service-sidebar__contact-angle {
	bottom: 0;
	right: 0;
	position: absolute;
	object-fit: cover;
	z-index: -2;
}
.service-sidebar__contact-image {
	left: 0;
	right: auto;
	z-index: -1;
}
.service-sidebar__contact-image img {
	max-height: 320px;
	width: auto;
}

/*--------------------------------------------------------------
# Blog details
--------------------------------------------------------------*/
.blog-details__meta {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	padding-top: 30px;
	padding-bottom: 30px;
	border-top: 1px solid var(--firdip-text-gray, #EFE6E1);
	border-bottom: 1px solid var(--firdip-text-gray, #EFE6E1);
}
.blog-details__tags {
	display: flex;
	align-items: center;
	gap: 10px;
}
.blog-details__tags__title {
	margin: 0;
	margin-top: -4px;
	margin-bottom: -2px;
	font-size: 18px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	color: var(--firdip-secondary, #232728);
	text-transform: uppercase;
}
@media (min-width: 768px) {
	.blog-details__tags__title {
		font-size: 20px;
	}
}
.blog-details__tags .sidebar__tags button {
	padding: 11px 16px;
	font-size: 16px;
	font-weight: 600;
	line-height: normal;
}
.blog-details__tags .sidebar__tags button:hover {
	color: var(--firdip-white, #fff);
}
.blog-details__tags .sidebar__tags2 a {
	color: var(--firdip-text, #7D8081);
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
}
.blog-details__tags .sidebar__tags2 a:hover {
	color: var(--firdip-base, #CA4445);
}

.blog-card__two {
	margin-bottom: 40px;
	position: relative;
	z-index: 1;
}
.blog-card__two__image {
	position: relative;
	overflow: hidden;
	margin-bottom: 28px;
}
.blog-card__two__date {
	position: absolute;
	bottom: 30px;
	left: 30px;
	background: var(--firdip-secondary, #232728);
	display: flex;
	align-items: center;
}
.blog-card__two__date__day {
	background: var(--firdip-base, #CA4445);
	display: inline;
	padding: 9px 18px 12px;
	font-style: normal;
	font-weight: 700;
	font-size: 30px;
	line-height: 1.2;
	color: var(--firdip-white, #fff);
}
.blog-card__two__date__year {
	text-align: center;
	font-style: normal;
	font-weight: 600;
	font-size: 14px;
	line-height: 1.2142;
	color: var(--firdip-white, #fff);
	padding: 0px 16px 0px;
	text-transform: uppercase;
}
.blog-card__two__date__year span {
	display: block;
	color: inherit;
}
.blog-card__two__meta {
	display: flex;
	align-items: center;
	margin: 7px;
	transition: all 0.4s ease-in-out;
}
.blog-card__two__meta li:not(:first-child)::before {
	content: "|";
	margin-right: 15px;
	margin-left: 15px;
	font-weight: 500;
	color: #6D7076;
	opacity: 0.5;
}
.blog-card__two__meta li a {
	color: var(--firdip-text, #7D8081);
	font-size: 14px;
	font-weight: 600;
	line-height: 214.286%;
	text-transform: uppercase;
}
.blog-card__two__meta li a i {
	font-size: 15px;
	color: var(--firdip-base, #CA4445);
	margin-left: 5px;
}
.blog-card__two__title {
	color: var(--firdip-secondary, #232728);
	margin-bottom: 20px;
	text-transform: uppercase;
	font-style: normal;
	font-weight: 700;
	font-size: 30px;
	line-height: 0.8333333333;
}
.blog-card__two__title a {
	color: inherit;
	background: linear-gradient(to left, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
	transition: all 500ms ease;
}
.blog-card__two__title a:hover {
	background-size: 100% 1px;
}
.blog-card__two__title a:hover {
	color: var(--firdip-base, #CA4445);
}
.blog-card__two__text {
	font-style: normal;
	font-weight: 500;
	font-size: 16px;
	line-height: 188%;
}
.blog-card__two__text + .blog-card__two__text {
	margin-top: 20px;
}

/*--------------------------------------------------------------
# Comments
--------------------------------------------------------------*/
.comments-one {
	margin-top: 40px;
}
@media (min-width: 1200px) {
	.comments-one {
		margin-top: 50px;
	}
}
.comments-one__title {
	margin: 0;
	font-size: 25px;
	margin-top: -4px;
	margin-bottom: -4px;
	color: var(--firdip-secondary, #232728);
	font-weight: 700;
	line-height: normal;
	text-transform: uppercase;
}
@media (min-width: 992px) {
	.comments-one__title {
		font-size: 30px;
	}
}
.comments-one__list {
	margin: 0;
	margin-top: 35px;
}
.comments-one__card {
	border-bottom: 1px solid var(--firdip-text-gray, #EFE6E1);
	padding-bottom: 50px;
}
@media (min-width: 768px) {
	.comments-one__card {
		display: flex;
		align-items: flex-start;
	}
}
@media (max-width: 991px) {
	.comments-one__card__image {
		margin-bottom: 30px;
	}
}
.comments-one__card:not(:first-of-type) {
	margin-top: 30px;
}
@media (min-width: 1200px) {
	.comments-one__card:not(:first-of-type) {
		margin-top: 50px;
	}
}
@media (min-width: 768px) {
	.comments-one__card__image {
		margin-left: 30px;
	}
}
.comments-one__card__image img {
	border-radius: 50%;
}
.comments-one__card__title {
	margin: 0;
	color: var(--firdip-secondary, #232728);
	font-size: 24px;
	font-weight: 700;
	line-height: 108.333%;
	margin-bottom: 10px;
	text-transform: uppercase;
}
@media (max-width: 991px) {
	.comments-one__card__title {
		font-size: 18px;
	}
}
.comments-one__card__text {
	margin: 0;
	color: var(--firdip-text, #7D8081);
	font-size: 16px;
	font-weight: 500;
	line-height: 187.5%;
	max-width: 560px;
}
@media (min-width: 768px) {
	.comments-one__card__text {
		margin-bottom: 0;
	}
}
.comments-one__card__btn {
	margin-top: 22px;
}
.comments-one__card__reply {
	color: var(--firdip-text, #7D8081);
	font-size: 16px;
	font-weight: 500;
	line-height: normal;
	padding: 10px 21.5px;
	background: var(--firdip-text-gray, #EFE6E1);
}
.comments-one__card__reply::before {
	background: var(--firdip-text-gray, #EFE6E1);
}
.comments-one__card__reply:hover {
	color: var(--firdip-white, #fff);
}
.comments-one__card__content {
	position: relative;
}

.comments-form {
	margin-top: 40px;
}
@media (min-width: 1200px) {
	.comments-form {
		margin-top: 55px;
	}
}
.comments-form__title {
	margin: 0;
	font-size: 25px;
	margin-top: -4px;
	margin-bottom: -4px;
	color: var(--firdip-secondary, #232728);
	font-weight: 700;
	line-height: normal;
	text-transform: uppercase;
	text-shadow: 0 0 0.1 currentColor;
}
@media (min-width: 992px) {
	.comments-form__title {
		font-size: 30px;
	}
}
.comments-form__form {
	margin-top: 45px;
}
.comments-form input::placeholder, .comments-form textarea::placeholder {
	color: var(--firdip-text, #7D8081);
	font-size: 16px;
	font-weight: 600;
	line-height: normal;
}
.comments-form textarea {
	height: 211px;
}
.comments-form .firdip-btn:hover {
	color: var(--firdip-white, #fff);
}

/*--------------------------------------------------------------
# Shop
--------------------------------------------------------------*/
.product {
	position: relative;
}
.product__sidebar {
	position: relative;
}
.product__sidebar--title {
	position: relative;
	margin-top: -5px;
	color: var(--firdip-secondary, #232728);
	font-size: 20px;
	font-weight: 700;
	line-height: 130%;
	margin-bottom: 23px;
	text-transform: uppercase;
}
.product__sidebar__search {
	position: relative;
	margin-bottom: 30px;
}
.product__sidebar__search input[type=search],
.product__sidebar__search input[type=text] {
	outline: none;
	width: 100%;
	height: 60px;
	background-color: var(--firdip-base, #CA4445);
	color: var(--firdip-white, #fff);
	font-size: 16px;
	font-weight: 400;
	line-height: 162.5%;
	padding-right: 60px;
	padding-left: 30px;
	transition: all 500ms ease;
	border: none;
}
.product__sidebar__search input[type=search]:focus,
.product__sidebar__search input[type=text]:focus {
	box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.1);
	border: none;
}
.product__sidebar__search input[type=search]::placeholder,
.product__sidebar__search input[type=text]::placeholder {
	color: var(--firdip-white, #fff);
	font-size: 16px;
	font-weight: 400;
	line-height: 162.5%;
}
.product__sidebar__search button[type=submit] {
	border: none;
	outline: none;
	background-color: rgba(0, 0, 0, 0);
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translateY(-50%);
	width: auto;
	font-size: 24px;
	color: var(--firdip-white, #fff);
}
.product__price-ranger {
	background-color: var(--firdip-white, #fff);
	box-shadow: 0px 0px 60px 0px rgba(2, 2, 2, 0.07);
	padding: 30px;
	margin-bottom: 30px;
}
.product__price-ranger #slider-range {
	margin: 15px 0px 23px 0;
	background: var(--firdip-text-gray, #EFE6E1);
	border: none;
	height: 8px;
	border-radius: 20px;
	position: relative;
}
.product__price-ranger #slider-range .ui-slider-range {
	height: 100%;
	background: var(--firdip-base, #CA4445);
}
.product__price-ranger #slider-range .ui-slider-handle {
	position: absolute;
	top: -5px;
	background: var(--firdip-base, #CA4445);
	border: 0;
	height: 16px;
	width: 16px !important;
	border-radius: 50%;
	margin-right: -3px;
	outline: medium none;
	cursor: pointer;
	z-index: 2;
}
.product__price-ranger .ranger-min-max-block {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 18px 0px 0 0;
}
.product__price-ranger .ranger-min-max-block input[type=text] {
	position: relative;
	display: inline-block;
	color: var(--firdip-text, #7D8081);
	width: 45px;
	border: none;
	outline: none;
	padding: 0;
	text-align: center;
	background-color: transparent;
	font-size: 16px;
	font-weight: 500;
	line-height: normal;
}
.product__price-ranger .ranger-min-max-block span {
	position: relative;
	display: inline-block;
	color: var(--firdip-text, #7D8081);
	font-size: 16px;
	font-weight: 700;
	right: -2px;
}
.product__price-ranger .ranger-min-max-block button[type=submit] {
	position: relative;
	display: block;
	float: left;
	text-align: center;
	border: none;
	margin: 0;
	cursor: pointer;
	padding: 0px 16px;
	height: 40px;
	font-size: 14px;
	font-style: normal;
	font-weight: 600;
	line-height: 185.714%;
	text-transform: uppercase;
	z-index: 1;
	color: var(--firdip-text, #7D8081);
	background: var(--firdip-text-gray, #EFE6E1);
}
.product__price-ranger .ranger-min-max-block button[type=submit]::before {
	display: none;
}
.product__price-ranger .ranger-min-max-block button[type=submit]:hover {
	color: var(--firdip-white, #fff);
	background: var(--firdip-base, #CA4445);
}
.product__categories {
	margin-bottom: -4px;
	background-color: var(--firdip-white, #fff);
	padding: 30px 30px 23px 30px;
	box-shadow: 0px 0px 60px 0px rgba(2, 2, 2, 0.07);
}
.product__categories__title {
	margin: 0;
	margin-top: -5px;
	padding-bottom: 15px;
	margin-bottom: 14px;
	border-bottom: 1px solid var(--firdip-base, #CA4445);
	color: var(--firdip-secondary, #232728);
	text-transform: uppercase;
	font-style: normal;
	font-weight: 700;
	font-size: 20px;
	line-height: 130%;
}
.product__categories ul {
	margin-bottom: 0;
}
.product__categories ul li:not(:last-of-type) {
	border-bottom: 1px solid var(--firdip-text-gray, #EFE6E1);
}
.product__categories ul li:first-child a {
	padding-top: 0;
}
.product__categories ul li:last-child a {
	padding-bottom: 0 !important;
}
.product__categories ul li a {
	display: flex;
	align-items: center;
	padding: 10px 0px 14.44px 0;
	transition: all 500ms ease;
	color: var(--firdip-text, #7D8081);
	font-size: 16px;
	font-weight: 500;
	line-height: normal;
	text-transform: uppercase;
}
.product__categories ul li a i {
	margin-left: 8px;
	color: var(--firdip-base, #CA4445);
}
.product__categories ul li a:hover {
	padding-right: 20px;
	background-color: var(--firdip-white, #fff);
	color: var(--firdip-base, #CA4445);
}
.product__info-top {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 30px;
}
@media (max-width: 991px) {
	.product__info-top {
		margin-top: 50px;
	}
}
@media (max-width: 767px) {
	.product__info-top {
		display: block;
		margin-top: 40px;
	}
}
.product__showing-text {
	margin: 0;
	font-size: 20px;
	font-weight: 700;
	line-height: 130%;
	color: var(--firdip-secondary, #232728);
	text-transform: uppercase;
}
.product__showing-sort {
	margin: 0;
	font-size: 18px;
}
.product__showing-sort .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
	position: relative;
	display: block;
	width: 270px !important;
}
@media (max-width: 360px) {
	.product__showing-sort .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
		width: 270px !important;
	}
}
.product__showing-sort .bootstrap-select > .dropdown-toggle::after {
	display: none;
}
.product__showing-sort .bootstrap-select .dropdown-menu {
	border: none;
}
.product__showing-sort .bootstrap-select > .dropdown-toggle {
	position: relative;
	height: 60px;
	outline: none !important;
	border-radius: 0;
	border: 0;
	background-color: var(--firdip-border-color, #F4F2EE) !important;
	margin: 0;
	padding: 0;
	padding-right: 30px;
	padding-left: 30px;
	color: var(--firdip-text, #7D8081) !important;
	line-height: 60px;
	box-shadow: none !important;
	background-repeat: no-repeat;
	background-size: 14px 12px;
	background-position: left 25.75px center;
	font-size: 16px;
	font-weight: 600;
}
.product__showing-sort .bootstrap-select > .dropdown-toggle:before {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 30px;
	font-family: "Font Awesome 5 Free";
	content: "\f107";
	font-weight: 900;
	font-size: 16px;
	color: var(--firdip-base, #CA4445);
}
.product__showing-sort .bootstrap-select .dropdown-menu > li + li > a {
	border-top: 1px solid var(--firdip-border-color, #F4F2EE);
}
.product__showing-sort .bootstrap-select .dropdown-menu > li > a {
	font-size: 16px;
	font-weight: 600;
	padding: 10px 30px;
	color: var(--firdip-text, #7D8081);
	background-color: var(--firdip-gray, #DCCEC6);
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
}
.product__showing-sort .bootstrap-select .dropdown-menu > li:hover > a,
.product__showing-sort .bootstrap-select .dropdown-menu > li.selected > a {
	background: var(--firdip-secondary, #232728);
	color: var(--firdip-white, #fff);
	border-color: var(--firdip-secondary, #232728);
}
.product__item {
	position: relative;
	background-color: var(--firdip-white, #fff);
	border: 1px solid var(--firdip-text-gray, #EFE6E1);
	transition: all 500ms ease;
}
.product__item:hover {
	box-shadow: 0px 8px 30px 0px rgba(0, 0, 0, 0.08);
	border: 1px solid var(--firdip-base, #CA4445);
}
.product__item__img {
	background-color: var(--firdip-white, #fff);
	position: relative;
	overflow: hidden;
}
.product__item__img__item {
	max-width: 228px;
	width: 100%;
	margin-right: auto;
	margin-left: auto;
}
.product__item__img__item img {
	width: 100%;
	mix-blend-mode: multiply;
	transition: all 500ms ease;
	transform: scale(1);
}
.product__item__btn {
	position: absolute;
	left: 20px;
	top: 20px;
	z-index: 2;
}
.product__item__btn a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 30px;
	height: 30px;
	background-color: var(--firdip-text-gray, #EFE6E1);
	border-radius: 50%;
	color: var(--firdip-text, #7D8081);
	font-size: 14px;
	visibility: hidden;
	opacity: 0;
}
.product__item__btn a:hover {
	background-color: var(--firdip-base, #CA4445);
	color: var(--firdip-white, #fff);
}
.product__item__btn a:nth-child(1) {
	-webkit-transition: transform 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95), opacity ease 300ms, visibility ease 300ms, background ease 300ms, color ease 300ms, border ease 300ms;
	-moz-transition: transform 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95), opacity ease 300ms, visibility ease 300ms, background ease 300ms, color ease 300ms, border ease 300ms;
	-ms-transition: transform 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95), opacity ease 300ms, visibility ease 300ms, background ease 300ms, color ease 300ms, border ease 300ms;
	-o-transition: transform 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95), opacity ease 300ms, visibility ease 300ms, background ease 300ms, color ease 300ms, border ease 300ms;
	transition: transform 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95), opacity ease 300ms, visibility ease 300ms, background ease 300ms, color ease 300ms, border ease 300ms;
	transform: translate3d(-30px, 0, 0);
	-moz-transform: translate3d(-30px, 0, 0);
	-webkit-transform: translate3d(-30px, 0, 0);
	-ms-transform: translate3d(-30px, 0, 0);
	-o-transform: translate3d(-30px, 0, 0);
}
.product__item__btn a:nth-child(2) {
	-webkit-transition: transform 550ms cubic-bezier(0.445, 0.05, 0.55, 0.95), opacity ease 300ms, visibility ease 300ms, background ease 300ms, color ease 300ms, border ease 300ms;
	-moz-transition: transform 550ms cubic-bezier(0.445, 0.05, 0.55, 0.95), opacity ease 300ms, visibility ease 300ms, background ease 300ms, color ease 300ms, border ease 300ms;
	-ms-transition: transform 550ms cubic-bezier(0.445, 0.05, 0.55, 0.95), opacity ease 300ms, visibility ease 300ms, background ease 300ms, color ease 300ms, border ease 300ms;
	-o-transition: transform 550ms cubic-bezier(0.445, 0.05, 0.55, 0.95), opacity ease 300ms, visibility ease 300ms, background ease 300ms, color ease 300ms, border ease 300ms;
	transition: transform 550ms cubic-bezier(0.445, 0.05, 0.55, 0.95), opacity ease 300ms, visibility ease 300ms, background ease 300ms, color ease 300ms, border ease 300ms;
	transform: translate3d(-30px, 0, 0);
	-moz-transform: translate3d(-30px, 0, 0);
	-webkit-transform: translate3d(-30px, 0, 0);
	-ms-transform: translate3d(-30px, 0, 0);
	-o-transform: translate3d(-30px, 0, 0);
}
.product__item__btn a + a {
	margin-top: 12px;
}
.product__item:hover .product__item__img img {
	transform: scale(1.07);
}
.product__item:hover .product__item__btn a {
	opacity: 1;
	visibility: visible;
	transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-webkit-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	-o-transform: translate3d(0, 0, 0);
}
.product__item__content {
	position: relative;
	text-align: center;
	padding: 20px 20px 40px 20px;
}
.product__item__ratings {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 18px;
	color: var(--firdip-base, #CA4445);
	letter-spacing: 3px;
	margin-bottom: 25px;
}
.product__item__title {
	margin: 0;
	margin-bottom: 8px;
	color: var(--firdip-secondary, #232728);
	font-size: 20px;
	font-weight: 600;
	line-height: 130%;
	text-transform: uppercase;
}
.product__item__title a {
	color: inherit;
	background: linear-gradient(to left, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
	transition: all 500ms ease;
}
.product__item__title a:hover {
	background-size: 100% 1px;
}
.product__item__title a:hover {
	color: var(--firdip-base, #CA4445);
}
.product__item__price {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 16px;
	color: var(--firdip-text, #7D8081);
	line-height: normal;
	font-weight: 500;
	margin-bottom: 9px;
	text-transform: uppercase;
}
.product__item__price del {
	margin-right: 7px;
}
.product__item__link {
	color: var(--firdip-text, #7D8081);
	font-size: 14px;
	font-style: normal;
	font-weight: 600;
	line-height: 185.714%;
	padding: 7px 32px;
	text-transform: uppercase;
	background: var(--firdip-text-gray, #EFE6E1);
}
.product__item__link::before {
	background: var(--firdip-text-gray, #EFE6E1);
	z-index: -1;
}
.product__item__link::after {
	background: var(--firdip-base, #CA4445);
}
.product__item__link:hover {
	color: var(--firdip-white, #fff);
}

.product-one {
	padding: 120px 0;
}
@media (max-width: 767px) {
	.product-one {
		padding: 80px 0;
	}
}
.product-one--page {
	padding-top: 120px;
}
@media (max-width: 767px) {
	.product-one--page {
		padding-top: 60px;
	}
}
.product-one--home {
	position: relative;
	padding: 0 0 90px;
}
@media (max-width: 767px) {
	.product-one--home {
		padding-bottom: 50px;
	}
}
.product-one--home .sec-title {
	text-align: center;
}
.product-one--home .product__item {
	margin-bottom: 30px;
}
@media (min-width: 992px) {
	.product-one__carousel .owl-nav {
		display: none;
	}
}

/*--------------------------------------------------------------
# Shop details
--------------------------------------------------------------*/
.product-details {
	position: relative;
	padding: 120px 0;
}
@media (max-width: 991px) {
	.product-details {
		padding: 100px 0;
	}
}
@media (max-width: 767px) {
	.product-details {
		padding: 80px 0;
	}
}
.product-details__img {
	background-color: var(--firdip-white, #fff);
	position: relative;
	border: 1px solid var(--firdip-text-gray, #EFE6E1);
	max-width: 570px;
	height: auto;
}
.product-details__img img {
	object-fit: cover;
	width: 100%;
	height: auto;
}
.product-details__content {
	position: relative;
	margin-top: -10px;
}
@media (max-width: 991px) {
	.product-details__content {
		margin-top: 50px;
	}
}
.product-details__top {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin-bottom: 15px;
	margin-bottom: 0;
	padding-bottom: 15px;
}
.product-details__title {
	margin-top: 5px;
	font-size: 25px;
	line-height: normal;
	color: var(--firdip-secondary, #232728);
	font-weight: 700;
	text-transform: uppercase;
}
@media (min-width: 768px) {
	.product-details__title {
		font-size: 30px;
	}
}
.product-details__price {
	margin: 0 17px -5px 0;
	color: var(--firdip-base, #CA4445);
	font-size: 20px;
	font-weight: 600;
	line-height: 130%;
	text-transform: uppercase;
}
.product-details__review {
	position: relative;
	display: flex;
	align-items: center;
	letter-spacing: 2px;
	font-size: 17px;
	color: var(--firdip-base, #CA4445);
}
.product-details__review a {
	display: inline-block;
	margin-right: 20px;
	transition: all 500ms ease;
	color: var(--firdip-text, #7D8081);
	font-size: 16px;
	letter-spacing: 0;
	font-weight: 600;
	line-height: normal;
	text-transform: uppercase;
}
.product-details__review a:hover {
	color: var(--firdip-base, #CA4445);
}
.product-details__divider {
	width: 100%;
	height: 1px;
	background-color: var(--firdip-text-gray, #EFE6E1);
	margin: 32px 0 20px 0;
}
.product-details__excerpt {
	margin: 0;
	font-size: 15px;
	line-height: 30px;
}
.product-details__excerpt-text1 {
	margin: 0 0 17px;
	color: var(--firdip-text, #7D8081);
	font-size: 16px;
	font-weight: 600;
	line-height: 187.5%;
}
.product-details__excerpt-text2 {
	color: var(--firdip-text, #7D8081);
	margin-bottom: 37px;
	font-size: 16px;
	font-weight: 600;
	line-height: normal;
}
@media (max-width: 767px) {
	.product-details__excerpt-text2 br {
		display: block;
	}
}
.product-details__excerpt-text2 span {
	display: block;
	margin-top: 5px;
	font-weight: 600;
	color: var(--firdip-base, #CA4445);
	text-transform: capitalize;
}
.product-details__quantity {
	position: relative;
	display: flex;
	align-items: center;
}
.product-details__quantity-title {
	margin: 0;
	margin-left: 35px;
	color: var(--firdip-secondary, #232728);
	font-size: 18px;
	font-weight: 600;
	line-height: normal;
	text-transform: uppercase;
}
.product-details__quantity .quantity-box {
	position: relative;
	width: auto;
	height: 46px;
	display: flex;
}
.product-details__quantity .quantity-box input {
	width: 62px;
	height: 46px;
	border: 1px solid var(--firdip-text-gray, #EFE6E1);
	appearance: textfield;
	color: var(--firdip-secondary, #232728);
	padding-right: 25px;
	outline: none;
	font-size: 18px;
	font-weight: 500;
	background-color: transparent;
}
.product-details__quantity .quantity-box button {
	width: 45px;
	height: auto;
	color: var(--firdip-secondary, #232728);
	font-size: 13px;
	background-color: transparent;
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	outline: none;
	transition: all 500ms ease;
}
.product-details__quantity .quantity-box button:hover, .product-details__quantity .quantity-box button:focus, .product-details__quantity .quantity-box button:active {
	background: var(--firdip-base, #CA4445);
	color: var(--firdip-white, #fff);
}
.product-details__quantity .quantity-box button.sub {
	bottom: 1px;
	top: auto;
	border-top: 1px solid var(--firdip-text-gray, #EFE6E1);
	border-right: 1px solid var(--firdip-text-gray, #EFE6E1);
	border-bottom: 1px solid var(--firdip-text-gray, #EFE6E1);
}
.product-details__quantity .quantity-box button.add {
	border-top: 1px solid var(--firdip-text-gray, #EFE6E1);
	border-left: 1px solid var(--firdip-text-gray, #EFE6E1);
	border-bottom: 1px solid var(--firdip-text-gray, #EFE6E1);
}
.product-details__quantity .quantity-box button:hover {
	color: var(--firdip-white, #fff);
}
.product-details__buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin: 40px 0px 0;
}
.product-details__buttons a {
	color: var(--firdip-white, #fff);
}
@media (max-width: 768px) {
	.product-details__buttons a {
		padding: 16.55px 35px;
	}
}
.product-details__buttons a:hover {
	color: var(--firdip-white, #fff);
}
.product-details__buttons a:last-child:hover {
	color: var(--firdip-white, #fff);
}
.product-details__socials {
	position: relative;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 38px;
	margin-top: 40px;
}
.product-details__socials__title {
	display: flex;
	margin-bottom: 0;
	color: var(--firdip-secondary, #232728);
	font-size: 18px;
	font-weight: 700;
	line-height: normal;
	text-transform: uppercase;
}
@media (min-width: 768px) {
	.product-details__socials__title {
		flex: 0 0 auto;
	}
}
.product-details__socials__item {
	display: flex;
	gap: 20px;
}
.product-details__socials__item a {
	display: inline;
	width: 30px;
	height: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: var(--firdip-text-gray, #EFE6E1);
	font-size: 13px;
	color: var(--firdip-secondary, #232728);
	transition: all 500ms ease;
	border-radius: 50%;
}
.product-details__socials__item a:hover {
	background-color: var(--firdip-base, #CA4445);
	color: var(--firdip-white, #fff);
}
.product-details__description {
	position: relative;
	margin: 40px 0 0;
}
@media (min-width: 768px) {
	.product-details__description {
		margin: 50px 0 0;
	}
}
.product-details__description__title {
	margin-bottom: 22px;
	color: var(--firdip-secondary, #232728);
	font-size: 30px;
	font-weight: 700;
	line-height: normal;
	text-transform: uppercase;
}
.product-details__description__text {
	color: var(--firdip-text, #7D8081);
	line-height: 187.5%;
	font-size: 16px;
	font-weight: 600;
}
.product-details__description__lists {
	margin-bottom: 30px;
	margin-top: 25px;
	padding: 0;
}
.product-details__description__lists li {
	display: block;
	position: relative;
	font-size: 16px;
	font-weight: 600;
	line-height: normal;
	color: var(--firdip-secondary, #232728);
}
.product-details__description__lists li i {
	color: var(--firdip-base, #CA4445);
	margin-left: 10px;
}
.product-details__description__lists li + li {
	margin-top: 12.5px;
}
.product-details__comment {
	border-top: 1px solid var(--firdip-text-gray, #EFE6E1);
	margin: 30px 0 0;
	padding: 30px 0 0;
	position: relative;
}
@media (min-width: 768px) {
	.product-details__comment {
		margin: 44px 0 0;
		padding: 43px 0 0;
	}
}
.product-details__review-title {
	margin-bottom: 35px;
	color: var(--firdip-secondary, #232728);
	font-size: 30px;
	font-weight: 700;
	line-height: normal;
	text-transform: uppercase;
}
.product-details__comment-box {
	position: relative;
	padding: 11px 200px 60px 0;
	margin-bottom: 47px;
	min-height: 166px;
	border-bottom: 1px solid var(--firdip-text-gray, #EFE6E1);
}
@media (max-width: 767px) {
	.product-details__comment-box {
		padding-right: 0;
		margin-bottom: 30px;
		padding-bottom: 30px;
	}
}
.product-details__comment-box__thumb {
	width: 168px;
	height: 168px;
	position: absolute;
	right: 0;
	top: 0;
	border-radius: 50%;
	margin: 0;
	border: none;
}
@media (max-width: 767px) {
	.product-details__comment-box__thumb {
		position: relative;
		margin: 0 0 20px;
	}
}
.product-details__comment-box__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 50%;
}
.product-details__comment-box__meta {
	margin: 0 0 20px;
	color: var(--firdip-secondary, #232728);
	font-size: 24px;
	font-weight: 700;
	line-height: 108.333%;
	text-transform: uppercase;
}
.product-details__comment-box__date {
	margin-right: 20px;
	display: inline-block;
	text-transform: none;
	letter-spacing: 0;
	color: var(--firdip-base, #CA4445);
	font-size: 16px;
	font-weight: 600;
	line-height: 187.5%;
}
.product-details__comment-box__text {
	margin: 0;
	font-size: 16px;
	font-weight: 500;
	line-height: 187.5%;
	color: var(--firdip-text, #7D8081);
}
.product-details__comment-box__ratings {
	position: absolute;
	left: 0;
	top: 13px;
	display: flex;
	align-items: center;
	letter-spacing: 3px;
	font-size: 17px;
	color: var(--firdip-base, #CA4445);
}
@media (max-width: 767px) {
	.product-details__comment-box__ratings {
		position: relative;
		top: 0;
		margin: 0 0 22px;
	}
}
.product-details__form {
	position: relative;
}
.product-details__form .row {
	--bs-gutter-x: 20px;
}
.product-details__form-title {
	margin-bottom: 18px;
	color: var(--firdip-secondary, #232728);
	text-transform: uppercase;
	font-size: 30px;
	font-weight: 700;
	line-height: normal;
}
.product-details__form-ratings {
	display: flex;
	align-items: center;
	letter-spacing: 5px;
	font-size: 25px;
	color: var(--firdip-secondary, #232728);
	margin: 0 0 40px;
}
.product-details__form-ratings i {
	color: var(--firdip-base, #CA4445);
	font-size: 400;
}
.product-details__form-ratings__label {
	display: inline-block;
	letter-spacing: 0;
	color: var(--firdip-text, #7D8081);
	margin: 0 0 0 17px;
	font-size: 20px;
	font-weight: 600;
	line-height: 130%;
	text-transform: capitalize;
}
.product-details__form__form {
	margin-top: 0;
}
.product-details__form__form .form-one__control input, .product-details__form__form .form-one__control textarea {
	background: var(--firdip-text-gray, #EFE6E1);
}
.product-details__form__form .form-one__control input::placeholder, .product-details__form__form .form-one__control textarea::placeholder {
	color: var(--firdip-text, #7D8081);
	font-size: 16px;
}
.product-details__form__form .firdip-btn:hover {
	color: var(--firdip-white, #fff);
}

/*--------------------------------------------------------------
# Cart
--------------------------------------------------------------*/
.cart-page {
	position: relative;
	padding: 120px 0;
}
@media (max-width: 767px) {
	.cart-page {
		padding: 80px 0;
	}
}
.cart-page .table-responsive {
	position: relative;
	display: block;
	width: 100%;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}
@media (max-width: 1199px) {
	.cart-page .table-responsive {
		margin-bottom: 30px;
	}
}
.cart-page__table {
	position: relative;
	width: 100%;
	border: none;
	margin: 0 0 60px;
}
@media (max-width: 1199px) {
	.cart-page__table {
		min-width: 1170px;
	}
}
.cart-page__table thead tr th {
	padding: 0 0 24px;
	border: none;
	background-color: transparent;
	border-bottom: 1px solid var(--firdip-text-gray, #EFE6E1) !important;
	box-shadow: none;
	color: var(--firdip-secondary, #232728);
	text-transform: uppercase;
	font-size: 20px;
	font-weight: 700;
	line-height: normal;
}
.cart-page__table thead tr th:last-child {
	text-align: left;
}
.cart-page__table tbody tr td {
	vertical-align: middle;
	border: none;
	box-shadow: none;
	background-color: transparent;
	border-top: 1px solid var(--firdip-text-gray, #EFE6E1);
	border-bottom: 1px solid var(--firdip-text-gray, #EFE6E1);
	padding: 30px 0;
	letter-spacing: 0;
	color: var(--firdip-secondary, #232728);
	font-size: 20px;
	font-weight: 500;
	line-height: 235%;
	text-transform: uppercase;
}
.cart-page__table tbody tr td:last-child {
	text-align: left;
}
.cart-page__table__meta {
	display: flex;
	align-items: center;
}
.cart-page__table__meta-img {
	width: 109px;
	height: 107px;
	background-color: var(--firdip-white, #fff);
	border: 1px solid var(--firdip-text-gray, #EFE6E1);
	margin-left: 40px;
}
.cart-page__table__meta-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	mix-blend-mode: multiply;
}
.cart-page__table__meta-title {
	margin: 0;
	color: var(--firdip-secondary, #232728);
	font-size: 20px;
	font-weight: 700;
	line-height: 235%;
}
.cart-page__table__meta-title a {
	color: inherit;
}
.cart-page__table__meta-title a:hover {
	color: var(--firdip-base, #CA4445);
}
.cart-page__table__remove {
	display: block;
	color: var(--firdip-secondary, #232728);
	font-size: 17px;
}
.cart-page__table__remove:hover {
	color: var(--firdip-base, #CA4445);
}
.cart-page__coupone-form {
	position: relative;
	display: flex;
}
@media (max-width: 767px) {
	.cart-page__coupone-form {
		display: block;
	}
}
.cart-page__coupone-form input[type=text] {
	height: 56px;
	width: 303px;
	border: none;
	background-color: var(--firdip-text-gray, #EFE6E1);
	padding-right: 30px;
	padding-left: 30px;
	outline: none;
	font-size: 16px;
	color: var(--firdip-text, #7D8081);
	display: block;
	font-weight: 600;
	margin-left: 10px;
}
@media (max-width: 1199px) {
	.cart-page__coupone-form input[type=text] {
		width: 290px;
	}
}
@media (max-width: 767px) {
	.cart-page__coupone-form input[type=text] {
		width: 100%;
		margin: 0 0 10px;
	}
}
.cart-page__cart-total {
	position: relative;
	text-align: left;
	margin: -8px 0 24px;
	padding: 0;
}
@media (max-width: 991px) {
	.cart-page__cart-total {
		text-align: right;
		margin-top: 45px;
	}
}
.cart-page__cart-total li {
	display: block;
	font-size: 20px;
	color: var(--firdip-secondary, #232728);
	font-weight: 700;
	margin: 0 0 0px;
	text-transform: uppercase;
}
@media (max-width: 991px) {
	.cart-page__cart-total li span {
		display: inline-block;
		min-width: 172px;
	}
}
.cart-page__cart-total li:last-child {
	margin-top: 10px;
	padding-top: 15px;
	position: relative;
}
.cart-page__cart-total li:last-child::after {
	content: "";
	width: 80%;
	height: 1px;
	position: absolute;
	top: 0%;
	left: 0;
	background: var(--firdip-border-color, #F4F2EE);
}
.cart-page__cart-total-amount {
	color: var(--firdip-text, #7D8081);
	text-transform: inherit;
	display: inline-block;
	min-width: 220px;
	font-size: 20px;
	font-weight: 600;
	line-height: 235%;
}
.cart-page__buttons {
	display: flex;
	justify-content: flex-end;
	gap: 20px;
}
@media (max-width: 991px) {
	.cart-page__buttons {
		justify-content: flex-start;
	}
}

/*--------------------------------------------------------------
# Checkout
--------------------------------------------------------------*/
.checkout-page {
	position: relative;
	padding: 120px 0;
}
@media (max-width: 991px) {
	.checkout-page {
		padding: 100px 0;
	}
}
@media (max-width: 767px) {
	.checkout-page {
		padding: 80px 0;
	}
}
.checkout-page__notice {
	max-width: 570px;
	margin: 0 0 30px;
	padding: 34px 50px;
	background: var(--firdip-text-gray, #EFE6E1);
	color: var(--firdip-secondary, #232728);
	font-style: normal;
	font-weight: 600;
	font-size: 18px;
	line-height: 1.3888888889;
}
.checkout-page__notice a {
	color: var(--firdip-base, #CA4445);
	background: linear-gradient(to left, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
	transition: all 500ms ease;
}
.checkout-page__notice a:hover {
	background-size: 100% 1px;
}
.checkout-page__billing-address {
	position: relative;
}
.checkout-page__billing-address__title {
	margin: 0 0 34px;
	color: var(--firdip-secondary, #232728);
	font-size: 30px;
	font-weight: 700;
	line-height: normal;
	text-transform: uppercase;
}
@media (max-width: 767px) {
	.checkout-page__billing-address__title {
		font-size: 28px;
	}
}
.checkout-page__shipping-address {
	position: relative;
}
@media (max-width: 991px) {
	.checkout-page__shipping-address {
		margin: 50px 0 0;
	}
}
.checkout-page__shipping-address__title {
	margin: 0 0 34px;
	color: var(--firdip-secondary, #232728);
	font-size: 30px;
	font-weight: 700;
	line-height: normal;
	text-transform: uppercase;
}
@media (max-width: 767px) {
	.checkout-page__shipping-address__title {
		font-size: 28px;
	}
}
.checkout-page__input-box {
	position: relative;
	line-height: 1;
	margin: 0 0 20px;
}
.checkout-page__input-box input[type=text],
.checkout-page__input-box input[type=email],
.checkout-page__input-box input[type=tel],
.checkout-page__input-box textarea {
	height: 60px;
	width: 100%;
	border: none;
	background-color: var(--firdip-text-gray, #EFE6E1);
	padding-right: 30px;
	padding-left: 30px;
	outline: none;
	display: block;
	color: var(--firdip-text, #7D8081);
	font-size: 16px;
	font-weight: 600;
	line-height: normal;
}
.checkout-page__input-box input[type=text]::placeholder,
.checkout-page__input-box input[type=email]::placeholder,
.checkout-page__input-box input[type=tel]::placeholder,
.checkout-page__input-box textarea::placeholder {
	color: var(--firdip-text, #7D8081);
	font-size: 16px;
	font-weight: 500;
	line-height: normal;
}
.checkout-page__input-box .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
	position: relative;
	display: block;
	width: 100% !important;
}
.checkout-page__input-box .bootstrap-select > .dropdown-toggle::after {
	display: none;
}
.checkout-page__input-box .bootstrap-select > .dropdown-toggle {
	position: relative;
	height: 58px;
	outline: none !important;
	border-radius: 0;
	border: 0;
	background-color: var(--firdip-text-gray, #EFE6E1) !important;
	margin: 0;
	padding: 0;
	padding-right: 30px;
	padding-left: 30px;
	color: var(--firdip-text, #7D8081) !important;
	font-size: 14px;
	line-height: 58px;
	font-weight: 500;
	box-shadow: none !important;
	background-repeat: no-repeat;
	background-size: 14px 12px;
	background-position: left 25.75px center;
}
.checkout-page__input-box .bootstrap-select > .dropdown-toggle:before {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 30px;
	font-family: "Font Awesome 5 Free";
	content: "\f107";
	font-weight: 900;
	font-size: 12px;
	color: var(--firdip-text, #7D8081);
}
.checkout-page__input-box .bootstrap-select .dropdown-menu > li + li > a {
	border-top: 1px solid var(--firdip-text-gray, #EFE6E1);
}
.checkout-page__input-box .bootstrap-select .dropdown-menu {
	border: none;
}
.checkout-page__input-box .bootstrap-select .dropdown-menu > li > a {
	font-size: 14px;
	font-weight: 500;
	padding: 15px 30px;
	color: var(--firdip-text, #7D8081);
	background-color: var(--firdip-text-gray, #EFE6E1);
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
}
.checkout-page__input-box .bootstrap-select .dropdown-menu > li:hover > a,
.checkout-page__input-box .bootstrap-select .dropdown-menu > li.selected > a {
	background: var(--firdip-base, #CA4445);
	color: var(--firdip-white, #fff);
	border-color: var(--firdip-base, #CA4445);
}
.checkout-page__input-box textarea {
	color: var(--firdip-text, #7D8081);
	font-size: 16px;
	font-weight: 500;
	line-height: normal;
	height: 176px;
	width: 100%;
	background-color: var(--firdip-text-gray, #EFE6E1);
	padding: 20px 30px 30px;
	border: none;
	outline: none;
	margin-bottom: 0px;
}
.checkout-page__check-box {
	position: relative;
	display: block;
	margin-top: -6px;
}
.checkout-page__check-box input[type=checkbox] {
	display: none;
}
.checkout-page__check-box label {
	position: relative;
	display: inline-block;
	padding-right: 30px;
	margin-left: 0px;
	margin-bottom: 0;
	color: var(--firdip-text, #7D8081);
	font-size: 15px;
	line-height: 24px;
	text-transform: none;
	cursor: pointer;
}
.checkout-page__check-box label span:before {
	position: absolute;
	top: 0;
	right: 5px;
	line-height: 20px;
	display: inline-block;
	color: var(--firdip-white, #fff);
	font-family: "Font Awesome 5 Free";
	content: "\f00c";
	font-size: 8px;
	font-weight: 900;
	-webkit-transition: all 0.15s ease-in-out;
	transition: all 0.15s ease-in-out;
	opacity: 0;
}
.checkout-page__check-box input[type=checkbox] + label span {
	position: absolute;
	top: 4px;
	right: 0;
	width: 19px;
	height: 19px;
	background-color: var(--firdip-base, #CA4445);
	border-radius: 50%;
	border: none;
	vertical-align: middle;
	cursor: pointer;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}
.checkout-page__check-box input[type=checkbox]:checked + label span:before {
	opacity: 1;
}
.checkout-page__details {
	margin-top: 25px;
	margin-bottom: 65px;
}
.checkout-page__details__title {
	color: var(--firdip-secondary, #232728);
	font-size: 30px;
	font-weight: 700;
	line-height: normal;
	margin-bottom: 30px;
	text-shadow: 0 0 0.1px currentColor;
	text-transform: uppercase;
}
.checkout-page__details__check-box input[type=checkbox] {
	display: none;
}
.checkout-page__details__check-box label {
	position: relative;
	padding-right: 30px;
	cursor: pointer;
	color: var(--firdip-text, #7D8081);
	font-size: 20px;
	font-style: normal;
	font-weight: 600;
	line-height: 130%;
	text-transform: uppercase;
}
.checkout-page__details__check-box label span {
	position: absolute;
	top: 2px;
	right: 0;
	width: 22px;
	height: 22px;
	background-color: var(--firdip-base, #CA4445);
	border-radius: 50%;
	border: none;
	vertical-align: middle;
	cursor: pointer;
	transition: all 300ms ease;
}
.checkout-page__details__check-box label span::before {
	content: "\f00c";
	color: var(--firdip-white, #fff);
	position: absolute;
	top: 4px;
	right: 6px;
	line-height: 15px;
	display: inline-block;
	font-family: "Font Awesome 5 Free";
	font-size: 10px;
	font-weight: 600;
	transition: all 0.15s ease-in-out;
	opacity: 0;
}
.checkout-page__details__check-box input[type=checkbox]:checked + label span:before {
	opacity: 1;
}
.checkout-page__your-order {
	position: relative;
}
.checkout-page__your-order__title {
	margin-bottom: 35px;
	font-size: 30px;
	font-weight: 700;
	line-height: normal;
	text-transform: uppercase;
}
@media (max-width: 767px) {
	.checkout-page__your-order__title {
		font-size: 28px;
	}
}
.checkout-page__your-order .nionx-btn {
	padding: 19px 38px;
}
.checkout-page__order-table {
	position: relative;
	width: 100%;
	border: none;
	margin: 0 0 0;
}
.checkout-page__order-table thead tr th {
	color: var(--firdip-base, #CA4445);
	margin: 0;
	padding: 15.5px 0;
	border: none;
	border-top: 1px solid var(--firdip-text-gray, #EFE6E1);
	border-bottom: 1px solid var(--firdip-text-gray, #EFE6E1);
	font-weight: bold;
	color: var(--firdip-secondary, #232728);
	font-size: 20px;
	font-weight: 700;
	line-height: 235%;
	text-transform: uppercase;
	text-shadow: 0 0 0.1px currentColor;
}
.checkout-page__order-table thead tr th:last-child {
	text-align: left;
}
.checkout-page__order-table tbody tr td {
	color: var(--firdip-secondary, #232728);
	font-size: 20px;
	font-weight: 700;
	line-height: 100%;
	padding: 0 0 24px;
	border: none;
	text-transform: uppercase;
	text-shadow: 0 0 0.1px currentColor;
}
.checkout-page__order-table tbody tr td:last-child {
	text-align: left;
}
.checkout-page__order-table .pro__price {
	color: var(--firdip-text, #7D8081);
	font-size: 20px;
	font-weight: 600;
	text-shadow: 0 0 0.1px currentColor;
}
.checkout-page__order-table tbody tr:first-child td {
	padding-top: 25px;
}
.checkout-page__order-table tbody tr:last-child td {
	padding-bottom: 26px;
	padding-top: 26px;
	border-top: 1px solid var(--firdip-text-gray, #EFE6E1);
}
.checkout-page__order-table tbody tr:last-child td.pro__price {
	color: var(--firdip-secondary, #232728);
	font-weight: 700;
}
.checkout-page__payment {
	background-color: var(--firdip-text-gray, #EFE6E1);
	padding: 40px 45px 17px;
	min-height: 295px;
	margin-bottom: 30px;
}
@media (max-width: 991px) {
	.checkout-page__payment {
		margin-top: 50px;
	}
}
@media (max-width: 767px) {
	.checkout-page__payment {
		padding-right: 25px;
		padding-left: 25px;
	}
}
.checkout-page__payment__item {
	position: relative;
}
.checkout-page__payment__title {
	display: flex;
	font-size: 20px;
	margin: 0;
	align-items: center;
	margin-bottom: 28px;
	text-transform: uppercase;
	cursor: pointer;
	font-weight: 700;
}
.checkout-page__payment__title::before {
	content: "";
	width: 22px;
	height: 22px;
	background-color: var(--firdip-white, #fff);
	border-radius: 50%;
	margin-left: 10px;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	font-size: 9px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-left: 14px;
	position: relative;
	top: 1px;
	transition: all 500ms ease;
}
.checkout-page__payment__title img {
	margin-right: 15px;
}
.checkout-page__payment__item--active .checkout-page__payment__title::before {
	background-color: var(--firdip-base, #CA4445);
	border-color: var(--firdip-base, #CA4445);
	content: "\f00c";
	color: var(--firdip-white, #fff);
}
.checkout-page__payment__content {
	margin-right: 35px;
	margin-bottom: 35px;
	font-size: 16px;
	line-height: 30px;
}

/*--------------------------------------------------------------
# Login
--------------------------------------------------------------*/
.login-page {
	position: relative;
	padding: 120px 0;
}
@media (max-width: 767px) {
	.login-page {
		padding: 80px 0;
	}
}
.login-page__inner {
	border: 1px solid var(--firdip-text-gray, #EFE6E1);
	background: var(--firdip-white, #fff);
	box-shadow: 0px 6px 40px 0px rgba(0, 0, 0, 0.06);
	padding: 40px 30px;
}
@media (min-width: 768px) {
	.login-page__inner {
		padding: 57px 40px 57px;
	}
}
.login-page__info {
	background-color: var(--firdip-secondary, #232728);
	padding: 35.5px 50px;
	margin-bottom: 50px;
}
@media (max-width: 991px) {
	.login-page__info {
		margin-bottom: 30px;
		padding: 15px 30px;
	}
	.login-page__info p {
		font-size: 16px;
	}
}
.login-page__info p {
	margin: 0;
	color: var(--firdip-white, #fff);
	font-style: normal;
	font-weight: 500;
	font-size: 18px;
	line-height: 1.3888888889;
}
.login-page__info p span {
	font-weight: 700;
}
.login-page__info p a {
	line-height: normal;
	font-weight: 700;
	display: inline-block;
	color: var(--firdip-base, #CA4445);
	transition: all 500ms ease;
	background: linear-gradient(to left, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
	transition: all 500ms ease;
}
.login-page__info p a:hover {
	background-size: 100% 1px;
}
.login-page__wrap {
	position: relative;
}
.login-page__wrap__title {
	margin-top: -5px;
	margin-bottom: 30px;
	color: var(--firdip-secondary, #232728);
	font-size: 30px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	text-transform: uppercase;
}
.login-page__wrap .form__border {
	display: none;
}
@media (min-width: 992px) {
	.login-page__wrap .form__border {
		display: block;
	}
}
.login-page__wrap .form__border::after {
	display: none;
	position: absolute;
	top: 0;
	left: -47px;
	content: "";
	width: 1px;
	height: 100%;
	background: var(--firdip-text-gray, #EFE6E1);
}
@media (min-width: 992px) {
	.login-page__wrap .form__border::after {
		display: block;
	}
}
@media (max-width: 992px) {
	.login-page .register-page__wrap {
		margin-top: 50px;
	}
}
.login-page__form {
	position: relative;
	display: block;
}
.login-page__form-input-box {
	position: relative;
	display: block;
	margin-bottom: 20px;
}
.login-page__form-input-box input[type=email],
.login-page__form-input-box input[type=password] {
	height: 60px;
	width: 100%;
	border: none;
	background-color: var(--firdip-text-gray, #EFE6E1);
	padding-right: 30px;
	padding-left: 30px;
	outline: none;
	color: var(--firdip-text, #7D8081);
	font-size: 14px;
	font-weight: 500;
	line-height: normal;
	display: block;
}
.login-page__form-input-box input[type=email]::placeholder,
.login-page__form-input-box input[type=password]::placeholder {
	color: var(--firdip-text, #7D8081);
	font-size: 14px;
	font-weight: 500;
	line-height: normal;
}
.login-page__checked-box {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 26px;
	margin-bottom: 35px;
}
@media (max-width: 768px) {
	.login-page__checked-box {
		display: block;
	}
}
.login-page__checked-box label {
	position: relative;
	display: inline-block;
	padding-right: 30px;
	margin-left: 0px;
	margin-bottom: 0;
	text-transform: none;
	cursor: pointer;
	font-size: 16px;
	font-weight: 600;
}
.login-page__checked-box label span:before {
	position: absolute;
	top: 2px;
	right: 5px;
	display: block;
	border-bottom: 2px solid var(--firdip-text, #7D8081);
	border-left: 2px solid var(--firdip-text, #7D8081);
	content: "";
	width: 7px;
	height: 10px;
	pointer-events: none;
	transform-origin: 34% 66%;
	transform: rotate(-45deg);
	transition: all 0.15s ease-in-out;
	opacity: 0;
}
.login-page__checked-box input[type=checkbox] {
	display: none;
}
.login-page__checked-box input[type=checkbox] + label span {
	position: absolute;
	top: 4px;
	right: 0;
	border-radius: 4px;
	width: 20px;
	height: 20px;
	vertical-align: middle;
	background: transparent;
	cursor: pointer;
	transition: all 300ms ease;
	border: 1px solid var(--firdip-gray, #DCCEC6);
}
.login-page__checked-box input[type=checkbox]:checked + label span:before {
	opacity: 1;
}
.login-page__form-btn-box {
	position: relative;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}
.login-page__form-btn-box .nionx-btn {
	font-size: 16px;
	font-weight: 600;
	padding: 19px 40px;
}
.login-page__form-forgot-password {
	position: relative;
	display: block;
	margin-right: 0px;
	flex: 0 0 100%;
	margin-top: 10px;
}
@media (min-width: 768px) {
	.login-page__form-forgot-password {
		margin-right: 20px;
		flex: 0 0 auto;
		margin-top: 0;
	}
}
.login-page__form-forgot-password a {
	color: var(--firdip-text, #7D8081);
	position: relative;
	display: inline-block;
	background: linear-gradient(to left, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
	transition: all 500ms ease;
	font-size: 16px;
	font-weight: 600;
	line-height: normal;
}
.login-page__form-forgot-password a:hover {
	background-size: 100% 1px;
}
.login-page__form-forgot-password a:hover {
	color: var(--firdip-text, #7D8081);
}

.gutter-x-94 {
	--bs-gutter-x: 94px;
}

/*--------------------------------------------------------------
# error 404
--------------------------------------------------------------*/
.error-404 {
	padding: 100px 0px 120px;
	max-width: 865px;
	width: 100%;
	margin-right: auto;
	margin-left: auto;
}
@media (max-width: 991px) {
	.error-404 {
		padding: 80px 0px 100px;
	}
}
@media (max-width: 767px) {
	.error-404 {
		padding: 60px 0px 80px;
	}
}
.error-404__img {
	position: relative;
	z-index: 1;
	margin-bottom: 45px;
}
.error-404__img__item {
	display: flex;
	align-items: end;
	justify-content: space-around;
	position: relative;
	z-index: 1;
}
.error-404__img__item--two {
	position: absolute;
	top: 0;
	z-index: -1;
	right: 0;
	animation: errorOne 3s ease infinite;
}
@keyframes errorOne {
	0% {
		transform: translateY(-20px);
	}
	50% {
		transform: translateY(0px);
	}
	100% {
		transform: translateY(-20px);
	}
}
@media (max-width: 991px) {
	.error-404__img__item img {
		object-fit: cover;
		width: 100%;
	}
}
.error-404__sub-title {
	text-transform: uppercase;
	color: var(--firdip-secondary, #232728);
	text-align: center;
	margin-bottom: 15px;
	font-style: normal;
	font-weight: 700;
	font-size: 40px;
	line-height: 65%;
}
@media (max-width: 767px) {
	.error-404__sub-title {
		font-size: 30px;
	}
}
.error-404__text {
	font-style: normal;
	font-weight: 600;
	font-size: 16px;
	line-height: 200%;
	color: var(--firdip-text, #7D8081);
	text-align: center;
}
.error-404__search {
	position: relative;
	margin-bottom: 18px;
	max-width: 496px;
	width: 100%;
	margin-right: auto;
	margin-left: auto;
}
.error-404__search input[type=text] {
	border: none;
	outline: none;
	display: block;
	background-color: var(--firdip-text-gray, #EFE6E1);
	color: var(--firdip-text, #7D8081);
	font-size: 16px;
	font-weight: 600;
	line-height: normal;
	width: 100%;
	padding-right: 70px;
	height: 60px;
}
.error-404__search input[type=text]::placeholder {
	color: var(--firdip-text, #7D8081);
	font-size: 16px;
	font-weight: 600;
	line-height: 162.5%;
}
.error-404__search__btn {
	border: none;
	outline: none;
	background-color: transparent;
	color: var(--firdip-text, #7D8081);
	position: absolute;
	top: 50%;
	font-weight: 700;
	right: 40px;
	transform: translateY(-50%);
	font-size: 20px;
}
@media (max-width: 575px) {
	.error-404__search__btn {
		right: 30px;
	}
}

/*--------------------------------------------------------------
# Faq
--------------------------------------------------------------*/
.faq-page__accordion .accrodion {
	background: var(--firdip-text-gray, #EFE6E1);
}
.faq-page__accordion .accrodion + .accrodion {
	margin-top: 20px;
}
.faq-page__accordion .accrodion-title {
	padding: 25px 30px 18px 30px;
	padding-left: 65px;
	cursor: pointer;
}
.faq-page__accordion .accrodion-title__text {
	position: relative;
	color: var(--firdip-secondary, #232728);
	font-size: 18px;
	font-style: normal;
	font-weight: 700;
	line-height: 1.2222222;
	text-transform: uppercase;
}
.faq-page__accordion .accrodion-title__icon {
	width: 40px;
	height: 40px;
	position: absolute;
	top: 50%;
	left: -35px;
	background: var(--firdip-white, #fff);
	transform: translateY(-50%);
}
.faq-page__accordion .accrodion-title__icon::after, .faq-page__accordion .accrodion-title__icon::before {
	width: 2.555555px;
	height: 13px;
	position: absolute;
	background-color: var(--firdip-secondary, #232728);
	top: 50%;
	right: 50%;
	content: "";
	transform: translate(50%, -50%);
	transition: all 500ms ease;
}
.faq-page__accordion .accrodion-title__icon::after {
	width: 13px;
	height: 2px;
}
.faq-page__accordion .active .accrodion-title__icon {
	background-color: var(--firdip-base, #CA4445);
}
.faq-page__accordion .active .accrodion-title__icon::after, .faq-page__accordion .active .accrodion-title__icon::before {
	background: var(--firdip-white, #fff);
	opacity: 0;
}
.faq-page__accordion .active .accrodion-title__icon::after {
	opacity: 1;
}
.faq-page__accordion .accrodion-content .inner {
	padding: 3px 30px 25px 45px;
	margin-top: -3px;
}
.faq-page__accordion .accrodion-content p {
	color: var(--firdip-text, #7D8081);
	padding-bottom: 0;
	margin-bottom: -2px;
	font-size: 16px;
	font-weight: 500;
	line-height: 187.5%;
	max-width: 678px;
	width: 100%;
}

.faq-page {
	padding: 120px 0px;
}
@media (max-width: 991px) {
	.faq-page {
		padding: 100px 0px;
	}
}
@media (max-width: 767px) {
	.faq-page {
		padding: 80px 0px;
	}
}
.faq-page .sec-title {
	padding-bottom: 80px;
}
@media (max-width: 991px) {
	.faq-page .sec-title {
		padding-bottom: 20px;
	}
}
@media (max-width: 1199px) {
	.faq-page .sec-title {
		padding-bottom: 40px;
	}
}
.faq-page__search {
	max-width: 330px;
	width: 100%;
	margin-right: auto;
	margin-left: 0;
}
@media (max-width: 991px) {
	.faq-page__search {
		margin-right: 0;
		margin-left: auto;
		margin-bottom: 40px;
	}
}
.faq-page__search__item {
	position: relative;
	background-color: var(--firdip-text-gray, #EFE6E1);
}
.faq-page__search__item input[type=search],
.faq-page__search__item input[type=text] {
	outline: none;
	width: 100%;
	height: 60px;
	background-color: var(--firdip-text-gray, #EFE6E1);
	padding-right: 60px;
	padding-left: 20px;
	transition: all 500ms ease;
	border: none;
	color: var(--firdip-text, #7D8081);
	font-size: 16px;
	font-weight: 500;
	line-height: normal;
}
.faq-page__search__item input[type=search]:focus,
.faq-page__search__item input[type=text]:focus {
	box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.1);
	border: none;
}
.faq-page__search__item input[type=search]::placeholder,
.faq-page__search__item input[type=text]::placeholder {
	color: var(--firdip-text, #7D8081);
	font-size: 16px;
	font-weight: 500;
	line-height: normal;
}
.faq-page__search__item button[type=submit] {
	border: none;
	outline: none;
	background-color: transparent;
	position: absolute;
	top: 50%;
	right: 25px;
	transform: translateY(-50%);
	width: auto;
	font-size: 22px;
	line-height: 1;
	color: var(--firdip-text, #7D8081);
	transition: all 0.4s ease-in-out;
}
.faq-page__search__item button[type=submit]:hover {
	color: var(--firdip-base, #CA4445);
}

.faq-contact__inner {
	display: flex;
	flex-direction: column;
	gap: 64px;
	width: 100%;
}
.faq-contact__inner__item {
	position: relative;
	z-index: 1;
	padding-top: 1px;
}
.faq-contact__inner__item__bg {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	mix-blend-mode: overlay;
	background-size: cover;
	background-position: center center;
	background-repeat: repeat;
	z-index: -1;
}
.faq-contact__inner__item__bg::after {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	background: rgba(var(--firdip-secondary-rgb, 35, 39, 40), 0.95);
}
.faq-contact__inner__item__icon {
	max-width: 80px;
	width: 100%;
	height: 80px;
	border-radius: 50%;
	background: var(--firdip-text-gray, #EFE6E1);
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 35px;
	color: var(--firdip-base, #CA4445);
	transition: all 0.4s ease-in-out;
	margin-right: auto;
	margin-left: auto;
	margin-top: -40px;
	margin-bottom: 27px;
}
.faq-contact__inner__item__subtitle {
	text-align: center;
	color: var(--firdip-white, #fff);
	text-transform: uppercase;
	display: block;
	margin-top: -5px;
	margin-bottom: 24px;
	font-style: normal;
	font-weight: 700;
	font-size: 24px;
	line-height: 148%;
	padding-bottom: 18px;
	border-bottom: 1px solid rgba(var(--firdip-text-gray-rgb, 239, 230, 225), 0.2);
}
@media (max-width: 575px) {
	.faq-contact__inner__item__subtitle {
		font-size: 20px;
	}
}
.faq-contact__inner__item__contact {
	color: var(--firdip-text, #7D8081);
	font-style: normal;
	font-weight: 500;
	font-size: 18px;
	line-height: 197%;
	text-align: center;
	padding-bottom: 17px;
}
.faq-contact__inner__item__contact__text {
	font-style: normal;
	font-weight: 500;
	font-size: 16px;
	line-height: 19px;
	margin-bottom: -2px;
	padding-bottom: 0;
	color: var(--firdip-text, #7D8081);
	text-transform: uppercase;
}
.faq-contact__inner__item__contact span {
	font-style: normal;
	font-weight: 500;
	font-size: 18px;
	line-height: 21px;
	margin-bottom: 0;
	padding-bottom: 0;
	color: #D9D9D9;
}
.faq-contact__inner__item__contact a {
	color: var(--firdip-white, #fff);
	background: linear-gradient(to left, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
	transition: all 500ms ease;
	font-style: normal;
	font-weight: 500;
	font-size: 18px;
	line-height: 21px;
}
.faq-contact__inner__item__contact a:hover {
	background-size: 100% 1px;
}
.faq-contact__inner__item__contact a:hover {
	color: var(--firdip-base, #CA4445);
}
.faq-contact__inner__item:hover .faq-contact__inner__item__icon {
	background: var(--firdip-base, #CA4445);
	color: var(--firdip-white, #fff);
}

.faq-one {
	padding: 120px 0px;
}
@media (max-width: 991px) {
	.faq-one {
		padding: 100px 0px;
	}
}
@media (max-width: 767px) {
	.faq-one {
		padding: 80px 0px;
	}
}

.faqs-two {
	padding: 120px 0px;
}
@media (max-width: 991px) {
	.faqs-two {
		padding: 100px 0px;
	}
}
@media (max-width: 767px) {
	.faqs-two {
		padding: 80px 0px;
	}
}
.faqs-two__left {
	margin-right: 20px;
}
@media (max-width: 1199px) {
	.faqs-two__left {
		margin-right: 0;
	}
}
.faqs-two__thumb {
	position: relative;
	z-index: 1;
	padding-bottom: 35px;
}
@media (max-width: 1199px) {
	.faqs-two__thumb__item img {
		object-fit: cover;
		width: 100%;
	}
}
.faqs-two__thumb__logo {
	position: absolute;
	top: 0;
	right: 40px;
}
.faqs-two__thumb__logo .firdip-logo {
	display: block;
	padding: 0px 30px 20px 40px;
	background: var(--firdip-white, #fff);
}
.faqs-two__thumb__funfact {
	position: absolute;
	bottom: 10px;
	left: 48px;
}
.faqs-two__thumb__funfact__item {
	background: var(--firdip-base, #CA4445);
	padding: 40px 50px 40px 30px;
}
.faqs-two__thumb__funfact__item__count {
	margin-top: -5px;
	display: flex;
	align-items: center;
	font-style: normal;
	font-weight: 700;
	font-size: 40px;
	line-height: 48px;
	text-transform: uppercase;
	color: var(--firdip-white, #fff);
}
.faqs-two__thumb__funfact__item__text {
	font-style: normal;
	font-weight: 500;
	font-size: 20px;
	line-height: 100%;
	text-transform: capitalize;
	color: var(--firdip-white, #fff);
	margin-bottom: 0;
	padding-bottom: 0;
	margin-top: -10px;
}
.faqs-two__top .sec-title {
	padding-bottom: 30px;
}

/*--------------------------------------------------------------
# Package
--------------------------------------------------------------*/
.package-card {
	position: relative;
	z-index: 1;
}
@media (max-width: 767px) {
	.package-card {
		max-width: 400px;
		margin-right: auto;
		margin-left: auto;
	}
}
.package-card__head {
	position: relative;
	z-index: 1;
}
.package-card__head__top {
	margin-top: -40px;
	text-transform: uppercase;
	color: var(--firdip-white, #fff);
	background: var(--firdip-secondary, #232728);
	margin-bottom: 0;
	padding-bottom: 0;
	text-align: center;
	max-width: 230px;
	width: 100%;
	margin-right: auto;
	margin-left: auto;
	font-style: normal;
	font-weight: 500;
	font-size: 16px;
	line-height: 294%;
}
@media (max-width: 767px) {
	.package-card__head__top {
		margin-top: 0px;
	}
}
.package-card__head__content {
	position: relative;
	margin-top: -3px;
	background: var(--firdip-secondary, #232728);
	position: relative;
	z-index: 1;
	padding: 30px 30px 55px;
	transition: all 0.4s ease-in-out;
}
.package-card__head__name {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 20px;
}
.package-card__head__name__item {
	font-style: normal;
	font-weight: 600;
	font-size: 20px;
	line-height: 235%;
	margin-bottom: 0;
	margin-right: auto;
	margin-left: auto;
	text-align: center;
	padding: 0px 20px;
	text-transform: uppercase;
	background: rgba(var(--firdip-white-rgb, 255, 255, 255), 0.05);
	display: inline-block;
	color: var(--firdip-base, #CA4445);
	transition: all 0.4S ease-in-out;
}
.package-card__head__price {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 17px;
}
.package-card__head__price__item {
	color: var(--firdip-white, #fff);
	margin-bottom: 0;
	padding-bottom: 0;
	text-align: center;
	font-style: normal;
	display: inline-block;
	font-weight: 700;
	font-size: 50px;
	line-height: 112%;
	transition: all 0.4s ease-in-out;
}
.package-card__head__price__item .sup {
	top: -15px;
	left: -4px;
	margin-top: -4px;
	position: relative;
	color: var(--firdip-text, #7D8081);
	font-weight: 700;
	font-size: 20px;
	line-height: normal;
	transition: all 0.4s ease-in-out;
}
.package-card__head__text {
	margin: 0;
	font-style: normal;
	font-weight: 600;
	font-size: 16px;
	line-height: 156%;
	max-width: 210px;
	margin-right: auto;
	margin-left: auto;
	text-align: center;
	transition: all 0.4s ease-in-out;
}
.package-card__link {
	margin-right: 30px;
	margin-left: 30px;
	margin-top: -35px;
	margin-bottom: -25px;
}
.package-card__link__btn {
	display: block;
	background: var(--firdip-white, #fff);
	color: var(--firdip-secondary, #232728);
}
.package-card__link__btn::before {
	background: var(--firdip-white, #fff);
}
.package-card__link__btn::after {
	background: var(--firdip-secondary, #232728);
}
.package-card__link__btn:hover {
	color: var(--firdip-white, #fff);
}
.package-card__content__list {
	background: var(--firdip-text-gray, #EFE6E1);
	padding: 50px 0px 20px;
}
.package-card__content__list__item {
	color: var(--firdip-secondary, #232728);
	text-align: center;
	font-style: normal;
	font-weight: 600;
	font-size: 16px;
	line-height: 19px;
	padding-bottom: 13px;
}
.package-card__content__list__item i {
	color: var(--firdip-base, #CA4445);
	margin-left: 10px;
}
.package-card__content__list__item:last-child {
	padding-bottom: 0;
}
.package-card__content__list__item + .package-card__content__list__item {
	padding-top: 15px;
	border-top: 1px solid var(--firdip-white, #fff);
}
.package-card:hover .package-card__head__content {
	background: var(--firdip-base, #CA4445);
}
.package-card:hover .package-card__head .package-card__head__text, .package-card:hover .package-card__head .package-card__head__price__item, .package-card:hover .package-card__head .package-card__head__name__item, .package-card:hover .package-card__head .sup {
	color: var(--firdip-white, #fff);
}
.package-card:hover::after {
	background: var(--firdip-base, #CA4445);
}
.package-card:hover .package-card__head__icon {
	color: var(--firdip-white, #fff);
}

.package-page {
	padding: 120px 0;
}
.package-page--carousel {
	padding-top: 150px;
}
@media (max-width: 767px) {
	.package-page {
		padding: 80px 0;
	}
}

.package-page__inner {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 95px;
}
@media (max-width: 767px) {
	.package-page__inner {
		margin-bottom: 40px;
	}
}

.package-page__inner__filter {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	background: var(--firdip-text-gray, #EFE6E1);
}
.package-page__inner__filter button::after {
	background: var(--firdip-text-gray, #EFE6E1);
}
.package-page__inner__filter button::before {
	background: var(--firdip-base, #CA4445);
}
.package-page__inner__filter button.active-btn, .package-page__inner__filter button:hover {
	color: var(--firdip-secondary, #232728);
}
.package-page__inner__filter button.active-btn::before, .package-page__inner__filter button:hover::before {
	background: var(--firdip-text-gray, #EFE6E1);
}
.package-page__inner__filter button.active-btn::after, .package-page__inner__filter button:hover::after {
	background: var(--firdip-text-gray, #EFE6E1);
}

/*--------------------------------------------------------------
# Animations
--------------------------------------------------------------*/
@keyframes bubbleMover {
	0% {
		-webkit-transform: translateY(0px) translateX(0) rotate(0);
		transform: translateY(0px) translateX(0) rotate(0);
	}
	30% {
		-webkit-transform: translateY(30px) translateX(-50px) rotate(-15deg);
		transform: translateY(30px) translateX(-50px) rotate(-15deg);
		-webkit-transform-origin: center center;
		transform-origin: center center;
	}
	50% {
		-webkit-transform: translateY(50px) translateX(-100px) rotate(-45deg);
		transform: translateY(50px) translateX(-100px) rotate(-45deg);
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
	}
	80% {
		-webkit-transform: translateY(30px) translateX(-50px) rotate(-15deg);
		transform: translateY(30px) translateX(-50px) rotate(-15deg);
		-webkit-transform-origin: right top;
		transform-origin: right top;
	}
	100% {
		-webkit-transform: translateY(0px) translateX(0) rotate(0);
		transform: translateY(0px) translateX(0) rotate(0);
		-webkit-transform-origin: center center;
		transform-origin: center center;
	}
}
@keyframes bgSlide {
	0% {
		background-position: 100% 0;
	}
	20% {
		background-position: -100px 0;
	}
	40% {
		background-position: -200px 0;
	}
	60% {
		background-position: -150px 0;
	}
	80% {
		background-position: -100px 0;
	}
	100% {
		background-position: 0px 0;
	}
}
@keyframes topBottom {
	0% {
		transform: translateY(-10px);
	}
	60% {
		transform: translateY(0px);
	}
	100% {
		transform: translateY(-10px);
	}
}
@keyframes iconTranslateX {
	49% {
		-webkit-transform: translateX(-100%);
		transform: translateX(-100%);
	}
	50% {
		opacity: 0;
		-webkit-transform: translateX(100%);
		transform: translateX(100%);
	}
	51% {
		opacity: 1;
	}
}
@keyframes ping {
	75%, 100% {
		transform: scale(2);
		opacity: 0;
	}
}
@keyframes ping2 {
	0% {
		transform: scaleY(0.8);
	}
	50% {
		transform: scaleY(1);
	}
	100% {
		transform: scaleY(0.8);
	}
}
@keyframes horizontal {
	16.65% {
		transform: translateX(-5px);
	}
	33.3% {
		transform: translateX(3px);
	}
	49.95% {
		transform: translateX(-4px);
	}
	66.6% {
		transform: translateX(2px);
	}
	83.25% {
		transform: translateX(-1px);
	}
	100% {
		transform: translateX(0);
	}
}
@keyframes scaleOne {
	0% {
		transform: scale(0.8);
	}
	50% {
		transform: scale(1.3);
	}
	100% {
		transform: scale(0.8);
	}
}
/*--------------------------------------------------------------
# Mobile Nav
--------------------------------------------------------------*/
.mobile-nav__wrapper {
	position: fixed;
	top: 0;
	right: 0;
	width: 100vw;
	height: 100vh;
	z-index: 999;
	transform: translateX(100%);
	transform-origin: right center;
	transition: transform 500ms ease 500ms, visibility 500ms ease 500ms;
	visibility: hidden;
	position: fixed;
}
.mobile-nav__wrapper .container {
	padding-right: 0;
	padding-left: 0;
}
.mobile-nav__wrapper .home-showcase .row [class*=col-] {
	flex: 0 0 100%;
}
.mobile-nav__wrapper .home-showcase {
	margin-bottom: -1px;
	margin-top: 0;
	border-bottom: 1px solid RGBA(var(--firdip-white-rgb, 255, 255, 255), 0.1);
}
.mobile-nav__wrapper .home-showcase__inner {
	padding: 15px 0px;
	background-color: transparent;
	box-shadow: none;
}
.mobile-nav__wrapper .home-showcase__title {
	color: var(--firdip-white, #fff);
}

.mobile-nav__wrapper.expanded {
	opacity: 1;
	transform: translateX(0%);
	visibility: visible;
	transition: transform 500ms ease 0ms, visibility 500ms ease 0ms;
}
.mobile-nav__wrapper.expanded .mobile-nav__content {
	opacity: 1;
	visibility: visible;
	transform: translateX(0);
	transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms;
}

.mobile-nav__overlay {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	background-color: var(--firdip-black, #171818);
	opacity: 0.3;
	cursor: url(../images/close.png), auto;
}

.mobile-nav__content {
	width: 300px;
	background-color: var(--firdip-black2, #000);
	z-index: 10;
	position: relative;
	height: 100%;
	overflow-y: auto;
	padding-top: 30px;
	padding-bottom: 30px;
	padding-right: 15px;
	padding-left: 15px;
	opacity: 0;
	visibility: hidden;
	transform: translateX(100%);
	transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms;
}
.mobile-nav__content .main-menu__nav {
	display: block;
	padding: 0;
}

.mobile-nav__content .logo-box {
	margin-bottom: 40px;
	display: flex;
}

.mobile-nav__close {
	position: absolute;
	top: 20px;
	left: 15px;
	font-size: 18px;
	color: var(--firdip-white, #fff);
	cursor: pointer;
}
.mobile-nav__close:hover {
	color: var(--firdip-base, #CA4445);
}

.mobile-nav__content .main-menu__list,
.mobile-nav__content .main-menu__list ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
}

.mobile-nav__content .main-menu__list ul {
	display: none;
	border-top: 1px solid RGBA(var(--firdip-white-rgb, 255, 255, 255), 0.1);
}

.mobile-nav__content .main-menu__list ul li > a {
	padding-right: 1em;
}

.mobile-nav__content .main-menu__list li:not(:last-child) {
	border-bottom: 1px solid RGBA(var(--firdip-white-rgb, 255, 255, 255), 0.1);
}

.mobile-nav__content .main-menu__list li > a {
	display: flex;
	justify-content: space-between;
	line-height: 30px;
	color: var(--firdip-white, #fff);
	font-size: 12px;
	text-transform: uppercase;
	font-weight: 500;
	height: 46px;
	letter-spacing: var(--firdip-letter-space, 0.1em);
	align-items: center;
	transition: 500ms;
}

.mobile-nav__content .main-menu__list li a.expanded {
	color: var(--firdip-base, #CA4445);
}

.mobile-nav__content .main-menu__list li a button {
	width: 30px;
	height: 30px;
	background-color: var(--firdip-base, #CA4445);
	border: none;
	outline: none;
	color: var(--firdip-white, #fff);
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	transform: rotate(90deg);
	transition: transform 500ms ease;
}

.mobile-nav__content .main-menu__list li a button.expanded {
	transform: rotate(0deg);
	background-color: var(--firdip-white, #fff);
	color: var(--firdip-black, #171818);
}

.mobile-nav__social {
	display: flex;
	align-items: center;
}
.mobile-nav__social a {
	font-size: 16px;
	color: var(--firdip-white, #fff);
	transition: 500ms;
}
.mobile-nav__social a + a {
	margin-right: 20px;
}
.mobile-nav__social a:hover {
	color: var(--firdip-base, #CA4445);
}

.mobile-nav__contact {
	margin-bottom: 0;
	margin-top: 20px;
	margin-bottom: 20px;
}
.mobile-nav__contact li {
	color: var(--firdip-white, #fff);
	font-size: 14px;
	font-weight: 500;
	position: relative;
	display: flex;
	align-items: center;
}
.mobile-nav__contact li + li {
	margin-top: 15px;
}
.mobile-nav__contact li a {
	color: inherit;
	transition: 500ms;
}
.mobile-nav__contact li a:hover {
	color: var(--firdip-base, #CA4445);
}
.mobile-nav__contact li > i {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background-color: var(--firdip-base, #CA4445);
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	font-size: 12px;
	margin-left: 10px;
	color: var(--firdip-white, #fff);
}

.mobile-nav__container .main-menu__logo,
.mobile-nav__container .main-menu__right {
	display: none;
}

/*--------------------------------------------------------------
# Search Popup
--------------------------------------------------------------*/
.search-popup {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	right: 0;
	z-index: -2;
	-webkit-transition: all 1s ease;
	-khtml-transition: all 1s ease;
	-moz-transition: all 1s ease;
	-ms-transition: all 1s ease;
	-o-transition: all 1s ease;
	transition: all 1s ease;
}
.search-popup__overlay {
	position: fixed;
	width: 224vw;
	height: 224vw;
	top: calc(90px - 112vw);
	left: calc(50% - 112vw);
	z-index: 3;
	display: block;
	-webkit-border-radius: 50%;
	-khtml-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	border-radius: 50%;
	-webkit-transform: scale(0);
	-khtml-transform: scale(0);
	-moz-transform: scale(0);
	-ms-transform: scale(0);
	-o-transform: scale(0);
	transform: scale(0);
	-webkit-transform-origin: center;
	transform-origin: center;
	-webkit-transition: transform 0.8s ease-in-out;
	-khtml-transition: transform 0.8s ease-in-out;
	-moz-transition: transform 0.8s ease-in-out;
	-ms-transition: transform 0.8s ease-in-out;
	-o-transition: transform 0.8s ease-in-out;
	transition: transform 0.8s ease-in-out;
	transition-delay: 0s;
	transition-delay: 0.3s;
	-webkit-transition-delay: 0.3s;
	background-color: #000;
	opacity: 0.9;
	cursor: url(../images/close.png), auto;
}
@media (max-width: 767px) {
	.search-popup__overlay {
		position: absolute;
		top: 0;
		right: 0;
		left: 0;
		bottom: 0;
		transform: none;
		width: 100%;
		height: 100%;
		border-radius: 0;
		transform: translateY(-110%);
	}
}
.search-popup__content {
	position: fixed;
	width: 0;
	max-width: 560px;
	padding: 30px 15px;
	right: 50%;
	top: 50%;
	opacity: 0;
	z-index: 3;
	-webkit-transform: translate(50%, -50%);
	-khtml-transform: translate(50%, -50%);
	-moz-transform: translate(50%, -50%);
	-ms-transform: translate(50%, -50%);
	-o-transform: translate(50%, -50%);
	transform: translate(50%, -50%);
	-webkit-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
	-khtml-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
	-moz-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
	-ms-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
	-o-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
	transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
	transition-delay: 0s, 0.8s, 0s;
	transition-delay: 0s, 0.4s, 0s;
	transition-delay: 0.2s;
	-webkit-transition-delay: 0.2s;
}
.search-popup__form {
	position: relative;
}
.search-popup__form input[type=search],
.search-popup__form input[type=text] {
	width: 100%;
	background-color: var(--firdip-white, #fff);
	font-size: 15px;
	color: var(--firdip-text, #7D8081);
	border: none;
	outline: none;
	height: 66px;
	padding-right: 30px;
}
.search-popup__form .firdip-btn {
	padding: 0;
	width: 66px;
	height: 66px;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	position: absolute;
	top: 0;
	left: -1px;
	border-radius: 0;
}
.search-popup__form .firdip-btn i {
	margin: 0;
}
.search-popup__form .firdip-btn::after {
	background-color: var(--firdip-black, #171818);
}
.search-popup.active {
	z-index: 9999;
}
.search-popup.active .search-popup__overlay {
	top: auto;
	bottom: calc(90px - 112vw);
	-webkit-transform: scale(1);
	-khtml-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
	transition-delay: 0s;
	-webkit-transition-delay: 0s;
	opacity: 0.9;
	-webkit-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
	-khtml-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
	-moz-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
	-ms-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
	-o-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
	transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
}
@media (max-width: 767px) {
	.search-popup.active .search-popup__overlay {
		position: absolute;
		top: 0;
		right: 0;
		left: 0;
		bottom: 0;
		transform: none;
		width: 100%;
		height: 100%;
		border-radius: 0;
		transform: translateY(0%);
	}
}
.search-popup.active .search-popup__content {
	width: 100%;
	opacity: 1;
	transition-delay: 0.7s;
	-webkit-transition-delay: 0.7s;
}

/*--------------------------------------------------------------
# Page Header
--------------------------------------------------------------*/
.page-header-top {
	position: relative;
	z-index: 1;
	padding-top: 100px;
	padding-bottom: 100px;
}
@media (max-width: 991px) {
	.page-header-top {
		padding-top: 50px;
		padding-bottom: 20px;
	}
}
@media (max-width: 767px) {
	.page-header-top {
		padding-top: 50px;
		padding-bottom: 50px;
	}
}
.page-header-top__bg {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	background-repeat: no-repeat;
	background-size: cover;
	z-index: -1;
	mix-blend-mode: normal;
}
.page-header-top::before {
	content: "";
	position: absolute;
	right: 0;
	top: 0;
	width: 100%;
	z-index: 1;
	height: 100%;
	background: rgba(var(--firdip-secondary-rgb, 35, 39, 40), 0.6);
}
.page-header-top .container {
	position: relative;
	z-index: 10;
	text-align: center;
}
.page-header-top__title {
	margin: 0;
	color: var(--firdip-white, #fff);
	text-transform: uppercase;
	margin-bottom: -2px;
	padding-bottom: 0;
	font-style: normal;
	font-weight: 700;
	font-size: 50px;
	line-height: 94%;
}
@media (max-width: 767px) {
	.page-header-top__title {
		font-size: 40px;
	}
}

.firdip-breadcrumb {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	margin: 0;
}
@media (min-width: 768px) {
	.firdip-breadcrumb {
		margin-bottom: 7px;
	}
}
.firdip-breadcrumb li {
	display: flex;
	align-items: center;
}
.firdip-breadcrumb li:not(:last-of-type)::after {
	content: "//";
	position: relative;
	top: 0px;
	margin-right: 7px;
	margin-left: 7px;
	color: var(--firdip-base, #CA4445);
	font-size: 16px;
	font-weight: 600;
}
.firdip-breadcrumb li span,
.firdip-breadcrumb li a {
	display: inline-flex;
	color: var(--firdip-white, #fff);
	font-size: 16px;
	font-weight: 600;
	line-height: 293.75%;
	text-transform: uppercase;
}
.firdip-breadcrumb li a:hover {
	color: var(--firdip-base, #CA4445);
}

.pronation_widget {
	margin-top: 30px;
}
.pronation_widget ul {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	margin-right: 0;
	padding-right: 0;
	margin-bottom: 0;
}
.pronation_widget ul a {
	display: inline-block;
	padding: 0.5px 20px;
	border: 1px solid var(--firdip-border-color, #F4F2EE);
	color: var(--firdip-secondary, #232728);
	transition: all 500ms ease-in-out;
	font-size: 20px;
	line-height: 235%;
	font-size: 20px;
	font-weight: 600;
}
.pronation_widget ul a.active, .pronation_widget ul a:hover {
	background-color: var(--firdip-base, #CA4445);
	color: var(--firdip-white, #fff);
	border: 1px solid var(--firdip-base, #CA4445);
}

/*--------------------------------------------------------------
# Google Map
--------------------------------------------------------------*/
.google-map {
	position: relative;
}
.google-map iframe {
	position: relative;
	display: block;
	border: none;
	height: 355px;
	width: 100%;
	mix-blend-mode: luminosity;
}
.google-map__contact {
	overflow: hidden;
	background-color: #D9D9D9;
}

/*--------------------------------------------------------------
# Client Carousel
--------------------------------------------------------------*/
.client-carousel {
	padding: 30px 0;
	position: relative;
	background: var(--firdip-white, #fff);
}
@media (min-width: 992px) {
	.client-carousel {
		padding: 50px 0;
	}
}
.client-carousel__one__item img {
	opacity: 0.2;
	transition: all 500ms ease;
	max-width: 100%;
	width: auto !important;
}
.client-carousel__one__item:hover img {
	opacity: 1;
}
.client-carousel__top {
	margin-bottom: 55px;
	position: relative;
	z-index: 1;
}
.client-carousel__top::before {
	position: absolute;
	right: 0;
	top: 0;
	left: 0;
	bottom: 0;
	margin: auto;
	width: 100%;
	content: "";
	height: 1px;
	background-color: #EFE6E1;
	z-index: -1;
}
.client-carousel__title {
	font-style: normal;
	font-weight: 600;
	font-size: 16px;
	line-height: normal;
	text-transform: uppercase;
	color: var(--firdip-secondary, #232728);
	position: relative;
	display: inline-block;
	background: var(--firdip-white, #fff);
	padding: 0px 20px;
}
.client-carousel__bg {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0px;
	background-repeat: no-repeat;
	background-size: cover;
	z-index: -1;
}

.client-carousel-one {
	position: relative;
	background: var(--firdip-white, #fff);
	padding: 0 0 60px;
}
.client-carousel-one .client-carousel__one {
	padding: 74px 0 0;
}
.client-carousel-one .owl-theme .owl-nav {
	position: absolute;
	right: 0;
	left: 0;
	top: 0;
	margin: auto;
	z-index: 2;
	line-height: 0.8;
}
.client-carousel-one .owl-theme .owl-nav button {
	width: 26px;
	height: 27px;
	background-color: var(--firdip-gray, #DCCEC6);
	margin: 0 2.5px;
	padding: 0;
	transition: all 500ms ease;
	font-size: 12px;
	color: var(--firdip-black, #171818);
	text-align: center;
	font-size: 12px;
	line-height: 27px;
	border-radius: 0;
}
.client-carousel-one .owl-theme .owl-nav button:hover {
	background-color: var(--firdip-base, #CA4445);
	color: var(--firdip-white, #fff);
}
.client-carousel-one .owl-theme .owl-nav::before {
	position: absolute;
	right: 0;
	top: 0;
	left: 0;
	bottom: 0;
	margin: auto;
	width: 100%;
	content: "";
	height: 1px;
	background-color: var(--firdip-border-color, #F4F2EE);
	z-index: -1;
}
.client-carousel-one .owl-theme .owl-nav::after {
	position: absolute;
	right: 0;
	top: 0;
	left: 0;
	bottom: 0;
	margin: auto;
	z-index: -1;
	width: 110px;
	content: "";
	height: 1px;
	background-color: var(--firdip-white, #fff);
}
.client-carousel-one .client-carousel__one__item {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 103px;
	transition: all 500ms ease;
}
.client-carousel-one .client-carousel__one__item img {
	transition: all 500ms ease;
	opacity: 0.2;
	max-width: 100%;
	width: auto;
}
.client-carousel-one .client-carousel__one__item:hover img {
	opacity: 0.6;
}

.client-carousel__three {
	padding: 380px 0px 120px;
	background: var(--firdip-base, #CA4445);
	position: relative;
	z-index: 1;
}

/*--------------------------------------------------------------
# Hero Slider
--------------------------------------------------------------*/
/**Hero Section One**/
.main-slider-one {
	position: relative;
}
.main-slider-one__carousel {
	position: relative;
	width: 100%;
}
.main-slider-one__carousel .owl-dots {
	left: 70px;
	margin: auto 0;
	position: absolute;
	text-align: right;
	bottom: 1%;
	transform: translateY(0%);
}
@media (max-width: 767px) {
	.main-slider-one__carousel .owl-dots {
		display: flex;
		align-items: center;
		justify-content: center;
		width: auto;
		margin: auto;
		gap: 30px;
		right: 15%;
		top: 72%;
	}
}
.main-slider-one__carousel .owl-dots .owl-dot {
	display: block;
	margin: 30px 0;
}
.main-slider-one__carousel .owl-dots .owl-dot span {
	width: 9.98px;
	height: 9.98px;
	background: #8B3434;
	display: block;
	border-radius: 50%;
	margin: 0;
	-webkit-transition: all 300ms ease;
	transition: all 300ms ease;
	position: relative;
}
.main-slider-one__carousel .owl-dots .owl-dot span::after {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	background-color: rgba(var(--firdip-white-rgb, 255, 255, 255), 0.4);
	transform: scale(2.3);
	border-radius: 50%;
	visibility: hidden;
	opacity: 0;
}
.main-slider-one__carousel .owl-dots .owl-dot:hover span,
.main-slider-one__carousel .owl-dots .owl-dot.active span {
	background: var(--firdip-white, #fff);
}
.main-slider-one__carousel .owl-dots .owl-dot:hover span::after,
.main-slider-one__carousel .owl-dots .owl-dot.active span::after {
	visibility: visible;
	opacity: 1;
	z-index: 1;
}
.main-slider-one__item {
	position: relative;
	z-index: 3;
	height: 859px;
	padding-top: 240px;
	padding-bottom: 240px;
}
@media (max-width: 991px) {
	.main-slider-one__item {
		height: auto;
		padding-top: 140px;
		padding-bottom: 140px;
	}
}
.main-slider-one__item::after {
	content: "";
	width: 320px;
	height: 330px;
	position: absolute;
	left: 0;
	bottom: 0;
	background: var(--firdip-white, #fff);
	clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}
@media (max-width: 767px) {
	.main-slider-one__item::after {
		display: none;
	}
}
.main-slider-one__item::before {
	content: "";
	width: 235px;
	height: 250px;
	position: absolute;
	left: 35px;
	bottom: 0;
	background: var(--firdip-base, #CA4445);
	clip-path: polygon(100% 0, 0% 100%, 100% 100%);
	z-index: 1;
}
@media (max-width: 767px) {
	.main-slider-one__item::before {
		display: none;
	}
}
.main-slider-one__bg {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	background-position: center center;
}
.main-slider-one__bg::before {
	position: absolute;
	right: 0;
	top: 0;
	width: 100%;
	height: 100%;
	content: "";
	background: linear-gradient(-90.17deg, #181818 67.57%, rgba(24, 24, 24, 0) 101.44%);
	opacity: 0.8;
}
.main-slider-one__content {
	position: relative;
	display: inline-block;
	z-index: 3;
}
.main-slider-one__content::after {
	position: absolute;
	top: -80px;
	content: "";
	bottom: -80px;
	right: -80px;
	width: 0%;
	background: linear-gradient(-90.37deg, rgba(202, 68, 69, 0.99) -7.36%, rgba(202, 68, 69, 0) 100.88%);
	mix-blend-mode: color-dodge;
	opacity: 0.4;
	transition: all 500ms ease-in-out;
	z-index: -1;
}
@media (max-width: 1080px) {
	.main-slider-one__content::after {
		display: none;
	}
}
.main-slider-one__content::before {
	position: absolute;
	right: -80px;
	bottom: -80px;
	top: -80px;
	content: "";
	width: 4px;
	background: var(--firdip-base, #CA4445);
}
@media (max-width: 1080px) {
	.main-slider-one__content::before {
		display: none;
	}
}
.main-slider-one__title {
	color: var(--firdip-white, #fff);
	line-height: 1;
	text-transform: uppercase;
	display: inline-block;
	overflow: hidden;
	margin: 0 0 7px;
	max-width: 1100px;
	width: 100%;
	opacity: 0;
	transition: transform 1200ms ease, opacity 1200ms ease;
	transform: translateX(-200px);
	font-style: normal;
	font-weight: 800;
	font-size: 50px;
	line-height: 111%;
}
@media (max-width: 991px) {
	.main-slider-one__title {
		font-size: 70px;
	}
}
@media (max-width: 767px) {
	.main-slider-one__title {
		font-size: 50px;
	}
}
.main-slider-one__text {
	font-style: normal;
	font-weight: 500;
	font-size: 18px;
	line-height: 200%;
	margin-bottom: 38px;
	padding-bottom: 0;
	color: var(--firdip-white, #fff);
	max-width: 800px;
	width: 100%;
	opacity: 0;
	transition: transform 1500ms ease, opacity 1500ms ease;
	transform: translateX(-200px);
}
.main-slider-one__btn {
	position: relative;
	z-index: 5;
	overflow: hidden;
	opacity: 0;
	transform-origin: bottom;
	transform: translateX(-200px);
	transition: all 1300ms ease;
}
.main-slider-one__btn__link {
	color: var(--firdip-secondary, #232728);
}
.main-slider-one__btn__link::before {
	background: var(--firdip-white, #fff);
}
.main-slider-one .active .main-slider-one__content::after {
	transition-delay: 1200ms;
	width: 100%;
}
.main-slider-one .active .main-slider-one__title {
	opacity: 1;
	transform: translateX(0);
	transition-delay: 1300ms;
}
.main-slider-one .active .main-slider-one__text {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 1500ms;
}
.main-slider-one .active .main-slider-one__btn {
	opacity: 1;
	transform: translateX(0px);
	transition-delay: 1700ms;
}

/**Hero Section Two**/
.main-slider-two {
	position: relative;
}
.main-slider-two__inner {
	height: 824px;
}
@media (max-width: 1199px) {
	.main-slider-two__inner {
		height: 832px;
	}
}
@media (max-width: 991px) {
	.main-slider-two__inner {
		height: auto;
	}
}
.main-slider-two .slick-dots {
	max-width: 290px;
	display: flex;
	justify-content: center;
	gap: 30px;
	position: absolute;
	right: 28%;
	counter-reset: mainSliderTwoCount;
	background: var(--firdip-gray, #DCCEC6);
	padding: 25px 85px;
}
@media (max-width: 991px) {
	.main-slider-two .slick-dots {
		position: relative;
		bottom: 0;
	}
}
@media (max-width: 1199px) {
	.main-slider-two .slick-dots {
		right: 0px;
	}
}
@media (max-width: 575px) {
	.main-slider-two .slick-dots {
		max-width: 220px;
	}
}
.main-slider-two .slick-dots li > button {
	counter-increment: mainSliderTwoCount;
	width: auto;
	height: auto;
}
.main-slider-two .slick-dots li > button::before {
	font-style: normal;
	font-weight: 700;
	font-size: 16px;
	line-height: 19px;
	color: var(--firdip-white, #fff);
	opacity: 1;
	content: counters(mainSliderTwoCount, ".", decimal-leading-zero);
}
.main-slider-two .slick-dots .slick-active button::before {
	color: var(--firdip-secondary, #232728);
}
.main-slider-two .hero-slider__slick-button {
	outline: 0;
	border: 0;
	position: relative;
	position: absolute;
	background: transparent;
	bottom: 0;
	overflow: hidden;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 16px;
	font-weight: 500;
	line-height: normal;
	text-transform: uppercase;
	transition: all 500ms ease;
	z-index: 11;
	color: var(--firdip-white, #fff);
}
.main-slider-two .hero-slider__slick-button:hover {
	color: var(--firdip-secondary, #232728);
}
@media (max-width: 991px) {
	.main-slider-two .slick-dotted.slick-slider {
		margin-bottom: 0;
	}
}
.main-slider-two .hero-slider__slick-button--prev {
	right: 31%;
}
@media (max-width: 1199px) {
	.main-slider-two .hero-slider__slick-button--prev {
		right: 3%;
	}
}
@media (max-width: 991px) {
	.main-slider-two .hero-slider__slick-button--prev {
		right: 5%;
		bottom: 3.5%;
	}
}
@media (max-width: 575px) {
	.main-slider-two .hero-slider__slick-button--prev {
		right: 5%;
		bottom: 4%;
	}
}
.main-slider-two .hero-slider__slick-button--next {
	right: 48%;
}
@media (max-width: 1199px) {
	.main-slider-two .hero-slider__slick-button--next {
		right: 26%;
	}
}
@media (max-width: 991px) {
	.main-slider-two .hero-slider__slick-button--next {
		right: 34%;
		bottom: 3.5%;
	}
}
@media (max-width: 767px) {
	.main-slider-two .hero-slider__slick-button--next {
		right: 40%;
		bottom: 4%;
	}
}
@media (max-width: 575px) {
	.main-slider-two .hero-slider__slick-button--next {
		right: 185px;
		bottom: 4%;
	}
}
.main-slider-two__bg {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	overflow: hidden;
	z-index: -1;
}
.main-slider-two__bg::before {
	mix-blend-mode: color;
	position: absolute;
	right: 0;
	top: 0;
	width: 100%;
	height: 100%;
	content: "";
	background-color: var(--firdip-text-gray, #EFE6E1);
}
.main-slider-two::after {
	position: absolute;
	width: 179px;
	height: 475px;
	left: 15%;
	top: 5%;
	content: "";
	border: 3px solid var(--firdip-base, #CA4445);
	z-index: -1;
	animation: topBottom 3s ease-in-out infinite;
}
.main-slider-two__social {
	position: absolute;
	right: 88px;
	display: flex;
	gap: 30px;
	flex-direction: column;
	top: 50%;
	transform: translateY(-50%);
}
@media (max-width: 1400px) {
	.main-slider-two__social {
		right: 10px;
	}
}
@media (max-width: 1199px) {
	.main-slider-two__social {
		display: none;
	}
}
.main-slider-two__social a {
	color: var(--firdip-secondary, #232728);
	font-size: 16px;
	line-height: 1;
	display: flex;
	align-items: center;
}
.main-slider-two__social a:hover {
	color: var(--firdip-base, #CA4445);
}
.main-slider-two__social a i {
	transform: rotate(90deg);
}
.main-slider-two__item {
	padding-top: 90px;
	padding-bottom: 137px;
}
@media (max-width: 991px) {
	.main-slider-two__item {
		padding-bottom: 100px;
	}
}
@media (max-width: 767px) {
	.main-slider-two__item {
		padding-top: 80px;
		padding-bottom: 80px;
	}
}
.main-slider-two__item__inner {
	position: relative;
	z-index: 3;
	overflow: hidden;
	background: var(--firdip-white, #fff);
	padding: 80px 60px 80px 55px;
	border-bottom: 4px solid var(--firdip-base, #CA4445);
}
@media (max-width: 767px) {
	.main-slider-two__item__inner {
		padding: 50px 40px 50px 40px;
	}
}
@media (max-width: 575px) {
	.main-slider-two__item__inner {
		padding: 40px 30px 40px;
	}
}
.main-slider-two__content {
	position: relative;
}
.main-slider-two__content__box {
	overflow: hidden;
}
.main-slider-two__sub-title {
	margin-top: -10px;
	margin-bottom: 5px;
	padding-bottom: 0;
	font-style: normal;
	font-weight: 500;
	font-size: 14px;
	line-height: 257%;
	text-transform: capitalize;
	color: var(--firdip-base, #CA4445);
	opacity: 0;
	transition: transform 1200ms ease, opacity 1200ms ease;
	transform: translateY(200px);
}
.main-slider-two__title {
	text-transform: capitalize;
	display: inline-block;
	overflow: hidden;
	margin: 0 0 10px;
	font-style: normal;
	font-weight: 800;
	font-size: 60px;
	line-height: 100%;
	color: var(--firdip-secondary, #232728);
	padding-bottom: 0;
	opacity: 0;
	transition: transform 1400ms ease, opacity 1200ms ease;
	transform: translateY(200px);
}
@media (max-width: 767px) {
	.main-slider-two__title {
		font-size: 45px;
	}
}
@media (max-width: 575px) {
	.main-slider-two__title {
		font-size: 35px;
	}
}
.main-slider-two__text {
	font-style: normal;
	font-weight: 500;
	font-size: 16px;
	line-height: 200%;
	margin-bottom: 30px;
	padding-bottom: 0;
	color: var(--firdip-text, #7D8081);
	opacity: 0;
	transition: transform 1500ms ease, opacity 1200ms ease;
	transform: translateY(200px);
}
.main-slider-two__btn {
	position: relative;
	display: flex;
	justify-content: start;
	align-items: center;
	z-index: 5;
	gap: 29px;
	opacity: 0;
	transition: transform 1500ms ease, opacity 1200ms ease;
	transform: translateY(200px);
}
.main-slider-two__btn__icon {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: var(--firdip-secondary, #232728);
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 10px;
	color: var(--firdip-white, #fff);
	position: relative;
	z-index: 1;
	transition: all 0.4s ease-in-out;
}
.main-slider-two__btn__icon::after {
	content: "";
	border-radius: 50%;
	border: 2px solid var(--firdip-text-gray, #EFE6E1);
	background: transparent;
	top: 0;
	bottom: 0;
	left: 0;
	position: absolute;
	right: 0;
	animation: scaleOne 4s ease-in-out infinite;
	transition: all 0.4s ease-in-out;
	z-index: -2;
}
.main-slider-two__btn__icon:hover {
	background: var(--firdip-base, #CA4445);
	color: var(--firdip-white, #fff);
}
.main-slider-two__btn__icon:hover::after {
	border: 1px solid var(--firdip-base, #CA4445);
}
.main-slider-two__thumb {
	position: relative;
	z-index: 1;
	background: var(--firdip-white, #fff);
}
@media (max-width: 991px) {
	.main-slider-two__thumb {
		display: none;
	}
}
.main-slider-two__thumb img {
	opacity: 0;
	transform: scale(0.5);
	transition: transform 1500ms ease, opacity 1500ms ease;
}
.main-slider-two .main-slider-two__thumb__carousel .item {
	transform: rotate(90deg);
	width: 170px;
	height: 125px;
}
.main-slider-two .slick-current + .slick-active .main-slider-two__meta-thumb::after {
	visibility: visible !important;
	opacity: 1 !important;
}
.main-slider-two__thumb__carousel {
	width: 200px;
	position: relative;
	margin-top: -346px;
	margin-right: auto;
	margin-left: 170px;
	transform: rotate(-90deg);
	height: 550px;
	overflow: hidden;
}
@media (max-width: 991px) {
	.main-slider-two__thumb__carousel {
		display: none;
	}
}
.main-slider-two__meta-thumb {
	position: relative;
	z-index: 1;
	width: 170px;
	height: 125px;
}
.main-slider-two__meta-thumb img {
	object-fit: cover;
	width: 100%;
}
.main-slider-two__meta-thumb::after {
	content: "";
	width: 100%;
	height: 102%;
	background: rgba(var(--firdip-base-rgb, 202, 68, 69), 0.8);
	position: absolute;
	top: 0;
	right: 0;
	visibility: hidden;
	opacity: 0;
}
.main-slider-two .main-slider-two__carousel-thumb .slick-slide {
	margin-bottom: 62px;
	display: inline-block;
}
.main-slider-two .slick-active .main-slider-two__thumb img {
	opacity: 1;
	transform: scale(1);
	transition-delay: 1100ms;
}
.main-slider-two .slick-active .main-slider-two__sub-title {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 1300ms;
}
.main-slider-two .slick-active .main-slider-two__title {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 1500ms;
}
.main-slider-two .slick-active .main-slider-two__text {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 1500ms;
}
.main-slider-two .slick-active .main-slider-two__btn {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 1500ms;
}

/**Hero Section Three**/
.main-slider-three {
	position: relative;
	overflow: hidden;
}
.main-slider-three__carousel {
	position: relative;
	width: 100%;
}
@media (max-width: 767px) {
	.main-slider-three__carousel.owl-carousel .owl-nav {
		display: none;
	}
}
.main-slider-three__carousel.owl-carousel .owl-nav .owl-prev {
	left: 120px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}
@media (max-width: 1199px) {
	.main-slider-three__carousel.owl-carousel .owl-nav .owl-prev {
		left: 10px;
	}
}
.main-slider-three__carousel.owl-carousel .owl-nav .owl-next {
	right: 120px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}
@media (max-width: 1199px) {
	.main-slider-three__carousel.owl-carousel .owl-nav .owl-next {
		right: 10px;
	}
}
.main-slider-three__carousel.owl-carousel .owl-nav button {
	transition: all 400ms ease;
	width: 52px;
	height: 52px;
	outline: none;
	box-shadow: none;
	border: 1px solid rgba(var(--firdip-white-rgb, 255, 255, 255), 0.2);
	background-color: transparent;
	border-radius: 50%;
	display: block;
	color: var(--firdip-white, #fff);
	font-size: 18px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.main-slider-three__carousel.owl-carousel .owl-nav button:hover {
	background-color: var(--firdip-base, #CA4445);
	border: 1px solid var(--firdip-base, #CA4445);
}
.main-slider-three__carousel .owl-dots {
	display: flex;
	justify-content: center;
	align-items: center;
	right: 45%;
	gap: 30px;
	position: absolute;
	bottom: 150px;
	transform: translateX(-50%);
}
@media (max-width: 991px) {
	.main-slider-three__carousel .owl-dots {
		bottom: 50px;
		transform: translateX(10%);
	}
}
.main-slider-three__carousel .owl-dots .owl-dot {
	display: block;
	margin: 30px 0;
}
.main-slider-three__carousel .owl-dots .owl-dot span {
	width: 9.98px;
	height: 9.98px;
	background: var(--firdip-white, #fff);
	display: block;
	border-radius: 50%;
	margin: 0;
	-webkit-transition: all 300ms ease;
	transition: all 300ms ease;
	position: relative;
}
.main-slider-three__carousel .owl-dots .owl-dot span::after {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	background: rgba(255, 255, 255, 0.1);
	transform: scale(2.3);
	border-radius: 50%;
	visibility: hidden;
	opacity: 0;
}
.main-slider-three__carousel .owl-dots .owl-dot:hover span,
.main-slider-three__carousel .owl-dots .owl-dot.active span {
	background: var(--firdip-base, #CA4445);
}
.main-slider-three__carousel .owl-dots .owl-dot:hover span::after,
.main-slider-three__carousel .owl-dots .owl-dot.active span::after {
	visibility: visible;
	opacity: 1;
	z-index: 1;
}
.main-slider-three__item {
	position: relative;
	overflow: hidden;
}
.main-slider-three__bg {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	overflow: hidden;
	z-index: -1;
}
.main-slider-three__bg::before {
	position: absolute;
	right: 0;
	top: 0;
	width: 100%;
	height: 100%;
	content: "";
	background: linear-gradient(-90.17deg, #181818 67.57%, rgba(24, 24, 24, 0) 101.44%);
	opacity: 0.8;
}
.main-slider-three .container {
	position: relative;
	z-index: 3;
}
.main-slider-three__content {
	position: relative;
	z-index: 3;
	overflow: hidden;
	height: 850px;
	padding-top: 300px;
}
@media (max-width: 991px) {
	.main-slider-three__content {
		height: auto;
		padding-top: 200px;
		padding-bottom: 150px;
	}
}
.main-slider-three__content__box {
	position: relative;
	overflow: hidden;
}
.main-slider-three__content__inner {
	overflow: hidden;
	position: relative;
}
.main-slider-three__content::before {
	position: absolute;
	right: 15px;
	top: 0;
	left: 15px;
	height: 0%;
	content: "";
	background: rgba(239, 230, 225, 0.08);
	z-index: -1;
	transition: all 500ms ease-in-out;
}
.main-slider-three__sub-title {
	text-align: center;
	font-style: normal;
	font-weight: 500;
	font-size: 14px;
	line-height: 257%;
	text-transform: uppercase;
	color: var(--firdip-base, #CA4445);
	opacity: 0;
	transition: transform 1200ms ease, opacity 1200ms ease;
	transform: translateY(-200px);
	overflow: hidden;
}
.main-slider-three__title {
	max-width: 840px;
	width: 100%;
	margin-right: auto;
	margin-left: auto;
	text-align: center;
	padding-bottom: 0;
	font-style: normal;
	font-weight: 700;
	font-size: 70px;
	line-height: 114%;
	margin-bottom: 60px;
	text-transform: uppercase;
	color: var(--firdip-white, #fff);
	opacity: 0;
	transition: transform 1300ms ease, opacity 1300ms ease;
	transform: translateY(200px);
}
@media (max-width: 991px) {
	.main-slider-three__title {
		font-size: 50px;
	}
}
@media (max-width: 575px) {
	.main-slider-three__title {
		margin-bottom: 30px;
	}
}
.main-slider-three__title span {
	display: block;
	position: relative;
}
.main-slider-three__title span::after {
	content: "";
	top: -7px;
	position: absolute;
	right: 0;
	bottom: -7px;
	left: 0;
	background: rgba(255, 255, 255, 0.09);
	border-bottom: 1px solid var(--firdip-base, #CA4445);
}
.main-slider-three__title span::before {
	content: "";
	position: absolute;
	bottom: -7px;
	right: 0;
	left: 0;
	height: 2px;
	background: var(--firdip-base, #CA4445);
}
.main-slider-three__btn {
	position: relative;
	display: flex;
	overflow: hidden;
	justify-content: center;
	align-items: center;
	z-index: 5;
	gap: 29px;
	opacity: 0;
	transform: perspective(400px) rotateY(0deg) translateY(80px);
	transform-origin: bottom;
	transition: all 1500ms ease;
}
.main-slider-three__btn__link::after {
	background: var(--firdip-white, #fff);
}
.main-slider-three__btn__link:hover {
	color: var(--firdip-secondary, #232728);
}
.main-slider-three__btn__icon {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: var(--firdip-white, #fff);
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 10px;
	color: var(--firdip-base, #CA4445);
	position: relative;
	z-index: 1;
	transition: all 0.4s ease-in-out;
}
.main-slider-three__btn__icon::after {
	content: "";
	border-radius: 50%;
	border: 1px solid #FFFFFF;
	background: transparent;
	top: 0;
	bottom: 0;
	left: 0;
	position: absolute;
	right: 0;
	animation: scaleOne 4s ease-in-out infinite;
	transition: all 0.4s ease-in-out;
}
.main-slider-three__btn__icon:hover {
	background: var(--firdip-base, #CA4445);
	color: var(--firdip-white, #fff);
}
.main-slider-three__btn__icon:hover::after {
	border: 1px solid var(--firdip-base, #CA4445);
}
.main-slider-three .active .main-slider-three__content::before {
	transition-delay: 1000ms;
	height: 100%;
}
.main-slider-three .active .main-slider-three__sub-title {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 1300ms;
}
.main-slider-three .active .main-slider-three__title {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 1500ms;
}
.main-slider-three .active .main-slider-three__btn {
	opacity: 1;
	transform: perspective(400px) rotateY(0deg) translateY(0px);
	transition-delay: 1700ms;
}

/*--------------------------------------------------------------
# Feature Section
--------------------------------------------------------------*/
/**Feature Section One**/
.feature-one {
	padding: 120px 0px;
	background: var(--firdip-white, #fff);
	position: relative;
}
@media (max-width: 991px) {
	.feature-one {
		padding: 100px 0px;
	}
}
@media (max-width: 767px) {
	.feature-one {
		padding: 80px 0px;
	}
}
.feature-one__item {
	border: 1px solid #EFE6E1;
	background: var(--firdip-white, #fff);
	padding: 40px 30px;
	transition: all 0.4s ease-in-out;
	position: relative;
	z-index: 1;
}
.feature-one__item::after {
	width: 100%;
	height: 0%;
	position: absolute;
	content: "";
	background: var(--firdip-base, #CA4445);
	top: 0;
	right: 0;
	transition: all 0.4s ease-in-out;
	z-index: -1;
}
.feature-one__item__icon {
	font-size: 45px;
	color: var(--firdip-text, #7D8081);
	line-height: 1;
	margin-bottom: 22px;
	transition: all 0.4s ease-in-out;
}
.feature-one__item__title {
	font-style: normal;
	font-weight: 700;
	font-size: 20px;
	line-height: 23px;
	color: var(--firdip-secondary, #232728);
	margin-bottom: 10px;
	padding-bottom: 0;
	transition: all 0.4s ease-in-out;
	text-transform: uppercase;
}
.feature-one__item__text {
	font-style: normal;
	font-weight: 500;
	font-size: 16px;
	line-height: 156%;
	color: var(--firdip-text, #7D8081);
	margin-bottom: -4px;
	padding-bottom: 0;
	transition: all 0.4s ease-in-out;
}
.feature-one__item:hover::after {
	height: 100%;
}
.feature-one__item:hover .feature-one__item__icon, .feature-one__item:hover .feature-one__item__title, .feature-one__item:hover .feature-one__item__text {
	color: var(--firdip-white, #fff);
}

/**Feature Section Two**/
.feature-two {
	position: relative;
	z-index: 1;
	padding: 120px 0px;
}
@media (max-width: 991px) {
	.feature-two {
		padding: 100px 0px;
	}
}
@media (max-width: 767px) {
	.feature-two {
		padding: 80px 0px;
	}
}
.feature-two__bg {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0px;
	background-repeat: no-repeat;
	background-size: cover;
	z-index: -1;
}
.feature-two__item {
	background: var(--firdip-white, #fff);
	position: relative;
}
.feature-two__item__top {
	background: var(--firdip-text-gray, #EFE6E1);
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: all 0.4s ease-in-out;
}
.feature-two__item__title {
	color: var(--firdip-secondary, #232728);
	margin-bottom: 0;
	padding-bottom: 0;
	font-style: normal;
	font-weight: 700;
	font-size: 20px;
	line-height: 23px;
	padding-right: 40px;
	padding-left: 40px;
	text-transform: uppercase;
	transition: all 0.4s ease-in-out;
}
.feature-two__item__icon {
	padding: 20px;
	background: var(--firdip-white, #fff);
	font-size: 35px;
	color: var(--firdip-base, #CA4445);
	line-height: 1;
	border-bottom: 1px solid var(--firdip-text-gray, #EFE6E1);
	display: flex;
	justify-content: center;
	align-items: center;
}
.feature-two__item__text {
	margin-top: -5px;
	margin-bottom: -5px;
	padding: 30px 40px 30px;
	font-style: normal;
	font-weight: 500;
	font-size: 16px;
	line-height: 156%;
}
.feature-two__item:hover .feature-two__item__top {
	background: var(--firdip-secondary, #232728);
}
.feature-two__item:hover .feature-two__item__title {
	color: var(--firdip-white, #fff);
}
.feature-two__item:hover .feature-two__item__icon i {
	animation: horizontal 1s linear;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
/**About One**/
.about-one {
	padding-bottom: 120px;
	background: var(--firdip-white, #fff);
}
@media (max-width: 991px) {
	.about-one {
		padding-bottom: 100px;
	}
}
@media (max-width: 767px) {
	.about-one {
		padding-bottom: 80px;
	}
}
.about-one__left {
	margin-left: 50px;
}
@media (max-width: 991px) {
	.about-one__left {
		margin-left: 0px;
	}
}
.about-one__thumb {
	position: relative;
	z-index: 1;
}
.about-one__thumb__item {
	position: relative;
	z-index: 1;
}
@media (max-width: 1199px) and (min-width: 991px) {
	.about-one__thumb__item--one img {
		object-fit: cover;
		width: 100%;
	}
}
@media (max-width: 767px) {
	.about-one__thumb__item--one img {
		object-fit: cover;
		width: 100%;
	}
}
.about-one__thumb__item__two {
	position: absolute;
	bottom: -44px;
	left: 0;
}
.about-one__thumb__item__three {
	position: absolute;
	right: -90px;
	bottom: -80px;
	animation: topBottom 4s ease-in-out infinite;
}
.about-one__thumb__funfact {
	margin-top: -48px;
	margin-right: auto;
	margin-left: auto;
	position: relative;
	z-index: 1;
	max-width: 239px;
	width: 100%;
	background: var(--firdip-secondary, #232728);
	border-top: 4px solid var(--firdip-white, #fff);
	border-right: 4px solid var(--firdip-white, #fff);
	border-left: 4px solid var(--firdip-white, #fff);
	padding: 28px 0px;
}
.about-one__thumb__funfact__coun {
	display: flex;
	align-items: center;
	justify-content: center;
	font-style: normal;
	font-weight: 700;
	font-size: 40px;
	line-height: 85%;
	margin-bottom: 14px;
	padding-bottom: 0;
	color: var(--firdip-base, #CA4445);
}
.about-one__thumb__funfact__text {
	font-style: normal;
	font-weight: 600;
	font-size: 18px;
	line-height: 21px;
	text-transform: uppercase;
	color: var(--firdip-white, #fff);
	margin-bottom: -4px;
	padding-bottom: 0;
	text-align: center;
}
.about-one__thumb::after {
	content: "";
	width: 24px;
	height: 361px;
	position: absolute;
	left: 0;
	top: 0;
	background: linear-gradient(-180deg, #CA4445 0%, rgba(202, 68, 69, 0) 100%);
	animation: ping2 4s ease-in-out infinite;
}
.about-one__top {
	margin-bottom: 30px;
}
.about-one__top .sec-title {
	padding-bottom: 20px;
}
.about-one__top__text {
	font-style: normal;
	font-weight: 600;
	font-size: 16px;
	line-height: 188%;
	margin-bottom: 0;
	padding-bottom: 0;
	color: var(--firdip-text, #7D8081);
}
.about-one__feature {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 55px;
	padding-bottom: 30px;
	border-bottom: 1px solid var(--firdip-text-gray, #EFE6E1);
	margin-bottom: 30px;
}
@media (max-width: 575px) {
	.about-one__feature {
		flex-direction: column;
		justify-content: start;
		align-items: start;
	}
}
.about-one__feature__item {
	display: flex;
	align-items: center;
	gap: 22px;
}
.about-one__feature__item:hover .about-one__feature__icon {
	color: var(--firdip-white, #fff);
}
.about-one__feature__item:hover .about-one__feature__icon::after {
	width: 100%;
	height: 100%;
	top: 0%;
	right: 0%;
}
.about-one__feature__icon {
	width: 100%;
	max-width: 70px;
	height: 70px;
	border-radius: 50%;
	background: var(--firdip-text-gray, #EFE6E1);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 38px;
	color: var(--firdip-secondary, #232728);
	position: relative;
	z-index: 1;
	transition: all 0.4s ease-in-out;
}
.about-one__feature__icon::after {
	content: "";
	width: 0%;
	height: 0%;
	position: absolute;
	top: 50%;
	right: 50%;
	background: var(--firdip-base, #CA4445);
	z-index: -1;
	transition: all 0.4s ease-in-out;
	border-radius: 50%;
}
.about-one__feature__title {
	font-style: normal;
	font-weight: 700;
	font-size: 16px;
	line-height: 150%;
	margin-bottom: 0;
	padding-bottom: 0;
	color: var(--firdip-secondary, #232728);
	text-transform: uppercase;
}
.about-one__feature__title a {
	color: inherit;
	background: linear-gradient(to left, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
	transition: all 500ms ease;
}
.about-one__feature__title a:hover {
	background-size: 100% 1px;
}
.about-one__list__item {
	display: flex;
	flex-direction: column;
	margin: 0;
}
.about-one__list__item__content {
	font-weight: 500;
	font-size: 16px;
	line-height: 19px;
	margin-left: -10px;
	margin-bottom: 0;
	padding-bottom: 0;
	color: var(--firdip-text, #7D8081);
	text-transform: capitalize;
}
.about-one__list__item__content i {
	color: var(--firdip-base, #CA4445);
	margin-left: 8px;
	transition: all 0.4s ease-in-out;
}
.about-one__list__item__content:hover i {
	color: var(--firdip-secondary, #232728);
}
.about-one__list__item__content + .about-one__list__item__content {
	margin-top: 18px;
}
.about-one__list__btn {
	margin-top: 47px;
}

/**About two**/
.about-two {
	padding: 120px 0px;
}
@media (max-width: 991px) {
	.about-two {
		padding: 100px 0px;
	}
}
@media (max-width: 767px) {
	.about-two {
		padding: 80px 0px;
	}
}
.about-two__right {
	margin-right: 45px;
}
@media (max-width: 1199px) {
	.about-two__right {
		margin-right: 0px;
	}
	.about-two__right .about-two__thumb__item--one img {
		object-fit: cover;
		width: 100%;
	}
}
.about-two__top {
	margin-bottom: 32px;
}
.about-two__top .sec-title {
	padding-bottom: 20px;
}
.about-two__top__text {
	font-style: normal;
	font-weight: 500;
	font-size: 16px;
	line-height: 188%;
	margin-bottom: 0;
	padding-bottom: 0;
	color: var(--firdip-text, #7D8081);
}
.about-two__box {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	gap: 30px;
	padding: 40px 40px 37px;
}
@media (max-width: 1199px) and (min-width: 991px) {
	.about-two__box {
		padding: 20px;
	}
}
@media (max-width: 575px) {
	.about-two__box {
		flex-direction: column;
		justify-content: start;
		align-items: start;
	}
}
.about-two__box__bg {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	background-repeat: no-repeat;
	background-size: cover;
	z-index: -1;
}
.about-two__box__bg::after {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	right: 0;
	content: "";
	background: rgba(var(--firdip-base-rgb, 202, 68, 69), 0.9);
	z-index: 1;
}
.about-two__box__icon {
	max-width: 85px;
	width: 100%;
	height: 85px;
	background: var(--firdip-white, #fff);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 40px;
	color: var(--firdip-base, #CA4445);
	transition: all 0.4s ease-in-out;
}
.about-two__box__content__title {
	margin-top: -5px;
	font-style: normal;
	font-weight: 600;
	font-size: 24px;
	line-height: 28px;
	margin-bottom: 7px;
	padding-bottom: 0;
	color: var(--firdip-white, #fff);
}
.about-two__box__content__text {
	font-style: normal;
	font-weight: 500;
	font-size: 16px;
	line-height: 188%;
	margin-bottom: -10px;
	padding-bottom: 0;
	color: var(--firdip-white, #fff);
	max-width: 340px;
}
.about-two__box:hover .about-two__box__icon {
	color: var(--firdip-white, #fff);
	background: var(--firdip-secondary, #232728);
}
.about-two__list {
	margin-top: 30px;
	border-top: 1px solid var(--firdip-text-gray, #EFE6E1);
	padding-top: 30px;
	margin-bottom: 47px;
}
.about-two__list__item {
	display: flex;
	flex-direction: column;
	margin: 0;
}
.about-two__list__item__content {
	font-weight: 500;
	font-size: 16px;
	line-height: 19px;
	margin-bottom: 0;
	padding-bottom: 0;
	color: var(--firdip-text, #7D8081);
	text-transform: uppercase;
}
.about-two__list__item__content i {
	color: var(--firdip-base, #CA4445);
	margin-left: 8px;
}
.about-two__list__item__content + .about-two__list__item__content {
	margin-top: 18px;
}
.about-two__thumb {
	position: relative;
	z-index: 1;
}
.about-two__thumb__item {
	position: relative;
	z-index: 1;
}
.about-two__thumb__item--one {
	margin-bottom: 30px;
}
.about-two__thumb__item--two {
	position: relative;
	z-index: -1;
}
.about-two__thumb__funfact {
	background: var(--firdip-base, #CA4445);
	max-width: 223px;
	width: 100%;
	padding: 35px 45px;
	margin-right: auto;
	margin-left: 0;
	position: absolute;
	left: 0;
	bottom: -93px;
}
.about-two__thumb__funfact__coun {
	display: flex;
	align-items: center;
	font-style: normal;
	font-weight: 700;
	font-size: 40px;
	line-height: 85%;
	margin-bottom: 0;
	padding-bottom: 0;
	color: var(--firdip-white, #fff);
	margin-bottom: 10px;
}
.about-two__thumb__funfact__coun span {
	color: inherit;
}
.about-two__thumb__funfact__text {
	font-style: normal;
	font-weight: 600;
	font-size: 18px;
	line-height: 21px;
	margin-bottom: -5px;
	padding-bottom: 0;
	color: var(--firdip-white, #fff);
}
.about-two__thumb__call {
	background: var(--firdip-secondary, #232728);
	padding: 35px 30px;
	box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.1);
	max-width: 366px;
	width: 100%;
	position: absolute;
	bottom: -24px;
	left: 0;
}
.about-two__thumb__call__item {
	display: flex;
	gap: 25px;
	align-items: center;
}
.about-two__thumb__call__icon {
	width: 89px;
	height: 79px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--firdip-base, #CA4445);
	font-size: 44px;
	color: var(--firdip-white, #fff);
}
.about-two__thumb__call__dec {
	font-style: normal;
	font-weight: 500;
	font-size: 20px;
	line-height: normal;
	display: block;
	margin-bottom: 0;
	padding-bottom: 0;
	color: var(--firdip-text, #7D8081);
	text-transform: uppercase;
}
.about-two__thumb__call__number {
	margin-top: -5px;
	font-style: normal;
	font-weight: 700;
	font-size: 30px;
	line-height: 193%;
	margin-bottom: -5px;
	padding-bottom: 0;
	color: var(--firdip-white, #fff);
	background: linear-gradient(to left, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
	transition: all 500ms ease;
}
.about-two__thumb__call__number:hover {
	background-size: 100% 1px;
}

/**About three**/
.about-three {
	padding: 120px 0px;
}
@media (max-width: 991px) {
	.about-three {
		padding: 100px 0px;
	}
}
@media (max-width: 767px) {
	.about-three {
		padding: 80px 0px;
	}
}
.about-three__top {
	margin-bottom: 32px;
}
.about-three__top .sec-title {
	padding-bottom: 20px;
}
.about-three__top__text {
	font-style: normal;
	font-weight: 500;
	font-size: 16px;
	line-height: 188%;
	margin-bottom: 0;
	padding-bottom: 0;
	color: var(--firdip-text, #7D8081);
}
.about-three__feature {
	background: var(--firdip-text-gray, #EFE6E1);
	padding: 30px;
	display: flex;
	align-items: center;
	margin-bottom: 30px;
	border-bottom: 1px solid var(--firdip-text-gray, #EFE6E1);
}
@media (max-width: 767px) {
	.about-three__feature {
		flex-direction: column;
		justify-content: start;
		align-items: start;
		gap: 30px;
	}
}
.about-three__feature__item__top {
	display: flex;
	align-items: center;
	gap: 13px;
	margin-bottom: 12px;
}
.about-three__feature__item__top__title {
	font-style: normal;
	font-weight: 700;
	font-size: 16px;
	line-height: 19px;
	margin-bottom: 0;
	padding-bottom: 0;
}
.about-three__feature__item__top:hover .about-three__feature__item__icon {
	color: var(--firdip-white, #fff);
}
.about-three__feature__item__top:hover .about-three__feature__item__icon::after {
	width: 100%;
	height: 100%;
	top: 0;
	right: 0;
}
.about-three__feature__item__icon {
	max-width: 50px;
	width: 100%;
	height: 50px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	background: var(--firdip-white, #fff);
	font-size: 27px;
	color: var(--firdip-base, #CA4445);
	position: relative;
	z-index: 1;
}
.about-three__feature__item__icon::after {
	position: absolute;
	content: "";
	width: 0%;
	height: 0%;
	border-radius: 50%;
	background: var(--firdip-secondary, #232728);
	right: 50%;
	top: 50%;
	transition: all 0.4s ease-in-out;
	z-index: -1;
}
.about-three__feature__item__text {
	font-style: normal;
	font-weight: 600;
	font-size: 16px;
	line-height: 188%;
	margin-bottom: -8px;
	padding-bottom: 0;
	color: var(--firdip-text, #7D8081);
}
.about-three__feature__item + .about-three__feature__item {
	margin-right: 40px;
	padding-right: 40px;
	border-right: 1px solid var(--firdip-white, #fff);
}
@media (max-width: 767px) {
	.about-three__feature__item + .about-three__feature__item {
		margin-right: 0;
		padding-right: 0px;
		border-right: 0px solid var(--firdip-white, #fff);
	}
}
.about-three__list {
	margin-top: 30px;
	border-top: 1px solid var(--firdip-text-gray, #EFE6E1);
	padding-top: 30px;
	margin-bottom: 47px;
}
.about-three__list__item {
	display: flex;
	flex-direction: column;
	margin: 0;
}
.about-three__list__item__content {
	font-weight: 500;
	font-size: 16px;
	line-height: 19px;
	margin-bottom: 0;
	padding-bottom: 0;
	color: var(--firdip-text, #7D8081);
	text-transform: uppercase;
}
.about-three__list__item__content i {
	color: var(--firdip-base, #CA4445);
	margin-left: 8px;
}
.about-three__list__item__content + .about-three__list__item__content {
	margin-top: 18px;
}
.about-three__thumb {
	position: relative;
	z-index: 1;
}
.about-three__thumb__item {
	position: relative;
	z-index: 1;
}
.about-three__thumb__item--one {
	margin-right: -50px;
	margin-left: 95px;
	position: relative;
	z-index: 1;
}
@media (max-width: 1199px) and (min-width: 991px) {
	.about-three__thumb__item--one {
		margin-right: -100px;
		margin-left: 95px;
	}
	.about-three__thumb__item--one img {
		object-fit: cover;
		width: 100%;
	}
}
@media (max-width: 991px) {
	.about-three__thumb__item--one {
		margin-right: 0px;
		margin-left: 0px;
	}
	.about-three__thumb__item--one img {
		object-fit: cover;
		width: 100%;
	}
}
.about-three__thumb__item--two {
	position: absolute;
	left: 0px;
	bottom: 85px;
}
.about-three__thumb__item--two::after {
	content: "";
	width: 68%;
	height: 100%;
	background-color: var(--firdip-white, #fff);
	position: absolute;
	top: -20px;
	right: -20px;
	z-index: -1;
}
@media (max-width: 991px) {
	.about-three__thumb__item--two::after {
		display: none;
	}
}
@media (max-width: 575px) {
	.about-three__thumb__item--two {
		width: 75%;
	}
}
.about-three__thumb__funfact {
	background: var(--firdip-base, #CA4445);
	max-width: 245px;
	width: 100%;
	padding: 35px 45px;
	margin-right: auto;
	margin-left: 0;
	position: absolute;
	left: 95px;
	bottom: 0px;
	z-index: 2;
}
.about-three__thumb__funfact__coun {
	display: flex;
	align-items: center;
	justify-content: center;
	font-style: normal;
	font-weight: 700;
	font-size: 40px;
	line-height: 85%;
	margin-bottom: 0;
	padding-bottom: 0;
	color: var(--firdip-white, #fff);
	margin-bottom: 10px;
}
.about-three__thumb__funfact__coun span {
	color: inherit;
}
.about-three__thumb__funfact__text {
	font-style: normal;
	font-weight: 600;
	font-size: 18px;
	line-height: 21px;
	margin-bottom: -5px;
	padding-bottom: 0;
	color: var(--firdip-white, #fff);
	text-align: center;
}
.about-three__thumb__funfact::after {
	content: "";
	width: 27px;
	height: 27px;
	position: absolute;
	top: 20px;
	right: -26px;
	background: var(--firdip-base, #CA4445);
	clip-path: polygon(0 50%, 100% 100%, 100% 0);
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
@media (max-width: 767px) {
	.service-card {
		max-width: 400px;
		width: 100%;
		margin-right: auto;
		margin-left: auto;
	}
}
.service-card--two .service-card__inner {
	padding: 20px;
}
.service-card--two .service-card__inner::after {
	width: 54px;
	height: 49px;
}
.service-card--two .service-card__content {
	margin-bottom: 23px;
}
.service-card--two .service-card__icon {
	width: 58px;
	height: 58px;
	font-size: 33px;
}
.service-card--two .service-card__content__title {
	font-size: 20px;
}
.service-card--two .service-card__content__text {
	font-size: 14px;
	height:65px;
	overflow:hidden;
}
.service-card--two .service-card__thumb a {
	width: 40px;
	height: 40px;
	font-size: 14px;
}
.service-card__inner {
	background: var(--firdip-white, #fff);
	position: relative;
	padding: 30px;
	filter: drop-shadow(0px 6px 30px rgba(0, 0, 0, 0.1));
	overflow: hidden;
}
.service-card__inner::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	background: var(--firdip-text-gray, #EFE6E1);
	width: 74px;
	height: 57px;
	clip-path: polygon(100% 0, 0 0, 100% 100%);
	transition: all 0.4s ease-in-out;
}
.service-card__icon {
	position: relative;
	width: 80px;
	height: 80px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: var(--firdip-text-gray, #EFE6E1);
	font-size: 50px;
	color: var(--firdip-base, #CA4445);
	transition: all 0.4s ease-in-out;
	margin-bottom: 25px;
}
.service-card__content {
	margin-bottom: 33px;
}
.service-card__content__title {
	font-style: normal;
	font-weight: 800;
	font-size: 24px;
	line-height: normal;
	color: var(--firdip-secondary, #232728);
	text-transform: uppercase;
}
.service-card__content__title a {
	color: inherit;
	background: linear-gradient(to left, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
	transition: all 500ms ease;
	height:70px;
	overflow:hidden;
}
.service-card__content__title a:hover {
	background-size: 100% 1px;
}
.service-card__content__title a:hover {
	color: var(--firdip-base, #CA4445);
}
.service-card__content__text {
	color: var(--firdip-text, #7D8081);
	margin-bottom: 0;
	padding-bottom: 0;
	font-style: normal;
	font-weight: 500;
	font-size: 16px;
	line-height: 150%;
}
.service-card__thumb {
	position: relative;
	overflow: hidden;
}
.service-card__thumb__item {
	position: relative;
}
.service-card__thumb__item img {
	object-fit: cover;
	width: 100%;
	transition: all 0.4s ease-in-out;
}
.service-card__thumb a {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 58px;
	height: 58px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: var(--firdip-text-gray, #EFE6E1);
	color: var(--firdip-base, #CA4445);
	font-size: 22px;
	z-index: 1;
	transition: all 0.4s ease-in-out;
}
.service-card__thumb a i {
	color: var(--firdip-base, #CA4445);
	transition: all 0.4s ease-in-out;
}
.service-card__thumb a:hover {
	background: var(--firdip-base, #CA4445);
}
.service-card__thumb a:hover i {
	color: var(--firdip-white, #fff);
	transform: scale(1.2) rotate(-30deg);
}
.service-card__thumb::after {
	content: "";
	width: 100%;
	height: 0%;
	position: absolute;
	top: 0;
	right: 0;
	background: rgba(var(--firdip-secondary-rgb, 35, 39, 40), 0.7);
	transition: all 0.4s ease-in-out;
}
.service-card:hover .service-card__thumb::after {
	bottom: 0%;
	height: 100%;
}
.service-card:hover .service-card__thumb__item img {
	transform: scale(1.1) rotate(-5deg);
}
.service-card:hover .service-card__icon {
	background: var(--firdip-base, #CA4445);
	color: var(--firdip-white, #fff);
}
.service-card:hover .service-card__inner::after {
	background: var(--firdip-base, #CA4445);
}

.service-page {
	padding: 120px 0px;
	position: relative;
	z-index: 1;
}
@media (max-width: 991px) {
	.service-page {
		padding: 100px 0px;
	}
}
@media (max-width: 767px) {
	.service-page {
		padding: 80px 0px;
	}
}
.service-page__bg {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	background-repeat: no-repeat;
	background-size: cover;
	z-index: -1;
	mix-blend-mode: normal;
}
.service-page--home .sec-title .sec-title__tagline,
.service-page--home .sec-title .sec-title__title {
	color: var(--firdip-white, #fff);
}
.service-page__carousel {
	position: relative;
}
.service-page__carousel .owl-nav {
	position: absolute;
	top: -45%;
	left: 0;
}
@media (max-width: 767px) {
	.service-page__carousel .owl-nav {
		display: none !important;
	}
}

.service-two {
	padding: 120px 0px;
	position: relative;
	z-index: 1;
	background: var(--firdip-text-gray, #EFE6E1);
}
@media (max-width: 991px) {
	.service-two {
		padding: 100px 0px;
	}
}
@media (max-width: 767px) {
	.service-two {
		padding: 80px 0px;
	}
}
.service-two__bg {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	background-repeat: no-repeat;
	background-size: cover;
	z-index: -1;
	mix-blend-mode: lighten;
}
.service-two__item {
	position: relative;
	z-index: 1;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
	padding-top: 1px;
	overflow: hidden;
	background: var(--firdip-white, #fff);
}
@media (max-width: 767px) {
	.service-two__item {
		max-width: 400px;
		margin-right: auto;
		margin-left: auto;
	}
}
.service-two__item__inner {
	visibility: visible;
	opacity: 1;
	transition: all 0.4s ease-in-out;
}
.service-two__item__icon {
	margin-top: 30px;
	width: 80px;
	height: 80px;
	background: var(--firdip-text-gray, #EFE6E1);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 10px;
	font-size: 45px;
	color: var(--firdip-base, #CA4445);
}
.service-two__item__content {
	padding: 0px 20px 30px;
}
.service-two__item__title {
	font-style: normal;
	font-weight: 700;
	font-size: 20px;
	line-height: 130%;
	color: var(--firdip-secondary, #232728);
	margin-bottom: 10px;
	padding-bottom: 0;
	text-align: center;
}
.service-two__item__text {
	font-style: normal;
	font-weight: 500;
	font-size: 14px;
	line-height: 143%;
	margin-bottom: 25px;
	padding-bottom: 0;
	color: var(--firdip-text, #7D8081);
	text-align: center;
}
.service-two__item__btn {
	position: relative;
	z-index: 1;
}
.service-two__item__btn__link {
	width: 30px;
	height: 30px;
	background: var(--firdip-text, #7D8081);
	margin-right: auto;
	margin-left: auto;
	display: flex;
	border-radius: 50%;
	justify-content: center;
	align-items: center;
	color: var(--firdip-white, #fff);
	font-size: 12px;
}
.service-two__item__btn__link:hover {
	background: var(--firdip-base, #CA4445);
	color: var(--firdip-white, #fff);
}
.service-two__item__btn::after {
	content: "";
	width: 100%;
	height: 1px;
	background: var(--firdip-text-gray, #EFE6E1);
	position: absolute;
	top: 50%;
	right: 0;
	z-index: -1;
}
.service-two__item__bg {
	width: 100%;
	height: 108px;
	background-repeat: no-repeat;
	background-size: cover;
	z-index: -1;
	position: relative;
}
.service-two__item__bg::after {
	width: 34px;
	height: 26px;
	content: "";
	position: absolute;
	top: -0.5px;
	right: 25px;
	background: var(--firdip-white, #fff);
	clip-path: polygon(100% 0, 100% 100%, 0 0);
}
.service-two__item__hover {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	transform: translateY(100%);
	transition: all 0.4s ease-in-out;
}
.service-two__item__hover__inner {
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
	width: 100%;
	height: 100%;
	padding-right: 20px;
	padding-left: 20px;
}
.service-two__item__hover__bg {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	background-repeat: no-repeat;
	background-size: cover;
	z-index: -1;
	mix-blend-mode: normal;
}
.service-two__item__hover__bg::after {
	content: "";
	width: 100%;
	height: 100%;
	background: rgba(var(--firdip-base-rgb, 202, 68, 69), 0.9);
	position: absolute;
	top: 0;
	right: 0;
	z-index: -1;
}
.service-two__item__hover__icon {
	width: 80px;
	height: 80px;
	background: var(--firdip-white, #fff);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 10px;
	position: relative;
	transition: all 0.4s ease-in-out;
	color: var(--firdip-base, #CA4445);
	font-size: 45px;
	z-index: 1;
}
.service-two__item__hover__icon::after {
	position: absolute;
	content: "";
	width: 0%;
	height: 0%;
	border-radius: 50%;
	background: var(--firdip-secondary, #232728);
	right: 50%;
	top: 50%;
	transition: all 0.4s ease-in-out;
	z-index: -1;
}
.service-two__item__hover__title {
	font-style: normal;
	font-weight: 700;
	font-size: 20px;
	line-height: 130%;
	color: var(--firdip-white, #fff);
	margin-bottom: 10px;
	padding-bottom: 0;
	text-align: center;
}
.service-two__item__hover__text {
	font-style: normal;
	font-weight: 500;
	font-size: 14px;
	line-height: 143%;
	margin-bottom: 25px;
	padding-bottom: 0;
	color: var(--firdip-white, #fff);
	text-align: center;
}
.service-two__item__hover__btn {
	position: relative;
	z-index: 1;
	text-align: center;
}
.service-two__item__hover__btn__link {
	width: auto;
	height: auto;
	color: var(--firdip-secondary, #232728);
	border-radius: 50px;
	padding: 7.5px 21px;
	text-transform: capitalize;
	font-size: 14px;
}
.service-two__item__hover__btn__link::before {
	background: var(--firdip-white, #fff);
}
.service-two__item__hover__btn__link::after {
	background: var(--firdip-secondary, #232728);
}
.service-two__item__hover__btn__link i {
	margin-right: 4px;
	font-size: 12px;
}
.service-two__item__hover__btn::after {
	content: "";
	width: 100%;
	height: 1px;
	background: var(--firdip-text-gray, #EFE6E1);
	position: absolute;
	top: 50%;
	right: 0;
	z-index: -1;
	opacity: 0.3;
}
.service-two__item__hover:hover .service-two__item__hover__icon {
	color: var(--firdip-white, #fff);
}
.service-two__item__hover:hover .service-two__item__hover__icon::after {
	width: 100%;
	height: 100%;
	top: 0;
	right: 0;
}
.service-two__item:hover .service-two__item__inner {
	visibility: hidden;
	opacity: 0;
}
.service-two__item:hover .service-two__item__hover {
	transform: translateY(0%);
}

.service-three {
	padding: 120px 0px;
	position: relative;
	z-index: 1;
}
@media (max-width: 991px) {
	.service-three {
		padding: 100px 0px;
	}
}
@media (max-width: 767px) {
	.service-three {
		padding: 80px 0px;
	}
}
.service-three__bg {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 100% 0;
	z-index: -1;
	mix-blend-mode: lighten;
}
.service-three .sec-title .sec-title__tagline, .service-three .sec-title .sec-title__title {
	color: var(--firdip-secondary, #232728);
}
.service-three__carousel {
	position: relative;
}
.service-three__carousel .owl-nav {
	position: absolute;
	top: -35%;
	left: 0;
}
@media (max-width: 767px) {
	.service-three__carousel .owl-nav {
		display: none !important;
	}
}
.service-three__carousel .owl-nav button span {
	background-color: var(--firdip-white, #fff) !important;
}
.service-three__carousel .owl-nav button span:hover {
	background-color: var(--firdip-base, #CA4445) !important;
}
.service-three__item {
	padding: 40px 40px 1px;
	margin-bottom: 25px;
	background: var(--firdip-white, #fff);
	position: relative;
	z-index: 1;
}
.service-three__item__top {
	display: flex;
	align-items: center;
	border-bottom: 1px solid var(--firdip-text-gray, #EFE6E1);
	margin-bottom: 30px;
	position: relative;
	z-index: 1;
}
.service-three__item__top::after {
	content: "";
	width: 0%;
	height: 100%;
	background: var(--firdip-text-gray, #EFE6E1);
	position: absolute;
	top: 0;
	right: 0;
	z-index: -1;
	transition: all 0.4s ease-in-out;
}
.service-three__item__icon {
	background: var(--firdip-text-gray, #EFE6E1);
	width: 60px;
	height: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: var(--firdip-base, #CA4445);
	font-size: 30px;
	transition: all 0.4s ease-in-out;
}
.service-three__item__title {
	padding: 0px 20px;
	font-style: normal;
	font-weight: 700;
	font-size: 20px;
	line-height: 130%;
	color: var(--firdip-secondary, #232728);
	text-transform: uppercase;
	margin-bottom: 0;
	position: relative;
}
.service-three__item__text {
	font-style: normal;
	font-weight: 500;
	margin-bottom: 0;
	padding-bottom: 0;
	color: var(--firdip-text, #7D8081);
	margin-bottom: -5px;
	font-size: 14px;
	line-height: 143%;
}
.service-three__item__thumb {
	margin-bottom: 30px;
	overflow: hidden;
}
.service-three__item__thumb img {
	object-fit: cover;
	width: 100%;
	transition: all 0.4s ease-in-out;
}
.service-three__item__btn {
	margin-top: 45px;
	margin-bottom: -25px;
}
.service-three__item__btn__link {
	padding: 12px 20px;
	font-size: 14px;
	text-transform: capitalize;
}
.service-three__item__btn__link i {
	font-size: 12px;
	margin-right: 4px;
}
.service-three__item:hover .service-three__item__top::after {
	width: 100%;
}
.service-three__item:hover .service-three__item__icon {
	background: var(--firdip-base, #CA4445);
	color: var(--firdip-white, #fff);
}
.service-three__item:hover .service-three__item__thumb img {
	transform: scale(1.1);
}
.service-three__item::after {
	content: "";
	width: 80%;
	height: 2px;
	background: var(--firdip-text-gray, #EFE6E1);
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: -1;
	transition: all 0.4s ease-in-out;
}
.service-three__item:hover::after {
	background: var(--firdip-base, #CA4445);
}

/*--------------------------------------------------------------
# Service details
--------------------------------------------------------------*/
.service-details {
	padding: 120px 0;
	padding-top: 120px;
}
@media (max-width: 767px) {
	.service-details {
		padding: 80px 0;
		padding-top: 60px;
	}
}
.service-details__thumbnail {
	margin-bottom: 35px;
}
.service-details__thumbnail img {
	max-width: 100%;
}
.service-details__title {
	margin: 0;
	margin-bottom: 15px;
	color: var(--firdip-secondary, #232728);
	text-transform: uppercase;
	font-style: normal;
	font-weight: 700;
	font-size: 30px;
	line-height: 157%;
}
.service-details__sub-title {
	margin: 0;
	margin-bottom: 17px;
	color: var(--firdip-base, #CA4445);
	text-transform: uppercase;
	font-style: normal;
	font-weight: 700;
	font-size: 30px;
	line-height: 157%;
}
.service-details__text {
	margin: 0;
	color: var(--firdip-text, #7D8081);
	font-style: normal;
	font-weight: 500;
	font-size: 16px;
	line-height: 188%;
}
.service-details__text + .service-details__sub-title {
	margin-top: 17px;
}
.service-details__title + .service-details__text {
	margin-top: 22px;
}
.service-details__text + .service-details__title {
	margin-top: 40px;
}
.service-details__text + .service-details__list {
	margin-top: 40px;
}
.service-details__text + .service-details__text {
	margin-top: 35px;
}
.service-details__list {
	margin-bottom: 0;
}
.service-details__list li {
	position: relative;
	color: var(--firdip-secondary, #232728);
	font-size: 18px;
	font-weight: 600;
	line-height: 261.111%;
	margin-bottom: -5px;
	text-transform: uppercase;
}
.service-details__list li i {
	color: var(--firdip-base, #CA4445);
	margin-left: 7px;
}
@media (max-width: 575px) {
	.service-details__list li {
		line-height: 161.111%;
		font-size: 16px;
	}
}
.service-details__list li + li {
	margin-top: 10px;
}
@media (min-width: 768px) {
	.service-details__list li + li {
		margin-top: 0;
	}
}
.service-details__single + .service-details__single {
	margin-top: 35px;
}
@media (max-width: 1199px) {
	.service-details__image__item img {
		object-fit: cover;
		width: 100%;
	}
}
.service-details__benefit {
	margin-right: -30px;
}
@media (max-width: 1199px) {
	.service-details__benefit {
		margin-right: 0px;
	}
}
.service-details__benefit__title {
	margin: 0;
	font-size: 25px;
	font-weight: 700;
	line-height: 156.667%;
	color: var(--firdip-secondary, #232728);
	text-transform: uppercase;
}
@media (min-width: 768px) {
	.service-details__benefit__title {
		font-size: 30px;
	}
}
.service-details__benefit__sub_title {
	margin-top: -3px;
	margin-bottom: 10px;
	color: var(--firdip-secondary, #232728);
	font-size: 24px;
	font-weight: 700;
	line-height: 195.833%;
	text-transform: uppercase;
}
@media (max-width: 575px) {
	.service-details__benefit__sub_title {
		line-height: 135%;
	}
}
.service-details__benefit__text {
	max-width: 410px;
	color: var(--firdip-text, #7D8081);
	font-size: 16px;
	font-weight: 500;
	line-height: 187.5%;
}
.service-details__single-inner .service-details__title {
	margin-top: -10px;
	margin-bottom: 28px;
}
.service-details__inner-item {
	display: flex;
	align-items: start;
}
.service-details__inner-item .item-icon {
	background: var(--firdip-secondary, #232728);
	max-width: 70px;
	width: 100%;
	display: flex;
	align-items: start;
	justify-content: center;
	transition: all 0.5s ease-in-out;
	height: auto;
}
.service-details__inner-item .item-icon .icon {
	padding: 16px;
	font-size: 35px;
	color: var(--firdip-base, #CA4445);
	transition: all 0.5s ease-in-out;
	line-height: 1;
}
.service-details__inner-item .item-content {
	padding: 25px 30px 24px 30px;
	background: var(--firdip-white, #fff);
	box-shadow: 0px 6px 30px 0px rgba(0, 0, 0, 0.08);
}
.service-details__inner-item .item__title {
	color: var(--firdip-secondary, #232728);
	margin-bottom: 0;
	padding-bottom: 6px;
	font-style: normal;
	font-weight: 700;
	font-size: 18px;
	line-height: 1.2222222222;
	text-transform: uppercase;
}
.service-details__inner-item .item__title a {
	color: inherit;
	background: linear-gradient(to left, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
	transition: all 500ms ease;
}
.service-details__inner-item .item__title a:hover {
	background-size: 100% 1px;
}
.service-details__inner-item .item__dec {
	padding-bottom: 0;
	margin-bottom: -6px;
	color: var(--firdip-text, #7D8081);
	font-weight: 500;
	font-size: 16px;
	line-height: 188%;
}
.service-details__inner-item:hover .item-icon {
	background: var(--firdip-base, #CA4445);
}
.service-details__inner-item:hover .item-icon .icon {
	color: var(--firdip-white, #fff);
}
.service-details__inner-item:hover .item-icon .icon i {
	animation: bounceIn 1s linear;
}
.service-details .faq-page__accordion {
	padding-top: 5px;
	margin-bottom: 0;
}

/*--------------------------------------------------------------
# Project
--------------------------------------------------------------*/
.project-details {
	padding: 110px 0px 0;
	position: relative;
}
@media (max-width: 991px) {
	.project-details {
		padding: 100px 0px 0;
	}
}
@media (max-width: 767px) {
	.project-details {
		padding: 80px 0px 0;
	}
}
.project-details__inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 12px;
}
.project-details__inner__title {
	text-transform: uppercase;
	color: var(--firdip-secondary, #232728);
	margin-bottom: 0;
	padding-bottom: 0;
	font-style: normal;
	font-weight: 800;
	font-size: 40px;
	line-height: 125%;
}
@media (max-width: 767px) {
	.project-details__inner__title {
		font-size: 30px;
	}
}
.project-details__inner__text {
	background: var(--firdip-base, #CA4445);
	color: var(--firdip-white, #fff);
	margin-bottom: 0;
	padding: 5px 7px;
	font-style: normal;
	font-weight: 600;
	font-size: 16px;
	line-height: 19px;
}
.project-details__thumb {
	margin-bottom: 40px;
}
.project-details__thumb img {
	width: 100%;
	object-fit: contain;
}
.project-details__left {
	margin-top: -10px;
}
.project-details__text {
	margin-bottom: 0;
	padding-bottom: 0;
	font-style: normal;
	font-weight: 600;
	font-size: 16px;
	line-height: 188%;
	color: var(--firdip-text, #7D8081);
}
.project-details__text--two {
	color: var(--firdip-base, #CA4445);
	font-style: normal;
	font-weight: 600;
	font-size: 18px;
	line-height: 167%;
	text-transform: capitalize;
	margin-bottom: 0;
}
.project-details__text + .project-details__text {
	margin-top: 23px;
}
.project-details__list__title {
	margin-top: 23px;
	margin-bottom: 22px;
	text-transform: uppercase;
	color: var(--firdip-secondary, #232728);
	font-style: normal;
	font-weight: 800;
	font-size: 40px;
	line-height: 125%;
}
.project-details__list {
	margin-bottom: 30px;
}
.project-details__list__item {
	font-style: normal;
	font-weight: 600;
	font-size: 16px;
	line-height: 19px;
	text-transform: capitalize;
	color: var(--firdip-secondary, #232728);
}
.project-details__list__item i {
	color: var(--firdip-base, #CA4445);
	font-size: 18px;
	margin-left: 15px;
}
.project-details__list__item + .project-details__list__item {
	margin-top: 16px;
}
.project-details__box {
	border-top: 5px solid var(--firdip-base, #CA4445);
	background: var(--firdip-white, #fff);
	box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.08);
	padding: 40px;
}
@media (max-width: 991px) {
	.project-details__box {
		margin-top: 30px;
	}
}
.project-details__box__content {
	padding-bottom: 30px;
}
.project-details__box__text {
	margin-bottom: 0;
	padding-bottom: 0;
	text-shadow: 0 0 0.1px currentColor;
	font-style: normal;
	font-weight: 700;
	font-size: 16px;
	line-height: 188%;
	text-transform: uppercase;
	color: var(--firdip-secondary, #232728);
}
.project-details__box__text__top {
	color: var(--firdip-text, #7D8081);
	display: block;
	font-style: normal;
	font-weight: 500;
	font-size: 16px;
	line-height: 188%;
	text-transform: uppercase;
}
.project-details__box__text + .project-details__box__text {
	margin-top: 20px;
}
.project-details__box__social {
	display: flex;
	gap: 20px;
	align-items: center;
}
.project-details__box__social a {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	display: flex;
	background: var(--firdip-text-gray, #EFE6E1);
	justify-content: center;
	align-items: center;
	color: var(--firdip-secondary, #232728);
	font-size: 12px;
	transition: all 0.4s ease-in-out;
}
.project-details__box__social a:hover {
	color: var(--firdip-white, #fff);
	background: var(--firdip-base, #CA4445);
}
.project-details__link {
	margin-top: 110px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-top: 1px solid #DCCEC6;
	border-bottom: 1px solid #DCCEC6;
	padding: 20px 0px;
}
@media (max-width: 1199px) {
	.project-details__link {
		margin-top: 70px;
	}
}
@media (max-width: 991px) {
	.project-details__link {
		margin-top: 50px;
	}
}
.project-details__link__item {
	width: 40px;
	height: 40px;
	background: var(--firdip-text-gray, #EFE6E1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--firdip-secondary, #232728);
}
.project-details__link__item:hover {
	color: var(--firdip-white, #fff);
	background: var(--firdip-base, #CA4445);
}
.project-details__link__left, .project-details__link__right {
	display: flex;
	gap: 20px;
	align-items: center;
}
.project-details__link span {
	text-transform: uppercase;
	font-style: normal;
	font-weight: 600;
	font-size: 16px;
	line-height: 19px;
	color: var(--firdip-secondary, #232728);
}

/*--------------------------------------------------------------
# Boxed Home
--------------------------------------------------------------*/
body.boxed-wrapper {
	position: relative;
}
body.boxed-wrapper .page-wrapper {
	max-width: 1530px;
	margin-right: auto;
	margin-left: auto;
	background-color: var(--firdip-white, #fff);
	box-shadow: 0px 0px 100px 0px rgba(var(--firdip-black-rgb, 23, 24, 24), 0.08);
}
body.boxed-wrapper .funfact-one__bg {
	mask: none;
}
body.boxed-wrapper .funfact-one--home {
	margin-top: 0;
}
body.boxed-wrapper .funfact-one {
	padding-top: 120px;
}
.blog-items{
	width:100%;
	float:right;
}
.blog-items > *{
	width:31%;
	float:right;
	margin:1%;
}
.blog-items .item-image{
	max-height:400px;
	overflow:hidden;
}
.blog-items h2{
	font-size:20px!important;
	font-weight:700;
	text-align:center;
}
.page-header{
	height:50px;
	line-height:25px;
	overflow:hidden;
	padding:0;
	margin:0;
}