:root {
    --bs-yellow: #eda800;
    --bs-yellow-rgb: 237, 168, 0;

    --bs-white: #ffffff;
    --bs-white-rgb: 255, 255, 255;

    --bs-white100: #fbfbfb;
    --bs-white100-rgb: 251, 251, 251;

    --bs-white200: #e5e5e5;
    --bs-white200-rgb: 229, 229, 229;

    --bs-dark: #1C1C1C;
    --bs-dark-rgb: 28, 28, 28;

    --bs-lightdark: #4d4d4d;
    --bs-lightdark-rgb: 77, 77, 77;

    --bs-font-inter: "Inter";
    --fs-12: 12px;
    --fs-14: 14px;
    --fs-16: 16px;
    --fs-18: 18px;
    --fs-20: 20px;
    --fs-22: 22px;
    --fs-24: 24px;
    --fs-28: 28px;
    --fs-32: 32px;
    --fs-42: 42px;
    --fs-48: 48px;
    --fs-54: 54px;
    --fs-64: 64px;
}

/* Common Start */

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

/* ===== Scrollbar CSS ===== */
*::-webkit-scrollbar-track {
    background-color: rgba(255, 255, 255, 0);
}

*::-webkit-scrollbar {
    width: 3px;
    background-color: rgba(255, 255, 255, 0);
}

*::-webkit-scrollbar-thumb {
    background-color: var(--bs-yellow);
}

@media (max-width: 991px) {
    img {
        image-rendering: pixelated;
        transform: translateZ(0);
        will-change: transform;
    }
}

svg {
    display: block;
}

.clearfix::after {
    display: block;
    clear: both;
    content: "";
}

.clearfix:after,
.clearfix:before {
    content: "";
    display: table;
}

.clearfix:after {
    clear: both;
}

html {
    scroll-behavior: smooth !important;
}

* {
    user-select: none;
    -webkit-user-select: none;
    /* Safari ke liye */
    -ms-user-select: none;
}

html,
body {
    overflow-x: hidden;
    overscroll-behavior: none;
}

body {
    display: block;
    position: relative;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    width: 100%;
    font-family: var(--bs-font-inter);
    font-weight: 400;
    font-size: var(--fs-16);
    line-height: 160%;
    color: var(--bs-dark);
}

html.modal-open,
html.menu-open {
    overflow: hidden;
}

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;
    vertical-align: baseline;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-style: normal;
    margin: 0;
    padding: 0;
}

ul,
ul li {
    list-style: none;
}

a,
button,
input,
textarea,
select,
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: none !important;
    box-shadow: none !important;
    text-decoration: none;
}

a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
    border: 1px dotted rgba(var(--bs-yellow-rgb), 0.7) !important;
}

input,
input:focus,
.form-control:focus,
.btn.focus,
.btn:focus {
    outline: none;
    box-shadow: none;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
    appearance: textfield;
}

