/*=============================
	1. Google Fonts
/* ===============================*/

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

/*=============================
	1. Variable CSS
===============================*/
:root {
    --tg-body-font-family: 'Outfit', sans-serif;
    --tg-heading-font-family: 'Outfit', sans-serif;
    --tg-primary-color: #FF641B;
    --tg-secondary-color: #183354;
    --tg-body-font-color: #545E69;
    --tg-heading-font-color: #183354;
    --tg-paragraph-color: #545E69;
    --tg-body-font-size: 16px;
    --tg-body-font-weight: 500;
    --tg-heading-font-weight: 700;
    --tg-body-line-height: 1.7;
    --tg-heading-line-height: 1.2;
    --tg-blue: #05F;
    --tg-blue-two: #4005E7;
    --tg-indigo: #5200FF;
    --tg-purple: #6f42c1;
    --tg-pink: #DF1DFF;
    --tg-red: #dc3545;
    --tg-orange: #fd7e14;
    --tg-yellow: #ffc107;
    --tg-green: #198754;
    --tg-teal: #20c997;
    --tg-cyan: #0dcaf0;
    --tg-white: #ffffff;
    --tg-gray: #6c757d;
    --facebook: #3b5998;
    --twitter: #00acee;
    --linkedin: #1976d2;
    --pinterest: #3b5998;
    --youtube: #c4302b;
    --skype: #00aff0;
}

