/*
Author       : Aminul
Template Name: Jalil Personal Portfolio Html Template
Version      : 1.0.1
*/
/*=============================================================
    CSS INDEX
    =============================
    01. GENERAL STYLE (Body,Google Font,Typography,Preloader Style,link color, SCROLL TO TOP, section-title, Btn Style,section-padding etc)
    02. Navber Style
    03. Home Style
    04. About Style(Skills Style, Social Style,Education Style )
    05. Services Style
    06. Portfolio Style
    07.	Pricing Style
    08. Testimonial Style
    09. Blog Style
    11. Contact Style
    12. Footer Style
  =============================================================*/

/*================================================== **/

/* General Style */


html{
	overflow-x: hidden;
	height: 100%;
}
body {
	font-family: var(--thm-font);
	font-weight: 500;
	font-style: normal;
	font-size: 17px;
	color:  var(--text-body);
}

:root {
	--thm-font: 'Quicksand', sans-serif;
	--thm-base: #2d3436;
	--thm-color: #f1c40f;
	--thm-black: #000000;
	--text-body: #7a8a9e;
	--thm-white: #ffffff;
	--thm-ase: #afb2bf;
	--thm-gray: #8e8e8e;
	--thm-f6: #F1F8FF;
	--thm-fb: #f6f6f6;
	--thm-f3: #f3f3f3;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--thm-font);
	color: var(--thm-black);
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
	color: inherit;
}
h1 {
	font-size: 48px;
	line-height: 1.2;
	margin-bottom: 24px;
	font-weight: 600;
}
h2 {
	font-size: 36px;
	line-height: 1.2;
	margin-bottom: 16px;
	font-weight: 600;
}
h3 {
	font-size: 28px;
	line-height: 1.2;
	margin-bottom: 15px;
	font-weight: 700;
}
h4 {
  font-size: 20px;
  line-height: 1.4; }

h5 {
  font-size: 18px; }

h6 {
  font-size: 16px; }
  
