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;
}
:root {
    --atf-ff-body: "Lato", sans-serif;
    --atf-ff-heading: "Bakbak One", sans-serif;
    --atf-ff-fontawesome: "Font Awesome 7 free";
    --atf-thm-white: #ffffff;
    --atf-thm-black: #333333;
    --atf-grey-2: #f5f5f5;
    --atf-grey-6: #f0f3fa;
    --atf-grey-7: #e1e6f4;
    --atf-text-body: #6b6b6b;
    --atf-border-1: #dddddd;
    --atf-rgb-white: rgba(255, 255, 255, 0.7);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}
body {
    font-size: var(--font-size);
    font-weight: normal;
    line-height: var(--line-height);
    font-weight: normal;
    color: var(--atf-text-body);
    font-family: var(--atf-ff-body);
}
p {
    font-size: var(--font-size);
    font-weight: var(--font-weight);
    margin-bottom: 15px;
    line-height: var(--line-height);
    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;
}
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="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="number"]::-webkit-input-placeholder,
input[type="password"]::-webkit-input-placeholder,
input[type="url"]::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    color: var(--atf-text-body);
    font-size: 16px;
}
input[type="text"]::-moz-placeholder,
input[type="email"]::-moz-placeholder,
input[type="number"]::-moz-placeholder,
input[type="password"]::-moz-placeholder,
input[type="url"]::-moz-placeholder,
textarea::-moz-placeholder {
    color: var(--atf-text-body);
    font-size: 16px;
}
input[type="text"]:-moz-placeholder,
input[type="email"]:-moz-placeholder,
input[type="number"]:-moz-placeholder,
input[type="password"]:-moz-placeholder,
input[type="url"]:-moz-placeholder,
textarea:-moz-placeholder {
    color: var(--atf-text-body);
    font-size: 16px;
}
input[type="text"]:-ms-input-placeholder,
input[type="email"]:-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 {
    color: var(--atf-text-body);
    font-size: 16px;
}
input[type="text"]::placeholder,
input[type="email"]::placeholder,
input[type="number"]::placeholder,
input[type="password"]::placeholder,
input[type="url"]::placeholder,
textarea::placeholder {
    color: var(--atf-text-body);
    font-size: 16px;
}
input[type="text"]:focus,
input[type="email"]: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="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;
}
*::-moz-selection {
    background: var(--first-color);
    color: var(--atf-thm-white);
    text-shadow: none;
}
::-moz-selection {
    background: var(--first-color);
    color: var(--atf-thm-white);
    text-shadow: none;
}
::selection {
    background: var(--first-color);
    color: var(--atf-thm-white);
    text-shadow: none;
}
*::-moz-placeholder {
    color: var(--first-color);
    font-size: 14px;
    opacity: 1;
}
*::placeholder {
    color: var(--first-color);
    font-size: 14px;
    opacity: 1;
}
.atf-title-hover {
    background-position: 0 95%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    display: inline;
}
.atf-title-hover:hover {
    color: var(--first-color);
    background-size: 100% 2px;
    background-image: linear-gradient(
        180deg,
        var(--first-color) 0%,
        var(--first-color) 100%
    );
}
.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;
}
.black-bg {
    background-color: var(--atf-thm-black);
}
.grey-bg-7 {
    background-color: var(--atf-grey-7);
}
.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(--first-color);
}
.preloader .loader-inner .loaded {
    font-size: 3rem;
    font-weight: 500;
    color: var(--atf-thm-white);
    letter-spacing: 8px;
    z-index: 99;
    white-space: nowrap;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90vw;
    max-width: 90vw;
}
.preloader .loader-inner .loaded span {
    flex-shrink: 0;
    animation: loader-slide 1s infinite alternate;
}
@media (max-width: 768px) {
    .preloader .loader-inner .loaded {
        font-size: 2rem;
        letter-spacing: 4px;
    }
}
@media (max-width: 480px) {
    .preloader .loader-inner .loaded {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }
}
.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;
    }
}
.atf-themes-btn {
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.6s ease 0s;
    color: var(--first-color);
    border: 1px solid var(--first-color);
    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(--first-color);
}
.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(--first-color);
    border-left: 1px solid var(--atf-border-1);
}
.atf-themes-btn:hover:before {
    width: 100%;
}
.atf-themes-btn:hover {
    color: var(--atf-thm-white);
}
@media only screen and (max-width: 479px) {
    .atf-themes-btn {
        margin-bottom: 15px;
    }
}
.atf-themes-btn .icon {
    display: inline-block;
    color: var(--atf-thm-white);
}
.atf-themes-btn:hover .icon {
    animation: bounce-up 0.3s ease-in-out 1;
}
.atf-section-title .title {
    font-family: var(--atf-ff-heading);
    color: var(--atf-thm-black);
    font-weight: 400;
    font-size: 45px;
    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(--first-color);
    display: inline-block;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 400;
    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;
}
.atf-section-padding-bottom {
    padding-bottom: 120px;
}
.atf-section-padding-top {
    padding-top: 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;
    }
}
#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(--first-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;
}
@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;
    }
}
@keyframes backToTop {
    0% {
        transform: translate3d(0, 80%, 0);
        visibility: visible;
    }
    100% {
        transform: translateZ(0);
    }
}
@media screen and (min-width: 1200px) {
    .atf-site-header {
        height: 140px;
    }
}
.atf-searching-area {
    position: fixed;
    top: 0%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    height: 100%;
    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;
    top: 50%;
}
.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(--first-color);
    background-color: var(--atf-thm-white);
    color: var(--first-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-close-btn:hover {
    background-color: var(--first-color);
    color: var(--atf-thm-white);
}
@media (max-width: 575px) {
    .atf-searching-area .atf-searching-close-btn {
        right: 30px;
    }
}
.atf-header-bottom-right {
    gap: 25px;
}
.atf-searching-btn {
    background: transparent;
    font-size: 18px;
    color: var(--first-color);
    border: none;
}
.atf-site-header.atf-style1 {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    transition: all 0.4s ease-out;
}
.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(--first-color);
}
.atf-main-menu > nav > ul > li {
    position: relative;
    display: inline-block;
    margin-right: 35px;
}
.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-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;
}
.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(--first-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;
    white-space: nowrap;
    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(--first-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(--first-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;
    }
}
.atf-main-menu-bars button {
    font-size: 18px;
    padding: 10px 15px;
    border-radius: 5px;
    color: var(--atf-thm-white);
    background-color: var(--first-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;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
}
body.menu-open {
    overflow: hidden !important;
}
.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(--first-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-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-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;
}
.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(--first-color);
    left: 0;
    top: 20px;
    width: 8px;
    height: 8px;
    position: absolute;
    border-radius: 50%;
}
.atf-menu-close {
    position: absolute;
    right: 0;
    top: 7.5px;
    border: 1px solid rgba(1, 15, 28, 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);
}
#home {
    position: relative;
    z-index: 2;
}
.atf-hero-area {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background-color: #1a1a2e;
}
.atf-hero-area.bg-loaded {
    background-color: transparent;
}
.atf-hero-area .container {
    position: relative;
    z-index: 1;
}
.hero-title {
    font-size: 60px;
    line-height: 1.05;
    font-weight: 400;
    margin: 0 0 30px;
    letter-spacing: -2px;
    color: #fff;
    text-shadow:
        2px 2px 8px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(0, 0, 0, 0.3);
}
.trust {
    color: var(--atf-thm-black);
    font-size: 14px;
}
.left-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, #ffd11f 0%, transparent 70%);
    top: -70px;
    left: -70px;
    z-index: 0;
    opacity: 0.7;
    animation: zoom 9s infinite;
}
.right-dots {
    position: absolute;
    right: -150px;
    top: 10%;
    width: 300px;
    height: 300px;
    background-image: radial-gradient(#a2a2a2 10%, transparent 50%);
    background-size: 6px 1px;
    background-position: center;
    opacity: 0.55;
    z-index: 0;
    transform: rotate(45deg);
    border-radius: 50%;
    animation: bounce-up 9s infinite;
}
@media (max-width: 991px) {
    .hero-title {
        font-size: 40px;
    }
}
@media (max-width: 576px) {
    .hero-title {
        font-size: 45px;
        line-height: 1.3;
        letter-spacing: 0;
    }
    .mobile-logo {
        max-width: 74% !important;
    }
    #portfolio {
        display: none;
    }
    .mobile-menu-icon {
        width: 25%;
    }
}
.atf-aicenter {
    display: flex;
    align-items: center;
    justify-content: center;
}
.swiper.atf__partner_slider_active a {
    border-radius: 20px;
    padding: 8px 0;
    display: inline-block;
    background: var(--atf-grey-6);
    filter: brightness(1);
    transition: all 0.5s ease-out;
    -webkit-transition: all 0.5s ease-out;
}
.swiper.atf__partner_slider_active a:hover {
    filter: brightness(80%);
}
.atf-about-area {
    position: relative;
    overflow: hidden;
}
.about_round_image {
    position: absolute;
    background: var(--second-color);
    border-radius: 50%;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    z-index: 10;
}
.about_round_image.style1 {
    bottom: -18%;
}
.about_round_text_area {
    position: relative;
    width: 140px;
    animation: spin 15s linear infinite;
    margin: 0 auto;
    padding: 5px;
}
.about_round_text_area .about_round_text text {
    font-size: 22px;
    fill: var(--atf-thm-black);
    text-transform: uppercase;
    letter-spacing: 2px;
}
.about-image-gallery {
    position: relative;
}
.about-business-image {
    object-fit: cover;
    z-index: 2;
    position: relative;
    box-shadow:
        0 15px 30px rgba(0, 0, 0, 0.15),
        0 0 0 10px rgba(255, 102, 0, 0.1);
}
.secondary-about-image {
    object-fit: cover;
    z-index: 1;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.atf-about-title {
    font-size: 24px;
    font-weight: 400;
}
.atf-about-icon {
    font-size: 40px;
    color: var(--atf-thm-white);
    text-align: center;
    transition: 1.3s;
    background: var(--first-color);
    padding: 10px 20px;
    margin-right: 30px;
    border-radius: 10px;
}
.experience-counter {
    top: 6px;
    left: 12px;
    background-color: white;
    height: 125px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3;
    box-shadow:
        0 0 0 10px rgba(255, 102, 0, 0.15),
        0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: left;
}
.experience-counter .icon-circle {
    width: 70px;
    height: 70px;
    background-color: var(--second-color);
    border-radius: 10%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--atf-thm-black);
}
.experience-counter h4 {
    color: var(--first-color);
    font-weight: 400;
    font-size: 36px;
    line-height: 1;
}
.experience-counter_ceontent .counter-number {
    font-size: 36px;
}
.experience-counter_ceontent .year {
    font-size: 14px;
    font-weight: 500;
}
.nav-tabs .nav-item .nav-link {
    background-color: transparent;
    color: var(--atf-text-body);
    border: none;
    border-radius: 0;
    padding: 10px 20px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 14px;
    margin-right: 10px;
    border-radius: 10px;
}
.nav-tabs .nav-item .nav-link.active {
    background-color: var(--first-color);
    color: var(--atf-thm-white);
    font-weight: 700;
    border-radius: 30px;
}
.nav-tabs .nav-item .nav-link:hover:not(.active) {
    background-color: var(--first-color);
    color: var(--atf-thm-white);
    border-radius: 30px;
}
.about_video_area {
    width: 100%;
    min-height: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.about_video_area img {
    border-radius: 20px;
}
.feature-list li {
    font-size: 1rem;
    color: var(--atf-text-body);
    margin-bottom: 8px;
    text-align: left;
}
.feature-list li i {
    color: var(--first-color);
    margin-right: 5px;
}
.choose-business-image img {
    position: relative;
}
.color-me {
    color: var(--first-color);
    width: 50px;
    height: 50px;
}
.rotate {
    animation: spin 15s linear infinite;
}
.marquee-wrapper {
    width: 100%;
    overflow: hidden;
}
.marquee-wrapper ul.marquee-content {
    display: flex;
    align-items: center;
    gap: 30px;
}
.marquee-wrapper ul.marquee-content li {
    position: relative;
    font-size: 70px;
    font-weight: 900;
    letter-spacing: 1px;
    line-height: 0.8;
    text-transform: uppercase;
    background-size: cover;
    background-position: 50%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
    white-space: nowrap;
    transition: all 0.5s ease-out;
    flex-shrink: 0;
}
.marquee-wrapper ul.marquee-content li:hover {
    -webkit-text-fill-color: var(--first-color);
}
.marquee-wrapper ul.marquee-content li svg {
    color: var(--second-color);
    font-size: 50px;
    margin-right: 25px;
}
@media only screen and (max-width: 991px) {
    .marquee-wrapper ul.marquee-content li {
        font-size: 50px;
    }
}
@media only screen and (max-width: 767px) {
    .marquee-wrapper ul.marquee-content li {
        font-size: 36px;
    }
    .marquee-wrapper ul.marquee-content li i {
        font-size: 40px;
    }
}
@media screen and (min-width: 320px) and (max-width: 575px) {
    .marquee-wrapper ul.marquee-content li {
        font-size: 28px;
    }
    .marquee-wrapper ul.marquee-content li i {
        font-size: 30px;
    }
}
.swiper.client {
    width: 700px;
    height: 400px;
}
.client .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    font-size: 24px;
    font-weight: 400;
    color: var(--atf-thm-white);
}
.team-trigger {
    position: absolute;
    bottom: -72px;
    right: 2px;
    background-color: var(--second-color);
    color: var(--atf-thm-black);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: transform 0.3s ease;
}
.team-trigger:hover {
    transform: scale(1.1);
}
.social-icons-overlay {
    position: absolute;
    bottom: 0px;
    right: 350px;
    width: 100%;
    height: auto;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 5;
    border-radius: 12px;
    transition: all 0.5s ease-out;
    -webkit-transition: all 0.5s ease-out;
    visibility: hidden;
}
@media screen and (min-width: 1200px) and (max-width: 1399px) {
    .social-icons-overlay {
        padding: 5px;
    }
}
.social-icons-overlay.active {
    opacity: 1;
    visibility: visible;
    right: 0px;
    overflow: hidden;
    z-index: 6;
}
.flex-service-container {
    padding: 0 15px;
}
.flex-card-wrapper {
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 0;
    -webkit-transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    max-width: 100%;
}
.card-side-content {
    background-color: var(--atf-grey-2);
    transition: opacity 0.3s;
    height: 100%;
    width: 100%;
    position: absolute;
    z-index: 20;
}
.card-active-content {
    opacity: 0;
    transition: opacity 0.4s 0.1s;
    height: 100%;
    width: 100%;
    display: none;
    z-index: 10;
}
.card-image {
    height: 210px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}
