:root {
    /* --primary-font: "DM Sans", sans-serif; */
    --primary-font: "Poppins", sans-serif;
    --small-font-size: 1.4rem;
    --medium-font-size: 1.8rem;
    --large-font-size: 2.4rem;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;

    --primary-color: #ebfffd;
    --secondary-color: #b3e1de;
    --text-primary: #0c645b;
    --text-secondary: #2c8e86;
}


html.rts-dark * {
    --primary-color: #013237;
    --secondary-color: #064340;
    --text-primary: #ebfffd;
    --text-secondary: #b3e1de;
}

html.rts-dark .active-light {
    display: none;
}

html.rts-dark .active-dark {
    display: block;
}

.active-dark {
    display: none;
}

img{
    width: 100%;
}

/* ::selection {
    color: #fff;
    background: var(--color-primary);
} */

body::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    opacity: 0.05;
}

html {
    margin: 0;
    padding: 0;
    font-size: 10px;
    overflow: hidden;
    overflow-y: auto;
    scroll-behavior: smooth !important;
}

body {
    font-size: var(--font-size-b1);
    line-height: var(--line-height-b1);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: "DM Sans", sans-serif;
    color: var(--color-body);
    font-weight: var(--p-regular);
    position: relative;
    overflow-x: hidden;
}


@keyframes waves {
    0% {
        -webkit-transform: scale(0.2, 0.2);
        transform: scale(0.2, 0.2);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }
    50% {
        opacity: 0.9;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
    }
    100% {
        -webkit-transform: scale(0.9, 0.9);
        transform: scale(0.9, 0.9);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }
}
@keyframes vsmorph {
    0% {
        border-radius: var(--morp-value);
    }
    50% {
        border-radius: var(--morp-md-value);
    }
    100% {
        border-radius: 40% 60%;
    }
}
@keyframes morpspin {
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn);
    }
}

a{
    text-decoration: none;
}

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

/* MAIN COMPONENTS */
/* Backgrounds */
.bg-main {
    background: var(--primary-color);
    padding: 100px 0;
}

.bg-main2{
    background: var(--secondary-color);
    padding: 100px 0;
}

/* TEXT */
.text {
    font-family: var(--primary-font);
    color: var(--text-primary);
    font-size: var(--medium-font-size);
}

.text.large {
    font-size: var(--large-font-size);
}

.text.small{
    font-size: var(--small-font-size);
}


.title-section {
    margin-bottom: 5rem;
}

.title {
    font-size: 4rem;
    color: var(--text-primary);
    font-family: var(--primary-font);
    font-weight: bold;
}

.subtitle {
    font-size: 2rem;
    color: var(--text-secondary);
    font-family: var(--primary-font);
}

.text-dark{
    color: #0a4f4c !important;
}

.text-light{
    color: #ebfffd !important;
}

.button-main{
    background: var(--text-primary);
    color: var(--primary-color);
    padding: 1rem;
    font-size: var(--medium-font-size);
    border-radius: 0.5rem;
    margin-top: 1rem;
    width: 15rem;
    text-align: center;
}

.button-main:hover{
    background: var(--primary-color) !important;
    color: var(--text-primary) !important;
    border: 1px solid var(--text-primary);
}

.button-main.dark{
    background: #0c645b;
    color: #ebfffd;
}

.button-main.dark:hover{
    background: #ebfffd !important;
    color: #0c645b !important;
    border: 1px solid #0c645b;
}

/* FLEX Attribute */
.flex-col-center{
    display: flex;
    flex-direction: column;
    justify-content: center;
}


/* SERVICES START */
.service-desc{
    display: flex;
    align-items: center;
    text-align: justify;
    height: 100%;
}
/* SERVICES END */

/* PROJECTS START */

.container-fluid.custom .project-h2-slider {
    padding-bottom: 100px;
}

.container-fluid.custom .swiper-pagination {
    padding: 10px;
}

.container-fluid.custom
    .swiper-pagination
    .swiper-pagination-bullet.swiper-pagination-bullet-active-main {
    background: var(--text-secondary);
    position: relative;
}