p:last-child {
	margin-bottom: 0;
}
ul {
	margin: 0;
	padding: 0;
	list-style: none
}
p {
	font-size: 17px;
	color: var(--text-body);
	line-height: 1.9;
	margin-bottom: 15px;
	font-family: var(--thm-font);
	font-weight: 500;
	letter-spacing: -0.04em;
}
img {
	max-width: 100%;
	height: auto;
	border: 0;
}
a, .btn {
	text-decoration: none;
	outline: none;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
a:focus, .btn:focus {
	text-decoration: none;
	outline: none;
}
a:hover, a:active {
	color: var(--thm-color);
	text-decoration: none;
	outline: 0;
}
*, ::before, ::after {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
span {
	letter-spacing: 0;
}
a, button, input {
	outline: medium none;
	color: inherit;
}
dl, ol, ul {
	padding: 0;
	margin: 0;
	list-style: none;
}
button:focus {
	outline: none !important;
	box-shadow: none !important;
	border-color: transparent !important;
}
.form-group {
	margin-bottom: 30px;
}
button, input, textarea {
    color: var(--text-body);
}
button, input, textarea:focus {
    border: none;
    outline:none;
}
.atf-color-ase{
	color:var(--thm-ase)
}
.bg-black{
	background:var(--thm-black) ! important;
}
.p-relative{
	position:relative
}
/* Preloader Style */
.atf_preloader{
	position: fixed;
	background-color: var(--thm-white);
	z-index: 9999999;
	height: 100%;
	width: 100%;	
	-webkit-transition: .2s all ease;
	-o-transition: .2s all ease;
	transition: .2s all ease;
	-webkit-transition-delay: .5s;
	-o-transition-delay: .5s;
	transition-delay: .5s; 
 }  
.atf_preloader .spinner_wrap{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	z-index: 33333;
}
.atf_preloader.loaded {
    opacity: 0;
    visibility: hidden;
}
.atf_preloader:before,
.atf_preloader:after{
    content: "";
    position: absolute;
    height: 100%;
    width: 51%;
    background:var(--thm-black);
    -webkit-transition: .7s all ease;
    -o-transition: .7s all ease;
    transition: .7s all ease;
}
.atf_preloader:before{
    left: 0; 
}
.atf_preloader:after{
	right: 0; 
}
.atf_preloader.loaded:before, .atf_preloader.loaded:after{width: 0%;}
.spinner {
	width: 70px;
	height: 70px;
	background: var(--thm-color);
	border-radius: 100%;  
	-webkit-animation: atf-scaleout 1.0s infinite ease-in-out;
	animation: atf-scaleout 1.0s infinite ease-in-out;
}
@-webkit-keyframes atf-scaleout {
  0% { -webkit-transform: scale(0) }
  100% {
    -webkit-transform: scale(1.0);
    opacity: 0;
  }
}
@keyframes atf-scaleout {
  0% { 
    -webkit-transform: scale(0);
    transform: scale(0);
  } 100% {
    -webkit-transform: scale(1.0);
    transform: scale(1.0);
    opacity: 0;
  }
}
/*** SCROLL TO TOP ***/
 /**************************************
 * START BACK TO TOP DESIGN
 *************************************/
 
.back-to-top.active {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    right: 3%;
    top: 84%;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.back-to-top {
    position: fixed;
    cursor: pointer;
    right: 3%;
    top: 85%;
    background-color: var(--thm-color);
    box-shadow: 0px 0px 10px rgb(0 0 0 / 31%);
    z-index: 4;
    width: 50px;
    text-align: center;
    height: 50px;
    line-height: 42px;
    border-radius: 50px;
    -webkit-transform: scale(0);
    transform: scale(0);
    visibility: hidden;
    -webkit-transition: .9s;
    transition: .9s;
}

.back-to-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: var(--thm-color);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .5s;
    transition: .5s;
}
.back-to-top i {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	left: 0;
	right: 0;
	margin: 0 auto;
	color: var(--thm-black);
	-webkit-transition: .5s;
	transition: .5s;
	font-size: 16px;
}
@-webkit-keyframes bounce {

    0%,
    to {
        transform: translateY(5%);
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }

    50% {
        transform: translateY(0);
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }
}

@keyframes bounce {

    0%,
    to {
        transform: translateY(5%);
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }

    50% {
        transform: translateY(0);
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }
}
 

@-webkit-keyframes pulse {
    0% {
        border-color: #48e9d1; 
        box-shadow: 0 0 rgba(72, 233, 209, 0.66);
    }

    70% {
        border-color: #48e9d1; 
        box-shadow: 0 0 0 10px rgba(72, 233, 209, 0);
    }

    to {
        border-color: #48e9d1; 
        box-shadow: 0 0 0 10px rgba(72, 233, 209, 0);
    }
}

@keyframes pulse {
    0% {
        border-color: #48e9d1; 
        box-shadow: 0 0 rgba(72, 233, 209, 0.66);
    }

    70% {
        border-color: #48e9d1; 
        box-shadow: 0 0 0 10px rgba(72, 233, 209, 0);
    }

    to {
        border-color: #48e9d1; 
        box-shadow: 0 0 0 10px rgba(72, 233, 209, 0);
    }
}
.v-middle {
	position: absolute;
	width: 100%;
	top: 50%;
	left: 0;
	-webkit-transform: translate(0%, -50%);
	transform: translate(0%, -50%);
}
 /**************************************
 * END BACK TO TOP DESIGN
 *************************************/
	
/*Btn Style */

.atf-themes-btn {
	border: 1px solid var(--thm-color);
	color: var(--thm-white);
	border-radius: 4px;
	font-size: 15px;
	padding: 14px 23px;
	font-weight: 700;
	transition: .5s;
	box-shadow: 0 0 15px rgba(0,0,0,0.1);
	display: inline-block;
	vertical-align: middle;
	-webkit-transform: perspective(1px) translateZ(0);
	transform: perspective(1px) translateZ(0);
	position: relative;
	-webkit-transition-property: color;
	transition-property: color;
	-webkit-transition-duration: 0.5s;
	transition-duration: 0.5s;
	text-transform: capitalize;
	letter-spacing: 0.08em;
}
.atf-themes-btn:before {
	content: "";
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--thm-color);
	transition: transform 0.5s;
	transition-timing-function: ease;
	transform-origin: 0 0;
	transition-timing-function: cubic-bezier(0.5, 1.6, 0.4, 0.7);
	transform: scaleX(0);
}
.atf-themes-btn:hover, 
.atf-themes-btn:focus, 
.themes-btn:active {
  color: var(--thm-black);
 
}
.atf-themes-btn:hover:before, 
.atf-themes-btn:focus:before, 
.atf-themes-btn:active:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
   border-radius: 4px;
}

/*** section padding ***/
.atf-section-padding {
	padding: 100px 0;
}
@media only screen and (max-width : 991px) {
	.atf-section-padding {
		padding: 80px 0;
	}
}
@media only screen and (max-width : 575px) {
	.atf-section-padding {
		padding: 60px 0;
	}
}
/*** section-title ***/