.object-fit {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

p,
b,
strong,
span,
i,
sub,
sup {
    color: inherit;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    color: inherit;
}

.h1,
h1 {
    font-size: var(--fs-64);
    line-height: 130%;
}

.h2,
h2 {
    font-size: var(--fs-48);
    line-height: 130%;
}

.h3,
h3 {
    font-size: var(--fs-42);
    line-height: 130%;
}

.h4,
h4 {
    font-size: var(--fs-32);
    line-height: 130%;
}

.h5,
h5 {
    font-size: var(--fs-28);
    line-height: 130%;
}

.h6,
h6 {
    font-size: var(--fs-24);
    line-height: 130%;
}

@media (max-width: 1023px) {

    .h1,
    h1 {
        font-size: var(--fs-42);
        line-height: 130%;
    }

    .h2,
    h2 {
        font-size: var(--fs-32);
        line-height: 130%;
    }

    .h3,
    h3 {
        font-size: var(--fs-28);
        line-height: 130%;
    }

    .h4,
    h4 {
        font-size: var(--fs-24);
        line-height: 130%;
    }

    .h5,
    h5 {
        font-size: var(--fs-20);
        line-height: 130%;
    }

    .h6,
    h6 {
        font-size: var(--fs-18);
        line-height: 130%;
    }
}

.bg-dark {
    background-color: var(--bs-dark) !important;
}

.bg-white {
    background-color: var(--bs-white) !important;
}

.bg-white100 {
    background-color: var(--bs-white100) !important;
}

.bg-white200 {
    background-color: var(--bs-white200) !important;
}

.bg-yellow {
    background-color: var(--bs-yellow) !important;
}

.bg-sliding-line-dark {
    background-image: linear-gradient(135deg, transparent 45%, #464646 45%, #464646 55%, transparent 0);
    background-size: 5px 5px;
}

.atl-inter {
    font-family: var(--bs-font-inter) !important;
}

.text-dark {
    color: var(--bs-dark) !important;
}

.text-lightdark {
    color: var(--bs-lightdark) !important;
}

.text-white {
    color: var(--bs-white) !important;
}

.text-white100 {
    color: var(--bs-white100) !important;
}

.text-white200 {
    color: var(--bs-white200) !important;
}

.text-yellow {
    color: var(--bs-yellow) !important;
}

.fw-200 {
    font-weight: 200;
}

.fw-300 {
    font-weight: 400;
}

.fw-400 {
    font-weight: 400;
}

.fw-500 {
    font-weight: 500;
}

.fw-600 {
    font-weight: 600;
}

.fw-700 {
    font-weight: 700;
}

.fs-110 {
    font-size: 6.875rem;
    line-height: 6.875rem;
}

.fs-40 {
    font-size: 2.5rem;
}

.fs-32 {
    font-size: 2rem;
}

.fs-24 {
    font-size: 1.5rem;
}

.fs-18 {
    font-size: var(--fs-18);
}

.fs-16 {
    font-size: var(--fs-16);
}

.lh-32 {
    line-height: 2rem;
}

.separator-line-1px {
    height: 1px;
}

.bg-extra-medium-gray {
    background-color: #e4e4e4;
}

.w-80 {
    width: 80% !important;
}

.w-250 {
    width: 250px;
}

.h-250 {
    height: 250px;
}

.max-width-30 {
    width: 100%;
    max-width: 30rem;
}

.max-width-50 {
    width: 100%;
    max-width: 50rem;
}

.title,
.subtitle {
    display: block;
    position: relative;
    margin: 0;
    padding: 0;
}

.title::first-letter {
    text-transform: uppercase;
}

.title-white h1,
.title-white h2,
.title-white h3,
.title-white h4,
.title-white h5,
.title-white h6 {
    color: var(--bs-white);
}

.title-white100 h1,
.title-white100 h2,
.title-white100 h3,
.title-white100 h4,
.title-white100 h5,
.title-white100 h6 {
    color: var(--bs-white100);
}

.title-yellow h1,
.title-yellow h2,
.title-yellow h3,
.title-yellow h4,
.title-yellow h5,
.title-yellow h6 {
    color: var(--bs-yellow);
}

.title sup {
    top: -.4em;
}

.title-dark h1,
.title-dark h2,
.title-dark h3,
.title-dark h4,
.title-dark h5,
.title-dark h6 {
    color: var(--bs-dark);
}

.title-yellow h1,
.title-yellow h2,
.title-yellow h3,
.title-yellow h4,
.title-yellow h5,
.title-yellow h6 {
    color: var(--bs-yellow);
}

.title-700 h1,
.title-700 h2,
.title-700 h3,
.title-700 h4,
.title-700 h5,
.title-700 h6 {
    font-weight: 700;
}

.title-600 h1,
.title-600 h2,
.title-600 h3,
.title-600 h4,
.title-600 h5,
.title-600 h6 {
    font-weight: 600;
}

.title-500 h1,
.title-500 h2,
.title-500 h3,
.title-500 h4,
.title-500 h5,
.title-500 h6 {
    font-weight: 500;
}

.title-400 h1,
.title-400 h2,
.title-400 h3,
.title-400 h4,
.title-400 h5,
.title-400 h6 {
    font-weight: 400;
}

.title-300 h1,
.title-300 h2,
.title-300 h3,
.title-300 h4,
.title-300 h5,
.title-300 h6 {
    font-weight: 400;
}

.content:last-child {
    margin-bottom: 0;
}

.content p {
    display: block;
    color: var(--bs-lightdark);
    font-family: var(--bs-font-inter);
    font-size: var(--fs-16);
    font-style: normal;
    font-weight: 400;
    font-stretch: normal;
    line-height: 160%;
    margin: 0 0 20px;
    padding: 0;
}

.content p b,
.content b {
    color: var(--bs-yellow);
    font-weight: 600;
}

.content.white a {
    color: var(--bs-white100);
    text-decoration: underline;
    font-weight: 600;
    transition-delay: .15s;
    transition-duration: .15s;
    transition-timing-function: linear;
}

.content a {
    color: var(--bs-dark);
    text-decoration: underline;
    font-weight: 600;
    transition-delay: .15s;
    transition-duration: .15s;
    transition-timing-function: linear;
}

.content a:hover {
    opacity: 1;
    color: var(--bs-yellow);
}

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

.content.white p {
    color: var(--bs-white);
}

.content.white100 p {
    color: var(--bs-white100);
}

.content.white200 p {
    color: var(--bs-white200);
}

.dark {
    color: var(--bs-dark);
}

.content.dark p,
.content .dark p,
.content .dark ul li {
    color: var(--bs-dark);
}

.content.lightdark p,
.content .lightdark p,
.content .lightdark ul li {
    color: var(--bs-lightdark);
}

.lightdark * {
    color: var(--bs-lightdark);
}

.small p {
    font-size: var(--fs-14);
}

.global-list ul {
    list-style: none;
    margin: 0 0 40px;
    padding: 0 0 0 20px;
    display: flex;
    flex-flow: wrap;
    width: 100%;
    gap: 20px;
}

@media (max-width: 767px) {
    .global-list ul {
        padding-left: 10px;
    }
}

.global-list ul:last-child {
    margin-bottom: 0;
}

.global-list ul li {
    position: relative;
    display: flex;
    flex-flow: wrap;
    width: 100%;
    align-items: start;
    justify-content: start;
    margin: 0;
    padding: 0 0 0 25px;
    white-space: normal;
    word-break: break-word;
    color: var(--bs-lightdark);
    font-family: var(--bs-font-inter);
    font-size: var(--fs-16);
    font-style: normal;
    font-weight: 400;
    font-stretch: normal;
    line-height: 160%;
}

.global-list ul li:before {
    content: "";
    position: absolute;
    top: 6px;
    left: 0;
    width: 12px;
    height: 12px;
    background-image: url(../images/ring.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.global-list ul li img {
    margin: 7px 0 0;
}

.global-list.white li {
    color: var(--bs-white);
}
.global-list.white100 li {
    color: var(--bs-white100);
}

.global-list.white200 li {
    color: var(--bs-white200);
}


@media screen and (min-width: 1024px) {
    .big p {
        font-size: var(--fs-24);
        line-height: 150%;
        font-weight: 400;
    }
}

.btn {
    border-radius: 5px;
    border-style: solid;
    border-width: 0;
    display: inline-block;
    font-family: var(--bs-font-inter);
    font-size: var(--fs-16);
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    text-align: center;
    outline: none;
    box-shadow: none;
}

.btn-inline {
    display: flex;
    flex-flow: wrap;
    align-items: center;
    justify-content: center;
    column-gap: 5px;
}

.btn-white100 {
    background-color: var(--bs-white100);
    color: var(--bs-dark);
    overflow: hidden;
    padding: 12px 20px;
    position: relative;
    text-transform: capitalize;
    transition-delay: .15s;
    transition-duration: .15s;
    transition-timing-function: linear;
    z-index: 1;
}

.btn-white100:focus,
.btn-white100:active,
.btn-white100:hover {
    background-color: var(--bs-yellow);
    color: var(--bs-dark);
}

.btn:first-child:active,
.btn-link,
.btn-link:focus,
.btn-link:active {
    text-align: left;
    display: inline-flex;
    flex-flow: wrap;
    padding: 0;
    margin: 0 auto;
    align-items: center;
    color: var(--bs-yellow);
    font-size: var(--fs-24);
    line-height: 120%;
    font-weight: 500;
    overflow: hidden;
    position: relative;
    transition-property: all;
    transition-delay: 150ms;
    transition-duration: 300ms;
    transition-timing-function: linear;
    text-decoration: none;
    outline: none;
    box-shadow: none;
    gap: 10px;
}

.btn-link span {
    width: fit-content;
    max-width: calc(100% - 40px);
}

.btn-link.lowercase {
    text-transform: lowercase;
}

@media (max-width: 767px) {

    .btn-link,
    .btn-link:focus,
    .btn-link:active {
        font-size: var(--fs-18);
    }
}

.btn-link:hover {
    color: var(--bs-yellow);
    transition-property: all;
    transition-delay: 150ms;
    transition-duration: 300ms;
    transition-timing-function: linear;
}

.btn-link svg {
    display: block;
    width: var(--fs-24);
    height: var(--fs-24);
    stroke: var(--bs-yellow);
    transform: rotate(-45deg);
    transition-delay: .15s;
    transition-duration: .15s;
    transition-timing-function: linear;
}

.btn-link:hover svg,
.btn-link:focus svg {
    transform: rotate(0deg);
}

.btn:hover .yellow svg,
.btn:focus .yellow svg {
    stroke: var(--bs-dark);
}

.wb {
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 20px;
}

.btn .arrow {
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    position: relative;
    overflow: hidden;
    border-radius: 100%;
    transition-delay: .15s;
    transition-duration: .15s;
    transition-timing-function: linear;
    z-index: 1;
}

.btn .arrow .circle-ani {
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    transform-origin: center;
    border-radius: 100%;
    transform: scale(0, 0);
    transition-duration: 300ms;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
    transition-timing-function: cubic-bezier(.215, .61, .355, 1);
    z-index: -1;
}

.btn .yellow .circle-ani {
    background-color: var(--bs-yellow);
}

.btn:hover .arrow .circle-ani,
.btn:focus .arrow .circle-ani {
    height: 100%;
    width: 100%;
    transform: scale(1, 1);
    transition-delay: 300ms;
}

.img img {
    display: block;
}

.global-content .content p {
    margin-bottom: 40px;
}

.global-content .content p:last-child {
    margin-bottom: 0;
}

.z-0 {
    z-index: 0;
}

.z-1 {
    z-index: 1;
}

.z-2 {
    z-index: 2;
}

@media (max-width: 767px) {
    br {
        display: none;
    }
}

/* Common End */

/* container fluid Start */
.container {
    position: relative;
    z-index: 2;
}

@media screen and (min-width:768px) {
    .container-fluid {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

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

    .container,
    .container-fluid {
        padding-left: 25px;
        padding-right: 25px;
    }

    .row {
        margin-right: -25px;
        margin-left: -25px;
    }

    .row>* {
        padding-left: 25px;
        padding-right: 25px;
    }
}

.row-gap-20 {
    row-gap: 20px;
}

.row-gap-30 {
    row-gap: 30px;
}

.row-gap-40 {
    row-gap: 40px;
}

.row-gap-50 {
    row-gap: 50px;
}

.row-gap-60 {
    row-gap: 60px;
}

.row-gap-70 {
    row-gap: 70px;
}

.row-gap-80 {
    row-gap: 80px;
}

/* container fluid Start */

/* responsive margin Start */
.ml-auto {
    margin-left: auto;
}

.ml-0 {
    margin-left: 0
}

.ml-5 {
    margin-left: 5px
}

.ml-10 {
    margin-left: 10px
}

.ml-15 {
    margin-left: 15px
}

.ml-20 {
    margin-left: 20px
}

.ml-25 {
    margin-left: 25px
}

.ml-30 {
    margin-left: 30px
}

.ml-35 {
    margin-left: 35px
}

.ml-40 {
    margin-left: 40px
}

.ml-45 {
    margin-left: 45px
}

.ml-50 {
    margin-left: 50px
}

.ml-55 {
    margin-left: 55px
}

.ml-60 {
    margin-left: 60px
}

.mr-auto {
    margin-right: auto;
}

.mr-0 {
    margin-right: 0
}

.mr-5 {
    margin-right: 5px
}

.mr-10 {
    margin-right: 10px
}

.mr-15 {
    margin-right: 15px
}

.mr-20 {
    margin-right: 20px
}

.mr-25 {
    margin-right: 25px
}

.mr-30 {
    margin-right: 30px
}

.mr-35 {
    margin-right: 35px
}

.mr-40 {
    margin-right: 40px
}

.mr-45 {
    margin-right: 45px
}

.mr-50 {
    margin-right: 50px
}

.mr-55 {
    margin-right: 55px
}

.mr-60 {
    margin-right: 60px
}

.mt-0 {
    margin-top: 0
}

.mt-5 {
    margin-top: 5px
}

.mt-10 {
    margin-top: 10px
}

.mt-15 {
    margin-top: 15px
}

.mt-20 {
    margin-top: 20px
}

.mt-25 {
    margin-top: 25px
}

.mt-30 {
    margin-top: 30px
}

.mt-35 {
    margin-top: 35px
}

.mt-40 {
    margin-top: 40px
}

.mt-45 {
    margin-top: 45px
}

.mt-50 {
    margin-top: 50px
}

.mt-55 {
    margin-top: 55px
}

.mt-60 {
    margin-top: 60px
}

.mb-0 {
    margin-bottom: 0
}

.mb-5 {
    margin-bottom: 5px
}

.mb-10 {
    margin-bottom: 10px
}

.mb-15 {
    margin-bottom: 15px
}

.mb-20 {
    margin-bottom: 20px
}

.mb-25 {
    margin-bottom: 25px
}

.mb-30 {
    margin-bottom: 30px
}

.mb-35 {
    margin-bottom: 35px
}

.mb-40 {
    margin-bottom: 40px
}

.mb-45 {
    margin-bottom: 45px
}

.mb-50 {
    margin-bottom: 50px
}

.mb-55 {
    margin-bottom: 55px
}

.mb-60 {
    margin-bottom: 60px
}

@media screen and (max-width: 767px) {
    .m-0 {
        margin: 0
    }

    .m-5 {
        margin: 5px
    }

    .m-10 {
        margin: 10px
    }

    .m-15 {
        margin: 15px
    }

    .m-20 {
        margin: 20px
    }

    .m-25 {
        margin: 25px
    }

    .m-30 {
        margin: 30px
    }

    .m-35 {
        margin: 35px
    }

    .m-40 {
        margin: 40px
    }

    .m-45 {
        margin: 45px
    }

    .m-50 {
        margin: 50px
    }

    .m-55 {
        margin: 55px
    }

    .m-60 {
        margin: 60px
    }
}

@media screen and (min-width: 768px) {
    .m-md-0 {
        margin: 0
    }

    .m-md-5 {
        margin: 5px
    }

    .m-md-10 {
        margin: 10px
    }

    .m-md-15 {
        margin: 15px
    }

    .m-md-20 {
        margin: 20px
    }

    .m-md-25 {
        margin: 25px
    }

    .m-md-30 {
        margin: 30px
    }

    .m-md-35 {
        margin: 35px
    }

    .m-md-40 {
        margin: 40px
    }

    .m-md-45 {
        margin: 45px
    }

    .m-md-50 {
        margin: 50px
    }

    .m-md-55 {
        margin: 55px
    }

    .m-md-60 {
        margin: 60px
    }

    .m-md-65 {
        margin: 65px
    }

    .m-md-70 {
        margin: 70px
    }

    .m-md-75 {
        margin: 75px
    }

    .m-md-80 {
        margin: 80px
    }

    .m-md-85 {
        margin: 85px
    }

    .m-md-90 {
        margin: 90px
    }

    .m-md-95 {
        margin: 95px
    }

    .m-md-100 {
        margin: 100px
    }
}

@media screen and (min-width: 1024px) {
    .m-lg-0 {
        margin: 0
    }

    .m-lg-5 {
        margin: 5px
    }

    .m-lg-10 {
        margin: 10px
    }

    .m-lg-15 {
        margin: 15px
    }

    .m-lg-20 {
        margin: 20px
    }

    .m-lg-25 {
        margin: 25px
    }

    .m-lg-30 {
        margin: 30px
    }

    .m-lg-35 {
        margin: 35px
    }

    .m-lg-40 {
        margin: 40px
    }

    .m-lg-45 {
        margin: 45px
    }

    .m-lg-50 {
        margin: 50px
    }

    .m-lg-55 {
        margin: 55px
    }

    .m-lg-60 {
        margin: 60px
    }

    .m-lg-65 {
        margin: 65px
    }

    .m-lg-70 {
        margin: 70px
    }

    .m-lg-75 {
        margin: 75px
    }

    .m-lg-80 {
        margin: 80px
    }

    .m-lg-85 {
        margin: 85px
    }

    .m-lg-90 {
        margin: 90px
    }

    .m-lg-95 {
        margin: 95px
    }

    .m-lg-100 {
        margin: 100px
    }
}

@media screen and (max-width: 767px) {
    .mt-0 {
        margin-top: 0
    }

    .mt-5 {
        margin-top: 5px
    }

    .mt-10 {
        margin-top: 10px
    }

    .mt-15 {
        margin-top: 15px
    }

    .mt-20 {
        margin-top: 20px
    }

    .mt-25 {
        margin-top: 25px
    }

    .mt-30 {
        margin-top: 30px
    }

    .mt-35 {
        margin-top: 35px
    }

    .mt-40 {
        margin-top: 40px
    }

    .mt-45 {
        margin-top: 45px
    }

    .mt-50 {
        margin-top: 50px
    }

    .mt-55 {
        margin-top: 55px
    }

    .mt-60 {
        margin-top: 60px
    }
}

@media screen and (min-width: 768px) {
    .mt-md-0 {
        margin-top: 0
    }

    .mt-md-5 {
        margin-top: 5px
    }

    .mt-md-10 {
        margin-top: 10px
    }

    .mt-md-15 {
        margin-top: 15px
    }

    .mt-md-20 {
        margin-top: 20px
    }

    .mt-md-25 {
        margin-top: 25px
    }

    .mt-md-30 {
        margin-top: 30px
    }

    .mt-md-35 {
        margin-top: 35px
    }

    .mt-md-40 {
        margin-top: 40px
    }

    .mt-md-45 {
        margin-top: 45px
    }

    .mt-md-50 {
        margin-top: 50px
    }

    .mt-md-55 {
        margin-top: 55px
    }

    .mt-md-60 {
        margin-top: 60px
    }

    .mt-md-65 {
        margin-top: 65px
    }

    .mt-md-70 {
        margin-top: 70px
    }

    .mt-md-75 {
        margin-top: 75px
    }

    .mt-md-80 {
        margin-top: 80px
    }

    .mt-md-85 {
        margin-top: 85px
    }

    .mt-md-90 {
        margin-top: 90px
    }

    .mt-md-95 {
        margin-top: 95px
    }

    .mt-md-100 {
        margin-top: 100px
    }
}

@media screen and (min-width: 1024px) {
    .mt-lg-0 {
        margin-top: 0
    }

    .mt-lg-5 {
        margin-top: 5px
    }

    .mt-lg-10 {
        margin-top: 10px
    }

    .mt-lg-15 {
        margin-top: 15px
    }

    .mt-lg-20 {
        margin-top: 20px
    }

    .mt-lg-25 {
        margin-top: 25px
    }

    .mt-lg-30 {
        margin-top: 30px
    }

    .mt-lg-35 {
        margin-top: 35px
    }

    .mt-lg-40 {
        margin-top: 40px
    }

    .mt-lg-45 {
        margin-top: 45px
    }

    .mt-lg-50 {
        margin-top: 50px
    }

    .mt-lg-55 {
        margin-top: 55px
    }

    .mt-lg-60 {
        margin-top: 60px
    }

    .mt-lg-65 {
        margin-top: 65px
    }

    .mt-lg-70 {
        margin-top: 70px
    }

    .mt-lg-75 {
        margin-top: 75px
    }

    .mt-lg-80 {
        margin-top: 80px
    }

    .mt-lg-85 {
        margin-top: 85px
    }

    .mt-lg-90 {
        margin-top: 90px
    }

    .mt-lg-95 {
        margin-top: 95px
    }

    .mt-lg-100 {
        margin-top: 100px
    }
}

@media screen and (max-width: 767px) {
    .mb-0 {
        margin-bottom: 0
    }

    .mb-5 {
        margin-bottom: 5px !important
    }

    .mb-10 {
        margin-bottom: 10px !important
    }

    .mb-15 {
        margin-bottom: 15px
    }

    .mb-20 {
        margin-bottom: 20px
    }

    .mb-25 {
        margin-bottom: 25px
    }

    .mb-30 {
        margin-bottom: 30px
    }

    .mb-35 {
        margin-bottom: 35px
    }

    .mb-40 {
        margin-bottom: 40px
    }

    .mb-45 {
        margin-bottom: 45px
    }

    .mb-50 {
        margin-bottom: 50px
    }

    .mb-55 {
        margin-bottom: 55px
    }

    .mb-60 {
        margin-bottom: 60px
    }
}

@media screen and (min-width: 768px) {
    .mb-md-0 {
        margin-bottom: 0
    }

    .mb-md-5 {
        margin-bottom: 5px !important
    }

    .mb-md-10 {
        margin-bottom: 10px !important
    }

    .mb-md-15 {
        margin-bottom: 15px
    }

    .mb-md-20 {
        margin-bottom: 20px
    }

    .mb-md-25 {
        margin-bottom: 25px
    }

    .mb-md-30 {
        margin-bottom: 30px
    }

    .mb-md-35 {
        margin-bottom: 35px
    }

    .mb-md-40 {
        margin-bottom: 40px
    }

    .mb-md-45 {
        margin-bottom: 45px
    }

    .mb-md-50 {
        margin-bottom: 50px
    }

    .mb-md-55 {
        margin-bottom: 55px
    }

    .mb-md-60 {
        margin-bottom: 60px
    }

    .mb-md-65 {
        margin-bottom: 65px
    }

    .mb-md-70 {
        margin-bottom: 70px
    }

    .mb-md-75 {
        margin-bottom: 75px
    }

    .mb-md-80 {
        margin-bottom: 80px
    }

    .mb-md-85 {
        margin-bottom: 85px
    }

    .mb-md-90 {
        margin-bottom: 90px
    }

    .mb-md-95 {
        margin-bottom: 95px
    }

    .mb-md-100 {
        margin-bottom: 100px
    }
}

@media screen and (min-width: 1024px) {
    .mb-lg-0 {
        margin-bottom: 0
    }

    .mb-lg-5 {
        margin-bottom: 5px !important
    }

    .mb-lg-10 {
        margin-bottom: 10px !important
    }

    .mb-lg-15 {
        margin-bottom: 15px
    }

    .mb-lg-20 {
        margin-bottom: 20px
    }

    .mb-lg-25 {
        margin-bottom: 25px
    }

    .mb-lg-30 {
        margin-bottom: 30px
    }

    .mb-lg-35 {
        margin-bottom: 35px
    }

    .mb-lg-40 {
        margin-bottom: 40px
    }

    .mb-lg-45 {
        margin-bottom: 45px
    }

    .mb-lg-50 {
        margin-bottom: 50px
    }

    .mb-lg-55 {
        margin-bottom: 55px
    }

    .mb-lg-60 {
        margin-bottom: 60px
    }

    .mb-lg-65 {
        margin-bottom: 65px
    }

    .mb-lg-70 {
        margin-bottom: 70px
    }

    .mb-lg-75 {
        margin-bottom: 75px
    }

    .mb-lg-80 {
        margin-bottom: 80px
    }

    .mb-lg-85 {
        margin-bottom: 85px
    }

    .mb-lg-90 {
        margin-bottom: 90px
    }

    .mb-lg-95 {
        margin-bottom: 95px
    }

    .mb-lg-100 {
        margin-bottom: 100px
    }
}

@media screen and (max-width: 767px) {
    .ml-0 {
        margin-left: 0
    }

    .ml-5 {
        margin-left: 5px
    }

    .ml-10 {
        margin-left: 10px
    }

    .ml-15 {
        margin-left: 15px
    }

    .ml-20 {
        margin-left: 20px
    }

    .ml-25 {
        margin-left: 25px
    }

    .ml-30 {
        margin-left: 30px
    }

    .ml-35 {
        margin-left: 35px
    }

    .ml-40 {
        margin-left: 40px
    }

    .ml-45 {
        margin-left: 45px
    }

    .ml-50 {
        margin-left: 50px
    }

    .ml-55 {
        margin-left: 55px
    }

    .ml-60 {
        margin-left: 60px
    }
}

@media screen and (min-width: 768px) {
    .ml-md-0 {
        margin-left: 0
    }

    .ml-md-5 {
        margin-left: 5px
    }

    .ml-md-10 {
        margin-left: 10px
    }

    .ml-md-15 {
        margin-left: 15px
    }

    .ml-md-20 {
        margin-left: 20px
    }

    .ml-md-25 {
        margin-left: 25px
    }

    .ml-md-30 {
        margin-left: 30px
    }

    .ml-md-35 {
        margin-left: 35px
    }

    .ml-md-40 {
        margin-left: 40px
    }

    .ml-md-45 {
        margin-left: 45px
    }

    .ml-md-50 {
        margin-left: 50px
    }

    .ml-md-55 {
        margin-left: 55px
    }

    .ml-md-60 {
        margin-left: 60px
    }

    .ml-md-65 {
        margin-left: 65px
    }

    .ml-md-70 {
        margin-left: 70px
    }

    .ml-md-75 {
        margin-left: 75px
    }

    .ml-md-80 {
        margin-left: 80px
    }

    .ml-md-85 {
        margin-left: 85px
    }

    .ml-md-90 {
        margin-left: 90px
    }

    .ml-md-95 {
        margin-left: 95px
    }

    .ml-md-100 {
        margin-left: 100px
    }
}

@media screen and (min-width: 1024px) {
    .ml-lg-0 {
        margin-left: 0
    }

    .ml-lg-5 {
        margin-left: 5px
    }

    .ml-lg-10 {
        margin-left: 10px
    }

    .ml-lg-15 {
        margin-left: 15px
    }

    .ml-lg-20 {
        margin-left: 20px
    }

    .ml-lg-25 {
        margin-left: 25px
    }

    .ml-lg-30 {
        margin-left: 30px
    }

    .ml-lg-35 {
        margin-left: 35px
    }

    .ml-lg-40 {
        margin-left: 40px
    }

    .ml-lg-45 {
        margin-left: 45px
    }

    .ml-lg-50 {
        margin-left: 50px
    }

    .ml-lg-55 {
        margin-left: 55px
    }

    .ml-lg-60 {
        margin-left: 60px
    }

    .ml-lg-65 {
        margin-left: 65px
    }

    .ml-lg-70 {
        margin-left: 70px
    }

    .ml-lg-75 {
        margin-left: 75px
    }

    .ml-lg-80 {
        margin-left: 80px
    }

    .ml-lg-85 {
        margin-left: 85px
    }

    .ml-lg-90 {
        margin-left: 90px
    }

    .ml-lg-95 {
        margin-left: 95px
    }

    .ml-lg-100 {
        margin-left: 100px
    }
}

@media screen and (max-width: 767px) {
    .mr-0 {
        margin-right: 0
    }

    .mr-5 {
        margin-right: 5px
    }

    .mr-10 {
        margin-right: 10px
    }

    .mr-15 {
        margin-right: 15px
    }

    .mr-20 {
        margin-right: 20px
    }

    .mr-25 {
        margin-right: 25px
    }

    .mr-30 {
        margin-right: 30px
    }

    .mr-35 {
        margin-right: 35px
    }

    .mr-40 {
        margin-right: 40px
    }

    .mr-45 {
        margin-right: 45px
    }

    .mr-50 {
        margin-right: 50px
    }

    .mr-55 {
        margin-right: 55px
    }

    .mr-60 {
        margin-right: 60px
    }
}

@media screen and (min-width: 768px) {
    .mr-md-0 {
        margin-right: 0
    }

    .mr-md-5 {
        margin-right: 5px
    }

    .mr-md-10 {
        margin-right: 10px
    }

    .mr-md-15 {
        margin-right: 15px
    }

    .mr-md-20 {
        margin-right: 20px
    }

    .mr-md-25 {
        margin-right: 25px
    }

    .mr-md-30 {
        margin-right: 30px
    }

    .mr-md-35 {
        margin-right: 35px
    }

    .mr-md-40 {
        margin-right: 40px
    }

    .mr-md-45 {
        margin-right: 45px
    }

    .mr-md-50 {
        margin-right: 50px
    }

    .mr-md-55 {
        margin-right: 55px
    }

    .mr-md-60 {
        margin-right: 60px
    }

    .mr-md-65 {
        margin-right: 65px
    }

    .mr-md-70 {
        margin-right: 70px
    }

    .mr-md-75 {
        margin-right: 75px
    }

    .mr-md-80 {
        margin-right: 80px
    }

    .mr-md-85 {
        margin-right: 85px
    }

    .mr-md-90 {
        margin-right: 90px
    }

    .mr-md-95 {
        margin-right: 95px
    }

    .mr-md-100 {
        margin-right: 100px
    }
}

@media screen and (min-width: 1024px) {
    .mr-lg-0 {
        margin-right: 0
    }

    .mr-lg-5 {
        margin-right: 5px
    }

    .mr-lg-10 {
        margin-right: 10px
    }

    .mr-lg-15 {
        margin-right: 15px
    }

    .mr-lg-20 {
        margin-right: 20px
    }

    .mr-lg-25 {
        margin-right: 25px
    }

    .mr-lg-30 {
        margin-right: 30px
    }

    .mr-lg-35 {
        margin-right: 35px
    }

    .mr-lg-40 {
        margin-right: 40px
    }

    .mr-lg-45 {
        margin-right: 45px
    }

    .mr-lg-50 {
        margin-right: 50px
    }

    .mr-lg-55 {
        margin-right: 55px
    }

    .mr-lg-60 {
        margin-right: 60px
    }

    .mr-lg-65 {
        margin-right: 65px
    }

    .mr-lg-70 {
        margin-right: 70px
    }

    .mr-lg-75 {
        margin-right: 75px
    }

    .mr-lg-80 {
        margin-right: 80px
    }

    .mr-lg-85 {
        margin-right: 85px
    }

    .mr-lg-90 {
        margin-right: 90px
    }

    .mr-lg-95 {
        margin-right: 95px
    }

    .mr-lg-100 {
        margin-right: 100px
    }
}

/* responsive margin End */

/* responsive padding Start */
.pl-0 {
    padding-left: 0
}

.pl-5 {
    padding-left: 5px
}

.pl-10 {
    padding-left: 10px
}

.pl-15 {
    padding-left: 15px
}

.pl-20 {
    padding-left: 20px
}

.pl-25 {
    padding-left: 25px
}

.pl-30 {
    padding-left: 30px
}

.pl-35 {
    padding-left: 35px
}

.pl-40 {
    padding-left: 40px
}

.pl-45 {
    padding-left: 45px
}

.pl-50 {
    padding-left: 50px
}

.pl-55 {
    padding-left: 55px
}

.pl-60 {
    padding-left: 60px
}

.pr-0 {
    padding-right: 0
}

.pr-5 {
    padding-right: 5px
}

.pr-10 {
    padding-right: 10px
}

.pr-15 {
    padding-right: 15px
}

.pr-20 {
    padding-right: 20px
}

.pr-25 {
    padding-right: 25px
}

.pr-30 {
    padding-right: 30px
}

.pr-35 {
    padding-right: 35px
}

.pr-40 {
    padding-right: 40px
}

.pr-45 {
    padding-right: 45px
}

.pr-50 {
    padding-right: 50px
}

.pr-55 {
    padding-right: 55px
}

.pr-60 {
    padding-right: 60px
}

.pt-0 {
    padding-top: 0
}

.pt-5 {
    padding-top: 5px
}

.pt-10 {
    padding-top: 10px
}

.pt-15 {
    padding-top: 15px
}

.pt-20 {
    padding-top: 20px
}

.pt-25 {
    padding-top: 25px
}

.pt-30 {
    padding-top: 30px
}

.pt-35 {
    padding-top: 35px
}

.pt-40 {
    padding-top: 40px
}

.pt-45 {
    padding-top: 45px
}

.pt-50 {
    padding-top: 50px
}

.pt-55 {
    padding-top: 55px
}

.pt-60 {
    padding-top: 60px
}

.pt-70 {
    padding-top: 70px
}

.pt-80 {
    padding-top: 80px
}

.pb-0 {
    padding-bottom: 0
}

.pb-5 {
    padding-bottom: 5px
}

.pb-10 {
    padding-bottom: 10px
}

.pb-15 {
    padding-bottom: 15px
}

.pb-20 {
    padding-bottom: 20px
}

.pb-25 {
    padding-bottom: 25px
}

.pb-30 {
    padding-bottom: 30px
}

.pb-35 {
    padding-bottom: 35px
}

.pb-40 {
    padding-bottom: 40px
}

.pb-45 {
    padding-bottom: 45px
}

.pb-50 {
    padding-bottom: 50px
}

.pb-55 {
    padding-bottom: 55px
}

.pb-60 {
    padding-bottom: 60px
}

.pb-70 {
    padding-bottom: 70px
}

.pb-80 {
    padding-bottom: 80px
}

@media screen and (max-width: 767px) {
    .p-none {
        padding: 0
    }

    .p-5 {
        padding: 5px
    }

    .p-10 {
        padding: 10px
    }

    .p-15 {
        padding: 15px
    }

    .p-20 {
        padding: 20px
    }

    .p-25 {
        padding: 25px
    }

    .p-30 {
        padding: 30px
    }

    .p-35 {
        padding: 35px
    }

    .p-40 {
        padding: 40px
    }

    .p-45 {
        padding: 45px
    }

    .p-50 {
        padding: 50px
    }

    .p-55 {
        padding: 55px
    }

    .p-60 {
        padding: 60px
    }
}

@media screen and (min-width: 768px) {
    .p-md-0 {
        padding: 0
    }

    .p-md-5 {
        padding: 5px
    }

    .p-md-10 {
        padding: 10px
    }

    .p-md-15 {
        padding: 15px
    }

    .p-md-20 {
        padding: 20px
    }

    .p-md-25 {
        padding: 25px
    }

    .p-md-30 {
        padding: 30px
    }

    .p-md-35 {
        padding: 35px
    }

    .p-md-40 {
        padding: 40px
    }

    .p-md-45 {
        padding: 45px
    }

    .p-md-50 {
        padding: 50px
    }

    .p-md-55 {
        padding: 55px
    }

    .p-md-60 {
        padding: 60px
    }

    .p-md-65 {
        padding: 65px
    }

    .p-md-70 {
        padding: 70px
    }

    .p-md-75 {
        padding: 75px
    }

    .p-md-80 {
        padding: 80px
    }

    .p-md-85 {
        padding: 85px
    }

    .p-md-90 {
        padding: 90px
    }

    .p-md-95 {
        padding: 95px
    }

    .p-md-100 {
        padding: 100px
    }
}

@media screen and (min-width: 1024px) {
    .p-lg-0 {
        padding: 0
    }

    .p-lg-5 {
        padding: 5px
    }

    .p-lg-10 {
        padding: 10px
    }

    .p-lg-15 {
        padding: 15px
    }

    .p-lg-20 {
        padding: 20px
    }

    .p-lg-25 {
        padding: 25px
    }

    .p-lg-30 {
        padding: 30px
    }

    .p-lg-35 {
        padding: 35px
    }

    .p-lg-40 {
        padding: 40px
    }

    .p-lg-45 {
        padding: 45px
    }

    .p-lg-50 {
        padding: 50px
    }

    .p-lg-55 {
        padding: 55px
    }

    .p-lg-60 {
        padding: 60px
    }

    .p-lg-65 {
        padding: 65px
    }

    .p-lg-70 {
        padding: 70px
    }

    .p-lg-75 {
        padding: 75px
    }

    .p-lg-80 {
        padding: 80px
    }

    .p-lg-85 {
        padding: 85px
    }

    .p-lg-90 {
        padding: 90px
    }

    .p-lg-95 {
        padding: 95px
    }

    .p-lg-100 {
        padding: 100px
    }
}

@media screen and (max-width: 767px) {
    .py-5 {
        padding: 5px 0
    }

    .py-10 {
        padding: 10px 0
    }

    .py-15 {
        padding: 15px 0
    }

    .py-20 {
        padding: 20px 0
    }

    .py-25 {
        padding: 25px 0
    }

    .py-30 {
        padding: 30px 0
    }

    .py-35 {
        padding: 35px 0
    }

    .py-40 {
        padding: 40px 0
    }

    .py-45 {
        padding: 45px 0
    }

    .py-50 {
        padding: 50px 0
    }

    .py-55 {
        padding: 55px 0
    }

    .py-60 {
        padding: 60px 0
    }

    .py-65 {
        padding: 65px 0
    }

    .py-70 {
        padding: 70px 0
    }

    .py-75 {
        padding: 75px 0
    }

    .py-80 {
        padding: 80px 0
    }

    .py-85 {
        padding: 85px 0
    }

    .py-90 {
        padding: 90px 0
    }

    .py-95 {
        padding: 95px 0
    }

    .py-100 {
        padding: 100px 0
    }
}

@media screen and (min-width: 768px) {
    .py-md-5 {
        padding: 5px 0
    }

    .py-md-10 {
        padding: 10px 0
    }

    .py-md-15 {
        padding: 15px 0
    }

    .py-md-20 {
        padding: 20px 0
    }

    .py-md-25 {
        padding: 25px 0
    }

    .py-md-30 {
        padding: 30px 0
    }

    .py-md-35 {
        padding: 35px 0
    }

    .py-md-40 {
        padding: 40px 0
    }

    .py-md-45 {
        padding: 45px 0
    }

    .py-md-50 {
        padding: 50px 0
    }

    .py-md-55 {
        padding: 55px 0
    }

    .py-md-60 {
        padding: 60px 0
    }

    .py-md-65 {
        padding: 65px 0
    }

    .py-md-70 {
        padding: 70px 0
    }

    .py-md-75 {
        padding: 75px 0
    }

    .py-md-80 {
        padding: 80px 0
    }

    .py-md-85 {
        padding: 85px 0
    }

    .py-md-90 {
        padding: 90px 0
    }

    .py-md-95 {
        padding: 95px 0
    }

    .py-md-100 {
        padding: 100px 0
    }
}

@media screen and (min-width: 1024px) {
    .py-lg-5 {
        padding: 5px 0
    }

    .py-lg-10 {
        padding: 10px 0
    }

    .py-lg-15 {
        padding: 15px 0
    }

    .py-lg-20 {
        padding: 20px 0
    }

    .py-lg-25 {
        padding: 25px 0
    }

    .py-lg-30 {
        padding: 30px 0
    }

    .py-lg-35 {
        padding: 35px 0
    }

    .py-lg-40 {
        padding: 40px 0
    }

    .py-lg-45 {
        padding: 45px 0
    }

    .py-lg-50 {
        padding: 50px 0
    }

    .py-lg-55 {
        padding: 55px 0
    }

    .py-lg-60 {
        padding: 60px 0
    }

    .py-lg-65 {
        padding: 65px 0
    }

    .py-lg-70 {
        padding: 70px 0
    }

    .py-lg-75 {
        padding: 75px 0
    }

    .py-lg-80 {
        padding: 80px 0
    }

    .py-lg-85 {
        padding: 85px 0
    }

    .py-lg-90 {
        padding: 90px 0
    }

    .py-lg-95 {
        padding: 95px 0
    }

    .py-lg-100 {
        padding: 100px 0
    }
}

@media screen and (max-width: 767px) {
    .pt-0 {
        padding-top: 0
    }

    .pt-5 {
        padding-top: 5px
    }

    .pt-10 {
        padding-top: 10px
    }

    .pt-15 {
        padding-top: 15px
    }

    .pt-20 {
        padding-top: 20px
    }

    .pt-25 {
        padding-top: 25px
    }

    .pt-30 {
        padding-top: 30px
    }

    .pt-35 {
        padding-top: 35px
    }

    .pt-40 {
        padding-top: 40px
    }

    .pt-45 {
        padding-top: 45px
    }

    .pt-50 {
        padding-top: 50px
    }

    .pt-55 {
        padding-top: 55px
    }

    .pt-60 {
        padding-top: 60px
    }
}

@media screen and (min-width: 768px) {
    .pt-md-0 {
        padding-top: 0
    }

    .pt-md-5 {
        padding-top: 5px
    }

    .pt-md-10 {
        padding-top: 10px
    }

    .pt-md-15 {
        padding-top: 15px
    }

    .pt-md-20 {
        padding-top: 20px
    }

    .pt-md-25 {
        padding-top: 25px
    }

    .pt-md-30 {
        padding-top: 30px
    }

    .pt-md-35 {
        padding-top: 35px
    }

    .pt-md-40 {
        padding-top: 40px
    }

    .pt-md-45 {
        padding-top: 45px
    }

    .pt-md-50 {
        padding-top: 50px
    }

    .pt-md-55 {
        padding-top: 55px
    }

    .pt-md-60 {
        padding-top: 60px
    }

    .pt-md-65 {
        padding-top: 65px
    }

    .pt-md-70 {
        padding-top: 70px
    }

    .pt-md-75 {
        padding-top: 75px
    }

    .pt-md-80 {
        padding-top: 80px
    }

    .pt-md-85 {
        padding-top: 85px
    }

    .pt-md-90 {
        padding-top: 90px
    }

    .pt-md-95 {
        padding-top: 95px
    }

    .pt-md-100 {
        padding-top: 100px
    }
}

@media screen and (min-width: 1024px) {
    .pt-lg-0 {
        padding-top: 0
    }

    .pt-lg-5 {
        padding-top: 5px
    }

    .pt-lg-10 {
        padding-top: 10px
    }

    .pt-lg-15 {
        padding-top: 15px
    }

    .pt-lg-20 {
        padding-top: 20px
    }

    .pt-lg-25 {
        padding-top: 25px
    }

    .pt-lg-30 {
        padding-top: 30px
    }

    .pt-lg-35 {
        padding-top: 35px
    }

    .pt-lg-40 {
        padding-top: 40px
    }

    .pt-lg-45 {
        padding-top: 45px
    }

    .pt-lg-50 {
        padding-top: 50px
    }

    .pt-lg-55 {
        padding-top: 55px
    }

    .pt-lg-60 {
        padding-top: 60px
    }

    .pt-lg-65 {
        padding-top: 65px
    }

    .pt-lg-70 {
        padding-top: 70px
    }

    .pt-lg-75 {
        padding-top: 75px
    }

    .pt-lg-80 {
        padding-top: 80px
    }

    .pt-lg-85 {
        padding-top: 85px
    }

    .pt-lg-90 {
        padding-top: 90px
    }

    .pt-lg-95 {
        padding-top: 95px
    }

    .pt-lg-100 {
        padding-top: 100px
    }
}

@media screen and (max-width: 767px) {
    .pb-0 {
        padding-bottom: 0
    }

    .pb-5 {
        padding-bottom: 5px
    }

    .pb-10 {
        padding-bottom: 10px
    }

    .pb-15 {
        padding-bottom: 15px
    }

    .pb-20 {
        padding-bottom: 20px
    }

    .pb-25 {
        padding-bottom: 25px
    }

    .pb-30 {
        padding-bottom: 30px
    }

    .pb-35 {
        padding-bottom: 35px
    }

    .pb-40 {
        padding-bottom: 40px
    }

    .pb-45 {
        padding-bottom: 45px
    }

    .pb-50 {
        padding-bottom: 50px
    }

    .pb-55 {
        padding-bottom: 55px
    }

    .pb-60 {
        padding-bottom: 60px
    }
}

@media screen and (min-width: 768px) {
    .pb-md-0 {
        padding-bottom: 0
    }

    .pb-md-5 {
        padding-bottom: 5px
    }

    .pb-md-10 {
        padding-bottom: 10px
    }

    .pb-md-15 {
        padding-bottom: 15px
    }

    .pb-md-20 {
        padding-bottom: 20px
    }

    .pb-md-25 {
        padding-bottom: 25px
    }

    .pb-md-30 {
        padding-bottom: 30px
    }

    .pb-md-35 {
        padding-bottom: 35px
    }

    .pb-md-40 {
        padding-bottom: 40px
    }

    .pb-md-45 {
        padding-bottom: 45px
    }

    .pb-md-50 {
        padding-bottom: 50px
    }

    .pb-md-55 {
        padding-bottom: 55px
    }

    .pb-md-60 {
        padding-bottom: 60px
    }

    .pb-md-65 {
        padding-bottom: 65px
    }

    .pb-md-70 {
        padding-bottom: 70px
    }

    .pb-md-75 {
        padding-bottom: 75px
    }

    .pb-md-80 {
        padding-bottom: 80px
    }

    .pb-md-85 {
        padding-bottom: 85px
    }

    .pb-md-90 {
        padding-bottom: 90px
    }

    .pb-md-95 {
        padding-bottom: 95px
    }

    .pb-md-100 {
        padding-bottom: 100px
    }
}

@media screen and (min-width: 1024px) {
    .pb-lg-0 {
        padding-bottom: 0
    }

    .pb-lg-5 {
        padding-bottom: 5px
    }

    .pb-lg-10 {
        padding-bottom: 10px
    }

    .pb-lg-15 {
        padding-bottom: 15px
    }

    .pb-lg-20 {
        padding-bottom: 20px
    }

    .pb-lg-25 {
        padding-bottom: 25px
    }

    .pb-lg-30 {
        padding-bottom: 30px
    }

    .pb-lg-35 {
        padding-bottom: 35px
    }

    .pb-lg-40 {
        padding-bottom: 40px
    }

    .pb-lg-45 {
        padding-bottom: 45px
    }

    .pb-lg-50 {
        padding-bottom: 50px
    }

    .pb-lg-55 {
        padding-bottom: 55px
    }

    .pb-lg-60 {
        padding-bottom: 60px
    }

    .pb-lg-65 {
        padding-bottom: 65px
    }

    .pb-lg-70 {
        padding-bottom: 70px
    }

    .pb-lg-75 {
        padding-bottom: 75px
    }

    .pb-lg-80 {
        padding-bottom: 80px
    }

    .pb-lg-85 {
        padding-bottom: 85px
    }

    .pb-lg-90 {
        padding-bottom: 90px
    }

    .pb-lg-95 {
        padding-bottom: 95px
    }

    .pb-lg-100 {
        padding-bottom: 100px
    }
}

@media screen and (max-width: 767px) {
    .pl-0 {
        padding-left: 0
    }

    .pl-5 {
        padding-left: 5px
    }

    .pl-10 {
        padding-left: 10px
    }

    .pl-15 {
        padding-left: 15px
    }

    .pl-20 {
        padding-left: 20px
    }

    .pl-25 {
        padding-left: 25px
    }

    .pl-30 {
        padding-left: 30px
    }

    .pl-35 {
        padding-left: 35px
    }

    .pl-40 {
        padding-left: 40px
    }

    .pl-45 {
        padding-left: 45px
    }

    .pl-50 {
        padding-left: 50px
    }

    .pl-55 {
        padding-left: 55px
    }

    .pl-60 {
        padding-left: 60px
    }
}

@media screen and (min-width: 768px) {
    .pl-md-0 {
        padding-left: 0
    }

    .pl-md-5 {
        padding-left: 5px
    }

    .pl-md-10 {
        padding-left: 10px
    }

    .pl-md-15 {
        padding-left: 15px
    }

    .pl-md-20 {
        padding-left: 20px
    }

    .pl-md-25 {
        padding-left: 25px
    }

    .pl-md-30 {
        padding-left: 30px
    }

    .pl-md-35 {
        padding-left: 35px
    }

    .pl-md-40 {
        padding-left: 40px
    }

    .pl-md-45 {
        padding-left: 45px
    }

    .pl-md-50 {
        padding-left: 50px
    }

    .pl-md-55 {
        padding-left: 55px
    }

    .pl-md-60 {
        padding-left: 60px
    }

    .pl-md-65 {
        padding-left: 65px
    }

    .pl-md-70 {
        padding-left: 70px
    }

    .pl-md-75 {
        padding-left: 75px
    }

    .pl-md-80 {
        padding-left: 80px
    }

    .pl-md-85 {
        padding-left: 85px
    }

    .pl-md-90 {
        padding-left: 90px
    }

    .pl-md-95 {
        padding-left: 95px
    }

    .pl-md-100 {
        padding-left: 100px
    }
}

@media screen and (min-width: 1024px) {
    .pl-lg-0 {
        padding-left: 0
    }

    .pl-lg-5 {
        padding-left: 5px
    }

    .pl-lg-10 {
        padding-left: 10px
    }

    .pl-lg-15 {
        padding-left: 15px
    }

    .pl-lg-20 {
        padding-left: 20px
    }

    .pl-lg-25 {
        padding-left: 25px
    }

    .pl-lg-30 {
        padding-left: 30px
    }

    .pl-lg-35 {
        padding-left: 35px
    }

    .pl-lg-40 {
        padding-left: 40px
    }

    .pl-lg-45 {
        padding-left: 45px
    }

    .pl-lg-50 {
        padding-left: 50px
    }

    .pl-lg-55 {
        padding-left: 55px
    }

    .pl-lg-60 {
        padding-left: 60px
    }

    .pl-lg-65 {
        padding-left: 65px
    }

    .pl-lg-70 {
        padding-left: 70px
    }

    .pl-lg-75 {
        padding-left: 75px
    }

    .pl-lg-80 {
        padding-left: 80px
    }

    .pl-lg-85 {
        padding-left: 85px
    }

    .pl-lg-90 {
        padding-left: 90px
    }

    .pl-lg-95 {
        padding-left: 95px
    }

    .pl-lg-100 {
        padding-left: 100px
    }
}

@media screen and (max-width: 767px) {
    .pr-0 {
        padding-right: 0
    }

    .pr-5 {
        padding-right: 5px
    }

    .pr-10 {
        padding-right: 10px
    }

    .pr-15 {
        padding-right: 15px
    }

    .pr-20 {
        padding-right: 20px
    }

    .pr-25 {
        padding-right: 25px
    }

    .pr-30 {
        padding-right: 30px
    }

    .pr-35 {
        padding-right: 35px
    }

    .pr-40 {
        padding-right: 40px
    }

    .pr-45 {
        padding-right: 45px
    }

    .pr-50 {
        padding-right: 50px
    }

    .pr-55 {
        padding-right: 55px
    }

    .pr-60 {
        padding-right: 60px
    }
}

@media screen and (min-width: 768px) {
    .pr-md-0 {
        padding-right: 0
    }

    .pr-md-5 {
        padding-right: 5px
    }

    .pr-md-10 {
        padding-right: 10px
    }

    .pr-md-15 {
        padding-right: 15px
    }

    .pr-md-20 {
        padding-right: 20px
    }

    .pr-md-25 {
        padding-right: 25px
    }

    .pr-md-30 {
        padding-right: 30px
    }

    .pr-md-35 {
        padding-right: 35px
    }

    .pr-md-40 {
        padding-right: 40px
    }

    .pr-md-45 {
        padding-right: 45px
    }

    .pr-md-50 {
        padding-right: 50px
    }

    .pr-md-55 {
        padding-right: 55px
    }

    .pr-md-60 {
        padding-right: 60px
    }

    .pr-md-65 {
        padding-right: 65px
    }

    .pr-md-70 {
        padding-right: 70px
    }

    .pr-md-75 {
        padding-right: 75px
    }

    .pr-md-80 {
        padding-right: 80px
    }

    .pr-md-85 {
        padding-right: 85px
    }

    .pr-md-90 {
        padding-right: 90px
    }

    .pr-md-95 {
        padding-right: 95px
    }

    .pr-md-100 {
        padding-right: 100px
    }
}

@media screen and (min-width: 1024px) {
    .pr-lg-0 {
        padding-right: 0
    }

    .pr-lg-5 {
        padding-right: 5px
    }

    .pr-lg-10 {
        padding-right: 10px
    }

    .pr-lg-15 {
        padding-right: 15px
    }

    .pr-lg-20 {
        padding-right: 20px
    }

    .pr-lg-25 {
        padding-right: 25px
    }

    .pr-lg-30 {
        padding-right: 30px
    }

    .pr-lg-35 {
        padding-right: 35px
    }

    .pr-lg-40 {
        padding-right: 40px
    }

    .pr-lg-45 {
        padding-right: 45px
    }

    .pr-lg-50 {
        padding-right: 50px
    }

    .pr-lg-55 {
        padding-right: 55px
    }

    .pr-lg-60 {
        padding-right: 60px
    }

    .pr-lg-65 {
        padding-right: 65px
    }

    .pr-lg-70 {
        padding-right: 70px
    }

    .pr-lg-75 {
        padding-right: 75px
    }

    .pr-lg-80 {
        padding-right: 80px
    }

    .pr-lg-85 {
        padding-right: 85px
    }

    .pr-lg-90 {
        padding-right: 90px
    }

    .pr-lg-95 {
        padding-right: 95px
    }

    .pr-lg-100 {
        padding-right: 100px
    }
}

/* responsive padding End */

/* Hide skip links by default */
.skip-link {
    position: absolute;
    top: -40px;
    left: -40px;
    background: var(--bs-dark);
    color: var(--bs-white100);
    padding: 8px;
    z-index: 100;
}

/* Show skip links when focused */
.skip-link:focus {
    top: 0;
    left: 0;
    z-index: 99999;
}

/* Header start */
@keyframes smoothScrolldown {
    0% {
        transform: translateY(-50px);
    }

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

.header {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    border: none;
    /* border-bottom: 1px solid rgba(var(--bs-white100-rgb),0.15); */
    /* background-color: var(--bs-dark); */
    padding: 0;
    z-index: 999;
    transition-property: all;
    transition-delay: .15s;
    transition-duration: .15s;
    transition-timing-function: linear;
}

.header-relative {
    position: relative;
    background-color: var(--bs-dark);
}

.header-transparent {
    position: absolute;
    background-color: transparent;
}

header.header.is-sticky {
    position: fixed;
    animation: smoothScrolldown 1s forwards;
    background-color: rgba(var(--bs-dark-rgb), 0.7);
    backdrop-filter: blur(25px);
}

header.header-transparent.is-sticky {
    position: fixed;
}

.header .navbar {
    padding: 16px 0;
}

.header .navbar .navbar-brand {
    opacity: 1;
    padding: 0;
    transition-property: all;
    transition-delay: .15s;
    transition-duration: .15s;
    transition-timing-function: linear;
}

.header .navbar .navbar-brand img {
    display: block;
}

.is-sticky.header .navbar .navbar-brand img {
    max-height: 66px;
}

@media screen and (max-width:991px) {
    .header .navbar .navbar-brand img {
        width: auto;
        height: 76.56px;
    }

    .is-sticky.header .navbar .navbar-brand img {
        height: 56.56px;
    }
}

.header .navbar .navbar-nav {
    display: flex;
    flex-flow: wrap;
    align-items: center;
    justify-content: center;
    column-gap: 20px;
}

@media (min-width: 992px) {
    .header .navbar .navbar-nav {
        margin-left: auto;
    }
}

@media screen and (min-width:1200px) {
    .header .navbar .navbar-nav {
        column-gap: 40px;
    }
}

.header .navbar .navbar-nav .nav-item {
    position: relative;
    display: flex;
    flex-flow: wrap;
    gap: 5px;
    align-items: center;
}

@media (min-width: 992px) {
    .header .navbar .navbar-nav .nav-item {
        padding: 20px 0;
    }

    .header .navbar .navbar-nav .nav-item .submenu-button {
        background-color: transparent;
        padding: 0;
        border: none;
        order: 2;
        line-height: 0;
        margin: 5px 0;
        transition-delay: .15s;
        transition-duration: .15s;
        transition-timing-function: linear;
    }

    .header .navbar .navbar-nav .nav-item:hover .submenu-button,
    .header .navbar .navbar-nav .nav-item .nav-link:focus~.submenu-button {
        transform: rotate(180deg);
        margin-bottom: 4px;
    }
}

.header .navbar .navbar-nav .nav-item a {
    order: 1;
    display: flex;
    flex-flow: wrap;
    align-items: center;
    position: relative;
    margin: 0;
    padding: 0;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    font-stretch: normal;
    line-height: 24px;
    color: var(--bs-white100);
    transition-delay: .15s;
    transition-duration: .15s;
    transition-timing-function: linear;
    text-transform: capitalize;
}

.header .navbar .navbar-nav .nav-item:hover>a,
.header .navbar .navbar-nav .nav-item>.active,
.header .navbar .navbar-nav .nav-item>a:focus {
    color: var(--bs-yellow);
}

.header .navbar .navbar-nav .nav-item>.active,
.header .navbar .navbar-nav .submenu .active {
    pointer-events: none;
}

.header .navbar .navbar-nav .nav-item .btn-link {
    display: flex;
    align-items: center;
    color: var(--bs-yellow);
    font-weight: 600;
    overflow: hidden;
    position: relative;
    text-transform: capitalize;
    transition-delay: .15s;
    transition-duration: .15s;
    transition-timing-function: linear;
    z-index: 1;
    position: relative;
    letter-spacing: 0px;
}

.header .navbar .navbar-nav .nav-item .btn-link:focus svg {
    transform: rotate(0deg);
}


@media (min-width: 992px) {
    .header .navbar-collapse .navbar-nav .nav-item .submenu {
        position: absolute;
        top: 100%;
        left: auto;
        width: auto;
        height: auto;
        min-width: max-content;
        background-color: var(--bs-white200);
        display: flex;
        flex-flow: column;
        align-items: flex-start;
        justify-content: flex-start;
        margin: 0;
        padding: 30px 40px 30px 40px;
        gap: 10px;
        opacity: 0;
        visibility: hidden;
        z-index: -99999;
        transition-delay: .15s;
        transition-duration: .15s;
        transition-timing-function: linear;
        border: none;
        border-top: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 0 0 10px 10px;
        transform: translateY(15px);
        box-shadow: 0 5px 10px -1px rgba(var(--bs-lightdark-rgb), 0.15);
    }

    .is-sticky .navbar-collapse .navbar-nav .nav-item .submenu {
        top: 100%;
    }

    .header .navbar-collapse .navbar-nav .nav-item:hover .submenu,
    .header .navbar-collapse .navbar-nav .nav-item .nav-link:focus~.submenu,
    .header .navbar-collapse .navbar-nav .nav-item .submenu.add {
        opacity: 1;
        visibility: visible;
        z-index: 9;
        transform: translateY(0);
    }

    .header .navbar-collapse .navbar-nav .nav-item .submenu li a {
        color: var(--bs-dark);
    }

    .header .navbar-collapse .navbar-nav .nav-item .submenu li:hover>a,
    .header .navbar-collapse .navbar-nav .nav-item .submenu li.active a,
    .header .navbar-collapse .navbar-nav .nav-item .submenu li a:focus {
        color: var(--bs-yellow);
    }

    .header .navbar-collapse .navbar-nav .nav-item:nth-child(2) .megamenu {
        left: auto;
        transform: translateX(-50%) translateY(15px);
    }

    .header .navbar-collapse .navbar-nav .nav-item:nth-child(2):hover .megamenu,
    .header .navbar-collapse .navbar-nav .nav-item:nth-child(2) .nav-link:focus~.megamenu,
    .header .navbar-collapse .navbar-nav .nav-item:nth-child(2) .megamenu.add {
        transform: translateX(-50%) translateY(0);
    }

    .header .navbar-collapse .navbar-nav .nav-item:nth-child(2) .submenu>li {
        display: flex;
        gap: 50px;
        list-style: none;
    }

    .header .navbar-collapse .navbar-nav .nav-item:nth-child(2) .submenu>li ul {
        padding: 0;
    }

    .header .navbar-collapse .navbar-nav .nav-item:nth-child(2) .submenu>li ul li {
        margin-bottom: 10px;
    }

    .header .navbar-collapse .navbar-nav .nav-item:nth-child(2) .submenu>li ul li:first-child {
        margin-bottom: 20px;
    }

    .header .navbar-collapse .navbar-nav .nav-item:nth-child(2) .submenu>li ul li:last-child {
        margin-bottom: 0;
    }

    .header .navbar-collapse .navbar-nav .nav-item .submenu li ul li span {
        color: var(--bs-dark);
        font-size: var(--fs-16);
        line-height: var(--fs-24);
        display: block;
        text-transform: capitalize;
        font-weight: 500;
        transition-delay: .15s;
        transition-duration: .15s;
        transition-timing-function: linear;
        opacity: 1;
        visibility: visible;
    }

    .header .navbar-collapse .navbar-nav .nav-item .submenu li ul li.active a span,
    .header .navbar-collapse .navbar-nav .nav-item .submenu li ul li a:hover span {
        color: var(--bs-yellow);
    }

    .header .navbar-collapse .navbar-nav .nav-item .submenu>li,
    .header .navbar-collapse .navbar-nav .nav-item .megamenu>li ul li {
        position: relative;
        /* transition-delay: .15s;
        transition-duration: .15s;
        transition-timing-function: linear; */
        padding-left: 20px;
        margin-left: -20px;
    }

    .header .navbar-collapse .navbar-nav .nav-item:nth-child(2) .submenu>li {
        padding-left: 0;
        margin-left: 0;
    }

    .header .navbar-collapse .navbar-nav .nav-item .submenu>li:before,
    .header .navbar-collapse .navbar-nav .nav-item .megamenu>li ul li:before {
        content: '';
        position: absolute;
        top: 6px;
        left: 0;
        width: 12px;
        height: 12px;
        background-image: url(../images/ring.png);
        background-position: -20px 0;
        background-repeat: no-repeat;
        background-size: cover;
        transition-delay: .15s;
        transition-duration: .15s;
        transition-timing-function: linear;
    }

    .header .navbar-collapse .navbar-nav .nav-item:nth-child(2) .submenu>li:before,
    .header .navbar-collapse .navbar-nav .nav-item .megamenu>li ul li:first-child:before {
        display: none;
    }

    .header .navbar-collapse .navbar-nav .nav-item .submenu>li:hover:before,
    .header .navbar-collapse .navbar-nav .nav-item .submenu>li.active:before,
    .header .navbar-collapse .navbar-nav .nav-item .megamenu>li ul li:hover:before,
    .header .navbar-collapse .navbar-nav .nav-item .megamenu>li ul li.active:before {
        background-position: 0 0;
    }
}

@media (max-width: 991px) {
    .header .navbar-toggler {
        border: none;
        padding: 0;
        border-radius: 0;
        display: flex;
        flex-flow: column;
        gap: 4px;
        z-index: 10;
        justify-content: center;
        height: 32px;
    }

    .header .navbar-toggler:focus {
        box-shadow: none;
    }

    .header .navbar-toggler .navbar-toggler-icon {
        display: block;
        width: 30px;
        height: 2px;
        background-image: none;
        background-color: var(--bs-white100);
        transition-delay: .15s;
        transition-duration: .15s;
        transition-timing-function: linear;
    }

    .header .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
        opacity: 0;
        transform: translateX(-40px);
        visibility: hidden;
    }

    .header .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:first-child {
        opacity: 1;
        transform: rotate(-45deg);
        visibility: visible;
        margin-bottom: -7px;
    }

    .header .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:last-child {
        opacity: 1;
        transform: rotate(45deg);
        visibility: visible;
        margin-top: -5px;
    }

    .header .navbar-collapse {
        display: flex;
        flex-flow: column;
        align-items: center;
        justify-content: end;
        position: fixed;
        padding-bottom: 30px;
        top: 0;
        left: 0;
        clip-path: circle(0% at 100% 0%);
        width: 100%;
        height: 100dvh !important;
        background-color: var(--bs-dark);
        transition: clip-path 0.5s ease-out;
    }

    /* .header .navbar-collapse.collapse:not(.show) {
        display: none;
    } */

    .header .navbar-collapse .navbar-nav {
        flex-flow: column;
        align-items: start;
        justify-content: flex-start;
        margin: 0;
        row-gap: 0;
        padding: 0 20px;
        width: 100%;
        height: calc(100dvh - 18%);
        overflow-y: auto;
    }

    .header .navbar-collapse .navbar-nav .nav-item {
        display: flex;
        flex-flow: wrap;
        width: 100%;
        align-items: center;
        justify-content: space-between;
        padding: 15px 0;
        border: none;
        border-bottom: 1px solid rgba(var(--bs-white200-rgb), .15);
    }

    .header .navbar-collapse .navbar-nav .nav-item:last-child {
        border: none;
    }

    .header .navbar-collapse .navbar-nav .nav-item .nav-link {
        font-size: 5vw;
        line-height: normal;
        font-weight: 600;
        order: 1;
    }

    .header .navbar-collapse .navbar-nav .nav-item .submenu-button {
        order: 2;
        padding: 10px;
        cursor: pointer;
        border: none;
        background-color: transparent;
        display: inline-flex;
    }

    .header .navbar-collapse .navbar-nav .nav-item .submenu-button svg {
        width: 20px;
        height: 8px;
        transform-origin: center;
    }

    .header .navbar-collapse .navbar-nav .nav-item .submenu-button.submenu-opened svg {
        transform: rotate(180deg);
    }

    .header .navbar-collapse .navbar-nav .nav-item .submenu-button.submenu-opened svg path {
        fill: var(--bs-yellow);
    }

    .header .navbar-collapse .navbar-nav .nav-item .btn-white100 {
        color: var(--bs-white100);
        background-color: transparent !important;
        padding: 0;
    }

    .header .navbar-collapse .navbar-nav .nav-item .nav-link:hover,
    .header .navbar-collapse .navbar-nav .nav-item .nav-link.active {
        color: var(--bs-yellow);
    }

    .header .navbar-collapse .navbar-nav .nav-item .submenu {
        order: 3;
        position: relative;
        padding: 0;
        margin: 20px 0;
        top: 0;
        left: 0;
        width: 100%;
        opacity: 0;
        visibility: hidden;
        list-style: none;
        display: none;
        flex-flow: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 15px;
        transition-property: all;
        transition-delay: .15s;
        transition-duration: .15s;
        transition-timing-function: linear;
    }

    .header .navbar-collapse .navbar-nav .nav-item .submenu>li {
        width: 100%;
    }

    .header .navbar-collapse .navbar-nav .nav-item .submenu>li>ul {
        padding: 0;
        padding-bottom: 15px;
        border: none;
        border-bottom: 1px solid rgba(var(--bs-white200-rgb), .05);
    }

    .header .navbar-collapse .navbar-nav .nav-item .submenu.open>li>ul {
        display: flex;
        flex-flow: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 15px;
        margin-bottom: 15px;
    }

    .header .navbar-collapse .navbar-nav .nav-item .submenu.open>li>ul:last-child {
        margin-bottom: 0;
        padding-bottom: 0;
        border: none;
    }

    .header .navbar-collapse .navbar-nav .nav-item .submenu>li span {
        color: var(--bs-yellow);
    }

    .header .navbar-collapse .navbar-nav .nav-item .submenu>li span,
    .header .navbar-collapse .navbar-nav .nav-item .submenu li a {
        font-size: 4dvw;
        line-height: 130%;
        font-weight: 400;
        position: relative;
    }

    .header .navbar-collapse .navbar-nav .nav-item .submenu li.active a {
        color: var(--bs-yellow);
    }

    .header .navbar-collapse .navbar-nav .nav-item .submenu.open {
        display: flex;
        opacity: 1;
        visibility: visible;
    }

    /* .header .navbar .navbar-nav .nav-item .nav-link span {
        padding: 6px 6px 5px 6px;
        margin: 3px 0 0 10px;
    } */
}

/* Header End */


/* banner Start */
.banner-wrapper {
    display: flex;
    flex-flow: column;
    margin: 0;
    padding: 0;
    width: 100%;
    height: calc(100svh - 5.28rem);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

@media (max-height: 700px) {
    .banner-wrapper {
        height: calc(750px - 84px);
    }
}

@media (max-width: 1023px) {
    .banner-wrapper {
        height: 600px;
    }
}

.home-wrap {
    z-index: 0;
    position: absolute;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: 0%;
    overflow: hidden;
    z-index: -1;
}

.home_wrap-cols {
    gap: 20px;
    flex-direction: row;
    justify-content: flex-start;
    width: 65%;
    display: flex;
    position: absolute;
    top: 50%;
    bottom: auto;
    left: auto;
    right: 0;
    transform: rotate(15deg) translateY(-50%);
    height: 100%;
}

.home_wrap-col {
    gap: 20px;
    flex-direction: column;
    flex: none;
    width: calc(50% - 10px);
    display: flex;
    position: relative;
}

.home_wrap-slides {
    gap: 20px;
    flex-direction: column;
    flex: none;
    display: flex;
    transform: translate3d(0, 0, 0);
    will-change: transform;
}

@media (max-width: 767px) {

    .home_wrap-cols,
    .home_wrap-col,
    .home_wrap-slides {
        gap: 10px;
    }

    .home_wrap-col {
        width: calc(50% - 5px);
    }
}

@keyframes heroscroll {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

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

.v-scroll {
    animation: heroscroll 75s linear infinite;
    animation-play-state: running;
}

@media (max-width: 991px) {
    .v-scroll {
        animation: heroscroll 30s linear infinite;
        animation-play-state: running;
    }
}

@keyframes heroscroll2 {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

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

.v-scroll2 {
    animation: heroscroll2 50s linear infinite;
    animation-play-state: running;
}

@media (max-width: 991px) {
    .v-scroll2 {
        animation: heroscroll2 25s linear infinite;
    }
}

.v-scroll.reverse,
.v-scroll2.reverse {
    animation-direction: reverse;
}

.home_wrap_slide {
    aspect-ratio: 16 / 9;
    border-radius: 20px;
    overflow: hidden;
}

@media (max-width: 767px) {
    .home_wrap_slide {
        border-radius: 10px;
    }
}

.home_wrap_slide img {
    object-position: top;
}

.home-gradient_topleft {
    z-index: 1;
    background-image: linear-gradient(180deg, rgba(21, 21, 21, .85), rgba(21, 21, 21, .78) 40%, rgba(21, 21, 21, .33) 75%, transparent);
    position: absolute;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: 0%;
}

@media (max-width: 991px) {
    .home-gradient_topleft {
        background-image: linear-gradient(180deg, rgba(21, 21, 21, .85), rgba(21, 21, 21, .78) 40%, rgba(21, 21, 21, .33) 90%, transparent);
    }
}

.home_hero-content {
    background-color: transparent;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    padding-top: 15vh;
    padding-bottom: 3rem;
    display: flex;
}

@media screen and (max-width: 479px) {
    .home_hero-content {
        padding-top: 10vh;
    }
}

.home_hero_title {
    color: var(--bs-white100);
    letter-spacing: -.2rem;
    max-width: max(44vw, 43rem);
    font-size: max(4rem, 4.4vw);
    font-weight: 500;
    line-height: 120%;
}

@media screen and (max-width: 991px) {
    .home_hero_title {
        max-width: 37rem;
        font-size: max(3rem, 4.4vw);
    }
}

@media screen and (max-width: 767px) {
    .home_hero_title {
        max-width: 35rem;
        font-size: max(2.5rem, 4.4vw);
    }
}

@media screen and (max-width: 479px) {
    .home_hero_title {
        font-size: max(2.5rem, 4.4vw);
    }
}

.hero-subcontent {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 40px;
    display: flex;
}

@media screen and (max-width: 991px) {
    .hero-subcontent {
        align-items: flex-end;
    }
}

@media screen and (max-width: 767px) {
    .hero-subcontent {
        grid-column-gap: 2rem;
        grid-row-gap: 2rem;
        align-items: flex-start;
        margin-top: 20px;
    }
}

@media screen and (max-width: 479px) {
    .hero-subcontent {
        grid-column-gap: 1.5rem;
        grid-row-gap: 1.5rem;
        margin-top: 20px;
    }
}

.home_hero_desc {
    color: rgba(255, 255, 255, .8);
    margin-top: 0;
    margin-bottom: 0;
    font-size: 1.25em;
    line-height: 1.4em;
    font-weight: 500;
}

.hero-subcontent .btn-link,
.hero-subcontent .btn-link:first-child:active {
    font-size: max(1.8rem, 2vw);
    line-height: 120%;
}

.hero-subcontent .btn-link svg {
    width: max(1.8rem, 2vw);
    height: max(1.8rem, 2vw);
}

/* banner End */

/* home-logos-wrap start */
.home-logos-wrap {
    padding: 1rem 0rem;
    grid-column-gap: 5rem;
    background-color: rgba(0, 0, 0, 0);
    color: var(--bs-dark);
    flex-direction: row;
    height: 5.25rem;
    display: flex;
    position: relative;
    overflow: hidden;
}

.roll {
    column-gap: 5rem;
    flex: none;
    justify-content: flex-start;
    align-items: center;
    display: flex;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-100% - 5rem));
    }
}

.scroll-slower {
    animation: scroll 75s linear infinite;
}

.home-logos-wrap:hover .roll {
    animation-play-state: paused;
}

.home-logos-wrap .logo-roll_img {
    filter: grayscale(1);
    object-fit: contain;
    max-width: 100%;
    display: inline-block;
    vertical-align: middle;
}

/* home-logos-wrap end */

/* experience-wrapper start */
.experience-wrapper {
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
}

.experience-wrapper .row:last-child {
    margin-bottom: 0;
}

@media (min-width:992px) {
    .experience-wrapper .ex-row {
        display: flex;
        justify-content: center;
        gap: 20px;
    }

    .experience-wrapper .ex-row {
        padding: 0;
    }
}

@media (min-width: 1200px) {
    .experience-wrapper .ex-row {
        justify-content: space-around;
    }
}

.experience-wrapper .ring {
    position: relative;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    width: 16rem;
    height: 16rem;
    padding: 30px;
    margin: 0 auto;
    text-align: center;
    border-radius: 50%;
    background-image: linear-gradient(135deg, transparent 45%, rgb(70 70 70 / 10%) 45%, rgb(70 70 70 / 10%) 55%, transparent 0);
    background-size: 5px 5px;
    transition: all 1.2s;
    overflow: hidden;
    border: none;
    transition-delay: 1200ms;
}

@media (min-width: 992px) {
    .experience-wrapper .ex-row .swiper-slide {
        width: auto;
    }

    .experience-wrapper .ex-row .ring {
        width: 9.625rem;
        height: 9.625rem;
        padding: 30px 0;
    }
}

.experience-wrapper .ring.active {
    background-image: linear-gradient(135deg, transparent 45%, rgba(229, 229, 229, 0.1) 45%, rgba(229, 229, 229, 0.1) 55%, transparent 0);
    transform: none !important;
}

.experience-wrapper .ring.active .circle-ani {
    transform: scale(1, 1);
    background-color: rgba(var(--bs-dark-rgb), 1);
    transition-delay: 1100ms;
}

.experience-wrapper .ring .ring_draw {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: rotate(180deg);
    stroke-dasharray: 1140px;
    stroke-dashoffset: -1140px;
    stroke: var(--bs-dark);
    transition: all 1s;
    transition-timing-function: cubic-bezier(.4, .08, 0, .97);
    z-index: -1;
}

.experience-wrapper .ring span,
.experience-wrapper .ring h5,
.experience-wrapper .ring .h5,
.experience-wrapper .ring .h6,
.experience-wrapper .ring h6 {
    transition: all 1.2s;
    transition-delay: 1200ms;
}

.experience-wrapper .ring.active span {
    color: var(--bs-white200);
}

.experience-wrapper .ring.active .ring_draw {
    stroke-dashoffset: 0px;
}

.experience-wrapper .ring h5,
.experience-wrapper .ring .h5 {
    font-weight: 700;
    margin-bottom: 5px;
}

.experience-wrapper .ring h5,
.experience-wrapper .ring .h5,
.experience-wrapper .ring h6,
.experience-wrapper .ring .h6 {
    color: var(--bs-dark);
}

.experience-wrapper .ring.active h5,
.experience-wrapper .ring.active .h5,
.experience-wrapper .ring.active h6,
.experience-wrapper .ring.active .h6 {
    color: var(--bs-white200);
}

.experience-wrapper .ring h6,
.experience-wrapper .ring .h6 {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
}

.highlight-separator {
    position: relative;
    padding-bottom: 20px;
}

.highlight-separator[data-shadow-animation] {
    box-shadow: none !important;
    display: inline-block;
    z-index: 1;
}

.highlight-separator[data-shadow-animation] span {
    clip-path: inset(0 100% 0 0);
    float: left;
    width: 100%;
    height: 20px;
    transition: clip-path 1s;
    transition-timing-function: cubic-bezier(.4, .6, .4, 1);
    position: absolute;
    left: 0;
    bottom: 0;
}

.highlight-separator[data-shadow-animation] span {
    height: 100px;
    z-index: -1;
}

.highlight-separator.shadow-in[data-shadow-animation] span {
    clip-path: inset(0 0 0 0);
}

.highlight-separator-small .highlight-separator[data-shadow-animation] span {
    height: 45px;
    bottom: -10px;
}

.highlight-separator[data-shadow-animation] span img {
    position: absolute;
    left: 0;
    bottom: 0;
    transition: none;
    width: 100%;
    height: 14px;
}

.highlight-separator-small .highlight-separator[data-shadow-animation] span img {
    height: 45px;
    width: 100%;
}

.atropos {
    position: relative;
    display: block;
    perspective: 1200px;
    transform: translate3d(0, 0, 0);
}

.transform-3d {
    transform: translate3d(0, 0, 100px);
}

.atropos-scale,
.atropos-rotate {
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition-property: transform;
    display: block;
}

.atropos-inner,
.atropos-rotate {
    position: relative;
}

.atropos-inner {
    width: 100%;
    height: 100%;
    overflow: hidden;
    transform-style: preserve-3d;
    transform: translate3d(0, 0, 0);
    display: block;
}

.atropos-highlight {
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    transform-origin: center;
    transform: scale(0);
    border-radius: 9999px;
    --tw-bg-opacity: 1;
    background-color: rgba(21, 21, 21, 1);
    transition-duration: 500ms;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
    transition-timing-function: cubic-bezier(.215, .61, .355, 1);
    z-index: -1;
}

.atropos-inner.active .atropos-bll .atropos-txt {
    color: var(--bs-white100);
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
    transition-delay: 1100ms;
}

.atropos-inner.active .atropos-highlight {
    height: 100%;
    width: 100%;
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    transform: scaleX(1) scaleY(1);
    background-color: var(--bs-dark);
    transition-delay: 1100ms;
}

.feature-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 10px;
}

@media (max-width: 767px) {
    .feature-box {
        padding: 0;
    }
}

.feature-box.feature-box-left-icon,
.feature-box.feature-box-left-icon-middle {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    text-align: left;
}

.feature-box.feature-box-left-icon .feature-box-content,
.feature-box.feature-box-left-icon-middle .feature-box-content {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.experience-wrapper .reviews {
    display: flex;
    flex-flow: wrap;
    align-items: center;
    justify-content: flex-start;
    margin: 0 0 30px;
    padding: 0;
    width: 100%;
    row-gap: 30px;
    column-gap: 50px;
}

@media (min-width: 992px) {
    .experience-wrapper .reviews {
        display: flex;
        flex-flow: wrap;
        align-items: end;
        justify-content: flex-start;
        margin: 40px 0 0;
        padding: 30px 0 0;
        width: 100%;
        row-gap: 30px;
        border-top: 1px solid rgba(21, 21, 21, 0.2);
    }
}

.experience-wrapper .review-box {
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    margin: 0;
    width: auto;
    flex: 0 0 auto;
    position: relative;
    max-width: 200px;
}

@media (min-width: 992px) {
    .experience-wrapper .review-box {
        flex: 0 0 auto;
        width: auto;
        gap: 20px;
    }
}

.experience-wrapper .review-box a {
    display: flex;
    flex-flow: wrap;
    align-items: end;
    justify-content: flex-start;
    margin: 0;
    gap: 15px;
}

@media (min-width: 992px) {
    .experience-wrapper .review-box a {
        justify-content: center;
        align-items: end;
        flex-flow: wrap;
    }
}

.experience-wrapper .review-box .left,
.experience-wrapper .review-box .right {
    display: block;
}

.experience-wrapper .review-box .left span {
    color: #6a797e;
    display: block;
    font-size: 11px;
    letter-spacing: 1px;
    line-height: 1;
    margin: 0 0 5px;
    text-transform: uppercase;
    white-space: nowrap;
}

.experience-wrapper .review-box .right span {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 0px;
    margin-top: 7px;
    text-align: left;
    text-transform: uppercase;
    white-space: nowrap;
    color: #6a797e;
    text-decoration: none;
    font-weight: 400;
}

.experience-wrapper .review-box ul {
    display: flex;
    flex-flow: wrap;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    gap: 2px;
    list-style: none;
}

.experience-wrapper .review-box ul li {
    display: block;
    color: var(--bs-dark);
    font-size: var(--fs-18);
    font-weight: 600;
    font-style: normal;
    font-stretch: normal;
}

.experience-wrapper .review-box ul li img {
    display: block;
    width: 16px;
    height: 16px;
}

.review-box:last-child .clutch-widget {
    margin: 5px 0 0;
}

/* experience-wrapper end */

/* Services Start */
@media (min-width: 992px) {
    .services-wrapper {
        height: auto;
        display: flex;
        flex-flow: column;
        align-items: center;
        justify-content: center;
    }
}

.services-list_line {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding-top: 1.5em;
    padding-bottom: 1.5em;
    display: flex;
    position: relative;
    text-decoration: none;
    transition-delay: .15s;
    transition-duration: .15s;
    transition-timing-function: linear;
}

@media (max-width: 767px) {
    .services-list_line {
        flex-flow: column;
        gap: 30px;
    }
}

.services-list_line:hover {
    padding-left: 1dvw;
    padding-right: 1dvw;
}

.service-list_content {
    width: 100%;
    display: flex;
    gap: 60px;
    align-items: center;
}

@media (max-width: 767px) {
    .service-list_content {
        flex-flow: column;
        gap: 10px;
    }
}

.service-list_title {
    z-index: 1;
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    align-items: flex-start;
    width: 50%;
    display: flex;
    position: relative;
    color: var(--bs-white100);
    transition-delay: .15s;
    transition-duration: .15s;
    transition-timing-function: linear;
}

@media (max-width: 767px) {
    .service-list_title {
        width: 100%;
    }
}

.services-list_line:hover .service-list_title {
    color: var(--bs-dark);
}

.service-list_wrap {
    position: relative;
    overflow: hidden;
}

.service-list-mark {
    z-index: 2;
    opacity: .35;
    white-space: nowrap;
    width: 2ch;
    font-size: 1em;
    font-weight: 400;
    line-height: 100%;
    position: relative;
}

.service-list_desc {
    z-index: 1;
    align-items: center;
    width: 50%;
    display: flex;
    position: relative;
    transition-delay: .15s;
    transition-duration: .15s;
    transition-timing-function: linear;
}

.service-list_desc ul {
    display: flex;
    flex-flow: wrap;
    align-items: center;
    justify-content: start;
    margin: 0;
    padding: 0;
    width: 100%;
    column-gap: 22px;
    row-gap: 5px;
    list-style: none;
}

.service-list_desc ul li {
    position: relative;
}

.service-list_desc ul li a {
    font-size: 13px;
    opacity: .7;
    color: var(--bs-white100) !important;
    transition-delay: .15s;
    transition-duration: .15s;
    transition-timing-function: linear;
}

.service-list_desc ul li::before {
    content: "";
    position: absolute;
    top: 50%;
    right: -10px;
    transform: translateY(10%);
    width: 3px;
    height: 3px;
    background-color: var(--bs-white100);
    border-radius: 15px;
    transition-delay: .15s;
    transition-duration: .15s;
    transition-timing-function: linear;
}

.service-list_desc ul li:last-child:before {
    display: none;
}

@media (max-width: 767px) {
    .service-list_desc {
        width: 100%;
    }
}

.services-list_line:hover .service-list_desc ul li a {
    opacity: 1;
    color: var(--bs-dark) !important;
}

.service-list_desc ul li a:not([href]):not([class]) {
    cursor: default;
}

.services-list_line:hover .service-list_desc ul li:before {
    background-color: var(--bs-dark);
}

.service-list_gif {
    z-index: 1;
    aspect-ratio: 122 / 56;
    border-radius: 100vw;
    flex: none;
    width: 6rem;
    height: 3rem;
    position: relative;
    overflow: hidden;
}

@media (max-width: 767px) {
    .service-list_gif {
        display: none;
    }
}

.service-list_gif_img-wrap {
    width: 100%;
    display: flex;
    flex-flow: column;
}

.service-list_gif_img {
    aspect-ratio: 122 / 61;
    object-fit: cover;
    width: 100%;
    height: 100%;
    position: relative;
    transition-delay: .15s;
    transition-duration: .15s;
    transition-timing-function: linear;
    image-rendering: pixelated;
    transform: translateZ(0);
    will-change: transform;
}

.border-line-btm {
    z-index: 1;
    opacity: .15;
    background-color: var(--bs-white100);
    width: 100%;
    height: 1px;
    position: absolute;
    top: auto;
    bottom: 0%;
    left: 0%;
    right: 0%;
}

.card-whipe {
    z-index: 0;
    width: 100%;
    height: 0px;
    position: absolute;
    top: auto;
    bottom: 0%;
    left: 0%;
    right: auto;
    transition-delay: .15s;
    transition-duration: .15s;
    transition-timing-function: linear;
}

.bg-sales-dark {
    background-image: linear-gradient(130deg, #EDA800, #fde55f);
}

.services-list_line:hover .card-whipe {
    height: 100%;
}

/* Services End */

/* portfolio start */
.section_home-intro {
    overflow: hidden;
    cursor: none;
}

.section_home-intro.pointer,
.section_home-intro.pointer .portfolio-slide {
    cursor: default;
}

.portfolio-slide {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    height: 100svh;
    display: flex;
    overflow: hidden;
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    position: relative;
    cursor: none;
}

@media (min-width: 768px) and (max-width: 1199px) {
    .portfolio-slide {
        height: 85svh;
    }
}

@media (max-width: 991px) {
    .portfolio-slide {
        cursor: pointer;
    }
}

@media (max-width: 767px) {
    .portfolio-slide {
        height: 63svh;
    }
}

.portfolio_slides_lines {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 120dvw;
    display: flex;
    transform: rotate(5deg);
}

.portfolio_slides_line {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    flex-flow: row;
    display: flex;
    will-change: transform;
    transform-style: preserve-3d;
}

.portfolio_slides_slide {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    flex-direction: row;
    flex: none;
    display: flex;
}

.portfolio_slide {
    aspect-ratio: 16 / 9;
    border-radius: 20px;
    overflow: hidden;
    height: 32dvh;
}

@media (min-width: 768px) and (max-width: 1199px) {
    .portfolio_slide {
        height: 22dvh;
    }
}

@media (max-width: 767px) {
    .portfolio_slide {
        height: 16vh;
    }
}

.portfolio_slide img {
    object-position: top;
}


.portfolio-title.hidden {
    visibility: hidden;
    opacity: 0;
    z-index: -99999999;
}

.portfolio-title {
    cursor: none;
    display: block;
    opacity: 1;
    visibility: visible;
    width: 8rem;
    height: 8rem;
    top: -40px;
    left: -40px;
    margin: 0;
    z-index: 1;
    will-change: transform;
    position: absolute;
    transform: translate(-50%, -50%);
}

.custom-cursor-singleton {
    display: block;
    width: inherit;
    height: inherit;
    animation: custom-cursor-singleton_roll 120s linear infinite forwards;
    transition-property: all;
    transition-delay: .15s;
    transition-duration: .15s;
    transition-timing-function: linear;
}

.custom-cursor-singleton.active {
    display: block;
}

@keyframes custom-cursor-singleton_roll {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(10turn);
    }
}

.custom-cursor-singleton path {
    fill: var(--bs-dark);
    transition-property: all;
    transition-delay: .15s;
    transition-duration: .15s;
    transition-timing-function: linear;
}

.custom-cursor-singleton text {
    transform-origin: center center;
    will-change: transform;
    overflow: hidden;
}

.custom-cursor-singleton textPath {
    font-size: 12px;
    font-weight: 500;
    fill: var(--bs-white100);
    letter-spacing: 0.2rem;
}

/* portfolio end */

/* tag slide start */
.tagslide {
    grid-column-gap: 40px;
    color: var(--bs-dark);
    flex-direction: row;
    display: flex;
    position: relative;
    overflow: hidden;
}

.tagslide .roll {
    grid-column-gap: 40px;
}

.tagslide .roll:hover {
    animation-play-state: running;
}

.bg-white100 .tagslide .roll img {
    filter: invert(1);
}

.tagslide .roll span {
    display: block;
    color: var(--bs-dark);
    font-size: 5.25rem;
    font-family: var(--bs-font-inter);
    font-weight: 700;
    font-style: normal;
    font-stretch: normal;
    line-height: 5.25rem;
    margin: 0;
    padding: 0;
    text-transform: lowercase;
}

.tagslide .roll:nth-child(even) span {
    -webkit-text-stroke-color: var(--bs-dark);
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 1px;
}

@keyframes tagslide {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-100% - 40px));
    }
}

.scroll-tagslide {
    animation: tagslide 25s linear infinite;
}

@media (max-width: 767px) {
    .scroll-tagslide img {
        height: 26px;
    }
}

/* tag slide end */

/* testimonials-wrapper start */
.testimonials-wrapper {
    height: 100%;
    display: flex;
    flex-flow: column;
}

@media (max-width: 767px) {
    .testimonials-wrapper {
        height: auto;
    }
}

.testimonials-wrapper .testimonials-slide {
    padding: 0 15%;
}

@media (max-width: 767px) {
    .testimonials-wrapper .testimonials-slide {
        padding: 0;
    }
}

/* .testimonials-wrapper .testimonials-slide .content p {
    color: var(--bs-lightdark);
} */
.testimonials-wrapper .testimonials-slide .swiper-button-next:after,
.testimonials-wrapper .testimonials-slide .swiper-button-prev:after {
    display: none;
}

.testimonials-wrapper .testimonials-slide .swiper-button-next,
.testimonials-wrapper .testimonials-slide .swiper-button-prev {
    width: auto;
    height: auto;
    min-height: 125px;
    height: 100%;
    -webkit-transition: .3s;
    transition: .3s;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    margin: 0;
    transform: translateY(-50%);
    color: var(--bs-dark);
    font-size: var(--fs-16);
    font-weight: 600;
    text-transform: uppercase;
    transition-property: all;
    transition-delay: .15s;
    transition-duration: .15s;
    transition-timing-function: linear;
    background-color: transparent;
    border: none;
    outline: none;
    box-shadow: none;
}

.testimonials-wrapper .testimonials-slide .swiper-button-next:hover,
.testimonials-wrapper .testimonials-slide .swiper-button-next:focus,
.testimonials-wrapper .testimonials-slide .swiper-button-prev:hover,
.testimonials-wrapper .testimonials-slide .swiper-button-prev:focus {
    color: var(--bs-yellow);
}

.testimonials-wrapper .testimonials-slide .swiper-button-prev {
    border-right: 1px solid #e4e4e4;
    padding-right: 50px;
}

.testimonials-wrapper .testimonials-slide .swiper-button-next {
    border-left: 1px solid #e4e4e4;
    padding-left: 50px;
}

@media (max-width: 991px) {
    .testimonials-wrapper .testimonials-slide .swiper-button-prev {
        padding-right: 30px;
    }

    .testimonials-wrapper .testimonials-slide .swiper-button-next {
        padding-left: 30px;
    }
}

@media (max-width: 767px) {

    .testimonials-wrapper .testimonials-slide .swiper-button-next,
    .testimonials-wrapper .testimonials-slide .swiper-button-prev {
        min-height: 1px;
        -webkit-transform: translateY(0);
        transform: translateY(0);
        top: initial;
        right: auto;
        left: auto;
        padding-left: 20px;
        padding-right: 20px;
        position: relative;
        margin: 30px -3px 0;
        display: inline-block;
    }
}

/* testimonials-wrapper end */

.circle-ani {
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    transform-origin: center;
    border-radius: 100%;
    transform: scale(0, 0);
    background-color: var(--bs-white100);
    transition-duration: 300ms;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
    transition-timing-function: cubic-bezier(.215, .61, .355, 1);
    z-index: -1;
}

/* footer start */
.footer {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
}

.footer .footer-top {
    display: block;
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
    border: none;
    border-top: 1px solid rgba(var(--bs-white200-rgb), 0.25);
    border-bottom: 1px solid rgba(var(--bs-white200-rgb), 0.25);
}

.footer .footer-top .row {
    row-gap: 0;
    z-index: 2;
}

.footer .footer-top .footer-start-career {
    display: block;
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
}

.footer .footer-top .footer-start-career a {
    display: flex;
    flex-flow: wrap;
    margin: 0;
    padding: 30px 80px;
    width: 100%;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 767px) {
    .footer .footer-top .footer-start-career a {
        padding: 15px 30px;
    }
}

.footer .footer-top .footer-start-career a .h5 {
    color: var(--bs-white);
    transition-property: all;
    transition-delay: .15s;
    transition-duration: .15s;
    transition-timing-function: linear;
}

.footer .footer-top .footer-start-career a:hover .h5,
.footer .footer-top .footer-start-career a:focus .h5 {
    color: var(--bs-yellow);
}

.footer .footer-top .footer-start-career a .arrow {
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    position: relative;
    overflow: hidden;
    border-radius: 100%;
}

@media (max-width:767px) {
    .footer .footer-top .footer-start-career a .arrow {
        width: 30px;
        height: 30px;
    }

    .footer .footer-top .footer-start-career a .arrow img {
        width: 15px;
        height: 15px;
    }
}

.footer .footer-top .footer-start-career a .arrow .circle-ani {
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    transform-origin: center;
    border-radius: 100%;
    transform: scale(0, 0);
    background-color: var(--bs-yellow);
    transition-duration: 300ms;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
    transition-timing-function: cubic-bezier(.215, .61, .355, 1);
}

.footer .footer-top .footer-start-career a:hover .arrow .circle-ani,
.footer .footer-top .footer-start-career a:focus .arrow .circle-ani {
    height: 100%;
    width: 100%;
    transform: scale(1, 1);
    transition-delay: 300ms;
}

.footer .footer-top .footer-start-career a .arrow img {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 350ms;
}

.footer .footer-top .footer-start-career a:hover .arrow img,
.footer .footer-top .footer-start-career a:focus .arrow img {
    position: relative;
    z-index: 10;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: 300ms;
    transition-duration: 350ms;
    transform: translate3d(0, 0, 0px) scale3d(1, 1, 1) rotate(45deg) skew(0deg, 0deg);
    filter: invert(96%) sepia(71%) saturate(13%) hue-rotate(317deg) brightness(89%) contrast(96%);
}

@media (min-width:576px) {
    .footer .footer-top .divider {
        display: block;
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 1px;
        height: 100%;
        background-color: rgba(var(--bs-white200-rgb), 0.25);
        padding: 0;
        margin: 0;
    }
}

@media (max-width: 575px) {
    .footer .footer-top .divider {
        display: block;
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
        width: 100%;
        height: 1px;
        background-color: rgba(var(--bs-white200-rgb), 0.25);
        padding: 0;
        margin: 0;
    }
}

.footer .footer-bottom {
    display: block;
    position: relative;
    width: 100%;
    padding: 80px 0 0;
    margin: 0;
    z-index: 2;
}

@media (max-width: 767px) {
    .footer .footer-bottom {
        padding: 40px 0 0;
    }
}

.footer .footer-bottom .footer-logo {
    display: block;
    position: relative;
    margin: 0 0 30px;
    padding: 0;
    width: 100%;
}

.footer .footer-bottom .footer-address {
    display: block;
    width: 100%;
    position: relative;
    margin: 0 auto 20px 0;
    padding: 0;
}

@media (min-width: 992px) {
    .footer .footer-bottom .footer-address {
        max-width: 350px;
    }
}

.footer .footer-bottom .footer-address .title {
    display: block;
    margin: 0 0 15px;
}

.footer .footer-bottom .footer-address a {
    display: block;
    position: relative;
    text-decoration: none;
    color: var(--bs-white100);
}

.footer .footer-bottom .footer-address a .h5,
.footer .footer-bottom .footer-address a p {
    color: var(--bs-white100);
    transition-property: all;
    transition-delay: .15s;
    transition-duration: .15s;
    transition-timing-function: linear;
}

.footer .footer-bottom .footer-address a p {
    color: var(--bs-white200);
    font-size: var(--fs-16);
    font-weight: 400;
    margin: 0;
}

.footer .footer-bottom .footer-address a:hover p,
.footer .footer-bottom .footer-address a:focus p {
    color: var(--bs-yellow);
}

.footer .footer-bottom .footer-contact {
    display: flex;
    flex-flow: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    width: 100%;
    margin: 0 0 20px;
    padding: 0;
}

.footer .footer-bottom .footer-contact a,
.footer .footer-bottom .footer-drop-mail a {
    font-size: var(--fs-16);
    font-weight: 400;
    color: var(--bs-white200);
    text-decoration: none;
    transition-property: all;
    transition-delay: .15s;
    transition-duration: .15s;
    transition-timing-function: linear;
}

.footer .footer-bottom .footer-contact a:hover,
.footer .footer-bottom .footer-contact a:focus,
.footer .footer-bottom .footer-drop-mail a:hover,
.footer .footer-bottom .footer-drop-mail a:focus {
    color: var(--bs-yellow);
}

.footer .footer-bottom .footer-drop-mail {
    display: block;
    width: 100%;
    margin: 0 0 30px;
}

.footer .footer-bottom .footer-sicon {
    display: flex;
    flex-flow: wrap;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    margin: 0 0 60px;
    gap: 10px;
}

@media (min-width:992px) {
    .footer .footer-bottom .footer-sicon {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .footer .footer-bottom .footer-sicon {
        margin-bottom: 30px;
    }
}

.footer .footer-bottom .footer-sicon .btn-border {
    background-color: var(--bs-dark);
    border: 1px solid var(--bs-white200);
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    transition-property: all;
    transition-delay: .15s;
    transition-duration: .15s;
    transition-timing-function: linear;
}

.footer .footer-bottom .footer-sicon .btn-border img {
    filter: invert(1);
}

.footer .footer-bottom .footer-sicon .btn-border:hover,
.footer .footer-bottom .footer-sicon .btn-border:focus {
    background-color: var(--bs-white200);
}

.footer .footer-bottom .footer-sicon .btn-border:hover img,
.footer .footer-bottom .footer-sicon .btn-border:focus img {
    filter: invert(0);
}

.footer .footer-bottom .footer-menu {
    display: flex;
    flex-flow: wrap;
    margin: 0;
    padding: 0;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    position: relative;
    column-gap: 40px;
    row-gap: 40px;
}

.footer .footer-bottom .footer-menu .left .footer .footer-bottom .footer-menu .left ul {
    display: flex;
    flex-flow: column;
    align-items: flex-start;
    justify-content: flex-start;
    margin: 0;
    padding: 0;
    flex: auto;
    row-gap: 10px;
    list-style: none;
}

.footer .footer-bottom .footer-menu .left ul li {
    list-style: none;
    margin: 0 0 10px;
    padding: 0;
}

.footer .footer-bottom .footer-menu .left ul li:last-child {
    margin-bottom: 0;
}

.footer .footer-bottom .footer-menu .left span,
.footer .footer-bottom .footer-menu .right span {
    cursor: pointer;
    display: block;
    font-size: var(--fs-24);
    font-weight: 500;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    margin: 0 0 20px;
    padding: 0;
    color: var(--bs-white100);
}

@media (max-width:767px) {

    .footer .footer-bottom .footer-menu .left span,
    .footer .footer-bottom .footer-menu .right span {
        display: inline-flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

    .footer .footer-bottom .footer-menu .left span .arrow,
    .footer .footer-bottom .footer-menu .right span .arrow {
        background-color: transparent;
        border: none;
        transform-origin: center;
        padding: 10px;
    }
}

.footer .footer-bottom .footer-menu .left.active span .arrow,
.footer .footer-bottom .footer-menu .right.active span .arrow {
    transform: rotate(180deg);
}

@media (min-width: 640px) {

    .footer .footer-bottom .footer-menu .left span img,
    .footer .footer-bottom .footer-menu .right span img {
        display: none;
    }
}

.footer .footer-bottom .footer-menu .left span img,
.footer .footer-bottom .footer-menu .right span img {
    cursor: pointer;
}

.footer .footer-bottom .footer-menu ul li a {
    display: inline-block;
    font-size: var(--fs-16);
    font-weight: 400;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    margin: 0;
    padding: 0;
    color: var(--bs-white200);
    transition-property: all;
    transition-delay: .15s;
    transition-duration: .15s;
    transition-timing-function: linear;
}

.footer .footer-bottom .footer-menu ul li a:hover,
.footer .footer-bottom .footer-menu ul li a:focus,
.footer .footer-bottom .footer-menu ul li a.active {
    color: var(--bs-yellow);
}

.footer .footer-bottom .footer-menu ul li a.active {
    pointer-events: none;
}

.footer .footer-bottom .footer-menu .right ul {
    column-count: 3;
    column-gap: 60px;
    margin: 0;
    padding: 0;
    width: auto;
}

@media (min-width: 992px) and (max-width: 1365px) {
    .footer .footer-bottom .footer-menu .right ul {
        column-count: 2;
    }
}

@media (max-width: 639px) {
    .footer .footer-bottom .footer-menu .right ul {
        column-count: 2;
        column-gap: 30px;
    }
}

.footer .footer-bottom .footer-menu .right ul li {
    list-style: none;
    margin: 0 0 10px;
    padding: 0;
}

@media (max-width: 767px) {
    .footer .footer-bottom .footer-menu {
        row-gap: 0px;
    }

    .footer .footer-bottom .footer-menu .left,
    .footer .footer-bottom .footer-menu .right {
        width: 100%;
    }

    .footer .footer-bottom .footer-menu .left ul {
        margin-bottom: 20px;
    }
}

.footer .footer-copyright {
    display: block;
    position: relative;
    margin: 60px 0 0;
    padding: 40px 0;
    width: 100%;
    border: none;
    border-top: 1px solid rgba(var(--bs-white200-rgb), 0.25);
    z-index: 2;
}

@media (max-width: 991px) {
    .footer .footer-copyright .row {
        row-gap: 20px;
    }
}

@media (max-width: 767px) {
    .footer .footer-copyright {
        margin: 40px 0 0;
        padding: 20px 0;
    }
}

.footer-copyright .footer-copyright-sec p {
    display: block;
    position: relative;
    margin: 0;
    padding: 0;
    color: var(--bs-white200);
    font-size: var(--fs-16);
    font-weight: 400;
    font-style: normal;
    font-stretch: normal;
    line-height: var(--fs-20);
}

.footer-copyright .footer-copyright-sec p a,
.footer-copyright ul li a {
    display: inline-block;
    font-size: var(--fs-16);
    font-weight: 400;
    font-style: normal;
    font-stretch: normal;
    line-height: var(--fs-16);
    margin: 0;
    padding: 0;
    color: var(--bs-white200);
    transition-property: all;
    transition-delay: .15s;
    transition-duration: .15s;
    transition-timing-function: linear;
}

@media (max-width: 575px) {

    .footer-copyright .footer-copyright-sec p a,
    .footer-copyright ul li a {
        display: block;
    }
}

.footer-copyright .footer-copyright-sec p a:hover,
.footer-copyright .footer-copyright-sec p a:focus,
.footer-copyright ul li a:hover,
.footer-copyright ul li a.active,
.footer-copyright ul li a:focus {
    color: var(--bs-yellow);
}

.footer-copyright ul li a.active {
    pointer-events: none;
}

.footer-copyright ul {
    display: flex;
    flex-flow: wrap;
    align-items: center;
    justify-content: end;
    gap: 15px;
}

.footer-copyright ul li {
    display: block;
    padding: 0;
    margin: 0;
    line-height: var(--fs-12);
    list-style: none;
    text-align: right;
}

@media (max-width:991px) {
    .footer-copyright ul {
        margin: 0;
        justify-content: center;
    }

    .footer-copyright ul li,
    .footer-copyright .footer-copyright-sec p {
        text-align: center;
    }

    .footer-copyright .footer-copyright-sec p {
        line-height: var(--fs-32);
    }
}


.circle-logo-inner {
    position: relative;
    border-radius: 9999px;
    --tw-bg-opacity: 1;
    /* background-color: rgba(var(--bs-white200-rgb), 1); */
    animation: animName 78s linear infinite;
    width: 200px;
    height: 200px;
    border: none;
}

@keyframes animName {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(10turn);
    }
}

.circle-logo-inner .textcircle {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}

.circle-logo-inner .textcircle text {
    font-size: 32px;
    text-transform: uppercase;
}

.circle-logo-inner .textcircle text {
    fill: #151515;
}

.circle-logo-inner .textcircle textPath {
    font-weight: 400;
    letter-spacing: 17px;
}

#back-to-top {
    position: fixed;
    bottom: 9dvh;
    right: 20px;
    border: none;
    cursor: pointer;
    opacity: 0;
    /* Ensure the button starts hidden */
    transform: translateX(100%);
    z-index: 99999;
}

#back-to-top .circle-logo-inner {
    width: 120px;
    height: 120px;
    background-color: var(--bs-yellow);
}

@media (max-width: 767px) {
    #back-to-top {
        bottom: 5dvh;
        right: 10px;
    }

    #back-to-top .circle-logo-inner {
        width: 60px;
        height: 60px;
    }
}