.container-fluid.custom .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active-prev {
    transform: scale(0.8);
}

.container-fluid.custom .swiper-pagination .swiper-pagination-bullet {
    margin-right: 12px;
    margin-left: 12px;
    opacity: 1;
}

.single-product-wrapper-h2 {
    position: relative;
}
.single-product-wrapper-h2 a.thumbnail {
    overflow: hidden;
    display: block;
    border-radius: 20px;
    /* height: 56rem; */
    aspect-ratio: 3/4;
    box-shadow: inset 0px 0px 0 2000px rgba(0, 0, 0, 0.5);
}
.single-product-wrapper-h2 a.thumbnail img {
    width: 100%;
    transition: 0.3s;
    border-radius: 20px;
}
.single-product-wrapper-h2 a.thumbnail:hover img {
    transform: scale(1.2);
    border-radius: 20px;
}
.single-product-wrapper-h2 .inner {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
    text-align: left;
    background: #ffffff;
    border-radius: 20px;
    padding: 38px 40px;
}
.single-product-wrapper-h2 .inner a .title {
    margin-bottom: 5px;
    transition: 0.3s;
}
.single-product-wrapper-h2 .inner a:hover .title {
    color: var(--color-primary);
}
.single-product-wrapper-h2 .inner span.desig {
    color: #3b38eb;
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    font-family: VAR(--font-secondary);
}
/* PROJECTS END */

/* CONTACT START */
.rts-callto-acation-area4 {
    position: absolute;
    background-image: url('../images/360_F_508801991_UTsCAOorx25USitqonfRADueJlzyjhDq.jpg');
    background-repeat: no-repeat;
    background-position: center;
    object-fit: contain;
    background-size: cover;
    width: 100%;
    height: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.rts-callto-acation-area4 .container .cta-two-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 90px 0;
}

.rts-appoinment-form {
    position: relative;
}

.rts-appoinment-form .inner {
    padding: 60px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid lightgray;
    border-radius: 15px;
    background: #ebfffd;
}

.rts-appoinment-form .inner input {
    border: 1px solid #0c645b;
    border-radius: 15px;
    height: 55px;
    margin-bottom: 20px;
    padding-left: 25px;
    font-size: 1.5rem;
    color: #0c645b;
}

.rts-appoinment-form .inner select {
    border: 1px solid #0c645b;
    border-radius: 15px;
    height: 55px;
    margin-bottom: 20px;
    padding-left: 22px;
    font-size: 1.5rem;
    color: #8e8e8e;
}


::placeholder{
    color: #8e8e8e;
}

.rts-appoinment-form .inner input:focus {
    border: 1px solid var(--color-primary);
}
.rts-appoinment-form .inner button {
    margin-top: 10px;
}

#serviceSelect {
    color: #8e8e8e; /* Default color for the placeholder */
}

/* Styling for the select element when an option other than the placeholder is selected */
#serviceSelect:not(:invalid) {
    color: #0c645b;
}

/* Ensure the placeholder option is always gray */
#serviceSelect option.placeholder {
    color: #8e8e8e;
}
/* CONTACT END */

/* FOOTER START */
.rts-footer-right-two {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 15rem;
    flex-wrap: wrap;
}

.rts-footer-right-two .single-wized .title-footer {
    position: relative;
    margin-bottom: 30px;
}
.rts-footer-right-two .single-wized .title-footer::after {
    position: absolute;
    left: 3px;
    bottom: -20px;
    height: 2px;
    width: 40px;
    background: var(--color-primary);
    content: "";
}
.rts-footer-right-two .single-wized .nav {
    display: flex;
    flex-direction: column;
}
.rts-footer-right-two .single-wized .contact-info {
    margin-top: 41px;
}
.rts-footer-right-two .single-wized .contact-info .rts-contact-info-single {
    display: flex;
    align-items: center;
}
.rts-footer-right-two .single-wized .contact-info .rts-contact-info-single i {
    width: 45px;
    height: 45px;
    background: transparent;
    border-radius: 50%;
    border: 1px solid var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    margin-right: 15px;
}
.rts-footer-right-two
    .single-wized
    .contact-info
    .rts-contact-info-single
    .number {
    display: flex;
    flex-direction: column;
}
.rts-footer-right-two
    .single-wized
    .contact-info
    .rts-contact-info-single
    .number
    a {
    color: #6f737b;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
}
.rts-footer-right-two
    .single-wized
    .contact-info
    .rts-contact-info-single
    .number
    a:hover {
    color: var(--color-primary);
}

