/*
    Template Name: Portffolio - Personal Resume Or CV HTML Website Template
    Author: Themesbazer
    Description: This is CV template any type of Resume,Portfolio,Personal etc.
    Version: 1.0

-----------------------------------------------------------------------------------
*/
/*=============================================================
    CSS INDEX
    =============================
    01. GENERAL STYLE (BODY, LINK COLOR,COMMON CLASSES, SECTION TITLE, PRELOADER, SCROLL TO TOP, BTN, SECTION PADDING etc)
    02. START BOOTSTRAP NAVIGATION OVERRIDES
    03. START HOME DESIGN
    04.	START FEATURE DESIGN 
    05. START ABOUT DESIGN  
	06. START GALLERY DESIGN
	07. START PROGRESS DESIGN
		----START VIDEO DESIGN
	08. START SERVICE DESIGN
	09. START CLIENT DESIGN
		---START PARTNER DESIGN
		---START NEWSLETTER DESIGN
	10. START BLOG DESIGN
		---START BREADCRUMB DESIGN
		---START BLOG DETAILS DESIGN
		---START SIDEBAR DESIGN 
	11.	START CONTACT DESIGN	
	02. START FOOTER DESIGN
		---OWL DOT & NAV DESIGN
  =============================================================*/
/*----------------------------------------*/
/*  01. GENERAL STYLE
/*----------------------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}
a,
button,
p,
input,
select,
textarea,
li,
.transition-3 {
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
} 
/* LINK COLOR */
:root {
  /**
  @font family declaration
  */
  --atf-ff-body: "Inter", serif;
  --atf-ff-heading: "Inter", serif;
  --atf-ff-fontawesome:  "Font Awesome 6 Free";
  /**
  @color declaration
  */
  --atf-thm-white: #ffffff;
  --atf-thm-black: #000000;
  --atf-thm-color: #f4524d;
  --atf-thm-base: #f11f18;
  --atf-grey-1: #f9f9f9;
  --atf-grey-2: #f5f5f5;
  --atf-grey-3: #f6f6f6;
  --atf-grey-4: #F1F8FF;
  --atf-text-body: #777777;
  --atf-border-1: #dddddd;
  --atf-box-shadow:0 0 15px rgba(0,0,0,0.2);
}
body {
	font-size: 16px;
	line-height: 28px;
	font-weight: normal;
	color: var(--atf-text-body);
	font-family: var(--atf-ff-body);
	letter-spacing: -0.03em;
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0px;
  font-weight: 700;
  line-height: 1.3;
  -webkit-transition: color 0.3s ease-out;
  -moz-transition: color 0.3s ease-out;
  -ms-transition: color 0.3s ease-out;
  -o-transition: color 0.3s ease-out;
  transition: color 0.3s ease-out;
  color: var(--atf-thm-black);
}

h1 {
  font-size: 40px;
   font-family: var(--atf-ff-heading);
}
h2 {
  font-size: 36px;
  font-family: var(--atf-ff-heading);
}

h3 {
  font-size: 28px;
  font-family: var(--atf-ff-body);
}

h4 {
  font-size: 20px;
  font-family: var(--atf-ff-body);
  line-height:1.4;
  
}
@media only screen and (max-width : 1200px){
	h4{font-size: 18px;}
}
h5 {
  font-size: 20px;
  font-family: var(--atf-ff-body);
}

h6 {
  font-size: 16px;
  font-family: var(--atf-ff-body);
}

ul {
  margin: 0px;
  padding: 0px;
  list-style: none
}

p {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 0;
  line-height: 1.8;
  font-family: var(--atf-ff-body);
  color: var(--atf-text-body);
}
dl, ol, ul {
	padding: 0;
	margin: 0;
	list-style: none;
}
a:not([href]):not([class]),
a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

a:focus,
.button:focus {
  text-decoration: none;
  outline: none;
}

a:focus,
a:hover {
  color: inherit;
  text-decoration: none;
}

a,
button {
  color: inherit;
  outline: none;
  border: none;
  background: transparent;
}

button:hover {
  cursor: pointer;
}

