/*
Author       : Theme-Family
Template Name: Baki - Product Landing Page Template
Version      : 1.0.1
*/
/*=============================================================
    CSS INDEX
    =============================
    01. GENERAL STYLE (body, link color, SECTION TITLE, PRELOADER, BTN, SECTION PADDING, SCROLL etc)
    02. START NAVIGATION OVERRIDES
    03. START HOME DESIGN
    04. START SERVICE DESIGN
    05. START VIDEO DESIGN  
		--START product DESIGN
    06. START ABOUT DESIGN
    07. START TESTIMONIAL DESIGN
    08. START PRICING DESIGN
    09. START FREQUENTLY DESIGN
    10. START BLOG DESIGN 
	11. START COMPANY BRAND LOGO DESIGN
    12. START CONTACT DESIGN 
	13. START FOOTER DESIGN
  =============================================================*/
/*
* ----------------------------------------------------------------------------------------
* 01.GENERAL STYLE
* ----------------------------------------------------------------------------------------
*/
html{
	overflow-x: hidden;
	height: 100%;
}
body {
	font-family: var(--thm-font);
	font-style: normal;
	font-size: 15px;
	color:  var(--thm-p);
}
:root {
	--thm-font: 'Poppins', sans-serif;
	--thm-base: #fbac1e;
	--thm-color: #6809dc;
	--thm-color2: #0985f9;
	--thm-black: #252c4b;
	--thm-white: #ffffff;
	--thm-ase: #afb2bf;
	--thm-gray: #8e8e8e;
	--thm-f6: #F1F8FF;
	--thm-f8: #F8F8F8;
	--thm-fb: #f6f6f6;
	--thm-p: #737789;
}
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;
}
h2 {
	font-size: 40px;
	line-height: 50px;
	margin-bottom: 0px;
	font-weight: 700;
}
h3 {
	font-size: 22px;
	line-height: 32px;
	margin-bottom: 0px;
	font-weight: 700;
}
h4 {
  font-size: 20px;
  font-weight: 600;
}

h5 {
  font-size: 18px;
  font-weight: 500;
 }

h6 {
  font-size: 14px;
  line-height: 22px; }
  
p:last-child {
	margin-bottom: 0;
}
ul,
li {
    margin: 0;
    padding: 0;
}
p {
	padding: 0;
	margin: 0;
	font-size: 15px;
	color: var(--thm-p);
	line-height: 30px;
	font-family: var(--thm-font);
	font-weight: 400;
}
img {
	max-width: 100%;
	height: auto;
	border: 0;
}
a {
	text-decoration: none;
	transition: all 0.2s ease 0s;
}
a:focus, .btn:focus {
	text-decoration: none;
	outline: none;
}
a:hover, a:active {
	color: transparent;
	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;
}
fieldset {
    border: 0 none;
    margin: 0 auto;
    padding: 0;
}
::-webkit-input-placeholder {
	color: inherit;
}
::-moz-input-placeholder {
	color: inherit;
}
::-ms-input-placeholder {
	color: inherit;
}
.page-wrapper {
	position: relative;
	margin: 0 auto;
	width: 100%;
	min-width: 300px;
	z-index: 9;
	overflow: hidden;
}
.form-group {
	margin-bottom: 20px;
}
button, input, textarea {
    color: var(--thm-black);
}
button, input, textarea:focus {
    outline:none;
}
img, svg {
	vertical-align: middle;
}
*, ::after, ::before {
	box-sizing: border-box;
}
textarea {
	overflow: auto;
	resize: vertical;
}
.atf-color-ase{
	color:var(--thm-ase)! important;
}
/*
* ----------------------------------------------------------------------------------------
* PRELOADER
* ----------------------------------------------------------------------------------------
*/
.atf-status {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 99999999;
    background: linear-gradient(90deg,var(--thm-base),var(--thm-color));
}

.atf-status .atf-status-mes {
    border: 0 solid transparent;
    border-radius: 50%;
    width: 150px;
    height: 150px;
    position: absolute;
    top: calc(50vh - 75px);
    left: calc(50vw - 75px)
}

.atf-status-mes:before,
.atf-status-mes:after {
    content: '';
    border: 1em solid #ffffff;
    border-radius: 50%;
    width: inherit;
    height: inherit;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-animation: atf-status-mes 2s linear infinite;
            animation: atf-status-mes 2s linear infinite;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"
}

.atf-status-mes:before {
    -webkit-animation-delay: .5s;
            animation-delay: .5s
}

@-webkit-keyframes atf-status-mes {
    0% {
        -webkit-transform: scale(0);
                transform: scale(0);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"
    }

    50% {
        opacity: 1;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"
    }

    100% {
        -webkit-transform: scale(1);
                transform: scale(1);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"
    }
}

@keyframes atf-status-mes {
    0% {
        -webkit-transform: scale(0);
                transform: scale(0);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"
    }

    50% {
        opacity: 1;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"
    }

    100% {
        -webkit-transform: scale(1);
                transform: scale(1);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"
    }
}


