/*=================================
Template Name: Returnfiles
Version: 1.0
Author: Tariqul Islam
--------------------------------
    
CSS INDEX
=========

1. BASE CSS
2. HEADER AREA
2.1 MAIN MENU AREA
2.2 SUB MENU AREA
2.3 MOBILE MENU
3. SLIDER AREA
4. SINGLE ARTICLE
5. NEXT PREV PAGER
6. SIDEBAR WIDGET
6.1 ABOUT WIDGET
6.2 CATEGORY WIDGET
6.3 POPULAR POST
6.4 SOCIAL PROFILE WIDGET
6.5 NEWSLETTER WIDGET
7. INSTAGRAM AREA
8. FOOTER AREA
9. SINGLE POST PAGE CSS
9.1 SINGLE POST AUTHOR
9.2 RELATED POST
9.3 POST COMMENT
9.4 LEAVE COMMENT
10. CONTACT PAGE CSS
11. ABOUT PAGE CSS
12. PORTFOLIO PAGE CSS
13. ERROR PAGE CSS
================================*/

/*===================
1. BASE CSS
===================== */
:root {
	--primary-color: #f35969;
	--secondary-color: #ad2937;
	--background-color: #f9fbff;
	--text-color: #484848;
	--heading-color: #001453;
	--mute-color: #838383;
}

.bg-dark {
	background-color: #070d22 !important;
}

.btn-primary {
	background-color: var(--primary-color) !important;
	border: 0 none;
}

body {
	font-family: "Roboto", serif;
	font-optical-sizing: auto;
	color: var(--text-color);
	font-size: 16px;
	line-height: 1.6;
	font-weight: 400;
	background-color: var(--background-color);
	position: relative;
	height: 100%;
	box-sizing: border-box;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
	font-family: "Poppins", serif;
	font-optical-sizing: auto;
	margin: 0 0 15px;
	font-weight: 600;
	color: var(--heading-color);
}

a:focus {
	outline: 0 solid
}

img {
	max-width: 100%;
	height: auto;
	/* object-fit: cover; */
}

a,
a:hover,
a:focus {
	text-decoration: none;
	color: var(--primary-color);
	outline: none;
	transition: all 0.4s ease 0s;
}

input:focus,
textarea:focus {
	outline: 0 none;
}

input,
textarea,
.form-control {
	background: #fff;
	padding: 15px 20px;
	width: 100%;
	border: 0;
	color: #857a7d;
	border-radius: 5px;
	font-size: 16px;
}

input[type='checkbox'] {
	padding: 0 !important;
}

::-moz-placeholder {
	opacity: 1;
}

/* 2. COMMON CSS */
@media (min-width: 992px) {
	.magic-cursor {
		display: block;
		width: 10px;
		height: 10px;
		border-radius: 50%;
		position: fixed;
		left: 10px;
		top: 10px;
		user-select: none;
		pointer-events: none;
		visibility: hidden;
		z-index: 999999;
		-webkit-transition: all .3s cubic-bezier(.165, .84, .44, 1);
		transition: all .3s cubic-bezier(.165, .84, .44, 1);
	}

	.magic-cursor:before {
		background: var(--primary-color);
		opacity: 1;
		content: "";
		width: 100%;
		height: 100%;
		border-radius: 50%;
		position: absolute;
		left: 0;
		top: 0;
		transition: all .3s ease;
	}
}

.lenis.lenis-smooth {
	scroll-behavior: auto !important;
}

.overly {
	position: relative;
	z-index: 1;
}

.overly::after {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	content: "";
	background: #000;
	opacity: .75;
	z-index: -1;
}

.owl-carousel .owl-dots {
	text-align: center;
}

.owl-carousel .owl-dots .owl-dot {
	display: inline-block;
	zoom: 1;
}

.owl-carousel .owl-dots .owl-dot span {
	width: 10px;
	height: 10px;
	margin: 5px 7px;
	background: var(--primary-color);
	display: block;
	-webkit-backface-visibility: visible;
	transition: opacity .2s ease;
	border-radius: 30px;
}
.owl-carousel .owl-dots .owl-dot.active span {
	background-color: #fff;
}
.owl-carousel .owl-nav button {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 10px;
	width: 50px;
	height: 50px;
	color: var(--heading-color);
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	box-shadow: 0 5px 10px rgba(0, 0, 0, .05);
	text-align: center;
	transition: .4s;
}

.owl-carousel .owl-nav button i {
	font-size: 20px;
}


.owl-carousel .owl-nav button.owl-next {
	left: auto;
	right: 10px;
}

.custom-btn {
	color: #fff;
	display: inline-block;
	font-weight: 600;
	padding: 14px 30px;
	position: relative;
	text-transform: uppercase;
	z-index: 1;
	background: var(--primary-color) none repeat scroll 0 0;
	border-radius: 5px;
}

.custom-btn::after {
	background: var(--secondary-color) none repeat scroll 0 0;
	border-radius: 3px;
	content: "";
	height: 100%;
	left: 0;
	opacity: 0;
	position: absolute;
	top: 0;
	width: 10px;
	z-index: -1;
	transition: .4s;
}

.custom-btn:hover {
	color: #fff;
}

.custom-btn:hover::after {
	opacity: 1;
	width: 100%;
}

.sec-padding {
	padding: 80px 0;
}

/* ==========================================
PRELODER AREA
=============================================*/

#preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #f7f7f7;
	z-index: 999999;
}

.preloader {
	width: 50px;
	height: 50px;
	display: inline-block;
	padding: 0px;
	text-align: left;
	box-sizing: border-box;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-left: -25px;
	margin-top: -25px;
}

.preloader span {
	position: absolute;
	display: inline-block;
	width: 50px;
	height: 50px;
	border-radius: 100%;
	background: #FFC107;
	-webkit-animation: loader 1.3s linear infinite;
	animation: loader 1.3s linear infinite;
}

.preloader span:last-child {
	animation-delay: -0.8s;
	-webkit-animation-delay: -0.8s;
}

@keyframes loader {
	0% {
		transform: scale(0, 0);
		opacity: 0.5;
	}

	100% {
		transform: scale(1, 1);
		opacity: 0;
	}
}

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

	100% {
		-webkit-transform: scale(1, 1);
		opacity: 0;
	}
}

input,
texarea {
	border-color: #777;
}

.full-screen {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
}

.full-screen .container {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
}

