:root {
	--pri-color: #be0a27;
	--sec-color: #0a22be;
	--black: #232323;
	--whi: #fefefe;
	--Main-font: "Bebas Neue", sans-serif;
	--Par-font: "Roboto", sans-serif;
}

body {
	font-family: var(--Par-font);
	background-color: #212121;
	color: var(--whi);
}

a {
	color: #0a22be;
	text-decoration: none;
}

a:hover {
	color: #6aa3d5;
	text-decoration: none;
}

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

.ar-par {
	font-family: "Roboto", sans-serif !important;
}

.ar-tit {
	font-family: "Cairo", system-ui !important;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9999;
	overflow: none;
	background: var(--black);
	height: 100dvh;
}

#preloader img {
	width: 10dvw;
	position: fixed;
	top: calc(50% - 3dvh);
	left: calc(50% - 5dvw);
	animation: animate-preloader 3.5s linear infinite;
	-webkit-animation: animate-preloader 3.5s linear infinite;
}

@keyframes animate-preloader {
	0% {
		filter: grayscale(0);
		-webkit-filter: grayscale(0);
	}

	50% {
		filter: grayscale(100);
		-webkit-filter: grayscale(100);
	}

	100% {
		filter: grayscale(0);
		-webkit-filter: grayscale(0);
	}
}

@media only screen and (max-width: 600px) {
	#preloader img {
		width: 45dvw;
		top: calc(45% - 3dvh);
		left: calc(33% - 5dvw);
	}
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
	position: fixed;
	visibility: hidden;
	opacity: 0;
	right: 15px;
	bottom: 15px;
	z-index: 99999;
	background: var(--pri-color);
	width: 40px;
	height: 40px;
	border-radius: 4px;
	transition: all 0.4s;
}

.back-to-top i {
	font-size: 24px;
	color: #fff;
	line-height: 0;
}

.back-to-top:hover {
	background: #629fd3;
	color: #fff;
}

.back-to-top.active {
	visibility: visible;
	opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
	transition: all 0.5s;
	z-index: 997;
	padding: 8px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

#header.header-scrolled,
#header.header-inner-pages {
	background: rgba(23, 26, 29, 0.8);
}

#header .logo {
	font-size: 30px;
	margin: 0;
	padding: 0;
	line-height: 1;
	font-weight: 600;
	letter-spacing: 1px;
	font-family: "Poppins", sans-serif;
}

#header .logo a {
	color: #fff;
}

#header .logo img {
	max-height: 40px;
}

@media (max-width: 992px) {
	#header {
		border: 0;
	}
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
	padding: 0;
}

.navbar ul {
	margin: 0;
	padding: 0;
	display: flex;
	list-style: none;
	align-items: center;
}

.navbar li {
	position: relative;
}

.navbar a,
.navbar a:focus {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 10px 0 10px 30px;
	text-transform: uppercase;
	font-size: 14px;
	font-weight: 550;
	color: #fff;
	white-space: nowrap;
	transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
	font-size: 12px;
	line-height: 0;
	margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
	color: var(--pri-color);
}

.navbar .social-links {
	display: flex;
}

.btn-prima {
	padding: 4px 18px;
	background: var(--pri-color);
	border-radius: 3px;
	border: 1px solid var(--pri-color);
}

.btn-prima:hover {
	background: transparent;
	border: 1px solid var(--pri-color);
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
	color: #fff;
	font-size: 28px;
	cursor: pointer;
	display: none;
	line-height: 0;
	transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
	color: #fff;
}

@media (max-width: 991px) {
	.mobile-nav-toggle {
		display: block;
	}

	.navbar ul {
		display: none;
	}
}

.navbar-mobile {
	position: fixed;
	overflow: hidden;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	background: rgba(43, 34, 34, 0.87);
	transition: 0.3s;
	z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
	position: absolute;
	top: 15px;
	right: 15px;
}

.navbar-mobile ul {
	display: block;
	position: absolute;
	top: 55px;
	right: 15px;
	bottom: 15px;
	left: 15px;
	padding: 10px 0;
	border-radius: 10px;
	background-color: #fff;
	overflow-y: auto;
	transition: 0.3s;
	height: fit-content;
}