.atf-section-title h2 {
	font-weight: 700;
	font-size: 48px;
	line-height: 1.3;
	color: var(--thm-black);
	font-family: var(--thm-font);
	letter-spacing:-2px;
}
.atf-section-title .sub-title {
	color: #bd9908;
	margin-bottom: 15px;
	text-transform: uppercase;
}
.atf-heading-seperator {
	width: 90px;
	height: 4px;
	background-color: var(--thm-color);
	margin:0 auto 20px;
}
@media only screen and (max-width : 1400px) {
	.atf-section-title h2{
		font-size:45px;
	}
}
@media only screen and (max-width : 991px) {
	.atf-section-title h2{
		font-size:36px;
		letter-spacing:-1px;
	}
}
@media only screen and (max-width : 575px) {
	.atf-section-title h2{
		font-size:28px;
		letter-spacing:0px;
	}
}
/*
* ----------------------------------------------------------------------------------------
* 02.END BOOTSTRAP NAVIGATION OVERRIDES
* ----------------------------------------------------------------------------------------
*/
.site-logo {
	width: 147px;
	height: auto;
	margin-top: 10px;
}
.bg-faded {
	background-color: transparent;
	transition: all 0.5s ease 0s;
}
.navbar-fixed {
	z-index: 999;
	position: fixed;
	padding: 10px 0 0;
	width: 100%;
	top: 0;
	-webkit-backdrop-filter: blur(16px);
	backdrop-filter: blur(16px);
	box-shadow: 0px 8px 24px rgba(149, 157, 165, 0.2);
	-webkit-animation: fadeInDown 800ms;
	animation: fadeInDown 800ms;
	-webkit-backface-visibility: hidden;
	background: var(--thm-white);
}
#navigation {
	padding: 10px 0 10px;
}
.header_right {
	display: flex;
	flex-basis: auto;
}
#main-menu ul{
	list-style-type: none;
}
#main-menu ul li{
	display: inline-block;
	margin-left: 25px;
	position: relative;
}
#main-menu ul li a {
	color: var(--thm-white);
	font-weight: 600;
	text-transform: capitalize;
	font-family: var(--thm-font);
	transition: .5s;
	font-size: 16px;
	padding: 24px 0 26px;
	border-bottom: 1px solid transparent;
	display: block;
}
#navigation.navbar-fixed #main-menu ul li a {
	color: var(--thm-black);
	padding: 22px 0;
}
#navigation.navbar-fixed #main-menu ul li a:hover,
#navigation.navbar-fixed #main-menu ul li a:focus,
#main-menu ul li a:hover,
#main-menu ul li a:focus{
	color: var(--thm-color);
}
#main-menu ul li > a:hover,
#main-menu ul li > a:focus{
	border-bottom: 1px solid var(--thm-color);
}
#navigation #main-menu ul li a:hover,
#navigation #main-menu ul li a:focus,
#navigation.navbar-fixed #main-menu ul li a:hover,
#navigation.navbar-fixed #main-menu ul li a:focus{
	border-bottom: 1px solid transparent;
}
.slicknav_nav_icon{
	color: var(--thm-white);
	font-size: 24px;
}
#navigation.navbar-fixed .slicknav_nav_icon{
	color: var(--thm-black);
}
#mobile_menu{
	display: none;
}
.navbar-light .logo-black {
	display: none;
}
.navbar-light.navbar-fixed .site-logo .logo-white {
	display: none;
}
.navbar-light.navbar-fixed .site-logo .logo-black {
	display: block;
}
/*-------------------------------
# dropdwon menu 
--------------------------------*/
#navigation #main-menu ul li ul,
#navigation #main-menu ul li ul li ul {
	background: var(--text-body);
	box-shadow: 0 0 10px 3px rgba(0,0,0,.05);
	left: 0;
	list-style: outside none none;
	margin: 0;
	opacity: 0;
	padding: 10px;
	position: absolute;
	text-align: left;
	top: 100%;
	transition: all 0.3s ease 0s;
	visibility: hidden;
	width: 180px;
	z-index: 999;
	border-radius: 4px;
}
#navigation #main-menu ul li  ul li{
	position: relative;
}
#navigation #main-menu ul li ul li ul{
	top: 0;
	right: auto;
	left: 205px;
}
#navigation #main-menu ul li:hover ul,
#navigation #main-menu ul li ul li:hover > ul{
	opacity: 1;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"; 
	visibility: visible;
}
#navigation #main-menu ul li ul li {display: block; margin: 0; padding: 0;}
#navigation.navbar-fixed #main-menu ul li ul li a,
#navigation #main-menu ul li ul li a {
	color: var(--thm-white);
	display: block;
	font-size: 14px;
	line-height: 30px;
	font-weight: 600;
	padding: 5px 12px;
	position: relative;	
	transition: all 0.3s ease 0s !important;
	visibility: inherit !important;
	opacity: inherit !important;
	text-transform: capitalize;
}

#navigation #main-menu ul li ul li a:hover{
	color: var(--thm-white)!important;
	text-decoration: none;
	padding-left: 15px;
}
/*
* ----------------------------------------------------------------------------------------
* 02.END BOOTSTRAP NAVIGATION OVERRIDES
* ----------------------------------------------------------------------------------------
*/
/**************************************
 * 03.Home Style
 *************************************/
 
.atf-hero-area {
    background: var(--thm-black);
    height: 750px;
    overflow: hidden;
}
.ai-center {
	display: flex;
	align-items: center;
	min-height: 100%;
}
.atf-single-details .sub-title {
	color: var(--thm-color);
	font-size: 28px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom:15px;
}
.atf-single-details h1 {
	color: var(--thm-white);
	text-transform: uppercase;
	font-weight: 700;
	font-family: var(--thm-font);
	font-size: 50px;
	letter-spacing: -2px;
}
.atf-single-details span{
	color: var(--thm-color);
}
.atf-hero-area .atf-single-details h2 span.typed-word {
	color: var(--thm-color);
}
.atf-hero-area .atf-single-details h2 span.typed-cursor{
	color: var(--thm-color);
}
.atf-single-details p {
	color: var(--text-body);
	font-size: 17px;
	font-weight: 400;
}
.atf-hero-area .atf_hero_thumb img {
	border: 10px solid var(--thm-color);
	border-radius: 50%;
	padding: 5px;
}
.atf-banner-social ul li {
	display: inline-block;
	margin-right:10px;
}
.atf-banner-social ul li a {
	display: inline-block;
	height: 40px;
	width: 40px;
	line-height: 40px;
	text-align: center;
	color: var(--thm-black);
	font-size: 18px;
	background: var(--thm-color);
	border-radius: 50%;
	-moz-transition: all 0.3s ease-in-out 0s;
	-ms-transition: all 0.3s ease-in-out 0s;
	-o-transition: all 0.3s ease-in-out 0s;
	-webkit-transition: all 0.5s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
}
.atf-banner-social ul li a:hover {
	background: var(--thm-white);
	color: var(--thm-black);
}
@media only screen and (max-width : 1400px) {
	.atf-single-details h1{
		font-size:45px;
	}
}
@media only screen and (max-width : 991px) {
	.atf-single-details h1{
		font-size:32px;
	}
}
@media only screen and (max-width : 575px) {
	.atf-single-details h1{
		font-size:24px;
	}
}
/**************************************
 * 03.About Style
 *************************************/