body {
    font-family: var(--tg-body-font-family);
    font-weight: var(--tg-body-font-weight);
    font-size: var(--tg-body-font-size);
    line-height: var(--tg-body-line-height);
    color: var(--tg-body-font-color);
    font-style: normal;
    background: linear-gradient(45deg, #FF641B, #EA0000);
}

img,
.img {
    max-width: 100%;
    transition: all 0.3s ease-out 0s;
}

.f-left {
    float: left
}

.f-right {
    float: right
}

.fix {
    overflow: hidden
}

.relative {
    position: relative;
}

.z-index-100 {
    z-index: 100;
}

a,
button {
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    text-decoration: none;
}

a:focus,
.btn:focus,
button:focus {
    text-decoration: none;
    outline: none;
    box-shadow: none;
}

a:hover,
.portfolio-cat a:hover,
.footer -menu li a:hover {
    color: var(--tg-primary-color);
    text-decoration: none;
}

a,
button {
    color: var(--tg-primary-color);
    outline: medium none;
    text-decoration: none;
}

.btn:focus,
button:focus,
input:focus,
input:focus,
textarea,
textarea:focus {
    outline: 0
}

.uppercase {
    text-transform: uppercase;
}

.capitalize {
    text-transform: capitalize;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--tg-heading-font-family);
    color: var(--tg-heading-font-color);
    margin-top: 0px;
    margin-bottom: .7rem;
    font-style: normal;
    line-height: var(--tg-heading-line-height);
    font-weight: var(--tg-heading-font-weight);
    text-transform: inherit;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: inherit;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

.list-wrap {
    margin: 0px;
    padding: 0px;
}

.list-wrap li {
    list-style: none
}

p {
    font-size: var(--tg-body-font-size);
    font-weight: var(--tg-body-font-weight);
    line-height: var(--tg-body-line-height);
    color: var(--tg-paragraph-color);
    margin-bottom: 15px;
}

hr {
    border-bottom: 1px solid var(--tg-primary-color);
    border-top: 0 none;
    margin: 30px 0;
    padding: 0;
}

label {
    color: var(--tg-body-font-color);
    cursor: pointer;
    font-size: 16px;
    font-weight: 400;
}

*::-moz-selection {
    background: var(--tg-primary-color);
    color: var(--tg-white);
    text-shadow: none;
}

::-moz-selection {
    background: var(--tg-primary-color);
    color: var(--tg-white);
    text-shadow: none;
}

::selection {
    background: var(--tg-primary-color);
    color: var(--tg-white);
    text-shadow: none;
}

*::-moz-placeholder {
    color: var(--tg-body-font-color);
    font-size: var(--tg-body-font-size);
    opacity: 1;
}

*::placeholder {
    color: var(--tg-body-font-color);
    font-size: var(--tg-body-font-size);
    opacity: 1;
}

.theme-overlay {
    position: relative
}

.br-20 {
    border-radius: 20px;
}

.theme-overlay::before {
    background: var(--tg-primary-color) none repeat scroll 0 0;
    content: "";
    height: 100%;
    left: 0;
    opacity: 0.6;
    position: absolute;
    top: 0;
    width: 100%;
}

.separator {
    border-top: 1px solid var(--tg-primary-color);
}

/* text color  */
.text-primary {
    color: var(--tg-primary-color);
}

/* background color  */
.bg-orange {
    background-color: #FF8F3F;
}

.bg-1 {
    background-color: #692200;
}

.bg-black {
    background-color: #000000;
}

.bg-2 {
    background-color: #FF8D28;
}

.bg-3 {
    background-color: #6155F5;
}

.bg-4 {
    background-color: #FFCC00;
}

.bg-5 {
    background-color: #808080;
}

.bg-6 {
    background-color: #EDEDED;
}

.bg-7 {
    background-color: #34C759;
}

.bg-8 {
    background-color: #CB30E0;
}

.bg-9 {
    background-color: #FF6015;
}

.bg-10 {
    background-color: #FF5E12;
}

.bg-11 {
    background-color: #FF5200;
}

.bg-12 {
    background-color: #FFCC00;
}

.bg-13 {
    background-color: #EA0000;
}

.section-space {
    padding-top: 120px;
    padding-bottom: 120px;
}

/*=============================
	1. Button style
===============================*/
.btn {
    user-select: none;
    -moz-user-select: none;
    /* background: linear-gradient(47deg, var(--tg-primary-color) 0%, var(--tg-primary-color) 100%); */
    border: medium none;
    border-radius: 30px;
    color: var(--tg-white);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: .5px;
    line-height: 1;
    margin-bottom: 0;
    padding: 18px 40px;
    text-align: center;
    touch-action: manipulation;
    transition: all 0.3s ease 0s;
    vertical-align: middle;
    white-space: nowrap;
}

/* .btn:hover {
    box-shadow: none;
    color: var(--tg-white);
    background: linear-gradient(47deg, var(--tg-secondary-color) 0%, var(--tg-secondary-color) 100%);
} */
.breadcrumb>.active {
    color: var(--tg-primary-color);
}

/* scrollUp */
.scroll-top {
    width: 40px;
    height: 40px;
    line-height: 40px;
    position: fixed;
    bottom: -10%;
    right: 40px;
    font-size: var(--tg-body-font-size);
    border-radius: 50%;
    z-index: 99;
    color: var(--tg-white);
    text-align: center;
    cursor: pointer;
    background: var(--tg-primary-color);
    transition: 1s ease;
    border: none;
}

.scroll-top.open {
    bottom: 30px;
}

.scroll-top::after {
    position: absolute;
    z-index: -1;
    content: '';
    top: 100%;
    left: 5%;
    height: 10px;
    width: 90%;
    opacity: 1;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 80%);
}

.scroll-top:hover {
    background: var(--tg-secondary-color);
}


/*=============================
	02. Header
===============================*/
.custom-container {
    max-width: 1545px;
}

.transparent-header {
    position: absolute;
    left: 0;
    top: 0px;
    width: 100%;
    z-index: 9;
    height: auto;
}

.menu-area {
    padding: 20px 0;
}

.menu-nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.navbar-wrap {
    display: flex;
    flex-grow: 1;
}

.navbar-wrap ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 0 0;
    margin: 0 auto;
}

.navbar-wrap ul li {
    list-style: none;
    display: block;
    position: relative;
}