.navbar-mobile a,
.navbar-mobile a:focus {
	padding: 10px 20px;
	font-size: 15px;
	color: #394047;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
	color: var(--pri-color);
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
	margin: 15px;
}

.navbar-mobile .dropdown ul {
	position: static;
	display: none;
	margin: 10px 20px;
	padding: 10px 0;
	z-index: 99;
	opacity: 1;
	visibility: visible;
	background: #fff;
	box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
	min-width: 200px;
}

.navbar-mobile .dropdown ul a {
	padding: 10px 20px;
	font-size: 14px;
}

.navbar-mobile .dropdown ul a i {
	font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
	color: var(--pri-color);
}

.navbar-mobile .dropdown>.dropdown-active {
	display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
	width: 100%;
	height: 100dvh;
	background-color: #0e0e0e;
	overflow: hidden;
	position: relative;
	padding: 0px;
}

.overlay {
	position: fixed;
	/* Sit on top of the page content */
	width: 100%;
	/* Full width (cover the whole page) */
	height: 100%;
	/* Full height (cover the whole page) */
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(31, 31, 32, 0.76);
	/* Black background with opacity */
	z-index: -2;
	/* Specify a stack order in case you're using a different order for other elements */
	cursor: pointer;
	/* Add a pointer on hover */
}

#hero .swiper {
	width: 100%;
	height: 100dvh;
}

.swiper-slide {
	text-align: center;
	font-size: 18px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0 6dvw;
	flex-direction: column;
}

.swiper-slide .vidback {
	position: fixed;
	z-index: -55;
	top: 0;
	right: 0;
	left: 0;
}

.swiper-slide video {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

#hero .carousel-item::before {
	content: "";
	background-color: rgba(12, 13, 14, 0.8);
}

#hero .carousel-container {
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	bottom: 0;
	top: 70px;
	left: 50px;
	right: 50px;
}

#hero .container {
	text-align: center;
}

#hero h2 {
	color: #fff;
	font-size: 48px;
	font-weight: 700;
	width: 60dvw;
	text-align: center;
	margin: 20px auto;
}

#hero p {
	animation-delay: 0.4s;
	margin: 0 auto 30px auto;
	color: #fff;
	width: 70dvw;
}

#hero h2 span {
	color: var(--pri-color);
}

#hero .carousel-inner .carousel-item {
	transition-property: opacity;
	background-position: center top;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
	opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
	opacity: 1;
	transition: 0.5s;
}

#hero .btn-get-sec,
#hero .btn-get-started {
	font-family: var(--Main-font);
	font-family: var(--Main-font);
	font-weight: 600;
	font-size: 14px;
	letter-spacing: 1px;
	display: inline-block;
	padding: 14px 32px;
	border-radius: 4px;
	transition: 0.5s;
	line-height: 1;
	color: var(--whi);
	animation-delay: 0.8s;
	background: var(--pri-color);
	margin: 4px;
}

#hero .btn-get-sec {
	background: transparent !important;
	color: var(--pri-color);
	border: 1px solid var(--pri-color);
}

#hero .btn-get-started:hover {
	background: transparent;
	color: var(--pri-color);
}

#hero .btn-get-sec:hover {
	background: var(--p);
}

@media (max-width: 500px) {
	.swiper-slide video {
		height: 100%;
		width: auto !important;
	}
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
	padding: 40px 0;
}

.section-bg {
	background-color: #fafafb;
}

.section-title {
	text-align: start;
	padding-bottom: 20px;
}

.section-title h2 {
	font-size: 18px;
	letter-spacing: 1px;
	font-weight: 700;
	padding: 8px 20px;
	margin: 0;
	background: var(--pri-color);
	color: #f5f9fc;
	display: inline-block;
	text-transform: uppercase;
	border-radius: 1px;
}

.section-title h3 {
	margin: 15px 0 0 15px;
	font-size: 32px;
	font-weight: 700;
}

