/*
Author       : Theme-Family
Template Name:	Manifesto - Dance School Landing Page Theme
Version      : 1.0.1
*/
/*=============================================================
    CSS INDEX
    =============================
    01. GENERAL STYLE (BODY, LINK COLOR, SECTION TITLE, PRELOADER, SCROLL TO TOP, BTN, SECTION PADDING etc)
    02. START BOOTSTRAP NAVIGATION OVERRIDES
    03. START HOME DESIGN
    04. START ABOUT DESIGN
		--START COUNTER DESIGN
	05. START PORTFOLIO DESIGN
	06. START SERVICE DESIGN
	07. START PRICING DESIGN
	08. START Team DESIGN
	09. START COUNTER DESIGN
    10. START TESTIMONIAL DESIGN
    11. START BLOG DESIGN
    12. START HOT DEAL DESIGN
    13. START CONTACT DESIGN (START MAP DESIGN)
    14. START FOOTER DESIGN

  =============================================================*/
/*
* ----------------------------------------------------------------------------------------
* 01.GENERAL STYLE
* ----------------------------------------------------------------------------------------
*/
html{
	overflow-x: hidden;
	height: 100%;
}
body {
	font-family: var(--thm-font);
	font-weight: 400;
	font-style: normal;
	font-size: 16px;
	color:  var(--thm-black);
	line-height: 1.9;
}
:root {
	--thm-font: 'Poppins', sans-serif;
	--thm-base: #2b1d6a;
	--thm-color: #ff8402;
	--thm-black: #4e4e4e;
	--thm-white: #ffffff;
	--thm-ase: #afb2bf;
	--thm-gray: #8e8e8e;
	--thm-f6: #F1F8FF;
	--thm-fb: #f6f6f6;
	--thm-bg:  linear-gradient(-110deg,#f6f6f6 50%,#fff 50%);
}
p {
	padding: 0;
	margin: 0;
	font-size: 16px;
	color: var(--thm-black);
	line-height: 1.9;
	font-family: var(--thm-font);
	font-weight: 400;
	letter-spacing: -0.3px;
}
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.3;
	margin-bottom: 0px;
	font-weight: 700;
}
h2 {
	font-size: 36px;
	line-height: 1.3;
	margin-bottom: 0px;
	font-weight: 600;
}
h3 {
	font-size: 22px;
	line-height: 1.3;
	margin-bottom: 0px;
	font-weight: 600;
}
h4 {
  font-size: 20px;
  line-height: 27px; }

h5 {
  font-size: 18px;
  line-height: 26px; }

h6 {
  font-size: 14px;
  line-height: 22px; }
  
p:last-child {
	margin-bottom: 0;
}
ul {
	margin: 0;
	padding: 0;
	list-style: none
}
img {
	max-width: 100%;
	height: auto;
	border: 0;
}
a {
	text-decoration: none;
	outline: none;
}
a:focus, .btn:focus {
	text-decoration: none;
	outline: none;
}
a:hover, a:active {
	color: var(--thm-base);
	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;
}
::-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: 270px;
	z-index: 9;
	overflow: hidden;
}
button, input, textarea {
    color: var(--thm-black);
}
button, input, textarea:focus {
    border: none;
    outline:none;
}
.no-border{
	border:none! important;
}
.bg-attachment{background-attachment:fixed;}
.bg-f6{background:var(--thm-f6);}
/*
* ----------------------------------------------------------------------------------------
* PRELOADER
* ----------------------------------------------------------------------------------------
*/
#atf-loader {
	background:var(--thm-white);
	height: 100%;
	width: 100%;
	position: fixed;
	z-index: 9999;
	margin-top: 0;
	top: 0
}

#atf-loading-center {
    width: 100%;
    height: 100%;
    position: relative
}