.copyright{
    border-top: 1px solid var(--secondary-color);
}

.footer-text{
    text-align: end;
}

/* FOOTER END */

/* Kevin */
body {
    scroll-behavior: auto;
    background: #ffffff;
    overflow-x: hidden;
}

body {
    position: relative;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
nav,
section,
summary {
    display: block;
}

.header--sticky {
    transition: 0.3s;
    top: 0;
    z-index: 999;
    position: relative;
}

.header-one {
    position: fixed;
    width: 100%;
    z-index: 20;

    background: rgba( 255, 255, 255, 0.25 );
    box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
    backdrop-filter: blur( 4px );
    -webkit-backdrop-filter: blur( 4px );
    border: 1px solid rgba( 255, 255, 255, 0.18 );
}

a {
    color: var(--color-heading);
    text-decoration: none;
    outline: none;
}

.header-one .thumbnail img {
    padding: 36px 0;
}

@media only screen and (max-width: 575px) {
    .header-one .thumbnail img {
        padding: 14px 0;
    }
}

img {
    -ms-interpolation-mode: bicubic;
    border: 0;
    vertical-align: middle;
    max-width: 100%;
    height: auto;
}

header .active-dark {
    display: none;
}

.header-one .main-header {
    display: flex;
    justify-content: flex-end;
}

.header-one .main-header .main-nav .mainmenu {
    margin: 0;
    display: flex;
}

nav ul,
nav ol {
    list-style: none;
    list-style-image: none;
}

menu,
ol,
ul {
    margin: 16px 0;
    padding: 0 0 0 40px;
}

ul {
    list-style: square;
    margin-bottom: 30px;
    padding-left: 20px;
}

ul,
ol {
    padding-left: 18px;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
address,
p,
pre,
blockquote,
menu,
ol,
ul,
table,
hr {
    margin: 0;
    margin-bottom: 20px;
}

ul li {
    font-size: var(--font-size-b1);
    line-height: var(--line-height-b1);
    margin-top: 10px;
    margin-bottom: 10px;
    color: var(--color-body);
}

.header-one .main-header .main-nav .mainmenu li a {
    padding: 20px 0 20px 0;
    display: inline-block;
    color: var(--text-primary);
    font-weight: bold;
    font-size: var(--medium-font-size);
    font-family: var(--font-primary);
}

.mainmenu li {
    position: relative;
    margin: 0 1.5rem;
}

.header-one .header-right {
    display: flex;
    align-items: center;
    padding: 33px 0;
    justify-content: flex-end;
}

@media only screen and (max-width: 575px) {
    .header-one .header-right {
        padding: 12px 0;
    }
}

@media only screen and (min-width: 1200px) {
    .header-one .header-right {
        display: none !important;
    }
}

.header-one .header-right .menu-btn {
    margin-left: 20px;
    padding: 18px 18px;
}

.rts-btn {
    padding: 18px 29px;
    font-size: 16px;
    line-height: 19px;
    font-weight: 700;
    font-family: var(--font-secondary);
    border-radius: 15px;
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

svg:not(:root) {
    overflow: hidden;
}

.side-bar {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: -100%;
    width: 315px;
    padding: 20px;
    height: 100%;
    display: block;
    background-color: var(--primary-color);
    z-index: 1900;
    transition: all 600ms ease;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.side-bar button {
    max-width: max-content;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button;
}

input,
button,
select,
textarea {
    background: transparent;
    border: 1px solid var(--color-border);
    transition: all 0.4s ease-out 0s;
    color: var(--color-body);
    width: 100%;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
    -webkit-appearance: button;
    -moz-appearance: button;
    appearance: button;
    cursor: pointer;
}

button,
input {
    line-height: normal;
}

button,
input,
select,
textarea {
    font-size: 100%;
    margin: 0;
    max-width: 100%;
    vertical-align: baseline;
}

.side-bar button i {
    color: var(--text-primary);
    height: 45px;
    width: 45px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -8px;
    margin-top: -3px;
    border-radius: 50%;
    font-size: 3em;
}

.side-bar .logo-1 {
    display: block;
}

.rts-sidebar-menu-desktop a .logo {
    margin-top: 50px;
}

.side-bar .logo-2 {
    display: none;
}

.rts-sidebar-menu-desktop .body p.disc {
    margin-top: 25px;
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 0;
}

p.disc {
    font-size: 16px;
    line-height: 26px;
}

p {
    font-size: var(--font-size-b2);
    line-height: var(--line-height-b2);
    font-weight: var(--p-regular);
    color: var(--color-body);
    margin: 0 0 40px;
}

.rts-sidebar-menu-desktop .social-area {
    margin-top: 20px;
    margin-left: 0;
}

.rts-sidebar-menu-desktop .social-area {
    margin-top: 40px;
}

.social-wrapper-two ul {
    list-style: none;
    display: flex;
    padding-left: 0;
    margin-top: 20px;
    margin-bottom: 0;
}

.social-area {
    padding-left: 0;
    display: flex;
    list-style: none;
    margin-left: 15px;
}

[data-sal|="slide"].sal-animate,
body.sal-disabled [data-sal|="slide"] {
    opacity: 1;
    transform: none;
}

[data-sal][data-sal-delay="150"] {
    transition-delay: 0.15s;
}

[data-sal][data-sal-duration="800"] {
    transition-duration: 0.8s;
}

.social-wrapper-two ul li {
    margin: 0;
    padding: 0;
}

.social-area li {
    margin-right: 37px;
}

[data-sal="slide-up"] {
    transform: translateY(20%);
}

[data-sal|="slide"] {
    opacity: 0;
    transition-property: opacity, transform;
}

[data-sal] {
    transition-duration: 0.2s;
    transition-delay: 0s;
    transition-duration: var(--sal-duration, 0.2s);
    transition-delay: var(--sal-delay, 0s);
    transition-timing-function: var(--sal-easing, ease);
}

.social-wrapper-two ul li a {
    transition: 0.3s;
}

.social-area li a {
    position: relative;
    z-index: 1;
}

.rts-sidebar-menu-desktop .social-area li a i {
    color: var(--color-primary);
    transition: 0.3s;
}

.social-wrapper-two ul li a i {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    margin-right: 7px;
    background: #ffffff;
    transition: 0.3s;
    box-shadow: 0px 10px 12px rgba(179, 179, 179, 0.21),
        inset 1px 4px 5px rgba(174, 172, 243, 0.3);
}

.social-area li a i {
    color: #fff;
    font-size: 14px;
}

.rts-sidebar-menu-desktop .social-area li a::after {
    background: transparent;
    transition: 0.3s;
}

.social-area li a::after {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #292929;
    content: "";
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    transition: 0.3s;
}

[data-sal][data-sal-delay="250"] {
    transition-delay: 0.25s;
}

[data-sal][data-sal-delay="350"] {
    transition-delay: 0.35s;
}

[data-sal][data-sal-delay="450"] {
    transition-delay: 0.45s;
}

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

.rts-sidebar-menu-desktop .get-in-touch .title {
    margin-bottom: 30px;
    font-weight: 900;
}

.rts-sidebar-menu-desktop .get-in-touch .wrapper .single i {
    color: var(--color-primary);
    margin-right: 10px;
    margin-bottom: 15px;
}

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

.body-mobile .mainmenu {
    padding-left: 0;
}

.body-mobile .mainmenu .has-droupdown {
    margin-right: 0 !important;
}

.mainmenu .has-droupdown {
    margin-right: 33px !important;
}

.body-mobile .mainmenu li a {
    display: block;
    padding: 10px 15px;
}

.mainmenu .has-droupdown > a {
    position: relative;
}

.body-mobile .mainmenu li .submenu {
    position: relative;
    padding-left: 30px;
    min-width: 100%;
    background: #cfdefe2e;
    opacity: 1;
    visibility: visible;
}

.body-mobile .mainmenu .submenu {
    border-top: none;
}

.mainmenu li .submenu {
    min-width: 230px;
    height: auto;
    position: absolute;
    top: 90%;
    left: 0;
    z-index: 90;
    opacity: 0;
    visibility: hidden;
    text-align: left;
    padding: 12px 0;
    transition: 0.3s;
    border-radius: 0 0 10px 10px;
    background-color: #fff;
    border-left: 1px solid #ffffff14;
    border-bottom: 1px solid #ffffff14;
    border-right: 1px solid #ffffff14;
    border-top: 4px solid var(--color-primary);
    display: inline-block;
}

ul.submenu {
    box-shadow: 0px 7px 18px #1810100d;
}

li > ul,
li > ol {
    margin: 0;
}

.body-mobile .mainmenu li a.tag {
    padding-left: 0;
    box-shadow: none;
    font-size: 18px;
    font-weight: 500;
}

.body-mobile .mainmenu li .submenu li {
    margin: 3px 0;
}

.mainmenu li .submenu li {
    position: relative;
}

.body-mobile .mainmenu li .submenu li a {
    box-shadow: none;
}

.mainmenu li .submenu li a {
    transition: 0.3s;
    padding: 5px 0 !important;
}

#anywhere-home {
    cursor: url(../images/banner/shape/close.png), auto;
    background: #0e1013;
    position: fixed;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 500ms ease-in-out;
    pointer-events: none;
    z-index: 50;
}

#anywhere-home.bgshow {
    background: #0e1013;
    opacity: 70%;
    visibility: visible;
    pointer-events: visible;
    z-index: 60;
}

/* HOME BANNER */

.banner-area.banner-two-parent {
    overflow: visible;
}

.banner-area {
    overflow: hidden;
}

.rts-section-gap {
    padding: 120px 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .rts-section-gap {
        padding: 80px 0;
    }
}

@media only screen and (max-width: 767px) {
    .rts-section-gap {
        padding: 60px 0;
    }
}

.banner-two-parent::before {
    position: absolute;
    content: "";
    background-image: url(../images/banner/shape/08.png);
    right: -64%;
    top: 15%;
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
    animation: jump-2 3s linear infinite;
    z-index: -1;
    pointer-events: none;
}

.banner-wrapper-two {
    position: relative;
    z-index: 1;
}

.banner-wrapper-two .morp-ani {
    --morp-value: 66% 24% 44% 56% / 44% 24% 70% 56%;
    --morp-md-value: 43% 38% 39% 35% / 44% 39% 43% 56%;
    --morp-time: 8s;
    --morp-spin-time: 20s;
    animation: morpspin var(--morp-spin-time) linear infinite reverse;
}

.banner-wrapper-two .banner-morp {
    position: absolute;
    left: 38%;
    top: 20% !important;
    z-index: 1;
    --morp-value: 66% 24% 44% 56% / 44% 24% 70% 56%;
    --morp-time: 12s;
    --morp-spin-time: 16s;
    width: 1270px;
    height: 1270px;
    margin: -485px 0 0 -485px;
    -webkit-animation-delay: 8s;
    animation-delay: 8s;
    z-index: -1;
}

.banner-wrapper-two .banner-morp::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #f4f3fd;
    opacity: 0.9;
    border-radius: 66% 24% 44% 56%/44% 24% 70% 56%;
    animation: vsmorph 12s ease-in-out infinite both alternate;
}

.banner-wrapper-two .banner-content-area {
    padding-top: 180px;
    padding-left: 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .banner-wrapper-two .banner-content-area {
        padding-top: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .banner-wrapper-two .banner-content-area {
        padding-top: 30px;
    }
}

@media only screen and (max-width: 575px) {
    .banner-wrapper-two .banner-content-area {
        padding-left: 15px;
    }
}

/* .text.subtitle {
    font-size: 2.4rem;
    color: var(--color-highlight);
}

.text {
    font-size: var(--medium-font-size);
}

.text.title {
    font-size: 3.2rem;
    font-weight: bold;
} */

h1,
.h1,
h2,
.h2,
h3,
.h3 {
    font-weight: var(--s-bold);
}

h1,
.h1 {
    font-size: var(--h1);
    line-height: 91px;
    font-weight: 700;
}

.banner-wrapper-two {
    position: relative;
    z-index: 1;
}
.banner-wrapper-two .banner-morp {
    position: absolute;
    left: 38%;
    top: 20% !important;
    z-index: 1;
    --morp-value: 66% 24% 44% 56% / 44% 24% 70% 56%;
    --morp-time: 12s;
    --morp-spin-time: 16s;
    width: 1270px;
    height: 1270px;
    margin: -485px 0 0 -485px;
    -webkit-animation-delay: 8s;
    animation-delay: 8s;
    z-index: -1;
}
.banner-wrapper-two .banner-morp::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--secondary-color);
    opacity: 0.9;
    border-radius: 66% 24% 44% 56%/44% 24% 70% 56%;
    animation: vsmorph 12s ease-in-out infinite both alternate;
}
.banner-wrapper-two .morp-ani {
    --morp-value: 66% 24% 44% 56% / 44% 24% 70% 56%;
    --morp-md-value: 43% 38% 39% 35% / 44% 39% 43% 56%;
    --morp-time: 8s;
    --morp-spin-time: 20s;
    animation: morpspin var(--morp-spin-time) linear infinite reverse;
}
.banner-wrapper-two .thumbnail-banner {
    margin-top: 70px;
}
.banner-wrapper-two .thumbnail-banner img {
    width: 100%;
    padding-right: 30px;
}
.banner-wrapper-two .banner-content-area {
    padding-top: 180px;
    padding-left: 30px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .banner-wrapper-two .banner-content-area {
        padding-top: 30px;
    }
}
@media only screen and (max-width: 767px) {
    .banner-wrapper-two .banner-content-area {
        padding-top: 30px;
    }
}
@media only screen and (max-width: 575px) {
    .banner-wrapper-two .banner-content-area {
        padding-left: 15px;
    }
}
.banner-wrapper-two .banner-content-area .sub-title {
    font-weight: 700;
    font-size: 14px;
    line-height: 17px;
}
.banner-wrapper-two .banner-content-area .sub-title p {
    color: #3b38eb;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 700;
    font-family: var(--font-secondary);
}
.banner-wrapper-two .banner-content-area .sub-title p span {
    text-transform: uppercase;
    color: #fff;
    background: #111a2e;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    padding: 5px 10px;
    margin-right: 8px;
}
.banner-wrapper-two .banner-content-area .banner-title {
    font-weight: 700;
    font-size: 72px;
    line-height: 78px;
    color: #111a2e;
    margin-top: 18px;
    margin-bottom: 30px;
}
@media only screen and (max-width: 767px) {
    .banner-wrapper-two .banner-content-area .banner-title {
        font-size: 46px;
        line-height: 47px;
    }
}
@media only screen and (max-width: 575px) {
    .banner-wrapper-two .banner-content-area .banner-title {
        font-size: 29px;
        line-height: 10px;
    }
}
.banner-wrapper-two .banner-content-area .banner-title span {
    font-weight: 400;
    font-size: 56px;
    line-height: 78px;
    color: #111a2e;
}
@media only screen and (max-width: 575px) {
    .banner-wrapper-two .banner-content-area .banner-title span {
        font-size: 34px;
    }
}
.banner-wrapper-two .banner-content-area p.disc {
    color: #6f737b;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 30px;
}
.banner-wrapper-two .banner-content-area .rts-btn {
    padding: 18px 36px;
}