button:focus {
  outline: 0;
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

input[type=text],
input[type=email],
input[type=tel],
input[type=number],
input[type=password],
input[type=url],
textarea {
  outline: none;
  height: 56px;
  width: 100%;
  line-height: 56px;
  font-size: 14px;
  padding-left: 15px;
  padding-right: 26px;
  color: var(--atf-thm-black);
  border: 1px solid rgba(0,0,0,0.1);
  background-color: transparent;
}
input[type=text]::-webkit-input-placeholder,
input[type=email]::-webkit-input-placeholder,
input[type=tel]::-webkit-input-placeholder,
input[type=number]::-webkit-input-placeholder,
input[type=password]::-webkit-input-placeholder,
input[type=url]::-webkit-input-placeholder,
textarea::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: var(--atf-text-body);
  font-size: 16px;
}
input[type=text]::-moz-placeholder,
input[type=email]::-moz-placeholder,
input[type=tel]::-moz-placeholder,
input[type=number]::-moz-placeholder,
input[type=password]::-moz-placeholder,
input[type=url]::-moz-placeholder,
textarea::-moz-placeholder { /* Firefox 19+ */
  color: var(--atf-text-body);
  font-size: 16px;
}
input[type=text]:-moz-placeholder,
input[type=email]:-moz-placeholder,
input[type=tel]:-moz-placeholder,
input[type=number]:-moz-placeholder,
input[type=password]:-moz-placeholder,
input[type=url]:-moz-placeholder,
textarea:-moz-placeholder { /* Firefox 4-18 */
  color: var(--atf-text-body);
  font-size: 16px;
}
input[type=text]:-ms-input-placeholder,
input[type=email]:-ms-input-placeholder,
input[type=tel]:-ms-input-placeholder,
input[type=number]:-ms-input-placeholder,
input[type=password]:-ms-input-placeholder,
input[type=url]:-ms-input-placeholder,
textarea:-ms-input-placeholder { /* IE 10+  Edge*/
  color: var(--atf-text-body);
  font-size: 16px;
}
input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=tel]::placeholder,
input[type=number]::placeholder,
input[type=password]::placeholder,
input[type=url]::placeholder,
textarea::placeholder { /* MODERN BROWSER */
  color: var(--atf-text-body);
  font-size: 16px;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
input[type=number]:focus,
input[type=password]:focus,
input[type=url]:focus,
textarea:focus {
  border: 1px solid var(--atf-thm-white);
}
input[type=text]:focus::placeholder,
input[type=email]:focus::placeholder,
input[type=tel]:focus::placeholder,
input[type=number]:focus::placeholder,
input[type=password]:focus::placeholder,
input[type=url]:focus::placeholder,
textarea:focus::placeholder {
  opacity: 0;
}

textarea {
  line-height: 1.4;
  padding-top: 17px;
  padding-bottom: 17px;
}

input[type=color] {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background: none;
  border: 0;
  cursor: pointer;
  height: 100%;
  width: 100%;
  padding: 0;
  border-radius: 50%;
}

*::-moz-selection {
  background: var(--atf-thm-color);
  color: var(--atf-thm-white);
  text-shadow: none;
}

::-moz-selection {
  background: var(--atf-thm-color);
  color: var(--atf-thm-white);
  text-shadow: none;
}

::selection {
  background: var(--atf-thm-color);
  color: var(--atf-thm-white);
  text-shadow: none;
}

*::-moz-placeholder {
  color: var(--atf-thm-color);
  font-size: 14px;
  opacity: 1;
}

*::placeholder {
  color: var(--atf-thm-color);
  font-size: 14px;
  opacity: 1;
}

.z-index-1 {
  position: relative;
  z-index: 2;
}
input, button, select, optgroup, textarea {
	font-family:var(--atf-ff-body);
	border-color:inherit;
}

/*---------------------------------
   COMMON CLASSES
---------------------------------*/
.w-img img {
  width: 100%;
}

.m-img img {
  max-width: 100%;
}

.fix {
  overflow: hidden;
}

.clear {
  clear: both;
}

.z-index-1 {
  z-index: 1;
}

.z-index-2 {
  z-index: 2;
}

.z-index-3 {
  z-index: 3;
}

.z-index-4 {
  z-index: 4;
}

.z-index-5 {
  z-index: 5;
}

.z-index-6 {
  z-index: 6;
}

.z-index-7 {
  z-index: 7;
}

.z-index-8 {
  z-index: 8;
}

.z-index-9 {
  z-index: 9;
}

.z-index-10 {
  z-index: 10;
}
.overflow-y-visible {
  overflow-x: hidden;
  overflow-y: visible;
}

.p-relative {
  position: relative;
}

.p-absolute {
  position: absolute;
}

.atf-fixed-bg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.page-wrapper {
	position: relative;
	margin: 0 auto;
	width: 100%;
	min-width: 270px;
	z-index: 9;
	overflow: hidden;
}
.border-left {
	border-left: 2px solid var(--atf-thm-color);
}
.black-bg{
	background-color: #150035;
}
.grey-1{
	background-color:var(--atf-grey-1);
}
.grey-2{
	background-color:var(--atf-grey-2);
}
.grey-3{
	background-color:var(--atf-grey-3);
}
.grey-4{
	background-color:var(--atf-grey-4);
}
.atf-box-shadow {
	-webkit-box-shadow: 0px 0px 15px rgba(0,0,0,0.1);
	-moz-box-shadow: 0px 0px 15px rgba(0,0,0,0.1);
	box-shadow: 0px 0px 15px rgba(0,0,0,0.1);
	transition: all 0.5s ease-out;
	-webkit-transition: all 0.5s ease-out;
	border-radius: 10px;
}
.atf-box-shadow:hover {
	-webkit-box-shadow:  0px 0px 15px rgba(0,0,0,0.2);
	-moz-box-shadow:  0px 0px 15px rgba(0,0,0,0.2);
	box-shadow:  0px 0px 15px rgba(0,0,0,0.2);
}
.atf-box-shadow-active{
	-webkit-box-shadow:  0px 0px 15px rgba(0,0,0,0.2);
	-moz-box-shadow:  0px 0px 15px rgba(0,0,0,0.2);
	box-shadow:  0px 0px 15px rgba(0,0,0,0.2);
}
/*---------------------------------
 STAR PRELOADER
---------------------------------*/
.atf-preloader {
    background: var(--atf-thm-white);
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 99999;
}
.loader{
    width: 60px;
    height: 60px;
	position: relative;
	border-radius: 50% 50%;
	margin:-40px 0 0 -20px;
	transform:translate(-50%);
	top: 50%;
    left: 50%;
	text-indent: -12345px;
	background:var(--atf-thm-white);
    border: 5px dashed var(--atf-thm-color);
   
    animation: rotation 2s linear infinite;
}
@keyframes rotation{
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
/*---------------------------------
 END PRELOADER
---------------------------------*/
/*---------------------------------
 START BTN
---------------------------------*/
.atf-themes-btn{
    text-transform: capitalize;
    color:var(--atf-thm-white);
    padding: 16px 24px;
	font-size: 16px;
	border-radius: 5px;
}
.atf-themes-btn:hover{
    color:var(--atf-thm-white);
}
.atf-themes-btn{
    background: var(--atf-thm-color);
    box-shadow: 0 5px 0 var(--atf-thm-base);
    position: relative;
    top:0;
    transition:all 0.2s ease-in-out 0s;
}
.atf-themes-btn:hover{
    box-shadow: 0 2px 0 #ff3323;
    top:3px;
}
@media only screen and (max-width: 767px) {
    .atf-themes-btn{
        margin-bottom: 15px;
    }
}
/*---------------------------------
 END BTN
---------------------------------*/
/*---------------------------------
 STAR SECTION TITLE
---------------------------------*/
.atf-section-title{
	margin-bottom:50px;
}
.atf-section-title .sub_title {
	font-size: 18px;
	color: var(--atf-thm-color);
}
.atf-section-title .title {
	font-family: var(--atf-ff-heading);
	color: var(--atf-thm-black);
	font-family: var(--atf-ff-heading);
	font-weight: 700;
	font-size:40px;
	margin-bottom:20px;
}
.atf-section-padding {
	padding-top:100px;
	padding-bottom:100px;
}
/*---------------------------------
 END SECTION TITLE
---------------------------------*/
/*---------------------------------
 START SCROLL TO TOP
---------------------------------*/
.back-to-top.active {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    right: 3%;
    top: 84%;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.back-to-top {
    position: fixed;
    cursor: pointer;
    right: 3%;
    top: 85%;
    background: var(--atf-thm-color);
    box-shadow: 0px 0px 10px rgb(0 0 0 / 31%);
    z-index: 4;
    width: 50px;
    text-align: center;
    height: 50px;
    line-height: 42px;
    border-radius: 50px;
    -webkit-transform: scale(0);
    transform: scale(0);
    visibility: hidden;
    -webkit-transition: .9s;
    transition: .9s;
}
.back-to-top i {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    right: 0;
    margin: 0 auto;
    color: var(--atf-thm-white);
    -webkit-transition: .5s;
    transition: .5s;
    font-size: 20px;
}
@-webkit-keyframes bounce {

    0%,
    to {
        transform: translateY(5%);
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }

    50% {
        transform: translateY(0);
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }
}
@keyframes bounce {

    0%,
    to {
        transform: translateY(5%);
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }

    50% {
        transform: translateY(0);
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }
}


@-webkit-keyframes pulse {
    0% {
        border-color: #48e9d1;
        box-shadow: 0 0 rgba(72, 233, 209, 0.66);
    }

    70% {
        border-color: #48e9d1;
        box-shadow: 0 0 0 10px rgba(72, 233, 209, 0);
    }

    to {
        border-color: #48e9d1;
        box-shadow: 0 0 0 10px rgba(72, 233, 209, 0);
    }
}

@keyframes pulse {
    0% {
        border-color: #48e9d1;
        box-shadow: 0 0 rgba(72, 233, 209, 0.66);
    }

    70% {
        border-color: #48e9d1;
        box-shadow: 0 0 0 10px rgba(72, 233, 209, 0);
    }

    to {
        border-color: #48e9d1;
        box-shadow: 0 0 0 10px rgba(72, 233, 209, 0);
    }
}
/*---------------------------------
 END SCROLL TO TOP
---------------------------------*/
/*----------------------------------------*/
/*  01. END GENERAL STYLE
/*----------------------------------------*/
/*----------------------------------------*/
/*  02. START BOOTSTRAP NAVIGATION OVERRIDES
/*----------------------------------------*/
.atf-site-header.atf-style1 {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: space-between;
	transition: all 0.3s ease-out;
}
.atf-site-header.atf-style1.atf-sticky-active {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	opacity: 1;
	z-index: 999;
	visibility: visible;
	color: var(--atf-thm-black);
	background-color: var(--atf-thm-white);
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
	box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
	-webkit-animation: 0.95s ease 0s normal forwards 1 running stickyDown;
	-khtml-animation: 0.95s ease 0s normal forwards 1 running stickyDown;
	-moz-animation: 0.95s ease 0s normal forwards 1 running stickyDown;
	-ms-animation: 0.95s ease 0s normal forwards 1 running stickyDown;
	-o-animation: 0.95s ease 0s normal forwards 1 running stickyDown;
	animation: 0.95s ease 0s normal forwards 1 running stickyDown;
}

@keyframes stickyDown {
  0% {
    margin-top: -150px;
  }
  100% {
    margin-top: 0;
  }
}
.atf-site-header.atf-style1.atf-sticky-active .atf-nav .atf-nav-list{
	color: var(--atf-thm-black);
}
.atf-site-branding img{
	max-width:150px;
	height:auto;
}
.atf-site-header.atf-style1 .logo-black {
	display: none;
}
.atf-site-header.atf-style1.atf-sticky-active .atf-site-branding .logo-white {
	display: none;
}
.atf-site-header.atf-style1.atf-sticky-active .atf-site-branding .logo-black {
	display: block;
}
.atf-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	padding:36px 0;
}
.atf-nav .atf-nav-list {
	display: flex;
	align-items: center;
	gap: 40px;
	font-size: 16px;
	font-weight: 600;
	transition: 0.3s ease-out;
	color: var(--atf-thm-white);
}
.atf-nav .atf-nav-list li > a:active,
.atf-nav .atf-nav-list li > a:focus,
.atf-nav .atf-nav-list li > a:hover{
	color: var(--atf-thm-color);
}
.atf-nav .dropdown-toggle {
	font-weight: 600;
}
.atf-nav .dropdown-menu li {
	margin-bottom: 5px;
}
.atf-nav .dropdown-menu li a{
	color: var(--atf-thm-black);
	font-weight: 600;
}
.atf-nav .dropdown-menu.show {
	transition: all 0.5s ease-out;
}
.atf-nav .dropdown-menu {
	border-top: 2px solid var(--atf-thm-color);
	border-radius: 0;
	padding: 15px 15px;
}
.hamburger{
	display: none;
	cursor: pointer;
}
.bar{
	display: block;
	width: 25px;
	height: 3px;
	margin: 5px auto;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	background-color: var(--atf-thm-white);;
}
@media only screen and (max-width : 1199px) {
	.atf-nav .atf-nav-list {
		gap: 24px;
	}
}
@media only screen and (max-width : 991px) {
	.atf-main-menu{
		padding:40px 0;
	}   
	.hamburger{
      display: block;
    }
    .hamburger.active .bar:nth-child(2){
      opacity: 0;
    }
    .hamburger.active .bar:nth-child(1){
      transform: translateY(8px) rotate(45deg);
    }
    .hamburger.active .bar:nth-child(3){
      transform: translateY(-8px) rotate(-45deg);
    }
	.atf-nav {
		position: fixed;
		top: 0;
		left: 0;
		flex-direction: column;
		background-color: var(--atf-thm-white);
		z-index: 99999;
		padding: 30px 20px !important;
		/* overflow-x: hidden; */
		transform: translateX(-100%);
		transition: transform .3s ease-out;
		box-shadow: 0 2px 20px rgba(0,0,0,.3);
	}
	
	.atf-nav .atf-nav-list {
		flex-direction: column;
		border-top: 1px solid rgba(0,0,0,0.2);
		margin-top: 30px !important;
		padding-top: 30px !important;
		align-content: start;
		align-items: start;
		padding-left: 0px;
		gap: 5px;
		width: 300px;
		height: 250px;
		overflow-x: hidden;
		color: var(--atf-thm-black);
	}
	.atf-nav .atf-nav-list > li a {
		display: block;
		padding-top: 1px;
		padding-bottom: 1px;
	}
    .atf-nav.active{
      transform: translateX(0)
    }
	.atf-header-btn.atf-hero-btn {
		margin-right: 30px;
	}
	.atf-nav .dropdown-menu.show {
		transition: all 0.3s ease-out;
	}
	.atf-site-header.atf-style1.atf-sticky-active .bar{
		background-color: var(--atf-thm-black);;
	}
}
@media screen and (min-width:320px) and (max-width:479px) {
	.atf-nav .atf-nav-list {
		width: 200px ! important;
	}
	.hero-btn-area {
		display: inherit ! important;
	}
	.atf-hero-content .atf-hero-btn {
		margin-bottom: 40px ! important;
	}
}
/*----------------------------------------*/
/*  02. END BOOTSTRAP NAVIGATION OVERRIDES
/*----------------------------------------*/
/*----------------------------------------*/
/*  03. START HOME DESIGN
/*----------------------------------------*/
.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.3);
	z-index: -1;
}
.atf-hero-area{
    background-color: #cccccc;
}
.hero-side-bg{
	background: url(../img/bg/bg-1.png) no-repeat center center;
	background-size:cover;
}
.hero-right-bg{
	background: url(../img/bg/4.png) no-repeat center center;
	background-size:contain;
}
.atf_align_item_details{
  display: flex;
  align-items: center;
  justify-content: center;
}
.atf-hero-content {
	padding-top:200px;
	padding-bottom:200px;
}
.atf-hero-content .sub_title {
	display: inline-block;
	font-size: 28px;
	color: var(--atf-thm-black);
}
.atf-hero-content span{
	font-size:20px;
	color: var(--atf-thm-white);
	font-weight:600;
}
.atf-hero-content .cd-words-wrapper {
	font-size: 22px;
	color: var(--atf-thm-color) ! important;
	font-weight: 500;
	color: var(--atf-ff-heading);
}
.atf-hero-content .design {
	color: var(--atf-thm-color);
	font-size: 20px;
	text-transform:uppercase;
}
.atf-hero-content .place {
	color: var(--atf-thm-black);
	font-size: 20px;
	text-transform:uppercase;
}
.atf-hero-content .title {
	font-size: 60px;
	color: var(--atf-thm-white);
	font-weight: 700;
	font-family: var(--atf-ff-heading);
	line-height: 1.3;
	text-shadow: 0 0 3px rgba(0,0,0,0.5);
}
.atf-hero-content p {
	margin: 20px 0 35px !important;
	font-size: 18px;
	color: var(--atf-thm-black);
}
.hero-btn-area {
	display: flex;
	align-items: center;
	gap: 20px;
}
.atf-hero-social-icon {
	display: flex;
	align-items: center;
	gap: 10px;
}
.atf-hero-social-icon li {
	display:flex;
	align-items:center;
	gap:10px;
}
.atf-hero-social-icon li a {
	display: inline-block;
	font-size: 16px;
	width: 50px;
	height: 50px;
	line-height: 50px;
	color: var(--atf-thm-white);
	background: transparent;
	text-align: center;
	border-radius: 50%;
	background:var(--atf-thm-color);
	-webkit-box-shadow: 0 0 15px rgba(0,0,0,0.2);
	box-shadow: 0 0 15px rgba(0,0,0,0.2);
	transition: all 0.5s ease-out;
	-webkit-transition: all 0.5s ease-out ;
}
.atf-hero-social-icon li a:hover{
	background:var(--atf-thm-black);
	color:var(--atf-thm-white);
	-webkit-box-shadow: 0 0 15px rgba(0,0,0,0.1);
	box-shadow: 0 0 15px rgba(0,0,0,0.1);
}
@media only screen and (max-width : 1199px) {
	.atf-hero-content .title {
		font-size: 50px;
	}
}
.animation-1 {
	-webkit-animation: .5s .3s fadeInDown both;
	animation: .5s .3s fadeInDown both; }