.section-title h3 span {
	color: var(--pri-color);
}

.section-title p {
	margin: 15px auto 0 auto;
	font-weight: 500;
	color: #919191;
}

@media (min-width: 1024px) {
	.section-title p {
		width: 50%;
	}
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/

.about {
	padding: 0px;
}

.about .icon-boxes h3 {
	font-size: 30px;
	font-weight: 700;
	color: var(--pri-color);
	font-family: var(--Main-font);
	margin-bottom: 15px;
	text-align: inherit;
}

.about .icon-box {
	margin-top: 26px;
}

.about .icon-box .icon {
	float: left;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 74px;
	height: 74px;
	border: 2px solid #ecb9b9;
	border-radius: 0px;
	transition: 0.5s;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	-ms-border-radius: 0px;
	-o-border-radius: 0px;
	margin: 4px 9px;
}

.about .icon-box .icon i {
	color: var(--pri-color);
	font-size: 64px;
}

.about .icon-box:hover .icon {
	background: var(--pri-color);
	border-color: var(--pri-color);
}

.about .icon-box:hover .icon i {
	color: #fff;
}

.about .icon-box .title {
	font-weight: 550;
	margin: auto 5px;
	font-size: 20px;
}

.about .icon-box .title a {
	color: var(--whi);
	transition: 0.3s;
}

.about .icon-box .description {
	margin-left: 85px;
	line-height: 24px;
	font-size: 14px;
}

.about .video-box {
	background: url("../img/about\ .webp") center center no-repeat;
	background-size: cover;
	min-height: 90dvh;

	/* Create the parallax scrolling effect */
	background-attachment: fixed;
	background-repeat: no-repeat;
}

.about .aboutswp {
	margin: 25px;
}

.about .swiper-slide {
	display: flex;
	margin: auto;
	justify-content: center;
	align-items: center;
	font-size: 22px;
	font-weight: bold;
	background: rgba(255, 255, 255, 0.35);
	box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
	border-radius: 2px;
	border: 1px solid var(--pri-color);
	height: 50dvh;
	width: 24dvw;
	color: var(--pri-color) !important;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	-ms-border-radius: 2px;
	-o-border-radius: 2px;
}

.about .swiper-container {
	display: flex;
	max-height: 35dvw;
}

.about .swiper-wrapper {
	margin-left: auto;
	margin-right: auto;
	max-width: 25dvw;
}

.about .swiper-slide .card {
	background: transparent;
	border: 0;
	color: var(--pri-color) !important;
}

.about .swiper-slide .card .bx {
	font-size: 8rem !important;
}

.about .swiper-button-next,
.about .swiper-button-prev {
	background: rgba(255, 255, 255, 0.35);
	box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
	border-radius: 10px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	padding: 7px;
	border-radius: 1px;
}

.swiper-pagination-bullet {
	width: 14px;
	height: 14px;
	border-radius: 2px;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	-ms-border-radius: 2px;
	-o-border-radius: 2px;
}

.swiper-pagination-bullet-active {
	color: var(--pri-color) !important;
}

@media (max-width: 576px) {
	.about .swiper-slide .card {
		width: auto;
	}

	.about .swiper-slide .card .bx {
		font-weight: 3rem;
	}

	.about .swiper-slide,
	.about .swiper-slide .card {
		width: 50dvw;
	}

	.about .video-box {
		max-width: 65dvh;
	}
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
	padding: 80px 0 60px 0;
}

.counts .counters span {
	font-size: 48px;
	display: block;
	color: var(--pri-color);
	font-weight: 700;
}

.counts .counters p {
	padding: 0;
	margin: 0 0 20px 0;
	font-family: "Raleway", sans-serif;
	font-size: 15px;
	font-weight: 500;
}

/*--------------------------------------------------------------
# Skills
--------------------------------------------------------------*/
.skills {
	padding-top: 0;
}

.skills .progress {
	height: 60px;
	display: block;
	background: none;
	border-radius: 0;
}

.skills .progress .skill {
	padding: 10px 0;
	margin: 0;
	text-transform: uppercase;
	display: block;
	font-weight: 600;
	font-family: "Poppins", sans-serif;
	color: #394047;
}

.skills .progress .skill .val {
	float: right;
	font-style: normal;
}

.skills .progress-bar-wrap {
	background: #e3e6e9;
}

.skills .progress-bar {
	width: 1px;
	height: 10px;
	transition: 0.9s;
	background-color: var(--pri-color);
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services {
	padding-bottom: 30px;
}

.services .icon-box {
	padding: 9px 0px;
	background: rgba(255, 255, 255, 0.3);
	box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-radius: 3px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	margin: auto 4px;
}

.services .card {
	overflow: visible;
	width: 18dvw;
	height: 50dvh;
	background: transparent;
	margin: 2dvw;
}

.services .content {
	width: 100%;
	height: 100%;
	transform-style: preserve-3d;
	transition: transform 300ms;
	box-shadow: 0px 0px 10px 1px #000000ee;
	border-radius: 5px;
}

.services .front,
.back {
	background-color: #151515;
	position: absolute;
	width: 100%;
	height: 100%;
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
	border-radius: 5px;
	overflow: hidden;
}

.services .back {
	width: 100%;
	height: 100%;
	justify-content: center;
	display: flex;
	align-items: center;
	overflow: hidden;
}

.services .back::before {
	position: absolute;
	content: " ";
	display: block;
	width: 160px;
	height: 160%;
	background: linear-gradient(90deg, transparent, var(--pri-color), var(--pri-color), var(--pri-color), var(--pri-color), transparent);
	animation: rotation_481 20000ms infinite linear;
	-webkit-animation: rotation_481 20000ms infinite linear;
}

.services .back-content {
	position: absolute;
	width: 99%;
	height: 99%;
	background-color: #151515;
	border-radius: 5px;
	color: white;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 12px;
}

.services .back-content img {
	opacity: 0.45;
	height: 100%;
	width: auto;
}

.services .back-content h4 {
	position: absolute;
	top: 25%;
}

.services .back-content h5 {
	position: absolute;
	top: 50%;
}

.services .card:hover .content {
	transform: rotateY(180deg);
}

@keyframes rotation_481 {
	0% {
		transform: rotateZ(0deg);
	}

	0% {
		transform: rotateZ(360deg);
	}
}

.services .front {
	transform: rotateY(180deg);
	color: white;
}

.services .front .front-content {
	position: absolute;
	width: 100%;
	height: 100%;
	padding: 10px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.services .front-content .badge {
	background-color: #00000055;
	padding: 6px 12px;
	border-radius: 1px;
	backdrop-filter: blur(2px);
	width: fit-content;
}

.services .description {
	box-shadow: 0px 0px 10px 5px #00000088;
	width: 100%;
	padding: 10px;
	background-color: #00000099;
	backdrop-filter: blur(5px);
	border-radius: 5px;
}

.services .title {
	font-size: 11px;
	max-width: 100%;
	display: flex;
	justify-content: space-between;
	color: white;
}

.services .title p {
	width: 50%;
	margin: 4px;
}

.services .card-footer {
	color: #ffffff88;
	margin-top: 5px;
	font-size: 10px;
	text-align: start;
}

.services .front .img {
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.services .circle {
	width: 90px;
	height: 90px;
	border-radius: 50%;
	background-color: #ffbb66;
	position: relative;
	filter: blur(15px);
	animation: floating 2600ms infinite linear;
}

.services #bottom {
	background-color: #ff8866;
	left: 50px;
	top: 0px;
	width: 150px;
	height: 150px;
	animation-delay: -800ms;
}

.services #right {
	background-color: #ff2233;
	left: 160px;
	top: -80px;
	width: 30px;
	height: 30px;
	animation-delay: -1800ms;
}

@keyframes floating {
	0% {
		transform: translateY(0px);
	}

	50% {
		transform: translateY(10px);
	}

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

.services .icon {
	float: left;
	background: var(--whi);
	padding: 5px;
	border-radius: 4px;
	border: 1px solid var(--pri-color);
}

.services .icon i {
	color: var(--pri-color);
	font-size: 36px;
	line-height: 1;
}

.services .title a {
	color: #343a40;
	transition: 0.3s;
}

.services .icon-box:hover .title a {
	color: var(--pri-color);
}

@media (max-width: 500px) {
	.services .card {
		width: 70dvw;
	}
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
	background: linear-gradient(rgba(12, 13, 14, 0.8), rgba(12, 13, 14, 0.8)), url("../img/cta-bg.webp") fixed center center;
	background-size: cover;
	padding: 80px 0;
}

.cta h3 {
	color: #fff;
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 20px;
}

.cta p {
	color: #fff;
}

.cta .cta-btn {
	font-family: "Raleway", sans-serif;
	font-weight: 500;
	font-size: 16px;
	letter-spacing: 1px;
	display: inline-block;
	padding: 12px 35px;
	border-radius: 4px;
	transition: 0.5s;
	margin-top: 20px;
	background: var(--pri-color);
	color: #fff;
}

.cta .cta-btn:hover {
	background: var(--pri-color);
}

.cta .card {
	background: #ffffffa6;
	border-radius: 2px;
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(9.9px);
	-webkit-backdrop-filter: blur(9.9px);
	border: 1px solid rgba(255, 255, 255, 0.58);
	padding: 14px 6px;
	min-width: 18dvw;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	-ms-border-radius: 2px;
	-o-border-radius: 2px;
	font-weight: 750;
	font-family: var(--Main-font);
	border: 1px solid var(--pri-color);
}

.cta .card i {
	font-size: 48px;
	color: var(--pri-color);
	margin: 0px 86px;
	border-radius: 2px;
}

.cta .card i:hover {
	color: white;
	background-color: var(--pri-color);
}

.cta p,
.cta span {
	color: var(--pri-color);
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio-item {
	margin-bottom: 30px;
}

#portfolio-flters {
	padding: 0;
	margin: 0 auto 20px auto;
	list-style: none;
	text-align: center;
}

#portfolio-flters li {
	cursor: pointer;
	display: inline-block;
	padding: 8px 15px 10px 15px;
	font-size: 14px;
	font-weight: 600;
	line-height: 1;
	text-transform: uppercase;
	color: #444444;
	margin-bottom: 5px;
	transition: all 0.3s ease-in-out;
	border-radius: 3px;
}

#portfolio-flters li:hover,
#portfolio-flters li.filter-active {
	color: #fff;
	background: var(--pri-color);
}

#portfolio-flters li:last-child {
	margin-right: 0;
}