.navbar-wrap ul li a {
    font-size: 18px;
    font-weight: 700;
    text-transform: capitalize;
    color: var(--tg-white);
    padding: 30px 18px;
    display: block;
    line-height: 1;
    position: relative;
    z-index: 1;
}

.navbar-wrap>ul>li.active>a,
.navbar-wrap>ul>li:hover>a {
    color: var(--tg-primary-color);
}

.main-menu .navigation li.menu-item-has-children .dropdown-btn {
    display: none;
}

.header-action>ul {
    display: flex;
    align-items: center;
    margin-left: 10px;
}

.header-action>ul li {
    position: relative;
    margin-left: 30px;
}

.header-action ul li:first-child {
    margin-left: 0;
}

.navbar-wrap ul li .sub-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    min-width: 230px;
    border: 1px solid #f5f5f5;
    background: var(--tg-white);
    margin: 0 0;
    transform: scale(1, 0);
    transform-origin: 0 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-box-shadow: 0px 30px 70px 0px rgba(137, 139, 142, 0.15);
    -moz-box-shadow: 0px 30px 70px 0px rgba(137, 139, 142, 0.15);
    box-shadow: 0px 30px 70px 0px rgba(137, 139, 142, 0.15);
    border-radius: 0;
    padding: 18px 0;
    display: block;
    visibility: hidden;
    opacity: 0;
    z-index: 9;
}

.navbar-wrap ul li .sub-menu .sub-menu {
    right: auto;
    left: 100%;
    top: 0;
}

.navbar-wrap ul li .sub-menu li {
    margin-left: 0;
    text-align: left;
    display: block;
}

.navbar-wrap ul li .sub-menu li a {
    padding: 9px 15px 9px 25px;
    line-height: 1.4;
    font-weight: 500;
    color: #5d5d5d;
    text-transform: capitalize;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.navbar-wrap ul li:hover>.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.logo {
    max-width: 180px;
}

.sticky-menu {
    position: fixed;
    left: 0;
    margin: auto;
    top: 0;
    width: 100%;
    z-index: 99;
    background: var(--tg-white);
    -webkit-animation: 1000ms ease-in-out 0s normal none 1 running fadeInDown;
    animation: 1000ms ease-in-out 0s normal none 1 running fadeInDown;
    -webkit-box-shadow: 0 10px 15px rgba(25, 25, 25, 0.1);
    box-shadow: 0 10px 15px rgba(25, 25, 25, 0.1);
    border-radius: 0;
}

.sticky-menu.menu-area {
    padding: 0;
}

/*=============================
	04. Mobile Menu
===============================*/
.nav-outer .mobile-nav-toggler {
    position: relative;
    float: right;
    font-size: 40px;
    line-height: 50px;
    cursor: pointer;
    display: none;
    color: var(--tg-white);
    margin-right: 30px;
    top: 15px;
}

.nav-logo img {
    width: 150px;
}

.mobile-menu {
    position: fixed;
    right: 0;
    top: 0;
    width: 300px;
    padding-right: 30px;
    max-width: 100%;
    height: 100%;
    z-index: 99;
    border-radius: 0px;
    transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -moz-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -webkit-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -ms-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86)e;
    -o-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -webkit-transform: translateX(101%);
    -ms-transform: translateX(101%);
    transform: translateX(101%);
}

.mobile-menu .navbar-collapse {
    display: block !important;
}

.mobile-menu .nav-logo {
    position: relative;
    padding: 30px 25px;
    text-align: left;
}

.mobile-menu-visible {
    overflow: hidden;
}

.mobile-menu-visible .mobile-menu {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
}

.mobile-menu .navigation li.current>a:before {
    height: 100%;
}

