/*
|----------------------------------------------------------------------
| Template Name:  TemplateBundle – Premium HTML Website Template Collection
| Author: Themesfamily
| Developer: Themesfamily
| Description: This is Multi Business and Finance, Consultant 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
	14. START CTA DESIGN
	15. START FOOTER DESIGN
  =============================================================*/
/*----------------------------------------*/
/*  01. GENERAL STYLE
/*----------------------------------------*/
/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Bakbak+One&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&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: "Lato", sans-serif;
    --atf-ff-heading: "Bakbak One", sans-serif;
    --atf-ff-fontawesome: "Font Awesome 7 free";
    /**
  @color declaration
  */
    --atf-thm-white: #ffffff;
    --atf-thm-black: #333333;
    --atf-thm-color: #2f4783; 
    --atf-thm-base: #FABC2A;
    --atf-grey-1: #f9f9f9;
    --atf-grey-2: #f5f5f5;
    --atf-grey-3: #f6f6f6;
    --atf-grey-4: #f7f7f7;
    --atf-grey-5: #f4f4f4;
    --atf-grey-6: #F0F3FA;
    --atf-grey-7: #E1E6F4;
    --atf-grey-8: #D2DAEF;
	--atf-text-body:#6b6b6b;
	--atf-border-1: #dddddd;
    --atf-rgb-white: rgba(255,255,255,0.7);  
    --atf-gradient: linear-gradient(to right, #2f4783 0%, #44619d 60%, #83A0CE 100%); 
}
* {
    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: 400;
    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;
}
@media only screen and (max-width:767px) {
	h3 {
		font-size: 20px !important;
	}
}
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;
}
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);
	border-radius: 15px;
}
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: 14px;
    opacity: 1;
}

*::placeholder {
    color: var(--atf-thm-color);
    font-size: 14px;
    opacity: 1;
}

.z-index-1 {
    position: relative;
    z-index: 2;
}
.atf-title-hover {
 background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}