.animation-2 {
	-webkit-animation: .5s .5s fadeInUp both;
	animation: .5s .5s fadeInUp both; }
.atf-hero-content .describtion {
	-webkit-animation: .5s .7s fadeInLeft both;
	animation: .5s .7s fadeInLeft both; }
.atf-hero-content .atf-hero-btn{
	-webkit-animation: .5s .9s fadeInUp both;
	animation: .5s .9s fadeInUp both; 
}
/*----------------------------------------*/
/* 03. END HOME DESIGN
/*----------------------------------------*/
/**************************************
 * 04. START FEATURE DESIGN
 *************************************/
 .atf-single-feature {
	padding: 35px 20px;
	transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
}
.atf-single-feature:hover .atf-feature-icon {
	background: var(--atf-thm-color);
	color: var(--atf-thm-white);
	transform: scale(1.1);
}
 .atf-feature-icon {
	border: 1px solid var(--atf-border-1);
	border-radius: 50%;
	display: inline-block;
	width: 100px;
	height: 100px;
	line-height: 100px;
	font-size: 30px;
	color: var(--atf-thm-color);
	transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
}
 /**************************************
 * 04. END FEATURE DESIGN
 *************************************/
/**************************************
 * 05. START ABOUT DESIGN
 *************************************/