/*END PRELOADER DESIGN*/

/*START SECTION PADDING DESIGN*/
.atf-section-title {
	margin-bottom: 50px;
}
.atf-section-title .title {
	font-weight: 700;
	font-family: var(--thm-font);
	margin-bottom:20px;
	font-size: 48px;
	line-height: 1.2;
	letter-spacing: -2px;
}
.atf-section-title .describtion {
	font-weight: 400;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
    .atf-section-title .title {
		font-size: 36px;
		letter-spacing: 0px;
		z-index: 1;
		position: relative;
	}
	.atf-section-title{
		margin-bottom:30px;
	}
}
@media screen and (min-width:320px) and (max-width:575px) {
	.atf-section-title .title {
		font-size: 28px;
		letter-spacing: 0px;
		line-height: 1.3;
	}
	.atf-section-title{
		margin-bottom:20px;
	}
}
.atf-section-padding {
    padding-top: 120px;
    padding-bottom: 120px;
}
@media only screen and (max-width:991px) {
	.pt-140.pb-95,
	.pt-80.pb-60,
	.pt-120.pb-95,
	.atf-section-padding {
		padding-top: 80px;
		padding-bottom: 80px;
	}
	
}
@media only screen and (max-width:576px) {
	.pt-140.pb-95,
	.pt-80.pb-60,
	.pt-120.pb-95,
	.atf-section-padding {
		padding-top: 60px;
		padding-bottom: 60px;
	}
}
/*END SECTION TITLE DESIGN*/

/*START SCROLL TO TOP*/

.atf-scroll-top {
	position: fixed;
	right: 105%;
	bottom: 70px;
	z-index: 99;
	cursor: pointer;
	transition: 1.5s ease;
	border: none;
	background: transparent; }
.atf-scroll-top:hover {
	transform:translateY(-10px);
}
.atf-scrollup-icon {
	font-size: 18px;
	width: 45px;
	height: 45px;
	background: linear-gradient(90deg,var(--thm-base),var(--thm-color2));
	line-height: 45px;
	color: var(--thm-white);
	border-radius: 5%;
	box-shadow: 0 13px 15px rgba(0, 0, 0, 0.2);
}
.atf-scroll-top.open {
	right: 30px; }
	
/*END SCROLL TO TOP*/

/* START BTN STYLE */
.atf-themes-btn {
	color: var(--thm-white);
	background-color: var(--thm-black);
	font-family: var(--thm-font);
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 1px;
	text-transform: capitalize;
	padding: 12px 15px 12px 40px;
	border: none;
	border-radius: 0;
	overflow: hidden;
	position: relative;
	z-index: 1;
	transition: all 0.3s ease 0s;
	display: inline-block;
	box-shadow: 0 0 10px rgba(255,255,255,0.5);
}
.atf-themes-btn:hover {
    color: var(--thm-white);
    padding: 12px 25px;
}
.atf-themes-btn:before,
.atf-themes-btn:after{
    content: "\f358";
    font-family: "Font Awesome 7 Free";
    font-weight: 900;
    transform: translateY(-50%);
    position: absolute;
    left: 12px;
    top: 50%;
    z-index: 0;
    transition: all 0.5s;
}
.atf-themes-btn:after{
    content: '';
    background-image: linear-gradient(-90deg,var(--thm-base),var(--thm-color));
    height: 15px;
    width: 15px;
    border-radius: 50%;
    transform: translateY(-50%) translateX(-50%);
    position: absolute;
    left: 21px;
    top: 50%;
    z-index: -1;
    transition: all 0.5s;
}
.atf-themes-btn:hover:before{ display: none; }
.atf-themes-btn:hover:after{
    height: 400px;
    width: 400px;
}
@media only screen and (max-width: 767px){
    .atf-themes-btn{ margin-bottom: 20px; }
}
.atf-nav-list .atf-themes-btn{
	background: linear-gradient(90deg,var(--thm-color2),var(--thm-color));
}
.atf-nav-list .atf-themes-btn:before,
.atf-nav-list .atf-themes-btn:after{
    content: "";
    font-family: "Font Awesome 7 Free";
	background-image: inherit;
}
/* END BTN STYLE */	

/*
* ----------------------------------------------------------------------------------------
* 01.END GENERAL STYLE
* ----------------------------------------------------------------------------------------
*/	
/*
* ----------------------------------------------------------------------------------------
* 02.START NAVIGATION OVERRIDES
* ----------------------------------------------------------------------------------------
*/
.atf-site-header.atf-style1 {
	transition: all 0.4s ease; 
}
.atf-site-header.atf-style1 .atf-main-header-in {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: space-between;
	height: 90px; 
}
.atf-site-header.atf-style1.atf-sticky-active {
	background: var(--thm-black);
	color: var(--thm-white) !important;
	-webkit-box-shadow: 0 2px 28px 0 rgba(255, 255, 255, 0.15);
	box-shadow: 0 2px 28px 0 rgba(255, 255, 255, 0.15);
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-name: fadeInDown;
	animation-name: fadeInDown;
	transition: all .5s ease-in-out;
}