.rts-btn.btn-primary {
    color: #fff;
    background: #111a2e;
}

.rts-btn.btn-primary::before {
    background: var(--color-primary);
}

.rts-btn::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transform-origin: 50%;
    transform-origin: 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
    border-radius: 14px;
}

.banner-two-parent {
    position: relative;
    z-index: 1;
    padding-top: 18rem;
}
.banner-two-parent::after {
    position: absolute;
    content: "";
    background-image: url(../images/banner/shape/07.png);
    left: -21%;
    top: -7%;
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
    animation: jump-1 5s linear infinite;
    z-index: -1;
    pointer-events: none;
}
.banner-two-parent::before {
    position: absolute;
    content: "";
    background-image: url(../images/banner/shape/08.png);
    right: -64%;
    top: 15%;
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
    animation: jump-2 3s linear infinite;
    z-index: -1;
    pointer-events: none;
}


.banner-wrapper-two .thumbnail-banner {
    margin-top: 70px;
}

.banner-wrapper-two .thumbnail-banner img {
    width: 100%;
    padding-right: 30px;
}

.banner-two-parent::after {
    position: absolute;
    content: "";
    background-image: url(../images/banner/shape/07.png);
    left: -21%;
    top: -7%;
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
    animation: jump-1 5s linear infinite;
    z-index: -1;
    pointer-events: none;
}

