/*

	Author       : Theme-Family
	Template Name: Malik - Digital Agency HTML5 Landing Page Template
	Version      : 1.0.1

*/
/*=============================================================
    CSS INDEX
    =============================
    01. Typography
    02. Preloader
    03. Section Title
    04. Menu
    05. Slider
    06. About
    07. Services
    08. Work
    09. Team
    10. Skill
    11. Video
    12. Pricing
    13. Testmonial
    14. Counter
    15. Blog
    16. Client
    17. Contact
    18. Footer

  =============================================================*/
  

/* Typography */

body {
  font-family: var(--thm-font);
  font-weight: normal;
  color:var(--thm-p);
  font-size: 16px;
  line-height: 1.9;
}
:root {
	--thm-font: "Lato",sans-serif;
	--thm-font1: 'Raleway', sans-serif;
	--thm-base: linear-gradient(65deg, #e1b12c 0, #333333 100%);
	--thm-color: #e1b12c;
	--thm-white: #ffffff;
	--thm-black: #333333;
	--thm-f6: #F1F8FF;
	--thm-f3: #f3f3f3;
	--thm-text: #517291;
	--thm-p: #777777;
}
.bg-color {
	background-color:var(--thm-color);
}
.bg-base {
	background: var(--thm-base);
}
.bg-black {
	background-color: var(--thm-black);
}
.bg-f1{
	background:#f1f1f1! important;
}
.bg-f2{
	background:#f2f2f2! important;
}
.bg-f3{
	background:#f3f3f3! important;
}
.bg-f4{
	background:#f4f4f4! important;
}
.bg-f5{
	background:#f5f5f5! important;
}
.bg-f6 {
	background-color: #F1F8FF ! important;
}
h1, h2, h3, h4, h5, h6 {
	margin: 0;
	font-family: var(--thm-font1);
	color: var(--thm-black);
	font-weight:700;
	line-height:1.3;
}
h3{
	font-size:22px;
	line-height:1.4;
	font-weight:600;
	color: var(--thm-black);
}
a {
    text-decoration: none;
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
	color: var(--thm-black);
}
a:hover {
    color: var(--thm-color);
    text-decoration: none;
}
a:focus {
    outline: none;
    text-decoration: none;
}
a:active, a:hover {
  outline: 0 none;
}
img {max-width:100%;height:auto}
ul,
li {
    margin: 0;
    padding: 0;
	list-style: outside none none;
}
p {
	padding: 0;
	margin: 0;
	font-size: 16px;
	color: var(--thm-p);
	line-height: 1.9;
	font-family: var(--thm-font);
	font-weight: 400;
}
.fix {
	overflow:hidden
}
.floatleft {
	float:left
}
.floatright {
	float:right
}
.alignleft {
	float:left;
	margin-right:15px;
	margin-bottom: 15px
}
.alignright {
	float:right;
	margin-left:15px;
	margin-bottom: 15px
}
.aligncenter {
	display:block;
	margin:0 auto 15px
}
.border-left{
	border-left:2px solid var(--thm-color);
}
fieldset {
    border: 0 none;
    margin: 0 auto;
    padding: 0;
}
.clear{clear:both}
::-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;
}