.atf-title-hover:hover {
  color: var(--atf-thm-color);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--atf-thm-color) 0%, var(--atf-thm-color) 100%);
}
/*---------------------------------
   COMMON CLASSES
---------------------------------*/
.fix {
    overflow: hidden;
}
.clear {
    clear: both;
}
.p-relative {
    position: relative;
}
.p-absolute {
    position: absolute;
}
.atf_attach_bg_1 {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.bg_fixed {
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
/* Custom Cursor */
.cursor_body {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
}

.cursor_body .cursor-in,
.cursor_body .cursor-out {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  pointer-events: none;
  will-change: transform;
}

/* Inner dot */
.cursor_body .cursor-in {
  width: 10px;
  height: 10px;
  background-color: var(--atf-thm-color);
  transition: all 0.25s ease-out;
}

/* Outer ring */
.cursor_body .cursor-out {
  width: 40px;
  height: 40px;
  border: 1px solid var(--atf-thm-color);
  opacity: 0.5;
  transition: all 0.2s ease;
}  
.page-wrapper {
    position: relative;
    margin: 0 auto;
    width: 100%;
    min-width: 270px;
	overflow:hidden;
}
.black-bg {
    background-color: var(--atf-thm-black);
}
.color-bg {
    background-color: var(--atf-thm-color);
}
.grey-bg-1 {
    background-color: var(--atf-grey-1);
}
.grey-bg-2 {
    background-color: var(--atf-grey-2);
}
.grey-bg-3 {
    background-color: var(--atf-grey-3);
}
.grey-bg-4 {
    background-color: var(--atf-grey-4);
}
.grey-bg-6 {
    background-color: var(--atf-grey-6);
}
.grey-bg-7 {
    background-color: var(--atf-grey-7);
}
.grey-bg-8 {
    background-color: var(--atf-grey-8);
}
.dark-gradient {
    background: linear-gradient(to right, #2f4783 0%, #44619d 60%, #83A0CE 100%); 
}
.bg-half-left {
	position: absolute;
	height: 100% !important;
	width: 50%;
	right: 0;
	top: 0;
	object-fit: cover;
	overflow: hidden;
	border-radius:0;
}
@media only screen and (max-width: 991px) {
	.bg-half-left {
		display:none;
	}
}
/*---------------------------------
 STAR PRELOADER
---------------------------------*/
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  overflow: hidden;
  z-index: 99999;
}
.preloader svg {
  position: absolute;
  bottom: 0;
  height: 110vh;
  width: 100vw;
  fill: var(--atf-thm-color);
}

.preloader .loader-inner .loaded {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--atf-thm-white);
  text-transform: uppercase;
  letter-spacing: 8px;
  z-index: 99;
}

.preloader .loader-inner .loaded span {
  animation: loader-slide 1s infinite alternate;
}

.preloader .loader-inner .loaded span:nth-child(1) {
  animation-delay: 0s;
}

.preloader .loader-inner .loaded span:nth-child(2) {
  animation-delay: 0.1s;
}

.preloader .loader-inner .loaded span:nth-child(3) {
  animation-delay: 0.2s;
}

.preloader .loader-inner .loaded span:nth-child(4) {
  animation-delay: 0.3s;
}

.preloader .loader-inner .loaded span:nth-child(5) {
  animation-delay: 0.4s;
}

.preloader .loader-inner .loaded span:nth-child(6) {
  animation-delay: 0.5s;
}

.preloader .loader-inner .loaded span:nth-child(7) {
  animation-delay: 0.6s;
}

@keyframes loader-slide {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*---------------------------------
 END PRELOADER
---------------------------------*/
/*---------------------------------
 START BTN
---------------------------------*/
.atf-themes-btn {
	text-transform: capitalize;
	position: relative;
	overflow: hidden;
	z-index: 1;
	transition: all 0.6s ease 0s;
	color: var(--atf-thm-white);
	border: 1px solid var(--atf-thm-base);
	display: inline-block;
	padding: 15px 40px;
	border-radius: 30px;
	font-weight: 500;
}
.atf-themes-btn:before{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
	height:100%;
    z-index: -1;
    transition: all 0.6s ease 0s;
	background: var(--atf-thm-base);
}
.atf-themes-btn.style1::after {
	content: "";
	position: absolute;
	bottom: 0;
	right: 0;
	width: 30%;
	height: 100%;
	z-index: -1;
	transition: all 0.6s ease 0s;
	background: var(--atf-thm-base);
	border-left: 1px solid var(--atf-border-1);
}
.atf-themes-btn:hover:before{
    width: 100%;
}
.atf-themes-btn:hover{
    color:var(--atf-thm-black);
}
@media only screen and (max-width: 479px) {
    .atf-themes-btn{
        margin-bottom: 15px;
    }
}
.atf-themes-btn .icon {
	display: inline-block;
	color: var(--atf-thm-black);
}
.atf-themes-btn:hover  .icon {
  animation: bounce-up 0.3s ease-in-out 1;
}
/* home-two-btn */
.atf-themes-btn.hometwo{
	border: 1px solid var(--atf-thm-color);
}
.atf-themes-btn.hometwo:before{
	background: var(--atf-thm-color);
}
.atf-themes-btn.hometwo:hover{
    color:var(--atf-thm-white);
}
.atf-themes-btn.hometwo .icon {
	display: inline-block;
	color: var(--atf-thm-black);
}
.atf-themes-btn.hometwo:hover  .icon {
  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: 400;
	font-size: 48px;
	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: 36px;
		letter-spacing: 0px;
		z-index: 1;
		position: relative;
	}
	.atf-section-title.mb-50{
		margin-bottom:30px;
	}
}
@media screen and (min-width:320px) and (max-width:575px) {
	.atf-section-title .title {
		font-size: 28px;
		letter-spacing: 0px;
		line-height: 1.3;
	}
	.atf-section-title.mb-50{
		margin-bottom:20px;
	}
	.atf-section-title.mb-30 {
		margin-bottom: 20px;
	}
}
.atf-section-title .sub-title {
	color: var(--atf-thm-color);
	display: inline-block;
	border-radius: 5px;
	font-size: 30px;
	font-weight: 700;
	position: relative;
	margin-bottom: 10px;
	text-transform: uppercase;
	letter-spacing: 1px;
	background: var(--atf-grey-6);
	padding: 6px 18px;
}
.atf-section-padding {
    padding-top: 120px;
    padding-bottom: 120px;
}
@media only screen and (max-width:991px) {
	.pt-120.pb-95,
	.atf-section-padding {
		padding-top: 80px;
		padding-bottom: 80px;
	}
	.marquee-wrapper.pt-80.pb-120{
		padding-bottom: 80px;
	}
	
}
@media only screen and (max-width:576px) {
	.pt-120.pb-95,
	.atf-section-padding {
		padding-top: 60px;
		padding-bottom: 60px;
	}
	.marquee-wrapper.pt-80.pb-120{
		padding-bottom: 60px;
		padding-top: 60px;
	}
	.atf-cta-title-area.pt-80.pb-80.mb-80{
		padding-bottom: 60px;
		padding-top: 60px;
		margin-bottom:60px;
	}
}
/*---------------------------------
 END SECTION TITLE
---------------------------------*/
/*---------------------------------
 START SCROLL TO TOP
---------------------------------*/
#back_to_top {
  height: 60px;
  width: 60px;
  background: var(--atf-thm-white);
  border-radius: 50%;
  position: fixed;
  bottom: 30px;
  inset-inline-end: 40px;
  transform: scale(0);
  display: grid;
  place-items: center;
  cursor: pointer;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
  z-index: 100;
}