.menu-backdrop {
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    transition: all 700ms ease;
    -moz-transition: all 700ms ease;
    -webkit-transition: all 700ms ease;
    -ms-transition: all 700ms ease;
    -o-transition: all 700ms ease;
    opacity: 0;
    visibility: hidden;
    background: rgba(0, 0, 0, 0.5);
}

.mobile-menu-visible .menu-backdrop {
    opacity: 1;
    visibility: visible;
}

.mobile-menu .menu-box {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    max-height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    background: var(--tg-white);
    padding: 0px 0px;
    z-index: 5;
    box-shadow: -9px 0 14px 0px rgb(0 0 0 / 6%);
}

.mobile-menu-visible .mobile-menu .menu-box {
    opacity: 1;
    visibility: visible;
}

.mobile-menu .close-btn {
    position: absolute;
    right: 15px;
    top: 28px;
    line-height: 30px;
    width: 35px;
    text-align: center;
    font-size: 20px;
    color: #292b37;
    cursor: pointer;
    z-index: 10;
    -webkit-transition: all 0.9s ease;
    -o-transition: all 0.9s ease;
    transition: all 0.9s ease;
}

.mobile-menu-visible .mobile-menu .close-btn {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
}

.mobile-menu .navigation {
    position: relative;
    display: block;
    width: 100%;
    float: none;
    margin: 0;
    padding: 0;
}

.mobile-menu .navigation ul {
    padding: 0;
    margin: 0;
}

.mobile-menu .navigation li {
    position: relative;
    display: block;
    border-top: 1px solid rgb(0 0 0 / 10%);
}

.mobile-menu .navigation:last-child {
    border-bottom: 1px solid rgb(0 0 0 / 10%);
}

.mobile-menu .navigation li>ul>li:first-child {
    border-top: 1px solid rgb(0 0 0 / 10%);
}

.mobile-menu .navigation li>a {
    position: relative;
    display: block;
    line-height: 24px;
    padding: 10px 60px 10px 25px;
    font-size: 16px;
    font-weight: 700;
    color: var(--tg-heading-font-color);
    text-transform: capitalize;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    border: none;
}

.mobile-menu .navigation li ul li>a {
    font-size: 16px;
    margin-left: 20px;
    text-transform: capitalize;
}

.mobile-menu .navigation li ul li ul li a {
    margin-left: 40px;
}

.mobile-menu .navigation li ul li ul li ul li a {
    margin-left: 60px;
}

.mobile-menu .navigation li>a:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 0;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.mobile-menu .navigation li.menu-item-has-children .dropdown-btn {
    position: absolute;
    right: 15px;
    top: 6px;
    width: 32px;
    height: 32px;
    text-align: center;
    font-size: 16px;
    line-height: 32px;
    color: #292b37;
    background: var(--tg-gray);
    cursor: pointer;
    border-radius: 2px;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 5;
}

.mobile-menu .navigation li.menu-item-has-children .dropdown-btn i {
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.mobile-menu .navigation li.menu-item-has-children .dropdown-btn.open i {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    color: var(--tg-primary-color);
}

.mobile-menu .navigation li>ul,
.mobile-menu .navigation li>ul>li>ul {
    display: none;
}

.mobile-menu .social-links ul {
    display: flex;
    position: relative;
    text-align: center;
    padding: 30px 20px 20px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.mobile-menu .social-links li {
    position: relative;
    display: inline-block;
    margin: 0px 6px 10px;
}

.mobile-menu .social-links li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    position: relative;
    line-height: 32px;
    font-size: 16px;
    color: var(--tg-heading-font-color);
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    border: 1px solid var(--tg-gray);
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
}

.mobile-menu .social-links li a:hover {
    border-color: var(--tg-primary-color);
    background: var(--tg-primary-color);
    color: var(--tg-white);
}

.menu-area .mobile-nav-toggler {
    position: relative;
    float: right;
    font-size: 30px;
    cursor: pointer;
    line-height: 1;
    color: #fff;
    display: none;
}

/*=============================
	04. Banner
===============================*/
.banner-bg {
    background-size: cover;
    background-position: center;
    padding: 180px 0 0;
    position: relative;
    z-index: 1;
}

.banner-content {
    text-align: center;
    position: relative;
    z-index: 10;
}

.banner-content .overlay-title {
    font-size: 200px;
    font-weight: 900;
    letter-spacing: 5px;
    text-transform: capitalize;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -30px;
    line-height: .8;
    margin-bottom: 0;
    color: var(--tg-white);
    z-index: -1;
}

.banner-content .title {
    margin-bottom: 30px;
    font-weight: 900;
    font-size: 75px;
    text-transform: capitalize;
    color: #F6F6F6 !important;
}

.banner-counter-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px 60px;
    margin-bottom: 40px;
}