.login-form,
.signup-form {
	max-width: 645px;
	margin-left: auto;
	margin-right: 0;
	background: #fff;
	padding: 60px;
}

.form-group {
	margin-bottom: 15px;
}

.login-form .btn {
	padding: 14px;
	margin-bottom: 15px;
}

.login-form .btn img {
	margin-right: 7px;
}

.scroll-top {
	position: fixed;
	right: 30px;
	bottom: 30px;
	height: 50px;
	width: 50px;
	cursor: pointer;
	display: block;
	border-radius: 50%;
	z-index: 10000;
	opacity: 1;
	visibility: hidden;
	transform: translateY(45px);
	transition: all 300ms linear;
	background-color: #fff;
	box-shadow: rgba(0, 0, 0, 0.14) 0px 5px 15px;
}

.scroll-top:after {
	content: "\f106";
	font-family: "fontawesome";
	font-weight: 700;
	position: absolute;
	text-align: center;
	line-height: 50px;
	font-size: 20px;
	color: var(--heading-color);
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	cursor: pointer;
	display: block;
	z-index: 1;
	border-radius: 50%;
}

.scroll-top.show {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.scroll-top svg {
	color: #fff;
	border-radius: 50%;
}

.scroll-top .progress-circle path {
	stroke: var(--primary-color);
	stroke-width: 8px;
	box-sizing: border-box;
	transition: all 400ms linear;
}


/*===========================================
Header Style*/
.search-popup {
	min-height: 95vh;
}

.search-popup .btn-close {
	position: absolute;
	right: 0;
	top: 1.25rem;
}

.header {
	position: relative;
	z-index: 99;
}

a.navbar-brand {
	max-width: 130px;
}


.navbar {
	padding: 0;
}

.navbar .dropdown,
.navbar .dropdown-center,
.navbar .dropend,
.navbar .dropstart,
.navbar .dropup,
.navbar .dropup-center {
	position: relative;
}

.navbar .navbar-nav li a.nav-link {
	padding: 15px;
	color: var(--heading-color);
	text-transform: capitalize;
	font-weight: 500;
}

.btn-close {
	background: var(--primary-color) url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
	padding: 4px;
	box-shadow: 0 20px 55px rgba(0, 0, 0, 0.1);
	width: 30px;
	height: 30px;
	font-size: 12px;
	border-radius: 50%;
	opacity: 1;
	transition: .4s;
}

.offcanvas-header .btn-close {
	padding: 4px;
	margin-right: 0;
}

.search-popup .search-form {
	position: relative;
}

.search-popup .search-form:after {
	content: "\f002";
	font-family: fontawesome;
	position: absolute;
	z-index: 1;
	width: 1.25rem;
	left: .9375rem;
	background-color: transparent;
	top: 50%;
	transform: translateY(-50%);
}

.search-popup .search-form input {
	padding-left: 40px;
	border: 1px solid #ebebeb;
}
.navbar .navbar-nav>li.dropdown-fullwidth {
	position: static;
}

.navbar .navbar-nav>li.dropdown-fullwidth .dropdown-menu {
	left: 0 !important;
	margin-left: auto;
	margin-right: auto;
	right: 0 !important;
	top: 100%;
	transform: none !important;
	padding: 1.875rem 1.875rem 1.25rem;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-ms-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

@media (min-width: 1200px) {
	.navbar .navbar-nav>li.dropdown-fullwidth .dropdown-menu {
		width: calc(100% - 6.25rem);
	}
	header .header-nav-wrapper.header-sticky.scroll-on .navbar .navbar-nav li a.nav-link{
		padding: 25px 30px;
	}
	.navbar-expand-xl .offcanvas {
		position: static;
		z-index: auto;
		flex-grow: 1;
		width: auto !important;
		height: auto !important;
		visibility: visible !important;
		background-color: transparent !important;
		border: 0 !important;
		transform: none !important;
		transition: none;
	}

	.navbar-expand-xl .offcanvas .offcanvas-body {
		display: flex;
		flex-grow: 0;
		padding: 0;
		overflow-y: visible;
	}

	.navbar-expand-xl .offcanvas .offcanvas-header {
		display: none;
	}

	.navbar-expand-xl .navbar-nav {
		flex-direction: row;
	}

	.navbar .navbar-nav li a.nav-link {
		padding: 35px 30px;
	}

	.navbar .navbar-nav .dropdown-menu {
		display: block;
		opacity: 0;
		-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
		filter: alpha(opacity=0);
		visibility: hidden;
		transform: translateY(20px);
	}

	.navbar .navbar-nav>.dropdown:hover>.dropdown-menu,
	.navbar .navbar-nav .dropdown-submenu.dropend:hover>.dropdown-menu {
		opacity: 1;
		-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
		filter: alpha(opacity=100);
		visibility: visible;
		transform: translateY(0);
	}


}


.navbar .navbar-nav>li .dropdown-menu {
	border: none;
	border-radius: 8px;
	margin-top: 0;
	padding: 15px 0;
	min-width: 250px;
	top: 100%;
	left: 0;
	background-color: #fff;
	box-shadow: 0rem 0.375rem 2.125rem rgba(215, 216, 222, 0.32);
	z-index: 10;
	transform: translateY(15px);
	transition: all 0.4s ease;
}

.navbar .navbar-nav>li .dropdown-menu .dropdown-item {
	padding: 7px 15px;
	padding-left: 25px;
	width: 100%;
	font-size: 15px;
}

.navbar .navbar-nav>li .dropdown-menu .dropdown-item:hover,
.navbar .navbar-nav>li .dropdown-menu .dropdown-item:focus {
	background-color: transparent;
	color: var(--primary-color);
	padding-left: 30px;
}

.navbar .navbar-nav>li .dropdown-menu .dropdown-submenu a:after {
	position: absolute;
	right: 16px;
	transform: rotate(-90deg);
}

.navbar .navbar-nav>li .dropdown-menu .dropdown-submenu.dropend .dropdown-menu {
	left: 100%;
	right: auto;
	top: -10px;
}

.navbar .navbar-nav>li .dropdown-menu .dropdown-submenu.dropend:focus>a,
.navbar .navbar-nav>li .dropdown-menu .dropdown-submenu.dropend:hover>a {
	color: var(--primary-color);
	background-color: transparent;
	padding-left: 30px;
	transition: all 0.3s ease;
}

.navbar .navbar-nav>li .dropdown:hover .dropdown-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.navbar .navbar-brand {
	margin-right: 0;
}

.navbar .navbar-toggler:focus {
	box-shadow: none;
}

.navbar .dropdown .dropdown-toggle:after {
	content: "\f107";
	font-family: "fontawesome" !important;
	border: 0 none;
	margin-left: 5px;
	float: right;
}

.navbar button.navbar-toggler.offcanvas-nav-btn {
	border: 0;
	font-size: 1.5rem;
	font-weight: 700;
	color: #333;
}
.header.header-transparent .navbar button.navbar-toggler.offcanvas-nav-btn {
	color: #fff;
}

.navbar button.navbar-toggler.offcanvas-nav-btn i {
	top: 0.125rem;
	position: relative;
}

.navbar .dropdown-header {
	color: #333;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 0.0625rem;
	padding: 3px 15px 7px 25px;
	text-transform: uppercase;
}

.navbar .custom-btn {
	border-radius: 30px;
	padding: 9px 28px;
}

@keyframes headerSlideDown {
	0% {
		margin-top: -100px
	}

	to {
		margin-top: 0
	}
}

.animated {
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

.fadeInUp {
	-webkit-animation-name: fadeInUp;
	animation-name: fadeInUp;
}

.fadeInDown {
	-webkit-animation-name: fadeInDown;
	animation-name: fadeInDown;
}

@keyframes fadeInUp {
	0% {
		opacity: 0;
		-webkit-transform: translateY(20px);
		-ms-transform: translateY(20px);
		transform: translateY(20px);
	}

	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
	}
}

@keyframes fadeInDown {
	0% {
		opacity: 0;
		-webkit-transform: translateY(20px);
		-ms-transform: translateY(20px);
		transform: translateY(20px);
	}

	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
	}
}

/* sticky nav */
header .header-nav-wrapper.header-sticky.scroll-on {
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	z-index: 999;
	background: #fff;
	box-shadow: 0 2px 30px rgba(0, 0, 0, .03);
	width: 100%;
	animation: headerSlideDown 1.3s ease forwards;
}

/* ==========================
Transparent Header */
.header-transparent {
	background-color: transparent;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
}
.header-transparent .offcanvas.bg-white.offcanvas-start.offcanvas-nav.show {
	background: var(--heading-color) !important;
}
header.header-area {
	position: relative;
	z-index: 2;
}

header.header-area .logo {
	max-width: 125px;
}

.header-transparent .navbar .navbar-nav li a.nav-link {
	color: #fff;
}

.header-transparent .header-actions a.text-reset {
	color: #fff !important;
}

.header-transparent .main-menu ul li ul.sub-menu {
	background-color: var(--heading-color);
}

header.header-transparent .header-nav-wrapper.header-sticky.scroll-on {
	background-color: var(--heading-color);
}

/* ============================================
3. SLIDER AREA
================================================*/
.slider-area .single-slide {
	max-height: 700px;
	overflow: hidden;
}

.slider-area .overly::after {
	z-index: auto;
}

.slider-area .owl-dots {
	position: absolute;
	bottom: 75px;
	left: 10%;
	transform: translateX(-50%);
}

.single-slide {
	position: relative;
}

.single-slide::after {
	z-index: 1;
	opacity: .55;
}

.slide-info {
	left: 50%;
	max-width: 800px;
	width: 100%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: 3;
}
.slider-area .slide-info{
	left: 34%;
	top: 55%;
}
.slider-area .slide-info p {
	font-size: 18px;
	max-width: 700px;
	color: #fff;
	margin: 20px 0 60px;

}

.slide-tag {
	color: #fff;
	text-transform: uppercase;
	padding: 5px 10px;
	font-size: 14px;
	background-color: var(--primary-color);
	border-radius: 5px;
}

.slide-title {
	font-size: 50px;
	font-weight: 700;
	margin: 18px 0;
	line-height: 1.2;
}

.slide-title a {
	color: #fff;
}

.slide-title a:hover {
	color: var(--primary-color);
}


.slider-area .owl-nav i {
	font-size: 60px;
}

.slide-item {
	display: flex;
	align-items: center;
	min-height: 100vh;
	position: relative;
	max-width: 700px;
	padding-top: 110px;
}
.sec-title{
	font-weight: 700;
}
.slide-item .sec-title {
	color: #fff;
	font-size: 55px;
}

.slide-item p {
	color: rgba(255, 255, 255, .9);
	line-height: 1.5;
	max-width: 600px;
	font-weight: 400;
}

.hero-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero-slider .slider-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/banner/parallax.jpg') no-repeat center center;
    background-size: cover;
    z-index: -1;
}