#atf-loading-center  {
    position: absolute;
    left: 50%;
    top: 40%;
    height: 100px;
    width: 300px;
    transform: translate(-50%,-50%);
}
/*
* ----------------------------------------------------------------------------------------
* SCROLL TO TOP 
* ----------------------------------------------------------------------------------------
*/
.back-to-top {
	position: fixed;
	cursor: pointer;
	top: 0;
	right: 15px;
	color:  var(--thm-white);
	background: var(--thm-color);
	z-index: 4;
	width: 50px;
	text-align: center;
	height: 50px;
	line-height: 50px;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: .9s;
	transition: .9s;
	border-radius: 15px;
}
.back-to-top:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	background: var(--thm-base);
	opacity: 0;
	visibility: hidden;
	-webkit-transition: 0.5s;
	transition: 0.5s;
	border-radius: 15px;
}
.back-to-top:hover:before,
.back-to-top:focus:before {
	opacity: 1;
	visibility: visible;
}
.back-to-top:hover,
.back-to-top:focus {
	color:  var(--thm-white);
}
.back-to-top.active {
	top: 97%;
	-webkit-transform: translateY(-98%);
	transform: translateY(-98%);
	opacity: 1;
	visibility: visible;
}
.back-to-top i:last-child {
	opacity: 0;
	visibility: hidden;
	top: 60%;
}
.back-to-top:hover i:first-child,
.back-to-top:focus i:first-child {
	opacity: 0;
	top: 0;
	visibility: hidden;
}
.back-to-top:hover i:last-child,
.back-to-top:focus i:last-child {
	opacity: 1;
	visibility: visible;
	top: 50%;
}
.back-to-top i {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	left: 0;
	right: 0;
	margin: 0 auto;
	-webkit-transition: 0.5s;
	transition: 0.5s;
	font-size: 20px;
}
.v-middle {
	position: absolute;
	width: 100%;
	top: 50%;
	left: 0;
	-webkit-transform: translate(0%, -50%);
	transform: translate(0%, -50%);
}
/*
* ----------------------------------------------------------------------------------------
* BTN
* ----------------------------------------------------------------------------------------
*/	

.atf-themes-btn {
	color: var(--thm-white);
	background: var(--thm-color);
	border-radius: 4px;
	font-size: 16px;
	padding: 16px 40px;
	font-weight: 600;
	box-shadow: 0 0 15px rgba(0,0,0,0.1);
	-webkit-box-shadow: 0 0 15px rgba(0,0,0,0.1);
	display: inline-block;
	-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;
	text-transform: capitalize;
	letter-spacing: -0.04em;
}
.atf-themes-btn:hover{
	background: var(--thm-base);
	color: var(--thm-white);
}

.atf-main-btn .btn-2 {
	border: 1px solid var(--thm-white);
	background: transparent;
	padding: 11px 23px;
}
.atf-main-btn  .btn-2:hover {
	background: var(--thm-base);
	color: var(--thm-white);
	border:1px solid var(--thm-base);
}
/*
* ----------------------------------------------------------------------------------------
* SECTION PADDING
* ----------------------------------------------------------------------------------------
*/
.atf-section-padding {
	padding: 120px 0;
}
@media only screen and (max-width : 991px) {
	.atf-section-padding {
		padding: 80px 0;
	}
}
@media only screen and (max-width : 767px) {
	.atf-section-padding {
		padding: 60px 0;
	}
}
/*
* ----------------------------------------------------------------------------------------
* SECTION TITLE
* ----------------------------------------------------------------------------------------
*/
.atf-section-title h2 {
	font-size: 50px;
	line-height: 1.2;
	color: var(--thm-black);
	text-transform: capitalize;
	letter-spacing:-2px;
}
@media only screen and (max-width : 767px) {
	.atf-section-title h2 {
		font-size: 36px;
		line-height: 1.3;
	}
}
@media only screen and (max-width : 576px) {
	.atf-section-title h2 {
		font-size: 28px;
		line-height: 1.3;
	}
}
.atf-section-title .atf-sec_icon i {
	color: var(--thm-base);
	margin:0 3px 0 3px;
}
.atf-section-title .atf-sec_icon  {
	position: relative;
	display:inline-block;
	margin-top: 10px;
}
.atf-section-title .atf-sec_icon:before{
	position:absolute;
	content: '';
	width: 50px;
	height: 2px;
	background: var(--thm-base);
	top: 16px;
	left: -56px;
}
.atf-section-title .atf-sec_icon:after{	
	position:absolute;
	content: '';
	width: 50px;
	height: 2px;
	background: var(--thm-base);
	top: 16px;
	right: -56px;
}
.atf-section-title .atf-sec_icon span {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	margin: -5px 2px;
	background: var(--thm-base);
	display: inline-block;
}
.atf-section-title .atf-sec_icon .atf-sec_radius {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	margin: -4px 2px;
	background: var(--thm-base);
	display: inline-block;
}
.atf-section-title p {
	font-family: var(--thm-font);
	font-size: 16px;
	font-weight: 400;
	color: var(--thm-black);
}
/*
* ----------------------------------------------------------------------------------------
* 01.END GENERAL STYLE
* ----------------------------------------------------------------------------------------
*/	
/*
* ----------------------------------------------------------------------------------------
* 02. START BOOTSTRAP NAVIGATION OVERRIDES
* ----------------------------------------------------------------------------------------
*/

/**************************************
 * 02.Navber Style
 *************************************/