#back_to_top.active {
  bottom: 40px;
  transform: scale(1);
  opacity: 1;
  visibility: visible;
  animation: backToTop 0.5s ease-in-out;
  background: var(--atf-thm-color);
}

#back_to_top.return {
  visibility: hidden;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

#scroll_to_top {
  height: calc(100% - 3px);
  width: calc(100% - 3px);
  background: var(--atf-thm-white);
  color: var(--atf-thm-black);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 5px 15px rgba(0,0,0,0.25);
}

#scroll_to_top i {
  font-size: 16px;
}

/* ---------- Responsive ---------- */
@media (max-width: 767px) {
  #back_to_top { height: 50px; width: 50px; }
}

@media (min-width: 992px) and (max-width: 1199px) {
  #back_to_top { inset-inline-end: 30px; }
  #back_to_top.active { bottom: 30px; }
}

@media (max-width: 991px) {
  #back_to_top,
  #back_to_top.active {
    bottom: 20px;
    inset-inline-end: 20px;
  }
}
/* ---------- Animation ---------- */
@keyframes backToTop {
  0% {
    transform: translate3d(0, 80%, 0);
    visibility: visible;
  }
  100% {
    transform: translateZ(0);
  }
}

/*---------------------------------
 END SCROLL TO TOP
---------------------------------*/
/*----------------------------------------*/
/*  01. END GENERAL STYLE
/*----------------------------------------*/
/*----------------------------------------*/
/*  02. START BOOTSTRAP NAVIGATION OVERRIDES
/*----------------------------------------*/
/* header top */
.atf-top-header {
    position: relative;
    z-index: 1;
    padding:12px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.4s ease;
	overflow: hidden;
}
.header-social-title.text-white {
	padding-right: 55px;
	font-size: 14px;
}
.header-social-divider {
	width: 35px;
	height: 1px;
	background-color: #fbf2f2;
	position: absolute;
	right: 125px;
	top: 17px;
}
.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 {
	position: relative;
	display: flex;
	align-items: center;
	gap: 10px;
}
.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;
	transition: all 0.5s ease-out;
}
.atf-header-top-social ul li a:hover{
	color: var(--atf-thm-white);
}
.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-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;
	position: relative;
}
.atf-top-header-list li 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-top-header-list li a:hover {
	color: var(--atf-thm-white);
}
.atf-top-header-list li a:hover::after {
	width: 100%;
	opacity: 1;
	visibility: visible;
}
.atf-top-header-list li:last-child {
    margin-right: 0;
}
.atf-top-header-list li i {
	margin-right: 10px;
	color: var(--atf-thm-white);
}
.atf_bg_skew {
	position: relative;
	transition: all 0.4s ease-out;
	z-index: 7;
	background: linear-gradient(to right, #2f4783 0%, #44619d 60%, #83A0CE 100%);
}
.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(28% + 0px);
	border-left: 4px solid var(--atf-thm-color);
	transform: skewX(0deg);
	border-top-left-radius: 100px;
}
.atf_bg_skew::before {
	background: var(--atf-thm-white) none repeat scroll 0 0;
	content: "";
	position: absolute;
	z-index: -1;
	width: 25%;
	height: 100%;
	top: 0;
	left: 0;
	border-left: 4px solid var(--atf-thm-color);
	transform: skewX(0deg);
	border-bottom-right-radius: 100px;
}
.atf-site-header.atf-style1.atf-style2.atf-sticky-active.atf_bg_skew {
    background-color: var(--atf-thm-color);
}
@media only screen and (max-width:991px) {
	.atf_bg_skew::after {
		left: calc(40% + 25px);
	}
	.atf_bg_skew::before {
		width: 40%;
	}
	
}
@media only screen and (max-width:767px) {
	.atf_bg_skew::after {
		left: calc(50% + 25px);
	}
}
/* header */
.atf-site-branding img {
    max-width: 150px;
    height: auto;
}
.atf-site-branding {
    font-size: 2rem;
}
.atf-site-header.atf-style1 {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
	transition: all 0.4s ease-out;
}
.header .header-top {
    padding: 20px 0
}
.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-white);
    background-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 fadeInDown;;
    -khtml-animation: 0.95s ease 0s normal forwards 1 running fadeInDown;
    -moz-animation: 0.95s ease 0s normal forwards 1 running fadeInDown;
    -ms-animation: 0.95s ease 0s normal forwards 1 running fadeInDown;
    -o-animation: 0.95s ease 0s normal forwards 1 running fadeInDown;
    animation: 0.95s ease 0s normal forwards 1 running fadeInDown;
}
.atf-site-header.atf-style1.atf-style2.atf-sticky-active{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 1;
    z-index: 990;
    visibility: visible;
    color: var(--atf-thm-black);
    background-color: var(--atf-thm-white);
    -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;
}
@keyframes stickyDown {
  0% {
    margin-top: -150px;
  }
  100% {
    margin-top: 0;
  }
}
.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-base);
}
.atf-main-menu > nav > ul > li {
	position: relative;
	display: inline-block;
	margin-right: 35px;
}
.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: 17px;
    font-weight: 600;
    padding: 37px 0;
    display: block;
    color: var(--atf-thm-white);
    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: 0px 0;
    display: block;
    min-width: 220px;
    visibility: hidden;
    transform: scaleY(0);
    transform-origin: top center;
    background: var(--atf-thm-white);
    border-left: 2px 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;
	border-bottom: 1px solid rgba(0,0,0,0.1);
}
.atf-main-menu > nav > ul > li .sub-menu li > a {
	font-weight: 600;
	padding: 7px 20px;
	display: block;
	transition: all 0.5s ease;
	text-transform: capitalize;
	text-align: left;
	position: relative;
	font-size: 17px;
	-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-black);
	background: var(--atf-grey-6);
	letter-spacing:1px;
}
.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-black);
	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: 2px 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;
	overflow-y: auto !important; /* Hamburger scroll */
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
}
body.menu-open {
    overflow: hidden !important; /* Stop background scroll */
}
.atf-hamburger-overlay.atf-hamburger-overlay-open {
    pointer-events: auto;
    touch-action: none;
}
@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-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-black);
}
.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-black);
}
.atf-hamburger-menu ul li.active > .atf-menu-close {
    color: var(--atf-thm-black);
    border-color: var(--atf-thm-black);
}
.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: 15px;
	position: relative;
}
.atf-hamburger-menu ul li .sub-menu li{
	padding-left: 15px;
	position: relative;
}
.atf-hamburger-menu ul li .sub-menu li::before {
	content: '';
	background: var(--atf-thm-color);
	left: 0;
	top: 20px;
	width: 8px;
	height: 8px;
	position: absolute;
	border-radius: 50%;
}
.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);
}
.call-to-action-item {
	background: var(--atf-grey-6);
	padding: 7px 16px;
	border-radius: 10px;
}
.call-to-action-icon {
	width: 50px;
	height: 50px;
	background: var(--atf-thm-color);
	text-align: center;
	line-height: 50px;
	margin-right: 15px;
	font-size: 18px;
	color: var(--atf-thm-white);
	border-radius: 50%;
}
.call-to-action-phone {
	font-size: 15px;
	font-weight:400;
}
.call-to-action-text h6 {
	font-weight: 400;
	font-size: 16px;
}
/*----------------------------------------*/
/*  End Mobile menu Design
/*----------------------------------------*/
/*----------------------------------------*/
/*  02. END BOOTSTRAP NAVIGATION OVERRIDES
/*----------------------------------------*/
/*----------------------------------------*/
/*  03. START HOME DESIGN
/*----------------------------------------*/
#home {
    position: relative;
    z-index: 2;
}
.family-hero {
	position: relative;
	padding: 140px 0;
	background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
	color: #fff;
	overflow: hidden;
}
/* Soft glowing effect */
.family-hero::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.25), transparent 70%);
    top: -200px;
    right: -200px;
    z-index: 0;
}