.counter-item .count {
    font-weight: 900;
    font-size: 60px;
    color: var(--tg-white);
    margin-bottom: 0;
}

.counter-item p {
    margin-bottom: 0;
    font-size: 24px;
    font-weight: 400;
    text-transform: capitalize;
    color: var(--tg-white);
}

.banner-img {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

/* .banner-img img:nth-child(4),
.banner-img img:nth-child(1) {
    border-radius: 10.528px;
    box-shadow: 0px 30px 30px 0px #E2E8EB, 0px 20px 30px 0px #DCE2E4;
} */
.banner-img img:nth-child(2) {
    margin: 0 -57px -55px;
}

.banner-shape img {
    position: absolute;
    right: 0;
    top: 28%;
    z-index: -1;
}


/*=============================
	05. Banner
===============================*/
.section-title .title {
    font-size: 60px;
    color: var(--tg-primary-color);
}

.section-title .title span {
    position: relative;
    z-index: 1;
}

.section-title .title span svg {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: -4px;
    z-index: -1;
}

.has-animation.active-animation .section-title .title span svg path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    -webkit-animation: dash_animation 10s linear forwards;
    animation: dash_animation 10s linear forwards;
}

@-webkit-keyframes dash_animation {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes dash_animation {
    to {
        stroke-dashoffset: 0;
    }
}

.features-item-wrap .row {
    --bs-gutter-x: 24px;
}

.features-item {
    margin-bottom: 30px;
}

.features-img img {
    border-radius: 10px;
}

.feature-card-wrap {
    display: grid;
    grid-template-columns: auto auto auto auto auto;
    gap: 30px;
}

/*=============================
	06. demo
===============================*/
.demo-bg {
    background-size: cover;
    background-position: center;
    padding: 100px 0 90px;
}

.demo-item-wrap .row {
    --bs-gutter-x: 24px;
}

.demo-item {
    margin-bottom: 40px;
    text-align: center;
}

.demo-img {
    margin-bottom: 30px;
}

.demo-img img {
    border-radius: 10px;
    box-shadow: 0px 4px 30px 0px #D8DCE7;
}

.demo-content .title {
    margin-bottom: 0;
    font-size: 24px;
    font-weight: 800;
    line-height: 1;
    transition: .3s ease-in-out;
}

.demo-item:hover .demo-img img {
    transform: translateY(-5px);
}

.coming-soon-demo:hover .demo-img img {
    transform: translateY(0);
}

.coming-soon-demo .title:hover {
    color: var(--tg-primary-color);
}



/*=============================
	07. eleMentor
===============================*/
.elementor-area {
    background: var(--tg-primary-color);
    padding: 130px 0;
    z-index: 1;
    position: relative;
}

.section-title.white-title .title {
    color: var(--tg-white);
}

.elementor-content {
    width: 85%;
}

.elementor-content img {
    margin-bottom: 25px;
}

.elementor-content .section-title .title span {
    font-weight: 600;
    font-style: italic;
}

.elementor-content p {
    margin-bottom: 0;
    color: var(--tg-white);
}

.elementor-img {
    position: relative;
    text-align: right;
}

.elementor-img .img-shape {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 513px;
    height: 513px;
    background: var(--tg-white);
    border-radius: 50%;
    z-index: -1;
}


/*=============================
	08. gallery
===============================*/
.gallery-item {
    margin-bottom: 30px;
}

.gallery-img img {
    border-radius: 20px;
}

/*=============================
	08. inner-demo
===============================*/
.inner-demo-bg {
    background-size: cover;
    background-position: center;
    padding: 100px 0 80px;
    overflow: hidden;
}

.demo-active .slick-list {
    overflow: visible;
}

.demo-active .col-4 {
    padding: 0 15px;
}

.inner-demo-item {
    margin-bottom: 30px;
}

.inner-demo-item .demo-img {
    margin-bottom: 0;
}

/*=============================
	08.features
===============================*/
.features-area-two {
    position: relative;
    overflow: hidden;
    background-color: #fff;
}

.features-item-two {
    border-radius: 15px;
    border: 1px solid #E0E0E0;
    text-align: center;
    padding: 20px 30px;
    min-height: 210px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--tg-white);
    margin-bottom: 30px;
    transition: .3s linear;
}