.atf-about-img{
	 position:relative;
}
.atf-about-img img{
	 border-radius:30px;
	 position:relative;
	 max-width:100%;
	outline-offset: -5px;
	outline: 2px solid var(--atf-thm-black);
	border: 1px solid var(--atf-thm-color);
}
.atf_about_year {
	position: absolute;
	padding: 15px 20px;
	background: var(--atf-thm-white);
	box-shadow: 0 0 15px rgba(0,0,0,0.1);
	top: 45px;
	left: 25px;
	gap: 15px;
	border-radius: 20px;
}
.atf_about_number {
	font-size: 40px;
	font-weight: 700;
	color: var(--atf-thm-color);
}
.atf_about_year_content p {
	line-height: 24px;
	font-weight: 600;
}
.atf_about_project{
	position: absolute;
	padding: 15px 20px;
	background: var(--atf-thm-white);
	box-shadow: 0 0 15px rgba(0,0,0,0.1);
	bottom: 45px;
	right: 25px;
	gap: 15px;
	border-radius: 20px;
}

 /**************************************
 * 05. START ABOUT DESIGN
 *************************************/	
/*----------------------------------------*/
/*06. START GALLERY DESIGN
/*--------------------------------------*/
#portfolio {
    position: relative;
	overflow: hidden;
}
#portfolio .atf-portfolio-nav {
	text-align: center;
}
#portfolio .atf-portfolio-nav .nav {
	display: inline-block;
	margin: 0;
	border-radius: 10px;
}
#portfolio .atf-portfolio-nav .nav li {
	display: inline-block;
	font-size: 16px;
	cursor: pointer;
	font-weight: 500;
	text-transform: capitalize;
	-moz-transition: all 0.3s ease-in-out 0s;
	-ms-transition: all 0.3s ease-in-out 0s;
	-o-transition: all 0.3s ease-in-out 0s;
	-webkit-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
	padding: 9px 15px;
	margin: 6px 6px;
	color: var(--atf-thm-black);
	border: 1px solid var(--atf-border-1);
	background: var(--thm-rgb);
}
#portfolio .atf-portfolio-nav .nav li:hover, 
#portfolio .atf-portfolio-nav .nav li.filter-active {
	color: var(--atf-thm-white);
	background: var(--atf-thm-color);
	transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
}
.atf-single-portfolio{
    text-align: center;
    overflow: hidden;
    position: relative;
	margin: 12px 0px;
}
.atf-single-portfolio:before,
.atf-single-portfolio:after{
    content: '';
    background: var(--atf-thm-black);
    width: 100%;
    height: 100%;
    transform: scaleY(0);
    opacity: 0.3;
    position: absolute;
    left: 0;
    bottom: 0;
    transition: all 0.3s ease-in-out;
}
.atf-single-portfolio:after{ transform: scaleX(0); }
.atf-single-portfolio:hover:before{ transform: scaleY(1); }
.atf-single-portfolio:hover:after{ transform: scaleX(1); }
.atf-single-portfolio img{
    width: 100%;
    height: auto;
    transition: all 0.35s;
	outline-offset: -5px;
	outline: 2px solid var(--atf-thm-white);
	border: 1px solid var(--atf-thm-color);
}
.portfolio-content{
    color:var(--atf-thm-white);
    width:100%;
    opacity: 0;
    transform: translateX(-50%) translateY(-50%);
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    transition: all 0.6s ease;
}
.atf-single-portfolio:hover .portfolio-content{ opacity: 1; }
.atf-single-portfolio .title{
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
    margin: 0 0 5px;
	color: var(--atf-thm-white);
}
.atf-single-portfolio .post{
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
    margin: 0 0 15px;
    display: block;
}
.atf-single-portfolio .icon{
    padding: 0;
    margin: 0;
    list-style: none;
}
.atf-single-portfolio .icon li{
    margin: 0 3px;
    display: inline-block;
}
.atf-single-portfolio .icon li a{
    color: var(--atf-thm-color);
    background: var(--atf-thm-white);
    font-size: 14px;
    line-height: 42px;
    width: 48px;
    height: 48px;
    display: block;
    border: 2px solid transparent;
    transition: all 0.35s;
}
.atf-single-portfolio .icon li a:hover{
    color: var(--atf-thm-white);
    background: var(--atf-thm-black);
    border: 2px solid var(--atf-thm-white);
}
.atf-single-portfolio .icon li  a i{line-height:inherit;}
/*----------------------------------------*/
/*  06. END GALLERY DESIGN
/*--------------------------------------*/
/*----------------------------------------*/
/*  07. START PROGRESS DESIGN
/*--------------------------------------*/
.progress {
	height: 10px;
	background: var(--atf-grey-2);
	border-radius: 0;
	box-shadow: none;
	margin: 0px 0 65px;
	overflow: visible;
	position: relative;
}
.progress:last-child {
	margin: 0px 0 0px;
}
.progress .progress-title {
	font-weight: 600;
	color: var(--atf-thm-black);
	text-transform: capitalize;
	position: absolute;
	top: -35px;
	left: 0;
	z-index: 1;
}
.progress .progress-bar::after {
	content: "";
	width: 20px;
	height: 20px;
	border-radius: 50%;
	box-shadow: 0 5px 5px rgba(0,0,0,0.6);
	background: var(--atf-thm-color);
	position: absolute;
	right: -5px;
	top: -6px;
}
.progress .progress-value {
	width: 45px;
	height: 30px;
	line-height: 30px;
	border-radius: 3px;
	background: var(--atf-thm-color);
	box-shadow: 0 5px 5px rgba(0,0,0,0.4);
	font-size: 15px;
	font-weight: 700;
	color: var(--atf-thm-white);
	text-align: center;
	position: absolute;
	bottom: 30px;
	right: -17px;
}
.progress .progress-value:after{
    content: "";
    border-top: 7px solid var(--atf-thm-color);
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    position: absolute;
    bottom: -7px;
    left: 35%;
}
.atf-skill-call h6 {
	line-height: 0px;
	margin-top: 16px;
	color: var(--thm-color);
}
.progress .progress-bar{
    box-shadow: none;
    border-radius: 0;
    position: relative;
	overflow:inherit;
}
/*----------------------------------------*/
/* START VIDEO DESIGN
/*--------------------------------------*/
.single_slider{
	position:relative;
}
.single_slider img {
	outline-offset: -5px;
	outline: 2px solid var(--atf-thm-white);
	border: 1px solid var(--atf-thm-color);
	border-radius:30px;
}
.atf-video-icon {
	height: 80px;
	width: 80px;
	background-color: var(--atf-thm-white);
	color: var(--atf-thm-color);
	font-size: 20px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	z-index: 9;
	border-radius: 100%;
}
.atf-video-icon {
	position: absolute;
	left: 0;
	right: 0;
	margin: 0 auto;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}