/* Preloader*/

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: var(--thm-white);
  z-index: 999999;
}
.loader{
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--thm-color);
    margin: 20px auto;
    position: relative;
	top: 40%;
	overflow:hidden;
}
.main-circle{
    width: 10px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -5px;
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
}
.main-circle:before {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    background: #fff3e0;
}
.circle-0 {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
}
.circle-0:before {
    -webkit-animation: loading 2s infinite 0s ease-in-out;
    animation: loading 2s infinite 0s ease-in-out;
}
.circle-1 {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.circle-1:before {
    -webkit-animation: loading 2s infinite 0.1s ease-in-out;
    animation: loading 2s infinite 0.1s ease-in-out;
}
.circle-2 {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}
.circle-2:before {
    -webkit-animation: loading 2s infinite 0.2s ease-in-out;
    animation: loading 2s infinite 0.2s ease-in-out;
}
.circle-3 {
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}
.circle-3:before {
    -webkit-animation: loading 2s infinite 0.3s ease-in-out;
    animation: loading 2s infinite 0.3s ease-in-out;
}
.circle-4 {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}
.circle-4:before {
    -webkit-animation: loading 2s infinite 0.4s ease-in-out;
    animation: loading 2s infinite 0.4s ease-in-out;
}
.circle-5 {
    -webkit-transform: rotate(225deg);
    transform: rotate(225deg);
}
.circle-5:before {
    -webkit-animation: loading 2s infinite 0.5s ease-in-out;
    animation: loading 2s infinite 0.5s ease-in-out;
}
.circle-6 {
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
}
.circle-6:before {
    -webkit-animation: loading 2s infinite 0.6s ease-in-out;
    animation: loading 2s infinite 0.6s ease-in-out;
}
.circle-7 {
    -webkit-transform: rotate(315deg);
    transform: rotate(315deg);
}
.circle-7:before {
    -webkit-animation: loading 2s infinite 0.7s ease-in-out;
    animation: loading 2s infinite 0.7s ease-in-out;
}
.circle-8 {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
}
.circle-8:before {
    -webkit-animation: loading 2s infinite 0.8s ease-in-out;
    animation: loading 2s infinite 0.8s ease-in-out;
}
@-webkit-keyframes loading {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    50% {
        -webkit-transform: translateY(9rem);
        transform: translateY(9rem);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
@keyframes loading {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    50% {
        -webkit-transform: translateY(9rem);
        transform: translateY(9rem);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
/*----- Section Title -----*/
.atf-section-title .title {
	color: var(--thm-black);
	font-weight: 700;
	font-size: 50px;
	line-height: 1.2;
	letter-spacing: -2px;
	font-family: var(--thm-font1);
}
@media screen and (min-width: 1200px) and (max-width: 1399px){

	.atf-section-title .title{font-size:40px;}
}
@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.mb-50{
		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.mb-50{
		margin-bottom:20px;
	}
	.atf-section-title.mb-30 {
		margin-bottom: 20px;
	}
}
.atf-section-padding {
    padding-top: 120px;
    padding-bottom: 120px;
}
@media only screen and (max-width:991px) {
	.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-80.pb-60,
	.pt-120.pb-95,
	.atf-section-padding {
		padding-top: 60px;
		padding-bottom: 60px;
	}
}
.atf-section-title .divide::after {
	width: 10px;
	height: 10px;
	margin-left: 38px;
	transform: rotate(45deg);
	transform-origin: 0 100%;
	content: "";
	border-right: 1px solid var(--thm-color);
	display: block;
	background: var(--thm-white);
	margin-top: -7px;
	border-bottom: 1px solid var(--thm-color);
}
.atf-section-title .divide {
	height: 3px;
	width: 90px;
	margin: 25px 0 25px;
	border-bottom: 1px solid var(--thm-color);
	position: relative;
	display: inline-block;
}
.atf-section-title span {
	color:var(--thm-color);
}
.section_gray{
	background: #f8f8f8;
}
/*----- button -----*/
.atf-themes-btn {
	display: inline-block;
	padding: 16px 40px;
	background: rgb(245, 221, 156);
	font-size: 16px;
	color: var(--thm-black);
	transition: all 0.3s ease-out 0s;
	-webkit-transition: all 0.3s ease 0s;
	text-transform: capitalize;
	font-weight:600;
}
.atf-themes-btn:hover{
    background:var(--thm-color);
    color: var(--thm-white);
}
@media only screen and (max-width: 767px){
    .atf-themes-btn{ margin-bottom: 10px; }
}
  

/*
* ----------------------------------------------------------------------------------------
* 02.START BOOTSTRAP NAVIGATION OVERRIDES
* ----------------------------------------------------------------------------------------
*/
.atf_header_top{
	background-color: var(--thm-color);
	padding: 5px 0;
	color: rgba(255, 255, 255, 0.8);
	transition: all 0.3s ease 0s;
}
.atf_header-social{
	list-style-type: none;
	text-align:right;
}
.atf_header_top_left p:hover,
.atf_header_top i:hover{
	color:  var(--thm-white);
}
.atf_header-social li{
	display: inline-block;
	margin: 0 2px;
}
.atf_header_top i{
	padding-right: 5px;
	color: rgba(255, 255, 255, 0.8);
}
.atf_header_top p{
	margin-bottom: 0;color: rgba(255, 255, 255, 0.8);
}

.atf_header_top_left p,
.atf_header_top_right p{
	display: inline-block;
	
}

.atf_header_top_left p{
	padding-right: 12px;
}
.atf_header_top_right p{
	padding-left: 8px;
}
/* .atf-top-header {
	margin-top: 38px;
} */
#navigation.navbar-fixed {
	margin-top: 0;
}
.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;
    opacity: .98;
    width: 100%;
    top: 0;
    /* -webkit-animation: fadeInDown 800ms;
    animation: fadeInDown 800ms; */
    -webkit-backface-visibility: hidden;
    border-radius: 0px;
   /*  background: var(--thm-color); */
	box-shadow: 0 0 40px rgba(0, 0, 0, 0.07);
}
#navigation {
	padding: 10px 0 0px;
	/* border-bottom: 1px solid rgb(247, 243, 243 , 0.1);
	 background-color: transparent;  */
}
#navigation.navbar-fixed {
	padding-top: 8px;
	padding-bottom: 8px;
}
.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: 400;
	text-transform: capitalize;
	font-family: var(--thm-font);
	transition: .5s;
	font-size: 17px;
	padding: 24px 0 26px;
	border-bottom: 1px solid transparent;
	display: block;
}

#navigation.navbar-fixed #main-menu ul li a{
	color: var(--thm-white);
	padding: 22px 0 22px;
}
#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);
	/* background: url(../img/3.png);
	background-position:center;
	background-repeat:no-repeat; */
}
#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;
}
#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;
}
.bg-navbar {
	background: var(--thm-base);
	border-radius: 4px;
	padding: 0 25px 0 15px;
}
/*-------------------------------
# dropdwon menu 
--------------------------------*/
#navigation #main-menu ul li ul,
#navigation #main-menu ul li ul li ul {
	background: var(--thm-black);
	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;
}


@media only screen and (max-width:767px) { 
  .navbar-brand {
    padding-top: 20px;
  }
}
.atf-menu-btn a {
	color: var(--thm-black) !important;
	padding: 10px 30px !important;
	-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;
	display: inline-block;
	border: none;
	overflow: clip;
	border-bottom: none !important;
}
.atf-menu-btn a:hover {	
	box-shadow:0 0 15px rgba(0,0,0,0.2);
	color: var(--thm-white) !important;
	
}
.arrow-btn.f-13 {
	font-size: 12px;
}
/*----- Slider -----*/
#home{
	position:relative;
	z-index:1;
}
.heading_wrapper {
  position: relative;
}
.atf-align-items-details {
	display: flex;
	align-items: center;
	min-height: 100%;
}
.heading_wrapper .text-wrapper {
  position: relative;
  display: inline-block;
  overflow: hidden;
}