.family-hero .container {
    position: relative;
}
/* Hero section */
.atf-hero-area {
	position: relative;
	height: 750px;
	overflow: hidden;
}
/* Title */
.hero-title {
    font-size: 60px;
    line-height: 1.05;
    font-weight: 400;
    margin: 0 0 30px;
    letter-spacing: -2px;
}
.hero-describtion {
	color: var(--atf-text-body);
	font-size: 18px;
}

.atf-aicenter {
    display: flex;
    align-items: center;
    justify-content: center;
}
.atf-cover-bg {
    position: relative;
    z-index: 1;
}
.atf-cover-bg::before {
    content: "";
	width: 100%;
    height: 100%;
	top: 0;
    left: 0;
    position: absolute;
	background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}
/*----------------------------------------*/
/*  03. END HOME DESIGN
/*----------------------------------------*/
.layout-item{
	position:relative;
}

.layout-item a>img {
	transition: all .7s ease-in-out;
	object-fit: cover;
}

.layout-item a>img:hover {
	transform: translateY(-10px);
	border: inherit;
}
.layout-item {
	margin-bottom: 25px;
	background: rgba(29, 16, 182, 0.91) !important;
}
.layout-item figure {
	overflow: hidden;
	display: block;
	padding-bottom: 65%;
	position: relative;
	height: 100%;
}
.layout-item figure img {
	-moz-transition: 1s all ease-in-out;
	-webkit-transition: 1s all ease-in-out;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	width: 100%;
	transition: 1.5s all ease-in-out;
	height: auto;
}
.overlay-text {
	white-space: nowrap;
	color: white;
	font-size: 20px;
	position: absolute;
	top: 0;
	left: 0;
	overflow: hidden;
	padding: 16px 32px;
	transition: all 0.5s cubic-bezier(.29, .04, .19, .98);
	transform: scale(.7);
	width: 100%;
	height: 100%;
	opacity: 0;
	visibility: hidden;
}