.portfolio-wrap {
	transition: 0.3s;
	position: relative;
	overflow: hidden;
	z-index: 1;
	background: rgba(57, 64, 71, 0.6);
}

.portfolio-wrap::before {
	content: "";
	background: rgba(57, 64, 71, 0.6);
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	transition: all ease-in-out 0.3s;
	z-index: 2;
	opacity: 0;
}

.portfolio-wrap img {
	transition: all ease-in-out 0.3s;
}

.portfolio-wrap .portfolio-info {
	opacity: 0;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 3;
	transition: all ease-in-out 0.3s;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: flex-start;
	padding: 20px;
}

.portfolio-wrap .portfolio-info h4 {
	font-size: 20px;
	color: #fff;
	font-weight: 600;
}

.portfolio-wrap .portfolio-info p {
	color: rgba(255, 255, 255, 0.7);
	font-size: 14px;
	text-transform: uppercase;
	padding: 0;
	margin: 0;
	font-style: italic;
}

.portfolio-wrap .portfolio-links {
	text-align: center;
	z-index: 4;
}

.portfolio-wrap .portfolio-links a {
	color: #fff;
	margin: 0 5px 0 0;
	font-size: 28px;
	display: inline-block;
	transition: 0.3s;
}

.portfolio-wrap .portfolio-links a:hover {
	color: #6aa3d5;
}