.atf-about-area{
	gap:30px;
}
.atf-about-skill .progress {
	height: 20px;
	font-size: 14px;
	margin-bottom: 15px;
	overflow: unset;
	background: var(--thm-ase);
}
.atf-about-skill .progress .progress-bar {
	position: relative;
	width: 0;
	background: var(--thm-color);
	animation: progress 4.5s ease-in-out forwards;
}
.atf-about-skill .progress .progress-bar .title {
	opacity: 0;
	animation: show 0.35s forwards ease-in-out 0.5s;
	right: 0;
	position: absolute;
	top: -2px;
	font-size: 16px;
	color: var(--thm-black);
	font-weight: 500;
}
@keyframes progress {
  from {
    width: 0; }
  to {
    width: 100%; } }
@keyframes show {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
	
/**************************************
 * Counter Style
 *************************************/	
.atf-counter {
	color: var(--thm-white);
	font-family: var(--thm-font);
	text-align: center;
	width: 100%;
	padding: 7px 0 10px;
	margin: 0 auto;
}
.atf-counter .atf-counter-content {
	color: var(--thm-color);
	background: var(--thm-white);
	height: 170px;
	width: 170px;
	padding: 40px 10px 10px;
	margin: 0 auto 0 0;
	border-radius: 50%;
	box-shadow: 0 0 5px rgba(0,0,0,0.15),0 0 0 6px #fff, 0 0 7px rgba(0,0,0,0.15);
	overflow: hidden;
	position: relative;
	z-index: 1;
}
.atf-counter .atf-counter-content::before, .atf-counter .atf-counter-content::after {
	content: '';
	border-radius: 50%;
	box-shadow: 0 0 5px rgba(0,0,0,0.15);
	position: absolute;
	left: 7px;
	right: 7px;
	top: 7px;
	bottom: 7px;
	z-index: -1;
}
.atf-counter .atf-counter-content::after {
	box-shadow: none;
	border-radius: 0;
	left: 0;
	right: 0;
	top: 50%;
	bottom: 0;
	z-index: -2;
}
.atf-counter .atf-counter-value {
	color: var(--thm-color);
	font-size: 28px;
	font-weight: 600;
	margin: 0 0 10px;
	display: block;
}
.atf-counter h3 {
	font-size: 20px;
	font-weight: 500;
	line-height: 4px;
	letter-spacing: 0px;
	text-transform: capitalize;
	margin: 0;
}
.atf-counter .atf-counter-icon {
	color: var(--thm-color);
	font-size: 20px;
	line-height: 60px;
	height: 60px;
	width: 60px;
	margin: -30px auto 0px 55px;
	border-radius: 50%;
	box-shadow: 0 0 8px rgba(0,0,0,0.2),0 0 0 10px rgba(255,255,255,0.2);
	position: relative;
	z-index: 1;
}
.atf-counter .atf-counter-value{ color: var(--thm-color); }
@media screen and (max-width:990px){
    .atf-counter{ margin-bottom: 25px; }
}
/**************************************
 * Education Style
 *************************************/
.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
	color:var(--thm-white);
	background: var(--thm-black);
	border: none !important;
}
.nav-tabs .nav-link:focus, .nav-tabs .nav-link:hover {
	background: var(--thm-black);
}
.nav-fill .nav-item {
	font-size: 22px;
	font-family: var(--thm-font);
	font-weight: 600;
}
.nav-tabs .nav-link {
	border: 1px solid #ddd;
	border-top-left-radius: 0 !important;
	border-top-right-radius: 0 !important;
	color: var(--thm-color);
}
.nav-tabs {
	border-bottom: 0 !important;
}
.atf-resume-box{
	position:relative;
	margin-bottom:25px;
}
.atf-resume-info {
	padding: 40px 20px;
	text-align: right;
}
.atf-resume-box .atf-place {
	color: var(--thm-black);
}
.atf-resume-box .atf-time {
	color: var(--text-body);
	font-size: 16px;
	font-weight: 500;
}
.atf-single-resume {
	position: relative;
	padding: 35px 40px;
	background: var(--thm-black);
	color: var(--text-body);
	border-radius: 20px;
	box-shadow: 0 0px 10px rgba(0, 0, 0, 0.1);
	text-align:left;
}
.atf-single-resume .atf-single-icon {
	font-size: 35px;
	color: var(--thm-color);
	width: 45px;
	height: 45px;
	line-height:45px;
	margin:0 0 20px;
}
.atf-resume-box p {
	color: var(--text-body);
	display: block;
    overflow: hidden;
	font-size:17px;
	font-weight:500;
}
.atf-resume-box h3 {
	color: var(--thm-color);
}
.atf-icon{
	position: relative;
	display:block;
	overflow:hidden;
}
.atf-icon {
	content: "";
	width: 530px;
	height: 2px;
	position: absolute;
	left: -15px;
	transform: rotate(90deg);
	color: var(--thm-black);
	background: var(--thm-black);
	top: 318px;
	bottom: 0;
}
/**************************************
 * 05.Service Style
 *************************************/