.features-item-two:hover {
    transform: translateY(-5px);
}

.features-item-two .icon {
    margin-bottom: 20px;
}

.features-item-two .content .title {
    margin-bottom: 0;
    font-size: 18px;
    text-transform: capitalize;
}


/*=============================
	08.footer
===============================*/
.footer-bg {
    background-size: cover;
    background-position: center;
    padding: 130px 0;
    background-color: #000;
}

.footer-content .title {
    margin-bottom: 40px;
    color: var(--tg-white);
    font-size: 48px;
    font-weight: 800;
}

.footer-content .btn {
    background: var(--tg-white);
    color: var(--tg-primary-color);
}


/*=============================
	28. Preloader
===============================*/
#preloader {
    background-color: var(--tg-white);
    height: 100%;
    width: 100%;
    position: fixed;
    margin-top: 0px;
    top: 0px;
    z-index: 999;
}

#loading-center {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 75px;
    display: inline-block;
    vertical-align: middle;
}

.loader .loader-outter {
    position: absolute;
    border: 4px solid var(--tg-primary-color);
    border-left-color: transparent;
    border-bottom: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    -webkit-animation: loader-outter 1s cubic-bezier(.42, .61, .58, .41) infinite;
    animation: loader-outter 1s cubic-bezier(.42, .61, .58, .41) infinite;
}