/* ABOUT US */

.about-right-one-area {
    margin-left: -20px;
}

.title-area span {
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    color: #3b38eb;
}

.title-area .title {
    margin-top: 10px;
    margin-bottom: 30px;
}

@media only screen and (max-width: 767px) {
    .title-area .title {
        margin-bottom: 15px;
    }
}

@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
}

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

h3,
.h3 {
    font-size: var(--h3);
    line-height: 54px;
}

.about-right-one-area p.disc {
    margin-bottom: 20px;
}

p:last-child {
    margin-bottom: 0;
}

/* SERVICES */

.bg-business-solution-service {
    background: #f7f7f7;
}

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

.card {
    position: relative; /* Ensure the pseudo-element is positioned relative to the card */
    padding: 3rem !important;
    border-radius: 20px !important;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1), 0px 6px 12px rgba(0, 0, 0, 0.08) !important;
    height: 26rem;
    margin-top: 2rem;
}

.card.soon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/soon_tag.png');
    background-size: cover;
    background-position: center center;
    z-index: 2; /* This ensures the pseudo-element is on top */
    pointer-events: none; /* Optional: ensures the pseudo-element doesn't block interactions */
    opacity: 0.5;
}

.card-header {
    position: relative; /* Ensure the header is positioned relative within the card */
    z-index: 1; /* Ensure the header stays below the pseudo-element */
    padding: 0 !important;
    display: flex !important;
    background-color: white !important;
    border-bottom: 0px !important;
    align-items: center !important;
    gap: 2rem;
}

