@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

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

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1.4;
    font-size: 16px;
    font-weight: 400;
    color: #F5F5F5;
    background-color: #110C00;
    font-family: "Manrope", sans-serif;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

a {
    text-decoration: none;
    color: rgba(255, 255, 255, 60%);
    transition: all 0.4s ease-in-out;
}

a:hover {
    color: #FBB915;
}

button {
    cursor: pointer;
    opacity: 1;
}

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

p {
    font-size: 16px;
    line-height: 1.6;
    font-weight: 400;
    color: #DFDFDF;
    margin-bottom: 10px;
    font-family: "DM Sans", sans-serif;

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

*:focus {
    outline: none;
}

.wrapper {
    display: block;
    width: 100%;
    min-height: 100vh;
    position: relative;
}

.container {
    max-width: 1500px;
    padding: 0 30px;
}

.container-fluid {
    padding: 0 70px;
}

.sec-head {
    display: block;
    position: relative;
    margin-bottom: 60px;
}

.sec-title {
    background: linear-gradient(90deg, #FBB915 0%, #FFD263 100%);
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 54px;
    line-height: 1.3;
}

.sec-sub-title {
    color: #FBB915;
    font-weight: 300;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 1.28px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 20px;
}

.sec-head p {
    color: #fff;
    font-size: 20px;
    font-weight: 300;
    line-height: 1.3;
    display: block;
    margin-top: 20px;
}

.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    text-transform: capitalize;
    border-radius: 50px;
    overflow: hidden;
    border: none;
    transition: all 0.4s ease-in-out;
    padding: 20px 40px;
}

.btn.btn-outline {
    background-color: rgba(251, 185, 21, 0.2);
    border: 1px solid #FBB915;
    color: #FBB915;
}

.btn.btn-primary {
    background-color: #FBB915;
    border: 1px solid #FBB915;
    color: #000;
}

.btn.btn-primary:hover {
    background-color: rgba(251, 185, 21, 0.2);
    color: #FBB915;
}

.btn.btn-outline:hover {
    background-color: #FBB915;
    color: #000;
}

.common-sec {
    padding-top: 150px;
    padding-bottom: 150px;
}

.slick-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
    position: relative !important;
    bottom: 0 !important;
}

.slick-dots li button {
    width: 20px;
    height: 3px;
    font-size: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    border: none;
    cursor: pointer;
    opacity: 1;
    transition: 0.4s all ease-in-out;
    display: inline-block;
}

.slick-dots li.slick-active button,
.slick-dots li button:hover {
    width: 80px;
    background: #FBB915;
    border-radius: 10px;
    height: 3px;
}

/* mask icon */

.icon {
    display: inline-block;
    height: 16px;
    width: 16px;
    mask-position: center;
    mask-repeat: no-repeat;
    mask-size: contain;
    background-color: currentColor;
    transition: all 0.4s ease-in-out;
}

.icon-call {
    mask-image: url(../img/svg/call.svg);
}

.icon-close {
    mask-image: url(../img/svg/close.svg);
}

.icon-secure {
    mask-image: url(../img/svg/secure.svg);
}

/* mask icon */

/* header */

.header {
    padding: 40px 0 0;
    width: 100%;
    left: 0;
    z-index: 1;
}

.home .header,
.page-template-home .header {
    position: absolute;
    padding: 40px 0;
}

.site-logo {
    display: block;
    max-width: 200px;
}

.site-logo img {
    width: 100%;
    height: auto;
}

.sidebar-overlay {
    visibility: hidden;
    min-height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    background: #000;
    z-index: 998;
}

.mb-menu-logo {
    display: none;
}

.sticky-logo {
    width: 0;
    height: 54px;
    overflow: hidden;
    -moz-transition: .4s cubic-bezier(0, 0, 0, 1);
    -o-transition: .4s cubic-bezier(0, 0, 0, 1);
    -webkit-transition: .4s cubic-bezier(0, 0, 0, 1);
    transition: .4s cubic-bezier(0, 0, 0, 1);
    left: -100%;
    position: relative;
    opacity: 0;
}

.header .call-icon {
    background-color: #FBB915;
    width: 0;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out
}

.header .call-icon .icon {
    background-color: #000;
    width: 20px;
    height: 20px;
    animation: innerCircle 1s ease-in-out infinite alternate;
    -webkit-animation: innerCircle 1s ease-in-out infinite alternate;
}