.atf-single-services {
	border: 1px solid var(--thm-color);
	padding: 25px;
	margin:12px 0;
	border-radius: 20px;
	-moz-transition: all 0.5s ease-in-out 0s;
	-ms-transition: all 0.5s ease-in-out 0s;
	-o-transition: all 0.5s ease-in-out 0s;
	-webkit-transition: all 0.5s ease-in-out 0s;
	transition: all 0.5s ease-in-out 0s;
}
.atf-single-services:hover {
	background:var(--thm-color);
	color: var(--text-body);
}
.atf-single-services h3{
	font-size:22px;
}
.atf-single-services:hover p,
.atf-single-services:hover i,
.atf-single-services:hover h3{
    color: var(--thm-black);
}
.atf-services-icon {
	display: inline-block;
	transition: .5s ease;
	margin-bottom:20px;
	color: var(--thm-color);
	font-size: 35px;
	text-align: center;
}
.atf-services-text h3 {
	color: var(--thm-color);
}

/**************************************
 * 06.Portfolio Style
 *************************************/
#portfolio {
    position: relative;
	overflow: hidden;
}
#portfolio .atf-portfolio-nav {
	text-align: center;
}
#portfolio .atf-portfolio-nav ul {
	display:flex;
	align-items:center;
	justify-content: center;
	gap:20px;
}
#portfolio .atf-portfolio-nav .nav li {
	font-size: 16px;
	cursor: pointer;
	font-weight: 600;
	text-transform: capitalize;
	-moz-transition: all 0.3s ease-in-out 0s;
	-ms-transition: all 0.3s ease-in-out 0s;
	-o-transition: all 0.3s ease-in-out 0s;
	-webkit-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
	padding: 15px 40px;
	color: var(--thm-black);
	border-radius: 30px;
	border: 1px solid #ddd;
	background: var(--thm-f6);
}
#portfolio .atf-portfolio-nav .nav li:hover, 
#portfolio .atf-portfolio-nav .nav li.filter-active {
	color: var(--thm-black);
	transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	background: var(--thm-color);
}
#portfolio .atf-main-portfolio {
	display: inline-block;
	width: 100%;
	transition: all 0.3s ease;
}
.atf-single-portfolio .image-box:hover img{
	-webkit-filter: none;
	filter: none;
	-webkit-transform: scale(1.05, 1.05);
	transform: scale(1.05, 1.05);
	-webkit-transition: all .4s;
	transition: all .4s;
}
.atf-grid-portfolio img {
    width: 100%;
	border-radius:20px;
}
.atf-single-portfolio figure .image-box{
    position: relative;
    overflow: hidden;    
	margin-bottom: 0;
	border-radius:20px;
}
.atf-grid-portfolio .atf-single-portfolio {
    display: block;
    overflow: hidden;
}
.atf-grid-portfolio figure {
	margin: 0 0 1.5rem;
}
.atf-single-portfolio .atf-hover-portfolio:hover {
	opacity: 0.9;
	transition: 0.4s ease-out 0.2s;
	-webkit-transform: translateY(0);
	transform: translateY(0);
}
.atf-single-portfolio .atf-hover-portfolio {
	position: absolute;
	top: 0px;
	right: 0px;
	bottom: 0px;
	left: 0px;
	-webkit-transition: all .4s;
	transition: all .4s;
	opacity: 0;
	background-color: rgba(34, 36, 36, 0.65);
	transition: 0.4s ease-out 0s;
	-webkit-transform: translateY(-30px);
	transform: translateY(-30px);
}

.atf-single-portfolio .atf-hover-portfolio .atf-portfolio-content {
	position: absolute;
	top: 0;
	left: 0;
	text-align: center;
	height: 100%;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background: var(--thm-color);
	transition: all 0.9s ease;
}
.atf-portfolio-content span{
	color:var(--thm-black);
	margin-bottom:10px;
}
.atf-portfolio-content h3 {
	transition: all ease 0.3s;
	-webkit-transition: all ease 0.3s;
	color: var(--thm-black);
	margin:0;
	font-size:22px;
}
.atf-single-portfolio .atf-hover-portfolio:hover .atf-portfolio-content  {
	opacity: 1;
}
.atf-portfolio-content .atf-hover-portfolio:hover h3,
.atf-portfolio-content .atf-hover-portfolio:hover span{
	 color: var(--thm-white);
}
/**************************************
 * 07.Pricing Style
 *************************************/