.portfolio-wrap:hover::before {
	opacity: 1;
}

.portfolio-wrap:hover img {
	transform: scale(1.2);
}

.portfolio-wrap:hover .portfolio-info {
	opacity: 1;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
	padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
	width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
	margin-top: 20px;
	position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	background-color: #fff;
	opacity: 1;
	border: 1px solid var(--pri-color);
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
	background-color: var(--pri-color);
}

.portfolio-details .portfolio-info {
	padding: 30px;
	box-shadow: 0px 0 30px rgba(57, 64, 71, 0.08);
}

.portfolio-details .portfolio-info h3 {
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
	list-style: none;
	padding: 0;
	font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
	margin-top: 10px;
}

.portfolio-details .portfolio-description {
	padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
	font-size: 26px;
	font-weight: 700;
	margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
	padding: 0;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials {
	margin: 30px auto;
	background-color: #232323;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 200 200'%3E%3Cdefs%3E%3ClinearGradient id='a' gradientUnits='userSpaceOnUse' x1='100' y1='33' x2='100' y2='-3'%3E%3Cstop offset='0' stop-color='%23000' stop-opacity='0'/%3E%3Cstop offset='1' stop-color='%23000' stop-opacity='1'/%3E%3C/linearGradient%3E%3ClinearGradient id='b' gradientUnits='userSpaceOnUse' x1='100' y1='135' x2='100' y2='97'%3E%3Cstop offset='0' stop-color='%23000' stop-opacity='0'/%3E%3Cstop offset='1' stop-color='%23000' stop-opacity='1'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cg fill='%231f1f1f' fill-opacity='0.6'%3E%3Crect x='100' width='100' height='100'/%3E%3Crect y='100' width='100' height='100'/%3E%3C/g%3E%3Cg fill-opacity='0.5'%3E%3Cpolygon fill='url(%23a)' points='100 30 0 0 200 0'/%3E%3Cpolygon fill='url(%23b)' points='100 100 0 130 0 100 200 100 200 130'/%3E%3C/g%3E%3C/svg%3E");
	background-attachment: fixed;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
	overflow: hidden;
}

.testimonials .testimonial-item {
	box-sizing: content-box;
	padding: 40px;
	box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
	position: relative;
	background: #fff;
}

.testimonials .testimonial-item .testimonial-img {
	width: 90px;
	border-radius: 10px;
	border: 6px solid #fff;
	float: left;
	margin: 0 10px 0 0;
}

.testimonials .testimonial-item h3 {
	font-size: 18px;
	font-weight: bold;
	margin: 10px 0 5px 0;
	color: #394047;
}

.testimonials .testimonial-item h4 {
	font-size: 14px;
	color: #999;
	margin: 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
	color: #b9d4ec;
	font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
	display: inline-block;
	left: -5px;
	position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
	display: inline-block;
	right: -5px;
	position: relative;
	top: 10px;
}

.testimonials .testimonial-item p {
	font-style: italic;
	margin: 15px 0 0 0;
	padding: 0;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .member {
	text-align: center;
	margin-bottom: 20px;
	background: #343a40;
	position: relative;
	overflow: hidden;
	border-radius: 4px;
}

.team .member .member-info {
	opacity: 0;
	position: absolute;
	bottom: 0;
	top: 0;
	left: 0;
	right: 0;
	transition: 0.2s;
}

.team .member .member-info-content {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 10px;
	transition: bottom 0.4s;
}

.team .member .member-info-content h4 {
	font-weight: 700;
	margin-bottom: 2px;
	font-size: 18px;
	color: #fff;
}

.team .member .member-info-content span {
	font-style: italic;
	display: block;
	font-size: 13px;
	color: #fff;
}

.team .member .social {
	position: absolute;
	left: 0;
	bottom: -38px;
	right: 0;
	height: 48px;
	transition: bottom ease-in-out 0.4s;
	text-align: center;
}

.team .member .social a {
	transition: color 0.3s;
	color: #fff;
	margin: 0 10px;
	display: inline-block;
}

.team .member .social a:hover {
	color: var(--pri-color);
}

.team .member .social i {
	font-size: 18px;
	margin: 0 2px;
}

.team .member:hover .member-info {
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.8) 20%, rgba(0, 212, 255, 0) 100%);
	opacity: 1;
	transition: 0.4s;
}