.atf-nav .atf-nav-list > li > a {
	color: var(--thm-white);
}

@media screen and (max-width: 991px) {
  .atf-main-header .container {
    width: 100%; }

  .atf-top-header {
    display: none; }

}
.atf-nav ul {
	margin: 0;
	padding: 0;
	list-style: none;
	text-transform: uppercase;
	font-size:14px;
}
.atf-main-header {
  position: relative; }

@media screen and (min-width: 992px) {
	.atf-nav .atf-nav-list {
		display: flex !important;
		flex-wrap: wrap; 
	}
		
	.atf-nav .atf-nav-list > li {
		/* margin-right: 25px;  */
		font-weight:500;
	}
	.atf-nav .atf-nav-list > li:last-child {
		margin-right: 0; 
	}
	.atf-nav .atf-nav-list > li > a {
		padding: 15px 15px;
		/* padding: 15px opx; */
		display: inline-block;
	}
	.atf-nav .atf-nav-list > li > ul {
		left: 0;
		top: calc(100% + 15px); 
	}
	.atf-nav .atf-nav-list > li > ul:before {
		content: '';
		position: absolute;
		height: 10px;
		width: 10px;
		border: 1px solid #eaeaea;
		transform: rotate(45deg);
		background-color: #fff;
		border-right: none;
		border-bottom: none;
		top: -6px;
		left: 16px; 
	}
	.atf-nav .atf-nav-list > li:hover > ul {
		top: 100%;
		opacity: 1;
		visibility: visible;
		transition: all 0.4s ease; 
	}
	.atf-nav .atf-nav-list li {
		position: relative; 
	}
	.atf-nav .atf-nav-list li a.active {
		color: var(--thm-color2); 
	}
	.atf-nav .atf-nav-list ul {
		width: 200px;
		background-color: #fff;
		position: absolute;
		border: 1px solid #eaeaea;
		border-radius: 4px;
		padding: 10px 0;
		z-index: 100;
		opacity: 0;
		visibility: hidden;
		display: block !important;
		transition: all 0.1s ease; 
	}
	.atf-nav .atf-nav-list ul li:hover ul {
		top: 0px; 
	}
	.atf-nav .atf-nav-list ul li:hover > ul {
		opacity: 1;
		visibility: visible;
		transition: all 0.4s ease; 
	}
	.atf-nav .atf-nav-list ul a {
		font-size: calc(100% - 1px);
		display: block;
		line-height: 1.2em;
		padding: 8px 20px;
		color: var(--thm-black);
	}
	.atf-nav .atf-nav-list ul a:hover {
		background-color: var(--thm-color);
		color: var(--thm-white);
	}
	.atf-nav .atf-nav-list ul ul {
		top: 15px;
		left: 100%; 
	}
	.atf-menu-toggle,
	.atf-menu-dropdown-toggle {
		display: none; 
	} 
}
@media screen and (max-width: 991px) {
	.atf-menu-dropdown-toggle {
		position: absolute;
		height: 30px;
		width: 30px;
		right: 20px;
		top: 5px; 
	}
	.atf-menu-dropdown-toggle:before, .atf-menu-dropdown-toggle:after {
		content: '';
		display: block;
		position: absolute;
		left: 50%;
		top: 50%;
		transform: translate(-50%, -50%);
		height: 2px;
		width: 10px;
		background-color: var(--thm-white);
		transition: all 0.3s ease; 
	}
	.atf-menu-dropdown-toggle:before {
		transform: translate(-50%, -50%) rotate(90deg); 
	}
	.atf-menu-dropdown-toggle.active:before {
		transform: translate(-50%, -50%) rotate(0deg); 
	}
	.atf-nav .atf-nav-list {
		position: absolute;
		width: 50vw;
		right: 0;
		background-color: var(--thm-black);
		padding: 10px 0;
		display: none;
		top: 100%;
		border-top: 1px solid #eaeaea;
		border-bottom: 1px solid #eaeaea;
		overflow: auto;
		max-height: calc(100vh - 80px);
	}
	.atf-nav .atf-nav-list ul {
		padding-left: 15px;
		display: none; 
	}
	.atf-nav .atf-nav-list a {
		display: block;
		padding: 8px 20px; 
		color: var(--thm-white);
	}
	.atf-nav .menu-item-has-children {
		position: relative; }

 /*Mobile Menu Button*/
 
.atf-menu-toggle {
	position: relative;
	display: inline-block;
	width: 28px;
	height: 30px;
	margin: 30px 0px 15px 0px;
	cursor: pointer;
}
.atf-menu-toggle span,
.atf-menu-toggle span:before,
.atf-menu-toggle span:after {
	width: 100%;
	height: 2px;
	background-color: var(--thm-white);
	display: block; 
}
.atf-menu-toggle span {
	margin: 0 auto;
	position: relative;
	top: 12px;
	transition-duration: 0s;
	transition-delay: 0.2s; 
}
.atf-menu-toggle span:before {
	content: '';
	position: absolute;
	margin-top: -8px;
	transition-property: margin, transform;
	transition-duration: 0.2s;
	transition-delay: 0.2s, 0s; 
}
.atf-menu-toggle span:after {
	content: '';
	position: absolute;
	margin-top: 8px;
	transition-property: margin, transform;
	transition-duration: 0.2s;
	transition-delay: 0.2s, 0s;
}
.atf-toggle-active span {
	background-color: rgba(0, 0, 0, 0);
	transition-delay: 0.2s; 
}
.atf-toggle-active span:before {
	margin-top: 0;
	transform: rotate(45deg);
	transition-delay: 0s, 0.2s; 
}
.atf-toggle-active span:after {
	margin-top: 0;
	transform: rotate(-45deg);
	transition-delay: 0s, 0.2s; }
}
.atf-sticky-header {
	position: fixed;
	z-index: 200;
	width: 100%;
	top: 0;
	left: 0; 
}
.atf-nav .atf-nav-list .atf-themes-btn {
	text-transform:uppercase;
}
/*
* ----------------------------------------------------------------------------------------
* 02. END NAVIGATION OVERRIDES
* ----------------------------------------------------------------------------------------
*/
/*
* ----------------------------------------------------------------------------------------
* 03.START HOME DESIGN
* ----------------------------------------------------------------------------------------
*/
#home{
	position:relative;
	z-index: 1;
}
.atf-hero-area {
	background-color: var(--thm-f6);
    height: 750px;
    overflow: hidden;
}
.atf-home-overlay {
	background: rgba(0,0,0,0.4);
	height: 100%;
	width: 100%;
}
.atf-cover-bg{
	position:relative;
	z-index: 1;
} 
.atf-cover-bg::before {
	content: '';
	position: absolute;
	right: 0px;
	top: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg,#8c5a00,var(--thm-color));
	z-index: -1;
}
.atf-align-items-details {
	display: flex;
	align-items: center;
	min-height: 100%;
}
.atf-hero-content .title {
	color: var(--thm-white);
	text-transform: capitalize;
	font-weight: 700;
	font-family: var(--thm-font);
	font-size: 50px;
	line-height: 1.2;
}
.atf-hero-content .describtion {
	font-size: 16px;
	color: var(--thm-white);
	margin: 20px 0 35px;
}
	