.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: capitalize;
	font-size:16px;
}
.arrow-btn{
	font-size:12px;
}
.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 0;
		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: #fda140;
	}
	.atf-nav .atf-nav-list ul {
		width: 200px;
		background-color: #fff;
		position: absolute;
		border: 1px solid #eaeaea;
		border-radius: 4px;
		padding: 0px 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: 10px 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: 767px) {
	.atf-menu-toggle {
		margin: 30px 0px 10px 0px;
	}
}
@media screen and (max-width: 991px) {
	.arrow-btn{
		display:none;
	}
	.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: 300px;
		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: 27px;
	margin: 28px 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; 
}
/*
* ----------------------------------------------------------------------------------------
* 02.END BOOTSTRAP NAVIGATION OVERRIDES
* ----------------------------------------------------------------------------------------
*/
/*
* ----------------------------------------------------------------------------------------
* 03.START HOME DESIGN
* ----------------------------------------------------------------------------------------
*/
.adjustment-bg{
	position: relative;
	background-position: center;
	background-size:cover;
	background-repeat:no-repeat;
}
.atf-cover-bg {
	position: relative;
	z-index:1;
}
.atf-cover-bg::before {
	content: '';
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	background: rgba(0, 0, 0, 0.7);
	z-index:-1;
}
.atf-hero-area.atf-cover-bg::before {
	background: rgba(0, 0, 0, 0.5);
}
.atf-hero-area {
	background-color: var(--thm-f6);
	height: 750px;
	overflow: hidden;
}
.ai-center {
	display: flex;
	align-items: center;
	min-height: 100%;
}
.atf-hero-content .sub-title {
	color: var(--thm-white);
	font-size: 16px;
	font-weight: 600;
	text-transform: capitalize;
	background: var(--thm-color);
	display: inline-block;
	padding: 6px 22px;
	border-radius: 10px;
	margin-bottom:10px;
}
.atf-hero-content .title {
	color: var(--thm-white);
	text-transform: capitalize;
	font-weight: 700;
	font-family: var(--thm-font);
	font-size: 75px;
	letter-spacing: -2px;
}
.atf-hero-content p {
	color: var(--thm-white);
}
@media only screen and (max-width : 991px) {
	.atf-hero-content br{
		display:none;
	}
	.atf-hero-content .title{
		font-size:50px;
	}
}
@media only screen and (max-width : 767px) {
	.atf-hero-content .title{
		letter-spacing:0px;
	}
}
/* Slider Design */
.atf-slider-area {
	position: relative;
	z-index:1;
}
.atf-single-slider{
	height:750px;
}
.atf-single-slider.atf-cover-bg::before {
	background: rgba(0, 0, 0, 0.5);
}
.atf-slider-content {
	padding-top:100px;
}
.atf-slider-content .atf-subtitle {
	font-size: 50px;
	line-height: 1.1;
	font-weight: 600;
	text-transform: uppercase;
	color: var(--thm-white);
	text-shadow: #222222 2px 2px 2px;
	letter-spacing: -2px;
	display: inline-block;
	margin-bottom: 5px;
}
.atf-slider-content .atf-title {
	font-size: 100px;
	line-height: 1.2;
	font-weight: 700;
	margin-bottom: 20px;
	text-transform: uppercase;
	color: var(--thm-white);
	text-shadow: #000 1px 1px 1px;
	letter-spacing: -6px;
}
.atf-slider-area .owl-dots {
	position: absolute;
	right: 70px;
	top: 50%;
	transform: translateY(-50%);
}
.atf-slider-area .owl-dots .owl-dot {
	box-shadow: 0 0 0 2px var(--thm-white);
	border: none;
	border-radius: 50%;
	background: transparent;
	width: 15px;
	height: 15px;
	margin-bottom: 10px;
	transition: all 0.3s ease;
	display:block;
}
.atf-slider-area .owl-dots span {
	background: rgba(255, 255, 255, 0.2);
	transform: scale(1);
	width: 100%;
	height: 100%;
	display: block;
	border-radius: 100%;
	transition: all 0.3s ease;
}
.atf-slider-area .hero-slider.owl-carousel .owl-dot:hover,
.atf-slider-area .hero-slider.owl-carousel .owl-dot.active {
	box-shadow: 0 0 0 2px var(--thm-color) !important;
}
.atf-slider-area .hero-slider.owl-carousel .owl-dot:hover span,
.atf-slider-area .hero-slider.owl-carousel .owl-dot.active span {
	background: var(--thm-color);
	transform: scale(0.4);
}
.atf-slider-area .hero-slider.owl-carousel .owl-dot.last-child {
	margin-bottom: 0;
}
.atf-slider-area .hero-slider.owl-carousel .owl-dot span {
	margin: 0px 0px;
}
 /*-- Animations Start --*/
