/*
    Template Name: Transsport -  Moving & Transporation Landing Page Template
    Author: themesfamily
    Description: This is Multi Moving and Transporation, Cargo template etc.
    Version: 1.0.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 ABOUT DESIGN 
		---START FEATURE DESIGN
    05. START SERVICE DESIGN
    06. START GALLERY DESIGN 
	07. START CHOOSE DESIGN 
	08. START PPROCESS DESIGN
	09. START COUNTER DESIGN
	10. START BLOG DESIGN
	11. START NEWSLETTER DESIGN
	12. START CONTACT DESIGN
	13. START FOOTER DESIGN
		---START SLICK DESIGN
		---Animations
  =============================================================*/
/*----------------------------------------*/
/*  01. GENERAL STYLE
/*----------------------------------------*/
/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500&family=Poppins:wght@700;800&display=swap');
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", sans-serif;
    --atf-ff-heading: "Poppins", sans-serif;
    --atf-ff-fontawesome: "Font Awesome 7 free";
    /**
  @color declaration
  */
    --atf-thm-white: #ffffff;
    --atf-thm-black: #104b5b;
    --atf-thm-color: #fe8e44;
    --atf-thm-base: #b1d9e1;
    --atf-grey-1: #f9f9f9;
    --atf-grey-2: #f5f5f5;
    --atf-grey-3: #f6f6f6;
    --atf-grey-4: #f7f7f7;
    --atf-grey-5: #f4f4f4;
    --atf-grey-6: #171A2B;
	--atf-text-body: #666666;
    --atf-border-1: #dddddd;
    --atf-grey-7: #fbf7f6;
    --atf-grey-8: #bfd6dc;
    --atf-rgb-white: rgba(255,255,255,0.7);  
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}
body {
    font-size: 16px;
    line-height: 1.9;
    font-weight: normal;
    color: var(--atf-text-body);
    font-family: var(--atf-ff-body);
}
p {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 15px;
    line-height: 1.9;
    font-family: var(--atf-ff-body);
    color: var(--atf-text-body);
}
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);
	font-family: var(--atf-ff-heading);
}

h1 {
    font-size: 40px;
}
h2 {
    font-size: 36px;
}
h3 {
    font-size: 28px;
}
h4 {
    font-size: 20px;
}
h5 {
    font-size: 18px;
}
h6 {
    font-size: 16px;
}

ul {
    margin: 0px;
    padding: 0px;
}
dl,
ol,
ul {
    padding: 0;
    margin: 0;
}
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: 16px;
    padding-left: 25px;
    padding-right: 25px;
    color: var(--atf-thm-black);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: var(--atf-thm-white);
}
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);
    font-size: 16px;
}
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: 16px;
    opacity: 1;
}

*::placeholder {
    color: var(--atf-thm-color);
    font-size: 16px;
    opacity: 1;
}

.z-index-1 {
    position: relative;
    z-index: 2;
}
.atf-title-hover {
  background-size: 0% 1px, 0 1px;
  background-repeat: no-repeat;
  transition: background-size 0.4s linear;
  background-position: 100% 100%, 0 93%;
  background-image: linear-gradient(#fe8e44, #fe8e44), linear-gradient(#fe8e44, #fe8e44);
}
.atf-title-hover:hover {
  background-size: 0 1px, 100% 1px;
}
/*---------------------------------
   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;
}

.gx-10 {
    --bs-gutter-x: 10px;
}

.gx-20 {
    --bs-gutter-x: 20px;
}

.gx-30 {
    --bs-gutter-x: 30px;
}

.gx-40 {
    --bs-gutter-x: 40px;
}

.gx-45 {
    --bs-gutter-x: 45px;
}

.gx-50 {
    --bs-gutter-x: 50px;
}

.gx-60 {
    --bs-gutter-x: 60px;
}

.gx-70 {
    --bs-gutter-x: 70px;
}

.gx-80 {
    --bs-gutter-x: 80px;
}

.gx-90 {
    --bs-gutter-x: 90px;
}

.gx-100 {
    --bs-gutter-x: 100px;
}

.overflow-y-visible {
    overflow-x: hidden;
    overflow-y: visible;
}
.p-relative {
    position: relative;
}
.p-absolute {
    position: absolute;
}
.atf_attach_bg {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.page-wrapper {
    position: relative;
    margin: 0 auto;
    width: 100%;
    min-width: 270px;
    overflow: hidden;
}
.black-bg {
    background: var(--atf-thm-black)! important;
}
.color-bg {
    background: var(--atf-thm-color)! important;
}
.grey-bg-1 {
    background-color: var(--atf-grey-2)! important;
}
.grey-bg-2 {
    background-color: var(--atf-grey-2)! important;
}
.grey-bg-3 {
    background-color: var(--atf-grey-3)! important;
}
.grey-bg-7 {
    background-color: var(--atf-grey-7)! important;
}
.grey-bg-8 {
    background-color: var(--atf-grey-8)! important;
}
.bg-half-left {
	position: absolute;
	height: 100% !important;
	width: 50%;
	left: 0;
	top: 0;
	object-fit: cover;
	overflow: hidden;
	border-radius: 0 100px 100px 0;
}
@media only screen and (max-width: 991px) {
	.bg-half-left {
		display:none;
	}
}
.thm_border_radius img{
	border-radius:0 40px 0 40px;
	width:100%;
}
.thm_border_radius {
    border-radius:0 40px 0 40px;
	width:100%;
}
/*---------------------------------
 STAR PRELOADER
---------------------------------*/

#atf-loader {
	background:var(--atf-thm-white);
	height: 100%;
	width: 100%;
	position: fixed;
	z-index: 9999;
	margin-top: 0;
	top: 0
}

#atf-loading-center {
    width: 100%;
    height: 100%;
    position: relative
}

#atf-loading-center  {
    position: absolute;
    left: 50%;
    top: 40%;
    height: 100px;
    width: 300px;
    transform: translate(-50%,-50%);
}
/*---------------------------------
 END PRELOADER
---------------------------------*/
/*---------------------------------
 START BTN
---------------------------------*/
.atf-themes-btn {
	background-color: var(--atf-thm-color);
	font-family: var(--atf-ff-body);
	font-weight: 500;
	font-size: 18px;
	color: var(--atf-thm-white);
	text-transform: capitalize;
	line-height: 1;
	padding: 20px 40px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	transition: 0.3s;
	position: relative;
	overflow: hidden;
	z-index: 1;
	white-space: nowrap;
}
.atf-themes-btn::after {
	position: absolute;
	content: "";
	display: block;
	right: 15%;
	left: -20%;
	top: -4%;
	height: 150%;
	width: 150%;
	bottom: 0;
	background-color: var(--atf-thm-black);
	transform: skewX(45deg) scale(0, 1);
	z-index: -1;
	transition: all 0.3s;
}
.atf-themes-btn:hover::after {
	transform: skewX(45deg) scale(1, 1);
}
.atf-themes-btn:hover {
	color: var(--atf-thm-white);
}
/*---------------------------------
 END BTN
---------------------------------*/
/*---------------------------------
 STAR SECTION TITLE
---------------------------------*/
.atf-section-title .title {
	font-family: var(--atf-ff-heading);
	color: var(--atf-thm-black);
	font-weight: 600;
	font-size: 50px;
	line-height: 1.2;
	letter-spacing: -2px;
}
@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: 35px;
		letter-spacing:0px;
	}
}
.atf-section-title .sub-title {
	color: var(--atf-thm-black);
	background: var(--atf-thm-base);
	display: inline-block;
	border-radius: 5px;
	padding: 6px 45px;
	font-size: 16px;
	font-weight: 500;
	position: relative;
	margin-bottom: 15px;
}
.atf-section-title .sub-title::before {
	content: '';
	position: absolute;
	left: 17px;
	top: 15px;
	width: 12px;
	height: 12px;
	background: var(--atf-thm-color);
	border: 3px solid var(--atf-thm-white);
	border-radius: 50%;
}
.atf-section-title .sub-title::after {
	content: '';
	position: absolute;
	right: 17px;
	top: 15px;
	width: 12px;
	height: 12px;
	background: var(--atf-thm-color);
	border: 3px solid var(--atf-thm-white);
	border-radius: 50%;
}
.atf-section-padding {
    padding-top: 120px;
    padding-bottom: 120px;
}
/*---------------------------------
 END SECTION TITLE
---------------------------------*/
/*---------------------------------
 START SCROLL TO TOP
---------------------------------*/
#back_to_top {
    position: fixed;
    right: 2%;
    top: 100%;
    width: 28px;
    height: 60px;
    line-height: 60px;
    font-size: 16px;
    border: 2px solid var(--atf-thm-color);
    color: var(--atf-thm-color);
    text-align: center;
    background-color: var(--atf-thm-white);
    border-radius: 100px;
    z-index: 999;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