/*
* ----------------------------------------------------------------------------------------
* 03.END HOME DESIGN
* ----------------------------------------------------------------------------------------
*/

/*
* ----------------------------------------------------------------------------------------
* 04.START SERVICE DESIGN
* ----------------------------------------------------------------------------------------
*/
.atf-single-service {
	position:relative;
}
.atf-single-service {
	border: none;
	border-radius: 20px;
	padding: 30px 20px;
	box-shadow: 0 0 15px rgba(0,0,0,0.1);
	background-color: var(--thm-white);
	margin-bottom: 25px;
	transition:all 0.3s ease-out;
}
.atf-single-service:hover {
	box-shadow: 0 0 15px rgba(0,0,0,0.3);
}
.atf-service-text {text-align:center;}

.atf-service-text h3 {
	padding: 0px 0 10px 0;
	background-image: linear-gradient(-90deg,var(--thm-base),var(--thm-color));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-weight: 600;
	font-size:20px;
}
/*
* ----------------------------------------------------------------------------------------
* 04. END SERVICE DESIGN  
* ----------------------------------------------------------------------------------------
*/
/*
* ----------------------------------------------------------------------------------------
* 05. START VIDEO DESIGN  
* ----------------------------------------------------------------------------------------
*/
#watch{
	background-image:linear-gradient(90deg,var(--thm-base),var(--thm-color));
}
.atf-video-icon {
	height: 80px;
	width: 80px;
	background-color: var(--thm-white);
	color: var(--thm-color);
	font-size: 20px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	z-index: 9;
	border-radius: 100%;
}
.atf-animation-zoom1 a {
  -webkit-animation: zoom1 1s infinite;
  animation: zoom1 1s infinite; }
  
@-webkit-keyframes zoom1 {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6); }
  70% {
    -webkit-box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 15px rgba(255, 255, 255, 0); }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); } }

@keyframes zoom1 {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6); }
  70% {
    -webkit-box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 15px rgba(255, 255, 255, 0); }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); } }
/*
* ----------------------------------------------------------------------------------------
* 05.END VIDEO DESIGN
* ----------------------------------------------------------------------------------------
*/

/*
* ----------------------------------------------------------------------------------------
* START product DESIGN
* ----------------------------------------------------------------------------------------
*/
.atf-single-product{
    text-align: center;
    transition: all 0.5s ease 0s;
}
.atf-single-product .atf-product-pic {
	overflow: hidden;
	position: relative;
	background: var(--thm-fb);
}
.atf-single-product .atf-product-pic::before {
	content: "";
	width: 200%;
	height: 100%;
	background-image: linear-gradient(90deg,var(--thm-base),var(--thm-color));
	position: absolute;
	bottom: -100%;
	left: -4%;
	transition: all 0.5s ease 0s;
	opacity:0.7;
}

