/****************************
==============================
   Index
==============================

1.    Variable
2.    Mixins
3.    Base
4.    Utility

5.    Header
6.    Banner
7.    Testimonial
8.    Product
9.    Feature
10.   Footer 
11.   Preview
12.   Achievement
13.   Elements
14.   Marquee
15.   


******************************/

/*============================
// font family
============================*/

:root {
    --color-primary: #00C07C;
    --color-white: #fff;
    --color-black: #041B16;
    --color-body: #293736;
    --color-grey: #f8f8f8;
    --font-body: "Archivo", sans-serif;
    --font-title: "Archivo", sans-serif;
    --border-radius-xs: 4px;
    --border-radius-sm: 6px;
    --border-radius-md: 10px;
    --border-radius-lg: 15px;
    --border-radius-xl: 20px;
}

/*============================
// brakpoints
============================*/

/* ===========================
// Typography
==============================*/

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 30px;
    color: var(--color-body);
    font-weight: 400;
}

p {
    font-size: 16px;
    color: var(--color-body);
    line-height: 30px;
    margin-bottom: 15px;
    font-family: var(--font-body);
    font-weight: 400;
}

/*==== heading fonts setup ====*/

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--color-black);
    font-family: var(--font-title);
    line-height: 1.5;
    font-weight: 700;
}

h1 {
    font-size: 48px;
    line-height: 1.23;
}

h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

h3 {
    font-size: 30px;
    margin-bottom: 15px;
}

h4 {
    font-size: 26px;
    margin-bottom: 15px;
}

h5 {
    font-size: 22px;
    margin-bottom: 15px;
}

h6 {
    font-size: 18px;
    margin-bottom: 15px;
}

h1 {
    font-size: 48px;
}

h2 {
    font-size: 40px;
}

h3 {
    font-size: 30px;
}

h4 {
    font-size: 26px;
}

h5 {
    font-size: 22px;
}

h6 {
    font-size: 18px;
}

.mb--24 {
    margin-bottom: 24px !important;
}

.mt--24 {
    margin-top: 24px !important;
}

/*============================ 
// Bootstrap Overwrite
=============================*/

.gutter-30 > li,
.gutter-30 > div {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
}

/*============================ 
// Global styles
=============================*/

html {
    overflow-x: hidden !important;
    width: 100%;
    height: 100%;
    text-rendering: optimizeLegibility;
    scroll-behavior: smooth;
}

#main_content {
    position: relative;
    z-index: 10;
    background-color: #fff;
}

ul,
li {
    padding: 0;
    margin: 0;
    list-style: none;
}