.hero-slider.overly::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.hero-slider .slide-item {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    z-index: 1;
}

.hero-slider .item-txt {
    position: relative;
    z-index: 2;
    color: #fff;
}

.hero-slider .slide-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    width: 100%;
}

.hero-slider .owl-nav {
    position: absolute;
    top: 80%;
    left: 78%;
    display: block;
}

.hero-slider .owl-carousel .owl-nav button {
	background: rgba(255, 255, 255, .5);
}
.hero-slider .owl-carousel .owl-nav button:hover{
	background-color: #fff;
}
.home-carousel-sec .owl-carousel .owl-nav button {
	position: absolute;
	left: -80px;
	top: 50%;

}

.home-carousel-sec .owl-carousel .owl-item img {
	width: auto;
}

.home-carousel-sec .owl-carousel .owl-nav button.owl-next {
	left: auto;
	right: -80px;
}

.home-carousel-sec {
	padding: 60px 0;
}
.grid-carousel.owl-carousel .owl-stage-outer {
	padding-bottom: 110px;
}
.grid-carousel .single-slide{
	min-height: 600px;
	background-size: cover;
	background-position: center center;
	border-radius: 10px;
	border: 10px solid #fff;
	box-shadow: 0 2px 20px rgba(0, 0, 0, .05);
}

.grid-carousel .single-content {
	max-width: 650px;
	background: #fff;
	position: absolute;
	bottom: -100px;
	left: 40px;
	padding: 50px 50px 30px;
	box-shadow: 0 5px 10px rgba(0, 0, 0, .05);
	border-radius: 10px;
}
.grid-carousel .single-content .post-meta a {
	line-height: 2.5;
	margin-right: 20px;
	font-size: 16px;
}
.grid-carousel .single-content img{
	width: 40px;
	height: 40px;
	border-radius: 50%;
	float: left;
	margin-right: 10px;
}
.grid-carousel .owl-nav {
	max-width: 200px;
	position: absolute;
	bottom: 112px;
	left: 65%;
	transform: translateX(-50%);

}
.grid-carousel.owl-carousel .owl-nav button{
	background: #fff;
}
.grid-carousel .article-title {
	font-size: 35px;
}
/* ============================================
 HOME -2 Vesion 
===============================================*/
.slide-list .single-slide.overly::after {
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(204, 204, 204, 0) 10%, rgba(0, 0, 0, 1) 100%);
	height: 75%;
	top: auto;
	bottom: 0;
	opacity: 1;
}