.atf-single-product:hover .atf-product-pic:before{ bottom: 0; }
.atf-single-product .atf-product-pic img{
    width: 100%;
    height: auto;
}
.atf-single-product .atf-product-social {
	padding: 0;
	margin: 0;
	list-style: none;
	position: absolute;
	bottom: 10%;
	left: 0;
	opacity: 0;
	z-index: 2;
	transition: all 0.5s ease 0.3s;
	transform: translateX(-60px);
}
.atf-single-product:hover .atf-product-social {
	opacity: 1;
	transform: translateX(-0px);
	transition: all 0.5s ease 0.3s;
}
.atf-single-product .atf-product-social li {
	margin: 20px;
}
.atf-single-product .atf-product-social li a {
	width: 40px;
	height: 40px;
	line-height: 40px;
	font-size: 16px;
	color: var(--thm-white);
	margin-right: 10px;
	position: relative;
	transition: all 0.3s ease 0s;
	display: inline-block;
	text-align: center;
}
.atf-single-product .atf-product-social li a:after{
    content: "";
    width: 100%;
    height: 100%;
    background:  var(--thm-color2);
    border-radius: 50%;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    transition: all 0.3s ease 0s;
}
.atf-single-product .atf-product-social li a:hover::after {
	background: var(--thm-color);
	transition: all 0.3s ease-in-out 0s;
	-webkit-transition: all 0.3s ease-in-out 0s;
}
.atf-title {
	font-size: 20px;
	font-weight: 600;
	color: var(--thm-white);
	text-transform: uppercase;
	color: var(--thm-white);
}
.atf-single-product .atf-product-content{
	transition: all 0.5s ease 0s;
	overflow:hidden;
	padding: 20px;
}
.atf-product-content{
	background-image: linear-gradient(90deg,var(--thm-base),var(--thm-color));
	color: var(--thm-white);
}
.post{
    display: block;
    text-transform: capitalize;
}
@media only screen and (max-width: 991px){
    .atf-single-product{ margin-bottom: 30px; }
}
/*
* ----------------------------------------------------------------------------------------
* END product DESIGN
* ----------------------------------------------------------------------------------------
*/
/*
* ----------------------------------------------------------------------------------------
* 06.START ABOUT DESIGN
* ----------------------------------------------------------------------------------------
*/
#about {
	background: var(--thm-f8);
	padding-top: 40px;
}
.atf-about-content-area .atf-section-title{
	margin-bottom:0;
}
.atf-about-content-area .atf-section-title p {
	margin-top: 12px;
	color: var(--thm-p);
}
.atf-about-content-area{
	padding-left:15px;
}
.atf-about-content-area h2 {
	text-transform:capitalize;
}
.atf-about-content-area p {
	width:100%;
}
.atf-about-single-content {
	margin-top:20px;
}
.atf-about-single-content li {
	line-height: 40px;
	color: var(--thm-p);
	font-weight: 400;
}
.atf-about-single-content li::before {
	content: "\f00c";
	color: var(--thm-white);
	font-family: "Font Awesome 7  Free";
	font-weight: 700;
	text-align: center;
	margin-right: 15px;
	border-radius: 50%;
	padding: 5px;
	background-image: linear-gradient(-90deg,var(--thm-base),var(--thm-color));
}
/*
* ----------------------------------------------------------------------------------------
* 06.END ABOUT DESIGN
* ----------------------------------------------------------------------------------------
*/
/*
* ----------------------------------------------------------------------------------------
* 07.START TESTIMONIAL DESIGN
* ----------------------------------------------------------------------------------------
*/
#testimonial {background-image:linear-gradient(-90deg,var(--thm-base),var(--thm-color)); position: relative;}
#testimonial .atf-section-title h2{
	color:var(--thm-white)! important;
	-webkit-text-fill-color: var(--thm-white)! important;
}
#download .atf-section-title h2{
	color:var(--thm-white)! important;
	-webkit-text-fill-color: var(--thm-white)! important;
}
.atf-testimonial-item {
	margin: 0px 0px 20px 0px;
	overflow: hidden;
	position: relative;
	box-shadow: 0 5px 15px rgba(0,0,0,0.4);
	border-radius: 8px;
	border: 1px solid #ddd;
}
.atf-testimonial-image {
	width: 100px;
	margin: 0 auto;
}
.atf-testimonial-image  img{
	border-radius: 50%;
	margin-top:30px
}
.atf-testimonial-info .atf-testimonial-designation p{
	display: inline-block;
	font-size: 15px;
	font-weight: 400;
	letter-spacing: 0.05em;
	transition: all 500ms ease;
	text-align: center;
	color: var(--thm-white);
}
.atf-testimonial-inner {
	display: block;
	padding: 18px 30px;
	color: var(--thm-black);
}
.atf-testimonial-inner .atf-testimonial-text {
	line-height: 1.8;
	font-weight: 400;
	margin-bottom: 0;
	color: var(--thm-white);
	text-align: center;
}
.atf-testimonial-name {
	margin-top: 5px;
	color: var(--thm-white);
}
.atf-testimonial-name h3 {
	color: var(--thm-white);
	font-size:20px;
}
.atf-testimonial-info.text-center {
	padding-bottom: 30px;
	color: var(--thm-white) !important;
}
/*
* ----------------------------------------------------------------------------------------
* 07.END TESTIMONIAL DESIGN
* ----------------------------------------------------------------------------------------
*/