.heading_wrapper .letter {
  display: inline-block;
  line-height: 1em;
}
.text-wrapper .hed_bg{
	color:var(--thm-color);
}
.atf_slider_area,
.single_slide,
.single-slide-item-table{
	height: 700px;
}
.single_slide{
	width: 100%;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	position: relative;
	z-index: 1;
}
.single_slide:after{
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: var(--thm-black);
    opacity: 0.6;
    z-index: -1;
}
.slider_item1 {
	background: url(../img/slider/1.jpg);
	background-size: cover;
	background-position: center center;
}
.slider_item2 {
    background: url(../img/slider/2.jpg);
	background-size: cover;
	background-position: center center;
}
.slider_item3 {
    background: url(../img/slider/3.jpg);
	background-size: cover;
	background-position: center center;

}
.slider_active .owl-nav .owl-next, .slider_active .owl-nav .owl-prev {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	text-align: center;
	color: var(--thm-white) !important;
	opacity: 1;
	font-size: 20px;
	transition: all 0.4s ease-in-out;
	width: 60px;
	height: 60px;
	line-height: 60px;
	border: 1px solid rgba(235, 240, 22, 0.13)!important;
	background: rgba(255,255,255,0.3) !important;
}
.slider_active .owl-nav .owl-prev {
	left: 0px;
}
.slider_active .owl-nav .owl-next{
	right: 0px;	
}

.slider_active .owl-nav .owl-next:hover,
.slider_active .owl-nav .owl-prev:hover {
    color: var(--thm-white)!important;
	background:var(--thm-color)!important;
	border: 1px solid var(--thm-color)!important;
}
.single-slide-item-table {
    display: table;
    width: 100%;
}
.single-slide-item-tablecell {
    display: table-cell;
    vertical-align: middle;
}
.silder_right {
	text-align: right;
}
.silder_center{
	text-align:center;
}
.silder_left{
	text-align:left;
}
.slider_content .silder_heading {
	color: var(--thm-white);
	font-size: 16px;
	margin-bottom: 15px;
	font-weight: 600;
	display: block;
	text-transform: uppercase;
}
.slider_content h1 {
	color: var(--thm-white);
	font-size: 60px;
	font-weight: 900;
	text-transform: uppercase;
	line-height: 1.1;
	letter-spacing: -2px;
}
.slider_content p {
	margin: 10px 0 25px;
	color: var(--thm-white);
	font-size: 18px;
}
@media only screen and (max-width : 991px) {
	.slider_content h1  {
		font-size:36px;
		letter-spacing:-1px;
	}
}
@media only screen and (max-width : 576px) {
	.slider_content h1  {
		font-size:28px;
		letter-spacing:0px;
	}
}
/* START HOME 2 */
#home{
	position:relative;
	z-index: 1;
}
.atf-hero-area {
    background-color: var(--thm-f6);
    height: 750px;
    overflow: hidden;
	z-index:1;
}
.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: rgba(0,0,0,0.5);
	opacity: 0.7;
	z-index: -1;
}
.atf-align-items-details {
	display: flex;
	align-items: center;
	min-height: 100%;
}
.atf-single-details{
	z-index:1;
}
.atf-single-details .title {
	color: var(--thm-white);
	text-transform: capitalize;
	font-size: 60px;
	line-height: 1.1;
	letter-spacing: -2px;
	text-shadow: 1px 1px 15px rgba(210, 154, 141, 0.1);
}
.atf-hero-area .atf-single-details p {
	font-size: 18px;
	font-weight: 400;
	color: var(--thm-white);
	margin: 25px 0 40px;
}

@media only screen and (max-width: 767px) {
	.atf-single-details .title{
		font-size:36px;
	}
	
}

@media screen and (max-width: 320px) and (min-width: 0px){
	.atf-single-details .title {
		font-size: 28px;
		line-height: 36px;
	}
}
/*----- Video css  -----*/
.atf-video-img {
	position: relative;
}
.atf-video-img .waves-box {
	position: absolute;
	left: 35%;
	top: 50%;
	transform: translate(-50%,-50%);
	z-index: 1;
}
.atf-video-img .iq-video {
	background: var(--thm-color);
	display: inline-block;
	width: 70px;
	height: 70px;
	text-align: center;
	font-size: 20px;
	color: var(--thm-white);
	border-radius: 100%;
	line-height: 53px;
	z-index: 1020;
	position: relative;
	border: 8px solid var(--thm-black);
}
.atf-video-img .iq-video i {
	margin-left: 3px;
}
.atf-video-img .iq-waves {
	position: absolute;
	left: -30px;
	top: -30px;
	z-index: 2;
}
.atf-video-img .iq-waves .wave-1 {
	-webkit-animation-delay: 0s;
	animation-delay: 0s;
}
.atf-video-img .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-img .iq-waves .wave-1 {
	-webkit-animation-delay: 0s;
	animation-delay: 0s;
}
.atf-video-img .iq-waves .wave-2 {
	-webkit-animation-delay: 1s;
	animation-delay: 1s;
}
.atf-video-img .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)";
	}
}

/*----- about css  -----*/
.single_about {
	text-align: center;
	padding: 30px;
	border: 1px solid #eee;
	transition: all 0.3s ease 0s;
	position: relative;
	z-index: 1;
	margin: 12px 0;
}
.single_about:after,
.single_about:before{
    content: "";
    position: absolute;
    top:0;
    left:0;
    right: 0;
    bottom: 0;
    transition:all 0.5s ease 0s;
}
.single_about:after{
    border-bottom: 1px solid var(--thm-color);
    border-top: 1px solid var(--thm-color);
    transform: scaleX(0);
    transform-origin: 0 100% 0;
    z-index: -1;
}
.single_about:before{
    border-left: 1px solid var(--thm-color);
    border-right: 1px solid var(--thm-color);
    transform: scaleY(0);
    transform-origin: 100% 0 0;
    z-index: -1;
}
.single_about:hover:after{
    transform: scaleX(1);
	opacity: 1;
}
.single_about:hover:before{
    transform: scaleY(1);
	opacity: 1;
}
.single_about .about_icon{
	margin-bottom: 17px;
}
.single_about .about_icon i {
	font-size: 45px;
	line-height: 35px;
	transition: all 0.3s ease 0s;
	color: var(--thm-color);
}
.single_about .about_content h3{
    margin-bottom: 15px;
	font-size: 22px;
	transition: all 0.3s ease-in-out 0s;
}
.single_about .about_content h3 a:hover{
	color: var(--thm-color);
}

