@import url("https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400&display=swap");
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body {
	font-size: 16px;
	color: #6a6a6a;
	line-height: 26px;
	font-family: "Rubik", sans-serif;
	font-weight: 400;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
	margin: 0;
	padding: 0;
	color: #1d1d1d;
}
span {
	padding: 0;
	margin: 0;
}
h1 {
	font-size: 40px;
}
h2 {
	font-size: 32px;
}
h3 {
	font-size: 24px;
}
h4 {
	font-size: 18px;
}
h5 {
	font-size: 16px;
}
h6 {
	font-size: 12px;
}
ul,
li {
	padding: 0;
	margin: 0;
}
li {
	list-style: none;
}
a {
	text-decoration: none;
	color: black;
	display: inline-block;
}
a:hover {
	color: black;
}
input {
	outline: none;
}
textarea {
	outline: none;
}
button {
	color: inherit;
	outline: none;
	border: none;
	background: transparent;
}
button:focus {
	outline: 0;
}

/* custom class */
.theme-clr {
	color: #00dbdb;
}
.theme-bg {
	background-color: #111111;
}
.section-padding {
	padding: 120px 0px;
}
.section-margin {
	margin: 120px 0px;
}
section{
	overflow:hidden;
}
.custom-btn {
	padding: 12px 35px;
	background-color: #00dbdb;
	color: white;
	text-transform: capitalize;
	display: inline-block;
	transition: 0.4s;
	border: 1px solid transparent;
}
.custom-btn:hover {
	background-color: transparent;
	color: #00dbdb;
	border: 1px solid #00dbdb;
}
.bg-image {
	background: linear-gradient(rgba(17, 17, 17, 0.8), rgba(17, 17, 17, 0.8)),
		url("../../assets/images/banner/bg-image1.jpg");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
	position: relative;
}
.text-justify {
	text-align: justify;
}
.black-border {
	border: 1px solid #111111;
}
.comment-form form input {
	width: 100%;
	padding: 15px 30px;
	border-radius: 2px;
	border: 1px solid #00dbdb;
	margin-bottom: 30px;
}
.comment-form form textarea {
	width: 100%;
	padding: 15px 30px;
	border-radius: 2px;
	border: 1px solid #00dbdb;
	margin-bottom: 30px;
	height: 200px;
}
/* menu area start here */
.navbar {
	background-color: transparent;
	position: fixed;
	width: 100%;
	z-index: 99;
	padding: 30px 0;
	transition: all 0.4s ease;
}
.navbar.sticky {
	background: #00dbdb;
	padding: 25px 0;
	box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.2);
}
.navbar .content {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.navbar .logo a {
	color: #fff;
	font-size: 30px;
	font-weight: 600;
	text-decoration: none;
}
.navbar .menu-list {
	display: inline-flex;
}
.menu-list li {
	list-style: none;
}
.menu-list li a {
	color: #fff;
	font-size: 18px;
	font-weight: 500;
	margin-left: 45px;
	text-decoration: none;
	transition: all 0.4s ease;
}
.menu-list li a:hover {
	color: #111111;
}
.navbar.sticky .menu-list li a:hover {
	color: white;
}
.icon-bar {
	color: #fff;
	font-size: 20px;
	cursor: pointer;
	display: none;
}
.menu-list .cancel-btn {
	position: absolute;
	right: 30px;
	top: 20px;
}
/* menu area end here */

/* banner video area start here */
.video-banner {
	width: 100%;
	height: 100vh;
	background: rgba(0, 219, 219, 0.8);
	display: flex;
	position: relative;
	align-items: center;
	justify-content: center;
}
.back-video {
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: -1;
}
@media (min-aspect-ratio: 16/9) {
	.back-video {
		width: 100%;
		height: auto;
	}
}
@media (max-aspect-ratio: 16/9) {
	.back-video {
		width: auto;
		height: 100%;
	}
}
.video-banner .item .image {
	max-width: 400px;
	max-height: 400px;
	margin: 0 auto;
	border-radius: 100%;
	border: 10px solid black;
}
.video-banner .item .image img {
	width: 100%;
	border-radius: 100%;
}
/* banner video area end here */

/* text effect area start here */
.typewriter {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 56px;
	color: #fff;
	font-weight: bold;
	position: relative;
	margin: 0;
	top: 50%;
	transform: translateY(-50%);
}

.typewriter span {
	color: white;
	text-transform: uppercase;
	padding: 10px;
	border-right: solid white 10px;
	animation: cursor 1s ease-in-out infinite;
}

@keyframes cursor {
	from {
		border-color: white;
	}
	to {
		border-color: transparent;
	}
}
/* text effect area end here */

/* progress bar area start here */
.progress-bar {
	width: 0;
	-webkit-animation: progress 1.5s ease-in-out forwards;
	animation: progress 1.5s ease-in-out forwards;
}

@-webkit-keyframes progress {
	from {
		width: 0;
	}
	to {
		width: 100%;
	}
}

@keyframes progress {
	from {
		width: 0;
	}
	to {
		width: 100%;
	}
}
/* prgress bar area start here */

/* about area start here */
.about .about-info ul li span {
	position: relative;
	width: 140px;
	display: inline-block;
}
.about .about-info ul li span::after {
	position: absolute;
	content: ":";
	right: 20px;
}
.about .image img {
	width: 100%;
	border-radius: 12px;
}
/* about area end here */
/* exprience area start here */
.experience-content p {
	max-width: 510px;
}

.section-title span {
	color: #00dbdb;
}

.experience-title {
	font-size: 18px;
	font-weight: 400;
	text-transform: uppercase;
	margin-bottom: 0;
	line-height: 22px;
}

.experience-title-wrapper {
	position: relative;
	margin-bottom: 5px;
}
.experience-title-wrapper span {
	position: absolute;
	top: 0;
	transform: translateX(-100%);
	font-size: 18px;
	font-weight: 400;
	font-family: "Teko", sans-serif;
	color: black;
	line-height: 1;
}

.experience-progress .progress {
	height: 5px;
	background: #111111;
	border-radius: 100px;
}
.experience-progress .progress-bar {
	background: #00dbdb;
	border-radius: 100px;
}

.experience-progress-wrapper {
	display: flex;
	flex-direction: column;
	gap: 16px;
}
/* exprience area end here */

/* service area start here */
.service .item {
	border: 1px solid #00dbdb;
	padding: 30px;
	transition: 0.4s;
}
.service .item:hover {
	transform: translateY(-8px);
}
.service .item .content {
	width: calc(100% - 100px);
}
.service .item .content h3 {
	color: #00dbdb;
}
.service .item .content p {
	color: white;
}
.service .item .icon {
	width: 80px;
	height: 80px;
	border-radius: 100%;
	background-color: white;
	text-align: center;
	transition: 0.4s;
	margin-right: 20px;
}
.service .item:hover .icon {
	background-color: #00dbdb;
	transform: rotateY(360deg);
}
.service .item:hover .icon i {
	color: white;
}
.service .item .icon i {
	font-size: 40px;
	color: #00dbdb;
	line-height: 80px;
	transition: 0.4s;
}
/* service area end here */

/* portfolio area start here */
.portfolio .item .image img {
	width: 100%;
}
.portfolio .item .image {
	position: relative;
}
.portfolio .item .image::after {
	position: absolute;
	content: "";
	background: rgba(0, 219, 219, 0.8);
	top: 0;
	left: 0;
	right: 0;
	bottom: 100%;
	z-index: 2;
	transition: 0.4s;
}
.portfolio .item .image::before {
	position: absolute;
	content: "view details";
	text-transform: uppercase;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 3;
	color: white;
	font-weight: bold;
	font-size: 24px;
	transition: 0.4s;
	opacity: 0;
}
.portfolio .item .image:hover::after {
	bottom: 0;
}
.portfolio .item .image:hover::before {
	opacity: 1;
}
/* portfolio area end here */

/* modal area end here */
/* category-box-area-start-here */
.category-modal-box .modal-dialog {
	max-width: 1090px;
}
.category-modal-box .modal-content {
	padding: 30px;
}
.category-modal-box .modal-body .image img {
	width: 100%;
}
.category-modal-box .modal-content .modal-close {
	font-size: 20px;
	color: #00dbdb !important;
	width: 30px;
	height: 30px;
	background-color: white;
	border: 2px solid #00dbdb;
	transition: 0.6s;
	position: absolute;
	top: 15px;
	right: 15px;
}
.category-modal-box .modal-content .modal-close:hover {
	background-color: #00dbdb;
	color: white !important;
}
/* category-box-area-end-here */
/* modal area end here */

/* sub nav start here */
.sub-nav {
	overflow: hidden;
	max-width: 582px;
	margin: 0 auto;
	padding: 30px 0 50px;
}
.sub-nav ul li {
	float: left;
	text-align: center;
	background-color: transparent;
	border: 1px solid #00dbdb;
	padding: 8px 23px;
	color: #00dbdb;
	font-weight: 500;
	margin: 2px 2px;
	cursor: pointer;
	transition: 0.4s;
}
.sub-nav ul li:hover {
	background-color: #00dbdb;
	color: white;
	border: 1px solid #00dbdb;
}
.sub-nav ul li.active {
	background-color: #00dbdb;
	color: white;
	border: 1px solid #00dbdb;
}
/* sub nav end here */

/* faq-start-here */
.faq-wrapper .accordion-button {
	font-size: 20px;
	font-family: "Teko", sans-serif;
	background: #00dbdb;
	color: white;
	padding: 10px 10px 10px 70px;
	border: 0;
	border-radius: 0;
	text-transform: uppercase;
	min-height: 60px;
	text-align: left;
}
.faq-wrapper .accordion-button::after {
	content: "\f067";
	font-family: "Font Awesome 6 free";
	font-weight: 600;
	font-size: 16px;
	margin-left: 0;
	background-image: none;
	width: 45px;
	height: 45px;
	text-align: center;
	line-height: 45px;
	border-radius: 5px;
	position: absolute;
	left: 10px;
}
.faq-wrapper .accordion-button:focus {
	box-shadow: none;
}
.faq-wrapper .accordion-button:not(.collapsed)::after {
	transform: rotate(0deg);
	content: "\f068";
}
.faq-wrapper .accordion-item {
	margin-bottom: 15px;
	border-radius: 5px;
	overflow: hidden;
}
.faq-wrapper .accordion-item:first-of-type .accordion-button {
	border-radius: 0;
}
.faq-wrapper .accordion-item:last-of-type .accordion-button.collapsed {
	border-radius: 5px;
}
.faq-wrapper .accordion-body {
	border: 0;
	padding: 20px 30px;
	position: relative;
	color: white;
	text-align: justify;
}
.faq-wrapper .accordion-collapse {
	border: 0;
	background: #111111;
	border: 1px solid #111111;
	border-top: 0;
	border-radius: 0 0 5px 5px;
}
.faq-wrapper .accordion-button.collapsed {
	background: #f7f7f7;
	color: black;
}
.faq-wrapper .accordion-button.collapsed:after {
	background: #00dbdb;
}

.faq-area {
	background: white;
}

.faq-wrapper.accordion-bordered .accordion-item {
	border-color: #00dbdb;
}

.question-content {
	text-align: center;
}
.question-content p {
	margin-bottom: 40px;
}
.faq-area .icon {
	max-width: 512px;
	margin: 0 auto;
}
.faq-area .icon img {
	width: 100%;
}

.star i {
	color: #00dbdb !important;
}
/* faq-end-here 

/* comment-area-start-here */
.comment {
	background: #111111;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	z-index: 1;
}
.dark-overlay {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background-color: rgba(17, 17, 17, 0.8);
	z-index: -1;
}
.comment .item {
	background-color: white;
	padding: 30px 40px;
	border-radius: 8px;
}
.comment .item .img {
	width: 70px;
	height: 70px;
	border-radius: 100%;
	margin: 0 auto;
	border: 3px solid #111111;
}
.comment .item .img img {
	width: 100%;
	border-radius: 100%;
}
.comment .item .content .cmt-text {
	position: relative;
	color: #6a6a6a;
}
.comment .item .content .cmt-text::before {
	position: absolute;
	content: "\f10d";
	top: 1px;
	left: -22px;
	font-family: "font awesome 6 free";
	font-weight: 600;
	font-size: 28px;
	color: #00dbdb;
}
.comment .item .content .cmt-text::after {
	position: absolute;
	content: "\f10e";
	bottom: 2px;
	font-family: "font awesome 6 free";
	font-weight: 600;
	font-size: 28px;
	color: #00dbdb;
}
/* comment-area-end-here */

/* contact-area-start-here */
.contact .icon-list i {
	font-size: 52px;
	color: #00dbdb;
	margin-right: 30px;
}
.contact .icon-list li {
	border-radius: 2px;
	padding: 50px 30px;
	margin-bottom: 30px;
	float: left;
	width: 50%;
}
.contact form input {
	padding: 15px 30px;
	width: 100%;
	border: 1px solid #00dbdb;
	margin-bottom: 20px;
	border-radius: 2px;
}
.contact form input::placeholder {
	color: #00dbdb;
}
.contact form textarea::placeholder {
	color: #00dbdb;
}
.contact form textarea {
	padding: 15px 30px;
	width: 100%;
	height: 200px;
	border: 1px solid #00dbdb;
	margin-bottom: 20px;
	border-radius: 2px;
}
/* contact-area-end-here */
.map iframe {
    width: 100%;
    height: 550px;
}
/* blog-area-star-here */
.blog .item {
	border: 1px solid #dee2e6;
	border-radius: 2px;
}
.blog .item .image img {
	width: 100%;
}
.blog .item .content h3 {
	transition: 0.4s;
}
.blog .item:hover .content h3 {
	transition: 0.4s;
	color: #00dbdb;
}
.blog .item:hover .content .hover {
	text-decoration: underline;
}
.blog .content {
	height: 100%;
	position: relative;
}
.blog .content .blog_con {
	position: absolute;
	bottom: 15px;
	width: 85%;
	display: flex;
	justify-content: space-between;
}
.blog .content .top_image img {
	width: 40px;
	height: 40px;
	border-radius: 100%;
	margin-right: 10px;
}
.blog-single img {
	width: 100%;
}
.sidebar-search input {
	width: 100%;
	padding: 15px 20px;
	background-color: #111111;
	color: white;
	border: none;
}
.sidebar-search input::placeholder {
	color: white;
}
.sidebar-search button {
	padding: 10px;
	background-color: #00dbdb;
	color: #fff;
}
/* blog-area-end-here */

/* clients-area-star-here */
.clients .clients-image img {
	width: 70%;
}
/* clients-area-end-here */

/* social-icon-list-area-start-here */
.social-icon-list a {
	width: 30px;
	height: 30px;
	line-height: 30px;
	border-radius: 8px;
	border: 1px solid #00dbdb;
	color: white;
	text-align: center;
	margin: 0px 5px;
	transition: 0.4s;
}
.social-icon-list a:hover {
	color: #00dbdb;
	background-color: white;
	border: 1px solid white;
}
/* social-icon-list-area-end-here */

/* map-area-start-here */
.map iframe {
	margin-bottom: -10px;
}
/* map-area-end-here */

/* footer-area-end-here */
.footer-logo{
    margin-top:25px;
}
.footer .theme-clr:hover {
	color: white;
}

button.side-button {
    background: #00da86;
    padding: 10px 15px;
    border-radius: 5px;
    position: fixed;
    right: 50px;
    bottom: 50px;
}
button.side-button i{
	color: #000;
	font-size: 16px;
}
/* footer-area-end-here */