.flex-card-wrapper:hover .card-image img {
    filter: brightness(0.85);
}
.card-image img {
    filter: brightness(1);
    object-fit: cover;
    -webkit-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
    width: 100%;
}
.card-image .icon {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--second-color);
    color: var(--atf-thm-black);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    text-align: center;
    line-height: 70px;
    font-size: 20px;
}
.card-side-content .icon {
    background: var(--atf-thm-white);
    color: var(--first-color);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    text-align: center;
    line-height: 70px;
    font-size: 20px;
}
.card-active-content .bg-white {
    position: relative;
    z-index: 5;
}
.flex-card-wrapper:hover {
    flex-grow: 4;
    z-index: 20;
}
.flex-card-wrapper:hover .card-side-content {
    opacity: 0;
    display: none !important;
}
.flex-card-wrapper:hover .card-active-content {
    opacity: 1;
    display: flex !important;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
    .flex-card-wrapper {
        flex-grow: 1;
        flex-basis: 48%;
        margin: 1%;
        max-width: 48%;
    }
    .flex-card-wrapper:hover {
        flex-grow: 1;
        max-width: 48%;
        transform: none;
    }
    .flex-card-wrapper .card-side-content {
        display: none !important;
    }
    .flex-card-wrapper .card-active-content {
        opacity: 1;
        display: flex !important;
    }
}
@media (min-width: 768px) and (max-width: 991.98px) {
    .flex-card-wrapper {
        flex-grow: 1;
        flex-basis: 48%;
        margin: 1%;
        max-width: 48%;
    }
    .flex-card-wrapper:hover {
        flex-grow: 1;
        max-width: 48%;
        transform: none;
    }
    .flex-card-wrapper .card-side-content {
        display: none !important;
    }
    .flex-card-wrapper .card-active-content {
        opacity: 1;
        display: flex !important;
    }
}
@media (max-width: 767.98px) {
    .flex-card-wrapper {
        flex-grow: 1;
        flex-basis: 100%;
        max-width: 100%;
    }
    .flex-card-wrapper .card-side-content {
        display: none !important;
    }
    .flex-card-wrapper .card-active-content {
        opacity: 1;
        display: flex !important;
    }
}
.atf-service-item {
    border: 1px solid var(--atf-border-1);
    border-radius: 0px;
    width: 100%;
    padding: 22px 25px;
    transition: 1.3s;
    justify-content: space-between;
    position: relative;
}
.atf-service-item::after {
    content: "";
    position: absolute;
    background: var(--atf-thm-black);
    left: 0;
    top: 0;
    width: 0%;
    height: 100%;
    z-index: -1;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.atf-service-item:hover::after {
    width: 100%;
}
.atf-service-item:hover p {
    color: #c8c8c8;
}
.atf-service-item:hover .atf-service-title {
    color: var(--second-color);
}
.atf-service-item::before {
    content: "";
    position: absolute;
    background: var(--atf-thm-black);
    right: 0;
    top: 0;
    width: 20%;
    height: 100%;
    z-index: -1;
    clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 25% 100%, 0% 50%);
}
.atf-service-item:hover::before {
    background: var(--first-color);
    z-index: 1;
}
.atf-service-item.v2 {
    border-radius: 20px;
}
.atf-service-item.v2 img {
    border-radius: 20px;
}
.atf-service-item.v2::before {
    background: transparent;
}
.atf-service-item.v2:hover::before {
    background: transparent;
}
.atf-service-item.v2::after {
    border-radius: 20px;
}
@media screen and (min-width: 1200px) and (max-width: 1399px) {
    .atf-service-item {
        padding: 18px;
    }
}
.atf-service-icon {
    font-size: 45px;
    color: var(--atf-thm-white);
    text-align: center;
    transition: 1.3s;
    background: var(--first-color);
    padding: 15px 20px;
    margin-right: 30px;
    border-radius: 10px;
}
.atf-service-item:hover .atf-service-icon {
    animation: bounce-down 0.3s ease-in-out 1;
}
.atf-service-title {
    transition: all 0.3s ease-out;
    font-size: 24px;
    font-weight: 400;
}
.atf-service-title:hover {
    color: var(--first-color);
}
.atf-service-box-content p {
    margin: 0;
}
.atf-service-btn a {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--atf-grey-2);
    flex-shrink: 0;
    -webkit-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}