.atf-pricingTable {
	font-family: var(--thm-font);
	text-align: center;
	padding: 0px 30px 30px;
	border-radius: 20px;
	overflow: hidden;
	position: relative;
	box-shadow: 0px 1px 2px rgba(244, 236, 236, 0.3);
}
.atf-pricingTable-border {
	position: relative;
	z-index: 1;
}
.atf-pricingTable-border::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgb(251, 212, 95,0.5);
	border-radius: 0% 0% 50% 50%/0% 0% 100% 100%;
	transform: scaleX(1.5);
	opacity: 0.2;
	z-index: -1;
}
.atf-pricingTable .atf-price-value {
	color: var(--thm-color);
}
.atf-pricingTable .atf-price-value .atf-currency {
	font-size: 50px;
	font-weight: 400;
	line-height: 50px;
	vertical-align: top;
	display: inline-block;
}
.atf-pricingTable .atf-price-value .atf-amount {
	font-size: 50px;
	font-weight: 700;
	line-height: 50px;
	display: inline-block;
}
.atf-pricingTable .atf-price-value .atf-duration {
	font-size: 17px;
	font-weight: 500;
	margin: 20px 0 40px;
	display: inline-block;
	color: var(--text-body);
}
.atf-pricingTable .atf-pricing-title {
	color: var(--thm-color);
	font-weight: 600;
	text-transform: uppercase;
	padding: 40px 40px 5px;
	font-size: 22px;
}
.atf-pricingTable .atf-pricing-content {
	padding: 0;
	margin: 30px 0 0px;
	list-style: none;
	display: inline-block;
}
.atf-pricingTable .atf-pricing-content li {
	font-weight: 400;
	text-align: left;
	padding: 0 0 0 35px;
	margin: 0 0 15px;
	position: relative;
	color: var(--thm-color);
}
.atf-pricingTable .atf-pricing-content li::before {
	content: "\f00c";
	color: var(--thm-color);
	font-family: "Font Awesome 7 Free";
	font-weight: 700;
	text-align: center;
	line-height: 20px;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	position: absolute;
	top: 1px;
	left: 0;
}
@media screen and (max-width:991px){
    .atf-pricingTable{ margin-bottom: 25px; }
}
 /**************************************
 * 08.Testimonial Style
 *************************************/
.atf-testimonial-inner {
	display: block;
	background: var(--thm-black);
	padding: 25px;
	border-radius:20px;
	gap:25px;
}
.atf-testimonial-icon {
	background: var(--thm-color);
	color: var(--thm-black);
	padding: 25px;
	display: flex;
	border-radius: 20px;
	font-size: 26px;
	align-items: center;
}
.atf-testimonial-info {
	background: var(--thm-color);
	gap:25px;
	padding:25px;
}
.atf-testimonial-image img{
	width:100%;
}
.atf-testimonial-image{
	display: block; 
	overflow:hidden;
	border-radius:50%;
}
.atf-testimonial-designation span{
	color: var(--thm-black);
}
.atf-testimonial-text {
	font-size: 17px;
	font-weight: 500;
	color: hsl(0,0%,70%);
}
.atf-testimonial-name h3{
	font-size: 22px;
	font-weight: 600;
	margin-bottom:5px;
}
.atf-testimonial-star-icon .atf-testimonial-black {
	color: var(--thm-black);
}
.atf-testimonial-star-icon i{
	cursor:pointer;
	color: var(--thm-white);
	margin-top:7px;
}
 /**************************************
 * 09.Blog Style
 *************************************/
.atf-single-blog {
	overflow: hidden;
}
.atf-post-img a {
	position: relative;
	display: block;
	overflow: hidden;
	border-radius:20px;
}
.atf-post-img{
	position:relative;
}
.atf-post-img img {
	width: 100%;
	transition: 1.4s;
	border-radius:20px;
}
.atf-single-blog:hover .atf-post-img img{
	transform:scale(1.2);
}
.atf-blog-date span{
	border-top:1px solid var(--thm-black);
	padding-top: 2px;
}
.atf-post-img .atf-blog-date a {
	font-size: 22px;
	background: var(--thm-color);
	padding: 10px 25px;
	border-radius: 20px;
	display: inline-block;
	color: var(--thm-black);
}
.atf-post-img .atf-blog-date {
	content:'';
	position: absolute;
	top: 15px;
	bottom: 15px;
	right: 15px;
	text-align:center;
}
.atf-blog-content .atf-blog-tag a,
.atf-blog-content .atf-blog-time {
	font-weight:400;
	-webkit-transition: all .3s;
	transition: all .3s;
	font-size:14px;
}
.atf-blog-content h3 {
	-webkit-transition: all .3s;
	transition: all .3s;
	font-size:22px;
}
.atf-blog-tag:hover,
.atf-blog-time:hover{
	color: var(--thm-color);
}
@media screen and (max-width:991px){
    .atf-single-blog{ margin-bottom: 25px; }
}
/**************************************
 * Hire Section Style
 *************************************/