@media screen and (max-width: 991px){
    .single_about{
        margin:20px 0;
    }
}

/**************************************
 * START GALLERY DESIGN
 *************************************/
#portfolio {
    position: relative;
	overflow: hidden;
}
#portfolio .atf-section-title .divide::after {
	background: var(--thm-f6);
}
.atf-portfolio-area .portfolio-filter button {
	font-size: 13px;
	margin: 0 15px 7px 0;
	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;
	color: var(--thm-black);
	box-shadow: none;
	border: 1px solid #ddd;
	background: transparent;
}
.atf-portfolio-area .portfolio-filter button:hover,
.atf-portfolio-area .portfolio-filter button.active {
	color: var(--thm-white);
	background: var(--thm-color);
}
.box{
    text-align: center;
    overflow: hidden;
    position: relative;
    z-index: 1;
	margin:10px;
} 
.box:before{
    content: '';
    background: repeating-linear-gradient(to right,rgba(0,0,0,0.4),rgba(0,0,0,0.4) 20px,transparent 20px,transparent 25px);
    height: 100%;
    width: 100%;
    opacity: 0;
    transform: skewY(30deg);
    position: absolute;
    left: 0;
    top: -100%;
    z-index: 1;
    transition: all 0.4s ease 0s;
}
.box:hover:before{
    opacity: 0.8;
    transform: skew(0);
    top: 0;
}
.box img{
    width: 100%;
    height: auto;
}
.box .box-content {
	background: linear-gradient(to right,transparent,var(--thm-color),var(--thm-color),var(--thm-color),transparent);
	width: 100%;
	padding: 20px 0 20px;
	opacity: 0;
	transform: scaleX(0);
	position: absolute;
	bottom: 10px;
	left: 0;
	z-index: 2;
	transition: all 0.4s ease 0s;
}
.box:hover .box-content{
    opacity: 1;
    transform: scaleX(1);
}
.box .title{
    color: var(--thm-white);
    font-size: 22px;
    font-weight: 600;
    text-transform: capitalize;
    margin: 0;
}
.box .post {
	color: var(--thm-white);
	font-size: 16px;
	display: block;
}
.box .icon {
	padding: 0;
	margin: 0;
	list-style: none;
	opacity: 0;
	transform: translateX(-50%) scaleX(0);
	position: absolute;
	top: 25px;
	left: 50%;
	z-index: 2;
	transition: all 0.4s ease 0s;
}
.box:hover .icon{
    opacity: 1;
    transform: translateX(-50%) scaleX(1);
}
.box .icon li{
    margin: 0 3px;
    display: inline-block;
}
.box .icon li a {
	color: var(--thm-white);
	background-color: var(--thm-color);
	font-size: 16px;
	line-height: 47px;
	width: 50px;
	height: 50px;
	display: block;
	position: relative;
	transition: all .5s ease 0s;
}
.box .icon li a:hover{ box-shadow: 0 0 10px #ff6363; }
@media only screen and (max-width:767px){
    .box{ margin: 0 0 25px; }
}
/**************************************
 * END GALLERY DESIGN
 *************************************/
/**************************************
 * Skill css
 *************************************/
.single_slider img {
	border-radius: 20px;
}
.af_img_slider{
	margin-top:35px;
}
.af_img_slider .owl-prev{
	left: 20px;
}
.af_img_slider .owl-next{
	right: 20px;
}
.af_img_slider .owl-prev, .af_img_slider .owl-next {
	position: absolute;
	top: 50%;
	width: 50px;
	height: 50px;
	line-height: 50px;
	background: var(--thm-white) !important;
	color: var(--thm-black) !important;
	border-radius: 50%;
	transition: 0.5s;
	transform: translateY(-50%);
}
.af_img_slider .owl-prev:hover,
.af_img_slider .owl-next:hover{
	background: var(--thm-color);
	color: var(--thm-white);
}
.progress-title {
	font-size: 22px;
	font-weight: 600;
	margin-bottom: 10px;
}
.progress {
	height: 8px;
	background: var(--thm-black);
	border-radius: 20px;
	box-shadow: 0 2px 2px var(--thm-black);
	overflow: visible !important;
	position: relative;
	margin-bottom: 20px;
}
.progress .progress-bar{
    border-radius: 20px;
    border:  1px solid var(--thm-color);
    -webkit-animation: animate-positive 2s;
    animation: animate-positive 2s;
}
.progress-bar{
	background:var(--thm-color);
	overflow: visible !important;
}
.progress .progress-value {
	width: 65px;
	height: 25px;
	line-height: 25px;
	font-size: 16px;
	color: var(--thm-black);
	border-radius: 0 0 15px 15px;
	border: 1px solid var(--thm-black);
	box-shadow: 0 2px 2px var(--thm-black);
	position: absolute;
	bottom: -25px;
	right: 10px;
	background: var(--thm-color);
}
@-webkit-keyframes animate-positive{
    0% { width: 0; }
}
@keyframes animate-positive{
    0% { width: 0; }
}

/*----- team css  -----*/
#team .atf-section-title .divide::after {
	background: var(--thm-f3);
}
#blog .atf-section-title .divide::after {
	background: var(--thm-f6);
}
.our-team{
    text-align: center;
    perspective: 50em;
    position: relative;
}
.our-team:after{
    content: "";
    display: block;
    background: #f77f00;
    position: absolute;
    top: 20px;
    left: 20px;
    bottom: 20px;
    right: 20px;
    opacity: 0;
    transform: rotateY(90deg);
    transform-origin: 0 0;
    transition: all 0.4s ease-in-out 0s;
}
.our-team:hover:after{
    transform: rotateY(0);
    opacity: 0.9;
}
.our-team img{
    width: 100%;
    height: auto;
}
.our-team .team-content{
    color: #eae2b7;
    position: absolute;
    top: 50%;
    left: 20px;
    right: 20px;
    opacity: 0;
    z-index: 1;
    transform: translate(10%, -50%);
    transition: all 0.2s ease-out;
}
.our-team:hover .team-content{
    opacity: 1;
    transform: translate(0, -50%);
    transition-delay: 0.2s;
}
.our-team .icon {
	font-size: 15px;
	margin-bottom: 20px;
	display: inline-block;
	background: var(--thm-white);
	border-radius: 50%;
	color: var(--thm-black);
	margin-right: 5px;
	transition: all 0.3s ease-in-out 0s;
	width: 45px;
	height: 45px;
	line-height: 45px;
}
.our-team .icon:hover{
	background:var(--thm-black);
	color:var(--thm-white);
}
.our-team .title{
    font-size: 22px;
    font-weight: 700;
    text-transform: capitalize;
    margin: 0 0 10px;
	color:var(--thm-white);
}
.our-team .post{
    display: block;
    font-size: 15px;
    font-weight: 600;
    font-style: italic;
}
@media only screen and (max-width:990px){
    .our-team{ margin-bottom:25px; }
}