/**************************************
 * 08. START PRICING DESIGN
 *************************************/
.atf-pricing-content {
	padding: 35px 15px;
	background: var(--thm-white);
	border-radius: 7px;
	transition: all 0.4s ease 0s;
	text-align: center;
}
.atf-pricing-heading {
	margin-bottom: 10px;
}
.atf-pricing-icon {
	background: rgba(255,255,255, 0.5);
	width: 100px;
	height: 100px;
	line-height: 115px;
	border-radius: 100px;
	margin: auto;
	-webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
}
.atf-pricing-name .icon{
	font-size: 50px;
	background-image: linear-gradient(-90deg,var(--thm-base),var(--thm-color));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	margin-bottom: 15px;

}
.atf-pricing-heading {
	position:relative;
}
.atf-pricing-name img {
	width: 80px;
	margin-bottom: 30px;
}
.atf-pricing-name h3 {
	font-size: 20px;
	color: var(--thm-white);
	margin: 15px 0;
	padding: 8px 20px;
	border-radius: 6px;
	display: inline-block;
	font-weight: 600;
	background-image: linear-gradient(90deg,var(--thm-base),var(--thm-color));
}
.atf-pricing-heading .atf-pricing-name h2 {
	font-weight: 700;
	color: var(--thm-color2);
}
.atf-pricing-heading .atf-pricing-name .atf-pricing-small-text {
    font-size: 15px;
    font-weight: 500;
    color: var(--thm-black);
}
.atf-pricing-body ul li:first-child{
	border-top:none;
}
.atf-pricing-body ul li {
	padding: 10px 0;
	color: var(--thm-p);
}
.atf-pricing-body ul li:last-child {
    padding-bottom: 0;
}
.atf-pricing-body ul li i {
    color: var(--thm-color);
    padding-right: 5px;
}
.atf-pricing-body .offer-list-none {
	color: var(--thm-black);
}
.atf-pricing-body .offer-list-none i {
    color: rgba(247, 47, 60, 0.45);
}
.atf-pricing-content {
	position: relative;
	box-shadow: 0 0 15px rgba(0,0,0,0.2);
}
.atf-pricing-content:hover {
	transform: initial;
}
.atf-pricing-content:before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 4px;
	background: var(--thm-ase);
}
.atf-pricing-content:after {
	content: "";
	width: 100%;
	position: absolute;
	bottom: 0;
	left: 0;
	transform-origin: center;
	transition: -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	transform: scaleX(0);
}
.atf-pricing-content:hover:after {
	opacity: 1;
	transform-origin: center;
	transform: scaleX(1);
}
.atf-pricing-content:after {
	height: 4px;
	background-image: linear-gradient(90deg,var(--thm-base),var(--thm-color));
}
/**************************************
 * 08. END PRICING DESIGN
 *************************************/