.atf-hire-content h3 {
    color: var(--thm-white);
    line-height: 1.3;
}
.atf-hire-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
 /**************************************
 * 11.Contact Style
 *************************************/

.atf-contact-details {
	padding: 25px;
	margin-bottom: 25px;
	display: block;
	box-shadow: 0px 0px 1px rgba(249, 238, 238, 0.5);
	background: var(--thm-black);
	border-radius: 20px;
}
.atf-contact-details i {
	font-size: 20px;
	width: 60px;
	height: 60px;
	line-height: 60px;
	color: var(--thm-color);
	text-align: center;
	margin-bottom:20px;
	border-radius: 50%;
	box-shadow: 0 0 4px;
}
.atf-contact-details h3{
	color: var(--thm-white);
	font-size:22px;
}
.atf-contact-details p{
	color: var(--text-body);
	margin:0;
}
.atf-contact-form .button {
    margin: 0;
}
.contact_input input, .contact_input textarea {
	width: 100%;
	height:55px;
	padding:10px 20px;
	border: 1px solid #ddd;
	background-color: transparent;
	font-weight: 400;
	color: var(--thm-black);
	box-shadow: 0 0px 1px rgb(19, 19, 19);
	-webkit-transition: all 0.5s ease-out;
	transition: all 0.5s ease-out;
	margin-bottom:20px;
	padding-left:20px;
	outline:0;
	box-shadow: 0 0 15px rgba(0,0,0,0.1);
}
.contact_input textarea {
    height: 120px;
    width: 100%;
	color: var(--thm-black);
	outline:0;
	-webkit-transition: all 0.5s ease-out;
	transition: all 0.5s ease-out;
}
.contact_input input:hover,
.contact_input input:focus,
.contact_input textarea:hover,
.contact_input textarea:focus {
	border: 1px solid var(--thm-color);
}
.form-message{
	color: var(--thm-black);
}
/*
* ----------------------------------------------------------------------------------------
* 12. START MAP DESIGN
* ----------------------------------------------------------------------------------------
*/
#atf-map-area iframe {
    width: 100%;
    height: 400px;
	display:block;
	border-radius:20px;
}
/*
* ----------------------------------------------------------------------------------------
* END MAP DESIGN
* ----------------------------------------------------------------------------------------
*/
/**************************************
 * 13.Footer Section Style
 *************************************/
.atf-footer-top {
	border-bottom: 1px solid rgba(255,255,255,0.1);
}
.atf-footer-box p {
    color: var(--thm-ase);
    margin-bottom: 20px;
}
.atf-footer-link h3 {
	margin-bottom: 50px;
	font-size: 22px;
	font-weight: 600;
	color: var(--thm-white);
}
.atf-footer-social-icon ul{
	display:flex;
	align-items:center;
	gap:15px;
}
.atf-footer-social-icon ul li a {
	font-size: 16px;
	width: 40px;
	height: 40px;
	line-height: 40px;
	border-radius: 20px;
	color: var(--thm-black);
	text-align: center;
	background: var(--thm-color);
	display: inline-block;
	-webkit-transition: all 0.5s ease-out;
	transition: all 0.5s ease-out;
}
.atf-footer-social-icon ul li a:hover {
	background: var(--thm-white);
	color: var(--thm-black);
}
.atf-footer-link .atf-list-menu li a {
    color: var(--thm-ase);
    margin-bottom: 10px;
    display: block;
    position: relative;
    overflow: hidden;
}
.atf-footer-link .atf-list-menu li a:hover{
	color: var(--thm-color);
}
.atf-footer-link .atf-list-menu li a span {
    position: relative;
    display: block;
    -webkit-transition: -webkit-transform 0.3s;
    -moz-transition: -moz-transform 0.3s;
    transition: transform 0.3s;
    font-weight: 500;
    font-family: var(--thm-font);
}
.atf-footer-text {
    padding:30px 0;
	color: var(--text-body);
}
.atf-footer-text a{
	color: var(--thm-white);
}
.atf-footer-text a:hover{
	color:  var(--thm-color);
}
.atf-footer-subscribe input {
    background-color: var(--thm-white);
    color: var(--thm-black);
    border: none;
    width: 100%;
    height: 55px;
    padding-left: 20px;
    font-size: 17px;
    border-radius: 6px;
}
.atf-footer-subscribe .atf-themes-btn {
    margin-top: 25px;
}
.atf-footer-subscribe .atf-subscription-label {
	color: var(--thm-white);
	display:inline-block;
}
@media only screen and (max-width: 991px){
	.atf-footer-link{
		margin-bottom:25px;
	}
}
 /**************************************
 * End Footer Style
 *************************************/