.team .member:hover .member-info-content {
	bottom: 60px;
	transition: bottom 0.4s;
}

.team .member:hover .social {
	bottom: 0;
	transition: bottom ease-in-out 0.4s;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
	padding: 20px;
	background: var(--pri-color);
	box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.1);
	text-align: center;
	margin: 9px;
	color: whitesmoke;
}

.contact .info a {
	color: white;
}

.contact .info:hover {
	background-color: #232323;
	color: var(--pri-color);
	transition: 0.3s ease-in-out;
	border-radius: 14px;
	-webkit-border-radius: 14px;
	-moz-border-radius: 14px;
	-ms-border-radius: 14px;
	-o-border-radius: 14px;
	border: 3px solid var(--pri-color);
}

.contact .info:hover {
	color: var(--pri-color);
}

.contact .info i {
	font-size: 48px;
	margin-bottom: 15px;
}

.contact .info h4 {
	padding: 0;
	margin: 0 0 10px 0;
	font-size: 16px;
	font-weight: 600;
	text-transform: uppercase;
	font-family: "Poppins", sans-serif;
}

.contact .info p {
	font-size: 15px;
}

.contact .php-email-form {
	width: 100%;
	padding: 0px;
}

.contact .php-email-form .error-message {
	display: none;
	color: #fff;
	background: #ed3c0d;
	text-align: left;
	padding: 15px;
	font-weight: 600;
}