/*

/*
* ----------------------------------------------------------------------------------------
* 09.START FREQUENTLY DESIGN
* ----------------------------------------------------------------------------------------
*/
#faq {
	background:var(--thm-f8);
}
#accordion .card {
    border: none;
    box-shadow: none;
    border-radius: 30px;
    margin-bottom: 15px;
    background: transparent;
}
#accordion .card-header {
	margin-bottom: 0;
	color: inherit;
	border-bottom: transparent;
	padding: 0;
	border-radius: 30px;
	background: transparent !important;
}
#accordion .card-title button {
	display: block;
	padding: 17px 20px 17px 70px;
	background: #f1f1e6;
	font-size: 20px;
	font-weight: 600;
	color: var(--thm-color);
	border: none;
	border-radius: 30px;
	position: relative;
	transition: all 0.3s ease 0s;
	width: 100%;
	text-align: left;
}
#accordion .card-title button.collapsed{ color: var(--thm-black); }
#accordion .card-title button::after, #accordion .card-title button.collapsed::after {
	content: "\f107";
	font-family: "Font Awesome 7 Free";
	font-weight: 900;
	width: 55px;
	height: 55px;
	line-height: 55px;
	border-radius: 50%;
	background: linear-gradient(90deg,var(--thm-base),var(--thm-color2));
	font-size: 22px;
	color: var(--thm-white);
	text-align: center;
	position: absolute;
	top: 6px;
	left: 0;
	transition: all 0.3s ease-in-out 0s;
	-webkit-transition: all 0.3s ease-in-out 0s;
}
#accordion .card-title button.collapsed:after{ content: "\f105"; }
#accordion .card-body{
    padding: 20px 0 0 0;
    font-size: 15px;
    line-height: 25px;
    border-top: none;
    position: relative;
}
#accordion .card-body p{
    padding: 10px 20px 10px;
    margin: 0;
    background: #f1f1e6;
    border-radius: 15px;
}
.atf-watch-cart {
	font-size: 22px;
	color: var(--thm-color);
}
/*
* ----------------------------------------------------------------------------------------
* 09. END  FREQUENTLY DESIGN
* ----------------------------------------------------------------------------------------
*/
/*
* ----------------------------------------------------------------------------------------
* 10.START BLOG DESIGN
* ----------------------------------------------------------------------------------------
*/
.atf-blog-area .atf-single-blog {
	position: relative;
	border-radius: 10px;
	overflow: hidden;
	border: 1px solid rgba(0, 0, 0, 0.1);
}
.atf-blog-area .atf-single-blog .atf-blog-content {
	padding: 10px 25px 20px;
	background: var(--thm-white);
}
.atf-blog-icon i{
	color: var(--thm-color); 
}
.atf-post-img .atf-blog-tag a {
	overflow: hidden;
	position: relative;
}
.atf-blog-area .atf-single-blog:hover img {
  -webkit-filter: none;
  filter: none;
  -webkit-transform: scale(1.02, 1.03);
  transform: scale(1.02, 1.03);
}
.atf-blog-area .atf-single-blog img {
  -webkit-transition: all .5s;
  transition: all .5s;
  overflow:hidden;
  padding-top:10px;
}
.atf-blog-content .atf-blog-tag {
	font-weight:500;
	-webkit-transition: all .3s;
	transition: all .3s;
}
.atf-blog-content .atf-blog-time {
	-webkit-transition: all .3s;
	transition: all .3s;
}
.atf-single-blog .atf-blog-content h3{
	padding-top: 18px;
	padding-bottom: 10px;
	line-height: 30px;
	font-weight:600;
	transition: all 0.3s ease-out;
}
.atf-single-blog .atf-blog-content h3 a{
	transition: all 0.3s ease-out;
	-webkit-transition: all 0.3s ease-out;
}
.atf-single-blog .atf-blog-content h3 a:hover{
	color: var(--thm-color);
}
.atf-single-blog .atf-blog-content p {
	padding: 4px 0 15px;
}
.atf-blog-tag:hover,
.atf-blog-time:hover{
	color: var(--thm-color);
}
.atf-blog-icon {
	text-align:right;
}
.atf-blog-date i{
	background-image: linear-gradient(-90deg,var(--thm-base),var(--thm-color));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
/*
* ----------------------------------------------------------------------------------------
* 10.END BLOG DESIGN 
* ----------------------------------------------------------------------------------------
*/
/*
* ----------------------------------------------------------------------------------------
* 11. START COMPANY BRAND LOGO DESIGN  
* ----------------------------------------------------------------------------------------
*/
#atf-brand-area {
	background-image: linear-gradient(90deg,var(--thm-base),var(--thm-color));
}
.atf-brand-content {
	background-image: linear-gradient(-90deg,var(--thm-base),var(--thm-color2));
	padding: 30px 40px;
	color:var(--thm-white);
	transition:.3s;
	border-radius:20px;
}
.atf-brand-icon i {
	font-size:30px;
}
.atf-brand-content .atf-brand-icon {
	text-align: left;
	display: inline-block;
	display: flex;
	align-items: center;
}
.atf-brand-content .atf-brand-icon strong{
	font-size:24px;
}
.atf-brand-active{ text-align: center; cursor:pointer; }
.atf-brand-active > a { display:inline-block}
/*
* ----------------------------------------------------------------------------------------
* 11.END COMPANY BRAND LOGO DESIGN 
* ----------------------------------------------------------------------------------------
*/
/*
* ----------------------------------------------------------------------------------------
* 12.START CONTACT DESIGN
* ----------------------------------------------------------------------------------------
*/
.contact.atf-section-title .title{
	font-size:30px;
}
.contact {
	padding: 35px;
	box-shadow: 0px 4px 6px 4px rgba(75, 81, 91, 0.1);
	-webkit-box-shadow: 0px 4px 6px 4px rgba(75, 81, 91, 0.1);
}
.contact .form-group input {
	height: 55px;
}
.contact .form-control {
	padding: 12px 15px;
	border-radius: 5px;
	margin-bottom: 5px;
	border: 1px solid #eee;
	background: var(--thm-f6);
	font-size: 15px;
}
.contact .form-control:focus {
	border-color: var(--thm-color)!important;
	box-shadow: none;
	outline: 0 none;
}
.contact textarea {
	border-radius: 0px;
	box-shadow: none;
	padding: 10px;
	height: 100px;
}
.contact textarea:focus {
	box-shadow: none;
	outline: 0 none;
	border-color: var(--thm-color);
}
.contact .form-group label {
	font-size: 18px;
	font-weight: 600;
	margin-bottom:10px;
	color:var(--thm-black);
}
/* Mailchamp Design */