.owl-item.active .animation__style01 .atf-subtitle {
	-webkit-animation: fadeInUp .5s ease-in-out;
	animation: fadeInUp .5s ease-in-out;
}
.owl-item.active .animation__style01 .atf-title {
	-webkit-animation: fadeInUp .7s ease-in-out;
	animation: fadeInUp .7s ease-in-out;
}
.owl-item.active .animation__style01 .atf-slider-btn {
	-webkit-animation: fadeInUp .9s ease-in-out;
	animation: fadeInUp .9s ease-in-out;
}
.owl-item.active .atf-single-slider {
	animation: zoomOutEffect 5s ease forwards;
	transition: all 2s ease; 
}

@keyframes zoomOutEffect {
	0%   { transform: scale(1.05); }
	100% { transform: scale(1); }
}
@media only screen and (max-width : 991px) {
	.atf-slider-content .atf-subtitle {
		font-size:36px;
		letter-spacing:-1px;
	}
	.atf-slider-content .atf-title {
		font-size:50px;
		letter-spacing:0px;
	}
}
@media only screen and (max-width : 576px) {
	.atf-slider-content .atf-subtitle {
		font-size:28px;
		letter-spacing:0px;
	}
	.atf-slider-content .atf-title {
		font-size:36px;
		letter-spacing:0px;
	}
}
/*
* ----------------------------------------------------------------------------------------
* START VIDEO  DESIGN
* ----------------------------------------------------------------------------------------
*/
.atf-video-area {
	position: relative;
}
.atf-video-area  {
	display: block;
	border-radius: 7px;
}
.atf-video-area .waves-box {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	z-index: 1;
}

.atf-video-area .iq-video {
	background: var(--thm-white);
	display: inline-block;
	width: 70px;
	height: 70px;
	text-align: center;
	font-size: 20px;
	color: var(--thm-color);
	border-radius: 100%;
	line-height: 53px;
	z-index: 1020;
	position: relative;
	border: 8px solid var(--thm-color);
}
.atf-video-area .iq-video i {
	margin-left: 3px;
}
.atf-video-area .iq-waves {
	position: absolute;
	left: -30px;
	top: -30px;
	z-index: 2;
}
.atf-video-area .iq-waves .wave-1 {
	-webkit-animation-delay: 0s;
	animation-delay: 0s;
}
.atf-video-area .iq-waves .waves {
	position: absolute;
	width: 130px;
	height: 130px;
	background: rgba(234 237 249 / 50%);
	opacity: 0;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	border-radius: 50%;
	background-clip: padding-box;
	-webkit-animation: waves 3s ease-in-out infinite;
	animation: waves 3s ease-in-out infinite;
}
.atf-video-area .iq-waves .wave-1 {
	-webkit-animation-delay: 0s;
	animation-delay: 0s;
}
.atf-video-area .iq-waves .wave-2 {
	-webkit-animation-delay: 1s;
	animation-delay: 1s;
}
.atf-video-area .iq-waves .wave-3 {
	-webkit-animation-delay: 2s;
	animation-delay: 2s;
}
@-webkit-keyframes waves {
	0% {
		-webkit-transform: scale(0.2, 0.2);
		transform: scale(0.2, 0.2);
		opacity: 0;
		-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	}
	50% {
		opacity: 0.9;
		-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
	}
	100% {
		-webkit-transform: scale(0.9, 0.9);
		transform: scale(0.9, 0.9);
		opacity: 0;
		-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	}
}
@keyframes waves {
	0% {
		-webkit-transform: scale(0.2, 0.2);
		transform: scale(0.2, 0.2);
		opacity: 0;
		-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	}
	50% {
		opacity: 0.9;
		-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
	}
	100% {
		-webkit-transform: scale(0.9, 0.9);
		transform: scale(0.9, 0.9);
		opacity: 0;
		-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	}
}
/*
* ----------------------------------------------------------------------------------------
*  END VIDEO  DESIGN
* ----------------------------------------------------------------------------------------
*/
/*
* ----------------------------------------------------------------------------------------
* 03.END HOME DESIGN
* ----------------------------------------------------------------------------------------
*/


/**************************************
 * 03.START ABOUT DESIGN
 *************************************/
.atf-about-content h2{
	color: var(--thm-black);
	font-size:50px;
	line-height:1.2;
	letter-spacing:-2px;
}
.atf-about-list-content h3 {
	margin: 20px 0;
}
.atf-about-list-content ul li {
	line-height: 30px;
	font-size: 16px;
	font-weight:500;
}
.atf-about-list-content li::before {
	content: "\f336";
	color: var(--thm-color);
	font-family: "Font Awesome 7 Pro";
	font-weight: 300;
	font-size: 16px;
	float: left;
	margin-right: 15px;
}
.atf-hover-thumb {
  overflow: hidden;
  border-radius: 20px;
}
.atf-hover-thumb img {
	border-radius: 20px;
	width: 100%;
	transition: 1.3s;
}
.atf-pricing-content:hover .atf-hover-thumb img {
  transform: scale(1.2);
}
.atf-single-portfolio:hover .atf-hover-thumb img {
  transform: scale(1.2);
}
.our-team:hover .atf-hover-thumb img {
  transform: scale(1.2);
}
.atf-post-single:hover .atf-hover-thumb img {
  transform: scale(1.2);
}
/**************************************
 *  03. END ABOUT DESIGN
 *************************************/