.header-main {
    background-color: #fff;
    border-radius: 50px;
    padding: 3px 30px;
    width: max-content;
    margin: auto;
    overflow: hidden;
}

.navigation-bar .nav-menu-main ul {
    display: flex;
}

.navigation-bar .nav-menu-main>ul>li {
    padding: 0 10px;
}

.navigation-bar .nav-menu-main>ul>li>a {
    color: #000;
    font-weight: 500;
    font-size: 16px;
    line-height: 1;
    display: block;
    padding: 10px;
    transition: all 0.4s ease-in-out;
}

.navigation-bar .nav-menu-main>ul>li a:hover,
.navigation-bar .nav-menu-main>ul>li a.active {
    color: #FBB915;
}

.header-btn .btn {
    padding: 17px 40px;
}

.header-btn .btn .icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    animation: innerCircle 1s ease-in-out infinite alternate;
    -webkit-animation: innerCircle 1s ease-in-out infinite alternate;
}

@keyframes innerCircle {

    0% {
        -webkit-transform: rotate(0) skew(1deg)
    }

    10% {
        -webkit-transform: rotate(-25deg) scale(1) skew(1deg)
    }

    20% {
        -webkit-transform: rotate(25deg) scale(1) skew(1deg)
    }

    30% {
        -webkit-transform: rotate(-25deg) scale(1) skew(1deg)
    }

    40% {
        -webkit-transform: rotate(25deg) scale(1) skew(1deg)
    }

    50% {
        -webkit-transform: rotate(0) scale(1) skew(1deg)
    }

    100% {
        -webkit-transform: rotate(0) scale(1) skew(1deg)
    }

}

.header.has-sticky {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999;
    padding: 15px 0;
}

.header.has-sticky .header-main {
    box-shadow: 0 19px 16px -24px rgba(0, 0, 0, .5);
    flex-shrink: 0;
    overflow: hidden;
    backdrop-filter: blur(50px);
    padding: 3px 7px 3px 15px;
}

.header.has-sticky .site-logo,
.header.has-sticky .header-btn {
    display: none;
}