#back-to-top .circle-logo-inner img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 55px;
    height: 55px;
    filter: invert(0%) sepia(100%) saturate(0%) hue-rotate(0deg) brightness(150%) contrast(150%);
}

@media (max-width: 767px) {
    #back-to-top .circle-logo-inner img {
        width: 35px;
        height: 35px;
    }
}

#back-to-top .circle-logo-inner .textcircle textPath {
    font-weight: 500;
    letter-spacing: 0px;
}

#back-to-top .circle-logo-inner .textcircle text {
    font-size: 51px;
}

#back-to-top .circle-logo-inner .textcircle text {
    fill: var(--bs-white);
}

/* footer end */

/* portfolio start */
@keyframes gradients {
    0% {
        background-position: 0 0;
    }

    25% {
        background-position: 50% 0;
    }

    50% {
        background-position: 90% 0;
    }

    60% {
        background-position: 60%;
    }

    75% {
        background-position: 40%;
    }

    100% {
        background-position: 0 0;
    }
}

.imgBx {
    /* background-image: linear-gradient(to right, #011932, #144b82, #011932, #144b82, #011932); */
    /* background-image: linear-gradient(to right, #4d4d4d, #e5e5e5, #4d4d4d, #e5e5e5, #4d4d4d); */
    /* background-image: linear-gradient(to right, #e5e5e5, #4d4d4d, #e5e5e5, #4d4d4d, #e5e5e5); */
}