.atf-service-item:hover .atf-service-btn a {
    background-color: var(--second-color);
    z-index: 1;
}
.atf-service-item.active .atf-service-btn {
    background-color: var(--atf-thm-white) !important;
}
.portfolio {
    background: linear-gradient(
        to right,
        var(--first-color),
        var(--second-color),
        var(--atf-thm-black)
    );
    text-align: center;
    border-radius: 30px;
}
.portfolio_list .portfolio:hover:before {
    opacity: 1;
    left: 50%;
    transform: translate(-50%, -50%) rotate(0deg);
}
.portfolio_list .portfolio img {
    width: 100%;
    height: auto;
    transition: 0.45s ease-in-out;
    border-radius: 30px;
}
.portfolio .title {
    font-size: 24px;
    font-weight: 400;
    margin: 0 0 6px;
    color: var(--atf-thm-black);
}
.portfolio .post {
    font-size: 16px;
    font-style: italic;
    margin: 0 0 15px;
    display: block;
}
.portfolio .icon {
    padding: 0;
    margin: 0;
    list-style: none;
}
.portfolio .icon li {
    margin: 0 3px;
    display: inline-block;
}
.portfolio .icon li a {
    color: var(--atf-thm-white);
    background: var(--atf-thm-black);
    font-size: 16px;
    line-height: 50px;
    width: 50px;
    height: 50px;
    display: block;
    transition: 0.35s;
    border-radius: 10px;
}
.portfolio .icon li a:hover {
    background: var(--second-color);
    color: var(--atf-thm-black);
}
.atf-portfolio-area .swiper {
    width: 100%;
    padding-bottom: 65px;
}
.atf-portfolio-area .swiper-slide {
    background-position: center;
    background-size: cover;
    width: 420px !important;
    height: 420px;
    background: var(--atf-thm-white);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 30px;
    overflow: visible;
}
.atf-portfolio-area .swiper-pagination-bullet {
    background: var(--first-color) !important;
    width: 15px !important;
    height: 15px !important;
}
@media (max-width: 991px) {
    .atf-portfolio-area .swiper-slide {
        width: 260px !important;
        height: 360px;
    }
}
.text-muted-light {
    color: #cccccc !important;
}
.bg-shape-dot::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(#db8888 0.5px, transparent 1px);
    background-size: 4px 4px;
    opacity: 0.45;
    pointer-events: none;
    z-index: 0;
}
.atf-funfact-title {
    color: var(--atf-thm-white);
    font-size: 60px;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-color: var(--atf-thm-white);
    -webkit-text-stroke-width: 1px;
    letter-spacing: 1px;
    font-family: var(--atf-ff-body);
    font-weight: 600;
    transition: all 0.5s ease-out;
    line-height: 1;
    -webkit-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}