.header.has-sticky .sticky-logo {
    width: 40px;
    margin: 0 25px 0 0;
    flex-shrink: 0;
    left: 0;
    -moz-transition: .6s cubic-bezier(0, 0, .2, 1);
    -o-transition: .6s cubic-bezier(0, 0, .2, 1);
    -webkit-transition: .6s cubic-bezier(0, 0, .2, 1);
    transition: .6s cubic-bezier(0, 0, .2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.header.has-sticky .call-icon {
    width: 50px;
    margin-left: 25px;
}

.menu-icon {
    display: none;
    position: relative;
    padding: 0;
    margin-top: 0;
    margin-left: 15px;
    color: #fff;
    width: 30px;
    height: 30px;
}

.menu-icon span {
    display: block;
    width: 20px;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    height: 2px;
    background: #fff;
    margin: auto;
    left: 0;
}

.menu-icon span:before {
    content: "";
    width: 25px;
    position: absolute;
    top: -8px;
    right: 0;
    height: 2px;
    background: currentColor
}

.menu-icon span:after {
    content: "";
    width: 25px;
    position: absolute;
    bottom: -8px;
    right: 0;
    height: 2px;
    background: currentColor
}

.body-fixed {
    overflow: hidden;
}

/* header */

.hero-sec {
    position: relative;
    min-height: 850px;
    height: 100vh;
    width: 100%;
}

.hero-silde,
.hero-img,
.hero-sec .slick-list,
.hero-sec .slick-slide>div,
.hero-sec .slick-track,
.hero-con,
.hero-silder {
    width: 100%;
    height: 100%;
    display: block;
}

.hero-banner-img,
.hero-banner-img-box {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-banner-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}


.hero-banner-img-box::before {
    content: '';
    position: absolute;
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.hero-sec .slick-dots {
    position: absolute !important;
    bottom: 47px !important;
    left: 0;
    right: 0;
    margin: auto !important;
}

.popup-close {
    display: none;
}

.hero-sec .slick-dots li.slick-active button,
.hero-sec .slick-dots li button:hover {
    background-color: #fff;
}

.hero-sec .hero-banner-con {
    height: 100vh;
    position: absolute;
    top: inherit;
    bottom: 120px;
    width: 100%;
    display: flex;
    justify-content: end;
    flex-direction: column;
}

.hero-banner-con .container {
    position: relative;
}

.banner-title {
    color: #fff;
    font-weight: 300;
    font-size: 70px;
    line-height: 1.1;
    display: block;
    margin-bottom: 30px;
}

.hero-sec .banner-desc {
    color: #F5F5F5;
    max-width: 800px;
    margin-bottom: 50px;
}

.hero-banner-con .free-upgrade-form {
    background-color: rgba(255, 255, 255, 0.85);
    max-width: 440px;
}

.hero-banner-con .free-upgrade-form .form-title {
    margin-bottom: 25px;
}

.hero-banner-con .free-upgrade-form .form-group {
    margin-bottom: 32px;
}

.form-group.mb-18,
.hero-banner-con .free-upgrade-form .form-group.mb-18 {
    margin-bottom: 18px;
}

.our-service-list {
    background-color: #201702;
    border-radius: 30px 0 30px 0;
    overflow: hidden;
}

.our-service-list .row {
    --bs-gutter-x: 0;
}

.our-service-list .row:nth-child(even) {
    flex-direction: row-reverse;
}

.our-service-list .img-box {
    width: 100%;
    height: 100%;
}

.our-service-list .img-box img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
}

.our-service-list .content-box {
    padding: 40px;
}

.our-service-title {
    color: #FBB915;
    font-weight: 700;
    font-size: 32px;
    line-height: 1.2;
    display: block;
    margin-bottom: 20px;
}

.our-service-list .cms-con p {
    margin-bottom: 30px;
}

.our-service-list .cms-con {
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid #503A05;
}

.veu-program-text {
    display: flex;
    align-items: center;
    color: #FBB915;
    font-weight: 600;
    font-size: 20px;
    line-height: 1;
}

.veu-program-text .icon {
    width: 20px;
    height: 20px;
    margin-right: 6px;
}

.commercial-premise-top .cms-con {
    max-width: 690px;
    margin-left: auto;
}

.commercial-premise-top .cms-con p {
    color: #F5F5F5;
}

.commercial-premise-top {
    margin-bottom: 70px;
}

.commercial-premise-con .row {
    --bs-gutter-x: 40px;
}

.commercial-premise-con .img-box {
    width: 100%;
    overflow: hidden;
    border-radius: 16px;
}

.commercial-premise-con .img-box img {
    width: 100%;
    aspect-ratio: 1 / 0.9;
    object-fit: cover;
}

.commercial-premise-con ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    gap: 20px;
    margin-bottom: 40px;
}

.commercial-premise-con ul li {
    width: calc(50% - 10px);
    display: flex;
    align-items: center;
    background-color: transparent;
    border: 1px solid #4A3500;
    border-radius: 8px;
    padding: 17px 24px;
    column-gap: 12px;
    color: #fff;
    font-weight: 500;
    font-size: 18px;
    line-height: 1;
    height: 100%;

}

.commercial-premise-con ul li img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.serving-business {
    background-color: #201702;
    border-radius: 8px;
    padding: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.serving-business-title {
    color: #fff;
    font-weight: 400;
    font-size: 24px;
    line-height: 1.4;
    text-align: right;
    padding-right: 39px;
    margin-right: 60px;
    padding-top: 20px;
    padding-bottom: 20px;
    width: 40%;
    border-right: 1px solid #4A3500;
}

.serving-business .img-box {
    width: 30%;
}

.serving-business .img-box img {
    width: 100%;
    max-width: 154px;
    aspect-ratio: inherit;
    height: 100%;
    object-fit: contain;
}

.how-it-work-line {
    position: relative;
}

.how-it-work-line::before {
    content: "";
    background: linear-gradient(90deg, #201702 0%, #B6840B 100%);
    width: 80%;
    height: 1px;
    display: block;
    top: 40px;
    position: absolute;
    left: 10%;
}

.how-it-work-sec .row {
    --bs-gutter-x: 40px;
}

.how-it-work-list .img-box {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #201702;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 40px;
    position: relative;
}

.how-it-work-list .img-box img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.how-work-title {
    text-align: center;
    display: block;
    color: #fff;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.1;
    margin-bottom: 30px;
}

.how-it-work-list .content-box p {
    text-align: center;
    font-size: 16px;
    max-width: 282px;
    margin: auto;
}