a {
    color: var(--color-primary);
    display: inline-block;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

a:link,
a:visited,
a:focus {
    text-decoration: none;
    outline: 0;
}

a:hover {
    text-decoration: none;
    color: var(--color-primary);
}

img {
    max-width: 100%;
    height: auto;
}

input:focus,
textarea:focus,
select:focus {
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.no-padding {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.no-padding__left {
    padding-left: 0 !important;
}

.no-padding__right {
    padding-right: 0 !important;
}

.section-padding {
    padding-block: 130px;
}

section,
.section {
    position: relative;
}

/*======================================
// Heading
=====================================*/

.section-heading {
    margin-bottom: 35px;
}

.section-heading .heading-title {
    font-weight: 800;
    font-size: 36px;
    line-height: 46px;
    color: #041B16;
    margin-bottom: 10px;
}

.section-heading p {
    font-size: 16px;
    text-transform: capitalize;
}

/*=======================================================================
    Button
=========================================================================*/

.insureti-button .insureti-btn {
    font-size: 15px;
    padding: 15px 24px;
    font-weight: 600;
    line-height: normal;
    text-transform: capitalize;
    text-align: center;
    display: inline-block;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
    border: 0;
    color: #fff;
    border-radius: 8px;
    z-index: 1;
}

.insureti-button .insureti-btn::before,
.insureti-button .insureti-btn::after {
    content: "";
    position: absolute;
    left: 0;
    top: -1px;
    right: 0;
    bottom: 0;
    height: 100%;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    border-radius: 6px;
}

.insureti-button .insureti-btn::before {
    background-color: #00C07C;
    z-index: -2;
    -webkit-transform: translate3D(0, 0, 0);
    transform: translate3D(0, 0, 0);
}

.insureti-button .insureti-btn::after {
    background-color: #00C07C;
    z-index: -1;
    -webkit-transform: translate3D(0, -100%, 0);
    transform: translate3D(0, -100%, 0);
}

.insureti-button .insureti-btn svg {
    color: #fff;
    margin-right: 4px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.insureti-button .insureti-btn:hover {
    color: #fff;
}

.insureti-button .insureti-btn:hover::after {
    -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66) !important;
    transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66) !important;
    -webkit-transform: translate3D(0, 0, 0);
    transform: translate3D(0, 0, 0);
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.insureti-button .insureti-btn:hover::before {
    -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66) !important;
    transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66) !important;
}

.insureti-button .insureti-btn:hover svg {
    -webkit-transform: translateX(5px);
    transform: translateX(5px);
    color: #fff;
}

.insureti-button .insureti-btn.style-2 {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.insureti-button .insureti-btn.style-2 svg {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.insureti-button .insureti-btn.style-2::after {
    background-color: #fff;
}

.insureti-button .insureti-btn.style-2:hover {
    color: #041B16;
}

.insureti-button .insureti-btn.style-2:hover svg {
    color: #041B16;
}

.title-info .title {
    font-weight: 800;
    font-size: 36px;
    line-height: 46px;
    color: #fff;
}

.title-info p {
    color: #fff;
}

.feature-wrap {
    background-color: #F1F3F2;
    z-index: 1;
}

.feature-wrap .feature-shape li {
    position: absolute;
    z-index: -1;
}

.feature-wrap .feature-shape li:nth-child(1) {
    bottom: 0;
    left: 0;
}

.feature-wrap .feature-shape li:nth-child(2) {
    top: 0;
    right: 0;
}

.feature-wrap .feature-shape li:nth-child(2) img {
    -webkit-animation-duration: 20s;
    animation-duration: 20s;
}

.feature__grid__1 {
    display: grid;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 24px;
    grid-template-columns: repeat(4, 1fr);
}

.feature__grid__1 .feature__box__1 {
    border-radius: 15px;
    height: 150px;
    width: 100%;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 40px;
    cursor: pointer;
    background-color: #fff;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.feature__grid__1 .feature__box__1 .item-img img {
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.feature__grid__1 .feature__box__1:hover .item-img img {
    -webkit-transform: scale(1.03);
    transform: scale(1.03);
}

.choose-feature-box {
    padding: 40px;
    background: #E9F1F1;
    border-radius: 20px;
    padding-bottom: 0;
    height: 100%;
}

.choose-feature-box .title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 5px;
}

.choose-feature-box p {
    margin-bottom: 35px;
    line-height: 22px;
    color: #444;
}

.choose-feature-box.style-2 {
    padding: 40px 0 15px;
}

.choose-feature-box.style-2 p {
    margin-bottom: 30px;
}

.choose-feature-box.style-3 {
    padding: 40px 0 0 0;
}

.choose-feature-box.style-3 .title {
    font-size: 30px;
    line-height: 36px;
    margin-bottom: 10px;
}

.choose-feature-box.style-3 p {
    margin-bottom: 30px;
}

.feature-widget-wrap {
    background-image: url(../../media/bg/customizer.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 236px 0;
}

.left-side-img-list li {
    position: absolute;
}

.left-side-img-list li:nth-child(1) {
    bottom: -2%;
    left: 16%;
}

.left-side-img-list li:nth-child(2) {
    bottom: 33%;
    left: 7%;
}

.left-side-img-list li:nth-child(3) {
    bottom: 77%;
    left: 16%;
}

.left-side-img-list li img {
    background: #FFFFFF;
    border: 1px solid #FFFFFF;
    -webkit-box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.right-side-img-list li:nth-child(1) {
    right: 16%;
    bottom: -2%;
    left: auto;
}

.right-side-img-list li:nth-child(2) {
    left: auto;
    right: 7%;
}

.right-side-img-list li:nth-child(3) {
    left: auto;
    right: 16%;
}

.need-feature-wrap {
    background-color: #F9F6EF;
}

.need-feature-wrap .rt-shape {
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 10%;
}

.need-feature-wrap .rt-shape img {
    -webkit-animation: animation_back_down 2s linear infinite;
    animation: animation_back_down 2s linear infinite;
}

.need-feature-list {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
}

.need-feature-list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background: #FFFFFF;
    border: 1px solid #C1BEB9;
    border-radius: 13px;
    padding: 20px 35px 18px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}

.need-feature-list li:hover {
    -webkit-filter: drop-shadow(-10px 9px 0px rgba(0, 0, 0, 0.25));
    filter: drop-shadow(-10px 9px 0px rgba(0, 0, 0, 0.25));
    border-color: #111;
}

.need-feature-list li svg {
    color: #00C07C;
    margin-right: 5px;
}

.need-feature-list li .text {
    color: #041B16;
    font-size: 18px;
    font-weight: 600;
}

.elementor-wrap {
    padding: 170px 0 180px;
    background-color: #F1FAF7;
}

.elementor-img-list .big-img {
    position: relative;
    z-index: 1;
}

.elementor-img-list .big-img > img {
    border: 1px solid #DADADA;
    -webkit-box-shadow: 11px 12px 30px #E4E0D6;
    box-shadow: 11px 12px 30px #E4E0D6;
    border-radius: 20px;
    background-color: #E8E8E8;
}

.elementor-img-list .sm-img {
    bottom: -50px;
    left: 0;
}

.elementor-img-list .sm-img img {
    background: #E8E8E8;
    border: 1px solid #686868;
    -webkit-box-shadow: -8px 8px 0px #D2D1CE;
    box-shadow: -8px 8px 0px #D2D1CE;
    border-radius: 20px;
}

.elementor-img-list .bar-img {
    top: 40%;
    right: -100px;
}

.elementor-img-list .bar-img img {
    border-radius: 8px;
}

.elementor-img-list .elm-img {
    top: -15%;
    left: 140px;
}

.elementor-img-list .elm-img2 {
    top: 50px;
    left: 140px;
    -webkit-animation: animation_back_down 2s linear infinite;
    animation: animation_back_down 2s linear infinite;
}

.elementor-img-list .elm-img2 .shape {
    background: #E50052;
    -webkit-box-shadow: 2px 16px 15px rgba(75, 75, 75, 0.35);
    box-shadow: 2px 16px 15px rgba(75, 75, 75, 0.35);
    border-radius: 11.5385px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 60px;
    width: 60px;
}

.elementor-img-list .elm-img3 {
    top: 50px;
    left: -110px;
    z-index: -1;
}

.elementor-img-list .elm-img3 img {
    border-radius: 8px;
    border: 1px solid #E7E7E7;
}

.elementor-img-list .elm-img4 {
    top: -30px;
    left: -80px;
}

.elementor-img-list .elm-img5 {
    top: 0;
    left: 50px;
    -webkit-animation: slide1 2s ease-in-out infinite;
    animation: slide1 2s ease-in-out infinite;
}

.elementor-img-list .elm-img-shape {
    width: 253px;
    height: 235px;
    border: 2px dashed #CAC0AC;
    border-radius: 20px;
    z-index: -2;
    top: 22px;
}

.text-box .section-heading {
    width: auto;
}

.text-box .section-heading p {
    margin-bottom: 15px;
}

.el-list-wrap {
    gap: 20px;
}

.preview__wrap__1 {
    padding: 120px 0px 100px;
}

.preview-layout:hover .preview__box__1 .item-img a img {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.preview__box__1 {
    background: #F0F0F0;
    border-radius: 24px;
    padding: 36px;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.preview__box__1 .item-img {
    border: 1px solid #E1E5EA;
    border-radius: 15px;
}

.preview__box__1 .item-img a {
    display: block;
    border-radius: 15px;
}

.preview__box__1 .item-img a img {
    border-radius: 15px;
    -webkit-box-shadow: 0px 10px 20px #E0E5E4;
    box-shadow: 0px 10px 20px #E0E5E4;
    -webkit-transition: all 0.7s cubic-bezier(0.2, 1, 0.22, 1);
    transition: all 0.7s cubic-bezier(0.2, 1, 0.22, 1);
}

.preview-shape {
    top: 0;
    left: 0;
    z-index: -1;
}

.preview-text a {
    color: #041B16;
    font-weight: 500;
    font-size: 24px;
    line-height: 28px;
    text-transform: capitalize;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    display: block;
}

.preview-text a:hover {
    color: #00C07C;
}

.comming-soon-box {
    cursor: not-allowed;
    pointer-events: none;
}

.comming-soon-box .preview__box__1 .item-img {
    border: 1px solid #E1E5EA;
    border-radius: 15px;
}

.comming-soon-box .preview__box__1 .item-img a {
    cursor: not-allowed;
    pointer-events: none;
}

.comming-soon-box .preview__box__1 .item-img a img {
    border-radius: 15px;
    -webkit-box-shadow: 0px 10px 20px #E0E5E4, 0px 10px 20px rgba(188, 204, 202, 0.5);
    box-shadow: 0px 10px 20px #E0E5E4, 0px 10px 20px rgba(188, 204, 202, 0.5);
    cursor: not-allowed;
    pointer-events: none;
}

.hero-wrap {
    position: relative;
    padding: 175px 0 600px 0;
    z-index: 1;
    overflow: hidden;
    background-color: #0D0D39;
    position: relative;
}

.hero-wrap .background-shape {
    top: 0;
    left: 0;
    right: 0;
}

.hero-wrap .background-shape img {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}

.hero-wrap::before {
    content: "";
    height: 100%;
    width: 100%;
    background-image: url(../../media/bg/hero-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    -webkit-filter: grayscale(30%);
    filter: grayscale(30%);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.hero-bg-image-wrap .banner-shape-list-left li,
.hero-bg-image-wrap .banner-shape-list-right li {
    position: absolute;
    z-index: -1;
}

.hero-bg-image-wrap .banner-shape-list-left li:nth-child(1) {
    left: 6%;
    top: 22%;
}

.hero-bg-image-wrap .banner-shape-list-left li:nth-child(2) {
    left: 20%;
    bottom: 0;
}

.hero-bg-image-wrap .banner-shape-list-right li:nth-child(1) {
    right: 6%;
    top: 22%;
}

.hero-bg-image-wrap .banner-shape-list-right li:nth-child(2) {
    right: 20%;
    bottom: 0;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-content .title {
    font-weight: 800;
    font-size: 60px;
    text-align: center;
    text-transform: capitalize;
    line-height: 70px;
    color: #fff;
    margin-bottom: 10px;
    position: relative;
}

.hero-content p {
    color: #fff;
    font-size: 16px;
    margin-bottom: 30px;
}

.hero-bg-image-wrap {
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    z-index: 1;
}

.rt-shape-list ul li {
    position: absolute;
    z-index: -1;
}

.rt-shape-list ul li:nth-child(1) {
    top: -75px;
    left: 28%;
    -webkit-animation: animation_back_down 2s linear infinite;
    animation: animation_back_down 2s linear infinite;
}

.rt-shape-list ul li:nth-child(2) {
    top: -40px;
    right: 13%;
}

.rt-shape-list ul li:nth-child(2) img {
    -webkit-animation-duration: 20s;
    animation-duration: 20s;
}

.footer-style-1 {
    position: relative;
    padding: 140px 0 77px;
    z-index: 1;
    background-color: #0D0D39;
}

.footer-logo {
    margin-bottom: 50px;
}

.footer-title {
    color: var(--color-white);
    font-weight: 700;
    font-size: 40px;
    margin-bottom: 45px;
    line-height: 50px;
}

.footer-title span {
    font-weight: 300;
}

.footer-content .insureti-button {
    margin-bottom: 100px;
}

.footer-content p {
    color: #6F8A85;
}

.footer-content p a {
    color: #6F8A85;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.footer-content p a:hover {
    color: #fff;
}

/*==============================
// header
================================*/

.rt-header {
    position: absolute;
    top: 0;
    z-index: 999;
    right: 0;
    left: 0;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    padding: 10px 0 2px;
}

.rt-header.sticky-on.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background-color: #212554;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    padding: 0;
}

/*Header Action items*/

.header-action-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    vertical-align: middle;
    line-height: 1;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

/*========================================
//  main-menu
==========================================*/

/*rt-main-menu*/

.rt-main-menu .menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.rt-main-menu .menu .menu-item {
    position: relative;
}

.rt-main-menu .menu .menu-item {
    margin-right: 50px;
}

.rt-main-menu .menu .menu-item > a {
    display: inline-block;
    font-size: 18px;
    line-height: 22px;
    color: #F7F6F6;
    font-family: var(--font-title);
    font-weight: 500;
    text-transform: capitalize;
    position: relative;
    padding: 30px 0;
}

.rt-main-menu .menu .menu-item > a:before {
    content: "";
    top: 77%;
    -webkit-transform: translateY(-77%) translateX(-50%);
    transform: translateY(-77%) translateX(-50%);
    position: absolute;
    left: 50%;
    background-color: #fff;
    border-radius: 45px;
    width: 0;
    height: 2px;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.rt-main-menu .menu .menu-item > a:hover {
    color: #fff;
}

.rt-main-menu .menu .menu-item > a:hover:before {
    left: 50%;
    width: 100%;
}

/*=====================================
  // rt mobile menu
======================================*/

.offscreen-navigation .menu {
    font-family: var(--font-title);
}

.offscreen-navigation .menu > li {
    border-bottom: 1px solid #e9e9e9;
}

.offscreen-navigation .menu > li:last-child {
    border-bottom: 0;
}

.offscreen-navigation .menu > li > a {
    background-color: #f3f3f3;
    font-size: 16px;
    padding: 12px 30px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.offcanvas-content-style-2 .offscreen-navigation .menu > li > a {
    background-color: transparent;
    padding: 12px 0;
}

.offscreen-navigation .menu > li > a:hover {
    background-color: #f8f8f8;
}

.offscreen-navigation .menu > li > a.opened {
    background-color: #f8f8f8;
}

.offscreen-navigation .sub-menu {
    display: none;
    background-color: #ffffff;
}

.offscreen-navigation .sub-menu li.menu-item-has-children > a::after,
.offscreen-navigation .sub-menu li.menu-item-has-children > a::before {
    right: 40px;
}

.offscreen-navigation .sub-menu li a {
    border-top: 1px solid #f1f1f1;
    padding: 7px 40px;
    font-size: 15px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.offcanvas-content-style-2 .offscreen-navigation .sub-menu li a {
    padding-left: 30px;
}

.offscreen-navigation .sub-menu li a:hover {
    background-color: rgba(15, 91, 245, 0.05);
}

.offscreen-navigation .sub-menu li .sub-menu li a {
    padding: 7px 50px;
}

.offscreen-navigation ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.offscreen-navigation ul li > a {
    display: block;
    position: relative;
    color: #000000;
    font-weight: 500;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.offscreen-navigation ul li > a:hover {
    color: var(--color-primary);
}

.offscreen-navigation ul li.menu-item-has-children > a:after {
    color: #999999;
    content: "\f067";
    display: inline-block;
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    right: 20px;
    position: absolute;
    font-size: 12px;
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.offscreen-navigation ul li.menu-item-has-children > a:before {
    color: #999999;
    content: "\f068";
    display: inline-block;
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    right: 20px;
    position: absolute;
    font-size: 12px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.offscreen-navigation ul li.menu-item-has-children > a.opened:after {
    opacity: 0;
    visibility: hidden;
}

.offscreen-navigation ul li.menu-item-has-children > a.opened:before {
    opacity: 1;
    visibility: visible;
}

.rt-slide-nav {
    position: absolute;
    background: #fff;
    width: 100%;
    left: 0;
    display: none;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
    -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.2);
    top: 100%;
    z-index: 99;
}

.rt-mobile-menu {
    padding: 12px 15px;
    border-bottom: 1px solid rgba(81, 81, 81, 0.15);
    z-index: 999;
    background: #403c3c;
}

.rt-mobile-menn-bar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

body .sidebarBtn {
    display: block;
    padding: 12px 0;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

body .sidebarBtn .bar {
    background: var(--color-white);
    height: 2px;
    width: 30px;
    display: block;
    margin-bottom: 5px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

body .sidebarBtn .bar:nth-child(2),
body .sidebarBtn .bar:nth-child(3) {
    width: 25px;
    margin-left: 5px;
}

body .sidebarBtn .bar:last-child {
    margin-bottom: 0;
}

body.slidemenuon .sidebarBtn .bar:nth-child(2),
body.slidemenuon .sidebarBtn .bar:nth-child(3) {
    opacity: 0;
}

body.slidemenuon .sidebarBtn .bar:nth-child(1) {
    -webkit-transform: rotate(45deg) translate(7px, 7px);
    transform: rotate(45deg) translate(7px, 7px);
}

body.slidemenuon .sidebarBtn .bar:nth-child(4) {
    -webkit-transform: rotate(-45deg) translate(8px, -8px);
    transform: rotate(-45deg) translate(8px, -8px);
}

.el-list li {
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 17px;
    color: #041B16;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
}

.templete-box {
    margin-bottom: 24px;
}

.templete-box .item-img {
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
}

.marquee {
    overflow: hidden;
    width: 100%;
    background: -webkit-gradient(linear, left top, right top, from(#D30D22), to(#FF3D3D));
    background: linear-gradient(90deg, #D30D22 0%, #FF3D3D 100%);
}

.marquee--style-2 {
    background: transparent;
    margin-bottom: 7px;
}

.marquee--style-2:last-child {
    margin-bottom: 0;
}

.rt-marquee-item {
    display: inline-block;
    will-change: transform;
}

.rt-marquee-item .entry-title {
    color: #fff;
    text-transform: capitalize;
    font-size: 20px;
    font-weight: 500;
    line-height: 20px;
    display: inline-block;
    margin-left: 4px;
    margin-bottom: 0;
    padding: 16px 10px;
}

.rt-marquee-item .entry-title svg {
    margin-right: 15px;
}

.rt-marquee-item .entry-title--style-2 {
    background-color: #fff;
    border: 1px solid #D2DFDF;
    border-radius: 1000px;
    color: #041B16;
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
    padding: 9px 20px;
}

.rt-marquee-slider .rt-marquee:hover .rt-marquee-item {
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
}

.service-section {
    background-color: #F1FAF7;
    padding: 120px 0 90px 0;
}

.service-section .service-item {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 40px 50px 31px 50px;
    position: relative;
    margin-bottom: 30px;
}

.service-section .service-item .icon {
    width: 74.55px;
    height: 74.55px;
    background: -webkit-gradient(linear, left top, right top, color-stop(-0.21%, #00AE70), color-stop(99.79%, #00E127));
    background: linear-gradient(90deg, #00AE70 -0.21%, #00E127 99.79%);
    border-radius: 15.3846px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 19px;
}

.service-section .service-item .title {
    font-family: "Poppins";
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 0;
}

.service-section .service-item .number-shape {
    position: absolute;
    right: 50px;
    top: 64px;
}

.service-section .service-item .number-shape span {
    font-family: "Poppins";
    font-weight: 600;
    font-size: 100px;
    line-height: 30px;
    text-transform: capitalize;
    color: #F0F5F3;
}

.service-section .service-item:hover .icon svg {
    -webkit-animation: zoomIn 0.5s forwards;
    animation: zoomIn 0.5s forwards;
}

@media only screen and (min-width: 768px) {

    .el-list-wrap {
        gap: 40px;
    }
}

@media (min-width: 992px) {

    .rt-mobile-menu {
        display: none;
    }
}

@media (min-width: 1200px) {

    .row.gutters-20 {
        margin-left: -10px;
        margin-right: -10px;
    }

    .row.gutters-20 > [class^=col-] {
        padding-left: 10px;
        padding-right: 10px;
    }

    .row.gutters-30 {
        margin-left: -15px;
        margin-right: -15px;
    }

    .row.gutters-30 > [class^=col-] {
        padding-left: 15px;
        padding-right: 15px;
    }

    .row.gutters-40 {
        margin-left: -20px;
        margin-right: -20px;
    }

    .row.gutters-40 > [class^=col-] {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media only screen and (min-width: 1200px) {

    .section-heading {
        width: 610px;
        margin-left: auto;
        margin-right: auto;
    }

    .preview__wrap__1 .section-heading {
        width: 791px;
        margin-right: auto;
        margin-left: auto;
    }

    .hero-content {
        margin-right: auto;
        margin-left: auto;
    }

    .navbar-wrap {
        margin-left: 100px;
        margin-right: 100px;
    }

    .templete-wrap .section-heading {
        width: 667px;
        margin-right: auto;
        margin-left: auto;
    }
}

@media screen and (min-width: 1200px) {

    .feature__grid__1 .feature__box__1 {
        width: 360px;
    }
}

@media (min-width: 1200px) and (max-width: 1500px) {

    .hero-bg-image-wrap .banner-shape-list-left li:nth-child(1) {
        left: 1%;
        top: 22%;
    }

    .hero-bg-image-wrap .banner-shape-list-left li:nth-child(2) {
        left: 18%;
        bottom: 0;
    }

    .hero-bg-image-wrap .banner-shape-list-right li:nth-child(1) {
        right: 1%;
        top: 22%;
    }

    .hero-bg-image-wrap .banner-shape-list-right li:nth-child(2) {
        right: 18%;
        bottom: 0;
    }
}

@media (min-width: 1400px) {

    .container,
.container-lg,
.container-md,
.container-sm,
.container-xl {
        max-width: 1344px;
    }
}

@media only screen and (max-width: 1950px) {
    .hero-wrap {
        padding: 284px 0 376px 0;
    }
}

@media only screen and (min-width: 1951px) {
    .hero-wrap {
        padding: 384px 0 376px 0;
    }
}

@media only screen and (max-width: 1200px) {

    .hero-bg-image-wrap .banner-shape-list-left li,
.hero-bg-image-wrap .banner-shape-list-right li {
        display: none;
    }
}

@media (max-width: 1199px) {

    .section-padding {
        padding: 100px 0;
    }
}

@media only screen and (max-width: 1199px) {

    .feature__grid__1 {
        grid-template-columns: repeat(3, 1fr);
    }

    .elementor-wrap {
        padding: 100px 0;
    }

    .preview__wrap__1 {
        padding: 100px 0px 65px;
    }

    .hero-wrap {
        padding: 140px 0 70px;
    }

    .templete-box .item-img img {
        width: 100%;
    }
}

@media (max-width: 991px) {

    .section-padding {
        padding: 80px 0;
    }
}

@media screen and (max-width: 991px) {

    .feature__grid__1 {
        grid-template-columns: repeat(2, 1fr);
    }

    .elementor-img-list .big-img > img {
        width: 100%;
    }
}

@media only screen and (max-width: 991px) {

    .hero-wrap {
        padding: 80px 0 50px;
    }
}

@media (max-width: 767px) {

    h1 {
        font-size: 36px;
    }

    .section-padding {
        padding: 50px 0;
    }
}

@media only screen and (max-width: 767px) {

    .section-heading .heading-title {
        font-size: 36px;
        line-height: 44px;
    }

    .elementor-wrap {
        padding: 70px 0;
    }

    .preview__wrap__1 {
        padding: 70px 0px 35px;
    }

    .hero-content .title {
        font-size: 46px;
        line-height: 60px;
    }

    .footer-style-1 {
        padding: 50px 0px;
    }

    .footer-title {
        font-size: 36px;
        line-height: 44px;
    }
}

@media only screen and (max-width: 479px) {

    .section-heading .heading-title {
        font-size: 30px;
        line-height: 38px;
    }

    .hero-content .title {
        font-size: 36px;
        line-height: 50px;
    }
}

@media screen and (max-width: 479px) {

    .feature__grid__1 {
        grid-template-columns: repeat(1, 1fr);
    }
}

@-webkit-keyframes animation_back_down {

    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

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

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

@keyframes animation_back_down {

    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

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

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

@-webkit-keyframes slide1 {

    0%,100% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }

    50% {
        -webkit-transform: translate(5px, 0);
        transform: translate(5px, 0);
    }
}

@keyframes slide1 {

    0%,100% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }

    50% {
        -webkit-transform: translate(5px, 0);
        transform: translate(5px, 0);
    }
}