.loader .loader-inner {
    position: absolute;
    border: 4px solid var(--tg-primary-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    left: calc(50% - 20px);
    top: calc(50% - 20px);
    border-right: 0;
    border-top-color: transparent;
    -webkit-animation: loader-inner 1s cubic-bezier(.42, .61, .58, .41) infinite;
    animation: loader-inner 1s cubic-bezier(.42, .61, .58, .41) infinite;
}

@-webkit-keyframes loader-outter {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes loader-outter {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes loader-inner {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }
}

@keyframes loader-inner {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }
}


.button-container {
    width: auto;
    background: #01010166;
    padding: 15px;
    max-width: 1020px;
    margin: auto;
    border-radius: 39px;
}

.header-btn .btn {
    background-color: var(--tg-white);
    color: #000;
}

.header-btn .btn:hover {
    background-color: var(--tg-secondary-color);
    color: var(--tg-white) !important;
}

.nav-tabs .nav-link {
    font-size: 19px;
    font-weight: 600;
}

.nav-tabs .nav-link {
    color: var(--tg-secondary-color);
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    background-color: var(--tg-primary-color);
    color: var(--tg-white);
}

.feature_card {
    padding: 45px 20px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 1px 4px 9px #80808029;
    transition: 0.3s linear;
    margin-bottom: 30px;
}

.feature_card:hover {
    box-shadow: 1px 4px 9px var(--tg-primary-color);
}

.feature_card h2 {
    font-size: 24px;
    margin-bottom: 0px;
}

.feature_card img {
    max-width: 270px;
    margin-bottom: 10px;
}

.feature_card.mt-70 {
    margin-top: 100px;
}

img.position-absolute.features-icon-1 {
    top: 0;
    left: 0;
}

img.position-absolute.features-icon-2 {
    bottom: 50px;
    left: 0;
}

img.position-absolute.features-icon-3 {
    right: 0;
    bottom: 50px;
}

img.position-absolute.features-icon-4 {
    top: 0px;
    right: 60px;
}

.inner-demo-item {
    margin-bottom: 30px;
    margin-left: 10px;
    margin-right: 10px;
    max-height: 400px;
    overflow: hidden;
}

/* banner section  */
.banner-area {
    background-color: #EA0101;
    overflow: hidden;
}
.banner-slider-item img {
    border-radius: 10px;
}
img.position-absolute.banner-shape-1 {
    left: -39px;
    top: 228px;
}

img.position-absolute.banner-shape-2 {
    right: -39px;
    top: 228px;
}

img.position-absolute.banner-icon-1 {
    right: 200px;
    top: 231px;
}

img.position-absolute.banner-icon-2 {
    right: 265px;
    top: 500px;
}

img.position-absolute.banner-icon-3 {
    left: 300px;
    bottom: 600px;
}

.marquee-wrap {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.marquee-slider {
    display: flex;
    width: max-content;
    animation: marquee 100s linear infinite;
    height: 450px;
    gap: 30px;
}

.banner-slider-item {
    width: 500px;
    border-radius: 10px;
    flex-shrink: 0;
}

img.position-absolute.marquee-wrap-shape-1 {
    bottom: -270px;
    left: 0;
    right: 0;
    width: 100%;
}

.demo-img {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 2px 2px 15px #000e3387;
    margin-bottom: 30px;
}

.demo-img-1 {
    height: 1040px;
}

.demo-img-2 {
    height: 800px;
    margin-right: 4px;
}

.demo-img-3 {
    height: 800px;
    margin-left: 4px;
}

.dashboard-card-item h2 {
    font-size: 58px;
}

.builder-title {
    margin-left: 180px;
}

.ai-features-wrapper {
    margin-left: 158px;
    margin-top: 81px;
}

.ai-feature-card p {
    font-size: 33px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0;
    line-height: 1.3;
}

.ai-feature-card {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
}

.ai-feature-card .img {
    width: 100px;
    min-width: 100px;
}


.transparent-header.sticky-menu .navbar-wrap ul li a {
    color: #000;
}

.transparent-header.sticky-menu .header-btn .btn {
    background-color: #000;
    color: #fff;
}

.transparent-header.sticky-menu .white-logo {
    display: none !important;
}

.transparent-header.sticky-menu .dark-logo {
    display: block !important;
}

.transparent-header.sticky-menu .mobile-nav-toggler {
    color: #000;
}

/* .banner-slider.marquee-wrap.position-relative.wow.fadeInUp {
    transform: rotate(356deg);
} */

.banner-area.banner-bg::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -25px;
    right: 0;
    top: 0;
    width: 100%;
    height: auto;
    background-image: url('./../img/banner/shape.png');
    z-index: 1;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center bottom;
}

/* Infinite Loop Animation */
@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* animation  */
@keyframes floatUpDown {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0);
    }
}

.banner-shape-1,
.banner-shape-2,
.features-icon-1,
.features-icon-4 {
    animation: floatUpDown 4s ease-in-out infinite;
}


@keyframes slowRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.banner-icon-1,
.features-icon-2 {
    animation: slowRotate 12s linear infinite;
}

.banner-icon-2,
.features-icon-3 {
    animation: slowRotate 10s linear infinite;
}

.banner-icon-3 {
    animation: slowRotate 14s linear infinite;
}