.slide-list .single-slide>img {
	height: 400px;
	width: 100%;
}


.slide-list .slide-title {
	font-size: 22px;
	margin: 5px 0 20px;
	font-weight: 600;
}

.slide-list .slide-info {
	left: 30px;
	min-width: 385px;
	transform: translate(0, 0);
	bottom: 15px;
	right: 30px;
	top: auto;
}

.slide-list .slide-info>.article-btn {
	color: var(--primary-color);
}

.slide-list .slide-info .article-btn::before {
	background: #fff none repeat scroll 0 0;
}

.slide-list .slide-info .article-btn:hover::before {
	background: var(--primary-color);
}

.slide-list .owl-nav button i {
	font-size: 45px;
}

/* ============================================
4. SINGLE ARTICLE
===============================================*/

.site-main {
	padding: 60px 0 40px;
}

.home-carousel-sec .entry-content {
	max-width: 600px;
}

.home-carousel-sec .entry-content h2 {
	margin-bottom: 20px;
	font-size: 40px;
	font-weight: 700;
}

.home-carousel-sec .entry-content h2 a {
	color: var(--heading-color);
}

.home-carousel-sec .entry-content h2:hover a {
	color: var(--primary-color);
}

.home-carousel-sec .entry-content .post-meta {
	margin: 30px 0 0;
}

.home-carousel-sec .entry-thumb {
	border-radius: 20px;
	overflow: hidden;
}


.article-thumb {
	overflow: hidden;
	position: relative;
	width: 100%;
	height: 250px; /* Fixed height for all article thumbnails */
}

.article-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform 0.5s ease;
}

.single-article:hover .article-thumb img {
	transform: scale(1.1);
}

.article-thumb a {
	display: block;
	width: 100%;
	height: 100%;
}

/* For the about section images */
.about-wrap figure, .aboutt-wrap figure {
	width: 100%;
	height: 400px;
	margin: 0;
}

.about-wrap figure img, .aboutt-wrap figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	border-radius: 10px;
}

.single-article,
.about-wrap {
	position: relative;
	margin-bottom: 30px;
	background: #fff;
	box-shadow: rgba(0, 0, 0, 0.08) 0px 1px 3px, rgba(0, 0, 0, 0.04) 0px 1px 2px;
	transition: .4s;
}
.fluid {
	border-radius: 30px;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	
}

.single-article:hover,
.about-wrap:hover {
	box-shadow: rgba(0, 0, 0, 0.05) 0px 3px 3px, rgba(0, 0, 0, 0.02) 0px 3px 2px;
}



.article-caption>a {
	background: var(--primary-color) none repeat scroll 0 0;
	color: #fff;
	display: inline-block;
	padding: 5px 15px;
	font-weight: 500;
	text-transform: capitalize;
}

.article-caption {
	left: 0;
	position: absolute;
	top: 0;
}

.article-thumb img,
.article-thumb-carousel img {
	transform: scale(1);
	transition: .5s;
}

.single-article:hover .article-thumb img{
	transform: scale(1.1);
}

.single-content {
	overflow: hidden;
	padding: 25px 25px 15px;
}
.list-article .single-content{
	padding: 0 20px;
}
.single-para {
	padding-bottom: 15px;
}

.media-article {
	padding-right: 0;
}

.media-article .single-content {
	margin: 0;
	padding-left: 30px;
}

.single-social {
	list-style: outside none none;
	margin: 0;
	padding: 0;
}

.single-social li {
	display: inline-block;
	padding-right: 15px;
}

.single-social li:last-child {
	padding-right: 0;
}

.single-social li a .fa-facebook,
.social-top>ul li a .fa-facebook {
	color: #3B5998
}

.single-social li a .fa-twitter,
.social-top>ul li a .fa-twitter {
	color: #1DA1F2;
}

.single-social li a .fa-instagram,
.social-top>ul li a .fa-instagram {
	color: #da0046;
}

.single-social li a .fa-google-plus,
.social-top>ul li a .fa-google-plus {
	color: #DD4B3C;
}

.single-social li a .fa-pinterest {
	color: #BA0000;
}

.single-social li a .fa-linkedin,
.social-top>ul li a .fa-linkedin {
	color: #0077B5;
}

.social-top>ul li a .fa-youtube-play {
	color: #FF0000
}

.article-title {
	font-size: 30px;
	margin: 10px 0 5px;
	line-height: 1.2;
}

.product-wrap h4 {
	font-size: 28px;
}
.search-popup .article-title,.article-title.sm-title{
	font-size: 20px;
}
.list-article .article-title.sm-title {
	font-size: 24px;
}
.article-title a {
	color: #001453;
}

.single-content a.custom-btn {
	color: #001453;
	font-weight: 600;
	font-size: 14px;
	letter-spacing: 1px;
	padding: 8px 20px;
	text-transform: capitalize;
	background: var(--background-color);
	border-radius: 3px;
}

.post-meta {
	margin: 20px 0;
}

.post-meta span.post-author img {
	width: 30px;
	height: 30px;
	border-radius: 50px;
	margin-right: 10px;
	display: inline;
}

.post-meta a,
.post-meta span {
	display: inline-block;
	margin-right: 5px;
	text-transform: capitalize;
	font-size: 14px;
	color: var(--mute-color);
}

.post-meta>a:last-child {
	margin-right: 0;
}

.post-meta span i {
	margin-right: 8px;
}

.article-btn {
	color: #595757;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 1px;
	padding-left: 10px;
	position: relative;
	text-transform: capitalize;
}

.article-btn::before {
	background: #595757 none repeat scroll 0 0;
	content: "";
	height: 20px;
	left: 0;
	position: absolute;
	top: 0;
	width: 4px;
	transition: .4s;
}

.article-title a:hover,
.post-meta a:hover,
.article-btn:hover {
	color: var(--primary-color)
}

.article-btn:hover::before {
	background: var(--primary-color)
}