h4,
.h4,
h5,
.h5 {
    font-weight: var(--s-bold);
}

h5,
.h5 {
    font-size: var(--h5);
    line-height: 1.24;
}

/* MODAL SIDEBAR SCROLL */
.side-bar.show {
    right: 0;
}

.modal-sidebar-scroll {
    position: fixed;
    top: 50%;
    -webkit-transform: translateY(-65%);
    transform: translateY(-65%);
    text-align: center;
    z-index: 10;
    right: 0;
    left: auto;
}

.modal-sidebar-scroll ul {
    list-style: none;
    margin: 0;
    padding-left: 0;
}

.modal-sidebar-scroll ul li {
    margin: 10px 0;
    position: relative;
    font-size: 20px;
}

.modal-sidebar-scroll ul li span {
    position: absolute;
    background-color: var(--color-primary);
    color: #fff;
    white-space: nowrap;
    padding: 5px 20px;
    font-size: 13px;
    top: 0;
    right: 100%;
    margin-right: 12px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s linear 0ms;
    transition: all 0.3s linear 0ms;
}

.modal-sidebar-scroll ul li span::after {
    content: "";
    border-style: solid;
    border-color: transparent transparent transparent var(--color-primary);
    border-width: 6px;
    position: absolute;
    top: 50%;
    right: -12px;
    -webkit-transform: translate(0, -50%);
    -khtml-transform: translate(0, -50%);
    transform: translate(0, -50%);
}