.atf-funfact-title:hover {
    -webkit-text-fill-color: var(--second-color);
}
.atf-funfact-item p {
    font-weight: 400;
    color: var(--atf-rgb-white);
    font-size: 20px;
    margin: 0;
}
.atf-funfact-wrapp .row [class*="col-"]:last-child .atf-funfact-item {
    border-right: 0;
}
.atf-blog-item {
    position: relative;
    background: var(--atf-grey-6);
    padding: 25px;
    border-radius: 20px;
}
@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: 25px;
    }
}
.atf-blog-item:hover .atf-blog-thumb img {
    transform: scale(1.1);
}
.atf-blog-thumb {
    overflow: hidden;
    display: flex;
}
.atf-blog-thumb img {
    width: 100%;
    transition: 1.3s;
}
.atf-blog-meta-date {
    background: var(--second-color);
    color: var(--atf-thm-black);
    padding: 15px 20px;
    -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;
    line-height: 1;
}
.atf-blog-meta-date span {
    font-weight: 400;
    margin: 0;
    color: var(--atf-thm-black);
    font-size: 15px;
    text-align: center;
    display: inline-block;
    line-height: 1.7;
}
.atf-blog-meta-date strong {
    font-size: 25px;
    display: inline-block;
    line-height: 0;
}
.atf-blog-meta-box {
    gap: 20px;
    color: var(--atf-thm-white);
    font-weight: 400;
    background: var(--atf-thm-black);
    margin-top: -2px;
}
.atf-blog-title {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.4;
    margin: 0;
    display: inline;
    -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-title:hover {
    color: var(--first-color);
}
.read-btn-area {
    color: var(--atf-text-body);
    font-weight: 400;
    border-top: 1px solid var(--atf-border-1);
}
.atf-blog-btn a {
    font-weight: 600;
    color: var(--atf-thm-black);
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.atf-blog-btn a:hover {
    color: var(--first-color);
}
.atf-blog-btn a .icon {
    display: inline-block;
    font-weight: 600;
    color: var(--atf-thm-black);
}
.atf-blog-btn a:hover .icon {
    animation: bounce-up 0.3s ease-in-out 1;
    color: var(--first-color);
}
.breadcrumb-cover-bg::before {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0px;
    opacity: 0.3;
    content: "";
    background-color: var(--atf-thm-black);
}
.breadcrumb-single-content {
    position: relative;
    font-size: 16px;
    display: inline-block;
    border-radius: 30px;
    background-color: var(--atf-thm-white);
    padding: 10px 20px;
}
.breadcrumb-single-content span {
    font-weight: 500;
    padding-right: 10px;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    color: var(--atf-thm-black);
}
.breadcrumb-single-content span a:hover {
    color: var(--first-color);
}
.breadcrumb-title {
    font-size: 60px !important;
    font-weight: 400;
    letter-spacing: -1px;
    color: var(--atf-thm-white);
    line-height: 1.3;
    font-family: var(--atf-ff-heading);
}
.breadcrumb-bg-attach {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.breadcrumb-spacing {
    padding-top: 250px;
    padding-bottom: 120px;
}
.breadcrumb-single-content .arrow {
    border: 1px solid var(--atf-thm-black);
    display: inline-block;
    padding: 4px;
    -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: 0px 0 0px 7px;
    background: var(--atf-thm-black);
    border-radius: 50%;
}
@media only screen and (max-width: 991px) {
    .breadcrumb-bg-attach {
        background-position: center;
    }
}
@media only screen and (max-width: 991px) {
    .breadcrumb-title {
        font-size: 50px !important;
    }
}
@media only screen and (max-width: 767px) {
    .breadcrumb-title {
        font-size: 36px !important;
        letter-spacing: 0px;
    }
}
.blog_list_slider .atf-blog-thumb img {
    position: relative;
}
.blog_list_slider .swiper-button-next,
.swiper-button-prev {
    top: 50%;
    color: var(--swiper-navigation-color, #1b3df4);
    background: var(--second-color);
    width: 50px;
    height: 50px;
    border-radius: 30px;
}
.swiper-button-next::after,
.swiper-rtl .swiper-button-prev::after {
    content: "\f061";
    font-size: 20px;
    font-weight: 700;
    font-family: var(--atf-ff-fontawesome);
}
.swiper-button-prev::after,
.swiper-rtl .swiper-button-next::after {
    content: "\f060";
    font-size: 20px;
    font-weight: 700;
    font-family: var(--atf-ff-fontawesome);
}
@media only screen and (max-width: 576px) {
    .blog_list_slider .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }
}
blockquote {
    position: relative;
    padding: 40px;
    border-radius: 15px;
    background-color: var(--atf-rgb-white);
    border: 2px solid var(--first-color);
    margin-bottom: 0;
}
blockquote span {
    display: inline-block;
    text-align: center;
    font-size: 70px;
    line-height: 1;
    color: var(--atf-thm-black);
    opacity: 0.2;
}
blockquote p {
    font-weight: 500;
    margin-bottom: 15px;
}
.blockquote-info {
    position: relative;
    font-size: 14px;
    padding-left: 25px;
    color: var(--atf-thm-black);
}
.blockquote-info::before {
    position: absolute;
    width: 15px;
    height: 2px;
    top: 50%;
    left: 0px;
    transform: translateY(-50%);
    content: "";
    background: var(--first-color);
}
.instagram-sidebar-image-area {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
}
.instagram-sidebar-image img {
    width: 100% !important;
    height: 100% !important;
    margin-bottom: 0 !important;
    border-radius: 5px;
}
.instagram-sidebar-image {
    transition: all 0.4s ease 0s;
    position: relative;
}
.instagram-sidebar-image::before {
    content: "";
    width: 100%;
    height: 100%;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    background: var(--first-color);
    transition: all 0.4s ease-in;
    overflow: hidden;
    border-radius: 5px;
}
.instagram-sidebar-image:hover::before {
    opacity: 1;
}
.instagram-sidebar-image .icon {
    opacity: 0;
    transform: translate(-50%, -50%);
    position: absolute;
    left: 50%;
    top: 0;
    transition: all 0.4s ease 0s;
}
.instagram-sidebar-image:hover .icon {
    opacity: 1;
    top: 50%;
}
.instagram-sidebar-image .icon a {
    color: var(--atf-thm-white);
    font-size: 20px;
    text-align: center;
    line-height: 38px;
    display: block;
    transition: all 0.4s ease 0s;
}
.pagination {
    font-family: var(--atf-ff-body);
    display: inline-flex;
    position: relative;
}
@media only screen and (max-width: 480px) {
    .pagination {
        font-size: 0;
        display: inline-block;
    }
    .pagination li {
        display: inline-block;
        vertical-align: top;
        margin: 0 0 15px;
    }
}
.atf-service-icon-post span {
    font-size: 20px;
    background: var(--second-color);
    width: 60px;
    height: 60px;
    justify-content: center;
    display: flex;
    align-items: center;
    color: var(--atf-thm-black);
    border-radius: 15px;
}
.atf-service-icon-post {
    position: absolute;
    bottom: 5%;
    right: 50%;
    transform: translate(50%, 50%);
}
.atf-service-btn.v2 a {
    background-color: var(--atf-thm-black);
    color: var(--atf-thm-white);
}
.progress {
    overflow: visible !important;
}
.form-message {
    color: var(--atf-thm-black);
}
.atf-contact-details {
    background: var(--atf-grey-7);
    padding: 20px 30px;
}
.atf-contact-address h3 {
    font-size: 24px;
    font-weight: 400;
}
.atf-contact-address p {
    margin: 0;
}
.atf-contact-icon {
    width: 90px;
    height: 100px;
    line-height: 100px;
    background: var(--first-color);
    font-size: 30px;
    color: var(--atf-thm-white);
    text-align: center;
    border-radius: 5%;
}
.map iframe {
    width: 100%;
    height: 100%;
    min-height: 500px;
    display: block;
}
.atf-footer-widget-logo img {
    margin-top: -4px;
}
.atf-footer-widget.footer-col-4-1 p {
    color: var(--atf-thm-white);
}
.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-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(--second-color);
    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-copyright-style {
    background: var(--first-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;
    }
}
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
@keyframes zoom {
    0% {
        transform: scale(0.5);
    }
    50% {
        transform: scale(1);
    }
    100% {
        transform: scale(0.5);
    }
}
@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);
    }
}
.line-clamp-2 {
    display: -webkit-box;
    height: 68px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.partner .swiper-slide {
    padding: 2rem;
}
@media only screen and (max-width: 767px) {
    .partner .swiper-wrapper {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        flex-wrap: wrap;
    }
    .partner .swiper-slide {
        width: 100% !important;
        flex-shrink: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0;
    }
    .partner .swiper-slide img {
        max-width: 100%;
        height: auto;
    }
}
.pagination{
    font-family: var(--atf-ff-body);
    display: inline-flex;
    position: relative;
}
.pagination li a.page-link {
	color: var(--atf-thm-black);
	background: repeating-linear-gradient(#2f4783,#2f4783 2px,#fff 2px, #fff 3px);
	font-size: 18px;
	font-weight: 600;
	text-align: center;
	line-height: 50px;
	height: 50px;
	width: 50px;
	padding: 0;
	margin: 0 15px;
	border: none;
	border-radius: 0;
	display: block;
	position: relative;
	z-index: 0;
	transition: all 0.1s ease 0s;
}
.pagination li:first-child a.page-link, .pagination li:last-child a.page-link {
	font-size: 18px;
	line-height: 53px;
}
.pagination li a.page-link:hover, .pagination li a.page-link:focus, .pagination li.active a.page-link:hover, .pagination li.active a.page-link {
	color: var(--atf-thm-color);
	border:none;
	box-shadow:none;
}
.pagination li a.page-link:before{
    content: '';
    background: var(--atf-thm-white);
    opacity: 0.8;
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    top: 0;
    z-index: -1;
    transition: all 0.3s ease 0s;
}
.pagination li a.page-link:hover:before,
.pagination li a.page-link:focus:before,
.pagination li.active a.page-link:hover:before,
.pagination li.active a.page-link:before{
    border-radius: 50%;
    opacity: 1;
    transform: scale(0.7);
}
@media only screen and (max-width: 480px){
    .pagination{
        font-size: 0;
        display: inline-block;
    }
    .pagination li{
        display: inline-block;
        vertical-align: top;
        margin: 0 0 15px;
    }
}