/*----- service css -----*/

.single_service{
	margin:20px 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.single_service .title {
	font-size: 22px;
	font-weight: 600;
	transition: all 0.3s ease 0s;
}
.single_service:hover .title{
    color:var(--thm-color);
}
.single_service .description {
	font-size: 15px;
	margin: 20px 0 30px;
	z-index: 1;
}

.single_service .service-icon i{
    font-size: 70px;
    color: rgb(245, 221, 156);
    position: absolute;
    bottom: 10px;
    right: 10px;
    z-index: -1;
    transform: rotate(45deg) scale(1);
    transition: all 0.3s ease 0s;
}
.single_service:hover .service-icon i{
    transform: rotate(0deg) scale(0.8);
	color:var(--thm-color);
}

/*--------------------------------------------------------------
08. Newsletter
----------------------------------------------------------------*/
.atf-news-area {
  background-attachment: fixed;
  background: url(../img/bg/news-letter-bg.jpg);
  background-size: cover;
  background-position:center center;
 }

.atf-news-title {
  font-size: 36px;
  margin-bottom: 20px; 
  text-transform:capitalize;
}
.atf-news-form {
  display: flex;
  flex-wrap: wrap; 
}
.atf-news-form #subscriber-email {
	border: 1px solid #eaeaea;
	border-radius: 4px;
	padding: 0 20px;
	height: 66px;
	margin-right: 15px;
	outline: none;
	transition: all 0.3s ease;
	flex: 1;
	background-color: var(--thm-white);
}
.atf-news-form #subscriber-email:focus {
    border-color: var(--thm-color); }

