/*====================================
    google font
====================================*/
@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/*====================================
    root
====================================*/
[data-theme="light"] {
    --body-font-color: #525252;
    --body-bgcolor: #ffffff;
    --heading-font-color: #333333;
    --section-heading-font-color: #333333;
    --paragraph-font-color: #525252;
    --extra-bgcolor: #f7f4f3;
}
[data-theme="dark"] {
    --body-font-color: #b3b3b3;
    --body-bgcolor: #1a1a1a;
    --heading-font-color: #ffffff;
    --section-heading-font-color: #ffffff;
    --paragraph-font-color: #b3b3b3;
    --extra-bgcolor: #262626;
}

:root, [data-theme="dark"] {
    /* body */
    --body-font-size: 16px;
    --body-font-family: 'Figtree', sans-serif;
    --body-font-weight: 400;
    --body-font-style: normal;
    --body-font-line-height: normal;
    --body-font-letter-spacing: normal;

    /* heading */
    --heading-font-family: 'Figtree', sans-serif;
    --heading-font-weight: 600;
    --heading-font-style: normal;
    --heading-font-line-height: normal;

    /* section-heading */
    --section-heading-font-family: 'Figtree', sans-serif;
    --section-heading-font-text: none;
    --section-heading-font-weight: 700;
    --section-heading-font-style: normal;
    --section-heading-font-line-height: 1.2;

    /* paragraph */
    --paragraph-font-family: 'Figtree', sans-serif;
    --paragraph-font-line-height: 25px;

    /* general color */
    --primary-font-color: #fc834c;
    --secondary-font-color: #f34d4e;
    --extra-font-color-light: #ffffff;
    --extra-font-color-dark: #333333;
    --gradient-color: linear-gradient(to right, var(--primary-font-color) 0%, var(--secondary-font-color) 50%, var(--primary-font-color) 100%);
    --gbtn-color: linear-gradient(to right, var(--primary-font-color) 0%, var(--secondary-font-color) 50%, var(--primary-font-color) 100%);

    /* border */
    --border-color: 128,128,128;
    --border-opacity: 0.1;
    --border-radius: 0px;

    /* box-shadow */
    --box-shadow-outer: 0, 0, 0;
    --box-shadow-outer-opacity: 0.15;
}

/*====================================
    color css
====================================*/
/* body property css */
.body-color,
.body-primary-color {
    color: var(--body-font-color);
}
.body-primary-color {
    -webkit-transition: color 0.5s ease-in-out;
    transition: color 0.5s ease-in-out;
}
.body-primary-color:hover {
    color: var(--primary-font-color);
}
.body-bg {
    background-color: var(--body-bgcolor);
}

/* heading property css */
.heading-color {
    color: var(--heading-font-color);
}
.heading-weight {
    font-weight: var(--heading-font-weight);
}
.section-heading-weight {
    font-weight: var(--section-heading-font-weight);
}