.overlay-text a.btn {
	background: var(--atf-thm-color);
	border-color: var(--atf-thm-color);
	color: rgb(255, 255, 255);
	font-size: 14px;
	fon-weight:600;
	text-transform: uppercase;
	text-align: center;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	position: absolute;
	padding: 15px 20px;
	transition:all 0.5s ease-out;
	-webkit-transition:all 0.5s ease-out;
}

.overlay-text a.btn:hover{
	color: var(--atf-thm-color);
	background: var(--atf-thm-white);
}

.layout-item h3 {
	font-weight: 400;
	text-align: center;
	font-size: 22px;
	padding: 0px 0 25px;
}
.layout-item .overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(0, 0, 0, 0.8);
	overflow: hidden;
	width: 100%;
	height: 100%;
	transition: .5s ease;
	opacity: 0;
}
.layout-item figure:hover img {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	width: 100%;
	transition: 1.5s all ease-in-out;
	transition: 5s all linear;
	-moz-transition: 5s all linear;
	-webkit-transition: 5s all linear;
	-moz-transition: 1.5s all ease-in-out;
	-webkit-transition: 1.5s all ease-in-out;
}
.layout-item figure:hover .overlay {
	opacity: 1;
}
.layout-item figure:hover .overlay-text {
	opacity: 1;
	visibility: visible;
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
}
.featured-item{
	background: rgba(244, 229, 229, 0.8);
	border-radius: 20px;
	padding: 20px 20px;
}
.featured-icon {
	display: inline-block;
}
.featured-title h3{
	font-size:22px;
	font-weight:500;
	line-height:1.4;
}	
.featured-icon img {
	border: 0;
	height: auto;
	margin: 0 auto;
}
.featured-item.text-center {
	margin-bottom: 25px;
}
/*----------------------------------------*/
/*  15. START FOOTER DESIGN
/*--------------------------------------*/
.atf-footer-area.atf-cover-bg::before {
	background: rgba(0, 0, 0, 0.55);
	z-index:-1;
}
.atf-footer-widget-logo img{
	margin-top:-4px;
}
.atf-footer-widget.footer-col-4-1 p {
	color: var(--atf-thm-white);
}
.atf-footer-widget-text {
	margin-bottom: 25px;
}
.atf-footer-widget-text p {
  font-weight: 600;
  margin-right: 40px;
  color: #9ca6ae;
}
.atf-footer-widget-title {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
  display: inline-block;
  color: var(--atf-thm-white);
  margin-bottom: 50px;
  position:relative;
}
.atf-footer-widget-title::before {
	content: '';
	position: absolute;
	left: 1px;
	top: 33px;
	background: var(--atf-thm-white);
	width: 11px;
	height: 5px;
}
.atf-footer-widget-title::after {
	content: '';
	position: absolute;
	left: 20px;
	top: 35px;
	background: var(--atf-thm-white);
	width: 45px;
	height: 2px;
}
@media (max-width: 575px) {
  .atf-footer-widget-title {
    margin-bottom: 30px;
  }
}
.atf-footer-widget-menu ul li {
	list-style-type: none;
	margin-bottom: 10px;
}
.atf-footer-widget-menu ul li a {
  position: relative;
  font-size: 16px;
  color: #9ca6ae;
  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: 8px;
	height: 8px;
	top: 54%;
	left: -10px;
	content: "";
	opacity: 0;
	visibility: hidden;
	border-radius: 5%;
	-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::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-menu ul li a:hover::after {
	width: 100%;
	opacity: 1;
	visibility: visible;
}
.atf-footer-widget-menu ul li a:hover {
	padding-left: 20px;
	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: 10px;
    margin-top: 5px;
}
.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: 14px;
	text-align: center;
	display: inline-block;
	border-radius: 5%;
	background: #847d7d;
	-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;
	color: var(--atf-thm-white);
	transform: scale(1.0);
}
.atf-footer-widget-social ul li a:hover {
	color: var(--atf-thm-black);
	background: var(--atf-thm-base);
	transform: scale(1.1);
}
.atf-footer-widget-info {
  gap: 25px;
}
.atf-footer-widget-info a {
	position: relative;
	font-weight: 500;
	font-size: 16px;
	color: var(--atf-thm-white);
	display: block;
	line-height: 1.7;
}
.atf-footer-widget-info p {
	color: var(--atf-thm-white);
	margin: 0;
	font-size: 16px;
	font-weight: 500;
}
.atf-footer-widget-info span {
	color: var(--atf-thm-black);
	font-size: 16px;
	background: var(--atf-thm-base);
	width: 50px;
	justify-content: center;
	display: flex;
	align-items: center;
	border-radius: 5%;
	height: 50px;
}
.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 span {
	color: #ccc;
	font-weight: 500;
}
.atf-footer-widget.footer-col-4-3 h3 {
	font-size: 22px;
	color: #eee;
	font-weight: 400;
	margin-top: 5px;
	line-height: 1.5;
	-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.footer-col-4-3 h3:hover {
	color: var(--atf-thm-base);
}
.atf-copyright-style {
	background: var(--atf-thm-color);
}
.atf-copyright-text p {
	font-weight: 500;
	color: var(--atf-rgb-white);
}
.atf-copyright-text p a {
  color: var(--atf-thm-white);
}
@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;
  }
  
}
@media only screen and (max-width:991px) {
	.atf-footer-area.pb-80{padding-bottom:40px;}
	.atf-footer-area.atf-section-padding {
		padding-bottom: 40px;
	}
}