.subscription-label {
	flex: none;
	width: 100%;
}
.subscription-success,
.subscription-error{
	font-size:16px;
}
.error {
  color: #ff453a; }

.valid {
  color: var(--thm-color); }
.atf-contact-area textarea {
	width: 100%;
	height: 150px;
}
.atf-contact-number-wrap{
	margin-left:25px;
}
.atf-contact-number {
  padding-left: 55px;
  position: relative; }
.atf-contact-number i {
    position: absolute;
    left: 0;
    font-size: 46px;
    top: 3px;
    color: var(--thm-color); }
.atf-contact-number h3 {
    font-size: 18px;
    margin-bottom: 8px; 
}
.atf-contact-number .atf-mobile-number {
    display: block;
    font-size: 24px;
    font-weight: 400;
    color: var(--thm-color); 
}

/*----- pricing css -----*/

.pricingTable{
    text-align: center;
    background: #e1b12c  ;
    padding-top: 5px;
    transition: all 0.5s ease-in-out 0s;
}
.pricingTable > .pricingTable-header{
    color:var(--thm-white);
    background: #273238;
    height: 190px;
    position: relative;
    transition: all 0.5s ease 0s;
}
.pricingTable > .pricingTable-header:after{
    content: "";
    border-bottom: 40px solid #e1b12c  ;
    border-left: 263px solid transparent;
    position: absolute;
    right:0px;
    bottom: 0px;
}
.pricingTable:hover .pricingTable-header{
    transition: all 0.5s ease 0s;
}
.pricingTable-header > .heading{
    display: block;
    padding: 20px 0;
}
.pricingTable-header > .heading > h3 {
	margin: 0;
	text-transform: uppercase;
	color: var(--thm-white);
	font-size: 28px;
	font-weight: 700;
}
.pricingTable-header > .price-value{
    display: block;
    font-size: 60px;
    line-height: 60px;
}
.pricingTable-header > .price-value > .mo{
    font-size: 14px;
    display: block;
    line-height: 0px;
    text-transform: uppercase;
}
.pricingTable-header > .price-value > .currency{
    font-size: 24px;
    margin-right: 4px;
    position: relative;
    bottom:30px;
}
.pricingTable > .pricingContent{
    text-transform: capitalize;
    color:var(--thm-white);
}
.pricingTable > .pricingContent > ul{
    list-style: none;
    padding: 0;
}
.pricingTable > .pricingContent > ul > li{
    padding: 15px 0;
    border-bottom: 1px solid var(--thm-white);
	font-weight: 500;
}
.pricingTable > .pricingContent > ul > li:last-child{
    border: 0px none;
}
.pricingTable-sign-up {
	padding: 40px 0;
	background: var(--thm-black);
}

.pricingTable-sign-up > .btn-block{
    width: 80%;
    margin: 0 auto;
    background: #273238;
    border:2px solid #fff !important;
    color:var(--thm-white);
    padding: 15px 12px;
    text-transform: uppercase;
    font-size: 18px;
}
.pricingTable-sign-up > .btn-block:hover{
    opacity: 0.9;
}
.pink{
    background: #ed687c;
}
.pink .pricingTable-header:after{
    border-bottom-color: #ed687c;
}
.orange{
    background: #e67e22;
}
.orange .pricingTable-header:after{
    border-bottom-color: #e67e22;
}
.blue{
    background: #3498db;
}
.blue .pricingTable-header:after{
    border-bottom-color: #3498db;
}
@media screen and (max-width: 1200px){
    .pricingTable > .pricingTable-header:after{
        border-left: 215px solid transparent;
    }
}
@media screen and (max-width: 990px){
    .pricingTable{
        margin-bottom: 20px;
    }
    .pricingTable > .pricingTable-header:after{
        border-left: 349px solid transparent;
    }
}
@media screen and (max-width: 480px){
    .pricingTable{
        overflow: hidden;
    }
    .pricingTable > .pricingTable-header:after {
        border-left: 459px solid rgba(0, 0, 0, 0);
    }
}

/*----- testimonial css  -----*/
.testimonial {
	background: #fff8e9;
	padding: 20px 40px 20px 70px;
	margin: 0 0px 60px;
	position: relative;
}
.testimonial:before{
    content: "";
    width: 0;
    height: 0;
    border-bottom: 50px solid #eee;
    border-left: 50px solid #fff ;
    box-shadow: 7px 7px 7px rgba(0, 0, 0, 0.3);
    position: absolute;
    top: 0;
    left: 0;
}
.testimonial .testimonial-title{
    font-size: 24px;
    font-weight:700;
    color:var(--thm-color);
    margin-bottom: 15px;
}
.testimonial .description{
    font-style: italic;
}
.testimonial .post{
    display: block;
    font-style: italic;
    font-weight: 700;
    color:var(--thm-color);
    margin-top: 10px;
}
.testimonial .pic{
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    position: absolute;
    bottom: -35px;
    right: 23px;
}
.testimonial .pic img{
    width: 100%;
    height: auto;
}
.testimonial.owl-theme .owl-controls{
    margin-top: 40px;
}
.testimonial.owl-theme .owl-controls .owl-buttons div{
    background: #3646b5;
    border-radius: 0;
    opacity: 1;
    padding: 5px 10px;
}
.testimonial.owl-prev:before,
.testimonial.owl-next:before{
    content: "\f053";
    font-family: 'FontAwesome';
    color: var(--thm-white);
}
.testimonial.owl-next:before{
    content: "\f054";
}
@media only screen and (max-width: 767px){
    .owl-theme .owl-controls{ margin-top: 20px; }
}
@media only screen and (max-width: 480px){
    .testimonial{
        margin: 0 10px 60px;
        text-align: center;
        padding: 20px 30px 20px 40px;
    }
}
@media only screen and (max-width: 479px){
    .testimonial{
        padding: 20px 25px 20px 25px;
    }
}

#testimonial-slider .owl-dots {
	text-align: center;
}
#testimonial-slider .owl-dots {
	text-align: center;
	bottom: -32px;
	left: 0;
	position: absolute;
	right: 0;
	margin-bottom: 15px;
}
#testimonial-slider .owl-dot{
	height: 13px;
	width: 13px;
	display: inline-block;
	margin: 0px 5px;
	border-radius: 50%;
	border: 2px solid #e1b12c ;
}
#testimonial-slider .owl-dot.active {
	background: #e1b12c ;
}



/*----- Blog css -----*/

.single_post {
	background: var(--thm-white);
}
.post-padding {
	padding: 20px;
}
.single_post .post-img{
    position: relative;
	overflow: hidden;
	text-align: center;
}
.single_post .post-img > a{
    display:inline-block;
}
.single_post .post-img img{
    max-width: 100%;
    height:auto;
	transition: .5s;
}
.single_post .post-img:before{
	transition: .5s;
	background-color: rgba(4, 155, 230, 0.5);
	opacity: 0;
	max-width: 100%;
	max-height:100%;
    content: "";
    position: absolute;	
	z-index: 1;
}
.single_post:hover .post-img:before{
	opacity: 1;
}
.single_post:hover  .post-img img{
	transform: scale(1.2);
}
.single_post .post-title {
	margin: 0px 0 10px;
}
.single_post .post-title > a{
    display: block;
    font-size: 22px;
    font-weight: 600;
    text-transform: capitalize;
	color:var(--thm-black);
	transition: all 0.3s ease-in-out 0s;
}
.single_post .post-title > a:hover,
.single_post .post-title > a:focus{
    text-decoration: none;
    color:var(--thm-color);
}
.single_post .post-bar{
    padding: 0;
    list-style: none;
}
.single_post .post-bar > li{
    display: inline-block;
}
.single_post .post-date, .single_post .author, .single_post .author > a {
	color: #373535;
	font-size: 12px;
	margin-right: 16px;
	text-transform: uppercase;
	font-weight: 600;
}
.single_post .post-date > i, .single_post .author > i {
	margin-right: 5px;
	color: var(--thm-color);
}
.single_post .author > a:hover{
    color:var(--thm-color);
}
.single_post .post-description{
    padding-top: 5px;
}
.post_btn_area{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: auto;	
	right: auto;	
	opacity: 0;
	transition: all 0.3s ease 0s;
	z-index: 100;	
}
.atf-blog-btn {
	margin-top: 20px;
}
.post_btn{
	padding: 0;
	margin: 0;
	width: 40px;
	height: 40px;
	line-height: 40px;
	font-size: 14px;
	text-align: center;
	position: absolute;
	right: 10px;	
	bottom: 10px;	
	border: 1px solid var(--thm-white);
	border-radius: 50%;
	color: var(--thm-white);
	z-index: 100;	
	transition: .5s;
}
.single_post:hover .post_btn_area{
	opacity: 1;
}
.post_btn:hover,
.post_btn:focus{
	color: var(--thm-color);
	background: var(--thm-white);
}
#blog_slider .owl-nav .owl-next, #blog_slider .owl-nav .owl-prev {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	text-align: center;
	color: var(--thm-white);
	opacity: 1;
	font-size: 20px;
	transition: all 0.4s ease-in-out;
	width: 50px;
	height: 50px;
	line-height: 48px;
	background: var(--thm-color);
	border-radius: 50%;
}
#blog_slider .owl-nav .owl-prev {
	left: -38px;
}
#blog_slider .owl-nav .owl-next{
	right: -38px;	
}