/*
* ----------------------------------------------------------------------------------------
* MENU RESPONSIVE DESIGN
* ----------------------------------------------------------------------------------------
*/
@media only screen and (max-width: 991px){
	#main-menu{
		display: none;
	}
	#main-menu ul li a .arrow-btn{
		display:none;
	}
	#mobile_menu {
		display: block;
		position: absolute;
		right: 0;
		top: -2px;
		z-index: 9999;
	}
	.slicknav_nav {
		background-color: var(--thm-white);
		width: 250px;
		float: right;
		overflow-y: scroll;
		height: 250px;
	}
	#navigation #mobile_menu li a{
		color: var(--thm-black);
		font-weight: 500;
		font-family: var(--thm-font);
	}
	#navigation #mobile_menu li li a{
		color: var(--text-body);
	}
	#navigation #mobile_menu li i{
		display: none;
	}
	#navigation ul li ul, #navigation ul {
		transition: .5s;
	}
	#navigation.navbar-fixed #mobile_menu li a{
		color: var(--thm-black);
	}
	.slicknav_nav a {
		padding: 3px 0px;
		transition: .5s;
	}
	#navigation #mobile_menu li a:hover,
	#navigation #mobile_menu li a:focus{
		color:var(--thm-color);
	}
	.slicknav_btn {
		top: 10px;
	}
	.site-logo {
		margin-top: 0px;
	}
	.slicknav_parent ul {
		background-color: var(--text-body)!important;
	}
	#navigation {
		padding: 10px 10px;
	}
	.navbar-fixed .atf-main-header-in.styles1.px-4.black-bg.mt-10.rounded {
		margin-top: 0;
	}
}
@media only screen and (max-width: 767px){
	.slicknav_btn {
		top: 7px;
	}
	
}
@media only screen and (max-width: 576px){
	.slicknav_nav{
		margin-top:0;
	}
}
/*
* ----------------------------------------------------------------------------------------
* MENU RESPONSIVE DESIGN
* ----------------------------------------------------------------------------------------
*/
/* OWL DOT & NAV DESIGN */
.owl-theme .owl-controls {
    margin-top: 30px;
}
.owl-theme .owl-controls .owl-pagination {
    width: 140px;
    padding: 10px;
    margin: 0 auto;
    line-height: 13px;
    background: #fe7f8b;
}
.owl-theme .owl-controls .owl-page span {
    width: 12px;
    height: 12px;
    border-radius: 0;
    background: transparent;
    border: 1px solid  var(--thm-white);
}
.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span {
    border: 4px solid  var(--thm-white);
}
/* OWl DOT DESIGN */
.atf_owl_dot_slider .owl-dots {
    margin-top: 30px !important;
    text-align: center;
}
.atf_owl_dot_slider .owl-controls {
    margin-top: -25px;
}
.atf_owl_dot_slider .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 0 8px;
    border-radius: 5px;
    background: var(--thm-color);
    border: 1px solid var(--thm-color);
    transition: all 0.3s ease-in-out;
    display: inline-block;
}
.atf_owl_dot_slider .owl-dots .owl-dot.active span {
    width: 35px;
    transition: all 0.3s ease-in-out;
    border: 1px solid var(--thm-color);
    background: var(--thm-color);
    display: inline-block;
}
/* OWl NAV DESIGN */
.atf_owl_nav_slider {
    position: relative;
}
.atf_owl_nav_slider .owl-nav .owl-next,
.atf_owl_nav_slider .owl-nav .owl-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    color: var(--thm-white) !important;
    opacity: 1;
    font-size: 20px !important;
    -webkit-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
    width: 50px;
    height: 50px;
    line-height: 48px !important;
    background: var(--thm-color) !important;
    border-radius: 50%;
}

.atf_owl_nav_slider .owl-nav .owl-prev {
    left: -25px;
}
.atf_owl_nav_slider .owl-nav .owl-next {
    right: -25px;
}
.atf_owl_nav_slider1:hover .owl-nav .owl-prev {
    left: -38px;
    opacity: 1;
}
.atf_owl_nav_slider1:hover .owl-nav .owl-next {
    right: -38px;
    opacity: 1;
}
@media screen and (min-width: 270px) and (max-width: 480px) {
    .atf_owl_nav_slider .owl-nav .owl-prev,
    .atf_owl_nav_slider .owl-nav .owl-next {
        display: none;
    }
}
/* END OWL DOT & NAV DESIGN */
.right-to-left {
	position: fixed;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	background-color: #fff;
	width: 46px;
	z-index: 99;
	box-shadow:0 0 10px rgba(0,0,0,0.3);
}
.right-to-left-wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100%;
}
.right-to-left-wrapper a {
	width: 46px;
	height: 46px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #333;
	text-decoration: none;
	position: relative;
}
.right-to-left-wrapper a {
	border-bottom: 1px solid #ddd;
}
.ltr-item i {
	width: 25px;
	height: 25px;
}
.right-to-left-tooltip {
	position: absolute;
	top: 50%;
	right: 100%;
	transform: translateY(-50%);
	background-color: #fff;
	padding: 2px 15px;
	border-radius: 6px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
	font-size: 13px;
	color: #333;
	white-space: nowrap;
	display: inline-block;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease-in-out;
}
.right-to-left-tooltip::after {
	content: "";
	position: absolute;
	top: 50%;
	right: -13px;
	transform: translateY(-50%);
	border: 7px solid transparent;
	border-left-color: #fff;
}
.right-to-left-wrapper a:hover .right-to-left-tooltip {
	opacity: 1;
	visibility: visible;
	right: calc(100% + 10px);
}