/*
* ----------------------------------------------------------------------------------------
* 04. START CLASSES DESIGN
* ----------------------------------------------------------------------------------------
*/
#classes{
    background:var(--thm-bg);
    background-size: 10px 10px;
    font-family: var(--thm-font);
    box-shadow: 7px 7px 5px rgba(9,132,227,0.1);
}
.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
	color: var(--thm-white);
	background: var(--thm-color);
	border-radius: 7px;
	transition:all 0.3s ease-in-out;
}
.nav-tabs .nav-link:focus, .nav-tabs .nav-link:hover {
	border: none !important;
	color: var(--thm-white);
	background: var(--thm-color);
	border-radius: 7px;
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
}
.nav-fill .nav-item {
	font-size: 22px;
	font-family: var(--thm-font);
	font-weight: 500;
	text-transform: uppercase;
	margin-right: 10px;
	color: var(--thm-black);
}
.nav-tabs .nav-link {
	border: none !important;
}
.nav-tabs {
	border-bottom: none !important;
	color:var(--thm-black);
}
.class-img img{
	border-radius:20px;}
/*
* ----------------------------------------------------------------------------------------
* 04. END CLASSES DESIGN
* ----------------------------------------------------------------------------------------
*/

/**************************************
 * 05. START PORTFOLIO DESIGN
 *************************************/