.modal-sidebar-scroll ul li i {
    cursor: pointer;
    color: #000;
    padding: 10px 10px;
    display: block;
    -webkit-box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    border-radius: 5px 0 0 5px;
    background: #fff;
    transition: 0.3s;
}

.modal-sidebar-scroll ul li i:hover {
    background: var(--color-primary);
    color: #fff;
}

/* LOADER WRAPPER */

.loaded .loader-wrapper {
    visibility: hidden;
    transform: translateY(-100%);
    transition: all 0.3s 1s ease-out;
}

.loader-wrapper {
    --line-width: 0.5px;
    --curtain-color: #f5f7ff;
    --outer-line-color: var(--text-primary);
    --middle-line-color: var(--text-secondary);
    --inner-line-color: var(--secondary-color);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
}

.loaded .loader {
    opacity: 0;
    transition: all 0.3s ease-out;
}

.loader {
    display: block;
    position: relative;
    top: 50%;
    left: 50%;
    /*   transform: translate(-50%, -50%); */
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border: var(--line-width) solid transparent;
    border-top-color: var(--outer-line-color);
    border-radius: 100%;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
    z-index: 1001;
}

.loader:before {
    content: "";
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    border: var(--line-width) solid transparent;
    border-top-color: var(--inner-line-color);
    border-radius: 100%;
    -webkit-animation: spin 3s linear infinite;
    animation: spin 3s linear infinite;
}