.contact .php-email-form .error-message br+br {
	margin-top: 25px;
}

.contact .php-email-form .sent-message {
	display: none;
	color: #fff;
	background: #18d26e;
	text-align: center;
	padding: 15px;
	font-weight: 600;
}

.contact .php-email-form .loading {
	display: none;
	background: #fff;
	text-align: center;
	padding: 15px;
}

.contact .php-email-form .loading:before {
	content: "";
	display: inline-block;
	border-radius: 50%;
	width: 24px;
	height: 24px;
	margin: 0 10px -6px 0;
	border: 3px solid #18d26e;
	border-top-color: #eee;
	animation: animate-loading 1s linear infinite;
}

.contact .php-email-form label {
	font-family: var(--Par-font);
	margin-bottom: 5px;
	color: var(--pri-color);
	font-weight: bold;

}

.contact .php-email-form input,
.contact .php-email-form textarea {
	border-radius: 0;
	box-shadow: none;
	font-size: 14px;
	border-radius: 4px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
	border-color: var(--pri-color);
}

.contact .php-email-form input {
	padding: 10px 15px;
}

.contact .php-email-form textarea {
	padding: 12px 15px;
}

.contact .php-email-form button[type="submit"] {
	background: #fff;
	border: 2px solid var(--pri-color);
	padding: 12px 35px;
	transition: 0.4s;
	background: var(--pri-color);
	color: #fff;
	border-radius: 4px;
}

.contact .php-email-form button[type="submit"]:hover {
	background: var(--pri-color);
}

@media (max-width: 1024px) {
	.contact .php-email-form {
		padding: 30px 15px 15px 15px;
	}
}

@media (max-width: 768px) {
	.contact .php-email-form {
		padding: 15px 0 0 0;
	}
}

@keyframes animate-loading {
	0% {
		transform: rotate(0deg);
	}

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

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
	padding: 15px 0;
	background: #f7f8f8;
	min-height: 40px;
	margin-top: 70px;
}

@media (max-width: 992px) {
	.breadcrumbs {
		margin-top: 58px;
	}
}

.breadcrumbs h2 {
	font-size: 28px;
	font-weight: 600;
}

.breadcrumbs ol {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	padding: 0 0 10px 0;
	margin: 0;
	font-size: 14px;
}

.breadcrumbs ol li+li {
	padding-left: 10px;
}

.breadcrumbs ol li+li::before {
	display: inline-block;
	padding-right: 10px;
	color: #505a63;
	content: "/";
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
	background: #2e3339;
	padding: 0 0 30px 0;
	color: #fff;
	font-size: 14px;
}