/*
	List Article
*/
article.single-article.list-article {
	border-radius: 10px;
	overflow: hidden;
}

.list-article .article-thumb {
	min-height: 360px;
	background-size: cover;
	position: relative;
	background-position: center center;
}

.list-article .list-link {
	position: absolute;
	z-index: 1;
	display: block;
	width: 100%;
	height: 100%;
}

.list-article .article-caption {
	z-index: 2;
}

.list-article .single-content p {
	margin-bottom: 25px;
}
.single-article{
	border-radius: 10px;
	overflow: hidden;
}
.single-article.mega-article .single-content{
	padding: 40px;
}

/* Classic Article */
.article-thumb-carousel .owl-dots {
	position: absolute;
	bottom: 10px;
	margin: 0;
	left: 50%;
	transform: translateX(-50%);
}
.classic-article .article-thumb img,
.classic-article .article-thumb-carousel img {
	height: 500px;
	width: 100%;
}

/* Medium Aricle */

.medium-article .article-thumb img {
	height: 300px;
	width: 100%;
}

/*================================
5. NEXT PREV PAGER
==================================*/

.pager {
	margin: 60px 0px 30px;
}

.pager>a {
	background: #fff;
	color: #001453;
}

.pager>span {
	background: var(--primary-color);
	color: #fff;
	font-weight: 500;
}

.pager>a,
.pager>span {
	display: inline-block;
	height: 40px;
	width: 40px;
	line-height: 40px;
	text-align: center;
	border-radius: 3px;
	font-size: 18px;
	margin: 0 5px;
	box-shadow: rgba(0, 0, 0, 0.08) 0px 1px 3px, rgba(0, 0, 0, 0.04) 0px 1px 2px;
}

.pager>a:hover {
	background: var(--primary-color);
	color: #fff;
}

/* =============================================
6. SIDEBAR WIDGET
================================================*/

.widget {
	margin-bottom: 30px;
	box-shadow: rgba(0, 0, 0, 0.08) 0px 1px 3px, rgba(0, 0, 0, 0.04) 0px 1px 2px;
	background: #fff;
	overflow: hidden;
	padding: 30px;
	border-radius: 10px;
}

.widget>ul {
	list-style: outside none none;
	margin: 0;
	padding: 0;
}

.widget-title {
	color: #001453;
	font-size: 24px;
	margin-bottom: 10px;
	text-align: center;
	text-transform: capitalize;
}

.line-bg {
	background: var(--primary-color);
	display: block;
	height: 2px;
	margin: 0 auto 40px;
	position: relative;
	width: 100px;
	opacity: .7;
}

.line-bg::after {
	background: var(--primary-color);
	content: "";
	height: 2px;
	left: 50%;
	position: absolute;
	transform: translate(-50%, -50%);
	top: 12px;
	width: 50%;
	opacity: .8;
}

/* ====================================
6.1 ABOUT WIDGET
=======================================*/

.about-thumb {
	height: 150px;
	margin: 0 auto;
	width: 150px;
}

.about-thumb>img {
	border-radius: 50%;
}

.widget.about-widget p {
	text-align: center;
	margin: 20px 20px 30px;
}

.about-widget .social-profile {
	text-align: center;
}

/* =====================================
6.2 CATEGORY WIDGET
========================================*/

.widget>ul>li {
	border-bottom: 1px solid #ebebeb;
	padding: 10px;
	position: relative;
	text-align: right;
	z-index: 1;
	color: #001453;
	font-weight: 500;
}

.widget ul li::after {
	display: table;
	clear: both;
	content: "";
}

.widget>ul>li:last-child {
	border-bottom: none;
}

.widget>ul>li::before {
	background: var(--primary-color) none repeat scroll 0 0;
	content: "";
	height: 100%;
	left: 0;
	position: absolute;
	top: 0px;
	width: 100%;
	opacity: 0;
	z-index: -1;
	border-radius: 3px;
	transition: .4s;
}

.widget>ul>li>a {
	color: #001453;
	float: left;
	font-size: 16px;
	display: block;
	text-transform: capitalize;
	transition: .4s;
}

.widget>ul>li:hover::before {
	opacity: 1;
}

.widget>ul>li:hover a,
.widget>ul>li:hover {
	color: #fff;
}

.widget>ul>li:hover a {
	padding-left: 10px;
}

/* =======================================
6.3 POPULAR POST
==========================================*/

.sp-thumb {
	float: left;
	width: 80px;
	margin-right: 20px;
	border-radius: 10px;
	overflow: hidden;
}

.sp-details {
	margin-left: 90px;
}

.s-post {
	border-bottom: 1px solid #ebebeb;
	padding: 12px 0;
	z-index: 1;
	display: table;
}

.s-post:hover .sp-details a {
	color: var(--primary-color);
}

.s-post:last-child {
	border: medium none;
}

.sp-details a {
	color: #001453;
}

.sp-details>h4 {
	font-size: 18px;
	line-height: 20px;
	margin-bottom: 5px;
	font-weight: 600;
}

.sp-details>span {
	font-size: 13px;
}

/* =====================================
6.4 SOCIAL PROFILE WIDGET
========================================*/

.social-profile>ul {
	list-style: outside none none;
	margin: 0;
	padding: 0;
}

.social-profile>ul>li {
	display: inline-block;
	padding-right: 10px;
}

.social-profile>ul>li:last-child {
	padding-left: 0;
}

.social-profile>ul>li>a {
	width: 40px;
	height: 40px;
	background: #eae9e9;
	display: table;
	text-align: center;
	font-size: 16px;
}

.social-profile>ul>li>a i {
	display: table-cell;
	vertical-align: middle;
	transition: .4s;
}

.social-profile>ul>li>a i.fa-twitter {
	color: #7292fc;
}

.social-profile>ul>li>a i.fa-facebook {
	color: #416af2;
}

.social-profile>ul>li>a i.fa-youtube-play {
	color: #f83535;
}

.social-profile>ul>li>a i.fa-vimeo-square {
	color: #9175ed;
}

.social-profile>ul>li>a i.fa-tumblr {
	color: #a52f2f;
}

.social-profile>ul>li>a i.fa-pinterest {
	color: #f94545;
}

.social-profile>ul>li:hover a i {
	color: #fff;
}

.social-profile>ul>li:hover i.fa-twitter {
	background: #7292fc;
}

.social-profile>ul>li:hover i.fa-facebook {
	background: #416af2;
}