@media only screen and (max-width:576px) {
	.atf-footer-area.pb-80{padding-bottom:20px ! important;}
	.atf-footer-area.atf-section-padding {
		padding-bottom: 20px ! important;
	}
}
.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;
}
/*----------------------------------------*/
/*  16. END FOOTER DESIGN
/*--------------------------------------*/
/*----------------------------------------*/
/*ANIMATIONS
/*----------------------------------------*/
@-webkit-keyframes movingX {
  0% {
    left: 100%;
  }
  100% {
    left: -25%;
  }
}
@keyframes movingX {
  0% {
    left: 100%;
  }
  100% {
    left: -25%;
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-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);
  }
  50% {
    -webkit-transform: translateX(20px);
    -moz-transform: translateX(20px);
    -ms-transform: translateX(20px);
    -o-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    -webkit-transform: translateX(-30px);
    -moz-transform: translateX(-30px);
    -ms-transform: translateX(-30px);
    -o-transform: translateX(-30px);
    transform: translateX(-30px);
  }
}
@keyframes atftranslateY2 {
  0% {
    -webkit-transform: translateY(30px);
    -moz-transform: translateY(30px);
    -ms-transform: translateY(30px);
    -o-transform: translateY(30px);
    transform: translateY(30px);
  }
  50% {
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    -o-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
     -webkit-transform: translateY(30px);
    -moz-transform: translateY(30px);
    -ms-transform: translateY(30px);
    -o-transform: translateY(30px);
    transform: translateY(30px);
  }
}
@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;
  }
}
@keyframes scroll1 {
  0% {
    top: 0%;
  }
  50% {
    top: 95%;
  }
  100% {
    top: 0%;
  }
}
@keyframes dash {
  to {
    stroke-dashoffset: 0px;
    stroke-dasharray: 3000;
  }
}
@keyframes bounce-up {
    0% {
        transform: translateX(0); 
    }
    50% {
        transform: translateX(16px); 
    }
    100% {
        transform: translateX(0); 
    }
}
@keyframes bounce-down {
    0% {
        transform: translateY(0); 
    }
    50% {
        transform: translateY(-16px); 
    }
    100% {
        transform: translateY(0); 
    }
}
/* herov2 shape */
.abstract-container {
	position: relative;
	width: 100%;
	min-height: 100vh; /* Ensures it covers the entire viewport height */
	overflow: hidden; /* Keeps shapes contained */
}