#back_to_top:hover {
    background-color: var(--atf-thm-color);
    color: var(--atf-thm-white);
}

#back_to_top.active {
    top: calc(100% - 110px)
}

#back_to_top i {
    -webkit-animation: mymove 1s ease-in 0s infinite alternate;
    animation: mymove 1s ease-in 0s infinite alternate;
    display: inline-block;
    position: relative;
}

@-webkit-keyframes mymove {
    from {
        top: -5px;
    }
    to {
        top: 5px;
    }
}

@keyframes mymove {
    from {
        top: -5px;
    }
    to {
        top: 5px;
    }
}
/*---------------------------------
 END SCROLL TO TOP
---------------------------------*/
/*----------------------------------------*/
/*  01. END GENERAL STYLE
/*----------------------------------------*/
/*----------------------------------------*/
/*  02. START BOOTSTRAP NAVIGATION OVERRIDES
/*----------------------------------------*/
.atf-top-header {
    position: relative;
    z-index: 1;
    padding:12px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.4s ease;
}
.atf-header-top-right {
    text-align: left;
}
.atf-header-top-social {
    display: inline-block;
}
.atf-header-top-social ul {
	position: relative;
	display: flex;
	align-items: center;
	gap: 10px;
}
.atf-header-top-social ul::after {
	content: '';
	position: absolute;
	width: 1px;
	height: 20px;
	background: rgba(255,255,255,0.7);
	right: -12px;
	top: 4px;
}
.atf-header-top-social ul li {
	list-style:none;
}
.atf-header-top-social ul li a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
}
.atf-header-top-social.style1 ul li a{
	font-size: 16px;
}
.atf-header-top-social.style1 a i:hover{
    color:var(--atf-thm-white);
}
.atf-top-header .atf-header-top-social.style1{
	justify-content: flex-start;
}
.atf-header-top-service {
	display: flex;
	align-items: center;
	gap: 10px;
	padding-left: 12px;
}
.atf-header-top-service .icon {
	color: var(--atf-thm-color);
	font-size:18px;
}
.atf-header-top-service .describtion {
	color: rgba(255,255,255,0.8);
}
.atf-header-top-auth a:hover{
    color:var(--atf-thm-white);
}
.atf-top-header {
	overflow: hidden;
}
.atf-top-header .atf-top-header-in {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    transition: all 0.4s ease;
}
.atf-top-header .atf-header-top-social {
    font-size: 16px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
	gap:10px;
    transition: all 0.4s ease;
    color: var(--atf-thm-white);
    text-align: center;
}
.atf-header-top-social ul li a:hover{
	color: var(--atf-thm-color);
}
.atf-top-header-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
}
.atf-top-header-list li {
    margin-right: 30px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
}
.atf-top-header-list li a {
	color: rgba(255, 255, 255, 0.8);
	transition: all 0.3s ease-out;
	-webkit-transition: all 0.3s ease-out;
}
.atf-top-header-list li a:hover {
    color:var(--atf-thm-color);
}
.atf-top-header-list li:last-child {
    margin-right: 0;
}
.atf-top-header-list li i {
    margin-right: 10px;
	color: var(--atf-thm-color);
}
.atf-site-header.atf-style1 {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}
.atf-site-header.atf-style1 {
	transition: all 0.4s ease-out;
}
.atf_bg_skew {
	position: relative;
	transition: all 0.4s ease-out;
	z-index: 7;
	background: var(--atf-thm-color) none repeat scroll 0 0;
}
.atf_bg_skew::after {
	background: var(--atf-thm-white) none repeat scroll 0 0;
	content: "";
	position: absolute;
	z-index: -1;
	width: 100%;
	height: 100%;
	top: 0;
	left: calc(20% + 0px);
	border-right: 4px solid var(--atf-thm-black);
	transform: skewX(-30deg);
}
.atf-site-header.atf-style1.atf-sticky-active {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 1;
    z-index: 990;
    visibility: visible;
    color: var(--atf-thm-black);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    box-shadow: 0px 8px 24px rgba(149, 157, 165, 0.2);
    -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;
}
.atf-site-header.atf-style1.atf-sticky-active .atf-main-menu.landing-page > nav > ul > li > a {
	color: var(--atf-thm-black);	
}
.atf-main-menu.landing-page > nav > ul > li > a {
	color: var(--atf-thm-white);
	
}
.atf-site-branding img {
    max-width: 150px;
    height: auto;
}
.atf-site-branding {
    font-size: 2rem;
}
.atf-main-menu nav ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease-out;
}
.atf-main-menu > nav > ul > li > a:active,
.atf-main-menu > nav > ul > li > a:focus,
.atf-main-menu > nav > ul > li > a:hover {
    color: var(--atf-thm-color);
}
.atf-main-menu > nav > ul > li {
    position: relative;
    display: inline-block;
    margin-right: 30px;
}
.atf-main-menu > nav > ul > li.menu-icon > a::before {
	content: "\f067";
	font-size: 10px;
	position: absolute;
	top: 50%;
	right: -12px;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	font-family: var(--atf--ff-fontawesome);
	font-weight: 900;
	 -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;
}
.atf-main-menu > nav > ul > li.menu-icon > a:hover::before {
	content: "\f068";
	opacity:1;
}
@media only screen and (max-width: 1199px) {
   .atf-main-menu > nav > ul > li.menu-icon > a::before {
		display:none;
	}
}