#footer .footer-newsletter {
	padding: 50px 0;
	background: #2e3339;
}

#footer .footer-newsletter h4 {
	font-size: 24px;
	margin: 0 0 10px 0;
	padding: 0;
	line-height: 1;
	font-weight: 600;
}

#footer .footer-newsletter form {
	margin-top: 30px;
	background: #fff;
	padding: 6px 10px;
	position: relative;
	border-radius: 4px;
}

#footer .footer-newsletter form input[type="email"] {
	border: 0;
	padding: 4px;
	width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type="submit"] {
	position: absolute;
	top: -3px;
	right: -4px;
	bottom: -3px;
	border: 0;
	background: none;
	font-size: 16px;
	padding: 0 20px 0 20px;
	margin: 3px;
	background: var(--pri-color);
	color: #fff;
	transition: 0.3s;
	border-radius: 0 4px 4px 0;
}

#footer .footer-newsletter form input[type="submit"]:hover {
	background: #3071a9;
}

#footer .footer-top {
	background: #272c30;
	border-top: 1px solid #394047;
	border-bottom: 1px solid #394047;
	padding: 60px 0 30px 0;

}

#footer .footer-top .footer-info {
	margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
	font-size: 18px;
	margin: 0 0 20px 0;
	padding: 2px 0 2px 0;
	line-height: 1;
	font-weight: 700;
}

#footer .footer-top .footer-info p {
	font-size: 14px;
	line-height: 24px;
	margin-bottom: 0;
	font-family: "Raleway", sans-serif;
	color: #fff;
}

#footer .footer-top .social-links a {
	font-size: 16px;
	display: inline-block;
	background: #394047;
	color: #fff;
	line-height: 1;
	padding: 10px 0;
	margin-right: 4px;
	border-radius: 4px;
	text-align: center;
	width: 36px;
	height: 36px;
	transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
	background: var(--pri-color);
	color: #fff;
	text-decoration: none;
}

#footer .footer-top h4 {
	font-size: 24px;
	font-weight: bold;
	color: var(--pri-color);
	text-transform: uppercase;
	position: relative;
	padding-bottom: 12px;
}

#footer .footer-top .footer-links {
	margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

#footer .footer-top .footer-links ul i {
	padding-right: 2px;
	color: var(--pri-color);
	font-size: 18px;
	line-height: 1;
}

#footer .footer-top .footer-links ul li {
	padding: 10px 0;
	display: flex;
	align-items: center;
	font-size: 20px
}

#footer .footer-top .footer-links ul li:first-child {
	padding-top: 0;
}

#footer .footer-top .footer-links ul a {
	color: #fff;
	transition: 0.3s;
	display: inline-block;
	line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
	color: var(--pri-color);
}

#footer .footer-top .footer-contact {
	margin-bottom: 30px;
}

#footer .footer-top .footer-contact p {
	line-height: 26px;
}

#footer .copyright {
	text-align: center;
	padding-top: 20px;
}

#footer .credits {
	padding-top: 5px;
	text-align: center;
	font-size: 13px;
	color: #fff;
}

@media only screen and (max-width: 600px) {
	.about .swiper-wrapper {
		min-width: 65dvw;
	}
}

.modal.show .modal-dialog {
	min-width: 75dvw;
	border: 3px solid var(--primary-color);
	border: 4px;
}

.modal-title {
	color: var(--pri-color);
}

.modal-body {
	color: #232323;
}

.modal-footer {
	justify-content: center;
}

.modal-footer h4 {
	color: #232323;
}

.modal-footer ul {
	display: flex;
	flex-direction: row;
	list-style-type: none;
}

.modal-footer li {
	text-decoration: none;
	margin: 4px;
}

.modal-footer i {
	color: red;
	font-size: 48px;
}

.modal-footer i:hover {
	color: var(--whi);
	background-color: var(--pri-color);
	border-radius: 4px;
	transition: all 0.3s ease-in-out;
}

.mySwiper6 .swiper-slide img {
	max-height: 45dvh;
}

@media screen {}