#portfolio {
    position: relative;
	overflow: hidden;
}
.atf-portfolio-area .portfolio-filter button {
	font-size: 14px;
	margin-right: 10px;
	overflow: hidden;
	text-transform: uppercase;
	display: inline-block;
	padding: 8px 15px;
	transition: 0.4s;
	outline: none;
	-webkit-transition: 0.4s;
	-ms-transition: 0.4s;
	border-radius: 4px;
	font-weight: 500;
	letter-spacing: 0.4px;
	background: var(--thm-f6);
	color: var(--thm-black);
}
.atf-portfolio-area .portfolio-filter button:hover,
.atf-portfolio-area .portfolio-filter button.active {
	color: var(--thm-white);
	background: var(--thm-color);
}
.atf-single-portfolio {
	background: linear-gradient(transparent, #ff0043, #dfdadb);
	font-family: var(--thm-font);
	overflow: hidden;
	position: relative;
	margin: 10px;
	border-radius: 20px;
}
.atf-single-portfolio img{
    width: 100%;
    height: auto;
	border-radius:20px;
}
.atf-single-portfolio .atf-portfolio-content {
	background-image: repeating-radial-gradient(circle at 25% 25%, #fff 19%, rgba(255,255,255,0.75) 20%, rgba(255,255,255,0.8) 34%, #fff 35%);
	background-size: 50px 50px;
	text-align: center;
	transform: translateX(-120%) rotate(-90deg);
	position: absolute;
	top: 8px;
	left: 8px;
	bottom: 8px;
	right: 8px;
	transition: transform 0.5s cubic-bezier(0.18, 0.89, 0.32, 1.28);
	border-radius:20px;
}
.atf-single-portfolio:hover .atf-portfolio-content{ transform: translateX(0) rotate(0); }
.atf-single-portfolio .atf-portfolio-single-content{
    width: 100%;
    padding: 0 15px;
    filter: blur(5px);
    transform: translateY(-50%);
    position: absolute;
    left: 0;
    top: 50%;
    transition: all 0.3s ease 0.4s;
}
.atf-single-portfolio:hover .atf-portfolio-single-content{ filter: blur(0); }
.atf-single-portfolio .atf-portfolio-title {
	color: var(--thm-black);
	font-size: 22px;
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 10px;
}
.atf-single-portfolio .atf-portfolio-post {
	color: var(--thm-black);
	font-size: 16px;
	font-weight: 400;
	text-transform: capitalize;
	letter-spacing: 1px;
	display: inline-block;
	margin: 0 0 15px;
}
.atf-single-portfolio .atf-portfolio-icon{
    padding: 0;
    margin: 0;
    list-style: none;
}
.atf-single-portfolio .atf-portfolio-icon li{
    margin: 0 3px;
    display: inline-block;
}
.atf-single-portfolio .atf-portfolio-icon li a {
	color: var(--thm-white);
	background-color: var(--thm-black);
	font-size: 16px;
	line-height: 45px;
	height: 45px;
	width: 45px;
	border-radius: 0 50% 50%;
	display: block;
	transition: all 0.3s ease 0s;
}
.atf-single-portfolio .atf-portfolio-icon li a:hover{
    color: var(--thm-white);
    background-color: var(--thm-color);
    box-shadow: 3px 3px 0 0 rgba(0, 0,0, 0.25);
}

/**************************************
 * 05. END PORTFOLIO DESIGN
 *************************************/
 /**************************************
 * 06.START SERVICE DESIGN
 *************************************/
.atf-single-services {
	box-shadow: 0 0 12px rgba(0,0,0,0.1);
	-webkit-box-shadow: 0 0 12px rgba(0,0,0,0.1);
	padding: 30px 35px;
	border-radius: 20px;
	background: var(--thm-f6);
}
.atf-services-icon {
	display: inline-block;
	transition: .5s ease;
	width: 80px;
}
.atf-services-text h3 {
	padding-top: 20px;
	color: var(--thm-color);
	font-weight: 700;
	letter-spacing: 1px;
	transition: all 0.3s ease-in-out;
}
.atf-services-text p{
	padding: 15px;
}
.atf-single-services:hover .atf-services-text h3{
	color: var(--thm-base);
	cursor:pointer;
}
.atf-single-services:hover .atf-services-icon {
	transform: translateY(-6px);
}

/**************************************
 * 06. END SERVICE DESIGN
 *************************************/

 /*
* ----------------------------------------------------------------------------------------
* 07.START PRICING DESIGN
* ----------------------------------------------------------------------------------------
*/
#pricing{
	background:var(--thm-f6);
}
.atf-single-pricing img{
	border-radius:20px;
}
.atf-single-pricing h3 {
	margin: 20px 0 15px;
}
.atf-single-pricing .description {
	margin: 0px 0 20px;
}
.atf-single-pricing strong{font-size:22px;}
/*
* ----------------------------------------------------------------------------------------
* 7.END PRICING DESIGN
* ----------------------------------------------------------------------------------------
*/

 /**************************************
 * 08. START Team DESIGN
 *************************************/
.our-team {
	box-shadow: 0 0 15px rgba(0,0,0,0.1);
	transition: all 0.30s linear 0s;
	border-radius: 20px;
	padding: 10px;
}
.our-team img {
	width: 100%;
	border-radius: 20px;
	transition: all 0.30s linear 0s;
}
.our-team .team-prof h3 {
	font-size: 22px;
	font-weight: 600;
	text-transform: capitalize;
}
.our-team .team-prof span {
	font-size: 14px;
	display: block;
	margin-bottom: 15px;
	text-transform: capitalize;
}
.our-team:hover{
    -webkit-box-shadow: 0 0 15px rgba(0,0,0,0.2);
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
}
.team-prof {
	padding: 20px 20px;
}
.our-team p{
	padding: 0px 15px 20px;
}
.our-team .social-links li{
    display: inline-block;
    margin-right: 10px;
}
.our-team .social-links li a {
	display: block;
	width: 40px;
	height: 40px;
	line-height: 40px;
	border-radius: 8%;
	font-size: 20px;
	color:  var(--thm-black);
	border: 1px solid #f5f5f6;
	transition: all 0.3s ease 0s;
}
.our-team .social-links li .fa-x-twitter:hover{
    background: var(--thm-color);
    border-color: var(--thm-color);
	color:  var(--thm-white);
}
.our-team .social-links li .fa-google-plus:hover{
    background: var(--thm-color);
    border-color: var(--thm-color);
	color:  var(--thm-white);
}
.our-team .social-links li .fa-linkedin:hover{
    background: var(--thm-color);
    border-color: var(--thm-color);
	color:  var(--thm-white);
}
.our-team .social-links li .fa-facebook:hover{
    background: var(--thm-color);
    border-color: var(--thm-color);
	color:  var(--thm-white);
}
@media only screen and (max-width: 991px){
    .our-team{ margin-bottom:25px; }
}
 
 /**************************************
 * 08. End Team DESIGN
 *************************************/
 /*
* ----------------------------------------------------------------------------------------
* 09. START COUNTER DESIGN
* ----------------------------------------------------------------------------------------
*/	
.atf-counter {
	color: var(--thm-white);
	font-family: var(--thm-font);
	text-align: center;
	padding: 25px;
	margin: 0 auto;
	box-shadow: 5px 5px 14px rgba(0,0,0,0.1);
	-webkit-box-shadow: 5px 5px 14px rgba(0,0,0,0.1);
	background: var(--thm-white);
	border-radius: 20px;
}
.atf-counter .atf-counter-value {
	color: var(--thm-color);
	font-size: 50px;
	font-weight: 700;
	display: inline-block;
	line-height: 1;
}
.atf-counter h3 {
	font-size: 22px;
	font-weight: 600;
	text-transform: capitalize;
	margin: 20px 0;
}
.atf-counter .atf-counter-icon {
	color: var(--thm-color);
	font-size: 35px;
}
.atf-counter .atf-counter-value{ color: var(--thm-color); }
@media screen and (max-width:991px){
    .atf-counter{ margin-bottom: 25px; }
}
/*
* ------------------------------------
*  09. END COUNTER DESIGN
* -------------------------------------
*/


 /**************************************
 * 10. START TESTIMONIAL DESIGN
 *************************************/
.atf-testimonial-single{
	 gap:50px;
}
.atf-testimonial-single .atf-testimonial-pic {
	width: 100%;
    height: auto;
}
.atf-testimonial-single .atf-testimonial-pic img {
	border-radius: 20px;
}
.atf-testimonial-single .atf-testimonial-description {
	font-size: 15px;
	color: var(--thm-p);
	position: relative;
	padding-top: 30px;
}
.atf-testimonial-single .atf-testimonial-description::before {
	content: "\f10d";
	font-family: "Font Awesome 7 Free";
	font-weight: 900;
	position: absolute;
	top: -20px;
	left: 0px;
	font-size: 25px;
	color: var(--thm-color);
}
.atf-testimonial-single .atf-testimonial-title{
    font-size: 22px;
    color: var(--thm-color);
    text-transform: capitalize;
}
.atf-testimonial-single .atf-testimonial-post{
    display: block;
    font-size: 14px;
	margin-top:10px;
}
.atf-testimonial-icon{ color :var(--thm-color);}

@media only screen and (max-width: 767px){
    .atf-testimonial-single{
        padding: 0;
        border: none;
    }
	.atf-testimonial-single{
		gap:0;
	}
	.atf-testimonial-single.d-flex.align-items-center{
		display:inherit;
	}
    .atf-testimonial-single .atf-testimonial-pic{
       display:none;
    }
    .atf-testimonial-single .atf-testimonial-description{
        margin-top: 15px;
    }
}
 /**************************************
 * 10. END TESTIMONIAL DESIGN
 *************************************/
 /**************************************
 * 11. START BLOG DESIGN
 *************************************/
.atf-post-single{
    padding-right:20px;
}
.atf-post-review {
	gap: 20px;
}
.atf-post-single img{
    width: 100%;
    height: auto;
}
.atf-post-date {
	gap: 15px;
	padding: 8px 15px;
	text-align: center;
	background: var(--thm-black);
	font-size: 26px;
	color: var(--thm-white);
	transition: background 0.20s linear 0s;
	display: inline-block;
}
.atf-post-date small{
    display:block;
    margin-bottom:10px;
    font-size: 14px;
    text-transform: capitalize;
}
.atf-post-single .atf-post-date small:before{
    content:"";
    display:block;
    margin-bottom:5px;
    border-top:1px solid var(--thm-white);
}
.atf-post-single:hover .atf-post-date{
    background:var(--thm-color);
}
.atf-post-single .atf-post-title a {
	font-size: 22px;
	color: var(--thm-black);
	text-transform: capitalize;
	margin: 15px 0 10px;
	display: block;
	transition: all 0.3s ease-in-out;
}
.atf-post-single .atf-post-title a:hover  {
	color: var(--thm-color);
	text-decoration: none;
}
.atf-post-comment{
    margin: 0;
    list-style:none;
}
.atf-post-comment li a{
    color:var(--thm-black);
    text-transform:capitalize;
}
.atf-post-comment li a:before{
    content:"|";
    margin:0 5px 0 5px;
    color:var(--thm-black);
}
@media only screen and (max-width: 480px) {
    .atf-post-single{
        padding: 0;
    }
}
/**************************************
 * 11. END BLOG DESIGN
 *************************************/
 /**************************************
 * 12. START HOT DEAL DESIGN
 *************************************/
.atf-hot-deal-area {
	position:relative;
}
.atf-hot-deal-area::before {
	position: absolute;
	content: '';
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	right: 0;
	background: rgba(0,0,0,0.6);
}
.atf-hot-deal-content {
    text-align: center;
    position: relative;
    z-index: 1;
}
.atf-hot-deal-content .atf-sub-title {
	display: block;
	font-size: 16px;
	margin-bottom: 15px;
	color: var(--thm-white);
	background: rgba(225,225,225,0.34);
	display: inline-block;
	padding: 5px 12px;
	border-radius: 8px;
}
.atf-hot-deal-content h2 {
    font-size: 50px;
    line-height: 1.3;
    margin-bottom: 25px;
	letter-spacing:-2px;
	color: var(--thm-white);
}
.atf-hot-deal-content #atf-timer {
	gap: 20px;
	
}
.atf-hot-deal-content #atf-timer div {
	width: 100px;
	border-radius: 5px;
	color: var(--thm-base);
	background-color: #f0f0fa;
	font-size: 35px;
	font-weight: 700;
	line-height: 1px;
	padding: 40px;
}