.social-profile>ul>li:hover i.fa-youtube-play {
	background: #f83535;
}

.social-profile>ul>li:hover i.fa-vimeo-square {
	background: #9175ed;
}

.social-profile>ul>li:hover i.fa-tumblr {
	background: #a52f2f;
}

.social-profile>ul>li:hover i.fa-pinterest {
	background: #f94545;
}

/* =====================================
6.5 NEWSLETTER WIDGET
========================================*/

.newsletter-entry p {
	text-align: center;
	max-width: 320px;
	margin: 0 auto 40px;
}

.newsletter-entry input {
	border: 1px solid #e7e7e7;
	height: 50px;
	padding-left: 60px;
	position: relative;
	text-transform: capitalize;
	border-radius: 3px;
}

.name,
.email {
	position: relative;
	margin-bottom: 30px;
}

.name>span,
.email span {
	color: #001453;
	font-size: 16px;
	left: 20px;
	position: absolute;
	top: 10px;
}

.name:after,
.email:after {
	background: #ebebeb none repeat scroll 0 0;
	content: "";
	height: 30px;
	left: 45px;
	position: absolute;
	top: 7px;
	width: 2px;
}

.newsletter-entry .submit {
	background: var(--primary-color) none repeat scroll 0 0;
	border: medium none;
	border-radius: 3px;
	color: #fff;
	font-size: 16px;
	height: 50px;
	text-transform: uppercase;
	width: 100%;
	font-weight: 700;
	transition: all 0.5s ease 0s;
}

.newsletter-entry .submit:hover {
	background: var(--secondary-color);
}

/* =================================
7. INSTAGRAM AREA
====================================*/

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

.instagram-wrap {
	padding: 0;
	margin: 0;
	list-style: none;
}

.instagram-wrap li a {
	display: block;
	position: relative;
}