.atf-main-menu > nav > ul > li:last-child {
    margin-right: 0px !important;
}
.atf-main-menu > nav > ul > li > a {
    position: relative;
    font-size: 18px;
    font-weight: 500;
    padding: 36px 0;
    display: block;
    color: var(--atf-thm-black);
    text-transform: capitalize;
    -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;
    text-transform: capitalize;
}
/*-------------------------------
# dropdwon menu 
--------------------------------*/
.atf-main-menu > nav > ul > li .sub-menu li .sub-menu,
.atf-main-menu > nav > ul > li .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    padding: 10px 0;
    display: block;
    min-width: 220px;
    visibility: hidden;
    transform: scaleY(0);
    transform-origin: top center;
    background: var(--atf-thm-white);
    border-top: 5px solid var(--atf-thm-color);
    box-shadow: 0px 10px 30px 0px rgba(25, 25, 26, 0.1);
    z-index: 6;
    transition: all 0.3s ease-out;
}
.atf-main-menu > nav > ul > li .sub-menu li:hover > .sub-menu,
.atf-main-menu > nav > ul > li:hover > .sub-menu {
    transform: scaleY(1);
    visibility: visible;
}
.atf-main-menu > nav > ul > li .sub-menu li {
    position: relative;
    display: block;
}
.atf-main-menu > nav > ul > li .sub-menu li > a {
    font-weight: 500;
    padding: 3px 20px;
    display: block;
    transition: all 0.5s ease;
    text-transform: capitalize;
    text-align: left;
    position: relative;
    font-size: 16px;
    -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;
}
.atf-main-menu > nav > ul > li .sub-menu li:hover > a {
    padding-left: 40px;
    color: var(--atf-thm-color);
}
.atf-main-menu > nav > ul > li .sub-menu li > a::before {
	position: absolute;
	width: 10px;
	height: 10px;
	top: 50%;
	left: 20px;
	content: "";
	opacity: 0;
	visibility: hidden;
	transform: translateY(-50%);
	background: var(--atf-thm-color);
	-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: 50%;
}
.atf-main-menu > nav > ul > li .sub-menu li:hover > a::before {
	opacity: 1;
	visibility: visible;
}
.atf-main-menu > nav > ul > li .arrow {
	border: 1px solid var(--atf-thm-black);
	border-width: 0 2px 2px 0;
	display: inline-block;
	padding: 3px;
	-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: 0 0 1px 2px;
}
.atf-main-menu > nav > ul > li .down {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
.atf-main-menu > nav > ul > li:hover .arrow.down{
	transform:rotate(230deg);
	border: 1px solid var(--atf-thm-color);
	border-width: 0 2px 2px 0;
}
.atf-main-menu > nav > ul > li .sub-menu li .sub-menu {
	right: auto;
	left: 220px;
	top: 10%;
	border-top: none;
	border-left: 5px solid var(--atf-thm-color);
}
@media only screen and (max-width: 1199px) {
    .atf-main-menu > nav > ul > li {
        margin-right: 30px;
    }
    .atf-site-header.atf-style1 {
        padding: 15px 0;
    }
}
/*----------------------------------------*/
/*  Mobile Menu
/*----------------------------------------*/
.atf-main-menu-bars button {
    font-size: 18px;
    padding: 10px 15px;
    border-radius: 5px;
    color: var(--atf-thm-white);
    background-color: var(--atf-thm-color);
    transition: 0.3s;
}
.atf-hamburger {
    position: fixed;
    background: var(--atf-thm-white);
    width: 500px;
    right: 0;
    top: 0;
    padding: 50px 40px;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: 0.3s 0.3s ease-out;
    -moz-transition: 0.3s 0.3s ease-out;
    -ms-transition: 0.3s 0.3s ease-out;
    -o-transition: 0.3s 0.3s ease-out;
    transition: 0.3s 0.3s ease-out;
    overflow-y: scroll;
    overscroll-behavior-y: contain;
    scrollbar-width: none;
    z-index: 1088;
}
@media only screen and (max-width: 574px) {
    .atf-hamburger {
        width: 100% ! important;
        padding: 35px 30px;
    }
}
@media only screen and (max-width: 400px) {
    .atf-hamburger {
        width: 100% ! important;
        padding: 35px 30px;
    }
}
.atf-hamburger-open {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
}
.atf-hamburger-close-toggle {
    font-size: 30px;
    color: var(--atf-text-body);
}
.atf-hamburger-close-toggle:hover {
    color: var(--atf-thm-color);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 575px) {
    .atf-hamburger-header {
        margin-bottom: 40px;
		border-bottom: 1px solid var(--atf-border-1);
		padding-bottom: 30px;
    }
}
.atf-hamburger-title {
    font-size: 35px;
}
.atf-hamburger-info span {
    font-size: 16px;
    display: block;
    margin-bottom: 5px;
    color: var(--atf-thm-black);
}
.atf-hamburger-info span i {
    color: var(--atf-thm-color);
}
.atf-hamburger-sm-title {
    font-size: 25px;
    margin-bottom: 15px;
}
.atf-hamburger-social a {
    font-size: 14px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 8px;
    display: inline-block;
    color: var(--atf-thm-black);
    border: 1px solid rgba(2, 11, 24, 0.1);
    margin-right: 5px;
	transition: all 0.3s ease-out;
}
.atf-hamburger-social a:hover{
	color: var(--atf-thm-white);
	background:var(--atf-thm-color);
}
.atf-hamburger-overlay {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 888;
    width: 100%;
    height: 100%;
    visibility: hidden;
    opacity: 0;
    transition: 0.45s ease-in-out;
    background: rgba(24, 24, 24, 0.4);
}
.atf-hamburger-overlay-open {
    opacity: 0.7;
    visibility: visible;
}
/*----------------------------------------*/
/* Mobile menu css
/*----------------------------------------*/
.atf-hamburger-menu ul {
    list-style: none;
}
.atf-hamburger-menu ul li {
    position: relative;
}
.atf-hamburger-menu ul li > a {
    padding: 8px 0;
    display: block;
    font-size: 16px;
    font-weight: 500;
    -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;
}
.atf-hamburger-menu ul li > a:hover {
    color: var(--atf-thm-color);
}
.atf-hamburger-menu ul li:not(:last-child) > a {
    border-bottom: 1px solid rgba(1, 15, 28, 0.1);
}
.atf-hamburger-menu ul li.active > a {
    color: var(--atf-thm-color);
}
.atf-hamburger-menu ul li.active > .atf-menu-close {
    color: var(--atf-thm-black);
    border-color: var(--atf-thm-color);
}
.atf-hamburger-menu ul li.active > .atf-menu-close i {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
}
.atf-hamburger-menu ul li .sub-menu {
    display: none;
    padding-left: 10px;
}
.atf-hamburger-menu ul li .sub-menu.atf-mega-menu {
    padding-left: 0;
}
.atf-menu-close {
    position: absolute;
    right: 0;
    top: 7.5px;
    border: 1px solid rgba(1, 15, 28, 0.0);
    height: 30px;
    width: 30px;
    text-align: center;
    font-size: 12px;
    line-height: 29px;
    -webkit-transition: 0.3s 0.3s ease-out;
    -moz-transition: 0.3s 0.3s ease-out;
    -ms-transition: 0.3s 0.3s ease-out;
    -o-transition: 0.3s 0.3s ease-out;
    transition: 0.3s 0.3s ease-out;
}
.atf-menu-close:hover {
    border: 1px solid var(--atf-thm-black);
}
.atf-menu-close i {
    -webkit-transition: 0.3s 0.3s ease-out;
    -moz-transition: 0.3s 0.3s ease-out;
    -ms-transition: 0.3s 0.3s ease-out;
    -o-transition: 0.3s 0.3s ease-out;
    transition: 0.3s 0.3s ease-out;
}
/*----------------------------------------*/
/*  End Mobile menu Design
/*----------------------------------------*/
/*----------------------------------------*/
/*  Start Search Design
/*----------------------------------------*/
.atf-searching-area {
    position: fixed;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    height: 0%;
    width: 100%;
    background-color: var(--atf-thm-white);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    z-index: 1024;
    
}
.atf-searching-area.active {
    opacity: 1;
    visibility: visible;
	height: 100%;
}
.atf-searching-area .atf-searching-close-btn {
    position: absolute;
    top: 30px;
    right: 50px;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    border: 1px solid var(--atf-thm-color);
    background-color: var(--atf-thm-white);
    color: var(--atf-thm-color);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}
.atf-searching-area .atf-searching-form button:hover,
.atf-searching-area .atf-searching-close-btn:hover {
    background-color: var(--atf-thm-color);
	color: var(--atf-thm-white);
}

@media (max-width: 575px) {
    .atf-searching-area .atf-searching-close-btn {
        right: 30px;
    }
}
.atf-searching-area .atf-searching-form {
    display: flex;
    width: 500px;
}
@media (max-width: 575px) {
    .atf-searching-area .atf-searching-form {
        width: 300px;
    }
}
.atf-searching-area .atf-searching-form input {
    border: 1px solid var(--atf-border-1);
    border-right: none;
    flex-grow: 1;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    padding: 12px 18px;
    color: var(--atf-thm-black);
}
.atf-searching-area .atf-searching-form input:focus {
    border-color: var(--atf-thm-color);
}
.atf-searching-area .atf-searching-form button {
    width: 60px;
    background-color: var(--atf-thm-color);
    color: var(--atf-thm-white);
    display: flex;
    justify-content: center;
    align-items: center;
    border-color: var(--atf-thm-white);
}
.atf-header-bottom-right {
    gap: 25px;
}
.atf-header-1-info-icon {
	width: 50px;
	height: 50px;
	background: var(--atf-thm-black);
	text-align: center;
	line-height: 50px;
	border-radius: 50%;
	margin-right: 15px;
	font-size: 20px;
	color: var(--atf-thm-white);
}
.atf-header-1-info-text h4 {
	font-size: 16px;
	margin-bottom: 0;
}
.atf-header-1-info-call {
	font-size: 15px;
	font-weight:400;
}
.atf-searching-btn.style1 {
	background: var(--atf-grey-1);
	font-size: 18px;
	color: var(--atf-thm-color);
	border: 1px solid var(--atf-border-1);
	border-radius: 50%;
	width: 50px;
	height: 50px;
}
.atf-searching-btn.style2 {
	background: transparent;
	font-size: 18px;
	color: var(--atf-thm-color);
	border: none;
}
/*----------------------------------------*/
/*  02. END BOOTSTRAP NAVIGATION OVERRIDES
/*----------------------------------------*/
/*----------------------------------------*/
/*  03. START HOME DESIGN
/*----------------------------------------*/
.atf-align-center {
    display: flex;
    align-items: center;
    justify-content: center;
}
.atf-cover-bg {
    position: relative;
    z-index: 2;
}
.atf-cover-bg::before {
    content: "";
	width: 100%;
    height: 100%;
	top: 0;
    left: 0;
    position: absolute;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
}
.atf-hero-area.atf-cover-bg::before {
	content: "";
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.6);
	z-index: -1;
}
.atf-hero-content .sub-title {
	color: var(--atf-thm-black);
	background: var(--atf-thm-base);
	display: inline-block;
	border-radius: 5px;
	padding: 6px 45px;
	font-size: 16px;
	font-weight: 500;
	position: relative;
	margin-bottom:15px;
}
.atf-hero-content .sub-title::before {
	content: '';
	position: absolute;
	left: 17px;
	top: 15px;
	width: 12px;
	height: 12px;
	background: var(--atf-thm-color);
	border: 3px solid var(--atf-thm-white);
	border-radius: 50%;
}
.atf-hero-content .sub-title::after {
	content: '';
	position: absolute;
	right: 17px;
	top: 15px;
	width: 12px;
	height: 12px;
	background: var(--atf-thm-color);
	border: 3px solid var(--atf-thm-white);
	border-radius: 50%;
}
.atf-hero-content .title {
	font-size: 70px;
	color: var(--atf-thm-white);
	font-weight: 700;
	font-family: var(--atf-ff-heading);
	line-height: 1.2;
	letter-spacing: -2px;
}
.atf-hero-shape-1 {
	position: absolute;
	right: 0%;
	bottom: -50px;
	transform: translateX(-50%);
	animation: moving 3s infinite;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .atf-hero-content .title {
        font-size: 60px;
    }
}
.atf-hero-content .describtion {
    font-size: 18px;
    color: var(--atf-thm-white);
}
.atf-hero-btn .atf-themes-btn::after {
	background-color: var(--atf-thm-white);
}
.atf-hero-btn .atf-themes-btn:hover{
	color: var(--atf-thm-black);
}
/*----------------------------------------*/
/*  03. END HOME DESIGN
/*----------------------------------------*/
/*----------------------------------------*/
/*  START FEATURE DESIGN
/*--------------------------------------*/
.atf-feature-item {
	text-align: center;
	background: var(--atf-grey-7);
	padding: 50px 40px 35px;
	transition: all 0.3s ease-out;
	border-radius:0 40px 40px 40px;
	position:relative;
	z-index:1;
	-webkit-box-shadow: 0 4px 10px rgba(0,0,0,0.10);
	box-shadow: 0 4px 10px rgba(0,0,0,0.10);
}
.atf-feature-item:before{
	content:'';
	position:absolute;
	width:0%;
	height:100%;
	left:0;
	top:0;
	background: var(--atf-thm-black);
	transition: all 0.3s ease-out;
	z-index:-1;
	border-radius:0 40px 40px 40px;
}
.atf-feature-item:hover:before{
	width:100%;
}
.atf-feature-item:hover .describtion{
	color: var(--atf-rgb-white);
}
.atf-feature-item:hover .feature_title{
	color: var(--atf-thm-white);
}
.atf-feature-item:hover .describtion{
	color: hsl(0,0%,90%);
}
.atf-feature-icon span {
	font-size: 35px;
	color: var(--atf-thm-white);
	background: var(--atf-thm-color);
	width: 120px;
	height: 120px;
	line-height: 120px;
	margin-bottom:25px;
	display: inline-block;
	text-align: center;
	clip-path: polygon(50% 0%, 83% 12%, 100% 43%, 94% 78%, 68% 100%, 32% 100%, 6% 78%, 0% 43%, 17% 12%);
}
.feature_title {
	font-size: 22px;
	font-weight: 600;
	margin-bottom: 15px;
}
/*----------------------------------------*/
/*  START FEATURE DESIGN
/*--------------------------------------*/
/*----------------------------------------*/
/*  04. START ABOUT DESIGN
/*--------------------------------------*/
.atf-about-thum-img img{
	width:100%;
	border-radius:40px 0px 40px 40px;
}
.atf-about-experience-box {
	position: absolute;
	padding: 15px 30px;
	top: 15px;
	right: -35px;
	display: inline-block;
	background: var(--atf-thm-color);
	border-radius:15px 0px 15px 15px;
}
.atf-about-experience-box::before {
	position: absolute;
	width: 35px;
	height: 20px;
	right: 0;
	top: -20px;
	content: "";
	background: #ea8948;
	clip-path: polygon(-4px 20.00%, 0% 100%, 88.50% 100%);
}
.atf-about-experience-title {
	font-size: 50px;
	font-weight: 600;
	margin-bottom: 0;
	color: var(--atf-thm-white);
}
.atf-about-experience-content p {
	font-weight: 700;
	color: var(--atf-thm-white);
	line-height: 1.5;
	margin: 0;
}
.atf-about-service ul li {
	position: relative;
	list-style: none;
	font-weight: 600;
	padding-left: 30px;
	color: var(--atf-thm-black);
	margin-bottom: 10px;
}
.atf-about-service ul li i {
	position: absolute;
	color: var(--atf-thm-color);
	top: 7px;
	left: 0;
}
.atf-about-featured-item {
	border: 1px solid var(--atf-border-1);
	padding: 15px 30px;
	justify-content: center;
	border-radius: 0 20px;
}
.atf-about-featured-box{
	gap: 15px;
}
.atf-about-featured-title {
	font-weight: 600;
	font-size: 20px;
}
.atf-about-featured-icon span i {
	font-size: 45px;
	color: var(--atf-thm-color);
	margin-right: 15px;
}
.atf-about-1-info-icon {
	font-size: 20px;
	width: 60px;
	height: 60px;
	line-height: 60px;
	text-align: center;
	color: var(--atf-thm-white);
	border: 1px solid var(--atf-border-1);
	background: var(--atf-thm-black);
	border-radius: 50%;
	margin-right: 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;
}
.atf-about-1-info-title {
	font-size: 18px;
	font-weight: 600;
	color: var(--atf-thm-color);
}
.atf-about-user-box {
  position: absolute;
  width: 306px;
  height: 110px;
  bottom: 96px;
  left: -130px;
  padding: 40px 50px;
  border-radius: 15px;
  background-color: white;
  animation: atftranslateY2 3s infinite alternate;
  box-shadow: 0px 0px 60px 0px rgba(4, 23, 26, 0.06);
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .atf-about-user-box {
    left: -95px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .atf-about-user-box {
    left: 20px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .atf-about-user-box {
    left: -13px;
  }
}
@media (max-width: 575px) {
  .atf-about-user-box {
    bottom: 40px;
    left: -35px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .atf-about-user-box {
    left: -90px;
  }
}
.atf-about-user-icon {
	color: var(--atf-thm-white);
	background: var(--atf-thm-color);
	width: 50px;
	height: 50px;
	line-height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	border-radius: 50%;
}
.atf-about-user-icon {
  margin-right: 20px;
}
.atf-about-user-content p {
  margin-bottom: 0;
}
.atf-about-user-title {
  font-weight: 600;
  font-size: 22px;
  color: var(--atf-thm-black);
}
.atf-about-shape-3 {
	position: absolute;
	right: 0%;
	bottom: -100px;
	transform:scale(0.5);
	animation: moving 3s infinite;
}
.atf-about-shape-3 img {
	transform:scale(0.3);
}
.atf-about-shape-1{
	position:absolute;
	right:120px;
	top:50%;
	animation: spin-1 5s infinite;
}
/*----------------------------------------*/
/*  04. START ABOUT DESIGN
/*--------------------------------------*/
/*----------------------------------------*/
/*  05. START SERVICE DESIGN
/*--------------------------------------*/
.atf-service-shape-1 {
	position: absolute;
	right: 0px;
	top: -30px;
	transform: scale(0.5);
	animation: movingX 8s infinite;
}
.atf-service-shape-2{
	position: absolute;
	left: 0px;
	top: 80px;
	transform: scale(0.5);
	animation: zoom 8s infinite;
}
.atf__service_slider_active .atf-service-box-area{
	margin: 0 15px;
}
.atf-service-item {
	background: var(--atf-thm-white);
	border-radius: 0 40px 40px 40px;
	width: 100%;
	padding: 30px 40px;
	transition: 1.3s;
	gap: 30px;
}
.atf-service-thumb {
  overflow: hidden;
}
.atf-service-thumb img {
	border-radius: 40px;
	width: 100%;
	transition: 1.3s;
}
.atf-service-box-area:hover .atf-service-thumb img {
  transform: scale(1.2);
  border-radius: 40px;
}
.atf-service-icon {
	font-size: 45px;
	color: var(--atf-thm-color);
	margin-bottom: 10px;
	display: inline-block;
}
.atf-service-btn {
	color: var(--atf-thm-color);
	font-weight: 600;
}
.atf-service-title {
	transition: all 0.3s ease-out;
	font-size: 22px;
	margin-bottom: 15px;
	font-weight:600;
}
.atf-service-title:hover {
	color: var(--atf-thm-color);
}
.atf-service-btn a {
	color: var(--atf-thm-black);
	font-size: 15px;
	font-weight: 700;
	transition:all 0.3s ease-out;
}
.atf-service-box:hover .atf-service-btn a {
	color: var(--atf-thm-color);
}
/*----------------------------------------*/
/*  05. END SERVICE DESIGN
/*--------------------------------------*/
  /**************************************
 * 06. START GALLERY DESIGN
 *************************************/
.atf-gallery-area-plr {
	padding-right: 50px;
	padding-left: 50px;
}
.atf-portfolio-item {
	position: relative;
	overflow: hidden;
	border-radius: 15px;
	margin:0 10px;
}
.atf-portfolio-item:hover .atf-portfolio-content {
	left: 40px;
	opacity: 1;
	visibility: visible;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .atf-portfolio-item:hover .atf-portfolio-content {
    left: 20px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .atf-portfolio-item:hover .atf-portfolio-content {
    left: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .atf-portfolio-item:hover .atf-portfolio-content {
    left: 15px;
  }
}
.atf-portfolio-item:hover .atf-portfolio-icon {
	left: 0px;
	opacity: 1;
	visibility: visible;
}
.atf-portfolio-item:hover .atf-portfolio-thumb a::before {
  opacity: 0.6;
  visibility: visible;
}
.atf-portfolio-item:hover .atf-portfolio-thumb img {
  filter: saturate(0);
  transform: scale(1.1);
}
.atf-portfolio-content {
	position: absolute;
	left: -40px;
	bottom: 30px;
	opacity: 0;
	visibility: hidden;
	-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;
	z-index: 2;
}
.atf-portfolio-thumb {
  border-radius: 15px;
}
.atf-portfolio-thumb a {
	position: relative;
	display: block;
	overflow: hidden;
	border-radius: 15px;
}
.atf-portfolio-thumb a::before {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	content: "";
	border-radius: 15px;
	background-color: var(--atf-thm-black);
	opacity: 0;
	visibility: hidden;
	-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;
	z-index: 1;
}
.atf-portfolio-thumb img {
  width: 100%;
  border-radius: 15px;
  transition: 1.4s;
}
.atf-portfolio-icon {
	position: absolute;
	top: 0;
	left: -20%;
	border-radius: 0;
	opacity: 0;
	visibility: hidden;
	-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;
	z-index: 2;
}
.atf-portfolio-icon a {
	width: 60px;
	height: 40px;
	font-size: 16px;
	line-height: 35px;
	text-align: center;
	display: inline-block;
	color: var(--atf-thm-white);
	background: var(--atf-thm-color);
	border-radius: 0 0 5px;
	font-weight:700;
}
.atf-portfolio-title {
	font-size: 22px;
	font-weight: 600;
	display: inline;
	color: var(--atf-thm-white);
	-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;
}
.atf-portfolio-title:hover {
	color: var(--atf-thm-color);
}
.atf-portfolio-subtitle {
	display: block;
	color: var(--atf-thm-white);
	margin-bottom: 5px;
}
/**************************************
 * 06.END GALLERY DESIGN
 *************************************/
  /**************************************
 * 07. START CHOOSE DESIGN
 *************************************/  
.atf-single-choose {
	transition: .3s ease-out;
	-webkit-transition: .3s ease-out;
	margin-top: 30px;
	gap: 30px;
}
.atf-choose-icon span {
	font-size: 35px;
	color: var(--atf-thm-white);
	background: var(--atf-thm-color);
	width: 120px;
	height: 120px;
	line-height: 120px;
	display: inline-block;
	text-align: center;
	clip-path: polygon(50% 0%, 83% 12%, 100% 43%, 94% 78%, 68% 100%, 32% 100%, 6% 78%, 0% 43%, 17% 12%);
}
.atf-choose-title {
	font-size: 22px;
	color: var(--atf-thm-black);
	font-weight: 600;
	transition: .3s ease-in-out;
	-webkit-transition: .3s ease-out;
	margin-bottom: 15px;
}
.atf-choose-img img {
	border-radius: 0px 40px 40px 40px;
	margin: 0 auto;
	justify-content: center;
	display: flex;
}
.atf-choose-img::before {
	position: absolute;
	width: 100%;
	height: 420px;
	right: -20%;
	top: 0%;
	content: "";
	opacity:0.3;
	background: var(--atf-thm-color);
	border-radius: 5px;
	z-index: -1;
	transform: skewX(-45deg);
}
.atf-choose-shape{
	position:absolute;
	right:30px;
	bottom:40px;
	animation: atftranslateY2 3s infinite alternate;
}
.atf-choose-shape img{
	transform:scale(0.8);
}
 /**************************************
 * 07. END CHOOSE DESIGN
 *************************************/
  /**************************************
 * 08. START PPROCESS DESIGN
 *************************************/
 .atf-work-content {
	background: var(--atf-grey-7);
	padding: 40px 40px 65px;
	border-radius: 0 40px 40px 40px;
	-webkit-box-shadow: 0 4px 10px rgba(0,0,0,0.10);
	box-shadow: 0 4px 10px rgba(0,0,0,0.10);
}
.atf-single-work .work_title {
	font-weight: 600;
	font-size: 22px;
	transition: .3s ease-in-out;
	-webkit-transition: .3s ease-out;
	margin-bottom: 15px;
}
.atf-work-img img {
	background: var(--atf-thm-white);
	width: 120px;
	height: 120px;
	padding: 7px;
	border-radius: 50%;
	margin-top: -65px;
	position:relative;
}
.atf_work_number {
	position: absolute;
	bottom: -10px;
	left: 50%;
	font-size: 16px;
	color: var(--atf-thm-color);
	background: var(--atf-thm-white);
	border-radius: 50%;
	font-weight: 700;
	transition: .3s ease-out;
	-webkit-transition: .3s ease-out;
	z-index: 1;
	box-shadow: 0 0 10px rgba(0,0,0,0.3);
	transform: translateX(-50%);
	width: 40px;
	height: 40px;
	line-height: 40px;
}
.atf-single-work:hover .atf_work_number{
	color: var(--atf-thm-white);
	background: var(--atf-thm-color);
}
 /**************************************
 *08. END PPROCESS DESIGN
 *************************************/
 /*----------------------------------------*/
/*09.START COUNTER DESIGN
/*--------------------------------------*/
.atf-pattern-area{
	position:relative;
}
.atf-pattern-area::after {
	content: '';
	width: 100%;
	height: 20px;
	border-top: 28px dotted var(--atf-thm-white);
	position: absolute;
	left: 0;
	bottom: -15px;
}
.atf-pattern-area::before {
	content: '';
	width: 100%;
	height: 20px;
	border-bottom: 28px dotted var(--atf-thm-white);
	position: absolute;
	left: 0;
	top: -15px;
}
.atf-funfact-item{
	border-right:1px solid var(--atf-border-1);
}
.atf-funfact-wrapp .row [class*="col-"]:last-child .atf-funfact-item {
	border-right: 0;
}	
.atf-funfact-title {
	color: var(--atf-thm-color);
	font-size: 60px;
	margin-bottom:0px;
	font-weight:600;
}
.atf-funfact-item p {
	font-weight:600;
}
/*----------------------------------------*/
/* 09. END COUNTER DESIGN
/*--------------------------------------*/
/*----------------------------------------*/
/* 10. START BLOG DESIGN
/*--------------------------------------*/
.atf-blog-item {
	position: relative;
	background: var(--atf-grey-7);
	-webkit-box-shadow: 0 4px 10px rgba(0,0,0,0.10);
	box-shadow: 0 4px 10px rgba(0,0,0,0.10);
}
@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), (max-width: 575px) 	
	{
    .atf-blog-item {
        margin-bottom: 30px;
    }
}
.atf-blog-item:hover .atf-blog-meta {
  background: var(--atf-thm-color);
}
.atf-blog-item:hover .atf-blog-meta-date {
  color:  var(--atf-thm-white);
}
.atf-blog-item:hover .atf-blog-meta-action {
  color:  var(--atf-thm-white);
}
.atf-blog-item:hover .atf-blog-thumb img {
  transform: scale(1.2);
}
.atf-blog-thumb {
  overflow: hidden;
}
.atf-blog-thumb img {
  width: 100%;
  transition: 1.3s;
  border-radius:0px;
}
.atf-blog-meta {
	padding: 10px 30px;
	background: 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;
	position:relative;;
}
.atf-blog-meta-date::before {
	position: absolute;
	width: 1px;
	height: 70%;
	background: var(--atf-border-1);
	left: 50%;
	top: 8px;
	content: '';
}
.atf-blog-meta-date {
	-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;
}
.atf-blog-meta-date span {
	font-weight: 500;
	margin: 0;
	color: var(--atf-thm-white);
}
.atf-blog-meta-action {
	font-weight: 700;
	color: var(--atf-thm-white);
	-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;
}
.atf-blog-box-area {
	padding: 25px;
}
.atf-blog-box{
	gap:30px;
	color: var(--atf-thm-color);
	font-weight:500;
}
.atf-blog-title {
	font-size: 22px;
	font-weight: 600;
	line-height: 1.4;
	margin: 0;
	display: inline;
}
/*----------------------------------------*/
/*  11. START NEWSLETTER DESIGN
/*--------------------------------------*/
.atf-single-newsletter {
    position: relative;
}
.atf-single-newsletter .atf_contact_input input {
    background: transparent;
    color: var(--atf-thm-white);
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    font-size: 16px;
    border-radius: 5px;
    display: inline-block;
    padding-left: 15px;
}
.atf-single-newsletter .atf_contact_input input:focus {
    box-shadow: none;
    outline: 0 none;
    background: transparent;
    border-color: inherit;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--atf-thm-color);
}
.atf-single-newsletter .atf_contact_input {
    margin-bottom: 0;
}
.atf-single-newsletter .subcribe-btn {
	position: absolute;
	right: 0px;
	top: 0px;
	font-size: 15px;
	color: var(--atf-thm-white);
	background: var(--atf-thm-color);
	padding: 14px;
}
/*----------------------------------------*/
/* 11. END NEWSLETTER DESIGN
/*--------------------------------------*/
/*----------------------------------------*/
/*  12. START CONTACT DESIGN
/*--------------------------------------*/
.atf-contact-form .button {
    margin: 0;
}
.atf-contact-form label {
    font-weight: 600;
    color: var(--atf-thm-black);
    font-size: 18px;
}
.atf-contact-form .atf_contact_input input,
.atf-contact-form .atf_contact_input textarea {
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out 0s;
	-webkit-transition: all 0.3s ease-in-out 0s;
    margin: 12px 0;
    padding-left: 20px;
}
.atf_contact_input .nice-select{
	-webkit-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
}
.atf_contact_input .nice-select:focus {
    box-shadow: none;
    border: 1px solid var(--atf-thm-color);
}
.atf-contact-form .atf_contact_input input:focus,
.atf-contact-form .atf_contact_input textarea:focus {
    box-shadow: none;
    border: 1px solid var(--atf-thm-color);
}
.atf-contact-form .atf_contact_input textarea {
    height: 120px;
    width: 100%;
}
.atf-contact-btn .atf-themes-btn {
    margin-top: 10px;
    text-align: center;
}
.atf-contact-details {
	border-right: 1px solid rgba(0,0,0,0.1);
}
.border-none{
	border-right:inherit;
	padding-right:0px;
	margin-right:0px;
}
.atf-contact-icon {
	width: 120px;
	height: 90px;
	line-height: 80px;
	background: var(--atf-grey-2);
	font-size: 30px;
	color: var(--atf-thm-color);
	text-align: center;
	border-radius: 5px;
	margin: 0 auto;
	margin-bottom: 20px;
}
.atf-contact-icon.style2{
	margin: inherit;
	margin-bottom: 0px;
}
.atf-contact-content span{
	color: var(--atf-text-body);
}
.atf-choose-list.nice-select {
	border-radius: 0;
	width: 100%;
	background: var(--atf-thm-white);
	border: 1px solid #d5d8db;
	color: var(--atf-thm-black);
	height: 60px;
	padding-left: 15px;
}
.atf_contact_input .nice-select {
	height: 55px;
	line-height: 55px;
	border-radius: 10px;
	border: 1px solid #d5d8db;
	color: var(--atf-text-body);
	float: none;
	padding: 0 20px;
	font-size: 16px;
	margin: 10px 0;
}
.atf_contact_input .nice-select::after {
	right: 20px;
}
.datepicker td, .datepicker th {
	width: 40px;
	height: 35px;
	color: var(--atf-text-body);
}
.atf-checkbox-login .checkbox-custom-label{
	font-weight:400;
	color: var(--atf-text-body);
}
.form-message {
    color: var(--atf-thm-black);
}
.middle-items {
	display: -webkit-flex;
	display: -ms-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.has-height-lg {
	min-height: 500px;
}
/*----------------------------------------*/
/* 12. END CONTACT DESIGN
/*--------------------------------------*/
/*----------------------------------------*/
/*  13. START FOOTER DESIGN
/*--------------------------------------*/
.atf-cta-title {
	line-height: 1.4;
	font-size: 36px;
	font-weight:600;
}
.atf-cta-area-1 .atf-cover-bg {
	border-radius: 50px;
	z-index: 2;
}
.atf-cta-area-1 .atf-cover-bg::before {
	border-radius: 50px;
	background: rgba(0, 0, 0, 0.5);
}
.atf-footer-widget-logo img{
	margin-top:-15px;
}
@media (max-width: 575px) {
  .atf-footer-widget {
    margin-bottom: 40px;
  }
}
.atf-footer-widget-title {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  display: inline-block;
  color: var(--atf-thm-white);
  margin-bottom: 50px;
}
@media (max-width: 575px) {
  .atf-footer-widget-title {
    margin-bottom: 30px;
  }
}
.atf-footer-widget-menu ul li {
  list-style-type: none;
  margin-bottom: 12px;
}
.atf-footer-widget-menu ul li a {
	position: relative;
	font-size: 16px;
	color: hsl(0,0%,80%);
	font-weight: 600;
	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;
}
.atf-footer-widget-menu ul li a::before {
	position: absolute;
	width: 7px;
	height: 7px;
	top: 50%;
	left: -15px;
	content: "";
	opacity: 0;
	visibility: hidden;
	border-radius: 50%;
	-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;
	transform: translateY(-50%);
	background: var(--atf-thm-white);
}
.atf-footer-widget-menu ul li a:hover {
  padding-left: 15px;
  color: var(--atf-thm-white);
}
.atf-footer-widget-menu ul li a:hover::before {
  opacity: 1;
  visibility: visible;
  left: 0;
}
.atf-footer-widget-social ul li {
  list-style-type: none;
  display: inline-block;
  margin-right: 16px;
}
.atf-footer-widget-social ul li:last-child {
  margin-right: 0;
}
.atf-footer-widget-social ul li a {
	width: 40px;
	height: 40px;
	line-height: 40px;
	font-size: 16px;
	text-align: center;
	display: inline-block;
	border-radius: 10px;
	background: var(--atf-thm-white);
	-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;
}
.atf-footer-widget-social ul li a:hover {
  color: var(--atf-thm-white);
  background: var(--atf-thm-color);
}
.atf-footer-widget-info {
  gap: 25px;
}
.atf-footer-widget-info a {
	position: relative;
	font-weight: 600;
	font-size: 16px;
	color: var(--atf-thm-white);
	display: block;
}
.atf-footer-widget-info-location p {
	color: var(--atf-thm-white);
	margin: 0;
	font-size: 16px;
	font-weight: 600;
}
.atf-footer-widget-info span {
	background: var(--atf-thm-white);
	color: var(--atf-thm-color);
	padding: 12px 20px;
	border-radius: 10px;
	font-size: 20px;
}
.atf-footer-widget-info a::after {
  position: absolute;
  width: 0;
  height: 1px;
  bottom: 0;
  left: 0;
  content: "";
  opacity: 0;
  visibility: hidden;
  background: #9fa8ae;
  -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;
}
.atf-footer-widget-info a:hover::after {
  width: 100%;
  opacity: 1;
  visibility: visible;
}
.atf-footer-widget.footer-col-4-3 h3 {
	font-size: 22px;
	color: var(--atf-thm-white);
	font-weight: 600;
	margin-top: 5px;
	line-height: 1.5;
}
.atf-footer-widget.footer-col-4-3 span {
	color: hsl(0,0%,80%);
	font-weight: 500;
}
.atf-footer-widget-text {
	margin-bottom: 25px;
}
.atf-footer-widget-text p {
	font-weight: 600;
	margin-right: 40px;
	color: var(--atf-thm-white);
}
.atf-copyright-style {
  background: #1c2e3c;
}
.atf-copyright-text p {
	font-weight: 500;
	color: var(--atf-rgb-white);
}
.atf-copyright-text p a {
  color: var(--atf-thm-white);
}
.atf-footer-widget.footer-col-4-2 {
  margin-left: -40px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.atf-footer-widget.footer-col-4-2 {
		display: flex;
		justify-content: center;
	}
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
	.atf-footer-widget.footer-col-4-2 {
		margin-left: 0;
	}
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
	.atf-footer-widget {
		margin-bottom:40px;
	}
}
.atf-footer-widget.footer-col-4-3 {
	margin-left: 10px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .atf-footer-widget.footer-col-4-3 {
    margin-left: 0;
  }
}
.atf-footer-widget-mail{
	gap:20px;
	background:var(--atf-grey-8);
}
.atf-footer-widget-mail span {
	padding: 5px 8px;
	background: var(--atf-thm-white);
	color: var(--atf-thm-color);
}
.atf-footer-widget-mailaddress p{
	margin:0;
}
/*----------------------------------------*/
/*  13. END FOOTER DESIGN
/*--------------------------------------*/
/*
* -------------------------------------------
* START SLICK DESIGN
* -------------------------------------------
*/
.slick-arrow-2 .slick-arrow {
    cursor: pointer;
    position: absolute;
    top: -120px;
    height: 60px;
    width: 60px;
    line-height: 58px;
    display: block;
    left: auto;
    right: 100px;
    border: 1px solid;
    text-align: center;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 50%;
}
.slick-arrow-2 .slick-arrow:hover {
    background-color: var(--atf-thm-color);
    border-color: var(--atf-thm-color);
    color: var(--atf-thm-white) !important;
}

.slick-arrow-2 .slick-next {
    right: 15px;
    background-color: var(--atf-thm-white);
    border-color: var(--atf-thm-color);
    color: var(--thm-color) !important;
}

.slick-arrow-2 .slick-prev {
    background-color: var(--atf-thm-color);
    border-color: var(--atf-thm-color);
    color: var(--atf-thm-white) !important;
}

/* slick-arrow */
.slick-arrow {
    cursor: pointer;
    z-index: 3;
}

/* slick-arrow-1 */
.slick-arrow-1 .slick-arrow {
    background-color: var(--atf-thm-white);
    cursor: pointer;
    position: absolute;
    top: 50%;
    left: 15px;
    right: auto;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    line-height: 48px;
    display: block;
    border: 1px solid var(--atf-thm-color);
    border-radius: 50%;
    text-align: center;
    transition: all 0.5s ease-in-out 0s;
    font-size: 20px;
    color: var(--thm-color) !important;
    z-index: 1;
    opacity: 0;
    visibility: visible;
}
.slick-arrow-1 .slick-arrow:hover {
    background-color: var(--atf-thm-color);
    border-color: var(--atf-thm-color);
    color: var(--atf-thm-white) !important;
}

.slick-arrow-1 .slick-next {
    right: 15px;
    left: auto;
}

.slick-arrow-1:hover .slick-arrow {
    opacity: 1;
    visibility: visible;
}

.slick-arrow-1-inner.slick-arrow-1:hover .slick-arrow {
    left: 50px;
    right: auto;
}

.slick-arrow-1-inner.slick-arrow-1:hover .slick-next {
    right: 50px;
    left: auto;
}

@media (min-width: 1350px) {
    .slick-arrow-1:hover .slick-arrow {
        left: -50px;
        right: auto;
    }
    .slick-arrow-1:hover .slick-next {
        right: -50px;
        left: auto;
    }
}
/* ----------------------------------------------------
    Slick Slider Dots, Arrow
---------------------------------------------------- */
/* Slick dots */
.slick-dots {
    margin: 30px 0 0px;
    padding: 0;
    display: block;
    text-align: center;
    line-height: 1;
}
.slick-dots li {
    display: inline-block;
    list-style: none;
    display: inline-block;
    font-size: 0;
    height: 10px;
    width: 10px;
    border-radius: 100%;
    margin-right: 10px;
    background-color: var(--atf-thm-color);
    cursor: pointer;
    margin-top: 0;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
.slick-dots li button {
    display: none;
}
.slick-dots li:hover,
.slick-dots li.slick-active {
    background-color: var(--atf-thm-color);
    height: 15px;
    width: 15px;
    margin-bottom: -2px;
}
/*
* ------------------------------------------
* END SLICK DESIGN
* -----------------------------------------**/
/*----------------------------------------*/
/*Animations
/*----------------------------------------*/
@keyframes stickyDown {
  0% {
    margin-top: -150px;
  }
  100% {
    margin-top: 0;
  }
}
@-webkit-keyframes movingX {
  0% {
    left: 100%;
  }
  100% {
    left: -25%;
  }
}
@keyframes movingX {
  0% {
    left: 100%;
  }
  100% {
    left: -25%;
  }
}
@-webkit-keyframes spin-1 {
  0% {
    transform: rotate(10deg);
  }
  100% {
    transform: rotate(-10deg);
  }
}
@-moz-keyframes spin-1 {
  0% {
    transform: rotate(10deg);
  }
  100% {
    transform: rotate(-10deg);
  }
}
@-ms-keyframes spin-1 {
  0% {
    transform: rotate(10deg);
  }
  100% {
    transform: rotate(-10deg);
  }
}
@keyframes spin-1 {
  0% {
    transform: rotate(10deg);
  }
  100% {
    transform: rotate(-10deg);
  }
}
@keyframes moving {
  0% {
    transform: translatey(0px);
  }
  50% {
    transform: translatey(-20px);
  }
  100% {
    transform: translatey(0px);
  }
}
@keyframes zoom {
  0% {
    transform: scale(0.5);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.5);
  }
}
@keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }
  70% {
    -webkit-box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
@keyframes rotate2 {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes icon-bounce {
  0%, 100%, 20%, 50%, 80% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -o-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  60% {
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    -o-transform: translateY(-5px);
    transform: translateY(-5px);
  }
}
@keyframes atftranslateX2 {
  0% {
    -webkit-transform: translateX(-30px);
    -moz-transform: translateX(-30px);
    -ms-transform: translateX(-30px);
    -o-transform: translateX(-30px);
    transform: translateX(-30px);
  }
  100% {
    -webkit-transform: translateX(20px);
    -moz-transform: translateX(20px);
    -ms-transform: translateX(20px);
    -o-transform: translateX(20px);
    transform: translateX(20px);
  }
}
@keyframes atftranslateY2 {
  0% {
    -webkit-transform: translateY(30px);
    -moz-transform: translateY(30px);
    -ms-transform: translateY(30px);
    -o-transform: translateY(30px);
    transform: translateY(30px);
  }
  100% {
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    -o-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}
@keyframes atfswing {
  0% {
    -webkit-transform: rotate(6deg);
    -moz-transform: rotate(6deg);
    -ms-transform: rotate(6deg);
    -o-transform: rotate(6deg);
    transform: rotate(6deg);
  }
  100% {
    -webkit-transform: rotate(-6deg);
    -moz-transform: rotate(-6deg);
    -ms-transform: rotate(-6deg);
    -o-transform: rotate(-6deg);
    transform: rotate(-6deg);
  }
}
@keyframes borderanimate2 {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
  }
  60% {
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(2.5);
    opacity: 0;
  }
}
@keyframes atf-arrow {
  49% {
    transform: translateX(30%);
  }
  50% {
    opacity: 0;
    transform: translateX(-30%);
  }
  51% {
    opacity: 1;
  }
}

.atf-site-logo {
    padding: 8px 0;
}
.atf-site-logo img {
    max-height: 55px;
    width: auto;
}

.atf-site-header .row {
    justify-content: space-between;
    align-items: center;
}

.atf-site-slogan h2 {
    font-family: 'Playfair Display', serif; 
    font-size: 20px;
    font-weight: 600;
    color: #222;  
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.slogan-animated {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: #ff6600; 
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0% {
        text-shadow: 0 0 5px #ff6600, 0 0 10px #ff944d, 0 0 20px #ffaa66;
        transform: scale(1);
    }
    50% {
        text-shadow: 0 0 20px #ff944d, 0 0 30px #ffaa66, 0 0 40px #ffcc99;
        transform: scale(1.05);
    }
    100% {
        text-shadow: 0 0 5px #ff6600, 0 0 10px #ff944d, 0 0 20px #ffaa66;
        transform: scale(1);
    }
}

.atf-about-shape-1,
.atf-about-shape-3 {
    position: absolute;      
    z-index: 0;             
    pointer-events: none;   
}

.atf-about-content-wrapp,
.atf-section-title,
.atf-about-service,
.atf-about-action {
    position: relative;     
    z-index: 1;             
}

.atf-feature-item {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 25px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.atf-feature-content {
    flex-grow: 1; 
}

.atf-service-box-area {
    height: 100%;
}

.atf-service-item {
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.atf-service-thumb img {
    width: 100%;
    height: 250px; 
    object-fit: cover; 
    border-radius: 8px;
}

.atf-service-thumb img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.atf-single-work {
  min-height: 350px;
}