.atf-hot-deal-content #atf-timer div span {
    display: block;
    margin-top: 35px;
    color: var(--thm-color);
    font-size: 16px;
    font-weight: 600
}
 /**************************************
 * 12. END HOT DEAL DESIGN
 *************************************/
 /**************************************
 * 13. START CONTACT DESIGN
 *************************************/
#contact {
	position: relative;
	padding-bottom: 0;
	margin-top: -270px;
}
.atf-contact-area {
	position: absolute;
	top: auto;
	left: auto;
	right: auto;
	bottom: -270px;
}
.atf-contact-border {
	box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
	-webkit-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
	padding: 45px;
	background: var(--thm-base);
	border-radius: 20px;
}
/* Contact Address */
.atf-contact-details {
	display: flex;
	align-items: center;
	transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	margin-bottom: 20px;
	padding-top: 10px;
}
.atf-contact-icon {
	font-size: 20px;
	width: 60px;
	height: 60px;
	line-height: 60px;
	color: var(--thm-white);
	text-align: center;
	border-radius: 5px;
	background: var(--thm-color);
	margin-right: 20px;
}
.atf-contact-details h4 {
	color: var(--thm-white);
}
.atf-contact-details p {
	color: var(--thm-white);
	font-size:16px;
}
/* contact Input */
.atf_contact_input {
	margin-bottom:20px;
}
.atf_contact_input input {
	width:100%;
	height:55px;
	-webkit-transition:all 0.3s ease-out;
	transition:all 0.3s ease-out;
	box-shadow: none;
	outline: none;
    border: 1px solid rgba(0, 0, 0, 0.1);
    width: 100%;
    font-size: 16px;
    border-radius: 5px;
    display: inline-block;
    padding-left: 15px;
}
.atf_contact_input textarea {
	width:100%;
	 border: 1px solid rgba(0, 0, 0, 0.1);
	height:120px;
	padding-top:15px;
	padding-left:15px;
	-webkit-transition:all 0.3s ease-out;
	transition:all 0.3s ease-out;
	box-shadow: none;
	outline: none;
}
.atf_contact_input textarea:hover, .atf_contact_input textarea:focus, .atf_contact_input input:hover, .atf_contact_input input:focus {
	box-shadow: none;
    outline: 0 none;
    border-color: inherit;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--thm-color);
}
.form-message{
	color: var(--thm-white);
}
.atf-contact-btn .atf-themes-btn {
	color: var(--thm-white);
	width:100%;
	letter-spacing:0;
}
.atf-contact-btn:hover .atf-themes-btn{background: var(--thm-white);	color: var(--thm-base);}
 /**************************************
 * 13. END CONTACT DESIGN
 *************************************/