.atf-mailchamp-color {
	background-image: linear-gradient(90deg,var(--thm-base),var(--thm-color));
	border-radius: 50%;
	padding: 170px 100px;
}
.atf-mailchamp-area h2{
	font-size: 30px;
	color: var(--thm-white);
}
.atf-mailchamp-area input:focus {
	box-shadow: none;
	outline: 0 none;
	border-color: var(--thm-color);
}
.atf-mailchamp-area input {
	background: var(--thm-white);
	color: var(--thm-black);
	border: 1px solid #eee;
	width: 100%;
	height: 55px;
	padding-left: 15px;
}
.atf-mailchamp-area .form-group {
	position: relative;
}
.atf-mailchamp-area .atf-themes-btn {
	position: absolute;
	right: 4px;
	padding: 7px 23px;
	top: 4px;
}
.atf-mailchamp-area .atf-themes-btn::before, .atf-mailchamp-area .atf-themes-btn::after {
	content: "";
	font-family: "Font Awesome 7 Free";
	background-image: inherit;
}
.atf-mailchamp-area .atf-themes-btn i {
	font-size: 30px;
}
/*
* ----------------------------------------------------------------------------------------
* 12. END CONTACT DESIGN
* ----------------------------------------------------------------------------------------
*/
/*
* ----------------------------------------------------------------------------------------
* 13. START FOOTER DESIGN
* ----------------------------------------------------------------------------------------
*/
#footer {
    position: relative;
}
.atf-footer-area {
	position: relative;
	background: var(--thm-black);
}
.atf-footer-social-icon a i {
    font-size: 16px;
    margin-right: 10px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 20px;
    color: var(--thm-black);
    text-align: center;
    background: var(--thm-white);
    transition: all 0.3s ease-in-out 0s;
    -webkit-transition: all 0.3s ease-in-out 0s;
}
.atf-footer-social-icon a i:hover {
    background: var(--thm-base);
    color: var(--thm-black);
}
.atf-footer-area .atf-footer-link.list {
    position: relative;
}
.atf-footer-area .atf-footer-link.list::before {
    content: "";
    position: absolute;
    left: 2px;
    top: 35px;
    background: var(--thm-white);
    width: 15px;
    height: 5px;
}
.atf-footer-area .atf-footer-link.list::after {
    content: "";
    position: absolute;
    left: 25px;
    top: 37px;
    background: var(--thm-white);
    width: 45px;
    height: 2px;
}
.atf-footer-link h3 {
	margin-bottom: 50px;
	font-size: 20px;
	color: var(--thm-white);
}
.atf-footer-link .atf-list-menu li {
    position: relative;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
}
.atf-footer-link .atf-list-menu li::before {
    content: "\f105";
    position: absolute;
    left: 0;
    top: 0px;
    font-family: 'Font Awesome 7 Free';
    font-weight: 900;
    color: var(--thm-white);
    opacity: 0;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    font-size: 13px;
}
.atf-footer-link .atf-list-menu li:hover::before {
    opacity: 1;
}
.atf-footer-link .atf-list-menu li a {
    color: #ccc;
    margin-bottom: 15px;
    display: block;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
}
.atf-footer-link .atf-list-menu li a:hover {
    color: var(--thm-white);
    padding-left: 15px;
}
.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;
}
.atf-list-menu span a{
	display: block;
	margin-bottom: 10px;
	color: rgba(255, 255, 255, 0.8);
	transition: all 0.3s ease-out;
}
.atf-list-menu span a:hover {
    color: var(--thm-white);
}
.atf-footer-link p {
    color: var(--thm-white);
}
.atf-footer-boottom {
    padding: 35px 0;
    background: rgba(0, 0, 0, 0.4);
}
.atf-footer-boottom p {
    color: var(--thm-white);
}
.atf-footer-boottom a {
    color: var(--thm-ase);
    font-weight: 700;
    -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;
    text-decoration: underline;
}
.atf-footer-boottom a:hover {
    color: var(--thm-white);
    text-decoration: inherit;
}
@media only screen and (max-width: 991px) {
	.atf-footer-link{
		margin:12px 0;
	}
}
/*
* ----------------------------------------------------------------------------------------
* 13.END FOOTER DESIGN
* ----------------------------------------------------------------------------------------
*/
/* 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-white);
    border: 1px solid var(--thm-white);
    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-base);
    background: var(--thm-base);
    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;
	opacity: 0;
}
.atf_owl_nav_slider .owl-nav .owl-next {
    right: -25px;
	opacity: 0;
}
.atf_owl_nav_slider:hover .owl-nav .owl-prev {
    left: -15px;
    opacity: 1;
}
.atf_owl_nav_slider:hover .owl-nav .owl-next {
    right: -15px;
    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 */