.loader:after {
    content: "";
    position: absolute;
    top: 14px;
    left: 14px;
    right: 14px;
    bottom: 14px;
    border: var(--line-width) solid transparent;
    border-top-color: var(--middle-line-color);
    border-radius: 100%;
    -webkit-animation: spin 1.5s linear infinite;
    animation: spin 1.5s linear infinite;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.loaded .loader-wrapper .loader-section.section-left {
    transform: translateX(-100%);
    transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.loader-wrapper .loader-section.section-left {
    left: 0;
}

.loader-wrapper .loader-section {
    position: fixed;
    top: 0;
    background: var(--curtain-color);
    width: 51%;
    height: 100%;
    z-index: 1000;
}

.loaded .loader-wrapper .loader-section.section-right {
    transform: translateX(100%);
    transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.loader-wrapper .loader-section.section-right {
    right: 0;
}

/* PROGRESS WRAP */

.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.progress-wrap {
    position: fixed;
    right: 30px;
    bottom: 30px;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    z-index: 10000;
    opacity: 1;
    visibility: hidden;
    transform: translateY(15px);
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.progress-wrap::before {
    position: absolute;
    font-family: "unicons";
    content: "\e84b";
    text-align: center;
    line-height: 46px;
    font-size: 24px;
    opacity: 0;
    background: var(--color-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    left: 0;
    top: 0;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    z-index: 2;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.progress-wrap svg {
    color: var(--text-primary);
    border-radius: 50%;
    background: var(--primary-color);
}

.progress-wrap svg.progress-circle path {
    stroke: var(--text-primary);
    stroke-width: 34px;
    box-sizing: border-box;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.progress-wrap svg path {
    fill: none;
}

.progress-wrap::after {
    position: absolute;
    font-family: "unicons";
    content: "\e84b";
    text-align: center;
    line-height: 46px;
    font-size: 24px;
    color: var(--text-primary);
    left: 0;
    top: 0;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    z-index: 1;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
    border: 2px solid var(--color-primary);
    box-shadow: none;
    border-radius: 50% !important;
    border-radius: 5px;
}

/* ADD NEW */