/* general property css */
.primary-color {
    color: var(--primary-font-color);
}
.primary-bg {
    background-color: var(--primary-font-color);
}
.extra-color-light {
    color: var(--extra-font-color-light);
}
.extra-bg-light {
    background-color: var(--extra-font-color-light);
}
.extra-bg {
    background-color: var(--extra-bgcolor);
}
.primary-link {
    color: var(--heading-font-color);
    -webkit-transition: color 0.5s ease-in-out;
    transition: color 0.5s ease-in-out;
}
.current .primary-link,
.primary-link:hover {
    color: var(--primary-font-color);
}
.primary-btn {
    color: var(--extra-font-color-light);
    background-color: var(--extra-font-color-dark);
    -webkit-transition: color 0.5s ease-in-out,background-color 0.5s ease-in-out;
    transition: color 0.5s ease-in-out,background-color 0.5s ease-in-out;
}
.primary-btn:hover {
    color: var(--primary-font-color);
    background-color: var(--extra-font-color-dark);
}
.extra-btn {
    color: var(--primary-font-color);
    background-color: var(--heading-font-color);
    -webkit-transition: color 0.5s ease-in-out,background-color 0.5s ease-in-out;
    -o-transition: color 0.5s ease-in-out,background-color 0.5s ease-in-out;
    transition: color 0.5s ease-in-out,background-color 0.5s ease-in-out;
}
.extra-btn:hover {
    color: var(--extra-font-color-light);
    background-color: var(--primary-font-color);
}
.gradient-color {
    background-image: var(--gradient-color);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.gradient-btn {
    color: var(--extra-font-color-light);
    background-image: var(--gbtn-color);
    background-size: 200% 100%;
    background-position: 100%;
    -webkit-transition: background-position 0.5s ease-in-out;
    transition: background-position 0.5s ease-in-out;
}
.gradient-btn:hover {
    background-position: 0 100%;
}

/* icon property css */
.icon-size {
    font-size: 16px;
}

/*====================================
    body css
====================================*/
body {
    color: var(--body-font-color);
    font-size: var(--body-font-size);
    background-color: var(--body-bgcolor);
    font-family: var(--body-font-family);
    font-weight: var(--body-font-weight);
    font-style: var(--body-font-style);
    line-height: var(--body-font-line-height);
    letter-spacing: var(--body-font-letter-spacing);
    word-break: break-word;
}

/*====================================
    heading css
====================================*/
h1, h2, h3, h4, h5, h6 {
    color: var(--heading-font-color);
    margin: 0;
    padding: 0;
    font-family: var(--heading-font-family);
    font-weight: var(--heading-font-weight);
    font-style: var(--heading-font-style);
    line-height: var(--heading-font-line-height);
}

/*====================================
    section-heading css
====================================*/
.section-capture {
    margin-bottom: 40px;
}
@media (min-width: 576px) {
    .section-capture {
        margin-bottom: 50px;
    }
}
@media (min-width: 1200px) {
    .section-capture {
        margin-bottom: 60px;
    }
}

/* section-heading css */
.section-heading {
    color: var(--section-heading-font-color);
    font-size: 24px;
    font-family: var(--section-heading-font-family);
    text-transform: var(--section-heading-font-text);
    font-weight: var(--section-heading-font-weight);
    font-style: var(--section-heading-font-style);
    line-height: var(--section-heading-font-line-height);
}
@media (min-width: 576px) {
    .section-heading {
        font-size: 30px;
    }
}
@media (min-width: 1200px) {
    .section-heading {
        font-size: 40px;
    }
}

/*====================================
    paragraph css
====================================*/
p {
    color: var(--paragraph-font-color);
    margin: 0;
    font-family: var(--paragraph-font-family);
    line-height: var(--paragraph-font-line-height);
}

/*====================================
    'container' tag css
====================================*/
.container {
    padding: 0px 15px;
}
@media (min-width: 1600px) {
    .container {
        max-width: 1350px;
    }
}

/*====================================
    'container-fluid' tag css
====================================*/
.container-fluid {
    padding: 0px 15px;
}
@media (min-width: 1200px) {
    .container-fluid {
        padding: 0px 30px;
    }
}
@media (min-width: 1600px) {
    .container-fluid {
        padding: 0px 80px;
    }
}

/*====================================
    container, row, col css
====================================*/
.row {
    margin-left: -7.5px;
    margin-right: -7.5px;
}
.row>* {
    padding-left: 7.5px;
    padding-right: 7.5px;
}
.row-mtm {
    margin-top: -30px;
}
.row-mtm>* {
    margin-top: 30px;
}
.row-mt15 {
    margin-top: -15px;
}
.row-mt15>* {
    margin-top: 15px;
}
@media (min-width: 576px) {
    .row {
        margin-left: -15px;
        margin-right: -15px;
    }
    .row>* {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/*====================================
    'a' tag css
====================================*/
a {
    color: var(--heading-font-color);
    text-decoration: none;
}
a:focus {
    outline: none;
    box-shadow: none;
}

/*====================================
    'button' tag css
====================================*/
button {
    display: inline-block;
    padding: 0px;
    background: 0 0;
    font-family: var(--body-font-family);
    border: none;
    line-height: var(--body-font-line-height);
}
button, button:focus {
    outline: none;
    box-shadow: none;
}
.btn:focus,
.btn:active:focus,
.btn.active:focus {
    outline: none;
    box-shadow: none;
}

/* btn-style */
.btn-style {
    display: inline-block;
    font-size: 16px;
    padding: 15px 30px;
    text-transform: uppercase;
    font-weight: var(--heading-font-weight);
    border: none;
    border-radius: var(--border-radius);
}

/* btn-style2 css */
.btn-style2 {
    display: inline-block;
    font-size: 16px;
    padding: 15px 30px;
    text-transform: uppercase;
    font-weight: var(--heading-font-weight);
    border: none;
    border-radius: var(--border-radius);
}

/*====================================
    disabled css
====================================*/
button.disabled,
a.disabled {
    pointer-events: none;
}

/*====================================
    'ul', 'li' tag css
====================================*/
ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* ul-mt5 css */
.ul-mt5 {
    margin-top: -5px;
    margin-left: -2.5px;
    margin-right: -2.5px;
}
.ul-mt5>* {
    margin-top: 5px;
    padding-left: 2.5px;
    padding-right: 2.5px;
}

/* ul-mt15 css */
.ul-mt15 {
    margin-top: -15px;
    margin-left: -7.5px;
    margin-right: -7.5px;
}
.ul-mt15>* {
    margin-top: 15px;
    padding-left: 7.5px;
    padding-right: 7.5px;
}

/* ul-mt30 css */
.ul-mt30 {
    margin-top: -15px;
    margin-left: -7.5px;
    margin-right: -7.5px;
}
.ul-mt30>* {
    margin-top: 15px;
    padding-left: 7.5px;
    padding-right: 7.5px;
}
@media (min-width: 1200px) {
    .ul-mt30 {
        margin-top: -30px;
        margin-left: -15px;
        margin-right: -15px;
    }
    .ul-mt30>* {
        margin-top: 30px;
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* ul-ftlink css */
.ul-ftlink {
    display: flex;
    flex-wrap: wrap;
    margin-top: -13px;
}
.ul-ftlink>* {
    width: 100%;
    margin-top: 13px;
}

/*===========================================
    'input', 'textarea' tag css
===========================================*/
input, textarea {
    color: var(--body-font-color);
    font-size: var(--body-font-size);
    padding: 10px 15px;
    background-color: var(--extra-font-color-light);
    font-family: var(--body-font-family);
    font-weight: var(--body-font-weight);
    border: 1px solid rgba(var(--border-color),var(--border-opacity));
    border-radius: var(--border-radius);
}
input {
    height: 50px;
}
textarea {
    display: block;
}
input::-webkit-input-placeholder, input::placeholder, textarea::-webkit-input-placeholder, textarea::placeholder {
    color: var(--body-font-color);
}

/* msg_error css */
input.msg_error, textarea.msg_error {
    color: var(--extra-font-color-light);
    --bs-bg-opacity: 0.5;
    --bs-border-opacity: 0.5;
    background-color: rgba(var(--bs-danger-rgb),var(--bs-bg-opacity));
    border-color: rgba(var(--bs-danger-rgb), var(--bs-danger-opacity));
}
input.msg_error::-webkit-input-placeholder, input.msg_error::placeholder, textarea.msg_error::-webkit-input-placeholder, textarea.msg_error::placeholder {
    color: var(--extra-font-color-light);
}

/* focus css */
input:focus, input:active, textarea:focus, textarea:active {
    outline: none;
    border-color: rgba(var(--border-color),var(--border-opacity));
    box-shadow: none;
}

/* disabled css */
input.disabled {
    pointer-events: none;
}

/* field-row css */
.row.field-row {
    margin-top: -27px;
}
.row.field-row>* {
    margin-top: 27px;
}

/* input, select, textarea field css */
.field-row .field-col label.field-label {
    margin: 0px 0px 16px 0px;
}

/*====================================
    section padding css
====================================*/
.section-ptb {
    padding-top: 60px;
    padding-bottom: 60px;
}
.section-pt {
    padding-top: 60px;
}
.section-pb {
    padding-bottom: 60px;
}
@media (min-width: 576px) {
    .section-ptb {
        padding-top: 80px;
        padding-bottom: 80px;
    }
    .section-pt {
        padding-top: 80px;
    }
    .section-pb {
        padding-bottom: 80px;
    }
}
@media (min-width: 1200px) {
    .section-ptb {
        padding-top: 100px;
        padding-bottom: 100px;
    }
    .section-pt {
        padding-top: 100px;
    }
    .section-pb {
        padding-bottom: 100px;
    }
}

/*====================================
    section bg-img css
====================================*/
.bg-img {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

/*====================================
   toggler-wrapper css
====================================*/
button.navbar-toggler {
    display: block;
    padding: 0px;
    border: none;
    cursor: pointer;
    outline: none;
}
button.navbar-toggler:focus {
    box-shadow: none;
}
button.navbar-toggler span.line,
button.navbar-toggler span.line::before,
button.navbar-toggler span.line::after {
    display: block;
    width: 16px;
    height: 2px;
    background-color: var(--heading-font-color);
    -webkit-transition: background-color 0.5s ease-in-out,top 0.5s ease-in-out,transform 0.5s ease-in-out;
    transition: background-color 0.5s ease-in-out,top 0.5s ease-in-out,transform 0.5s ease-in-out;
}
button.navbar-toggler span.line {
    position: relative;
}
button.navbar-toggler span.line::before,
button.navbar-toggler span.line::after {
    content: "";
    position: absolute;
    left: 0;
}
button.navbar-toggler span.line::before {
    top: -7px;
}
button.navbar-toggler span.line::after {
    top: 7px;
}
button.navbar-toggler[aria-expanded="true"] span.line {
    background-color: transparent;
}
button.navbar-toggler[aria-expanded="true"] span.line::before,
button.navbar-toggler[aria-expanded="true"] span.line::after {
    top: 0;
}
button.navbar-toggler[aria-expanded="true"] span.line::before {
    transform: rotate(45deg);
}
button.navbar-toggler[aria-expanded="true"] span.line::after {
    transform: rotate(-45deg);
}

/*====================================
    preloader css
====================================*/
.preloader.preloader-close {
    transform: translateY(-100%);
    -webkit-transition: transform 0.5s ease-in-out;
    transition: transform 0.5s ease-in-out;
}
.preloader .preloader-tp span.preloader-text {
    position: relative;
    font-size: 32px;
    border-bottom: 2px solid var(--heading-font-color);
}
.preloader .preloader-tp span.preloader-text::before {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background-image: var(--gradient-color);
    background-size: 200% auto;
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-animation: loaderProgress 5s linear forwards;
    animation: loaderProgress 5s linear forwards;
}
.preloader .preloader-tp span.preloader-text::after {
    content: attr(data-loading-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    white-space: nowrap;
    background-image: var(--gradient-color);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-animation: loaderText 5s linear forwards;
    animation: loaderText 5s linear forwards;
}

/*====================================
    back-to-top css
====================================*/
a#top {
    font-size: 20px;
    bottom: 60px;
    right: 15px;
    height: 45px;
    width: 45px;
    -webkit-transition: color 0.5s ease-in-out,background-color 0.5s ease-in-out,opacity 0.5s ease-in-out,visibility 0.5s ease-in-out;
    transition: color 0.5s ease-in-out,background-color 0.5s ease-in-out,opacity 0.5s ease-in-out,visibility 0.5s ease-in-out;
}
@media (min-width: 1200px) {
    a#top {
        right: 30px;
        height: 60px;
        width: 60px;
    }
}
@media (min-width: 1600px) {
    a#top {
        right: 80px;
    }
}

/*====================================
    cursor-pointer css
=====================================*/
.cursor {
  width: 30px;
  height: 30px;
  transform: translate(calc(-50% + 15px), -50%);
  border: 1px solid var(--heading-font-color);
  opacity: 0.2;
  transition: all 250ms ease-out;
}
.cursor.zoomout,
.cursor.zoomin,
.cursor.zoomin-icon,
.cursor.zoomin-icon.zoomout {
    width: 0px;
    height: 0px;
    opacity: 0;
    visibility: hidden;
}

/* cursor2 css */
.cursor2 {
    width: 10px;
    height: 10px;
    background-color: var(--heading-font-color);
    opacity: .2;
    transition: width .5s, height .5s, background-color .5s, opacity .5s, visibility .5s;
}
.cursor2.zoomout,
.cursor2.zoomin-icon.zoomout {
    width: 0px;
    height: 0px;
    opacity: 0;
    visibility: hidden;
}
.cursor2.zoomin {
    width: 30px;
    height: 30px;
}
.cursor2.zoomin-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-font-color);
    opacity: 1;
}
.cursor2.zoomin-icon::before,
.cursor2.zoomin-icon::after {
    font-family: remixicon!important;
    color: var(--extra-font-color-light);
    font-size: 16px;
    line-height: 1;
}
.cursor2.zoomin-icon::before {
    content: "\ea64";
}
.cursor2.zoomin-icon::after {
    content: "\ea6e";
}

/*====================================
    custom-radio css
====================================*/
label.cust-radio-label {
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
}
label.cust-radio-label span.cust-check {
    width: 20px;
    height: 20px;
}
label.cust-radio-label input:checked ~ span.cust-check-title {
    color: var(--primary-font-color);
}
label.cust-radio-label input:checked ~ span.cust-check {
    border-color: var(--primary-font-color);
}
label.cust-radio-label span.cust-check::after {
    display: none;
    content: "";
    position: absolute;
    bottom: 50%;
    left: 50%;
    transform: translate(-50%, 50%);
    width: 9px;
    height: 9px;
    background-color: var(--primary-font-color);
    border-radius: 100%;
}
label.cust-radio-label input:checked ~ span.cust-check::after {
    display: block;
}

/*====================================
    custom-switch css
====================================*/
label.cust-switch-label {
    width: 28px;
    height: 12px;
    cursor: pointer;
}
label.cust-switch-label span.cust-switch-slide {
    cursor: pointer;
    border-radius: 25px;
}
label.cust-switch-label span.cust-switch-slide::before {
    content: "";
    position: absolute;
    left: 0px;
    width: 14px;
    height: 14px;
    transform: translateX(0%);
    background-color: var(--heading-font-color);
    border-radius: 100%;
    line-height: 1;
    -webkit-transition: transform 0.5s ease-in-out;
    transition: transform 0.5s ease-in-out;
}
label.cust-switch-label.theme-switch span.cust-switch-slide::before {
    content: "\f1bf";
    font-family: remixicon!important;
    color: var(--extra-font-color-light);
    font-size: 12px;
    left: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--extra-font-color-dark);
}
label.cust-switch-label input:checked ~ span.cust-switch-slide::before {
    transform: translateX(100%);
}
label.cust-switch-label.theme-switch input:checked ~ span.cust-switch-slide::before {
    content: "\ef75";
    color: var(--extra-font-color-dark);
    background-color: var(--extra-font-color-light);
}

/************************************* slider-arrow css start *************************************/
/*====================================
    slider-arrow css
====================================*/
.brand-wrap .brand-slider.owl-carousel .owl-nav {
    display: none;
}
.brand-wrap .brand-slider.owl-carousel .owl-nav,
.testi-wrap .testi-slider.owl-carousel .owl-nav {
    margin: 40px 0px 0px;
    text-align: center;
    line-height: 0;
}
@media (min-width: 576px) {
    .brand-wrap .brand-slider.owl-carousel .owl-nav,
    .testi-wrap .testi-slider.owl-carousel .owl-nav {
        margin: 50px 0px 0px;
    }
}
@media (min-width: 1200px) {
    .brand-wrap .brand-slider.owl-carousel .owl-nav,
    .testi-wrap .testi-slider.owl-carousel .owl-nav {
        margin: 60px 0px 0px;
    }
}

/* slider-arrow button css */
.brand-wrap .brand-slider.owl-carousel .owl-nav button,
.testi-wrap .testi-slider.owl-carousel .owl-nav button {
    color: var(--primary-font-color);
    font-size: 20px;
    height: 45px;
    width: 45px;
    background-color: var(--extra-font-color-light);
    margin: 0px 15px 0px 0px;
    border-radius: 100%;
    line-height: 1;
    -webkit-transition: color 0.5s ease-in-out,background-color 0.5s ease-in-out,opacity 0.5s ease-in-out,visibility 0.5s ease-in-out;
    transition: color 0.5s ease-in-out,background-color 0.5s ease-in-out,opacity 0.5s ease-in-out,visibility 0.5s ease-in-out;
}
.brand-wrap .brand-slider.owl-carousel .owl-nav button:last-child,
.testi-wrap .testi-slider.owl-carousel .owl-nav button:last-child {
    margin: 0px;
}
.brand-wrap .brand-slider.owl-carousel .owl-nav button:hover,
.testi-wrap .testi-slider.owl-carousel .owl-nav button:hover {
    color: var(--extra-font-color-light);
    background-color: var(--primary-font-color);
}
@media (min-width: 1200px) {
    .brand-wrap .brand-slider.owl-carousel .owl-nav button,
    .testi-wrap .testi-slider.owl-carousel .owl-nav button {
        height: 60px;
        width: 60px;
    }
}
/************************************* slider-arrow css end *************************************/

/************************************* slider-dots css start *************************************/
/*====================================
    owl slider-dots css
====================================*/
.brand-wrap .brand-slider.owl-carousel .owl-dots,
.testi-wrap .testi-slider.owl-carousel .owl-dots {
    display: none;
}
.brand-wrap .brand-slider.owl-carousel .owl-dots,
.testi-wrap .testi-slider.owl-carousel .owl-dots {
    margin: 40px 0px -5px -5px;
    line-height: 0;
}
.brand-wrap .brand-slider.owl-carousel .owl-dots button,
.testi-wrap .testi-slider.owl-carousel .owl-dots button {
    margin: 0px 0px 5px 5px;
}
@media (min-width: 576px) {
    .brand-wrap .brand-slider.owl-carousel .owl-dots,
    .testi-wrap .testi-slider.owl-carousel .owl-dots {
        margin: 50px 0px -5px -5px;
    }
}
@media (min-width: 1200px) {
    .brand-wrap .brand-slider.owl-carousel .owl-dots,
    .testi-wrap .testi-slider.owl-carousel .owl-dots {
        margin: 60px 0px -5px -5px;
    }
}

/* owl slider-dots button css */
.brand-wrap .brand-slider.owl-carousel .owl-dots button span,
.testi-wrap .testi-slider.owl-carousel .owl-dots button span {
    width: 10px;
    height: 10px;
    background-color: transparent;
    margin: 0px;
    border: 1px solid var(--primary-font-color);
}
.brand-wrap .brand-slider.owl-carousel .owl-dots button.active span,
.testi-wrap .testi-slider.owl-carousel .owl-dots button.active span {
    background-color: var(--primary-font-color);
    border-color: var(--primary-font-color);
}
/************************************* slider-dots css end *************************************/

/************************************* feature-point css start *************************************/
/*====================================
    feature-point css
====================================*/
.feature-point span.feature-icon {
    width: 30px;
    height: 30px;
}
.feature-point p.feature-text {
    width: calc(100% - 30px);
}
/************************************* feature-point css end *************************************/

/************************************* keyframes css start *************************************/
/*====================================
    loaderProgress keyframes css
====================================*/
@-webkit-keyframes loaderProgress {
    0% {
        -webkit-transform: scaleX(0);
        transform: scaleX(0);
    } 100% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
    }
}
@keyframes loaderProgress {
    0% {
        -webkit-transform: scaleX(0);
        transform: scaleX(0);
    } 100% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
    }
}

/*====================================
    loaderText keyframes css
====================================*/
@-webkit-keyframes loaderText {
    0% {
        width: 0;
    } 100% {
        width: 100%;
    }
}
@keyframes loaderText {
    0% {
        width: 0;
    } 100% {
        width: 100%;
    }
}

/*====================================
    smoothScroll keyframes css
====================================*/
.smoothScroll {
    -webkit-animation: smoothScroll 1s forwards;
    animation: smoothScroll 1s forwards;
}
@-webkit-keyframes smoothScroll {
    0% {
        webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    } 100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
@keyframes smoothScroll {
    0% {
        webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    } 100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
/************************************* keyframes css end *************************************/

/************************************* animation css start *************************************/
/*====================================
    animation css
====================================*/
[data-animate] {
    opacity: 0
}
[data-animate].animate__animated {
    opacity: 1
}
/************************************* animation css end *************************************/