.atf-animation-zoom1 a {
  -webkit-animation: zoom1 1s infinite;
  animation: zoom1 1s infinite; 
}
@-webkit-keyframes zoom1 {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6); }
  70% {
    -webkit-box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 15px rgba(255, 255, 255, 0); }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); } }

@keyframes zoom1 {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6); }
  70% {
    -webkit-box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 15px rgba(255, 255, 255, 0); }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); } }
/*----------------------------------------*/
/* END VIDEO DESIGN
/*--------------------------------------*/
/*----------------------------------------*/
/* 07. END PROGRESS DESIGN
/*--------------------------------------*/
/*----------------------------------------*/
/* 08. START SERVICE DESIGN
/*--------------------------------------*/
.atf-single-service {
    transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 35px;
    gap: 30px;
	margin: 12px 0;
}
.atf-single-service:hover .atf-service-icon i{
	background: var(--atf-thm-color);
	color: var(--atf-thm-white);
	transform: scale(1.1)
}
.atf-single-service .atf-service-icon {
    font-size: 40px;
    color: var(--atf-thm-color);
}
.atf-service-icon i {
	width: 60px;
	height: 60px;
	line-height: 60px;
	text-align: center;
	border-radius: 50%;
	background: var(--atf-grey-4);
	font-size: 20px;
	transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
}
.atf-service-content h6{
	font-size: 15px;
	font-weight: 500;
}
.atf-service-content h6 span{
	color: var(--atf-thm-color);
	font-size: 16px;
}
.atf-single-service .atf-service-content {
    border-top: none;
    position: relative;
    transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
}
.atf-single-service:hover {
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}
.atf-single-service .post-title {
    color: var(--atf-thm-black);
    font-weight: 600;
    transition: all 0.3s ease-in-out;
}
.atf-single-service .post-title a {
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    text-transform: capitalize;
}
.atf-single-service .post-title a:hover {
    color: var(--atf-thm-color);
}
.atf-about-inner h2 {
    color: var(--atf-thm-color);
}
@media only screen and (max-width: 991px) {
    .atf-single-feature {
        margin: 12px 0;
    }
}
/*----------------------------------------*/
/* 08. END SERVICE DESIGN
/*--------------------------------------*/