.bluedenBg {
    background-image: linear-gradient(to right, #011932, #144b82, #011932, #144b82, #011932);
}

.commonheirBg {
    background-image: linear-gradient(to right, #3e4b20, #899f56, #5d3212, #899f56, #3e4b20);
}

.responsivemenuBg {
    background-image: linear-gradient(to right, #fed10299, #7bc0de, #fb6aa4, #7bc0de, #fed10299);
}

.veggydogBg {
    background-image: linear-gradient(to right, #342b20, #9b866c, #715f49, #9b866c, #342b20);
}

.qeleoBg {
    background-image: linear-gradient(to right, #a91bc3, #6e00d3, #FFB324, #8600fb, #ff00dd);
}

.fanvestorBg {
    background-image: linear-gradient(to right, #fff, #c3f380, #58bc5f, #c3f380, #fff);
}

.cubanBg {
    background-image: linear-gradient(to right, #ffc542, #f3f1b6, #306575, #7f6153, #c95d5425);
}

.julichildBg {
    background-image: linear-gradient(to right, #92397e, #e896e0, #92397e, #e896e0, #f2e8ff);
}

.manhattanenglishBg {
    background-image: linear-gradient(to right, #b5b3c7, #fff, #b5b3c7, #fff, #2e2269);
}

.delmorgancoBg {
    background-image: linear-gradient(to right, #00008b, #c7c7f0, #00008be8, #c7c7f0, #00008b);
}

.jacBg {
    background-image: linear-gradient(to right, #f7a53355, #99bb0155, #011144, #99bb0155, #f7a53355);
}

.pureearthBg {
    background-image: linear-gradient(to right, #ae6720, #327e35, #ae6720, #327e35, #ae6720);
}

.maxumstoneBg {
    background-image: linear-gradient(to right, #EFD200, #009ADE, #EFD200, #009ADE, #EFD200);
}

.americanengBg {
    background-image: linear-gradient(to right, #FFFFFF, #221661, #FFFFFF, #221661, #FFFFFF);
}

.tetlyBg {
    background-image: linear-gradient(to right, #0079C2, #221661, #0079C2, #221661, #0079C2);
}

.datastandardBg {
    background-image: linear-gradient(to right, #1B262C, #FFFFFF, #1B262C, #FFFFFF, #1B262C);
}

.valuebeautyBg {
    background-image: linear-gradient(to right, #282A3E, #9F5D9D, #282A3E, #9F5D9D, #282A3E);
}

.mccmBg {
    background-image: linear-gradient(to right, #0E2740, #30B35B, #0E2740, #30B35B, #0E2740);
}

.paladinbg {
    background-image: linear-gradient(to right, #E5E1DD, #af7c83, #E5E1DD, #af7c83, #E5E1DD);
}

.gocampmauiBg {
    background-image: linear-gradient(to right, #99C3AF, #00A79D, #99C3AF, #00A79D, #99C3AF);
}

.goodschmidtBg {
    background-image: linear-gradient(to right, #F2ECE0, #D4B990, #F2ECE0, #D4B990, #F2ECE0);
}

.astroBg {
    background-image: linear-gradient(to right, #5297A7, #C291C9, #5297A7, #C291C9, #5297A7);
}

.immiBg {
    background-image: linear-gradient(to right, #D5DDE5, #FF957A, #D5DDE5, #FF957A, #D5DDE5);
}

.auraBg {
    background-image: linear-gradient(to right, #FFE7E7, #aa7c8a, #FFE7E7, #aa7c8a, #FFE7E7);
}

.larteBg {
    background-image: linear-gradient(to right, #FEF7EC, #9fd8d3, #FEF7EC, #9fd8d3, #FEF7EC);
}

.bhiBg {
    background-image: linear-gradient(to right, #54c754, #EDEDED, #54c754, #EDEDED, #54c754);
}

.resenseBg {
    background-image: linear-gradient(to right, #E6AF9A, #EDEDED, #E6AF9A, #EDEDED, #E6AF9A);
}

.cannabisBg {
    background-image: linear-gradient(to right, #666A3F, #E7F1D9, #666A3F, #E7F1D9, #666A3F);
}

.riseBg {
    background-image: linear-gradient(to right, #FFFFFF, #72728A, #FFFFFF, #72728A, #FFFFFF);
}

.tripleBg {
    background-image: linear-gradient(to right, #ECFAFB, #4F92CE, #ECFAFB, #4F92CE, #ECFAFB);
}

.tdsBg {
    background-image: linear-gradient(to right, #E9F3F4, #71a7ad, #E9F3F4, #71a7ad, #E9F3F4);
}

.americaBg {
    background-image: linear-gradient(to right, #2091E8, #EDEDED, #2091E8, #EDEDED, #2091E8);
}

.nutracBg {
    background-image: linear-gradient(to right, #2E3192, #E85D75, #2E3192, #E85D75, #2E3192);
}

.ncfBg {
    background-image: linear-gradient(to right, #00B67A, #B7B8B6, #00B67A, #B7B8B6, #00B67A);
}

.vehicleBg {
    background-image: linear-gradient(to right, #5091CA, #FFFFFF, #5091CA, #FFFFFF, #5091CA);
}

.kidBg {
    background-image: linear-gradient(to right, #170B2F, #7952C9, #170B2F, #7952C9, #170B2F);
}

.paywaveBg {
    background-image: linear-gradient(to right, #FFF06C, #333333, #FFF06C, #333333, #FFF06C);
}

.infulencerBg {
    background-image: linear-gradient(to right, #5C160D, #121212, #5C160D, #121212, #5C160D);
}

.scalecraftBg {
    background-image: linear-gradient(to right, #4CA774, #FCFCFC, #4CA774, #FCFCFC, #4CA774);
}

.mobilehopBg {
    background-image: linear-gradient(to right, #0D489A, #CD3C54, #0D489A, #CD3C54, #0D489A);
}

.cambrianBg {
    background-image: linear-gradient(to right, #365175, #222122, #365175, #222122, #365175);
}

.saferxBg {
    background-image: linear-gradient(to right, #FFE3A4, #CFECF9, #FFE3A4, #CFECF9, #FFE3A4);
}

.thornBg {
    background-image: linear-gradient(to right, #805B7A, #FFFFFF, #805B7A, #FFFFFF, #805B7A);
}

.kbmBg {
    background-image: linear-gradient(to right, #FDE2B1, #FFFFFF, #FDE2B1, #FFFFFF, #FDE2B1);
}

.empowherbg {
    background-image: linear-gradient(to right, #99584e, #df8278, #99584e, #df8278, #99584e);
}

.renukzBg {
    background-image: linear-gradient(to right, #3478b8, #c5c5c5, #3478b8, #c5c5c5, #3478b8);
}

.insideBg {
    background-image: linear-gradient(to right, #E28A00, #4488c8, #E28A00, #4488c8, #E28A00);
}

.plantmoreBg {
    background-image: linear-gradient(to right, #699F74, #17161C, #699F74, #17161C, #699F74);
}

.obsidoBg {
    background-image: linear-gradient(to right, #FFBB3C, #010302, #FFBB3C, #010302, #FFBB3C);
}

.minoriBg {
    background-image: linear-gradient(to right, #B07363, #F1EAE3, #B07363, #F1EAE3, #B07363);
}

.insidecircleBg {
    background-image: linear-gradient(to right, #F06742, #0A050B, #F06742, #0A050B, #F06742);
}

.pixstoriBg {
    background-image: linear-gradient(to right, #9ef4ff, #FFBB3C, #9ef4ff, #FFBB3C, #9ef4ff);
}

.homeownerBg {
    background-image: linear-gradient(to right, #464545, #64B564, #464545, #64B564, #464545);
}

.anim-bg {
    background-size: 600%;
    background-position: 0 0;
}

.anim-bg:hover {
    animation-duration: 10s;
    animation-iteration-count: infinite;
    animation-name: gradients;
}

.section-productions .bx {
    display: none;
}

.section-productions .bx.show,
.section-productions .bx[style*="display: block"] {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-productions .imageBx {
    position: relative;
    display: block;
    overflow: hidden;

}

.section-productions .imageBx .imgBx {
    display: block;
    position: relative;
    height: auto;
    width: 100%;
    overflow: hidden;
    padding-top: 100%;
    border-radius: 20px;
    margin: 0 0 20px;
}

@media (max-width: 1600px) {
    .section-productions .imageBx .imgBx {
        padding-top: 100%;
    }
}

.section-productions .imageBx .imgBx img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow: hidden;
    object-fit: cover;
    padding-left: 20px;
    padding-right: 20px;
    transition: all .65s;
    max-width: 75%;
    height: auto;
}

/* .section-productions .imageBx .imgBx:hover img {
    mix-blend-mode: luminosity;
} */

.section-productions .imageBx .details {
    display: flex;
    flex-flow: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    width: 100%;
    padding: 20px 20px 0;
    border-top: 1px solid rgba(var(--bs-lightdark-rgb), 0.15);
}

.section-productions .imageBx .details .left {
    width: 100%;
    max-width: calc(100% - 70px);
    border: none;
    margin: 0;
    padding: 0;
}

.section-productions .imageBx .details .arrow {
    width: 40px;
    height: 40px;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.section-productions .imageBx .details .arrow img {
    filter: invert(1);
    transition-property: all;
    transition-delay: .15s;
    transition-duration: .15s;
    transition-timing-function: linear;
}

.section-productions .imageBx:hover .details .arrow img {
    filter: invert(0);
    transform: rotate(45deg);
}

.section-productions .imageBx .details .arrow .circle-ani {
    z-index: -1;
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    transform-origin: center;
    transform: scaleX(0) scaleY(0);
    border-radius: 9999px;
    background-color: rgba(var(--bs-dark-rgb), 1);
    transition-duration: 500ms;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
    transition-timing-function: cubic-bezier(.215, .61, .355, 1);
}

.section-productions .imageBx:hover .details .arrow .circle-ani {
    height: 100%;
    width: 100%;
    transform: scaleX(1) scaleY(1);
    background-color: rgba(var(--bs-dark-rgb), 1);
    transition-duration: 1000ms;
}

/* portfolio end */

/* about page start */
.verticalFlip {
    display: block;
    position: relative;
    height: 48px;
}

.verticalFlip * {
    text-align: left;
    font-size: var(--fs-48);
    font-weight: 700;
    text-transform: capitalize;
    line-height: 100%;
    color: var(--bs-yellow);
}

.verticalFlip span {
    position: absolute;
    overflow: hidden;
    opacity: 0;
    animation: vertical 6s linear infinite;
    -ms-animation: vertical 6s linear infinite;
    -webkit-animation: vertical 6s linear infinite;
}

.verticalFlip span:nth-child(2) {
    animation-delay: 2s;
    -ms-animation-delay: 2s;
    -webkit-animation-delay: 2s;
}

.verticalFlip span:nth-child(3) {
    animation-delay: 4s;
    -ms-animation-delay: 4s;
    -webkit-animation-delay: 4s;
}

@keyframes vertical {
    0% {
        opacity: 0;
    }

    5% {
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    25% {
        opacity: 1;
    }

    30% {
        opacity: 0;
    }

    80% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

.weare {
    display: grid;
    gap: 20px 17px;
}

@media (min-width: 640px) and (max-width: 1023px) {
    .weare {
        grid-template-columns: minmax(50%, 50%) minmax(50%, 50%);
    }
}

@media (min-width: 1024px) {
    .weare {
        gap: 0px 17px;
        grid-template-columns: minmax(calc(30% - 17px), 40%) minmax(calc(35% - 17px), 30%) minmax(calc(35% - 17px), 30%);
    }
}

.weare .card {
    background-color: rgba(var(--bs-white200-rgb), .15);
    background-repeat: no-repeat;
    border: 2px solid rgba(var(--bs-white-rgb), .08);
    border-radius: 20px;
    flex-direction: column;
    justify-content: start;
    height: 50vh;
    padding: 50px 40px;
    display: flex;
    backdrop-filter: blur(6px);
    overflow: hidden;
}

@media (max-width: 767px) {
    .weare .card {
        padding: 30px 30px 40px 20px;
    }
}

@media (max-width: 639px) {
    .weare .card {
        height: 30vh;
    }
}

.weare .start__grid-one {
    grid-row-start: 1;
    grid-column-end: 2;
    grid-column-start: 1;
    display: flex;
    flex-flow: column;
    justify-content: end;
}

@media (min-width: 640px) and (max-width: 1023px) {
    .weare .start__grid-one {
        grid-column-end: 3;
    }
}

@media (min-width: 1024px) {
    .weare .start__grid-one {
        padding-right: 20px;
    }
}

.weare .card .content-L {
    margin-bottom: auto;
    position: relative;
}

@media (max-width: 575px) {
    .weare .card .content-L {
        margin-bottom: 20px;
    }
}

.weare .bg-circle_hero2 {
    right: -1dvw;
}

@media (min-width: 1024px) {
    .weare .start__grid-two {
        grid-row-start: 1;
        grid-row-end: 3;
    }
}

@media (min-width: 1024px) {
    .weare .start__grid-three {
        grid-row-start: 1;
        grid-row-end: 3;
    }
}

@media (max-width: 575px) {
    .weare .card {
        height: auto;
        max-height: none;
    }
}

.section-creative .block-grid {
    width: 100%;
}

.section-creative .block-grid .start__grid-one {
    grid-row-start: 1;
    grid-column-end: 2;
    grid-column-start: 1;
    display: flex;
    flex-flow: column;
    justify-content: end;
}

@media (min-width:1200px) {
    .section-creative .block-grid {
        display: grid;
        gap: 30px;
        grid-template-columns: minmax(calc(33.333% - 30px), 40%) minmax(calc(33.333% - 30px), 30%) minmax(calc(33.333% - 30px), 30%);
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .section-creative .block-grid {
        display: grid;
        gap: 20px;
        grid-template-columns: minmax(calc(50% - 20px), 50%) minmax(calc(50% - 20px), 50%);
    }
}


.section-creative .block-grid .multicolumn-card__info {
    position: relative;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    border-radius: 20px;
}

@media (max-width: 991px) {
    .section-creative .block-grid .multicolumn-card__info {
        padding: 40px 20px;
        height: auto;
    }
}

.section-creative .block-grid .multicolumn-card__info .title {
    margin-bottom: 20px;
    margin-top: auto;
}

.section-creative .block-grid .start__grid-two {
    background-color: var(--bs-yellow);
}

.section-creative .block-grid .start__grid-three {
    background-color: var(--bs-white200);
}

.section-creative .block-grid .start__grid-four {
    background-color: var(--bs-lightdark);
}

.section-creative .block-grid .start__grid-five {
    background-color: var(--bs-white200);
}

.section-creative .block-grid .start__grid-six {
    background-color: var(--bs-lightdark);
}

@media (min-width: 1200px) {
    .section-creative .block-grid .start__grid-two {
        grid-row-start: 2;
        grid-row-end: 3;
    }

    .section-creative .block-grid .start__grid-four,
    .section-creative .block-grid .start__grid-three {
        grid-row-start: 1;
        grid-row-end: 3;
    }

    .section-creative .block-grid .start__grid-five {
        grid-column-start: 1;
        grid-column-end: 2;
    }

    .section-creative .block-grid .start__grid-six {
        grid-column-start: 2;
        grid-column-end: 4;
        justify-content: start;
    }
}

.section-creative .block-grid .multicolumn-card__info .content-L {
    color: var(--bs-white);
    opacity: 0.3;
    margin-bottom: 4dvh;
}

@media (max-width: 991px) {

    /* .section-creative .block-grid .multicolumn-card__info .content-L {
        margin-bottom: auto;
    } */
    .section-creative .block-grid .multicolumn-card__info .title {
        margin-top: auto;
    }
}

.section-creative .block-grid .start__grid-three .content-L,
.section-creative .block-grid .start__grid-five .content-L {
    color: var(--bs-lightdark);
}

/* about page end */

/* breadcrumb start */
.img-fluid {
    display: block;
}

.anim-ring {
    position: fixed;
    top: 0;
    right: -20%;
    opacity: 0;
    z-index: 1;
    width: 100%;
    max-width: max(50vw, 50rem);
}

.anim-ring img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.breadcrumb-wrapper {
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.breadcrumb-wrapper .contact-experience {
    background-color: transparent;
}

@keyframes fluid-anim {
    0% {
        border-radius: 39% 61% 55% 45% / 44% 37% 63% 56%;
        /* transform: rotate(0turn);*/
        background-position: 0% 50%;
    }

    25% {
        border-radius: 45% 55% 48% 52% / 60% 36% 64% 40%;
        /* transform: rotate(1turn); */
    }

    50% {
        border-radius: 56% 44% 28% 72% / 46% 63% 37% 54%;
        /* transform: rotate(1turn); */
        background-position: 100% 50%;
    }

    75% {
        border-radius: 62% 38% 37% 63% / 39% 32% 68% 61%;
        /* transform: rotate(1turn); */
    }

    100% {
        border-radius: 39% 61% 55% 45% / 44% 37% 63% 56%;
        /* transform: rotate(0turn);*/
        background-position: 0% 50%;
    }
}

@keyframes fluid-anim2 {
    0% {
        border-radius: 39% 61% 55% 45% / 44% 37% 63% 56%;
        /* background-position: 0% 50%; */
    }

    25% {
        border-radius: 45% 55% 48% 52% / 60% 36% 64% 40%;
    }

    50% {
        border-radius: 56% 44% 28% 72% / 46% 63% 37% 54%;
        /* background-position: 100% 50%; */
    }

    75% {
        border-radius: 62% 38% 37% 63% / 39% 32% 68% 61%;
    }

    100% {
        border-radius: 39% 61% 55% 45% / 44% 37% 63% 56%;
        /* background-position: 0% 50%; */
    }
}

.bg-circle1 {
    opacity: .41;
    background-color: rgba(255, 0, 0, 0);
    background: radial-gradient(farthest-side at bottom left, #6b3b00 10%, #935d00 50%, #bf8200 75%, rgba(var(--bs-yellow-rgb), 1));
    background-blend-mode: hard-light, overlay, overlay, overlay, difference, difference, normal;
    border-radius: 100%;
    border: none;
    /*1px solid rgba(var(--bs-yellow-rgb), .41)*/
    width: 18dvw;
    height: 18dvw;
    margin-top: 0;
    margin-left: 0;
    /* transition: all .5s; */
    position: absolute;
    top: 5dvh;
    right: 5dvw;
    box-shadow: 10px 10px 60px 10px rgba(var(--bs-yellow-rgb), 0.71);
    z-index: -2;
    animation: fluid-anim 2.5s infinite linear;
    filter: blur(0px);
}

.bg-circle2 {
    opacity: .41;
    background-color: rgba(255, 0, 0, 0);
    background: radial-gradient(farthest-side at bottom right, #6b3b00 10%, #935d00 50%, #bf8200 75%, rgba(var(--bs-yellow-rgb), 1));
    border-radius: 100%;
    border: none;
    /*1px solid rgba(var(--bs-yellow-rgb), .41)*/
    width: 18dvw;
    height: 18dvw;
    margin-top: 0;
    margin-left: 0;
    /* transition: all .3s; */
    position: absolute;
    bottom: -3dvh;
    right: 4dvw;
    box-shadow: 10px 10px 20px 0px rgba(var(--bs-yellow-rgb), 0.41);
    z-index: -1;
    animation: fluid-anim2 2s infinite linear;
}

.breadcrumb-wrapper .overlay {
    /* background-color: rgba(var(--bs-dark-rgb), 0.31); */
    backdrop-filter: blur(0px);
}

/* .breadcrumb-wrapper .title h1 {
    text-transform: capitalize;
} */
.breadcrumb {
    margin: 0;
}

.breadcrumb .content {
    max-width: 400px;
}

.breadcrumb-ul {
    display: flex;
    flex-flow: wrap;
    padding: 0;
    list-style: none;
    width: 100%;
    align-items: center;
    position: relative;
    gap: 10px;
}

.breadcrumb-ul li {
    display: block;
    position: relative;
    margin: 0;
    padding: 0;
}

.breadcrumb-ul li {
    color: var(--bs-white200);
    font-family: var(--bs-font-inter);
    font-size: var(--fs-18);
    font-style: normal;
    font-weight: 400;
    font-stretch: normal;
    line-height: normal;
    margin: 0;
    padding: 0;
    display: block;
}

.breadcrumb-ul li a {
    color: var(--bs-white200);
    font-family: var(--bs-font-inter);
    font-size: var(--fs-18);
    font-style: normal;
    font-weight: 400;
    font-stretch: normal;
    line-height: 20px;
    margin: 0;
    padding: 0;
    display: block;
    text-decoration: none;
    transition-property: all;
    transition-delay: .15s;
    transition-duration: .15s;
    transition-timing-function: linear;
}

.breadcrumb-ul li a:hover {
    color: var(--bs-yellow);
}

.breadcrumb-ul li span {
    color: var(--bs-yellow);
    font-family: var(--bs-font-inter);
    font-size: var(--fs-18);
    font-style: normal;
    font-weight: 400;
    font-stretch: normal;
    line-height: normal;
    margin: 0;
    padding: 0;
    display: block;
}

.breadcrumb-wrapper .img-ratio-landscape {
    position: relative;
    overflow: hidden;
    padding-top: calc(2/4*100%);
    border-radius: 20px;
    display: block;
    width: 100%;
}

.breadcrumb-wrapper .img-ratio-landscape img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100.5%;
    height: 100.5%;
    object-fit: cover;
    object-position: top;
}

/* breadcrumb end */

/* blog list start */
.blog-card {
    grid-column-gap: 0rem;
    grid-row-gap: 0;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    display: grid;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0px 8px 1.75rem -1px rgba(119, 119, 119, 0.35);
}

.blog-card .img {
    position: relative;
    overflow: hidden;
    width: 100%;
    display: block;
    padding-top: 55%;
}

.blog-card .img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-content-wrap {
    background-color: var(--bs-white100);
    align-items: center;
    display: flex;
}

.blog-content-div {
    z-index: 5;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    padding: 30px 25px;
    display: flex;
    position: relative;
    overflow: visible;
}

.card-landscape .blog-content-div {
    padding: 50px;
}

@media screen and (max-width: 1023px) {
    .card-landscape {
        grid-template-columns: 1fr;
    }

    .card-landscape .blog-content-div {
        padding: 30px 25px;
    }
}

.blog-featured-text {
    color: var(--bs-white200);
    text-align: center;
    background-color: var(--bs-dark);
    border-radius: 5px;
    min-width: 2.5rem;
    margin-top: -44px;
    margin-bottom: 10px;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    text-decoration: none;
    display: block;
}

.card-landscape .blog-featured-text {
    margin-top: 0;
    color: var(--bs-white200);
    background-color: var(--bs-dark);
}

.author-and-date {
    align-items: center;
    display: flex;
    flex-flow: wrap;
    justify-content: space-between;
    width: 100%;
    gap: 20px;
}

.post-grid-author {
    width: 100%;
}

.post-grid-author a:hover {
    color: var(--bs-yellow) !important;
}

.post-grid-date {
    color: rgba(21, 21, 21, 0.6);
    font-size: 12px;
}

.blog-heading {
    color: var(--bs-dark);
    transition-property: all;
    transition-delay: .15s;
    transition-duration: .15s;
    transition-timing-function: linear;
}

.blog-card:hover .blog-heading {
    color: var(--bs-yellow);
}

.blog-heading.grid-post-heading {
    font-weight: 500;
}

.blog-heading.grid-post-heading {
    margin-top: 20px;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-summary {
    color: var(--bs-lightdark);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0 0 30px;
    min-height: 78px;
}

.latest-slide .swiper-button-next:after,
.latest-slide .swiper-button-prev:after {
    display: none;
}

.latest-slide .swiper-button-next,
.latest-slide .swiper-button-prev {
    width: auto;
    height: auto;
    background-color: var(--bs-dark);
    padding: 16px;
    -webkit-transition: .3s;
    transition: .3s;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    margin: 0;
    transform: translateY(-50%);
    color: var(--bs-white100);
    font-size: var(--fs-16);
    font-weight: 600;
    text-transform: uppercase;
}

.latest-slide .swiper-button-prev img {
    transform: rotate(180deg);
}

.latest-slide .swiper-button-next img,
.latest-slide .swiper-button-prev img {
    filter: invert(1);
}

.latest-slide .swiper-button-prev {
    left: 0;
}

.latest-slide .swiper-button-next {
    right: 0;
}

.blogcard-slider .swiper-wrapper {
    height: auto;
}

.blogcard-slider .blogcard-pagination {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    margin: 30px 0 0;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

.blogcard-slider .blogcard-pagination .swiper-pagination-bullet {
    display: block;
    position: relative;
    width: 10px;
    height: 10px;
    background: var(--bs-yellow);
    border-radius: 50%;
    overflow: hidden;
    opacity: 0.41;
}

.blogcard-slider .blogcard-pagination .swiper-pagination-bullet-active {
    opacity: 1;
}

.blogcard-navigation {
    display: flex;
    flex-flow: wrap;
    margin: 0;
    padding: 0;
    align-items: flex-end;
    justify-content: flex-end;
    height: 100%;
    gap: 15px;
}

@media (max-width: 991px) {
    .blogcard-navigation {
        align-items: flex-start;
        justify-content: flex-start;
        margin-top: 30px;
    }
}

.blogcard-navigation .blogcard-button-next {
    display: flex;
    flex-flow: wrap;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: 1px solid var(--bs-white);
    background-color: transparent;
    border-radius: 100px;
    transition-property: all;
    transition-delay: .15s;
    transition-duration: .15s;
    transition-timing-function: linear;
    cursor: pointer;
}

.blogcard-navigation .blogcard-button-prev {
    display: flex;
    flex-flow: wrap;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: 1px solid var(--bs-white);
    background-color: transparent;
    border-radius: 100px;
    transition-property: all;
    transition-delay: .15s;
    transition-duration: .15s;
    transition-timing-function: linear;
    cursor: pointer;
}

.blogcard-navigation .swiper-button-disabled {
    cursor: none;
    opacity: 0.41;
    pointer-events: none;
}

.blogcard-navigation .blogcard-button-next svg,
.blogcard-navigation .blogcard-button-prev svg {
    stroke: var(--bs-white100);
}

.blogcard-navigation .blogcard-button-prev svg {
    transform: rotate(180deg);
}

.blogcard-navigation .blogcard-button-next:hover svg,
.blogcard-navigation .blogcard-button-prev:hover svg {
    stroke: var(--bs-dark);
}

.blogcard-navigation .blogcard-button-next:hover,
.blogcard-navigation .blogcard-button-prev:hover {
    background-color: var(--bs-white100);
}

@media (max-width: 575px) {
    .mobp0 {
        padding: 0;
    }

    .blogcard-slider {
        padding: 0 25px;
    }
}

/* blog list end */

/* single blog start */
.inner-banner .back {
    display: flex;
    align-items: center;
    gap: 24px;
    margin: 0 0 40px;
    transition-property: all;
    transition-delay: .15s;
    transition-duration: .15s;
    transition-timing-function: linear;
}

.inner-banner .back img,
.inner-banner .pinned-quote ul li img {
    filter: invert(1);
}

.inner-banner .back span,
.inner-banner .pinned-quote ul li span {
    font-size: var(--fs-18);
    line-height: 28px;
    color: var(--bs-white100);
    font-weight: 400;
    text-transform: capitalize;
    transition-property: all;
    transition-delay: .15s;
    transition-duration: .15s;
    transition-timing-function: linear;
}

.inner-banner .back:hover {
    opacity: 0.7;
}

.inner-banner .pinned-quote ul {
    display: flex;
    flex-flow: wrap;
    align-items: start;
    justify-content: start;
    gap: 40px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.inner-banner .pinned-quote ul li {
    display: flex;
    align-items: center;
    gap: 24px;
}

.inner-banner .img {
    display: block;
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-top: calc(3/8*100%);
    border-radius: 5px;
}

.inner-banner .img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.single-content a {
    color: var(--bs-yellow);
    transition-property: all;
    transition-delay: .15s;
    transition-duration: .15s;
    transition-timing-function: linear;
}

.single-content a:hover {
    opacity: 0.7;
}

.single-content blockquote {
    background-color: var(--bs-white100);
    border: none;
    border-radius: 5px;
    display: block;
    margin: 30px 40px 30px 0;
    max-width: none;
    padding: 40px;
    width: auto;
}

@media (max-width: 991px) {
    .single-content blockquote {
        float: none;
        margin: 0 auto 30px;
    }
}

.single-content ul {
    list-style: none;
    margin: 0;
    padding: 20px 0;
    display: grid;
}

.single-content ul li {
    position: relative;
    margin: 8px 0;
    padding: 0 0 0 20px;
    color: var(--bs-white100);
}

.single-content ul li:last-child {
    margin-bottom: 0;
}

.single-content ul li:before {
    content: "";
    position: absolute;
    top: 10px;
    left: 0;
    width: 5px;
    height: 5px;
    background-color: var(--bs-white100);
    border-radius: 5px;
}

.single-content ul li a {
    color: var(--bs-white100);
    font-weight: 400;
    text-decoration: none;
    transition-property: all;
    transition-delay: .15s;
    transition-duration: .15s;
    transition-timing-function: linear;
}

.single-content ul li a:hover {
    color: var(--bs-yellow);
}

.single-content blockquote ul {
    padding: 0;
}

.single-content blockquote ul li:before {
    content: "";
    position: absolute;
    top: 10px;
    left: 0;
    width: 5px;
    height: 5px;
    background-color: var(--bs-dark);
    border-radius: 5px;
}

.single-content blockquote ul li a {
    color: var(--bs-dark);
}

.single-content h1,
.single-content h2,
.single-content h3,
.single-content h4,
.single-content h5,
.single-content h6 {
    color: var(--bs-white100);
    padding: 20px 0;
}

.single-content p {
    color: var(--bs-white100);
    padding: 5px 0;
    margin: 0;
}

.single-content .pagination {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, .25);
    margin: 40px 0 0;
    padding: 40px 0 0;
    justify-content: space-between;
}

.single-content .pagination .prev,
.single-content .pagination .next {
    color: var(--bs-white100);
    display: flex;
    gap: 5px;
    align-items: center;
    text-transform: capitalize;
}

.single-content .pagination .prev img {
    filter: invert(1);
    transform: rotate(180deg);
}

.single-content .pagination .next img {
    filter: invert(1);
}

.single-content .share-ico {
    display: flex;
    flex-flow: wrap;
    align-items: center;
    gap: 10px;
    margin: 30px 0 0;
    justify-content: end;
    text-transform: capitalize;
}

/* single blog end */

/* accordion start */
.etse-accordion {
    display: flex;
    flex-flow: column;
    align-items: flex-start;
    justify-content: flex-start;
    margin: 0;
    padding: 0;
    width: 100%;
    position: relative;
}

.accordion-item {
    display: block;
    position: relative;
    width: 100%;
    margin: 0 0 20px;
}

.accordion-item:last-child {
    margin-bottom: 0;
}

.accordion-item .accordion-title {
    cursor: pointer;
    position: relative;
    display: flex;
    flex-flow: wrap;
    align-items: center;
    justify-content: space-between;
    margin: 0;
    padding: 0 0 20px;
    width: 100%;
    border: none;
    border-bottom: 1px solid rgba(64, 64, 64, 0.4);
}

@media (max-width: 767px) {
    .accordion-item .accordion-title {
        padding: 0 0 20px 0;
    }
}

.accordion-item .accordion-title:after {
    position: absolute;
    bottom: 0px;
    left: 0px;
    height: 1px;
    width: 0px;
    background-color: var(--bs-white100);
    transition-property: all;
    transition-duration: 1000ms;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    content: '';
}

.accordion-item .accordion-title:hover:after,
.accordion-item .accordion-title.active:after {
    width: 100%;
    transition-property: all;
    transition-duration: 1000ms;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-item .accordion-title .arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    position: relative;
}

@media (max-width: 767px) {
    .accordion-item .accordion-title .arrow {
        width: 40px;
        height: 40px;
    }
}

.accordion-item .accordion-title .arrow img {
    transition-property: all;
    transition-delay: .15s;
    transition-duration: .15s;
    transition-timing-function: linear;
    filter: opacity(0.4) invert(1);
    transform: rotate(180deg);
    position: relative;
    z-index: 9;
}

@media (max-width: 767px) {
    .accordion-item .accordion-title .arrow img {
        width: 20px;
        height: 20px;
    }
}

.accordion-item .accordion-title:hover .arrow img,
.accordion-item .accordion-title.active .arrow img {
    transform: rotate(0deg);
    transition-property: all;
    transition-duration: 300ms;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    filter: invert(0) opacity(1);
}

.accordion-item .accordion-title:hover .arrow .circle-ani,
.accordion-item .accordion-title.active .arrow .circle-ani {
    transform: scaleX(1) scaleY(1);
    transition-duration: 350ms;
    /* background-color: var(--bs-dark); */
}

.benefits-wrapper .accordion-item .accordion-title:hover .arrow .circle-ani,
.benefits-wrapper .accordion-item .accordion-title.active .arrow .circle-ani {
    background-color: var(--bs-dark);
}

.accordion-item .accordion-title .title {
    width: 100%;
    max-width: calc(100% - 100px);
}

.accordion-item .accordion-title .title span {
    font-size: var(--fs-20);
    font-weight: 500;
    color: var(--bs-white100);
}

.accordion-item .tag {
    align-items: center;
    display: flex;
    gap: 10px;
    position: relative;
    color: var(--bs-yellow);
    text-transform: capitalize;
    margin: 0 0 10px;
    padding: 0;
}

.accordion-item .accordion-content {
    padding: 20px;
    display: none;
}

.accordion-item .accordion-content.active {
    border: none;
    border-bottom: 1px solid rgba(64, 64, 64, 0.4);
}

@media (max-width: 767px) {
    .accordion-item .accordion-content {
        padding: 20px 10px;
    }
}

.faq-wrapper .accordion-item .accordion-title {
    margin: 10px 0 0;
    padding: 0 0 10px;
    background-color: transparent;
    text-align: left;
}

.faq-wrapper .accordion-item .accordion-title .title span {
    color: var(--bs-dark);
    line-height: 150%;
}

.faq-wrapper .accordion-item .accordion-title .arrow img {
    filter: opacity(1) invert(0);
}

.faq-wrapper .circle-ani {
    background-color: var(--bs-dark);
}

.faq-wrapper .accordion-item .accordion-title:hover .arrow img,
.faq-wrapper .accordion-item .accordion-title.active .arrow img {
    filter: invert(1) opacity(1);
}

/* accordion end */

/* bar-wrapper start */
.bar-wrapper {
    top: 0;
    display: block;
    position: sticky;
    margin: 0;
    padding: 0;
    width: 100%;
    background-color: #2c2c2c;
    z-index: 99;
    transition-property: all;
    transition-delay: .15s;
    transition-duration: .15s;
    transition-timing-function: linear;
}

.bar-wrapper ul {
    position: relative;
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-flow: wrap;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.bar-wrapper ul li a {
    color: var(--bs-white100);
    display: block;
    position: relative;
    font-family: var(--bs-font-inter);
    font-size: var(--fs-18);
    font-weight: 400;
    font-style: normal;
    font-stretch: normal;
    line-height: 40px;
    margin: 0;
    padding: 20px 0;
    text-decoration: none;
    text-transform: capitalize;
    outline: none;
    box-shadow: none;
    transition-property: all;
    transition-delay: .15s;
    transition-duration: .15s;
    transition-timing-function: linear;
}

.bar-wrapper ul li a:hover,
.bar-wrapper ul li a.active {
    color: var(--bs-yellow);
}

.bar-wrapper ul li a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--bs-yellow);
    transition-property: all;
    transition-delay: .15s;
    transition-duration: .15s;
    transition-timing-function: linear;
}

.bar-wrapper ul li a.active::after {
    width: 100%;
}

@media screen and (max-width: 767px) {
    .bar-wrapper .menu-toggle {
        cursor: pointer;
        display: flex;
        flex-flow: wrap;
        align-items: center;
        justify-content: space-between;
        margin: 0;
        padding: 10px 0;
        font-size: 18px;
        font-weight: 400;
        font-style: normal;
        font-stretch: normal;
        line-height: 130%;
        color: var(--bs-white100);
    }

    .bar-wrapper .menu {
        display: none;
        /* Hide the list items */
        flex-direction: column;
        /* Stack items vertically */
        position: absolute;
        top: 43px;
        /* Adjust as needed based on your design */
        left: 0;
        width: 100%;
        background-color: #2c2c2c;
        z-index: 1;
    }

    .bar-wrapper .menu.active {
        display: flex;
        gap: 10px
    }

    .bar-wrapper .menu li {
        margin-right: 0;
    }

    .bar-wrapper .menu li:last-child {
        border-bottom: none;
    }

    .bar-wrapper .menu li a {
        padding: 10px 0;
        display: block;
        text-decoration: none;
        line-height: 1;
    }
}

/* bar-wrapper end */

/* common content start */
.common-contant .inner-ctn {
    display: block;
    position: relative;
    padding: 50px 0 0;
    margin: 0;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.20);
}

.common-contant .inner-ctn.frm {
    border: none;
    padding: 0;
}

@media (max-width: 767px) {
    .common-contant .inner-ctn {
        padding-top: 30px;
    }
}

.border-tp {
    border-top: 1px solid rgba(var(--bs-white100-rgb), 0.25);
    padding-top: 50px;
}

.border-btm {
    border-bottom: 1px solid rgba(var(--bs-white100-rgb), 0.25);
    padding-bottom: 50px;
    margin-bottom: 30px;
}

.border-tbtm {
    border-bottom: 1px solid rgba(var(--bs-white100-rgb), 0.25);
    padding-bottom: 10px;
}

@keyframes upDown1 {
    0% {
        top: 5dvh;
        /* Start at original position */
    }

    100% {
        top: 6dvh
            /* Move up by 50px */
    }
}

@keyframes upDown2 {
    0% {
        bottom: 0;
        /* Start at original position */
    }

    100% {
        bottom: 1dvh
            /* Move up by 50px */
    }
}

.bg-circle_hero1 {
    opacity: 1;
    background-color: rgba(255, 0, 0, 0);
    background-image: radial-gradient(farthest-side at bottom left, #6b3b00 10%, #935d00 50%, #bf8200 75%, rgba(var(--bs-yellow-rgb), 1));
    border-radius: 100%;
    border: none;
    width: 150px;
    height: 150px;
    margin-top: 0;
    margin-left: 0;
    position: absolute;
    top: 5dvh;
    bottom: auto;
    left: 12dvw;
    right: 0%;
    box-shadow: 10px 10px 80px -10px rgba(var(--bs-yellow-rgb), 0.71);
    filter: blur(1px);
    z-index: -1;
}

@media (max-width: 767px) {
    .bg-circle_hero1 {
        top: 70dvw;
        width: 80px;
        height: 80px;
    }
}

.bg-circle_hero2 {
    opacity: 1;
    background-color: rgba(255, 0, 0, 0);
    background-image: radial-gradient(farthest-side at bottom right, #6b3b00 10%, #935d00 50%, #bf8200 75%, rgba(var(--bs-yellow-rgb), 1));
    border-radius: 100%;
    border: 1px solid rgba(var(--bs-yellow-rgb), .41);
    width: 80px;
    height: 80px;
    margin-top: 0;
    margin-left: 0;
    position: absolute;
    top: auto;
    bottom: 0;
    left: auto;
    right: 14dvw;
    box-shadow: 10px 10px 80px -10px rgba(var(--bs-yellow-rgb), 0.71);
    filter: blur(1px);
    z-index: -1;
}

@media (max-width: 767px) {
    .bg-circle_hero2 {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 767px) {

    .approach-slider,
    .growthslider,
    .blogcard-slider,
    .why-choose-row {
        overflow: inherit;
    }

    .howslider,
    .logslider {
        overflow: inherit;
    }
}

@media (min-width: 768px) {
    .approach {
        display: grid;
        gap: 20px 17px;
        grid-template-columns: 1fr;
    }
}

@media (min-width: 1200px) {
    .approach {
        grid-template-columns: minmax(calc(40% - 17px), 40%) minmax(calc(30% - 17px), 30%) minmax(calc(30% - 17px), 30%);
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .approach {
        grid-template-columns: minmax(calc(50% - 20px), 50%) minmax(calc(50% - 20px), 50%);
    }
}

.bg {
    background-color: rgba(var(--bs-white200-rgb), 1);
}

.bg__white100 {
    background-color: rgba(var(--bs-white100-rgb), 1);
}

.bg__white200 {
    background-color: rgba(var(--bs-white200-rgb), 1);
}

.bg__yellow {
    background-color: rgba(var(--bs-yellow-rgb), 1);
}

.bg__lightdark {
    background-color: rgba(var(--bs-lightdark-rgb), 1);
}

.bg__yellow>.start__number {
    color: var(--bs-white100);
}

.bg__white100>.start__number {
    color: var(--bs-dark);
}

.bg__lightdark>.start__number {
    color: var(--bs-white100);
}

.start__number {
    margin-bottom: 30px;
}

@media (min-width: 768px) {
    .bg__yellow>.start__number {
        margin-bottom: 4dvh;
    }

    .bg__white100>.start__number {
        margin-bottom: 4dvh;
    }

    .bg__lightdark>.start__number {
        margin-bottom: 4dvh;
    }
}

.bg__yellow .ico,
.bg__white100 .ico,
.bg__lightdark .ico {
    position: absolute;
    top: 20px;
    right: 40px;
    filter: invert(1);
}

.bg__white100 .ico {
    filter: invert(0);
}

.content-L {
    font-size: 4dvw;
    font-weight: 500;
    line-height: 4dvw;
    text-align: right;
    opacity: 0.41;
}

.content-L.white {
    color: var(--bs-white200);
}

.start__card_radius {
    border-radius: 20px;
}

.start__card {
    position: relative;
    padding: 30px 40px 50px 30px;
    display: flex;
    flex-direction: column;
}

@media (max-width: 767px) {
    .start__card {
        padding: 30px 20px;
        height: auto;
    }

    .content-L {
        font-size: 6dvw;
    }
}

.approach .start__grid-one {
    grid-row-start: 1;
    display: flex;
    flex-flow: column;
    justify-content: end;
    margin-bottom: 20px;
}

@media (min-width: 1200px) {
    .approach .start__grid-three {
        grid-row-start: 1;
        grid-row-end: 3;
    }

    .approach .start__grid-four {
        grid-row-start: 1;
        grid-row-end: 3;
    }

    .approach .start__grid-five {
        grid-column-start: 1;
        grid-row: 3 / span 2;
    }

    .approach .start__grid-six {
        grid-row-start: 3;
    }

    .approach .start__grid-seven {
        grid-row-start: 3;
    }

    .approach .start__grid-eight {
        grid-column-start: 2;
        grid-column-end: 4;
    }

    .approach .last-grid-row-none {
        grid-row: 3 / span 1;
    }

    .approach .last-grid-col-full {
        grid-column-start: 2;
        grid-column-end: 4;
    }
}

@media screen and (max-width: 1440px) {
    figure {
        display: none;
    }

    .approach .start__grid-eight {
        grid-column-start: 2;
    }
}

@media (min-width: 768px) and (max-width: 1199px) {

    .approach .start__grid-one,
    .approach .start__grid-two {
        grid-column-start: 1;
        grid-column-end: 3;
    }

    .approach .start__grid-three {
        grid-row-start: 3;
    }

    .approach .start__grid-four {
        grid-row-start: 3;
    }

    .approach .start__grid-five {
        grid-row-start: 4;
    }

    .approach .start__grid-six {
        grid-row-start: 4;
    }

    .approach .start__grid-eight {
        grid-column-start: 2;
    }

    .approach .start__card:last-child {
        grid-column-start: 1;
        grid-column-end: 3;
        grid-row-start: auto;
    }

    .approach .last-grid-col-full:last-child {
        grid-column-start: auto;
    }
}

.approach-navigation,
.block-grid-navigation,
.navigation {
    display: flex;
    flex-flow: wrap;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 0;
    margin-bottom: 40px;
}

.approach-navigation .approach-prev,
.approach-navigation .approach-next,
.block-grid-navigation .block-grid-prev,
.block-grid-navigation .block-grid-next,
.navigation .prev,
.navigation .next {
    display: flex;
    flex-flow: wrap;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: 1px solid var(--bs-lightdark);
    background-color: transparent;
    border-radius: 100px;
    transition-property: all;
    transition-delay: .15s;
    transition-duration: .15s;
    transition-timing-function: linear;
    cursor: pointer;
}

.approach-navigation .approach-next svg,
.approach-navigation .approach-prev svg,
.block-grid-navigation .block-grid-next svg,
.block-grid-navigation .block-grid-prev svg,
.navigation .next svg,
.navigation .prev svg {
    stroke: var(--bs-lightdark);
    transition-property: all;
    transition-delay: .15s;
    transition-duration: .15s;
    transition-timing-function: linear;
}

.approach-navigation .approach-prev svg,
.navigation .prev svg,
.block-grid-navigation .block-grid-prev svg {
    transform: rotate(180deg);
}

.approach-navigation .approach-next:hover,
.approach-navigation .approach-prev:hover,
.navigation .next:hover,
.navigation .prev:hover,
.block-grid-navigation .block-grid-next:hover,
.block-grid-navigation .block-grid-prev:hover {
    background-color: var(--bs-lightdark);
}

.approach-navigation .approach-next:hover svg,
.approach-navigation .approach-prev:hover svg,
.navigation .next:hover svg,
.navigation .prev:hover svg,
.block-grid-navigation .block-grid-next:hover svg,
.block-grid-navigation .block-grid-prev:hover svg {
    stroke: var(--bs-white100);
}

.approach-navigation .swiper-button-disabled,
.navigation .swiper-button-disabled,
.block-grid-navigation .swiper-button-disabled {
    cursor: none;
    opacity: 0.41;
    pointer-events: none;
}

.bg-dark .navigation .prev,
.bg-dark .navigation .next {
    border: 1px solid var(--bs-white100);
}

.bg-dark .navigation .next svg,
.bg-dark .navigation .prev svg {
    stroke: var(--bs-white100);
}

.bg-dark .navigation .next:hover,
.bg-dark .navigation .prev:hover {
    background-color: var(--bs-white100);
}

.bg-dark .navigation .next:hover svg,
.bg-dark .navigation .prev:hover svg {
    stroke: var(--bs-lightdark);
}

.start__card_radius {
    border-radius: 20px;
}

.start__img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: var(--bs-white200);
}

.growth-wrapper {
    z-index: 1;
}

@media (min-width: 768px) {
    .growth-wrapper .growth {
        display: grid;
        gap: 20px 17px;
        grid-template-columns: minmax(calc(40% - 17px), 40%) minmax(calc(30% - 17px), 30%) minmax(calc(30% - 17px), 30%);
    }
}

@media (min-width:768px) and (max-width: 1199px) {
    .growth-wrapper .growth {
        grid-template-columns: minmax(calc(50% - 17px), 50%) minmax(50%, 50%);
    }
}

.growth-wrapper .card {
    grid-row-gap: 20px;
    object-fit: cover;
    background-color: rgba(var(--bs-white200-rgb), .15);
    border: 2px solid rgba(var(--bs-white-rgb), .08);
    border-radius: 20px;
    flex-direction: column;
    justify-content: center;
    align-self: auto;
    align-items: center;
    width: 100%;
    max-width: none;
    height: 100%;
    padding: 40px;
    transition: all .6s;
    display: flex;
    position: relative;
    backdrop-filter: blur(6px);
}

@media (min-width: 768px) {
    .growth-wrapper .card {
        flex: 0 auto;
    }
}

.growth-wrapper .start__grid-one {
    grid-row-start: 1;
    grid-column-end: 2;
    grid-column-start: 1;
    display: flex;
    flex-flow: column;
    justify-content: end;
}

@media (min-width: 1200px) {
    .growth-wrapper .start__grid-two {
        grid-row: 1 / span 2;
        grid-column-start: 3;
        grid-column-end: 4;
    }

    .growth-wrapper .start__grid-three {
        grid-row-start: 2;
        grid-column-end: 1;
        grid-column-start: 1;
    }

    .growth-wrapper .start__grid-four {
        grid-row-start: 3;
        grid-column-end: 4;
        grid-column-start: 2;
    }

    .growth-wrapper .start__grid-five {
        grid-column: 1 / span 1;
        grid-row: 3;
    }
}

@media (min-width:640px) and (max-width: 1199px) {
    .growth-wrapper .start__grid-three {
        grid-row-start: 2;
        grid-row-end: 4;
    }

    .growth-wrapper .start__grid-six {
        grid-row-start: 3;
    }

    .growth-wrapper .start__grid-eight {
        grid-column-start: 2;
        grid-column-end: 3;
    }
}

@media screen and (min-width: 640px) and (max-width: 767px) {
    .growth-wrapper .card {
        padding: 20px;
    }
}

.growth-wrapper .card .ico {
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(-45deg, rgba(var(--bs-white100-rgb), .15), rgba(var(--bs-white200-rgb), .05));
    border: 2px solid rgba(var(--bs-white100-rgb), 0.2);
    border-radius: 50%;
}

.growth-wrapper .card .ico img {
    max-width: 65%;
    height: auto;
    display: block;
}

.common-contant .tabs {
    display: flex;
    flex-flow: wrap;
    align-items: center;
    margin: 0 0 40px;
    padding: 0;
    width: 100%;
    position: relative;
    column-gap: 40px;
    row-gap: 20px;
}

.common-contant .tabs .tab {
    cursor: pointer;
    position: relative;
    color: var(--bs-dark);
    display: block;
    font-family: var(--bs-font-inter);
    font-size: var(--fs-18);
    font-style: normal;
    font-stretch: normal;
    font-weight: 400;
    line-height: 42px;
    margin: 0;
    padding: 0;
    text-align: center;
    text-transform: capitalize;
    transition-property: all;
    transition-delay: .15s;
    transition-duration: .15s;
    transition-timing-function: linear;
}

.common-contant .tabs .tab:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--bs-yellow);
    transition-property: all;
    transition-delay: .15s;
    transition-duration: .15s;
    transition-timing-function: linear;
}

.common-contant .tabs .tab.active {
    color: var(--bs-yellow);
}

.common-contant .tabs .tab.active::after {
    width: 100%;
}

.common-contant .tab-toggle {
    display: none;
    padding: 10px;
    background-color: var(--bs-dark);
    color: var(--bs-dark);
    border: none;
    cursor: pointer;
}

.common-contant .tabs .tselect {
    display: none;
}

@media screen and (max-width: 767px) {
    .common-contant .tabs {
        flex-direction: column;
        align-items: flex-start;
        background-color: var(--bs-dark);
        padding: 10px 20px;
        row-gap: 10px;
        border-radius: 20px;
    }

    .common-contant .tabs .tselect {
        display: flex;
        flex-flow: wrap;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 0;
        margin: 0;
        position: relative;
    }

    .common-contant .tab-toggle {
        display: block;
        background-color: transparent;
        padding: 0;
        color: var(--bs-white100);
        font-family: var(--bs-font-inter);
        font-size: var(--fs-18);
        font-style: normal;
        font-stretch: normal;
        font-weight: 400;
        line-height: 42px;
        margin: 0;
        padding: 0;
        text-align: center;
        text-transform: capitalize;
        transition-property: all;
        transition-delay: .15s;
        transition-duration: .15s;
        transition-timing-function: linear;
    }

    .common-contant .tabs .tab {
        display: none;
        color: var(--bs-white100);
    }

    .common-contant .tabs .tab:last-child {
        margin-bottom: 15px;
    }

    .common-contant .tabs.active .tab {
        display: block;
        line-height: 1;
    }
}

.common-contant .tab-content .tab-pane {
    display: block;
}

.common-contant .tab-content .tab-pane .log-grid {
    position: relative;
    width: 100%;
    padding: 0px;
}

@media (min-width: 768px) and (max-width: 991px) {
    .common-contant .tab-content .tab-pane .log-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        border: none;
    }
}

@media (min-width: 992px) {
    .common-contant .tab-content .tab-pane .log-grid {
        display: grid;
        grid-template-columns: repeat(6, minmax(0, 1fr));
        border: none;
    }

    /* .common-contant .tab-content .tab-pane .log-grid:has(:nth-child(5):last-child),
    .common-contant .tab-content .tab-pane .log-grid:has(:nth-child(4):last-child),
    .common-contant .tab-content .tab-pane .log-grid:has(:nth-child(3):last-child),
    .common-contant .tab-content .tab-pane .log-grid:has(:nth-child(2):last-child) {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    } */
}

.common-contant .tab-content .tab-pane .log-grid a {
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 30px 15px;
    background-color: rgba(var(--bs-white100-rgb), 0.05);
    border: 1px solid rgba(var(--bs-white100-rgb), .1);
    gap: 10px;
    color: var(--bs-white100);
    font-family: var(--bs-font-inter);
    font-weight: 400;
    font-size: var(--fs-16);
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    text-decoration: none;
    text-transform: capitalize;
    transition-property: all;
    transition-delay: .15s;
    transition-duration: .15s;
    transition-timing-function: linear;
    backdrop-filter: blur(6px);
    text-align: center;
}

@media (min-width: 768px) {
    .common-contant .tab-content .tab-pane .log-grid a {
        flex: 0 0 25%;
    }
}

.common-contant .tab-content .tab-pane .log-grid a img {
    height: 40px;
}

.common-contant .tab-content .tab-pane .log-grid a:hover {
    background-color: rgba(var(--bs-white100-rgb), 0.15);
    backdrop-filter: blur(6px);
}

.common-contant .card-row {
    display: flex;
    flex-flow: wrap;
    align-items: stretch;
    justify-content: center;
    width: 100%;
    position: relative;
    margin: 0;
    padding: 0;
    gap: 30px;
}

.common-contant .card-row .card {
    display: flex;
    flex-flow: wrap;
    align-items: flex-start;
    padding: 0;
    gap: 20px;
    width: 100%;
    border-radius: 20px;
    border: none;
}

.common-contant .card-row .card .img {
    max-width: calc(100% - 250px);
}

.common-contant .card-row .card .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.servlist.common-contant {
    background: linear-gradient(134.08deg, rgba(255, 255, 255, 0.25) 2.81%, rgba(21, 21, 21, 0.25) 97.5%);
    padding: 0;
    margin: 50px 0;
}

.servlist.common-contant .inner-ctn {
    padding: 50px 0;
    border: none;
}

.servlist.common-contant .inner-ctn {
    display: flex;
    flex-flow: wrap;
    width: 100%;
    margin: 0;
    align-items: flex-start;
    justify-content: center;
}

.servlist.common-contant .atabs {
    display: flex;
    flex-flow: wrap;
    align-items: flex-start;
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: calc(100% - 70%);
    position: relative;
    column-gap: 40px;
    row-gap: 5px;
}

@media (max-width: 991px) {
    .servlist.common-contant .atabs {
        padding: 0;
        max-width: calc(100% - 0%);
        margin: 0 0 40px;
    }
}

.servlist.common-contant .atabs .atab {
    cursor: pointer;
    position: relative;
    display: flex;
    justify-content: space-between;
    color: var(--bs-white100);
    font-family: var(--bs-font-inter);
    font-size: var(--fs-18);
    font-style: normal;
    font-stretch: normal;
    font-weight: 400;
    line-height: 22px;
    margin: 0;
    padding: 15px 20px;
    text-align: left;
    border-left: 5px solid transparent;
    width: 100%;
    text-transform: capitalize;
    transition-property: all;
    transition-delay: .05s;
    transition-duration: .15s;
    transition-timing-function: linear;
}

.servlist.common-contant .atabs .atab svg {
    display: block;
    width: var(--fs-24);
    height: var(--fs-24);
    stroke: var(--bs-yellow);
    transition-delay: .15s;
    transition-duration: .15s;
    transition-timing-function: linear;
}

.servlist.common-contant .atabs .atab:after {
    display: none;
}

.servlist.common-contant .atabs .atab.active {
    color: var(--bs-yellow);
    background-color: rgba(237, 168, 0, 0.15);
    border-left-color: var(--bs-yellow);
}

.servlist.common-contant .tab-content {
    display: block;
    margin: 0;
    padding: 0 0 0 80px;
    width: 100%;
    max-width: calc(100% - 30%);
    position: relative;
}

@media (max-width: 991px) {
    .servlist.common-contant .tab-content {
        padding: 0;
        max-width: calc(100% - 0%);
    }
}

.servlist.common-contant .atab-pane {
    display: none;
}

.servlist.common-contant .atab-pane.active {
    display: block;
}

.servlist.common-contant .atab-pane ul {
    display: block;
    column-count: 2;
    margin: 0;
    padding: 0;
    width: 100%;
    list-style: none;
}

.servlist.common-contant .atab-pane ul li {
    margin: 0 0 10px;
    padding: 0;
    position: relative;
    display: flex;
    gap: 10px;
    align-items: center;
}

.servlist.common-contant .atab-pane ul li:before {
    content: "";
    position: relative;
    display: block;
    left: 0;
    top: 0;
    width: 20px;
    height: 1px;
    background-color: var(--bs-white100);
    transition-property: all;
    transition-delay: .15s;
    transition-duration: .15s;
    transition-timing-function: linear;
}

.servlist.common-contant .atab-pane ul li:hover:before {
    width: 40px;
    background-color: var(--bs-yellow);
}

.servlist.common-contant .atab-pane ul li a {
    display: block;
    color: var(--bs-white100);
    font-family: var(--bs-font-inter);
    font-size: var(--fs-16);
    font-style: normal;
    font-weight: 200;
    font-stretch: normal;
    line-height: 28px;
    margin: 0;
    padding: 0;
    text-decoration: none;
    text-transform: capitalize;
    transition-property: all;
    transition-delay: .15s;
    transition-duration: .15s;
    transition-timing-function: linear;
}

.servlist.common-contant .atab-pane ul li:hover a {
    color: var(--bs-yellow);
}

.servlist.common-contant .atabs .atab svg path {
    stroke: var(--bs-white100);
    transition-property: all;
    transition-delay: .15s;
    transition-duration: .15s;
    transition-timing-function: linear;
}

.servlist.common-contant .atabs .atab.active svg path {
    stroke: var(--bs-yellow);
}

.common-contant .reviews {
    display: flex;
    flex-flow: wrap;
    align-items: center;
    justify-content: flex-start;
    margin: 0 0 40px;
    padding: 0;
    width: 100%;
    row-gap: 30px;
    column-gap: 50px;
}

@media (min-width: 992px) {
    .common-contant .reviews {
        display: flex;
        flex-flow: wrap;
        align-items: start;
        justify-content: flex-start;
        margin: 0 0 40px 0;
        padding: 30px 0;
        width: 100%;
        /* max-width: calc(100% - 40px); */
        column-gap: 60px;
        border: none;
        border-top: 1px solid rgba(var(--bs-white200-rgb), 0.1);
        border-bottom: 1px solid rgba(var(--bs-white200-rgb), 0.1);
    }
}

.common-contant .review-box {
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    margin: 0;
    width: auto;
    flex: 0 0 auto;
    position: relative;
    max-width: 200px;
}

@media (min-width: 992px) {
    .common-contant .review-box {
        flex: 0 0 auto;
        width: auto;
        gap: 20px;
    }
}

.common-contant .review-box a {
    display: flex;
    flex-flow: wrap;
    align-items: end;
    justify-content: flex-start;
    margin: 0;
    gap: 15px;
}

@media (min-width: 992px) {
    .common-contant .review-box a {
        justify-content: center;
        align-items: center;
        flex-flow: wrap;
    }
}

.common-contant .review-box .left,
.common-contant .review-box .right {
    display: block;
}

.common-contant .review-box .left span {
    display: block;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.common-contant .review-box .right span {
    display: block;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin: 5px 0 0;
}

.common-contant .review-box ul {
    display: flex;
    flex-flow: wrap;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    gap: 2px;
    list-style: none;
}

.common-contant .review-box ul li {
    display: block;
    font-size: var(--fs-18);
    font-weight: 600;
    font-style: normal;
    font-stretch: normal;
}

.common-contant .review-box ul li img {
    display: block;
    width: 16px;
    height: 16px;
}

.mover-ball {
    position: relative;
}

.benefits-wrapper .bg-circle_hero1 {
    top: 1dvw;
    left: -4dvw;
    background-image: radial-gradient(farthest-side at bottom left, #6b3b00 10%, #935d00 50%, #bf8200 75%, rgba(var(--bs-yellow-rgb), 1));
}

.benefits-wrapper .bg-circle_hero2 {
    right: -1dvw;
    background-image: radial-gradient(farthest-side at bottom right, #6b3b00 10%, #935d00 50%, #bf8200 75%, rgba(var(--bs-yellow-rgb), 1));
}

@media (max-width: 991px) {
    .benefits-wrapper .bg-circle_hero1 {
        top: 5dvw;
        left: 2dvw;
    }

    .benefits-wrapper .bg-circle_hero2 {
        left: auto;
        right: 5dvw;
    }
}

.benefits-wrapper .lft-card {
    display: flex;
    flex-flow: column;
    align-items: start;
    justify-content: center;
    margin: 0;
    padding: 100px 60px;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    gap: 30px;
    border: 1px solid rgba(var(--bs-lightdark-rgb), .15);
    background-color: rgba(var(--bs-white200-rgb), .25);
    box-shadow: inset 0 0 38px rgba(var(--bs-white100-rgb), .15), 5px 0 25px rgba(var(--bs-white100-rgb), .15);
    backdrop-filter: blur(32px);
    z-index: 1;
}

.benefits-wrapper .lft-card:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 50dvw;
    height: 50dvw;
    background-image: url(../images/ring.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    transform: translateX(-20dvw) translateY(-18dvw);
    opacity: 0.08;
    z-index: -5;
}

@media (max-width: 575px) {
    .benefits-wrapper .lft-card:before {
        width: 90dvw;
        height: 90dvw;
        transform: translateX(-25dvw) translateY(-25dvw);
    }
}

@media (max-width: 1023px) {
    .benefits-wrapper .lft-card {
        padding: 50px 30px;
    }
}

.benefits-wrapper .accordion-item .accordion-title {
    margin: 15px 0 0;
    padding: 0 0 15px;
    background-color: transparent;
    text-align: left;
}

.benefits-wrapper .accordion-item .accordion-content {
    padding: 20px 20px;
}

.benefits-wrapper .accordion-item .accordion-title .arrow {
    width: 30px;
    height: 30px;
}

.benefits-wrapper .accordion-item .accordion-title .arrow img {
    width: 15px;
    height: 15px;
    filter: invert(0) opacity(1);
}

.benefits-wrapper .accordion-item .accordion-title:hover .arrow img,
.benefits-wrapper .accordion-item .accordion-title.active .arrow img {
    filter: invert(1) opacity(1);
}

.why-choose-row {
    padding: 25px;
    background-color: rgba(var(--bs-white200-rgb), .21);
    border-radius: 20px;
    box-shadow: inset 0 0 38px rgba(var(--bs-white100-rgb), .15);
    backdrop-filter: blur(6px);
}

@media (min-width: 768px) {
    .why-choose-row {
        margin: 40px 0 0;
        padding: 40px;
    }

    .why-choose-row .swiper-wrapper {
        display: flex;
        flex-flow: wrap;
        align-items: stretch;
        justify-content: center;
        position: relative;
        overflow: hidden;
        box-sizing: border-box;
        width: 100%;
        gap: 30px;
    }
}

.why-choose-row .why-choose {
    position: relative;
    z-index: 1;
    padding: 0 0 15px 0;
    border: none;
    border-bottom: 1px solid rgba(var(--bs-white200-rgb), 0.1);
}

@media (min-width: 768px) and (max-width: 1023px) {
    .why-choose-row .why-choose {
        flex: 0 0 calc(50% - 30px);
        height: auto;
    }
}

@media (min-width: 1024px) {
    .why-choose-row .why-choose {
        flex: 1 1 calc(33.333% - 30px);
        height: auto;
    }
}

.why-choose-row .why-choose:after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 5px;
    background-color: var(--bs-yellow);
}

.why-choose-row .why-choose .count {
    color: var(--bs-white200);
    font-size: 8dvh;
    line-height: 1;
    font-weight: 500;
    position: absolute;
    opacity: 0.1;
    z-index: -1;
}

.why-choose-row .why-choose .title {
    margin-top: 40px;
}

/* common content end */

/* industry-slider start */

.common-contant .img-block {
    position: relative;
    display: block;
    padding-top: 100%;
    width: 100%;
    overflow: hidden;
}

.industries-wrapper .img-block {
    position: relative;
    display: block;
    padding-top: 150%;
    width: 100%;
    overflow: hidden;
}

.common-contant .img-block .portrait {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    padding-top: 90%;
    width: 100%;
    max-width: 90%;
    overflow: hidden;
    border-radius: 30px;
}

.industries-wrapper .img-block .portrait {
    position: absolute;
    top: 0;
    right: 0;
    left: inherit;
    display: block;
    padding-top: 120%;
    width: 100%;
    max-width: 90%;
    overflow: hidden;
    border-radius: 20px;
    border: none;
}

.common-contant .img-block .portrait img,
.common-contant .img-block .landscape img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.common-contant .img-block .landscape {
    position: absolute;
    bottom: 0;
    right: 0;
    display: block;
    padding-top: 46.65%;
    width: 100%;
    max-width: 55%;
    overflow: hidden;
    border-radius: 20px;
    border: 10px solid var(--bs-white100);
}

.industries-wrapper {
    overflow: hidden;
}

.industry {
    display: inline-flex;
    gap: 20px;
    width: max-content;
    flex-flow: row;
}

.row-industry {
    display: inline-flex;
    flex-flow: row;
    align-items: stretch;
    justify-content: center;
    margin: 40px 0 0;
    padding: 0;
    position: relative;
    gap: 20px;
    animation: industry 25s linear infinite;
}

.industry-slider {
    display: flex;
    flex-flow: wrap;
    justify-content: flex-start;
    align-items: start;
    margin: 0;
    padding: 0;
    flex: 1 1 323px;
    width: auto;
    gap: 10px;
}

@keyframes industry {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-100% - 20px));
    }
}

.industry-slider .imageBx {
    width: 100%;
    display: flex;
    flex-flow: wrap;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 10px 30px 10px 10px;
    border-radius: 10px;
    gap: 20px;
    background-color: rgba(var(--bs-white200-rgb), 0.1);
    border: 1px solid rgba(var(--bs-white100-rgb), 0.05);
    backdrop-filter: blur(6px);
    height: 100%;
}

.industry-slider .imageBx .imgBx {
    position: relative;
    width: 100%;
    display: block;
    overflow: hidden;
    max-width: 60px;
    border-radius: 5px;
    background-color: rgba(var(--bs-white-rgb), 0.51);
    border: 1px solid rgba(var(--bs-white200-rgb), 0.2);
}

.industry-slider .imageBx .imgBx img {
    filter: invert(1);
}

.industry-slider .imageBx .details {
    display: flex;
    flex-flow: wrap;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: calc(100% - 80px);
    margin: 0;
    padding: 0;
    height: auto;
    min-height: auto;
    background-color: transparent;
}

.industry-slider .imageBx .details span {
    color: var(--bs-white200);
    font-size: var(--fs-18);
    font-weight: 500;
}

.industries-wrapper .industries-grid {
    display: flex;
    flex-flow: wrap;
    grid-column-gap: 15px;
    grid-row-gap: 15px;
}

.industries-wrapper .i-con-inner {
    position: relative;
    display: flex;
    flex-flow: column;
}

.industries-wrapper .i-con-inner .i-con-in {
    background-color: var(--bs-white);
    display: flex;
    width: 250px;
    height: 180px;
    flex-flow: column;
    justify-content: space-between;
    border-radius: 20px;
    padding: 20px;
}

.industries-wrapper .i-con-inner .imgBx img {
    max-width: 60px;
    filter: invert(73%) sepia(15%) saturate(2892%) hue-rotate(359deg) brightness(92%) contrast(105%);
}

.industries-wrapper .i-con-inner .details h6 {
    color: var(--bs-dark-rgb);
    font-size: var(--fs-22);
    font-weight: 500;
}

.industries-wrapper .industries-right-content {
    padding-left: 80px;
}

@media (0px <=width <=1410px) {
    .industries-wrapper .industries-right-content {
        padding-left: 20px;
    }
}

@media (0px <=width <=1200px) {
    .industries-wrapper .i-con-inner .i-con-in {
        width: 210px;
    }

    .industries-wrapper .i-con-inner .details h6 {
        font-size: 18px;
    }
}

@media (0px <=width <=450px) {
    .industries-wrapper .i-con-inner .i-con-in {
        width: 180px;
    }
}

.industries-wrapper-slider {
    overflow: hidden;
    position: relative;
}

.industries-wrapper-slider .home_wrap-cols {
    justify-content: center;
    width: 100%;
    height: 100svh;
    transform: rotate(10deg) translateY(-50%);
}

@media (max-width: 991px) {
    .industries-wrapper-slider {
        z-index: 2;
    }

    .industries-wrapper-slider .home_wrap-cols {
        opacity: .2;
        width: 65dvw;
        z-index: -1;
    }
}

@media (max-width: 575px) {
    .industries-wrapper-slider .home_wrap-cols {
        width: 85dvw;
        z-index: -1;
    }
}

.industries-wrapper.bg-pattern {
    background-image: url(../images/line-pattern3.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}
.industries-wrapper .card {
    background-color: transparent;
    border: none;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}
.industries-wrapper .card .img {
    position: relative;
    overflow: hidden;
    padding-top: 98.99%;
}
.industries-wrapper .card .img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.industries-wrapper .card .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 16px;
    background-color: var(--bs-white);
    color: var(--bs-dark);
    font-size: var(--fs-18);
    text-transform: capitalize;
    text-align: center;
}
/* industry-slider end */

/* counter-widget-wrapper */
.counter-widget-wrapper {
    display: flex;
    flex-flow: wrap;
    align-items: flex-start;
    justify-content: space-between;
    margin: 0;
    padding: 0;
    width: 100%;
    position: relative;
    gap: 40px;
}

.counter-widget-wrapper .counter-widget {
    width: auto;
    flex: 1 1 auto;
    max-width: none;
    /*calc(25% - 30px)*/
}

@media (max-width: 991px) {
    .counter-widget-wrapper .counter-widget {
        flex: 0 0 calc(50% - 30px);
        max-width: calc(50% - 30px);
    }
}

@media (max-width: 479px) {
    .counter-widget-wrapper .counter-widget {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.counter-widget-wrapper .counter-widget .cw-title,
.counter-widget-wrapper .counter-widget .cw-number {
    font-size: var(--fs-14);
    font-weight: 400;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    margin: 0 0 15px;
    padding: 0;
    display: block;
    position: relative;
}

.counter-widget-wrapper .counter-widget .cw-title {
    margin: 0 0 5px;
}

.counter-widget-wrapper .counter-widget .cw-number {
    font-size: var(--fs-42);
    line-height: 1;
    font-weight: 500;
    display: flex;
}

.counter-widget-wrapper .counter-widget .cw-number sup {
    font-size: var(--fs-20);
    font-weight: 400;
    top: 0rem;
    margin-left: 5px;
    margin-top: 4px;
    opacity: 0.7;
    display: block;
    line-height: 1;
}

.counter-widget-wrapper .counter-widget .cw-text {
    font-size: var(--fs-18);
    font-weight: 400;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    margin: 0;
    padding: 0;
    display: block;
    position: relative;
}

/* counter-widget-wrapper */


/* Join us Start */
.joinlist {
    display: none;
}

@media (min-width:1200px) {
    .joinlist {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
        margin: 80px 0 0;
        padding: 0;
        width: 100%;
        position: relative;
        gap: 3vw;
    }
}

.joinslider {
    display: none;
    overflow: inherit;
}

@media (max-width: 1199px) {
    .joinslider {
        display: block;
    }
}

.joinlist .box {
    display: flex;
    flex-flow: column;
}

.joinlist .s-appr__list .s-appr__title {
    display: block;
    text-align: center;
    color: var(--bs-dark);
    width: 100%;
    margin: 25px 0 0;
    padding: 10px 0 0;
    position: relative;
    z-index: 1;
    order: 2;
    min-height: 82px;
}

@media (min-width: 1200px) {
    .joinlist .s-appr__list.mod-top .s-appr__title {
        margin: 0 0 25px;
        padding: 0 0 10px;
        order: 1;
    }
}

.s-appr__item-wrap {
    position: relative;
    width: 165px;
    height: 165px;
    display: block;
    margin: auto;
    order: 1;
}

@media (min-width: 1200px) {
    .joinlist .s-appr__list.mod-top .s-appr__item-wrap {
        order: 2;
    }
}

.s-appr__item-wrap:before {
    content: "";
    position: absolute;
    top: 3px;
    left: 1px;
    width: 98%;
    height: 98%;
    border: 2px solid var(--bs-yellow);
    border-radius: 50%;
    z-index: -1;
    transform-origin: center;
}

.s-appr__item-wrap:after {
    content: "";
    position: absolute;
    top: 8px;
    left: -3px;
    width: 98%;
    height: 98%;
    border: 2px solid var(--bs-yellow);
    border-radius: 50%;
    z-index: -1;
    transform-origin: center;
}

.s-appr__border {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    stroke: var(--bs-lightdark);
    stroke-width: 6px;
}

@keyframes border-animate {
    100% {
        stroke-dashoffset: -2000;
    }
}

.s-appr__path {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 500ms;
    -webkit-animation: border-animate 100s linear infinite;
    animation: border-animate 100s linear infinite;
}

.s-appr__line {
    background-color: var(--bs-white100);
    stroke: var(--bs-lightdark);
    height: 115px;
    stroke-width: 6px;
    position: absolute;
    bottom: -83px;
    left: 50%;
    transform: translate(-50%, -50%);
}

.s-appr__list.mod-top .s-appr__line {
    top: 6px;
    bottom: auto;
}

.s-appr__list.mod-top .s-appr__line .s-appr__path {
    position: relative;
    top: 0;
    transform: translateY(-40px);
}

.s-appr__list.mod-top .s-appr__item:nth-child(odd) .s-appr__line {
    background: var(--bs-dark);
}

.s-appr__icon {
    width: 40px;
    height: 40px;
    background: var(--bs-lightdark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.s-appr__border,
.s-appr__icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@media (max-width: 1199px) {
    .joinslider {
        display: block;
        margin: 60px 0 0;
        padding: 0;
        width: 100%;
        position: relative;
    }

    .joinslider .box {
        display: flex;
        flex-flow: column;
    }

    .joinslider .s-appr__list .s-appr__title {
        display: block;
        text-align: center;
        color: var(--bs-dark);
        width: 100%;
        margin: 45px 0 0;
        padding: 10px 0 0;
        position: relative;
        z-index: 1;
        order: 2;
    }
}

/* Join us End */

/* services contact form start */
.ctaform {
    background-image: linear-gradient(134.08deg, rgba(255, 255, 255, 0.25) 2.81%, rgba(21, 21, 21, 0.25) 97.5%);
    padding: 40px;
    border-radius: 10px;
}

@media screen and (max-width: 767px) {
    .ctaform {
        padding: 20px;
    }
}

.ctaform .contact-form label {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    visibility: hidden;
    z-index: -9999;
}

.ctaform .contact-form .form-control {
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 4px;
    background-color: transparent;
    color: var(--bs-white100);
    font-family: var(--bs-font-inter);
    font-weight: 400;
    font-style: normal;
    font-stretch: normal;
    font-size: var(--fs-16);
    line-height: 1.5;
    letter-spacing: 0px;
    padding: 10px 20px;
    margin: 0;
}

.ctaform .contact-form .form-control::placeholder {
    color: var(--bs-white100);
    opacity: 0.75;
    text-transform: capitalize;
}

.ctaform .contact-form .form-control:focus {
    background-color: rgba(255, 255, 255, 0.35);
}

/* services contact form end */

/* Contact Start */
.contact-us.experience-wrapper {
    height: auto;
}

.contact-us .ring {
    width: 260px;
    height: 260px;
    padding: 30px 30px;
    margin: 0 auto;
}

.contact-us .ex-row {
    gap: 0;
}

.contact-us.experience-wrapper .ring h5 {
    font-size: 24px;
}

/* Contact End */

/* timeline start */
.swiper-marquee {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    white-space: nowrap;
    bottom: 0;
    display: flex;
    flex-flow: wrap;
    align-items: center;
    z-index: -1;
}

@media (max-width: 639px) {
    .swiper-marquee {
        align-items: flex-start;
    }
}

.Marquee_container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 0;
    overflow: hidden;
    height: 12svw;
    clip-path: inset(100% 0% 0% 0%);
    transform: translateY(100px);
    opacity: 0;
}

.Marquee_content {
    display: flex;
    gap: 100px;
}

.swiper-slide:first-child .Marquee_container {
    opacity: 1;
    transform: translateY(0);
    clip-path: inset(0 0 0 0);
}

.Marquee_children {
    display: flex;
    align-items: center;
    height: 12svw;
}

.CarouselMarquee_marquee {
    display: inline-flex;
    white-space: nowrap;
    font-size: 12dvw;
    line-height: 12dvw;
    font-weight: 500;
    color: rgba(var(--bs-lightdark-rgb), 0.05);
}

.timeline .timeline-item {
    display: block;
    position: relative;
    width: 100%;
    padding: 60px;
    margin: 0;
    border: 1px solid rgba(var(--bs-lightdark-rgb), .15);
    background-color: rgba(var(--bs-white200-rgb), .55);
    box-shadow: inset 0 0 38px rgba(var(--bs-white100-rgb), .15), 5px 0 25px rgba(var(--bs-white100-rgb), .15);
    border-radius: 20px;
    /* -webkit-backdrop-filter: blur(0px);
    backdrop-filter: blur(10px); */
    z-index: 1;
    /*height: 34.6428571429rem;34.6428571429rem */
}

.timeline-item-date,
.timeline-item-title {
    opacity: 0;
    /* Default to hidden */
    transform: translateY(20px);
    /* For down-to-up effect */
    clip-path: inset(100% 0% 0% 0%);

}

.timeline-item-text {
    opacity: 0;
    /* Default to hidden */
}

.swiper-slide:first-child .timeline-item-date,
.swiper-slide:first-child .timeline-item-title {
    opacity: 1;
    transform: translateY(0);
    clip-path: inset(0 0 0 0);
}

.swiper-slide:first-child .timeline-item-text {
    opacity: 1;
}

@media (max-width: 639px) {
    .timeline-item {
        padding: 40px 30px;
        /* height: 27.3571428571rem; */
        margin-top: 40px;
    }
}

.timeline-item-content {
    display: flex;
    flex-flow: column;
    align-items: flex-start;
    justify-content: flex-start;
    margin: 0;
    padding: 0;
    width: 100%;
}

.timeline-item-date {
    height: 29px;
    overflow: hidden;
}

.timeline-item-date span {
    display: block;
    position: relative;
    /* margin: 0; */
    padding: 5px 15px;
    color: var(--bs-white200);
    background-color: var(--bs-lightdark);
    border-radius: 5px;
    font-size: var(--fs-14);
    font-weight: 400;
    font-style: normal;
    font-stretch: normal;
    line-height: 130%;
}

.timeline-item-title {
    overflow: hidden;
}

@media (min-width:768px) {
    .timeline .arrows {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
    }
}

.timeline .arrow {
    display: flex;
    justify-content: start;
    gap: 15px;
}

@media (max-width: 767px) {
    .timeline .arrow {
        justify-content: center;
        margin-top: 20px;
    }
}

.timeline .arrow svg {
    stroke: var(--bs-white200);
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 500ms;
}

.timeline .arrow .timeline-next,
.timeline .arrow .timeline-prev {
    display: inline-flex;
    position: relative;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding-right: 0;
    padding-left: 0;
    border: 1px solid var(--bs-lightdark);
    border-radius: 50%;
    background-color: var(--bs-lightdark);
    cursor: pointer;
    text-align: left;
    white-space: nowrap;
    text-decoration: none;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 500ms;
    appearance: none;
    -webkit-appearance: none;
    width: 40px;
    height: 40px;
}

.timeline .arrow .timeline-prev svg {
    transform: rotate(180deg);
}

.timeline .arrow .timeline-next:hover,
.timeline .arrow .timeline-prev:hover {
    background-color: var(--bs-yellow);
    border-color: var(--bs-yellow);
}

.timeline .arrow .timeline-next:hover svg,
.timeline .arrow .timeline-prev:hover svg {
    stroke: var(--bs-dark);
}

/* timeline end */

/* about experience start */
.about-experience {
    height: auto;
}

.about-experience .ring {
    width: 17rem;
    height: 17rem;
    padding: 30px;
    margin: 0 auto;
    transition: all 1.2s;
    overflow: hidden;
    border: none;
    transition-delay: 1200ms;
}

.about-experience .ring.active {
    background-image: linear-gradient(135deg, transparent 45%, rgba(229, 229, 229, 0.1) 45%, rgba(229, 229, 229, 0.1) 55%, transparent 0);
    transform: none !important;
}

.about-experience .ring h4,
.about-experience .ring .h4 {
    font-weight: 700;
    margin-bottom: 5px;
}

.about-experience .ring h4,
.about-experience .ring .h4,
.about-experience .ring h5,
.about-experience .ring .h6,
.about-experience .ring h6 {
    transition: all 1.2s;
    transition-delay: 1200ms;
}

.about-experience .ring.active h4,
.about-experience .ring.active .h4,
.about-experience .ring.active h5,
.about-experience .ring.active .h6,
.about-experience .ring.active h6 {
    color: var(--bs-white200);
}

.about-experience .ring .h6 {
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.about-experience .ring .h6+.h6 {
    text-transform: none;
}

.about-experience .ring .ring_draw {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: rotate(180deg);
    stroke-dasharray: 1140px;
    stroke-dashoffset: -1140px;
    stroke: var(--bs-dark);
    transition: all 1s;
    transition-timing-function: cubic-bezier(.4, .08, 0, .97);
    z-index: -1;
}

.about-experience .ring.active .ring_draw {
    stroke-dashoffset: 0px;
}

.about-experience .ring .circle-ani {
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    transform-origin: center;
    transform: scale(0, 0);
    border-radius: 9999px;
    background-color: rgba(var(--bs-white200), 1);
    transition-duration: 0.5s;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
    transition-timing-function: cubic-bezier(.215, .61, .355, 1);
    z-index: -1;
}

.about-experience .ring.active .circle-ani {
    transform: scale(1, 1);
    background-color: rgba(var(--bs-dark-rgb), 1);
    transition-delay: 1100ms;
}

/* about experience end */

/* events start */
.events-intro {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    height: auto;
    display: flex;
    overflow: hidden;
    position: relative;
}

.events-slide {
    gap: 20px;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    display: flex;
}

@keyframes event_scroll_odd {
    0% {
        transform: translateX(0) scale(1);
    }

    100% {
        transform: translateX(calc(-100% - 20px)) scale(1);
    }
}

@keyframes event_scroll_even {
    0% {
        transform: translateX(0) scale(1);
    }

    100% {
        transform: translateX(calc(85% - 20px)) scale(1);
    }
}

.event_slides_line {
    gap: 20px;
    display: flex;
    transform: rotate(-5deg);
}

.event_slides_line .odd {
    animation: event_scroll_odd 75s linear infinite;
    display: flex;
    gap: 20px;
}

.event_slides_line .even {
    animation: event_scroll_even 75s linear infinite;
    display: flex;
    gap: 20px;
}

.event_slide {
    aspect-ratio: 16 / 9;
    /* width: 50dvw; */
    border-radius: 20px;
    overflow: hidden;
    height: 25dvh;
    position: relative;
}

@media (max-width: 767px) {
    .events-intro .event_slide {
        height: 155px;
    }
}

/* events end */

/* contact page start */
.contact-experience {
    height: auto;
    background-color: rgba(var(--bs-dark-rgb), 0.31);
    backdrop-filter: blur(0px);
}

@media (min-width: 992px) {
    .contact-experience .swiper-wrapper {
        width: auto;
    }
}

.contact-experience .ring {
    width: 16.4rem;
    height: 16.4rem;
    padding: 30px;
    margin: 0 auto;
    transition: all 1.2s;
    overflow: hidden;
    border: none;
    transition-delay: 1200ms;
}

@media (min-width: 768px) and (max-width: 1199px) {
    .contact-experience .ring {
        width: 16rem;
        height: 16rem;
    }

    .experience-wrapper .ex-row-slider {
        overflow: inherit;
    }
}

@media (min-width: 576px) and (max-width: 767px) {

    .contact-experience .ring,
    .about-experience .ring,
    .experience-wrapper .ring {
        width: 14.8rem;
        height: 14.8rem;
    }

    .experience-wrapper .ex-row-slider {
        overflow: inherit;
    }
}

@media (min-width: 480px) and (max-width: 575px) {
    .contact-experience .ring {
        width: 15rem;
        height: 15rem;
    }

    .experience-wrapper .ex-row-slider {
        overflow: inherit;
    }
}

@media (max-width: 479px) {

    .contact-experience .ring,
    .about-experience .ring,
    .experience-wrapper .ring {
        width: 68dvw;
        height: 68dvw;
        padding: 20px;
    }

    .experience-wrapper .ex-row-slider {
        overflow: inherit;
    }

    .experience-wrapper .ex-row .ring {
        width: 46dvw;
        height: 46dvw;
    }
}

.contact-experience .ring.active {
    transform: none !important;
    background-image: linear-gradient(135deg, transparent 45%, rgba(var(--bs-lightdark-rgb), 0.1) 45%, rgba(var(--bs-lightdark-rgb), 0.1) 55%, transparent 0);
}

.contact-experience .ring h4,
.contact-experience .ring .h4 {
    font-weight: 700;
    margin-bottom: 5px;
}

.contact-experience .ring h4,
.contact-experience .ring .h4,
.contact-experience .ring h5,
.contact-experience .ring .h6,
.contact-experience .ring h6 {
    transition: all 1.2s;
    transition-delay: 1200ms;
}

.contact-experience .ring h4,
.contact-experience .ring .h4,
.contact-experience .ring h5,
.contact-experience .ring .h6,
.contact-experience .ring h6 {
    color: var(--bs-white200);
}

.contact-experience .ring.active h4,
.contact-experience .ring.active h4 span,
.contact-experience .ring.active .h4,
.contact-experience .ring.active .h4 span,
.contact-experience .ring.active h5,
.contact-experience .ring.active h5 span,
.contact-experience .ring.active .h6,
.contact-experience .ring.active .h6 span,
.contact-experience .ring.active h6,
.contact-experience .ring.active h6 span {
    color: var(--bs-dark);
}

.contact-experience .ring .h6 {
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.contact-experience .ring .ring_draw {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: rotate(180deg);
    stroke-dasharray: 1140px;
    stroke-dashoffset: -1140px;
    stroke: var(--bs-white200);
    transition: all 1s;
    transition-timing-function: cubic-bezier(.4, .08, 0, .97);
    z-index: -1;
}

.contact-experience .ring.active .ring_draw {
    stroke-dashoffset: 0px;
}

.contact-experience .ring .circle-ani {
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    transform-origin: center;
    transform: scale(0, 0);
    border-radius: 9999px;
    background-color: rgba(var(--bs-white200-rgb), 1);
    transition-duration: 0.5s;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
    transition-timing-function: cubic-bezier(.215, .61, .355, 1);
    z-index: -1;
}

.contact-experience .ring.active .circle-ani {
    transform: scale(1, 1);
    transition-delay: 1100ms;
    background-color: rgba(var(--bs-white200-rgb), 1);
}

.time {
    display: inline-flex;
    gap: 10px;
    padding: 10px 20px;
    border-radius: 20px;
    background-color: var(--bs-dark);
    color: var(--bs-white);
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    margin: 0 0 10px;
}

.time #user-country {
    color: var(--bs-yellow);
}

.is--lightgrey {
    color: var(--bs-lightdark);
}

.social-link {
    display: flex;
    flex-flow: column;
    align-items: start;
}

.social-link .sub-mail {
    margin-top: 40px;
    margin-bottom: 40px;
}

@media (min-width: 1024px) {
    .social-link {
        align-items: start;
    }
}

.social-link .social-wrapper {
    display: inline-flex;
    color: inherit;
    font-family: var(--bs-font-inter);
    font-size: var(--fs-16);
    font-weight: 600;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    margin: 0 0 2px;
    padding: 0 0 2px;
    position: relative;
    transition: all .5s;
}

.social-link .social-wrapper:hover,
.social-link .social-wrapper:focus {
    color: var(--bs-yellow);
}

.contact-inquery {
    justify-content: center;
    display: flex;
    flex-flow: wrap;
    position: relative;
    inset: 0% 0% auto;
    width: 100%;
    gap: 40px;
}

.contact-inquery .cta-left {
    width: 100%;
    margin-top: 0;
    display: block;
}

.contact-inquery .cta-right {
    width: 100%;
    margin-top: 40px;
    display: block;
}

@media (max-width: 991px) {
    .contact-inquery .cta-right {
        margin-top: 0;
    }
}

@media (min-width: 1024px) {
    .contact-inquery {
        gap: 80px;
    }

    .contact-inquery .cta-left {
        width: calc(40% - 40px);
    }

    .contact-inquery .cta-right {
        width: calc(60% - 40px);
        margin: 0;
    }
}

@media (min-width: 1200px) {
    .contact-inquery {
        justify-content: space-between;
        display: flex;
        flex-flow: row;
    }

    .contact-inquery .cta-left {
        width: 38%;
    }

    .contact-inquery .cta-right {
        width: 59%;
        margin: 0;
    }
}

.radio-group {
    display: flex;
    flex-flow: row;
    overflow-y: hidden;
    margin: 0;
    padding: 0;
    padding-bottom: 10px;
    align-items: start;
    justify-content: start;
    width: 100%;
    gap: 15px;
}

.radio-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    justify-content: center;
    padding: 15px 20px;
    margin: 0;
    border: 1px solid rgba(var(--bs-lightdark-rgb), .15);
    border-radius: 10px;
    gap: 10px;
    background-color: transparent;
    transition: all .3s;
    z-index: 1;
}

@media (max-width: 767px) {
    .radio-wrapper {
        justify-content: flex-start;
    }
}

.radio-wrapper.check {
    background-color: var(--bs-lightdark);
}

.radio-wrapper:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 21px;
    width: 24px;
    height: 24px;
    border: 1px solid rgba(var(--bs-lightdark-rgb), .15);
    background-color: transparent;
    transform: translateY(-50%);
    border-radius: 20px;
    transition: all .3s;
    z-index: -1;
}

.radio-wrapper.check:before {
    background-color: var(--bs-white100);
}

.radio-input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.radio-label {
    font-size: 16px;
}

.radio-wrapper.check .radio-label {
    color: var(--bs-white200);
}

.checkmark-circle {
    stroke: rgba(var(--bs-lightdark-rgb), .15);
    stroke-width: 1;
}

.checkmark-check {
    transform: translateY(-2px) translateX(2px);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke: var(--bs-yellow);
    stroke-width: 2;
    stroke-dasharray: 150;
    stroke-dashoffset: 150;
    transition: stroke-dashoffset 0.3s ease-in-out, opacity 0.3s;
}

.radio-input:checked~.checkmark .checkmark-check {
    opacity: 1;
    stroke-dashoffset: 0;
}

.requires-validation {
    display: block;
    padding: 3dvw;
    background-color: rgba(var(--bs-white200-rgb), .25);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.form-control-label {
    display: block;
    color: var(--bs-lightdark);
    font-size: 12px;
    line-height: 1;
    margin: 0 0 5px;
    padding: 0;
}

.form-control-label .topc {
    color: rgba(var(--bs-lightdark-rgb), .5);
}

.form-control {
    display: block;
    width: 100%;
    padding: 11px 20px 12px;
    margin: 0 0 20px;
    font-family: var(--bs-font-inter);
    font-size: var(--fs-14);
    font-weight: 400;
    font-style: normal;
    font-stretch: normal;
    line-height: 120%;
    color: var(--bs-lightdark);
    background-color: var(--bs-white100);
    background-clip: padding-box;
    border: 1px solid rgba(var(--bs-lightdark-rgb), .2);
    border-radius: 8px;
    resize: none;
}

select.form-control {
    padding-right: 30px;
    background-image: url(../images/arrow-down-blk.svg);
    background-position: center right 12px;
    background-repeat: no-repeat;
    background-size: 12px 6px;
}

.form-control:focus {
    border: 1px solid rgba(var(--bs-lightdark-rgb), 0.5) !important;
    filter: drop-shadow(0 0 0.25rem rgba(var(--bs-lightdark-rgb), .25));
}

html[data-headlessui-focus-visible] .form-control {
    background-color: var(--bs-white100) !important;
}

.form-control::placeholder {
    color: rgba(var(--bs-lightdark-rgb), .25);
    font-size: var(--fs-14);
    line-height: 120%;
    font-weight: 400;
}

.form-label {
    display: block;
    color: var(--bs-dark);
    font-family: var(--bs-font-inter);
    font-size: var(--fs-16);
    font-weight: 400;
    font-style: normal;
    font-stretch: normal;
    line-height: 120%;
    margin: 0;
    padding: 0;
    margin-bottom: 10px;
    width: 100%;
}

.success-message {
    display: block;
    position: relative;
    width: 100%;
    padding: 8px 15px 8px 50px;
    margin: 20px 0 0;
    border-radius: 5px;
    background-color: var(--bs-dark);
    border: none;
    color: var(--bs-white100);
    font-family: var(--bs-font-inter);
    font-size: var(--fs-14);
    line-height: 180%;
    font-weight: 500;
    background-image: url(../images/white-check-circle.svg);
    background-position: center left 15px;
    background-size: 20px;
    background-repeat: no-repeat;
}

/* contact page end */

/* approach-wrapper start */
.approach-wrapper {
    overflow: hidden;
}

/* approach-wrapper end */

@media (min-width: 992px) {
    .culture-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px 30px;
    }
}

.culture-card {
    display: block;
    position: relative;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
    z-index: 1;
}

.culture-card:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(var(--bs-lightdark-rgb), .72);
    backdrop-filter: blur(4px);
    z-index: 1;
}

@media (min-width: 992px) {
    .culture-card:nth-child(1) {
        grid-row-start: 1;
        grid-row-end: 3;
        grid-column-end: 3;
        grid-column-start: 1;
    }

    .culture-card:nth-child(2) {
        grid-row-start: 1;
        grid-row-end: 2;
        grid-column-end: 5;
        grid-column-start: 3;
    }

    .culture-card:nth-child(3) {
        grid-row-start: 2;
        grid-row-end: 3;
        grid-column-end: 5;
        grid-column-start: 3;
    }
}

.culture-card-icon {
    width: 100%;
    height: 100%;
    position: relative;
    padding-top: 100%;
}

@media (max-width: 639px) {
    .culture-card-icon {
        padding-top: 180%;
    }
}

@media (min-width: 992px) {
    .culture-card-icon {
        padding-top: 435px;
    }
}

@media (min-width: 992px) {
    .culture-card:nth-child(1) .culture-card-icon {
        padding-top: 900px;
    }
}

.culture-card-icon button {
    position: absolute;
    top: 50%;
    left: 50%;
    background: transparent;
    border: none;
    padding: 0;
    line-height: 0;
    transform: translate(-50%, -50%);
    cursor: pointer;
    z-index: 2;
}

.culture-card:nth-child(1) .culture-card-icon button {
    top: 50%;
}

.culture-card video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.culture-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 30px 30px;
    display: flex;
    flex-flow: column;
    align-items: start;
    justify-content: end;
    gap: 10px;
    z-index: 1;
    height: auto;
}

.culture-card-content h2,
.culture-card-content h3,
.culture-card-content h4,
.culture-card-content h5,
.culture-card-content h6 {
    color: var(--bs-white);
}

.culture-card-content p {
    color: var(--bs-white100);
    font-size: var(--fs-14);
    line-height: var(--fs-20);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.modal-open .culture-wrapper {
    position: relative;
    /* z-index: 999999; */
}

.culture-wrapper .video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(28, 28, 28, 0.32);
    backdrop-filter: blur(4px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999;
}

.culture-wrapper .video-modal-content {
    display: flex;
    position: relative;
    padding: 0;
    border-radius: 20px;
    max-width: 90dvw;
    width: 100%;
    height: calc(100dvh - 30dvh);
    margin: 0 auto;
    align-items: end;
    justify-content: center;
    flex-flow: column;
    gap: 20px;
}

.culture-wrapper .video-modal video {
    width: 100%;
    height: auto;
}

.culture-wrapper .culture-card .culture-card-icon .img-fluid {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
}

.culture-wrapper .video-modal .close-btn {
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    padding: 0;
    margin: 0;
    background-color: var(--bs-white);
    border-radius: 10px;
}

@media (max-width: 991px) {
    .culture-wrapper .video-modal {
        flex-flow: column;
        align-items: end;
    }

    /* .culture-wrapper .video-modal .close-btn {
        position: relative;
        top: 0;
        right: 20px;
        margin: 10px 0 20px;
    } */
}

.culture-wrapper .video-modal .close-btn img {
    width: 20px;
    height: 20px;
    filter: invert(1);
}

.culture-wrapper .video-modal-content iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.join-pattern-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    width: 100%;
    gap: 0;
}

@media (max-width: 991px) {
    .join-pattern-grid {
        margin-top: 40px;
    }
}

.join-pattern-item {
    overflow: hidden;
    position: relative;
    display: block;
}

.join-pattern-item.round {
    border-radius: 50%;
}

.join-pattern-item.top-left-round {
    border-top-left-radius: 50px;
}

.join-pattern-item.bottom-left-round {
    border-bottom-left-radius: 50px;
    grid-column-end: 3;
    grid-column-start: 1;
}

.join-pattern-item img {
    display: block;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.cta-wrapper .cta-content {
    display: flex;
    flex-flow: wrap;
    align-items: flex-start;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0;
    width: 100%;
    gap: 40px;
}

@media (min-width:992px) {
    .cta-wrapper .cta-content {
        gap: 60px;
        height: 45dvh;
    }
}

.cta-wrapper .cta-content .left {
    width: 100%;
    display: flex;
    flex-flow: column;
    justify-content: flex-start;
}

.cta-wrapper .cta-content .right {
    width: 100%;
}

@media (min-width: 992px) {
    .cta-wrapper .cta-content .left {
        flex: 1 1 calc(50% - 30px);
        max-width: calc(50% - 30px);
        margin: 6.5dvh 0 0;
    }

    .cta-wrapper .cta-content .right {
        flex: 1 1 calc(50% - 30px);
        max-width: calc(50% - 30px);
        height: 100%;
    }
}

.cta-wrapper .cta-content .right svg {
    width: 100%;
    height: 103%;
    object-fit: cover;
}

.process-wrapper {
    position: relative;
    overflow: hidden;
}

@media (min-width: 992px) {
    .process-wrapper .process-block .swiper-wrapper {
        display: flex;
        flex-flow: column;
        justify-content: start;
        align-items: start;
        width: 100%;
        margin: 0;
        padding: 0;
        gap: 50px;
        transform: none !important;
    }

    .process-wrapper .process.left,
    .process-wrapper .process.right {
        position: relative;
        width: 100%;
        max-width: 50%;
    }

    .process-wrapper .process.right {
        margin-left: auto;
    }

    .process-wrapper .process.left:after {
        content: "";
        position: absolute;
        left: 50%;
        top: 100%;
        width: max(20.2rem, 5vw);
        height: 10.5rem;
        background-color: transparent;
        border: 2px dashed var(--bs-white200);
        border-top: 0;
        border-right: 0;
        transform: translateX(0);
        border-radius: 0 0 0 8rem;
    }

    .process-wrapper .process.right:before {
        content: "";
        position: absolute;
        right: 50%;
        top: 100%;
        width: max(20.2rem, 5vw);
        height: 10.5rem;
        background-color: transparent;
        border: 2px dashed var(--bs-white200);
        border-top: 0;
        border-left: 0;
        transform: translateX(0);
        border-radius: 0 0 8rem 0;
    }

    .process-wrapper .process-end:before,
    .process-wrapper .process-end:after {
        display: none;
    }
}

.process-wrapper .card {
    position: relative;
    margin: 0;
    padding: 40px;
    width: 100%;
    background-color: rgba(var(--bs-white200-rgb), 0.40);
    border: 2px solid rgba(var(--bs-white200-rgb), 0.15);
    border-radius: 20px;
    display: flex;
    flex-flow: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
    backdrop-filter: blur(4px);
}

@media (max-width: 991px) {
    .process-wrapper .card {
        padding: 30px;
    }
}

.process-wrapper .process.left .card span {
    position: absolute;
    left: -30px;
    top: 0;
    transform: translateY(-30%);
    width: min(4rem, 5dvw);
    height: min(4rem, 5dvw);
    background-color: rgba(var(--bs-white100-rgb), 1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: min(1.5rem, 5dvw);
    line-height: min(1.5rem, 5dvw);
    font-weight: 600;
    color: var(--bs-lightdark);
}

.process-wrapper .process.right .card span {
    position: absolute;
    left: -30px;
    top: 0;
    transform: translateY(-30%);
    width: min(4rem, 5dvw);
    height: min(4rem, 5dvw);
    background-color: var(--bs-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: min(1.5rem, 5dvw);
    font-weight: 600;
    color: var(--bs-lightdark);
}

@media (max-width: 991px) {

    .process-wrapper .process.left .card span,
    .process-wrapper .process.right .card span {
        left: 0;
        transform: translateY(-50%);
        width: min(2rem, 6dvw);
        height: min(2rem, 6dvw);
        font-size: min(1rem, 3dvw);
        line-height: min(1rem, 3dvw);
    }
}

@media (max-width: 575px) {

    .process-wrapper .process.left .card span,
    .process-wrapper .process.right .card span {
        left: 0;
        transform: translateY(-50%);
        width: min(4rem, 8dvw);
        height: min(4rem, 8dvw);
        font-size: min(1rem, 3dvw);
        line-height: min(1rem, 3dvw);
    }
}

.career-content {
    display: flex;
    flex-flow: wrap;
    align-items: flex-start;
    justify-content: center;
    margin: 0 0 40px;
    padding: 0 0 40px;
    gap: 30px;
    width: 100%;
    border: none;
    border-bottom: 1px solid var(--bs-lightdark);
    row-gap: 30px;
}

.career-content:last-child {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}

.career-content .career-title {
    flex: 1 1 0;
}

.career-content .content {
    flex: 2 2 0;
}

.career-content .btn-custom {
    flex: 1 1 0;
    text-align: right;
}

@media (max-width: 991px) {

    .career-content .career-title,
    .career-content .content,
    .career-content .btn-custom {
        max-width: 100%;
        flex: 1 1 100%;
    }

    .career-content .career-title {
        order: 1;
    }

    .career-content .content {
        order: 2;
    }

    .career-content .btn-custom {
        text-align: left;
        order: 3;
    }
}

/* career form start */
.career-wrapper .formmodal {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(var(--bs-dark-rgb), 0.70);
    width: 100%;
    height: 100%;
    z-index: 999999;
    backdrop-filter: blur(4px);
}

.career-wrapper .formmodal .modal-content {
    width: 100%;
    max-width: 75dvw;
    margin: 0 auto;
    padding: 30px 60px;
    overflow-x: hidden;
    border-radius: 20px;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .career-wrapper .formmodal .modal-content {
        max-width: 90dvw;
        padding: 60px;
    }
}

@media (max-width: 991px) {
    .career-wrapper .formmodal .modal-content {
        max-width: 90dvw;
        padding: 30px;
        padding-right: 15px;
    }

    .career-wrapper .formmodal .modal-content .employ_form {
        margin-top: 0;
        height: calc(100dvh - 30dvh);
        overflow-x: hidden;
        padding-right: 15px;
    }
}

.career-wrapper .formmodal .modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    padding: 0;
    margin: 0;
    background-color: var(--bs-white);
    border-radius: 10px;
}

@media (max-width: 991px) {
    .career-wrapper .formmodal {
        flex-flow: column;
        align-items: end;
    }

    /* .career-wrapper .formmodal .modal-close {
        position: relative;
        top: 0;
        right: 20px;
        margin: 10px 0 20px;
    } */
}

.career-wrapper .formmodal .modal-close img {
    width: 20px;
    height: 20px;
    filter: invert(1);
}

/* career form end */



/* form loader css */

.loader {
    border: 8px solid #f3f3f3;
    /* Light grey */
    border-top: 8px solid #eda800;
    /* Blue */
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* form loader css end */


.global-list .sitemap-links .grid-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

}

.global-list .sitemap-links .grid-wrapper li a {
    text-decoration: none;
}

@media (max-width:1440px) {
    .global-list .sitemap-links .grid-wrapper {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width:992px) {
    .global-list .sitemap-links .grid-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

.common-contant .box-white200 {
    background-color: rgba(var(--bs-lightdark-rgb), 0.15);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(8px);
}

.common-contant .content .flex-1 {
    flex: 1 1 0;
}
.common-contant.bg-dark .content .flex-1:first-child {
    background-color: rgba(var(--bs-white100-rgb), 0.9);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
}
.common-contant.bg-dark .content .flex-1:nth-child(2) {
    background-color: rgba(var(--bs-white200-rgb), 0.6);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
}
.common-contant.bg-dark .content .flex-1:nth-child(3) {
    background-color: rgba(var(--bs-lightdark-rgb), 0.35);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
}
.common-contant.bg-dark .content .flex-1 ul {
    padding: 0;
}

.common-contant.bg-white .content .flex-1:first-child,
.common-contant.bg-white .content .flex-1:nth-child(2) {
    background-color: rgba(var(--bs-lightdark-rgb), 0.15);
    box-shadow: 0 10px 15px -3px rgba(var(--bs-lightdark-rgb), .1);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
}
.common-contant.bg-white .content .flex-1 ul {
    padding: 0;
}

.round-bx.white {
    background-color: var(--bs-white);
}
.round-bx.dark {
    background-color: var(--bs-dark);
}
.round-bx.white svg path {
    fill: var(--bs-dark);
}
.round-bx.dark svg path {
    fill: var(--bs-white);
}
.round-bx {
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    padding: 18px;
    display: flex;
    margin: 0 0 30px;
}

.bx-yellow {
    background-color: rgba(var(--bs-yellow-rgb), 0.2);
    color: var(--bs-dark);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
}
.bx-yellow blockquote {
    font-weight: 400;
    font-size: var(--fs-20);
    line-height: 150%;
}
.bx-yellow blockquote cite {
    font-weight: 700;
    display: block;
    margin-top: 20px;
    font-size: var(--fs-16);
}
.gridable-listing ul{
    display: grid;
    grid-template-columns: repeat(4,1fr);
}
.case-study-image-wrapper img{
    width: 100%;
    height: 100%;
    max-height: 539px;
    object-fit: cover;
    object-position: top;
    border-radius: 20px;
}
.case-study-image-wrapper + .content {
    border-bottom: 1px solid rgba(77, 77, 77, 0.25);
}
.common-contant.key-points-section .title h3 span{
    font-weight: 700;
}
.common-contant.key-points-section .title h3{
    text-transform: capitalize;
}
.key-points-section .box-listing-wrapper .start__card {
    padding: 20px;
    height: auto;
}
.key-points-section .box-listing-wrapper .start__card .img {
    margin-bottom: 20px;
}
@media (max-width:1024px) {
    .gridable-listing ul{
        grid-template-columns: repeat(3,1fr);
    }
}
@media (max-width:992px) {
    .gridable-listing ul{
        grid-template-columns: repeat(2,1fr);
    }
}
@media (max-width:576px) {
    .gridable-listing ul{
        grid-template-columns: repeat(1,1fr);
    }
}
@media (max-width:768px) {
    .common-contant.cs-approach-section .content .flex-1{
        flex: auto;
    }
}
.cs-approach-section {
    overflow: hidden;
    position: relative;
}
.cs-approach-section:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/line-pattern1.webp);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.cs-approach-section .card-img {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    z-index: 1;
}
.cs-approach-section .card-img .img {
    position: relative;
    overflow: hidden;
    padding-top: 135%;
}
.cs-approach-section .card-img .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}
.cs-approach-section .card-img .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: calc(100% - 40px);
    height: fit-content;
    min-height: 270px;
    border-radius: 20px;
    background-color: rgba(var(--bs-yellow-rgb), 0.8);
    backdrop-filter: blur(12px);
    padding: 20px;
    margin: 20px;
    z-index: 1;
}
.cs-approach-section .card-img .overlay .title {
    border: none;
    border-bottom: 1px solid rgba(var(--bs-white200-rgb), .5);
    padding-bottom: 8px;
    margin-bottom: 12px;
}
.cs-approach-section .card-img .overlay h6 {
    font-size: var(--fs-20);
    font-weight: 700;
}
.cs-approach-section .card-img .overlay .global-list ul {
    padding: 0;
    gap: 10px;
}
.cs-approach-section .card-img .overlay .global-list ul li {
    padding-left: 20px;
    font-size: var(--fs-14);
    line-height: 17px;
}
.cs-approach-section .card-img .overlay .global-list ul li:before {
    background-image: url(../images/check-vector.svg);
    top: 3px;
}

.cs-imapct-section {
    overflow: hidden;
    position: relative;
}
.cs-imapct-section:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/line-pattern2.webp);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
}
.cs-imapct-section .card {
    background-color: rgba(var(--bs-white200-rgb), 0.25);
    border: 1px solid rgba(var(--bs-lightdark-rgb), 0.15);
    padding: 20px;
    border-radius: 20px;
    backdrop-filter: blur(12px);
    @media (min-width: 1024px) {
        padding: 40px;
        height: 100%;
    }
    @media (min-width: 768px) and (max-width: 1023px) {
        padding: 30px;
    }
}
.cs-imapct-section .card .title {
    border: none;
    border-bottom: 1px solid rgba(var(--bs-lightdark-rgb), .25);
    padding-bottom: 15px;
    margin-bottom: 15px;
    @media (min-width: 1024px) {
        padding-bottom: 30px;
        margin-bottom: 30px;
    }
}
.cs-imapct-section .card .title .h4,
.cs-imapct-section .card .title h4 {
    font-weight: 700;
}

.cs-imapct-section .card .global-list ul {
    padding: 0;
    gap: 10px;
    @media (min-width: 992px) {
        gap: 20px;
    }
}
.cs-imapct-section .card .global-list ul li {
    color: var(--bs-dark);
    @media (min-width: 1024px) {
        padding-left: 40px;
        font-size: var(--fs-20);
        line-height: 34px;
    }
}
.cs-imapct-section .card .global-list ul li:before {
    background-image: url(../images/check-vector-ylw.svg);
    @media (min-width: 1024px) {
        top: 7px;
        width: 20px;
        height: 20px;
    }
}

.cs-imapct-section blockquote {
    display: block;
    position: relative;
    background-color: rgba(252,241,213, .4);
    width: 100%;
    border-radius: 20px;
    backdrop-filter: blur(8px);
    overflow: hidden;
}
.cs-imapct-section blockquote p {
    display: block;
    color: var(--bs-dark);
    @media (min-width: 1024px) {
        padding: 50px;
        font-size: var(--fs-32);
            line-height: 1.5;
    }
    @media (max-width: 1023px) {
        padding: 30px;
        font-size: var(--fs-22);
        line-height: 1.5;
    }
    @media (max-width: 767px) {
        padding: 20px;
        font-size: var(--fs-16);
    }
}
.cs-imapct-section blockquote .head {
    display: inline-flex;
    color: var(--bs-dark);
    background-color: rgba(252,241,213, .25);
    border: none;
    border-bottom: 1px solid var(--bs-dark);
    width: 100%;
    font-weight: 500;
    line-height: 1.875;
    @media (min-width: 1024px) {
        padding: 20px 50px;
    }
    @media (max-width: 1023px) {
        padding: 20px 30px;
    }
    @media (max-width: 767px) {
        padding: 20px;
    }
}
.cs-imapct-section blockquote .rating {
    display: inline-flex;
    flex-flow: wrap;
    color: var(--bs-dark);
    background-color: rgba(252,241,213, .25);
    border: none;
    border-top: 1px solid var(--bs-dark);
    width: 100%;
    font-weight: 500;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    @media (min-width: 1024px) {
        gap: 20px;
        padding: 20px 50px;
    }
    @media (max-width: 1023px) {
        padding: 20px 30px;
    }
    @media (max-width: 767px) {
        padding: 20px;
    }
}
.cs-imapct-section blockquote .rating ul,
.cs-imapct-section blockquote .rating ul li {
    display: inline-flex;
}
.cs-imapct-section blockquote .rating ul li img {
    filter: invert(1);
}

.sitework-wrapper {
    position: relative;
    overflow: hidden;
}
.sitework-wrapper:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/line-pattern4.webp);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
}
.sitework-wrapper .img {
    position: relative;
}
.sitework-wrapper .img .overlay {
    display: block;
    position: absolute;
    top: 15px;
    left: 15px;
    animation: animName 110s linear infinite;
}
@media (min-width: 992px) {
    .sitework-wrapper .img .overlay {
        width: calc(168/1920*100vw);
    }
}
@media (max-width: 991px) {
    .sitework-wrapper .img .overlay {
        width: 18vw;
    }
}
@media (max-width: 575px) {
    .sitework-wrapper .img .overlay {
        width: calc(120/575*100vw);
    }
}
.sitework-wrapper .img img,
.sitework-wrapper .img .overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media (min-width: 1200px) {
    .sitework-wrapper .content p:first-child {
        font-size: var(--fs-20);
        line-height: 34px;
    }
    .sitework-wrapper .content p {
        font-size: var(--fs-24);
        line-height: 40px;
    }
}