﻿/* 
Theme : DP Dubai Landing Page,
Version : 1.0,
Author : DigitalPiloto
*//**************************************
                General
**************************************/
:root
{
    --theme-color: #f58220;
    --theme-color-gradient: -webkit-linear-gradient(90deg,#efac0a 0%,#f58220 100%);
    --theme-blue-gradient: -webkit-linear-gradient(-94deg,#128ed9 0%,#0053d9 100%);
    --theme-text-dark: #121212;
    --theme-bg-blue: #091f3f;
    --theme-dec-gray: #121212;
    --theme-light: #fff;
    --shadow-sm: 0px 11px 18px 0px rgb(255 255 255/13%);
    --bg-gray: #f0f0f0;
    --animation-timing-function: cubic-bezier(.4,0,.2,1);
    --animation-duration: 1s;
}
*, *::before, *::after
{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}
html
{
    font-size: 100%;
    box-sizing: inherit;
    scroll-behavior: smooth;
    height: -webkit-fill-available;
}
html::-webkit-scrollbar
{
    width: 2px;
    background-color: #7595ff4d;
}
html::-webkit-scrollbar-thumb
{
    background: var(--theme-blue-gradient);
    border-radius: 50rem;
}
a, button
{
    cursor: pointer;
    border: none;
    outline: none;
    user-select: none;
    background: none;
    box-shadow: none;
}
ol, ul
{
    padding: 0;
    margin: 0;
    list-style-type: none;
}
body
{
    font-size: 14px;
    font-family: 'Roboto Regular';
    font-weight: 400;
    color: var(--theme-text-dark);
    scroll-padding: 500px;
}
a, a:hover, a:focus
{
    color: currentColor;
    transition: all .4s;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -ms-transition: all .4s;
    -o-transition: all .4s;
    text-decoration: none;
}
h1, h2, h3, h4
{
    transition: all .4s;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -ms-transition: all .4s;
    -o-transition: all .4s;
    font-family: 'Roboto Bold';
}
p
{
    margin-top: 0;
    margin-bottom: 1rem;
    color: #292929;
    font-size: 20px;
}
main
{
    overflow: hidden;
}
img
{
    max-width: 100%;
    height: auto;
}/**************************************
         Animation
**************************************//* Keyframes */
@keyframes slideInUp
{
    0%
    {
        opacity: 0;
        transform: translateY(25%);
    }
    100%
    {
        opacity: 1;
        transform: none;
    }
}
@keyframes slideInDown
{
    0%
    {
        opacity: 0;
        transform: translateY(-25%);
    }
    100%
    {
        opacity: 1;
        transform: none;
    }
}
@keyframes slideInLeft
{
    0%
    {
        opacity: 0;
        transform: translateX(25%);
    }
    100%
    {
        opacity: 1;
        transform: none;
    }
}
@keyframes slideInRight
{
    0%
    {
        opacity: 0;
        transform: translateX(-25%);
    }
    100%
    {
        opacity: 1;
        transform: none;
    }
}
@keyframes fadeIn
{
    0%
    {
        opacity: 0;
    }
    100%
    {
        opacity: 1;
    }
}
@keyframes zoomIn
{
    0%
    {
        opacity: 0;
        transform: scale(.75);
    }
    100%
    {
        opacity: 1;
        transform: none;
    }
}
@keyframes zoomReverseIn
{
    0%
    {
        opacity: 0;
        transform: scale(1.25);
    }
    100%
    {
        opacity: 1;
        transform: none;
    }
}
@keyframes flipInY
{
    0%
    {
        opacity: 0;
        transform: perspective(90vw) rotateY(67.5deg);
    }
    100%
    {
        opacity: 1;
        transform: none;
    }
}/* Animations */
[data-animation]
{
    opacity: 0;
    animation-timing-function: var(--animation-timing-function);
    animation-fill-mode: both;
    animation-duration: var(--animation-duration);
    will-change: transform,opacity;
}/* Disable animation of the children */
.animations-disabled, .animations-disabled [data-animation]
{
    animation: none!important;
    opacity: 1!important;
}/* Slide Animations */
.slideInUp
{
    animation-name: slideInUp;
}
.slideInDown
{
    animation-name: slideInDown;
}
.slideInLeft
{
    animation-name: slideInLeft;
}
.slideInRight
{
    animation-name: slideInRight;
}/* Fade Animations */
.fadeIn
{
    animation-name: fadeIn;
}/* Zoom Animations */
.zoomIn
{
    animation-name: zoomIn;
}
.zoomReverseIn
{
    animation-name: zoomReverseIn;
}/* Flip Animations */
.flipInY
{
    animation-name: flipInY;
}
.flipOutY
{
    animation-name: flipInY;
    animation-direction: reverse;
}/**************************************
      Menu
**************************************/
.navTrigger
{
    position: absolute;
    top: 10px;
    right: 0;
    z-index: 1000;
    width: 70px;
    height: 60px;
    background: none;
    border: 0;
    outline: none;
    border: none;
    cursor: pointer;
    -webkit-appearence: none;
    -webkit-tap-highlight-color: transparent;
}
.navTrigger:focus
{
    outline: none;
}
.navTrigger svg
{
    width: 70px;
    height: 60px;
    top: 0;
    left: 0;
    stroke: var(--theme-light);
    stroke-width: 4px;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    display: block;
    position: absolute;
    background-color: var(--theme-color);
}
.navTrigger svg path
{
    transition: stroke-dasharray var(--duration,.85s) var(--easing,ease) var(--delay,0s),stroke-dashoffset var(--duration,.85s) var(--easing,ease) var(--delay,0s);
    stroke-dasharray: var(--array-1,26px) var(--array-2,100px);
    stroke-dashoffset: var(--offset,126px);
    transform: translateZ(0);
}
.navTrigger svg path:nth-child(2)
{
    --duration: .7s;
    --easing: ease-in;
    --offset: 100px;
    --array-2: 74px;
}
.navTrigger svg path:nth-child(3)
{
    --offset: 133px;
    --array-2: 107px;
}
.navTrigger.active svg
{
    stroke: var(--theme-light);
}
.navTrigger.active svg path
{
    --offset: 57px;
}
.navTrigger.active svg path:nth-child(1), .navTrigger.active svg path:nth-child(3)
{
    --delay: .15s;
    --easing: cubic-bezier(.2,.4,.2,1.1);
}
.navTrigger.active svg path:nth-child(2)
{
    --duration: .4s;
    --offset: 2px;
    --array-1: 1px;
}
.navTrigger.active svg path:nth-child(3)
{
    --offset: 58px;
}
.navMenu
{
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    text-align: center;
    background: var(--white);
    opacity: 0;
    z-index: -1;
    visibility: hidden;
    transition: all .375s;
    width: 35%;
}
.navMenu.active
{
    opacity: 1;
    z-index: 100;
    visibility: visible;
}
.navMenu.active::before
{
    transform: skew(-14deg) translateX(0);
}
.navMenu.active li
{
    opacity: 1;
    transform: translateY(0);
}
.navMenu::before
{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: -15px;
    background: var(--theme-color-gradient);
    transform-origin: 0 0;
    transform: skew(-14deg) translateX(-120%);
    transition: all .275s .1s;
}
.navMenu ul
{
    list-style: none;
    padding: 0;
    display: inline-flex;
    flex-direction: column;
    height: 93%;
    align-items: flex-end;
    justify-content: center;
    transform: translateX(-18%) skew(-16deg);
}
.navMenu ul li
{
    display: block;
    margin: .5rem 0;
    text-align: right;
    opacity: 0;
    transform: translateY(-10px);
}
.navMenu ul li a
{
    position: relative;
    left: 0;
    display: block;
    padding: 12px 0;
    color: var(--theme-light);
    font-size: 30px;
    text-decoration: none;
    transform: skew(16deg);
    transition: .25s;
}
.navMenu ul li a:hover
{
    left: 10px;
}
.navMenu ul li:nth-child(1)
{
    transition: all 275ms 275ms;
}
.navMenu ul li:nth-child(2)
{
    transition: all 275ms 325ms;
}
.navMenu ul li:nth-child(3)
{
    transition: all 275ms 375ms;
}
.navMenu ul li:nth-child(4)
{
    transition: all 275ms 425ms;
}
.navMenu ul li:nth-child(5)
{
    transition: all 275ms 475ms;
}
.menu-overlay.active
{
    position: fixed;
    inset: 0;
}
.header
{
    position: fixed;
    width: 100%;
    height: auto;
    padding: 13px 0;
    left: 0;
    right: 0;
    z-index: 200;
    margin: 0 auto;
    background-color: #fff0;
    transition: ease .3s;
    -webkit-transition: ease .3s;
    -moz-transition: ease .3s;
    -ms-transition: ease .3s;
    -o-transition: ease .3s;
}
header
{
    position: relative;
    transition: all .4s;
}
header.sticky
{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: #071f42;
    box-shadow: var(--shadow-sm);
    padding: 8px 0;
}/**************************************
                Helper Class
**************************************/
.section-gap
{
    padding: 60px 0;
}
.primary-btn
{
    border: 0;
    padding: 10px 15px;
    background: var(--theme-color);
    font-size: 20px;
    color: var(--theme-light);
    line-height: 1.4;
    border-radius: 4px;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    display: inline-block;
    mix-blend-mode: difference;
    position: relative;
    box-sizing: border-box;
    overflow: hidden;
    z-index: 1;
}
.primary-btn:after, .secondary-btn::after
{
    content: '';
    background: var(--theme-blue-gradient);
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    scale: 1 0;
    z-index: -1;
    transition: all .4s;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -ms-transition: all .4s;
    -o-transition: all .4s;
}
.primary-btn:hover:after, .secondary-btn:hover:after
{
    scale: 1 1;
}
.primary-btn:hover
{
    color: var(--theme-light);
}
.container
{
    max-width: 1400px;
}
.fixed-btn
{
    position: fixed;
    top: 55%;
    right: 10px;
    z-index: 99;
    width: 40px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.enq-btn
{
    position: fixed;
    top: 20%;
    right: 5px;
    height: 38px;
    font-weight: 400;
    text-align: center;
    z-index: 9;
    transform: rotate(-90deg);
    transform-origin: bottom right;
    border-radius: 0;
    overflow: clip;
    display: flex;
    border-radius: 0;
    background-image: var(--theme-blue-gradient);
}
.enq-btn::after, .enq-btn::before
{
    content: '';
    content: '';
    position: absolute;
    z-index: -1;
    background-image: var(--theme-color-gradient);
    inset: 0;
    scale: 1 0;
    transition: scale 450ms;
    transform-origin: top;
}
.enq-btn:hover::after, .enq-btn:focus-visible::after
{
    scale: 1 1;
    transform-origin: right;
}
.enq-btn a
{
    font-size: 18px;
    letter-spacing: 0;
    line-height: 37px;
    color: var(--theme-light);
    padding: 0 13px;
    font-weight: 100;
    font-family: 'Roboto Regular';
}
.enq-btn a img
{
    transform: rotate(90deg) translateX(6px) translateY(4px);
}
.call-btn
{
    position: relative;
    padding-left: 35px;
}
.call-btn span
{
    position: absolute;
    left: 0;
    bottom: 6px;
}
.call-btn p
{
    color: #fff;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 158.9%;
    margin: 0;
}
.call-btn h4
{
    color: #fff;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 158.9%;
}
.call-btn:hover h4
{
    color: #f58220;
}
.header .container
{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.action-btn
{
    display: flex;
    align-items: center;
    gap: 40px;
    z-index: 1;
}/*************************************
                Home Page
**************************************/
.hero
{
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}
.hero h1
{
    font-size: 44px;
    color: var(--theme-light);
    font-weight: normal;
    line-height: 1.252;
    margin-bottom: 15px;
}
.hero h6
{
    font-size: 20px;
    color: var(--theme-light);
    line-height: 1.478;
    font-weight: 100;
    margin-bottom: 15px;
}
.banner-content
{
    padding-block: 17%;
    position: relative;
    z-index: 1;
    margin-top: 92px;
}
.btn-group img, .fc, .fw
{
    transition: all .5s;
    margin-inline: 5px;
}
.btn-group a:nth-child(2):hover img, .btn-group a:nth-child(3):hover img, .fc:hover, .fw:hover
{
    transform: scale(1.2);
}/************************************
  Clients
************************************/
.text-center
{
    text-align: center;
}
.clients
{
    padding-top: 30px;
    padding-bottom: 50px;
}
.clients h4
{
    color: #6a6a6a;
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 25px;
}
.client-logo img
{
    margin: auto;
}
img
{
    transition: all .5s;
}
.client-logo:hover img
{
    transform: scale(1.2);
}
.slick-arrow
{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    transition: all .5s;
}
.slick-arrow:hover
{
    background-color: #ddd7;
}
.slick-arrow::before
{
    content: '';
    box-sizing: border-box;
    height: 14px;
    width: 14px;
    border-style: solid;
    border-color: var(--theme-text-dark);
    border-width: 0 1px 1px 0;
    transform: rotate(314deg);
    transition: all .5s;
    opacity: 1;
}
.slick-arrow.slick-prev::before
{
    transform: rotate(140deg);
}
.video-box
{
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}
.video_img
{
    width: 100%;
    height: 100%;
}
.video-box .content
{
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.video-box .icon
{
    transition: all .5s;
}
.video-box:hover .icon
{
    transform: scale(1.2);
}
.mb-35
{
    margin-bottom: 35px;
}
.our-success-story
{
    position: relative;
}
.our-success-story::after
{
    content: '';
    position: absolute;
    inset: 0 62px;
    background: #fff6ee;
    z-index: -1;
}
.client-logo
{
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer-social
{
    margin-top: 20px;
    display: flex;
}
.footer-social a:not(:last-child)
{
    margin-right: 12px;
}
.footer-social a:hover
{
    transform: scale(1.2);
}/************************************
   About
************************************/
.about
{
    position: relative;
    padding-block: 80px;
}
.about-content h2
{
    position: relative;
}
h2
{
    font-size: 49px;
    color: #121212;
    font-weight: bold;
    line-height: 1.19;
    margin-bottom: 10px;
}
.about p
{
    font-size: 20px;
    line-height: 1.4;
    text-align: justify;
}
.think-about
{
    background: #fffaf6;
    padding-bottom: 150px;
}
.think-about .small-line
{
    margin: 0;
}
.think-about ul li
{
    position: relative;
    color: #000;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 198.4%;
    padding-left: 30px;
}
.think-about ul li::after
{
    content: '';
    position: absolute;
    left: 0;
    top: 15px;
    background-image: url(../img/check.webp);
    width: 22px;
    height: 22px;
    background-repeat: no-repeat;
}/************************************
   ROI
************************************/
.roi
{
    background: linear-gradient(180deg,#071f42 47.52%,#124fa8 100%);
}
.roi .small-line
{
    margin-bottom: 10px;
}
.roi :is(h2,p)
{
    color: #fff;
}
.roi .text-center img
{
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(2%) hue-rotate(53deg) brightness(105%) contrast(101%);
}
.roi-list
{
    border-radius: 13px;
    border: 1px solid #071f42;
    background: #fff;
    margin-bottom: 15px;
    transition: all .5s;
}
.roi-list:hover
{
    transform: translateY(-5px);
}
.roi-content
{
    padding: 22px;
    position: relative;
    z-index: 1;
}
.roi-content h3
{
    color: #071f42;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 10px;
}
.roi-content p
{
    color: #292929;
}
.roi-content .primary-btn
{
    border-radius: 4px;
    border: 1px solid #071f42;
    background-color: transparent;
    color: #071f42;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 158.9%;
}
.roi-content .primary-btn:hover
{
    color: #fff;
}
.box
{
    border-radius: 9px;
    border: 1px solid #d0d0d0;
    background: #fff;
    box-shadow: 0 4px 24px 0 rgba(0,0,0,.15);
    padding: 0 33px;
    text-align: center;
    padding-bottom: 70px;
}
.box h3
{
    background: linear-gradient(90deg,#fff 0%,#ffe4cd 53%,#fff 100%);
    text-align: center;
    color: #171717;
    font-size: 24px;
    padding-block: 4px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.box img
{
    margin: auto;
}
.box .case-studues-img
{
    margin-bottom: 30px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.case-studies-slider .item .primary-btn
{
    transform: translateY(-36px);
    mix-blend-mode: normal;
}
.case-studies-slider .item
{
    text-align: center;
}
.interest
{
    background-image: url(../img/bg1.webp);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 27px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: -80px;
    margin-bottom: 80px;
}
.flex-box
{
    display: flex;
    align-items: center;
    gap: 20px;
}
.flex-box h5
{
    color: #fff;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 158.9%;/* 38.136px */
    font-weight: normal;
}
.flex-box h5:hover a
{
    color: #f58220;
}
.interest :is(h2,p,h5)
{
    color: #fff;
}
.interest h2
{
    font-size: 42px;
    font-weight: normal;
}
.flex-box .primary-btn
{
    mix-blend-mode: normal;
}
.ms-auto
{
    margin-left: auto;
}
.who-we-are
{
    background-image: url(../img/who-we-are.webp);
    background-repeat: no-repeat;
    background-size: cover;
    padding-block: 6%;
}
.who-we-are :is(h2,p)
{
    color: #fff;
}
.who-we-are img
{
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(2%) hue-rotate(53deg) brightness(105%) contrast(101%);
}
.who-we-are .small-line
{
    margin: 0;
    margin-bottom: 10px;
}
.who-we-are .primary-btn
{
    mix-blend-mode: normal;
}
.who-we-are p span
{
    color: #f58220;
}/***********************************
  Process
************************************/
.timeline
{
    position: relative;
    width: 100%;
    margin: 0 auto;
    margin-top: 20px;
    padding: 1em 0;
    list-style-type: none;
}
.timeline:before
{
    position: absolute;
    left: 50%;
    top: 0;
    content: ' ';
    display: block;
    width: 1px;
    height: 100%;
    margin-left: -3px;
    background: #d8d8d800;
    border-right: 1px dashed #d8d8d8;
    z-index: 0;
}
.timeline li
{
    padding: 0 0;
}
.timeline li:after
{
    content: "";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}
.direction-l
{
    position: relative;
    width: 47.7%;
    float: left;
    text-align: right;
}
.direction-r
{
    position: relative;
    width: 47.7%;
    float: right;
}
.icon-box
{
    width: 111px;
    height: 111px;
    background-color: #fff;
    border: 1px solid #f2f2f2;
    filter: drop-shadow(0 10px 14px rgba(0,0,0,.16));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
}
.icon-box::after
{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    border-radius: 50%;
    z-index: 0;
    transition: all .5s;
    opacity: 0;
    border: 2px dashed #f58220;
    box-sizing: border-box;
}
.icon-box::before
{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(6 102 217/12%);
    border-radius: 50%;
    z-index: -1;
    transition: all .5s;
    opacity: 0;
}
.content-box:hover .icon-box:before
{
    opacity: 1;
    transform: scale(.8);
}
.content-box:hover .icon-box:after
{
    opacity: 1;
    animation: rotate 10s linear infinite;
}
@keyframes rotate
{
    0%
    {
        transform: scale(.92) rotate(0deg);
    }
    100%
    {
        transform: scale(.92) rotate(360deg);
    }
}
.direction-l .content-box
{
    padding-right: 136px;
}
.direction-r .content-box
{
    padding-left: 136px;
}
.direction-l .icon-box
{
    right: 0;
}
.direction-r .icon-box
{
    left: 0;
}
.content-box
{
    position: relative;
}
.content-box h3
{
    color: #071f42;
    font-size: 24px;
    font-style: normal;
    font-weight: normal;
    line-height: normal;
    font-family: 'Roboto Medium';
}
.content-box::after
{
    content: '';
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #f58220;
    border: 4px solid #fff;
    filter: drop-shadow(0 4px 4px rgba(0,0,0,.25));
    position: absolute;
    right: -38px;
    top: 45px;
    z-index: 9;
}
.direction-r .content-box::after
{
    right: auto;
    left: -44px;
}
@media screen and (max-width: 660px)
{
    .timeline
    {
        width: 100%;
        padding: 4em 0 1em 0;
    }
    .timeline li
    {
        padding: 2em 0;
    }
    .direction-l, .direction-r
    {
        float: none;
        width: 100%;
        text-align: center;
    }
}
.faq
{
    background-image: url(../img/faq-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
}
.mx-auto
{
    margin: auto;
}/* Modal */
.fade
{
    transition: opacity .15s linear;
}
.modal.show .modal-dialog
{
    transform: none;
}
.modal.fade .modal-dialog
{
    transition: transform .3s ease-out;
    transform: translate(0,-50px);
}
.modal-dialog
{
    position: relative;
    width: auto;
    margin: 1.75rem;
    pointer-events: none;
}
.modal-dialog-centered
{
    display: flex;
    align-items: center;
    min-height: calc(100% - 1.75rem * 2);
    height: 100%;
}
.modal-dialog
{
    max-width: 800px;
    margin-right: auto;
    margin-left: auto;
}
.modal-content
{
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #000913;
    box-shadow: 0 0 18px 0 #88fee7;
    background-clip: padding-box;
    border-radius: 20px;
    outline: 0;
    overflow: hidden;
}
.modal form
{
    padding: 30px 10px;
}
.enqform .btn-close
{
    position: absolute;
    right: 0;
    top: 0;
    box-shadow: 0 0 3px 0 #00000040;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #ffffff1f;
    opacity: 1;
    font-size: 25px;
    color: #88fee7;
    z-index: 10;
    transition: all .4s;
}
.enqform .btn-close:hover
{
    background: #fff0;
}
.modal .contact
{
    background-color: #000913;
}
.modal .contact img
{
    z-index: 1;
    bottom: 0;
    left: -62px;
    width: 70%;
}
.modal
{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1055;
    display: none;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    outline: 0;
}
.modal-backdrop
{
    --bs-backdrop-zindex: 1050;
    --bs-backdrop-bg: #000;
    --bs-backdrop-opacity: .5;
    position: fixed;
    top: 0;
    left: 0;
    z-index: var(--bs-backdrop-zindex);
    width: 100vw;
    height: 100vh;
    background-color: var(--bs-backdrop-bg);
}
.modal-backdrop.fade
{
    opacity: 0;
}
.modal-backdrop.show
{
    opacity: var(--bs-backdrop-opacity);
}
.offcanvas
{
    position: fixed;
    bottom: 0;
    z-index: 1045;
    display: flex;
    flex-direction: column;
    max-width: 100%;
    visibility: hidden;
    background-color: #fff;
    background-clip: padding-box;
    outline: 0;
    transition: transform .3s ease-in-out;
    width: 400px;
}
.offcanvas.offcanvas-end
{
    top: 0;
    right: 0;
    border-left: 1px solid #1313132d;
    transform: translateX(100%);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom;
}
.offcanvas-header, .offcanvas .offcanvas-header.form-box
{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1rem;
    position: relative;
    background: var(--theme-color-gradient);
}
.offcanvas .heading-section h2
{
    position: relative;
    bottom: unset;
    font-size: 30px;
}
.offcanvas .heading-section
{
    margin: 0;
}
.offcanvas-body
{
    flex-grow: 1;
    padding: 1rem 1rem;
    overflow-y: auto;
    background: var(--theme-color-gradient);
}
.form-input
{
    width: 100%;
    font-size: 18px;
    padding: 16px 22px;
    background-color: #fff3;
    border: 0;
    border-radius: 10px;
    outline: none;
    color: #fff;
    margin-bottom: 10px;
}
select option
{
    color: #000;
}
.form-input:focus
{
    outline: 1px solid var(--theme-light);
}
.form-input::placeholder
{
    color: #fff;
}
.form-group.submit-btn
{
    position: relative;
    z-index: 9;
}
.submit-btn .primary-btn
{
    width: 100%;
    background: var(--theme-blue-gradient);
    z-index: 1;
    position: relative;
}
.offcanvas-body::-webkit-scrollbar
{
    width: 0;
}
.offcanvas.hiding, .offcanvas.show, .offcanvas.showing
{
    visibility: visible;
}
.offcanvas.show:not(.hiding), .offcanvas.showing
{
    transform: none;
}
.offcanvas-backdrop
{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1040;
    width: 100vw;
    height: 100vh;
    background-color: #000;
}
.offcanvas-backdrop.show
{
    opacity: .5;
}
.fade
{
    transition: opacity .15s linear;
}
button.btn-close img
{
    border-bottom: 1px solid #6f5036;
    padding-bottom: 4px;
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7490%) hue-rotate(132deg) brightness(110%) contrast(101%);
}
button.btn-close
{
    width: 50px;
    height: 50px;
    opacity: 1;
    color: #fff;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
    border-radius: 50%;
    flex-direction: column;
    gap: 5px;
    background: var(--theme-blue-gradient);
    transition: all .5s;/* position: absolute;
    right: 9px;
    top: 10px; */
}
button.btn-close:hover
{
    background-color: #000;
}
.client-speak.case-studies .client-video
{
    height: 569px;
}
.client-speak.case-studies .client-video img
{
    height: 100%;
}
.client-speak-slider .slick-list, .case-studies-slider .slick-list
{
    margin: 0 -15px;
}
.client-speak-slider .slick-slide, .case-studies-slider .slick-slide
{
    margin: 0 15px;
}
.slick-dots li button
{
    border-style: solid;
    border-width: 1px;
    border-color: #dadada;
    border-radius: 50%;
    background-color: var(--theme-bg-blue);
    width: 16px;
    height: 16px;
}
.slick-dots
{
    bottom: -50px;
}
.slick-dots li.slick-active button
{
    background-color: var(--theme-light);
    border-color: var(--theme-color);
    background-color: var(--theme-color);
}
.about-image
{
    position: relative;
}
.about-image img
{
    border-radius: 25px;
}
.small-line
{
    width: 100px;
    height: 2px;
    display: block;
    background-color: var(--theme-color);
    margin: auto;
}
.heading
{
    text-align: center;
    margin: auto;
    margin-bottom: 40px;
}
.heading h2
{
    margin-bottom: 10px;
}
.heading p
{
    font-size: 20px;
    line-height: 1.4;
}
.why-choose-items
{
    position: relative;
}
.choose-item
{
    text-align: center;
}
.faq-item
{
    background-color: var(--theme-light);
    border-radius: 10px;
    padding: 15px 20px;
    margin-bottom: 20px;
    position: relative;
    cursor: pointer;
}
.faq h2
{
    color: var(--theme-light);
}
.faq-item:after
{
    content: '';
    box-sizing: border-box;
    height: 14px;
    width: 14px;
    border-style: solid;
    border-color: var(--theme-bg-blue);
    border-width: 0 1px 1px 0;
    transform: rotate(45deg);
    position: absolute;
    right: 16px;
    top: 21px;
    transition: all .5s;
}
.faq-item.open:after
{
    transform: rotate(-133deg);
}
.faq-item h4
{
    font-size: 20px;
    line-height: 1.5;
    text-align: left;
    padding-right: 5%;
}
.faq-item.open h4
{
    margin-bottom: 15px;
}
.accordion-content
{
    margin-bottom: 15px;
}
.blog-big
{
    position: relative;
}
.blog-big img
{
    width: 100%;
}
.blog-big .blog-content
{
    position: relative;
    padding-left: 0!important;
    inset: 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: start;
}
.blog-big .blog-content :is(h3,p,h6)
{
    color: #000;
}
.blog-big .blog-content h3
{
    font-family: 'Roboto Medium';
    color: #000;
    font-size: 30px;
    font-style: normal;
    font-weight: normal;
    line-height: normal;
    margin-bottom: 10px;
}
.date
{
    background: #f58220;
    color: #fff;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 144.9%;
    padding-inline: 10px;
    padding-block: 4px;
    margin-bottom: 5px;
}
.blog-list h4
{
    color: #222;
    font-size: 20px;
    font-style: normal;
    font-weight: normal;
    line-height: normal;
    font-family: 'Roboto Medium';
}
.blog-list .date
{
    background-color: transparent;
    padding: 0;
    color: #aeaeae;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 144.9%;
    text-align: left;
}
.blog-content
{
    border-bottom: 1px solid #e4e4e4;
    padding-bottom: 20px;
}
.blog-list
{
    margin-bottom: 25px;
}
.blog-list:hover h4, .blog-big:hover h3
{
    color: #f58220;
}
.form-control
{
    border-radius: 4px;
    border: 1px solid #393939;
    width: 100%;
    background: transparent;
    padding: 19px 10px;
    font-size: 18px;
    color: #000;
    outline: none;
}
.form-control:focus
{
    border: 1px solid #f58220;
}
label
{
    color: #000;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 144.9%;/* 26.082px */
    margin-bottom: 4px;
    display: block;
}
form .primary-btn
{
    width: 187px;
    height: 52px;
    mix-blend-mode: normal;
}
form .primary-btn:hover
{
    background-color: #071f42;
}
footer
{
    background: #061224;
    padding-top: 40px;
}
.footer-logo
{
    margin-bottom: 20px;
    display: block;
}
footer h4
{
    color: #fff;
    font-size: 22px;
    font-style: normal;
    font-weight: normal;
    line-height: normal;
    font-family: 'Roboto Medium';
    margin-bottom: 10px;
}
footer ul li a
{
    color: #e1e1e1;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 225.9%;/* 40.662px */
}
footer ul li a:hover
{
    color: #f58220;
}
footer p
{
    color: #fff;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 144.9%;
}
.copyright
{
    border-top: 1px solid rgba(255,255,255,.205);
    padding-block: 15px;
    margin-top: 25px;
}
.copyright p
{
    color: #b6b6b6;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 144.9%;
    margin: 0;
}/*******************************
  Mobile Menu
********************************/
.mobile-bottom-menu
{
    background: #071f42;
    background-image: url(../img/faq-bg.webp);
    background-size: cover;
    background-repeat: no-repeat;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-repeat: no-repeat;
    background-position: bottom;
    text-align: center;
    z-index: 99;
    display: none;
    background-size: cover;
    box-shadow: 0 -5px 9px 0 #b1b1b124;
}
.mobile-bottom-menu ul li
{
    display: inline-block;
    height: 60px;
    padding-top: 6px;
    position: relative;
    width: 118px;
}
.mobile-bottom-menu ul
{
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding-inline: 10px;
}
.whatsapp
{
    position: relative;
    width: 54px;
}
.whatsapp .wp
{
    position: absolute;
    left: 0;
    right: 0;
    display: block;
    width: 54px;
    height: 54px;
    top: -40px;
}
.mobile-bottom-menu ul li a
{
    width: 20%;
    font-size: 15px;
    color: #fff;
    line-height: 6px;
}
.mobile-bottom-menu ul li.active a, .mobile-bottom-menu ul li:hover a
{
    color: #f58220;
}
.mobile-bottom-menu ul li a img
{
    filter: brightness(0) saturate(100%) invert(98%) sepia(47%) saturate(0%) hue-rotate(285deg) brightness(114%) contrast(100%);
}
.mobile-bottom-menu ul li.active a img, .mobile-bottom-menu ul li:hover a img
{
    filter: brightness(0) saturate(100%) invert(70%) sepia(64%) saturate(3910%) hue-rotate(346deg) brightness(98%) contrast(96%);
}
.mobile-bottom-menu ul li a img
{
    height: 24px;
    width: auto;
    margin-bottom: 0;
}
.wp img
{
    border-radius: 50%;
    box-shadow: 0 5px 0 -.88px rgb(255 255 255/25%);
    margin-bottom: -6px;
}
.mobile-bottom-menu ul li.active::before
{
    content: '';
    background-color: #f58220;
    position: absolute;
    height: 3px;
    top: -1px;
    left: 8px;
    right: 8px;
}
@media(max-width: 991.98px)
{
    .mobile-bottom-menu
    {
        display: block;
    }
}
footer ul li a:focus
{
    color: #f58220;
}
footer ul li a:active
{
    color: #f58220;
}/*******************************
  Responsive
********************************/
@media(max-width: 1440px),(max-width: 1366px)
{
    .container
    {
        max-width: 1200px;
    }
    .hero h1, h2
    {
        font-size: 40px;
    }
    .banner-content
    {
        padding-block: 10%;
    }
    .hero h6, p
    {
        font-size: 17px;
    }
    .our-success-story::after
    {
        inset: 0 32px;
    }
    .about p
    {
        margin-bottom: 10px;
    }
    .think-about ul li
    {
        font-size: 20px;
    }
    .interest h2
    {
        font-size: 32px;
        font-weight: normal;
    }
    .who-we-are
    {
        padding-block: 3%;
    }
    .faq-item h4
    {
        font-size: 18px;
    }
    footer ul li a
    {
        font-size: 16px;
    }
    .content-box::after
    {
        right: -34px;
    }
    .direction-r .content-box::after
    {
        right: auto;
        left: -40px;
    }
    .navMenu ul li a
    {
        padding: 6px 0;
        font-size: 24px;
    }
}
@media(max-width: 991.98px)
{
    .container
    {
        padding-inline: 30px;
    }
    .call-btn :is(p,h4)
    {
        display: none;
    }
    .call-btn span
    {
        position: relative;
        left: 0;
        bottom: 0;
        width: 48px;
        height: 48px;
        background: #f58220;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .action-btn
    {
        gap: 20px;
    }
    .hero h1, h2
    {
        font-size: 34px;
    }
    .our-success-story::after
    {
        inset: 0 10px;
    }
    .about-image
    {
        position: relative;
        text-align: center;
    }
    .roi-list
    {
        text-align: center;
    }
    .roi .container .roi-list:nth-child(2n) .col-lg-3
    {
        order: 1;
    }
    .roi .container .roi-list:nth-child(2n) .col-lg-9
    {
        order: 2;
    }
    .roi-content
    {
        padding: 22px;
        padding-top: 0;
    }
    .think-about ul li
    {
        font-size: 18px;
    }
    .think-about-img
    {
        width: 100%;
    }
    .interest
    {
        margin-bottom: 60px;
        flex-direction: column;
        text-align: center;
    }
    .who-we-are
    {
        background-position: right;
    }
    .direction-l, .direction-r
    {
        position: relative;
        width: 100%;
        float: unset;
        text-align: center;
    }
    .direction-l .content-box, .direction-r .content-box
    {
        padding-right: 0;
        padding-inline: 10%;
    }
    .icon-box
    {
        position: relative;
        margin: auto;
        margin-bottom: 10px;
        z-index: 1;
    }
    .timeline:before
    {
        margin-left: 0;
        z-index: 0;
    }
    .content-box::after, .direction-r .content-box::after
    {
        right: 48.6%;
        top: -24px;
        z-index: 9;
        left: auto;
    }
    .timeline li
    {
        padding: 15px 0;
    }
    .process.section-gap
    {
        padding-bottom: 0;
    }
    .faq-item h4
    {
        font-size: 16px;
    }
    .form-control
    {
        padding: 10px 10px;
        font-size: 15px;
    }
    .footer-logo
    {
        text-align: center;
    }
    footer p
    {
        text-align: center;
    }
    .footer-social
    {
        justify-content: center;
    }
}
@media(max-width: 575.98px)
{
    .container
    {
        padding-inline: 10px;
    }
    .action-btn
    {
        gap: 10px;
        padding-right: 70px;
    }
    .call-btn
    {
        position: relative;
        padding-left: 20px;
    }
    .call-btn span
    {
        width: 35px;
        height: 35px;
        padding: 11px;
    }
    .logo
    {
        width: 130px;
    }
    .header .primary-btn
    {
        font-size: 14px;
        padding: 8px 10px;
        display: none;
    }
    .navTrigger, .navTrigger svg
    {
        width: 60px;
        height: 50px;
        top: 0;
    }
    .banner-content
    {
        padding-block: 10%;
        margin-top: 60px;
    }
    .hero h1, h2
    {
        font-size: 20px;
        text-align: center;
    }
    .hero h6
    {
        text-align: center;
    }
    .hero h6, p
    {
        font-size: 14px;
    }
    .btn-group
    {
        text-align: center;
    }
    .btn-group img
    {
        height: 40px;
    }
    .primary-btn
    {
        font-size: 14px;
    }
    .client-logo
    {
        padding-inline: 10px;
    }
    .slick-arrow
    {
        width: 30px;
        height: 30px;
    }
    .slick-next
    {
        right: -10px;
    }
    .slick-prev
    {
        left: -10px;
    }
    .slick-arrow::before
    {
        height: 10px;
        width: 10px;
    }
    .clients h4
    {
        font-size: 18px;
        margin-bottom: 15px;
    }
    .section-gap
    {
        padding: 25px 0;
    }
    .heading-arrow
    {
        width: 100px;
    }
    .mb-35
    {
        margin-bottom: 15px;
    }
    h2
    {
        margin-bottom: 4px;
    }
    .slick-dots li, .slick-dots li button
    {
        width: 10px;
        height: 10px;
    }
    .slick-dots
    {
        bottom: -30px;
    }
    .about-content
    {
        text-align: center;
    }
    .about
    {
        position: relative;
        padding-block: 25px;
    }
    .about p
    {
        font-size: 14px;
        line-height: 1.4;
        text-align: justify;
        text-align-last: center;
    }
    .clients
    {
        padding-top: 25px;
        padding-bottom: 25px;
    }
    .roi-content h3
    {
        font-size: 18px;
    }
    .roi-content
    {
        padding: 10px;
        padding-top: 0;
    }
    .roi-content .primary-btn
    {
        font-size: 14px;
        padding: 8px 10px;
        line-height: inherit;
    }
    .client-speak-slider .slick-slide, .case-studies-slider .slick-slide
    {
        margin: 0 5px;
    }
    .client-speak-slider .slick-list, .case-studies-slider .slick-list
    {
        margin: 0 -5px;
    }
    .box
    {
        padding: 0 15px;
        padding-bottom: 40px;
    }
    .case-studies-slider .item .primary-btn
    {
        transform: translateY(-30px);
        mix-blend-mode: normal;
    }
    .box .case-studues-img
    {
        margin-bottom: 10px;
        height: 70px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .box h3
    {
        font-size: 16px;
    }
    .think-about
    {
        text-align: center;
        padding-bottom: 100px;
    }
    .think-about .small-line
    {
        margin: auto;
    }
    .think-about ul li
    {
        font-size: 14px;
        text-align: left;
        padding-left: 20px;
    }
    .think-about ul li::after
    {
        top: 10px;
        width: 12px;
        height: 12px;
        background-repeat: no-repeat;
        background-size: 12px;
    }
    .think-about .think-about-img
    {
        margin-top: 25px;
    }
    .interest h2
    {
        font-size: 18px;
        font-weight: normal;
    }
    .flex-box
    {
        gap: 6px;
    }
    .flex-box h5
    {
        font-size: 14px;
    }
    .interest
    {
        margin-bottom: 25px;
    }
    .who-we-are
    {
        text-align: center;
    }
    .who-we-are .small-line
    {
        margin: auto;
        margin-bottom: 10px;
    }
    .content-box h3
    {
        font-size: 20px;
    }
    .icon-box
    {
        width: 80px;
        height: 80px;
        padding: 13px;
    }
    .content-box::after, .direction-r .content-box::after
    {
        right: 46.9%;
    }
    .faq-item h4
    {
        font-size: 14px;
        line-height: 18px;
    }
    .faq-item
    {
        border-radius: 4px;
        padding: 10px 10px;
        margin-bottom: 10px;
    }
    .faq-item:after
    {
        height: 10px;
        width: 10px;
        right: 10px;
        top: 12px;
    }
    .blog-big .blog-content h3
    {
        font-size: 18px;
        margin-bottom: 4px;
    }
    .date
    {
        font-size: 12px;
        padding-inline: 6px;
        padding-block: 2px;
        margin-bottom: 4px;
    }
    .blog-big .blog-content
    {
        padding: 10px;
    }
    .blog-list .date
    {
        font-size: 12px;
        margin: 0;
    }
    .blog-list h4
    {
        font-size: 14px;
    }
    .blog-content
    {
        padding-bottom: 8px;
    }
    .blog-list
    {
        margin-bottom: 12px;
    }
    label
    {
        font-size: 14px;
    }
    footer p
    {
        font-size: 14px;
    }
    footer ul li a
    {
        font-size: 14px;
    }
    footer
    {
        text-align: center;
        padding-bottom: 80px;
    }
    footer h4
    {
        font-size: 20px;
    }
    .copyright p
    {
        font-size: 14px;
    }
    .enq-btn
    {
        top: 20%;
        right: 5px;
        height: 30px;
        display: flex;
        align-items: center;
    }
    .enq-btn a
    {
        font-size: 14px;
        padding: 0 13px;
    }
    .enq-btn a img
    {
        transform: rotate(90deg) translateX(4px) translateY(4px);
        width: 18px;
    }
    .fixed-btn
    {
        position: fixed;
        top: 51%;
        right: 4px;
        width: 32px;
        gap: 8px;
    }
}
.fixed_whatsapp
{
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    position: fixed;
    bottom: 10px;
    right: 0;
    z-index: 1000;
}
.fixed_whatsapp img
{
    width: 65px;
    height: auto;
}
.zoom
{
    animation: zoom-in-zoom-out 2s ease-out infinite;
}
@keyframes zoom-in-zoom-out
{
    0%
    {
        transform: scale(.9,.9);
    }
    50%
    {
        transform: scale(1.02,1.02);
    }
    100%
    {
        transform: scale(.9,.9);
    }
}
@media(max-width: 767px)
{
    .fixed_whatsapp
    {
        bottom: 10%;
    }
    .fixed_whatsapp img
    {
        width: 50px;
        height: auto;
    }
    .navMenu
    {
        width: 100%;
    }
    .navMenu ul li a
    {
        padding: 2px 0;
        font-size: 18px;
    }
}