.instagram-wrap li a::after {
	background: #000 none repeat scroll 0 0;
	content: "";
	height: 100%;
	left: 0;
	opacity: 0.25;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 4;
	transition: .4s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.instagram-wrap li:hover a::after {
	opacity: 0;
}

.instagram-wrap li img {
	height: 230px;
}

.instagram-wrap.owl-carousel .owl-nav button {
	color: #fff;
	background: var(--primary-color);
	opacity: 0;
	transition: .4s;
}

.instagram-wrap.owl-carousel:hover .owl-nav button {
	opacity: 1;
}

.insta-title {
	font-size: 13px;
	left: 50%;
	padding: 10px 20px;
	position: absolute;
	min-width: 260px;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: 3;
	border-radius: 3px;
	letter-spacing: 2px;
	display: inline;
	font-weight: 400;
	text-transform: uppercase;
}

.insta-title::after {
	position: absolute;
	content: "";
	background: var(--primary-color);
	opacity: .9;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: -1;
	border-radius: 5px;
	transition: .4s;
}

.insta-title:hover::after {
	opacity: 1;
}

.insta-title a {
	color: #fff;
	display: block;
}

.insta-title a i {
	font-size: 24px;
	vertical-align: middle;
	margin-right: 5px;
}

/* 8. =======================================
FOOTER AREA
============================================== */
.social-share a {
	background-color: #f4f5f8;
	display: inline-block;
	width: 40px;
	height: 40px;
	line-height: 40px;
	font-size: 17px;
	text-align: center;
	border-radius: 50px;
	margin-right: 13px;
	color: var(--heading-color);
}

.social-share a:hover {
	background-color: var(--primary-color);
	color: #fff;
}

.footer-widget .widget-title {
	margin-bottom: 2.5rem;
	color: #fff;
	text-align: left;
}

.footer-widget .h5 {
	font-weight: 600;
}

.about-footer {
	max-width: 320px;
}

.f-logo {
	margin-bottom: 30px;
}

.footer-widget ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-widget ul li {
	margin-bottom: 1.25rem;
}

.footer-widget ul li a,
.footer-widget p,
.footer-widget .form-check-label {
	color: rgba(255, 255, 255, .9);
}

.footer-widget ul li:hover a {
	color: var(--primary-color);
}

.form-check-input:checked {
	background-color: #f35969;
	border-color: #f35969;
}

.subs-form input {
	padding-left: 2.8125rem;
}

.subs-form .form-group {
	border-radius: 40px;
	overflow: hidden;
}

.subs-form .form-group img {
	position: absolute;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	left: 1.5625rem;
}

.subs-form button.custom-btn {
	position: absolute;
	right: 0;
	top: 0;
	overflow: hidden;
	border: 0;
	height: 100%;
	padding: 0 20px;
	border-radius: 0;
}

.footer-bottom {
	background: #060b1d;
	border: 1px solid #0f193c;
}

.breadcrumb-item_home{
	color: #fff;
	list-style: none;
}
.footer-bottom p {
	color: rgba(255, 255, 255, .8);
}

.footer-bottom p a {
	color: var(--primary-color);
}

/* ==========================================
9. SINGLE POST PAGE CSS
=============================================*/
.joi{
	background-color: #262020;
}
.promo-area {
	background: url('../images/article/office.jpg') no-repeat center center / cover;
}

.promo-area.overly::after {
	opacity: .45;
}

.promo-wrap {
	padding: 100px 0 70px;
}
.post-wrap {
	background: #999898;
	padding-bottom: 10px;
	overflow: hidden;
	border-radius: 10px;
	border: 1px solid #f1f1f1;
}

.single-post figure {
	margin-bottom: 0px;
}
.article-header h1 {
	color: var(--heading-color);
	font-weight: 700;
	font-size: 50px;
}
.article-header .custom-btn{
	padding: 5px 15px;
	font-size: 13px;
	margin-bottom: 20px;
}


.section-title {
	color: #fff;
	font-size: 36px;
}

.breadcrumb {
	background: transparent;
	padding: 5px 0;
	text-transform: capitalize;
	font-size: 16px;
}

.breadcrumb li a {
	font-weight: 500;
	color: #fff;
}

.breadcrumb li.active,
.breadcrumb-item+.breadcrumb-item::before {
	color: rgba(255, 255, 255, 0.98);
}
article.single-post {
	max-width: 850px;
	margin: 0 auto;
}
article.single-post > figure, article.single-post .article-thumb-carousel, article.single-post .entry-cover {
	width: calc(100% + 300px);
	max-width: calc(100% + 300px);
	margin-left: -150px;
}

article.single-post iframe {
	max-width: 100%;
	margin-left: 0;
	margin-right: 0;
	overflow: hidden;
}
.blog-details .section-title {
	color: #001453;
	font-size: 32px;
	margin: 20px 0 10px;
}

.blog-details>p {
	margin-top: 20px;
}

.blog-details h4 {
	margin-top: 20px;
}

blockquote {
	background: #ffeaec;
	font-size: 24px;
	color: #001453;
	border-color: var(--primary-color);
	font-weight: 500;
	margin: 40px 0;
	padding: 30px 50px;
	border-radius: 10px;
}

blockquote .cite {
	font-size: 12px;
	display: block;
	margin-top: 10px;
	color: var(--primary-color);
}
article.single-post.full-width {
	margin-right: 15px;
	background: #fff;
	padding: 30px 30px 1px;
}
.txt-gallery {
	margin: 30px 0;
}

.txt-gallery figure {
	float: left;
	width: 25%;
}

.txt-gallery figure img {
	height: 200px;
	width: 100%;
}

.blog-details .post-meta:last-child {
	margin: 45px 0 20px;
}

.blog-details .post-meta li {
	padding: 0;
	display: inline-block;
	margin-right: 10px;

}


.blog-details .post-meta li a {
	border: 1px solid #ebebeb;
	font-weight: 500;
	padding: 5px 15px;
	border-radius: 5px;
	margin: 0;
}
.blog-details .post-meta li:hover a {
	background-color: var(--primary-color);
	color: #fff;
}
.single-post.side-image>figure {
	float: right;
	width: 48%;
	margin-left: 20px;
}
.related-post .widget-title,.post-comment .widget-title,.leave-comment .widget-title{
	text-align: left;
}
.related-post .line-bg,.post-comment .line-bg,.leave-comment .line-bg{
	margin-left: 0;
}
.related-post .line-bg::after,.post-comment .line-bg::after,.leave-comment .line-bg::after{
	left: 25px;
}
.single-post > figure img {
	border-radius: 15px;
}
.about-author, .related-post, .post-comment,.leave-comment{
		margin-bottom: 60px;
}
.quote blockquote {
	margin-top: 0;
}

.full-width img {
	width: 100%;
}

.single-post .link::after {
	z-index: auto;
}

.post-link {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
	font-size: 20px;
	color: var(--primary-color);
}

/* ==================================
9.1 SINGLE POST AUTHOR
=====================================*/

.author-thumb {
	float: left;
}

.author-thumb img {
	height: 110px;
	width: 110px;
}

.author-details {
	margin-left: 140px;
	max-width: 600px;
}

.about-author {
	margin-top: 40px;
	padding-top: 40px;
}

.author-details>h4 {
	color: #001453;
	font-size: 24px;
	margin-bottom: 5px;
	text-transform: capitalize;
}

/* ======================================
9.2 RELATED POST
==========================================*/


.relate-item h3 {
	font-size: 20px;
	margin: 10px 0 5px;
}

.relate-item h3 a {
	color: #001453
}

.relate-item h3 a:hover {
	color: var(--primary-color);
}

/* ======================================
9.3 POST COMMENT
=========================================*/


.comment-img img {
	height: 90px;
	width: 115px;
	border-radius: 15px;
}

.comment-img {
	display: block;
	float: left;
}

.comment-text {
	margin-left: 132px;
}

.child {
	list-style: outside none none;
}

.comment-body {
	margin-bottom: 60px;
}

.comment-list>li:last-child .comment-body {
	margin-bottom: 0;
}

.comment-text a {
	color: #001453;
	text-transform: capitalize;
}

.comment-text h5 {
	margin-bottom: 0px;
	font-size: 18px;
	font-weight: 500;
}

.comment-text>span {
	font-size: 12px;
}

/* =====================================
9.4 LEAVE COMMENT
========================================*/

.leave-comment .form-group {
	position: relative;
	margin-bottom: 15px;
}


.leave-comment form input,
.leave-comment form textarea {
	border: 1px solid #e7e7e7;
	border-radius: 10px;
}

.leave-comment form textarea:focus,
.leave-comment form input:focus,
.newsletter-entry input:focus {
	border-color: #cecece;
}

.leave-comment textarea {
	height: 180px;
	margin: 15px 0;
	padding-top: 20px;
}

.leave-comment .custom-btn {
	background: var(--primary-color) none repeat scroll 0 0;
	border: 0 none;
	margin-top: 10px;
}

/* ===================================================
10. CONTACT PAGE CSS
======================================================*/

.error-area {
	background: #fff none repeat scroll 0 0;
	-webkit-box-shadow: rgba(0, 0, 0, 0.08) 0px 1px 3px, rgba(0, 0, 0, 0.04) 0px 1px 2px;
	-moz-box-shadow: rgba(0, 0, 0, 0.08) 0px 1px 3px, rgba(0, 0, 0, 0.04) 0px 1px 2px;
	box-shadow: rgba(0, 0, 0, 0.08) 0px 1px 3px, rgba(0, 0, 0, 0.04) 0px 1px 2px;
}

.contact-form {
	padding: 40px;
	position: relative;
	z-index: 2;
	background-color: #fff;
	border-radius: 15px;
	box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}

.contact-form .form-group {
	position: relative;
	margin-bottom: 25px;
}

.contact-form .form-group label {
	text-transform: capitalize;
	margin-bottom: 10px;
	color: var(--heading-color);
	font-weight: 500;
	font-size: 15px;
}

.contact-form input,
.contact-form textarea {
	border: 1px solid #eee;
	border-radius: 8px;
	color: var(--heading-color);
	display: block;
	padding: 15px 20px;
	background-color: #f8f9fa;
	transition: all 0.3s ease;
	font-size: 15px;
}

.contact-form input:focus,
.contact-form textarea:focus {
	border-color: var(--primary-color);
	box-shadow: 0 0 0 3px rgba(243, 89, 105, 0.1);
	outline: none;
}

.contact-form textarea {
	min-height: 150px;
	resize: vertical;
}

.contact-form .custom-btn {
	padding: 12px 35px;
	font-size: 15px;
	font-weight: 600;
	border-radius: 8px;
	background: var(--primary-color);
	color: #fff;
	border: none;
	transition: all 0.3s ease;
}

.contact-form .custom-btn:hover {
	background: var(--secondary-color);
	transform: translateY(-2px);
}

.contact-details ul li {
	margin-bottom: 30px;
	display: flex;
	align-items: flex-start;
	color: var(--heading-color);
}

.contact-details ul li i {
	width: 45px;
	height: 45px;
	background: var(--primary-color);
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	margin-right: 20px;
	flex-shrink: 0;
}

.contact-details ul li span {
	font-size: 16px;
	line-height: 1.6;
}

/* ===============================================
11. ABOUT PAGE CSS
==================================================*/

.promo-title {
    color: #001453;
    font-size: 32px;
    text-transform: capitalize;
    font-weight: 600;
    margin-bottom: 36px;
}

.about-content {
	padding: 10px 30px 30px;
}
.about-content .single-social {
	margin: 30px 0 0;
}

.about-wrap img {
	height: 430px;
	width: 100%;
}

/* ================================================
12. PORTFOLIO PAGE CSS
====================================================*/

.portfolio-item {
	background: #fff;
	padding: 20px 15px;
	margin-bottom: 30px;
	box-shadow: rgba(0, 0, 0, 0.08) 0px 1px 3px;
	border-radius: 5px;
}

.portfolio-item img {
	height: 225px;
	width: 100%;
}

.portfolio-item span {
	width: 35px;
	height: 35px;
	background: var(--primary-color);
	display: inline-table;
	text-align: center;
	color: #fff;
	border-radius: 50%;
	margin-right: 10px;
}

.portfolio-item span i {
	display: table-cell;
	vertical-align: middle;
	font-size: 14px;
}

.portfolio-item p {
	text-transform: capitalize;
	display: flex;
	align-items: center;
}

.portfolio-title {
	margin: 10px 0 5px;
	font-weight: 500;
}

/* ===============================================
13. ERROR PAGE CSS
==================================================*/

.error-wrap {
	text-align: center;
	padding: 100px 0;
}

.error-title {
	font-size: 280px;
	line-height: 1;
	color: rgba(156, 204, 101, .5);
	font-weight: 700;
}

.error-wrap p {
	font-size: 31px;
	margin: 0 0 40px;
	text-transform: capitalize;
}

.container {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}


/* map  */

.container_box {
	width: 100%;
	height: 450px;
	max-width: 1140px;
	margin: 40px auto;
	padding: 0 15px;
}

.map_frame {
	width: 100%;
	height: 100%;
	border: none;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.hero-slider .slide-item:nth-child(1),
.hero-slider .slide-item:nth-child(2),
.hero-slider .slide-item:nth-child(3) {
    background-size: cover;
    background-position: center;
    width: 100%;
}

.hero-slider .slide-item {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    width: 100%;
    background-repeat: no-repeat;
}

.hero-slider .slide-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: rgba(0, 0, 0, 0.4); */
    width: 100%;
}

.hero-slider .item-txt {
    position: relative;
    z-index: 1;
    color: #fff;
}

/* =====================================      END OF CSS  HERE      =======================================*/

.work-section {
    width: 100%;
    height: 450px;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	object-fit: cover;
	object-position: center;
	transition: transform 0.5s ease;

}

.work-section figure {
    width: 100%;
    height: 100%;
    margin: 0;
}

.work-section figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.work-section:hover figure img {
    transform: scale(1.05);
}

.aboutt-wrap {
    width: 100%;
    height: 450px;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 30px;
}

.aboutt-wrap figure {
    width: 100%;
    height: 100%;
    margin: 0;
    position: relative;
}

.aboutt-wrap figure img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.5s ease;
    background-color: #f8f9fa;
}