#blog_slider .owl-nav .owl-next:hover,
#blog_slider .owl-nav .owl-prev:hover {
    border-color: var(--thm-black);
    background: var(--thm-black);
    color: var(--thm-white);
}
/*----- Counter css -----*/

#counter{
	position: relative;
	padding: 80px 0;
	color: var(--thm-white);
	z-index:1;
}

#counter:after{
	content: '';
	width: 100%;
	height: 100%;
	top: 0;
	background: rgba(0, 0, 0, 0.8);
	position: absolute;
	z-index:-1;
}
.counter-items {
	position: relative;
	z-index: 10;
}
.counter_icon i {
	font-size: 50px;
	margin-bottom: 25px;
	color:var(--thm-color);
}
.counter {
	font-size: 36px;
	color: var(--thm-white);
	font-weight: 800;
	margin: 0;
	display: inline-block;
	padding: 0 10px;
	font-family: var(--thm-font);
}
.number-desc {
	font-weight: 700;
	text-transform: capitalize;
	font-size: 20px;
	margin: 0;
	margin-top: 10px;
	color: var(--thm-white);
}
/*
* ----------------------------------------------------------------------------------------
* .START CONTACT PAGES DESIGN
* ----------------------------------------------------------------------------------------
*/
.media-left {
	float: left;
	margin-right: 15px;
}
.single-address {
	margin-bottom: 25px;
}
.mb-none { margin-bottom: 0px }
.single-address i {
	font-size: 20px;
	background: var(--thm-color);
	color: var(--thm-white);
	width: 50px;
	height: 50px;
	border-radius: 50px;
	text-align: center;
	line-height: 50px;
	overflow: hidden;
}
.single-address i:hover{
	background:var(--thm-black);
	color:var(--thm-color);
	-webkit-transition: all 0.3s ease 0s;
            transition: all 0.3s ease 0s;
}
.single-address h2 {
	font-size: 18px;
	text-transform: capitalize;
	font-weight: 700;
}
.single-address p {
    margin-bottom: 0;
}
.form-control {
	background: #f9f9f9 none repeat scroll 0 0;
	border: 1px solid #eee;
	border-radius: 2px;
	box-shadow: none;
	color: var(--thm-black);
	height: 60px;
	margin-bottom: 20px;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	display: block;
}
.form-control:hover,
.form-control:focus {
    border: 1px solid var(--thm-color);
    box-shadow: none;
    outline: 0 none;
}
.description textarea { height: 220px }
.form-group  button { border: none }

#map .map-iframe {
    width: 100%;
    height: 450px;
    display: block;
}
/*
* ----------------------------------------------------------------------------------------
* .END CONTACT PAGES DESIGN
* ----------------------------------------------------------------------------------------
*/
/*----- Client css -----*/

.single_client a{
	display: block;
	transition: .5s;
}
.single_client img{
	border-radius:20px;
}
/*----- Footer css -----*/