/* --- Common Styles for all Curved Shapes --- */
.abstract-shape {
	position: absolute;
	width: 150vw; /* Use vw units for responsiveness */
	height: 150vw;
	border-radius: 50%;
	pointer-events: none; /* Allows clicks to pass through */
	z-index: -1;
}

        /* --- Shape 1: Top-Left (Darker color, less opacity) --- */
.herov2-shape-1 {
	background-color: #D2DAEF;
	opacity: 0.1;
	top: -131vw;
	right: -100vw;
	transform: rotate(10deg);
}

/* --- Shape 2: Top-Left (Lighter color, more opacity) --- */
.herov2-shape-2 {
	background-color: #E1E6F4;
	opacity: 0.2; /* More prominent */
	top: -120vw;
	right: -120vw;
	transform: rotate(-5deg);
}

 /* --- Shape 3: Bottom-Right (Darker color, less opacity) --- */
.herov2-shape-3 {
	background-color: #D2DAEF;
	opacity: 0.1;
	bottom: -131vw;
	right: -100vw;
	transform: rotate(-20deg);
}
        
/* --- Shape 4: Bottom-Right (Lighter color, more opacity) --- */
.herov2-shape-4 {
	background-color: #E1E6F4;
	opacity: 0.2;
	bottom: -120vw;
	right: -120vw;
	transform: rotate(5deg);
}
.herov2-shape-5 {
	position: absolute;
	left: 47%;
	bottom: 55%;
	width: 15%;
	background-size: cover;
	background-position: center;
	z-index: 1;
	object-fit: cover;
	animation: spin 15s linear infinite;
}
@media screen and (min-width:320px) and (max-width:575px) {
	.abstract-shape{display:none;}
}
.herov2-shape-faq1 {
	position: absolute;
	left: -95px;
	bottom: 0;
	width: 15%;
	background-size: cover;
	background-position: center;
	z-index: 1;
	object-fit: cover;
	animation: atftranslateX2 15s linear infinite;
	border-radius: 50%;
}
/* working shape */
.working-shape-1{
	position: absolute;
	right: 0%;
	top: 0%;
	width: 15%;
	background-size: cover;
	background-position: center;
	z-index: 0;
}
.working-shape-2{
	position: absolute;
	left: 0%;
	bottom: 0%;
	width: 15%;
	background-size: cover;
	background-position: center;
	z-index: 0;
	object-fit: cover;
}
.footer-shape-1 {
	position: absolute;
	left: 0%;
	bottom: 0%;
	width: 30%;
	background-size: cover;
	background-position: center;
	z-index: 0;
	object-fit: cover;
	opacity: 0.1;
}