/*
* ----------------------------------------------------------------------------------------
* START MAP DESIGN
* ----------------------------------------------------------------------------------------
*/
#atf-map-area iframe {
    width: 100%;
    height: 500px;
	display:block;
}
/*
* ----------------------------------------------------------------------------------------
* END MAP DESIGN
* ----------------------------------------------------------------------------------------
*/
 /**************************************
 * 14. START FOOTER DESIGN
 *************************************/
.atf-footer-area {
    background: var(--thm-black);
	 padding: 30px 0;
}
.atf-footer-copyright p {
	color: var(--thm-white);
	transition:all 0.5s ease-out;
	transition:all 0.5s ease-out;
}
.atf-footer-copyright a{
	color:  var(--thm-white);
	text-decoration:underline;
	-webkit-transition:all 0.5s ease-out;
	transition:all 0.5s ease-out;	
}
.atf-footer-copyright a:hover{
	color:  var(--thm-color);	
}
.atf-footer-social ul li {
	display: inline-block;
	margin-right:15px;
}
.atf-footer-social ul li a {
	display: inline-block;
	height: 45px;
	width: 45px;
	line-height: 45px;
	text-align: center;
	background: var(--thm-white);
	color: var(--thm-color);
	font-size: 20px;
	border-radius: 50%;
	transition:all 0.5s ease-out;
	-webkit-transition:all 0.5s ease-out;
}
.atf-footer-social ul li a:hover{
	background: var(--thm-color);
	color: var(--thm-white);
}
 /**************************************
 * 14. END FOOTER DESIGN
 *************************************/
/* OWl DOT DESIGN */
.atf_owl_dot_slider .owl-dots {
    margin-top: 30px !important;
    text-align: center;
}
.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-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;
	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 */