/*----------------------------------------*/
/* 09. START CLIENT DESIGN
/*--------------------------------------*/
.testimonial{
	margin:40px;
}
.testimonial-content {
	text-align: center;
}
.testimonial-quote-icon span {
	width: 50px !important;
	height: auto;
	margin: 0 auto;
	color: var(--atf-thm-color);
	font-size:40px;
}
.testimonial-icon i {
	color: var(--atf-thm-color);
}
.testimonial-icon li {
	display: inline-block;
	font-size: 15px;
}
.testimonial .pic {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	border: 1px solid var(--atf-border-1);
	overflow: hidden;
	box-shadow: 0 2px 15px rgba(255, 255, 255, 0.3);
}
.testimonial .pic img{
    width: 100%;
    height: auto;
}
.testimonial .description {
	font-style: italic;
	color:var(--atf-text-body);
}
.testimonial .testimonial-title{
    margin: 0;
    text-transform: capitalize;
	color:var(--atf-thm-black);
}
.testimonial .post {
	display: block;
	text-transform: capitalize;
	font-size: 12px;
	margin-bottom: 0;
}
.testimonial .post::before {
	content: "";
	width: 20px;
	display: block;
	bottom: 34px;
	left: 68px;
	position: absolute;
}
.testimonial .testimonial-rating{
    margin: 0 0 15px 0;
    padding: 0;
    list-style: none;
}
.testimonial .testimonial-rating li{
    color: var(--atf-thm-color);
    display: inline-block;
}
.testimonial .testimonial-rating li.fa-star{
    color: var(--atf-thm-color);
}
/*----------------------------------------*/
/*   09. END CLIENT DESIGN
/*--------------------------------------*/
/*----------------------------------------*/
/* START PARTNER DESIGN
/*--------------------------------------*/
.atf-partner.style1{
	border-top: 1px solid #ddd;
}
.atf-partner {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	border-left: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
}
.atf-partner img {
	border-right: 1px solid #ddd;
	width: 100%;
	height: auto;
	object-fit: cover;
}
.atf-partner img:not(:last-child) {
	border-right: none !important;
}
@media only screen and (max-width:767px) {
	.atf-partner {
		display: grid;
		grid-template-columns: 1fr 1fr;
	}
	.newsletter {
		padding: 60px 30px;
	}
}
/*----------------------------------------*/
/*  END PARTNER DESIGN
/*--------------------------------------*/
/*----------------------------------------*/
/*  START NEWSLETTER DESIGN
/*--------------------------------------*/
.newsletter {
	padding: 100px 60px;
	border-radius: 10px;
	position: relative;
	z-index: 1;
	outline-offset: -5px;
	outline: 2px solid var(--atf-thm-white);
	border: 1px solid var(--atf-thm-color);
	background: var(--atf-thm-black);
}
.atf-mailchamp-title .title{
	font-size: 30px;
	color: var(--atf-thm-white);
}
.atf-mailchamp-wrapper{
	position:relative;
}
.atf-mailchamp-inner input{
	margin-bottom:0;
}
.atf-mailchamp-inner .btn i {
	font-size: 30px;
	color: var(--atf-thm-white);
	border-radius: 30px;
	width: 55px;
	height: 15px;
	line-height: 24px;
}
.atf-mailchamp-inner .atf-themes-btn:hover {
	background:var(--atf-thm-black);
}
.atf-mailchamp-inner input:focus {
	box-shadow: none;
	outline: 0 none;
	border-color: var(--atf-thm-color);
	color: var(--atf-thm-black);
}
.atf-mailchamp-inner input {
	background: var(--atf-thm-white);
	color: var(--atf-thm-black);
	border: 1px solid var(--atf-border-1);
	padding-left: 26px;
}
.atf-mailchamp-inner .atf-themes-btn {
	position: absolute;
	right: 4px;
	display: inline-block;
	box-shadow: none;
	top: 4px;
	background: var(--atf-thm-color);
	padding: 10px 20px;
	color: var(--atf-thm-white);
	transition: all 0.5s ease-in-out 0s;
	font-size: 16px;
}
.atf-mailchamp-inner .atf-subscription-label {
	color: var(--atf-thm-white);
	display:block;
}
@media only screen and (max-width:576px) {
	.newsletter {
		padding: 50px 30px;
	}
}
/*----------------------------------------*/
/* END NEWSLETTER DESIGN
/*--------------------------------------*/
/*----------------------------------------*/
/*  10. START BLOG DESIGN
/*--------------------------------------*/
.atf-single-post {
    transition: all 0.3s ease 0s;
    margin: 12px 0;
}
.atf-single-post .post-img {
    position: relative;
}
.atf-single-post .post-img img {
	width: 100%;
	height: auto;
	position: relative;
}
.atf-single-post .post-img .date {
	position: absolute;
	top: 10px;
	right: 10px;
	background: var(--atf-thm-color);
	color: var(--atf-thm-white);
	padding: 15px;
	text-align: center;
	line-height: 20px;
	border-radius: 4px;
	font-weight: 500;
}
.atf-single-post .post-review {
	text-align: left;
	padding: 25px;
}
.atf-single-post .post-content h4 a {
	margin-bottom: 0;
	-webkit-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
	font-size: 20px;
	margin-top: 5px;
	display: block;
}
.atf-single-post .post-content h4 > a:hover{
	 color:var(--atf-thm-color);
}
.atf-single-post .post-title a {
	transition: all 0.3s ease-in-out;
	line-height: 1.3;
	text-transform: capitalize;
}
.read {
	transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	font-weight: 700;
	color: var(--atf-thm-black);
	position: relative;
	font-size: 18px;
	text-transform: capitalize;
}
.read::before {
	content: '';
	position: absolute;
	bottom: 0px;
	left: 0;
	width: 100%;
	height: 1px;
	background: var(--atf-thm-color);
	-webkit-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
	color: var(--atf-thm-color);
}
.read:hover {
	color: var(--atf-thm-color);
}
.read:hover::before {
	width: 0%;
}
/*----------------------------------------*/
/*  10. END BLOG DESIGN
/*--------------------------------------*/
/*----------------------------------------*/
/* START BREADCRUMB DESIGN
/*--------------------------------------*/
.breadcrumb-cover-bg::before {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0px;
	opacity: 0.3;
	content: "";
	background-color: var(--atf-thm-black);
}
.breadcrumb-single-content {
	position: relative;
	font-size: 16px;
	padding: 10px 16px;
	display: inline-block;
	background: var(--atf-thm-color);
	border-radius: 5px;
}
.breadcrumb-single-content span {
	font-weight: 700;
	padding-right: 10px;
	color: var(--atf-thm-white);
}
.breadcrumb-sub-title {
	color: var(--atf-thm-white);
	margin-left: 7px;
}
.breadcrumb-title {
	font-size: 60px;
	font-weight: 700;
	color: var(--atf-thm-white);
	line-height: 1.3;
}
.breadcrumb-bg-attach {
	background-size: cover;
	background-position: right center;
	background-repeat: no-repeat;
}
.breadcrumb-spacing {
	padding-top:200px;
	padding-bottom: 150px;
}
.breadcrumb-single-content .divide::after {
	position: absolute;
	top: 50%;
	width: 6px;
	height: 6px;
	content: "";
	display: inline-block;
	transform: translateY(-50%);
	background: var(--atf-thm-white);
	border-radius: 50%;
}
@media only screen and (max-width:991px) {
	.breadcrumb-bg-attach {
		background-position:left center;
	}
}
/*----------------------------------------*/
/*  END BREADCRUMB DESIGN
/*--------------------------------------*/
/*----------------------------------------*/
/*   START BLOG DETAILS DESIGN
/*--------------------------------------*/
.blogpost-thumb {
	position: relative;
	display: inline-block;
	margin-bottom: 30px;
}
.blogpost-thumb img {
	width: 100%;
	border-radius: 15px;
}
.blogpost-meta-icon {
	font-size: 18px;
	margin-right: 8px;
	color:var(--atf-thm-color);
}
.blogpost-title {
	font-size: 36px;
	font-weight: 700;
	color: var(--atf-thm-black);
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-ms-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
.blogpost-text p {
	margin-bottom: 30px;
}
.atf-blog-details-blockquote {
	position: relative;
	padding: 40px;
	border-radius: 15px;
	background-color: white;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.06);
}
.atf-blog-details-blockquote blockquote {
	margin-bottom: 0;
}
.atf-blog-details-blockquote .quote-icon {
	font-size: 36px;
	color: var(--atf-thm-color);
	text-align: start;
	margin-bottom: 15px;
	display: block;
}
.atf-blog-details-blockquote p {
	font-size: 22px;
	font-weight: 600;
	line-height: 1.4;
	color: var(--atf-thm-black);
	margin-bottom: 15px;
}
.atf-blog-details-blockquote .blockquote-info {
	position: relative;
	font-size: 14px;
	padding-left: 30px;
}
.atf-blog-details-blockquote .blockquote-info::before {
	position: absolute;
	width: 15px;
	height: 2px;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	content: "";
	background: var(--atf-thm-black);
}
.blogpost-details-title {
	font-size: 30px;
	font-weight: 700;
	margin-bottom: 30px;
	color: var(--atf-thm-black);
}
.blogpost-details-list-thumb {
	margin-right: 30px;
}
.blogpost-details-list-thumb img {
	border-radius: 15px;
}
@media only screen and (max-width:767px) {
	.blogpost-details-list{
		margin-top:30px;
	}
}
@media only screen and (max-width:576px) {
	.blogpost-details-social{
		margin-top:30px;
	}
}
@media only screen and (max-width:479px) {
	.blogpost-comment-avater {
		margin-bottom: 10px;
	}
	.blogpost-comment-title {
		font-size: 28px;
	}
	.blogpost-title {
		font-size: 28px;
	}
}
.blogpost-details-list ul li {
	list-style: none;
	position: relative;
	padding-left: 28px;
	margin-bottom: 15px;
	color: var(--atf-common-black);
}
.blogpost-details-list ul li i {
	position: absolute;
	left: 0;
	top: 5px;
	color: var(--atf-thm-color);
	font-size: 20px;
}
.blogpost-details-share {
	padding: 30px 0;
	border-bottom: 1px solid var(--atf-border-1);
	border-top: 1px solid var(--atf-border-1);
}
.blogpost-details-tag-title {
	font-size: 22px;
	font-weight: 700;
	margin-right: 30px;
	color: var(--atf-thm-black);
}
.tagcloud a {
	font-size: 14px;
	padding: 5px 13px;
	border-radius: 5px;
	margin-right: 8px;
	margin-bottom: 10px;
	display: inline-block;
	border: 1px solid var(--atf-border-1);
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-ms-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
.tagcloud a:hover {
	color: var(--atf-thm-white);
	background-color: var(--atf-thm-color);
	border: 1px solid var(--atf-thm-color);
}
.blogpost-details-social a {
	width: 40px;
	height: 40px;
	font-size: 16px;
	line-height: 40px;
	text-align: center;
	border-radius: 50%;
	margin-right: 10px;
	color: var(--atf-thm-black);
	background: var(--atf-grey-1);
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-ms-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
.blogpost-details-social a:hover {
	color:var(--atf-thm-white);
	background: var(--atf-thm-color);
}
.blogpost-comment {
	box-shadow: 0 0 15px rgba(0,0,0,0.06);
	padding: 40px;
}
.blogpost-comment-title {
	font-size: 36px;
	font-weight: 700;
	color: var(--atf-thm-black);
}
.blogpost-comment ul li {
	list-style: none;
}
.blogpost-comment-box {
	padding-bottom: 50px;
	margin-bottom: 30px;
	border-bottom: 1px solid var(--atf-border-1);
}
.border-none{
	border:inherit;
}
.blogpost-comment-avater img {
	border-radius: 50%;
}
.blogpost-comment-avater {
	flex: 0 0 auto;
}
.blogpost-comment-name {
	font-size: 20px;
	font-weight: 700;
	color: var(--atf-thm-black);
}
.blogpost-comment-text p{
	margin-bottom:15px;
}
.blogpost-comment-reply a {
	font-size: 16px;
	font-weight: 700;
	display: inline-block;
	color: var(--atf-thm-black);
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-ms-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
.blogpost-comment-reply a:hover {
	color: var(--atf-thm-color);
}
/*********************************** 
START SIDEBAR DESIGN 
***********************************/
.sidebar-widget {
	padding: 50px;
	background: var(--atf-grey-1);
	border-radius: 15px;
}
.sidebar-widget:not(:last-child) {
	margin-bottom: 30px;
}
.sidebar-widget-title {
	font-size: 22px;
	font-weight: 700;
	line-height: 1.5;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .sidebar-widget {
    padding: 40px;
  }
}
.sidebar-search-input {
	position: relative;
}
.sidebar-search-input input:focus {
	border: 1px solid var(--atf-thm-color);
}
.sidebar-search-input input {
	border: 0;
	height: 58px;
	border: 1px solid transparent;
	border-radius: 15px;
	background-color: var(--atf-thm-white);
}
.sidebar-search-input button {
	position: absolute;
	right: 0;
	width: 58px;
	height: 58px;
	font-size: 16px;
	line-height: 58px;
	text-align: center;
	color: var(--atf-thm-white);
	background: var(--atf-thm-color);
	border-radius: 0 15px 15px 0;
}
.sidebar-search-input button {
	font-size: 16px;
	line-height: 58px;
	text-align: center;
	color: var(--atf-thm-white);
}
.lp-post {
	padding: 15px 0;
	border-radius: 15px;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-ms-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
.lp-post-thumb {
	margin-right: 15px;
	flex: 0 0 auto;
}
.lp-post-thumb a img {
	width: 70px;
	height: 70px;
	border-radius: 5px;
}
.lp-meta {
	font-size:14px;
	margin-top:5px;
}
.lp-meta i {
	font-size: 14px;
	color: var(--atf-thm-color);
	margin-right: 10px;
}
.lp-post-title {
	font-size: 16px;
	font-weight: 700;
	color: var(--atf-thm-black);
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-ms-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
	margin-bottom:0px;
}
.lp-post-title:hover {
	color: var(--atf-thm-color);
}
.sidebar-widget-content ul li {
	position: relative;
	display: block;
}
.sidebar-widget-content ul li a {
	font-size: 16px;
	font-weight: 600;
	padding: 0px 0;
	color: var(--atf-thm-black);
	display: inline-block;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-ms-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
	border-radius: 15px;
	margin: 5px 0;
}
.sidebar-widget-content ul li a:hover {
	color: var(--atf-thm-color);
}
.sidebar-widget-content ul li a i {
	position: absolute;
	right: 30px;
	top: 50%;
	transform: translateY(-50%);
}
/*----------------------------------------*/
/*   END BLOG DETAILSDESIGN
/*--------------------------------------*/
/*----------------------------------------*/
/*  11. START CONTACT DESIGN
/*--------------------------------------*/
.atf-contact-form label {
	font-weight:600;
	color: var(--atf-thm-black);
}
.atf-contact-form .button {
    margin: 0;
}
.atf-contact-form .atf_contact_input input, 
.atf-contact-form .atf_contact_input select, 
.atf-contact-form .atf_contact_input textarea {
	border: 1px solid rgba(0,0,0,0.2) ! important;
	transition: all 0.3s ease-in-out 0s;
	-webkit-transition: all 0.3s ease-in-out 0s;
	margin: 10px 0;
	background: var(--atf-thm-white);
	outline: none;
	padding-left:26px;
}
.atf-contact-form .atf_contact_input input:focus,
.atf-contact-form .atf_contact_input select:focus,
.atf-contact-form .atf_contact_input textarea:focus {
	box-shadow: 0 0 15px rgba(0,0,0,0.2);
	border: 1px solid var(--atf-thm-color) ! important;
}
.atf-contact-form .atf_contact_input input:active,
.atf-contact-form .atf_contact_input select:active,
.atf-contact-form .atf_contact_input textarea:active {
	box-shadow: 0 0 15px rgba(0,0,0,0.2);
	border: 1px solid var(--atf-thm-color) ! important;
	border-color: var(--atf-grey-1);
}
.atf-contact-form .atf_contact_input textarea {
	height: 120px;
	width: 100%;
}
.atf-contact-area .atf-themes-btn {
	margin-top: -5px;
	width: 100%;
}
.form-message{
	color:  var(--atf-thm-black);
}
#atf-map-area iframe{
	width:100%;
	height:450px;
}
/*
* ----------------------------------------------------------------------------------------
* START ADDRESS DESIGN
* ----------------------------------------------------------------------------------------
*/
.atf-contact-details {
	display: flex;
	margin-bottom: 15px;
	align-items: center;
	border-bottom: 1px solid #eaeaea;
	padding-bottom: 15px;
	margin-top:10px;
	max-width:350px;
}
.atf-contact-details:last-child {
	border-bottom: inherit;
	margin:0;
	padding:0;
}
.atf-contact-details i {
	font-size: 20px;
	width: 50px;
	height: 50px;
	line-height: 50px;
	color: var(--atf-thm-white);
	text-align: center;
	border-radius: 5px;
	background: var(--atf-thm-color);
}
.atf-contact-address {
	margin-left: 14px;
}
.atf-contact-address h5 {
	margin-bottom: 0;
	line-height: 1.3;
	font-weight: 600;
}
.atf-contact-icon {
	width: 60px;
	height: 60px;
	line-height: 60px;
	background-image: var(--atf-gradient2);
	text-align: center;
	margin-right: 20px;
	color: var(--atf-thm-white);
	border-radius: 5px;
	border: 1px solid var(--atf-border-1);
	box-shadow: 0 0 15px rgba(255,255,255,0.2);
}
/*----------------------------------------*/
/*  11. END CONTACT DESIGN
/*--------------------------------------*/
/*----------------------------------------*/
/*  12. START FOOTER DESIGN
/*--------------------------------------*/
.atf-single-footer img {
	margin-bottom: 20px;
}
.atf-footer-area {
	background-color: var(--atf-thm-black);
}
.atf-footer-area .atf-single-footer {
	position: relative;
}
.atf-single-footer .title {
	margin-bottom: 30px;
	color: var(--atf-thm-white);
	text-transform: capitalize;
	font-weight: 600;
}
.atf-footer-social-icon {
	display: flex;
	align-items: center;
	gap: 10px;
}
.atf-footer-social-icon li {
	display:flex;
	align-items:center;
	gap:10px;
}
.atf-footer-social-icon li a {
	display: inline-block;
	font-size: 16px;
	width: 40px;
	height: 40px;
	line-height: 40px;
	color: var(--atf-thm-color);
	background: var(--atf-thm-white);
	text-align: center;
	border-radius: 5%;
	border: 1px solid var(--atf-border-1);
	box-shadow: 0 0 15px rgba(255,255,255,0.2);
	transition: all 0.3s ease-out;
	-webkit-transition: all 0.3s ease-out;
}
.atf-footer-social-icon li a:hover {
	background: var(--atf-thm-color);
	color: var(--atf-thm-white);
}
.atf-single-footer .atf-list-menu li a {
	color: var(--atf-text-body);
	margin-bottom: 10px;
	display: block;
	position: relative;
	overflow: hidden;
	transition: all 0.3s ease-out;
	-webkit-transition: all 0.3s ease-out;
}
.atf-single-footer .atf-list-menu li {
	display: flex;
	align-items: center;
}
.atf-single-footer .atf-list-menu li::before {
    content: '';
    background-color: var(--atf-thm-color);
    position: relative;
    left: 0;
    top: -5px;
    width: 0px;
    height: 2px;
    border-radius: 0%;
	opacity:0;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.atf-single-footer .atf-list-menu li:hover::before {opacity:1;width: 10px;}
.atf-single-footer .atf-list-menu li a {
	display: block;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.atf-single-footer .atf-list-menu li:hover a {
	color: var(--atf-thm-color);
	margin-left: 10px;
}
.atf-footer-bottom a {
	color: var(--atf-thm-color);
	-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;
	font-weight:700;
}
.atf-footer-bottom {
	padding: 30px 0;
	border-top: 1px solid rgba(255,255,255,0.1);
}
.atf-footer-bottom a:hover{
	color: var(--atf-thm-white);
	text-decoration:inherit;
}
@media only screen and (max-width: 991px){
    .atf-single-footer{ margin: 15px 0; }
}
/*----------------------------------------*/
/*  12. END FOOTER DESIGN
/*--------------------------------------*/
/* OWL DOT & NAV DESIGN */
.owl-theme .owl-controls{
    margin-top: 30px;
}
.owl-theme .owl-controls .owl-pagination{
    width: 140px;
    padding: 10px;
    margin: 0 auto;
    line-height: 13px;
    background: #fe7f8b;
}
.owl-theme .owl-controls .owl-page span{
    width: 12px;
    height: 12px;
    border-radius: 0;
    background: transparent;
    border: 1px solid var(--atf-thm-white);
}
.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span{
    border: 4px solid var(--atf-thm-white);
}
/* OWl DOT DESIGN */
.atf_owl_dot_slider.owl-theme .owl-dots, .owl-theme .owl-nav {
	margin-top: 10px ! important;
}
.atf_owl_dot_slider.owl-theme .owl-nav.disabled + .owl-dots {
    margin-left: 0px;
    line-height: .7;
}
.atf_owl_dot_slider .owl-controls{
	 margin-top: -25px;
}
.atf_owl_dot_slider.owl-theme .owl-dots .owl-dot span {
	width: 10px;
	height: 10px;
	margin: 0 8px;
	border-radius: 5px;
	background: var(--atf-thm-color);
	border: 1px solid var(--atf-thm-color);
	transition: all 0.3s ease-in-out;
}
.atf_owl_dot_slider.owl-theme .owl-dots .owl-dot.active span{
	width: 35px;
	transition:all 0.3s ease-in-out;
	border: 1px solid var(--atf-thm-color);
	background: var(--atf-thm-color);
}
/* 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(--atf-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(--atf-thm-color) !important;
	border-radius: 50%;
}

.atf_owl_nav_slider .owl-nav .owl-prev {
	left: -15px;
}
.atf_owl_nav_slider .owl-nav .owl-next {
	right: -15px;
}
.atf_owl_nav_slider1:hover .owl-nav .owl-prev{
	left: -38px;
	opacity:1;
}
.atf_owl_nav_slider1:hover .owl-nav .owl-next{
	right: -38px;
	opacity:1;
}
/* END OWL DOT & NAV DESIGN */