#footer{
	background:var(--thm-black);
	padding: 25px 0;
	width: 100%;
}
#footer1{
	background:var(--thm-black);
}
.ftr_social_list li {
	display: inline-block;
	margin: 0 3px;
}
.ftr_social_list a {
    display: inline-block;
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 2.5;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    color: var(--thm-black);
    font-size: 15px;
	border-radius: 50%;
	position: relative;
	z-index: 1;
	background: var(--thm-white);
}
.ftr_social_list a:after{
	content: '';
	display: block;
	position: absolute;
	border-radius: 100%;
	width: 0;
	height: 0;
	transition: 0.3s;
	bottom: 0;
	left: 50%;	
	z-index: -1;
}
.ftr_social_list a:hover:after {
  width: 40px;
  height: 40px;
  margin-left: -20px;
}
.ftr_social_list a:hover{
	color: var(--thm-white);
}
.copyright p {
	color: var(--thm-white);
	font-size:18px;
}
.copyright a {
	color:var(--thm-white);
	text-decoration:underline;
	transition: all 0.3s ease-in-out 0s;
}
.copyright a:hover {
	color:var(--thm-color);
	text-decoration:inherit;
}
a.f_facebook:after{
    background: #5D82D1;
}
a.f_twitter:after{
    background: #40BFF5;
}
a.f_google:after{
    background: #EB5E4C;
}
a.f_linkedin:after{
    background: #238CC8;
}
a.f_youtube:after{
    background: #CC181E;
}
a.f_skype:after{
    background: #00AFF0;
}
.no_padding{
	padding: 0;
}
/*
* ----------------------------------------------------------------------------------------
* 14.START FOOTER DESIGN
* ----------------------------------------------------------------------------------------
*/
#footer{
	position:relative;
}
.atf-mailchamp-subscribe{
	position:relative;
}
.atf-mailchamp-subscribe .btn i {
	font-size: 18px;
	color: var(--thm-white);
}
.atf-mailchamp-subscribe .btn {
	position: absolute;
	right: 4px;
	background: transparent;
	box-shadow: none;
	top: 2px;
	background: var(--thm-color);
}
.atf-mailchamp-border{
	border-bottom:1px dashed var(--thm-white);
}
.atf-mailchamp-headding h2{
	font-size: 33px;
	color: var(--thm-white);
}
.atf-mailchamp-subscribe form input:focus {
	box-shadow: none;
	outline: 0 none;
	border-color: var(--thm-color);
}
.atf-mailchamp-subscribe form input {
	background: var(--thm-white);
	color: var(--thm-black);
	border: 1px solid #eee;
	width: 100%;
	height: 43px;
	padding-left: 15px;
	font-size: 14px;
	border-radius: 0;
}
.atf-mailchamp-subscribe  .form-group{
	margin-bottom:0;
}
.atf-mailchamp-subscribe .atf-themes-btn {
	position: absolute;
	right: 3px;
	padding: 5px 16px;
	top: 3px;
}
.atf-mailchamp-subscribe  .atf-themes-btn:hover {
	transform: translateY(-0px); 
}
.atf-mailchamp-subscribe .atf-subscription-label {
	color: var(--thm-white);
	display: block;
}
.atf-footer-boottom {
	padding: 35px 0;
	background: rgba(0,0,0, 0.4);
}
.atf-footer-box p {
    color: var(--thm-white);
    margin-bottom: 20px;
}
.atf-footer-box strong{
	font-weight:700;
}
.atf-footer-social-icon a i:hover {
	background: var(--thm-white);
	color: var(--thm-black);
	transition: all 0.3s ease-in-out 0s;
	-webkit-transition: all 0.3s ease-in-out 0s;
}
.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-color);
}
.atf-footer-area .atf-footer-link {
	position: relative;
}
.atf-footer-area .atf-footer-link::after {
	content: '';
	position: absolute;
	left: 20px;
	top: 35px;
	background: var(--thm-white);
	width: 45px;
	height: 2px;
}
.atf-footer-area .atf-footer-link::before {
	content: '';
	position: absolute;
	left: 1px;
	top: 33px;
	background: var(--thm-white);
	width: 11px;
	height: 5px;
}
.atf-footer-link h3 {
	margin-bottom: 50px;
	font-size: 22px;
	color: var(--thm-white);
}
.atf-footer-link .atf-list-menu li a {
	color: var(--thm-white);
	margin-bottom: 10px;
	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-color);
	text-decoration:underline;
}
.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-link p{
	color: var(--thm-white);
}
.atf-footer-boottom  p{
	color: var(--thm-white);
}
.atf-footer-boottom a {
	color: var(--thm-color);
	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-color);
	text-decoration:inherit;
}
.atf-payment-link img{
	margin-right:6px;
}
.atf-footer-post {
	display: flex;
	margin-bottom: 15px;
}
.atf-footer-post .atf-footer-post-thumb {
	flex: none;
	margin-right: 15px;
	width: 80px;
}
.atf-footer-post  .atf-footer-post-title a{
	color:var(--thm-white);
	transition: all 0.3s ease-in-out 0s;
}
.atf-footer-post .atf-footer-post-title {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 4px;
	color: var(--thm-white);
	transition: all 0.3s ease-in-out 0s;
	line-height: 1.3;
}
.atf-footer-post  .atf-footer-post-title a:hover {
	color:var(--thm-color);
}
.atf-footer-post  .atf-footer-post-date {
	font-size: 13px;
	line-height: 1.6em;
	color:rgba(225,255,255,0.7);
}
.form-message {
	margin-top:5px;
	color:var(--thm-black);
}
/*
* ----------------------------------------------------------------------------------------
* START MAP DESIGN
* ----------------------------------------------------------------------------------------
*/
#atf-map-area iframe {
	width: 100%;
	height: 150px;
}
/*
* ----------------------------------------------------------------------------------------
* END MAP DESIGN
* ----------------------------------------------------------------------------------------
*/


@media only screen and (max-width: 991px){
	#main-menu{
		display: none;
	}
	.slicknav_nav {
		background: var(--thm-color);
		width: 200px;
		height: 250px;
		overflow-y: scroll;
		float: right;
	}
/* 	.atf-top-header {
		margin-top: 70px;
	} */
	#main-menu ul li a .arrow-btn{
		display:none;
	}
	#mobile_menu {
		display: block;
		position: absolute;
		right: 0;
		top: -2px;
		z-index: 9999;
	}
	.slicknav_parent ul {
		background: transparent !important;
	}
	.slicknav_parent.slicknav_open ul li a {
		color: var(--thm-white) !important;
	}
	.site-logo{
		margin-bottom:16px;
	}
	.slicknav_nav{
		background-color: var(--thm-black);
		float:right;
	}
	#navigation #mobile_menu li a{
		color: var(--thm-white);
		font-weight: 400;
		font-family: var(--thm-font);
		font-size:17px;
	}
	#navigation #mobile_menu li li a{
		color: var(--thm-black);
	}
	#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-white);
	}
	.slicknav_nav a{
		padding: 5px 0px;
		transition: .5s;
	}
	#navigation #mobile_menu li a:hover,
	#navigation #mobile_menu li a:focus{
		color: var(--thm-color);
	}
	.slicknav_btn {
		top: 18px;
	}
	
}
@media only screen and (max-width: 575px){
	
	.slicknav_btn {
		margin: 0;
		text-decoration: none;
		position: absolute;
		top: 30px;
		right: 17px;
	}
	
}
/* 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 */