.aboutt-wrap:hover figure img {
    transform: scale(1.05);
}

.services-grid {
    background: #0A192F;
    padding: 60px 40px;
    border-radius: 20px;
    margin-bottom: 30px;
}

.services-grid .section-title {
    color: #fff;
    text-align: center;
    margin-bottom: 40px;
    font-size: 36px;
}

.services-grid .subtitle {
    color: #fff;
    text-align: center;
    margin-bottom: 50px;
    opacity: 0.9;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.service-icon i {
    font-size: 20px;
    color: #fff;
}

.service-text {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    line-height: 1.4;
}

.page-header {
    position: relative;
    padding: 180px 0 100px;
    background: url('../images/banner/palm-bg.jpg') no-repeat center center;
    background-size: cover;
    z-index: 1;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

.page-header .header-content {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

.page-header .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    color: #fff;
    font-size: 16px;
}

.page-header .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.7);
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.7);
}

.clients-section {
    text-align: center;
    padding: 80px 0;
    background: #fff;
}

.clients-section .section-title {
    color: #0d6efd;
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 50px;
}

.client-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 80px;
}

.client-logo {
    max-width: 180px;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.client-logo:hover {
    opacity: 1;
}

.instagram-gallery {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
}

.instagram-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}

.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.instagram-item:hover img {
    transform: scale(1.1);
}

.instagram-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #e4484b;
    color: #fff;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
}

.instagram-button i {
    font-size: 20px;
}

.instagram-button:hover {
    background: #d63538;
    color: #fff;
}

.about-section {
	padding: 60px 20px;
	font-family: 'Segoe UI', sans-serif;
	max-width: 1200px;
	margin: auto;
  }
  
  .section-title {
	text-align: center;
	font-size: 2.2rem;
	font-weight: 700;
	margin-bottom: 40px;
	color: #1e1e2f;
  }
  
  .about-text {
	font-size: 1rem;
	line-height: 1.8;
	color: #444;
	text-align: justify;
  }
  
  .about-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 30px;
	margin-top: 50px;
  }
  
  .about-card {
	background-color: #f9f9f9;
	border-radius: 16px;
	padding: 25px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
	text-align: center;
	transition: 0.3s ease;
  }
  
  .about-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  }
  
  .about-card .icon {
	font-size: 32px;
	width: 60px;
	height: 60px;
	margin: 0 auto 20px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
  }
  
  .icon.pink { background: #f9a8d4; }
  .icon.blue { background: #93c5fd; }
  .icon.peach { background: #fdba74; }
  .icon.orange { background: #fca5a5; }
  
  .about-card h4 {
	font-size: 1.2rem;
	font-weight: 600;
	margin-bottom: 10px;
  }
  
  .about-card p {
	font-size: 0.95rem;
	color: #555;
	line-height: 1.6;
  }
  .center-image-container {
	display: flex;
	justify-content: center;
	margin-top: 3rem;
  }
  
  .center-image-container img {
	max-width: 100%;
	height: 80%;
  }
	