@font-face {
    font-family: "Halyard_Display";
    src: url("../font/Halyard_Display_ExtraLight.otf") format("opentype");
    font-weight: 100;
}

@font-face {
    font-family: "Halyard_Display";
    src: url("../font/Halyard_Display_Light.otf") format("opentype");
    font-weight: 300;
}

@font-face {
    font-family: "Halyard_Display";
    src: url("../font/Halyard_Display_Regular.otf") format("opentype");
    font-weight: 400;
}

@font-face {
    font-family: "Halyard_Display";
    src: url("../font/Halyard_Display_Medium.otf") format("opentype");
    font-weight: 500;
}

@font-face {
    font-family: "Halyard_Display";
    src: url("../font/Halyard_Display_SemiBold.otf") format("opentype");
    font-weight: 600;
}

@font-face {
    font-family: "Halyard_Display";
    src: url("../font/Halyard_Display_Bold.otf") format("opentype");
    font-weight: 700;
}
ul {
    margin-left: 0;
}
aside#secondary {
    display: none;
}
/* Row */
.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

/* Columns */
[class*="col-"] {
    padding-right: 15px;
    padding-left: 15px;
}

/* 12 Column System */
.col-1 {
    flex: 0 0 8.333%;
    max-width: 8.333%;
}

.col-2 {
    flex: 0 0 16.666%;
    max-width: 16.666%;
}

.col-2-half {
    flex: 0 0 20%;
    max-width: 20%;
}

.col-3 {
    flex: 0 0 25%;
    max-width: 25%;
}

.col-4 {
    flex: 0 0 33.333%;
    max-width: 33.333%;
}

.col-5 {
    flex: 0 0 41.666%;
    max-width: 41.666%;
}

.col-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

.col-7 {
    flex: 0 0 58.333%;
    max-width: 58.333%;
}

.col-8 {
    flex: 0 0 66.666%;
    max-width: 66.666%;
}

.col-9 {
    flex: 0 0 75%;
    max-width: 75%;
}

.col-10 {
    flex: 0 0 83.333%;
    max-width: 83.333%;
}

.col-11 {
    flex: 0 0 91.666%;
    max-width: 91.666%;
}

.col-12 {
    flex: 0 0 100%;
    max-width: 100%;
}

/* Responsive Example */
@media (max-width: 768px) {
    [class*="col-"] {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.relative {
    position: relative;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
.width-70{
    max-width:70%;
}
section {
    position: relative;
}

body {
    font-family: "Halyard_Display", sans-serif;
    overflow-x: hidden !important;
    color: var(--themeDark);
    position: relative;
    font-weight: 300;
    letter-spacing: 0.5px;
}

body.no-scroll {
    overflow-y: hidden;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

body:has(.menu-offcanvas.active) {
    overflow-y: hidden;
}

:root {
    --themeColor: #1B1464;
    --themeColor2: #D11C24;
    --themeColor3: #fe6b45;
    --themeDark: #6B6B6B;
    --textColor: #292929;
}

.gradient-heading {
    background: -webkit-linear-gradient(var(--themeColor), var(--themeColor2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

.text-white {
    color: #fff !important;
}

.container {
    position: relative;
    padding-inline: 20px;
    z-index: 4;
    margin: auto;
}

.container-full {
    max-width: 100%;
    padding-inline: 20px;
}

.special-heading {
    font-family: 'Halyard_Display', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Halyard_Display", sans-serif;
}

a,
button,
svg {
    transition: .5s !important;
    text-decoration: none !important;
}

ul {
    list-style: none;
    padding-left: 0 !important;
}

input {
    box-shadow: none;
    outline: none !important;
    color: #fff;
}

textarea {
    box-shadow: none;
    outline: none !important;
    color: #fff;
}

.theme-color {
    color: var(--themeColor2);
}

.text-bold {
    font-weight: 600;
}

.bi-btn {
    padding: 14px 30px;
    background-color: var(--themeColor);
    color: #fff;
    border: none;
    transition: .5s;
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
    width: fit-content;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer !important;
}

.bi-btn:hover {
    background-color: #000 !important;
    scale: .96;
}

.bi-btn.transparent {
    background-color: transparent;
    color: var(--themeDark);
}

.bi-btn.outline {
    border: 1px solid transparent
}

.bi-btn.outline:hover {
    border-color: var(--themeColor);
}

.bi-btn.tranparent {
    background-color: transparent;
    text-decoration: underline !important;
}

.bi-btn.tranparent.dark {
    color: var(--themeDark);
}

.bi-btn.white {
    background-color: #fff;
    color: #000;
}

.bi-btn.white:hover {
    background-color: #000 !important;
    color: #fff !important;
}

.bi-hero {
    background-color: var(--themeColor);
    padding: 220px 0;
}

.bi-hero:before {
    content: "";
    position: absolute;
    bottom: -180px;
    left: -120px;
    width: 300px;
    height: 100%;
    background-image: url('../img/overlay.png');
    background-size: contain;
    background-position: left;
    background-repeat: no-repeat;
    z-index: 99;
}

.bi-hero:after {
    content: "";
    position: absolute;
    bottom: -180px;
    right: -120px;
    width: 300px;
    height: 100%;
    background-image: url('../img/overlay.png');
    background-size: contain;
    background-position: left;
    background-repeat: no-repeat;
    transform: scaleX(-1);
    z-index: 99;
}

.hero-content-wrapper {
    text-align: center;
}

.hero-content-wrapper h1 {
    font-size: 70px;
    font-weight: 400;
    max-width: 1160px;
    margin-inline: auto;
    line-height: 1.1em;
}

.stack-section {
    position: relative;
    background: #1B1464;
    background: linear-gradient(180deg, rgba(27, 20, 100, 1) 20%, rgba(255, 255, 255, 1) 20%);
    /* padding:120px 0; */
    margin-top: -100px;
}

/*.pin-spacer {*/
/*    background: #1B1464;*/
/*}*/

.stack-wrapper {
    display: flex;
}

.stack-area {
    width: 70%;
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card {
    position: absolute;
    width: 420px;
    height: 520px;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    background-color: #fff;
}

.card-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
    border-radius: 20px;
}

/* .shopify{ background:#95BF47;}
.ebay{ background:#E53238;}
.walmart{ background:#0071CE;}
.amazon{ background:#111;} */

.tabs-area {
    width: 30%;
    padding-left: 60px;
}

.tab {
    opacity: .4;
    margin-bottom: 20px;
    cursor: pointer;
    transition: .3s;
}

.tab.active {
    opacity: 1;
    font-weight: bold;
    color: var(--themeColor2) !important;
}

/*New css*/


.market-sec {
    background-image: url(../img/mk-bk.jpg);
    background-size: 100%;
    background-repeat: no-repeat;
    padding-top: 6%;
}

section.market-sec img {
    width: 100%;
    position: absolute;
    left: 0px;
    bottom: 0px;
}

.mk-sec-cont span {
    background-color: #D11C24;
    color: #fff;
    padding: 12px;
    border-radius: 5px;
    display: block;
    max-width: max-content;
    margin-bottom: 22px;
    font-weight: 300;
    letter-spacing: 0.5px;
    font-size: 20px;
    text-transform: capitalize;
}


.mk-sec-cont h2 {
    color: white;
    font-size: 35px;
    font-weight: 400;
    margin-bottom: 42px;
}


section.market-sec .container:before {
    content: "";
    width: 100%;
    height: 62%;
    background: white;
    display: block;
    position: absolute;
    bottom: 0px;
    left: 0px;
    border-radius: 8px;
    border: 1px solid #1B1464;
}

.mk-tags {
    z-index: 1;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    padding-top: 46px;
}

.mk-tag-item {
    background: #1B1464;
    color: white;
    width: max-content;
    padding: 10px 30px;
    border-radius: 5px;
    font-weight: 300;
    text-transform: capitalize;
    letter-spacing: 0.8px;
    font-size: 20px;
}


a.mk-btn {
    display: block;
    background: #d11c24;
    padding: 12px;
    position: relative;
    color: white;
    text-align: center;
    border-radius: 5px;
    font-size: 20px;
    letter-spacing: 0.5px;
    font-weight: 300;
    margin-top: 32px;
    margin-bottom: 25px;
    transition: .5s;
}

a.mk-btn:hover {
    scale: .95 !important;
    background-color: #000 !important;
}

section.automation-sec {
    padding: 30px 0px 70px 0px;
}

.color-blue {
    color: #1B1464;
}

.color-red {
    color: #D11C24;
}

.b500 {
    font-weight: 500;
}

section.automation-sec h2 {
    font-size: 45px;
    line-height: 1.2;
    font-weight: 400;
}

section.automation-sec h2 span {
    display: block;
}

section.automation-sec p {
    font-size: 20px;
    color: #292929;
    font-weight: 300;
    letter-spacing: 0.8px;
}

.desktop-flex {
    align-items: center;
}

.at-box {
    display: block;
    height: 460px;
    padding: 38px;
    position: relative;
    border-left: 1px solid #C9BCD9;
    border-right: 1px solid #C9BCD9;
}

.at-box h3 {
    color: #1B1464;
    font-size: 30px;
    font-weight: 400;
    margin-bottom: 20px;
}

.at-box span {
    position: absolute;
    bottom: 33px;
    right: 38px;
    border-width: 1px;
    border-style: solid;
    border-color: white;
    width: 80px;
    height: 43px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    text-align: center;
}
a.header-phone {
    display: flex;
    justify-content: end;
    align-items: center;
    color: #fff;
    font-weight: 500;
    font-size: 22px;
    justify-self: end;
    flex: 1;
    margin-right: 30px;
    animation: blinkCall 1s infinite ease-in-out;
}
@keyframes blinkCall{
  0%,100%{
    color:#ffffff;
  }
  50%{
    color:#f4761d;
  }
}
a.header-phone img {
    max-width: 52px;
}
.at-box span img {
    margin: auto;
}

.pd-top-70 {
    padding-top: 70px;
}

section.automation-sec .col-3 {
    padding: 0px;
    margin: 0px -0.7px;
}

.at-box:hover {
    background: #1B1464;
    border-radius: 6px;
    border: none !important;
}

.at-box:hover h3 {
    color: white;
}

.at-box:hover p {
    color: white;
    opacity: 0.6;
}

.at-box:hover span {
    background: #D11C24;
}

.at-box:hover span img {
    filter: invert(1);
}

.bi-optimize {
    padding: 100px 0 150px;
    background: url('../img/optimize-bg.jpg');
}

.top-content {
    text-align: center;
    margin-bottom: 60px;
}

.theme-heading {
    font-size: 46px;
    font-weight: 400;
    color: var(--themeColor);
    line-height: 1.1em;
}

.theme-para {
    color: var(--textColor);
    font-size: 18px;
    margin-bottom: 20px;
}

.optimize-wrapper {
    padding: 10px;
    background-color: #fff;
    border-radius: 10px;
}

.optimize-wrapper .row {
    align-items: center;
}

.optimize-img-wrapper {
    text-align: center;
    background-size: cover;
    border-radius: 10px;
}
.mk-sec-cont .theme-para {
    color: #a2a2a2;
    margin-top: 20px;
}
.heading4 {
    font-size: 31px;
    margin-bottom: 5px;
    line-height: 1;
    font-weight: 400;
    color: var(--themeColor);
}

.heading5 {
    font-size: 22px;
    font-weight: 400;
    color: var(--themeColor);
}

.optimize-content-wrapper h4 {
    margin-bottom: 30px;
}

.optimize-content-wrapper h5 {
    margin-bottom: 10px;
}

ul.theme-para {
    list-style: disc;
    margin-left: 25px;
}

.optimize-btn {
    position: absolute;
    right: 50px;
    bottom: 35px;
    padding: 10px 15px;
    background-color: var(--themeColor2);
    line-height: 1em;
    border-radius: 6px;
}

.optimize-btn img {
    filter: invert(1);
}

.optimize-content-wrapper h5 {
    margin-top: 25px;
}

.bi-discuss-bar {
    margin: -58px 0;
}

.discuss-wrapper {
    padding: 25px 30px;
    border: 1px solid rgb(0 0 0 / 50%);
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
}

.btn-wrapper a.mk-btn {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 22px;
    padding: 14px 35px;
}

.btn-wrapper {
    display: flex;
    gap: 30px;
}

.btn-wrapper a.mk-btn.alt {
    background-color: var(--themeColor);
}

.bi-building-today {
    padding: 150px 0 100px;
    background-color: var(--themeColor);
}

.building-item-wrapper {
    padding: 50px;
    background-color: #fff;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
    height: 450px;
}


.building-item-wrapper.top-margin {
    margin-top: 50px;
}

.building-item-wrapper img {
    max-width: 113px;
}

.building-item-wrapper .counter-num {
    font-size: 100px;
    font-weight: 500;
    color: var(--themeColor2);
    letter-spacing: -1px;
    display: block;
    line-height: 1em;
}

.building-item-wrapper h5 {
    font-size: 25px;
    text-transform: uppercase;
    font-weight: 400;
    color: var(--themeColor);
}

.bi-logos {
    padding: 80px 0;
}

.bi-logos h3 {
    line-height: 1.2em;
    color: var(--themeColor);
}

.logos-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 80px;
    gap: 20px;
}

.bi-logos .row {
    align-items: center;
}

.logos-wrapper .logo-item {
    padding: 10px 30px;
    border: 1px solid #00000078;
    border-radius: 8px;
    height: 90px;
    display: flex;
    align-items: center;
}

.bi-faq {
    padding: 100px 0;
    background: url('../img/testimonial-bg.jpg') no-repeat center;
    background-size: cover;
}

.testimonial-content-wrapper {
    padding-right: 120px;
}

.highlight {
    background-color: #D11C24;
    color: #fff;
    padding: 12px;
    border-radius: 5px;
    display: block;
    max-width: max-content;
    margin-bottom: 22px;
    font-weight: 300;
    letter-spacing: 0.5px;
    font-size: 20px;
    text-transform: capitalize;
}

.testimonial-content-wrapper .theme-heading {
    font-weight: 700;
    line-height: 1.1em;
    margin-bottom: 30px;
}

.testimonial-item {
    padding: 40px;
    background-color: #fff;
    border-radius: 7px;
    margin-inline: 15px;
    transition: .5s;
}
.testimonial-item:hover {
    background-color: var(--themeColor2);
}
.testimonial-item:hover :is(p,h5, span){
    color: #fff !important;
}
.testimonial-item h4 {
    line-height: 1em;
    margin-bottom: 40px;
    margin-top: 30px;
}

.bi-testimonial .row {
    align-items: center;
}

.testimonial-item .highlight {
    padding: 7px 15px;
}

.contact-wrapper {
    position: relative;
}

.contact-wrapper-top {
    background-color: var(--themeColor2);
    padding: 50px;
    border-radius: 10px;
    position: relative;
    z-index: 1;
}

.bi-contact {
    padding: 80px 0 110px;
}

.contact-wrapper .top-content {
    max-width: 1000px;
    margin-inline: auto;
}

.contact-wrapper .theme-heading {
    margin-bottom: 20px;
}

.bi-form input {
    width: 31%;
    height: 50px;
    border-radius: 5px;
    font-size: 17px;
    background-color: #f0f0f03d;
    border: 1px solid #ffffff52;
}

.bi-form input::placeholder {
    color: #ffffffb8;
}

.bi-form {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    font-family: 'Halyard_Display';
}

.bi-form textarea {
    width: 95.6%;
    border-radius: 6px;
    background-color: #f0f0f03d;
    border: 1px solid #ffffff52;
    height: 200px;
    font-size: 17px;
    font-family: 'Halyard_Display';
    padding-top: 10px;
    font-weight: 300;
}

.bi-form textarea::placeholder {
    color: #ffffffb8;
}

.bi-form .bi-btn {
    border-radius: 5px;
}

.before-footer .top-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
}

.newsletter {
    display: flex;
    align-items: center;
    justify-content: start;
    width: 55%;
    gap: 30px;
}

.newsletter-content {
    width: 50%;
}

form.newsletter-form {
    width: 50%;
    display: flex;
    justify-content: start;
    align-items: center;
    padding: 8px;
    background-color: #ebe9e9;
    border-radius: 5px;
}

form.newsletter-form input {
    width: 75%;
    height: 46px;
    border: none;
    font-family: 'Halyard_Display';
    font-weight: 300;
    font-size: 16px;
    background-color: transparent;
    color: #000;
    letter-spacing: 1px;
}

form.newsletter-form .bi-btn {
    font-family: 'Halyard_Display';
    font-weight: 300;
    width: 25%;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 6px;
    font-weight: 500;
    padding: 0;
    height: 46px;
    justify-content: center;
    background-color: var(--themeColor2);
}

.newsletter-content .theme-para {
    margin-bottom: 0;
}

.bi-footer {
    padding: 75px 0 130px;
    background-color: var(--themeColor);
}

.footer-content-wrapper .heading5 {
    color: #fff;
    margin-bottom: 22px;
}

.footer-content-wrapper {
    padding-right: 40px;
}

.bi-copyright {
    padding: 26px 0 26px;
    position: absolute;
    bottom: 0;
    text-align: center;
    width: 100%;
    border-top: 1px solid #ffffff42;
}

.bi-header {
    position: absolute;
    width: 100%;
    top: 30px;
    z-index:999;
}

.header-wrapper {
    transition: .5s;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-btn {
    transition: .5s;
    padding: 20px;
    border: 1px solid rgb(255 255 255 / 20%);
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgb(0 0 0 / 25%);
    gap: 30px;
}

.header-btn .bi-btn.white {
    font-family: 'Halyard_Display';
    text-transform: capitalize;
    font-weight: 400;
    color: var(--themeColor);
    border-radius: 5px;
}
.bi-header.sticky-active .header-wrapper {
    margin-top:20px;
    padding: 10px 10px 10px 30px;
    background-color: rgb(0 0 0 / 45%);
    border-radius: 20px;
    border: 1px solid rgb(255 255 255 / 20%);
    backdrop-filter: blur(7px);
}

.bi-header.sticky-active .header-wrapper .header-btn {
    padding: 10px;
    border: 1px solid rgb(255 255 255 / 0%);
    background-color: rgb(0 0 0 / 0%);
}

a.bi-btn.icon {
    background-color: var(--themeColor2);
    border-radius: 5px;
    padding: 20px 20px;
}

.stack-wrapper {
    align-items: center;
}

.stack-wrapper .tab {
    font-family: 'Halyard_Display';
    font-size: 22px;
    color: var(--themeColor);
    font-weight: 400;
    /*text-transform: uppercase;*/
}

.stack-wrapper .tab.active {
    font-weight: 700;
}

.pin-spacer {
    min-height: fit-content !important;
    height: fit-content !important;
}

/* .tabs-area .highlight {
    margin-top: -100px;
    margin-bottom: 100px;
} */
.tabs-area {
    margin-top: 100px;
}

.stack-content p {
    font-size: 20px;
    text-transform: uppercase;
}

.stack-content {
    width: 28%;
    visibility:hidden;
}



/* Overlay */
.offcanvas-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    /* minor black */
    opacity: 0;
    visibility: hidden;
    z-index: 9989;
    cursor: pointer;
}

/* Offcanvas */
.offcanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 320px;
    height: 100%;
    background: var(--themeColor);
    color: #fff;
    transform: translateX(-100%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
}

/* Header */
.offcanvas-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}
.card-inner img {
    border-radius: 20px;
}
.logo {
    max-width: 120px;
}

.close-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
}

/* Menu */
.offcanvas-menu {
    flex: 1;
    padding: 0 20px;
}

.offcanvas-menu ul {
    list-style: none;
    padding: 0;
}

.offcanvas-menu li {
    margin-bottom: 12px;
}

.offcanvas-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-size: 24px;
    text-transform: uppercase;
    font-weight: 400;
    display: block;
    width: 100%;
}

/* Submenu */
.submenu {
    display: block;
    height: 0;
    overflow: hidden;
    opacity: 0;
    margin-top: 15px;
}

.submenu li {
    margin-bottom: 8px;
}

.submenu li a {
    font-size: 18px;
    text-transform: capitalize;
    font-weight: 300;
    padding-left: 20px;
}

.has-submenu>a {
    cursor: pointer;
}

/* Footer */
.offcanvas-footer {
    padding: 20px;
}

.cta-btn {
    display: block;
    text-align: center;
    background: #ff6a00;
    color: #fff;
    padding: 14px;
    text-decoration: none;
    border-radius: 6px;
}

.header-wrapper .logo {
    max-width: fit-content;
}

.offcanvas-header img {
    max-width: 190px;
}

.offcanvas-header {
    margin-bottom: 40px;
}

.offcanvas-footer .mk-btn {
    font-size: 20px;
    font-weight: 500;
}

.has-submenu {
    position: relative;
    margin-bottom: 0 !important;
}

.has-submenu>a {
    padding-right: 30px;
}

/* Arrow */
.has-submenu>a::after {
    content: "▾";
    /* down arrow */
    position: absolute;
    right: 0;
    top: 10px;
    transform: translateY(-50%) rotate(0deg);
    font-size: 18px;
    transition: transform 0.35s ease;
    font-family: cursive;
}

/* Open state → arrow up */
.has-submenu.open>a::after {
    transform: translateY(-50%) rotate(180deg);
}

/* modal overlay */
#modal {
    display: none;
    /* hidden by default */
    position: sticky;
    inset: 0;
    background: rgb(0, 0, 0, .8);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 24px;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
}

#modal .modal-content {
    width: 100%;
    max-width: 600px;
    background: #111;
    border-radius: 30px;
    box-shadow: 0 8px 30px rgba(2, 6, 23, 0.2);
    padding: 20px;
    position: relative;
}

#modal .modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.modal-header {
    position: absolute;
    right: 20px;
}

.modal-header h3 {
    display: none;
}

.modal-body p {
    color: #fff;
    font-size: 24px;
}

p#modal-price-number {
    margin-top: 10px;
}

button.close-modal {
    background-color: transparent;
    border: none;
    color: #fff;
    font-size: 30px;
    font-weight: 100 !important;
    font-family: 'Urbanist';
    height: fit-content;
    line-height: 1;
}

p#modal-price-number {
    font-weight: 600;
    font-size: 40px;
}

p#modal-price-number sub {
    font-size: 20px;
    font-weight: 200;
    position: relative;
    bottom: 8px;
}

.opacity-0 {
    opacity: 0;
}

.modal-footer .bi-btn {
    margin-top: 20px;
}

.package-price-wrapper.d-none {
    display: none;
}

.modal-content .bi-form label {
    display: none !important;
}

.modal-content .bi-form input {
    margin-bottom: 20px;
}

.modal-body {
    text-align: center;
}

.modal-body p {
    margin-bottom: 30px;
}

.modal-content .bi-form input {
    width: 100%;
    margin-bottom: 0;
    padding-left: 10px;
    border: 1px solid #fff;
    font-family: 'Halyard_Display';
}

#modal .modal-content {
    background-color: #00000024;
    backdrop-filter: blur(10px);
    border: 1px solid #ffffff2b;
}

.modal-content .bi-form textarea {
    width: 100%;
    margin-bottom: 0;
    padding-left: 10px;
    border: 1px solid #fff;
    font-family: 'Halyard_Display';
    font-weight: 400;
}

.modal-body .modal-footer .bi-btn {
    background-color: var(--themeColor2);
    color: #fff;
    width: 100%;
    text-align: center;
    justify-content: center;
    margin-top: 0;
}

.modal-body .modal-footer {
    width: 100%;
    text-align: center;
}




.bld-arow {
    margin-left: -100px;
}

.bi-contact p.theme-para {
    color: white;
}


.bi-footer ul li a {
    color: #ffffffcc;
    margin-bottom: 13px;
    display: block;
    font-weight: 300;
}

.bi-footer p {
    color: #ffffffcc;
}

.color-white {
    color: #ffffffcc;
}

section.bi-copyright p {
    text-align: left;
}

.bi-copyright ul {
    display: flex;
    justify-content: flex-end;
    gap: 23px;
}

.bi-copyright ul li a {
    color: #ffffffcc;
}

.cont-form-bk {
    position: absolute;
    bottom: -70px;
    left: 2%;
    width: 96%;
}


.sbnlogo {
    width: 100px;
    position: absolute;
    left: 38px;
    bottom: 40px;
}

/*.at-box:hover .sbnlogo {*/
/*    filter: brightness(0) invert(1);*/
/*}*/

section.main-banner {
    background-image: url(../img/main-bk.png);
    padding: 200px 0px 118px;
    background-color: #1d1463;
    background-size: cover;
    background-position: bottom;
}

img.ban-mn {
    margin-left: -70px;
    z-index: -1;
}

.bn-cont {
    z-index: 1;
    position: relative;
}


.bn-cont h1 {
    color: white;
    font-size: 60px;
    font-weight: 400;
    text-transform: capitalize;
    line-height: 1.2;
}

.bn-cont h1 span {
    font-weight: 600;
}

.bn-cont p {
    color: #fff;
    font-size: 22px;
    margin: 38px 0px;
    max-width: 780px;
}


.bn-cont form {
    background: white;
    padding: 12px;
    border-radius: 70px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.bn-cont form input,
.bn-cont form select {
    height: 70px;
    width: 23%;
    padding-left: 42px;
    font-size: 19px;
    margin-right: 12px;
    border: none;
    outline: none;
}

.bn-cont form button {
    height: 49px;
    width: 23%;
    background: #1d1463;
    border: none;
    color: white;
    padding: 0px 19px;
    line-height: 49px;
    font-size: 17px;
    border-radius: 26px;
    text-transform: capitalize;
    margin-left: 12px;
}

.bn-cont form span {
    opacity: 0.4;
    display: block;
    width: 1px;
    height: 33px;
    background: #0000008f;
}

img.ban-mn {
    margin-left: -70px;
    z-index: -1;
}

.experience {
    display: flex;
    gap: 52px;
    margin-top: 39px;
}

.experience-item span {
    color: white;
    font-size: 40px;
    line-height: 1;
    font-weight: 500;
}

.experience-item p {
    color: white;
    margin-top: 16px;
    margin-bottom: 0px;
    font-size: 18px;
    text-transform:uppercase;
}

.testimonial-content-wrapper .theme-para {
    color: #fff;
}

.faq {
    perspective: 1400px;
    overflow: hidden;
}

.faq-wrapper {
    position: relative;
    width: 650px;
    margin: auto;
    height:320px;
}
.faq-page .faq-wrapper {
    height:fit-content;
}
/* Cards */
.faq-card {
    position: absolute;
    width: 100%;
    background: #f4f4f4;
    padding: 40px;
    border-radius: 14px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    transform-style: preserve-3d;
}

.faq-number {
    background: #e11d2e;
    color: #fff;
    padding: 6px 14px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 20px;
}

.faq-card h3 span {
    color: #e11d2e;
}

.faq-nav {
    text-align: center;
    margin-top: 40px;
}

.faq-nav button {
    padding: 10px 25px;
    margin: 0 10px;
    cursor: pointer;
}

.faq-wrapper .heading4 {
    margin-bottom: 30px;
}

.faq-card {
    background-color: rgb(255 255 255 / 90%);
    height: 520px;
    border-radius: 5px;
}

.faq-nav {
    margin-top: 230px;
}

.faq-wrapper .highlight {
    padding: 8px 20px;
    font-weight: 500;
}

.faq-nav button {
    font-family: 'Halyard_Display';
    font-weight: 700;
    font-size: 23px;
    padding: 6px 22px 10px;
    line-height: 1em;
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
    transition: .5s;
}

.faq-nav button:hover {
    background-color: #d11c24;
    border-color: #d11c24;
}

.main-banner form input {
    color: #000;
}

.main-banner .bi-btn {
    justify-content: center;
}

.inner-page .hero-content-wrapper .theme-para {
    margin-top: 15px;
    color: #fff;
    font-size: 20px;
    text-transform: capitalize;
}

.inner-page .bi-logos .theme-heading {
    font-size: 40px;
}

.inner-page .mk-tag-item {
    width: fit-content;
    flex: 1 0 fit-content;
    text-align: center;
    background-color: transparent;
    color: var(--themeColor);
    border: 1px solid var(--themeColor);
    font-weight: 400;
    transition: .5s;
}

.inner-page .mk-tag-item:hover {
    background-color: var(--themeColor);
    color: #fff;
}

.d-flex {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 35px;
}

.market-sec .theme-para {
    position: relative;
    max-width: 75%;
    margin-bottom: 0;
}

.inner-page .market-sec a.mk-btn {
    width: 25%;
    margin: 20px 0;
}

.inner-page .market-sec {
    padding-top: 120px;
}

.package-item {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    padding: 40px;
    border: 1px solid rgb(206 28 37 / 20%);
    border-radius: 10px;
    gap: 30px;
    transition: .5s;
    max-width: 90%;
    margin: auto;
}

.package-content h4 {
    color: var(--themeColor);
    font-size: 26px;
    font-weight: 400;
    transition: .5s;
    line-height: 1.2em;
}

.package-icon {
    align-self: end;
    position: relative;
    width: 65px;
    margin-right: 30px;
}

.package-icon:before {
    content: "";
    position: absolute;
    width: 70px;
    height: 70px;
    background-color: var(--themeColor2);
    border-radius: 50%;
    opacity: .1;
    left: 30px;
    top: -10px;
    transition: .5s;
}

.package-item:hover {
    background-color: var(--themeColor2);
}

.package-item img {
    transition: .5s;
}

.package-item:hover img {
    filter: brightness(0) invert(1);
}

.package-item:hover .package-content h4 {
    color: #fff;
}

.package-item:hover .package-icon:before {
    opacity: .1;
    background-color: #000000;
}
.margin-top{
    margin-top: 40px !important; 
}
.inner-page .automation-sec .btn-wrapper {
    justify-content: center;
    margin-top: 70px;
}
.inner-page .automation-sec .btn-wrapper .bi-btn.transparent {
    color: var(--themeColor) !important;
    padding: 0 !important;
    background-color: transparent !important;
}
.amazon-business-sec {
    padding: 100px 0;
}

.top-content .theme-para {
    margin-top: 20px;
    color: #A2A2A2;
}
.amazon-business-sec .btn-wrapper {
    margin-top: 70px;
    justify-content: center;
    text-transform: uppercase;
}

.amazon-business-sec .btn-wrapper a {
    font-size: 18px;
}
.business-item {
    padding: 50px;
    border-radius: 10px;
    box-shadow: 10px 10px 0px var(--themeColor2);
    height: 320px;
    position: relative;
    transition: .5s;
}
.business-item .theme-para {
    color: #a2a2a2;
    margin-top: 20px;
    transition: .5s;
}
.business-footer {
    position: absolute;
    bottom: 40px;
    display: flex;
    justify-content: space-between;
    gap: 50px;
    transition: .5s;
}
.business-footer small {
    color: #a2a2a2;
    font-size: 16px;
    transition: .5s;
}
.business-item:hover{
    background-color: var(--themeColor);
}
.business-item:hover .heading4{
    color: #fff;
}
.business-item:hover .theme-para{
    color: #fff;
}
.business-item:hover small{
    color: #fff;
}
.business-item:hover img{
    filter: invert(1);
}
.amazon-business-sec .row {
    row-gap: 40px;
}
.inner-page .main-banner .desktop-flex {
    justify-content: center;
    align-items: center;
    text-align: center;
}

.inner-page .main-banner .bn-cont p {
    margin-inline: auto;
    max-width: inherit;
    color: white;
    font-size: 20px;
}

.inner-page .main-banner{
    background-image: url('../img/inner-pages-bg.png');
}
form.inner-page-form {
    background-color: transparent;
    flex-wrap: wrap;
    border-radius: 0;
    justify-content: space-between;
}

form.inner-page-form button.bi-btn {
    width: 100%;
}

form.inner-page-form input {
    width: 32.2%;
    height: 55px;
    background-color: rgb(255 255 255 / 15%);
    backdrop-filter: blur(3px);
    color: #fff;
    padding-left: 14px;
    font-weight: 300;
    font-family: 'Halyard_Display';
    border-radius: 5px;
    margin-inline: 0;
}

form.inner-page-form input::placeholder {
    color: #fff;
}

form.inner-page-form button.bi-btn {
    background-color: var(--themeColor2);
    border-radius: 0;
    margin-inline: 0;
    margin-top: 20px;
    text-transform: uppercase;
    font-size: 18px;
    border: 1px solid var(--themeColor2);
}
form.inner-page-form button.bi-btn:hover {
    border-color: #fff !important;
    background-color: transparent !important;
    color: #fff !important;
    scale: 1 !important;
}
.bi-testimonial{
    padding: 80px 0 320px;
    background: #1B1464;
    background: linear-gradient(0deg, rgba(27, 20, 100, 1) 70%, rgba(255, 255, 255, 1) 70%);
}
.star-wrapper span {
    font-weight: 700;
    font-size: 25px;
}

.star-wrapper {
    display: flex;
    gap: 10px;
    align-items: center;
}
.testimonial-item .theme-para {
    color: #a2a2a2;
    margin-top: 30px;
    margin-bottom: 50px;
    font-size: 20px;
    font-weight: 400;
}
.author-box {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 10px;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-info h5 {
    color: var(--themeColor) !important;
    font-size: 23px;
    font-weight: 400;
}

.author-info .theme-para {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 14px;
}

.author-box img {
    box-shadow: 0 0 10px rgb(0 0 0 / 30%);
    border-radius: 50%;
}
.inner-page .bi-contact.text-white {
    margin-top: -280px;
    margin-bottom: 60px;
}
.submenu li a {
    font-size: 21px;
    font-weight: 300;
    border-bottom:1px solid rgb(255 255 255 / 20%);
    padding-bottom:10px;
    padding-left:0;
}
.submenu li:nth-last-child(1){
    margin-bottom:30px;
}

.pd-bt-40 {
    padding-bottom:40px;
}








.bi-testimonial.about-page {
    padding: 80px 0 120px;
}

.btn-link {
    background: #d11c24;
    color: white;
    width: fit-content;
    height: 55px;
    line-height: 55px;
    display: block;
    font-size: 18px;
    font-weight: 400;
    text-transform: uppercase;
    margin: auto;
    border-radius: 6px;
    padding-inline:20px;
}


   .accordion{
      overflow: hidden;
    }

    .acc-item{
      border-bottom: 1px solid #e7ecf4;
    }
    .acc-item:last-child{
      border-bottom: none;
    }

    .acc-trigger{
      width: 100%;
      border: 0;
      background: transparent;
      padding: 18px 18px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      cursor: pointer;
      text-align: left;
    }

    .acc-title{
         font-size: 19px;
        font-weight: 400;
        color: #1B1464;
        letter-spacing: 0.5px;
        font-family: 'Halyard_Display';
    }

    .acc-icon{
      width: 22px;
      height: 22px;
      display: grid;
      place-items: center;
      color: #1c2b58;
      font-weight: 700;
      font-size: 18px;
      line-height: 1;
      user-select: none;
    }

    /* Panel (animated height) */
    .acc-panel{
      max-height: 0;
      overflow: hidden;
      transition: max-height .28s ease;
    }

    .acc-panel-inner{
      padding: 0 18px 16px 18px;
      color: #5b6b86;
      font-size: 19px;
      line-height: 1.6;
    }

    /* Open state */
    .acc-item.is-open .acc-panel{
      max-height: 240px; /* big enough for typical content */
    }
    .acc-item.is-open .acc-icon{
      transform: translateY(-1px);
    }

    /* Focus */
    .acc-trigger:focus-visible{
      outline: 2px solid #cfe0ff;
      outline-offset: 2px;
      border-radius: 8px;
    }
    
    
    section.aboutpage-sec {
    padding: 80px 0px;
}

span.subtitle-tag {
    background: #d11c24;
    width: max-content;
    display: block;
    color: #ffffff;
    padding: 12px 32px;
    border-radius: 4px;
    margin-bottom: 15px;
}

section.aboutpage-sec h2 {
    color: #1B1464;
    font-weight: 400;
    font-size: 36px;
    margin-bottom: 15px;
}

section.aboutpage-sec p {
    margin-bottom: 22px;
    font-size: 19px;
}

.pd-top-50 {
    padding-top: 50px;
}

.center-img img {
    margin-top: -10px;
}

.ab-hd2 {
    max-width: 1090px;
    text-align: center;
    margin: auto;
}

.ab-hd2 h2 {
    font-size: 34px !important;
}

section.bi-building-today h2 {
    color: white;
}

.margin-top-50 {
    margin-top:50px;
}



.image-content-sec .row {
    align-items: center;
}
 
.image-content-sec .bi-btn.transparent {
    padding: 0 !important;
    color: var(--themeColor) !important;
    background-color: transparent !important;
}
 
.image-content-sec .btn-wrapper {
    margin-top: 40px;
}
 
.image-content-sec .theme-heading {
    margin-bottom: 30px;
}
 
.image-content-sec .content-wrapper {
    padding-right: 80px;
}
 
.image-content-sec {
    padding: 100px 0;
}
 
.image-content-sec .theme-para {
    color: #706c6c;
}

image-content-sec.alt .row {
    flex-direction: row-reverse;
}
 
.image-content-sec.alt  .content-wrapper {
    padding-left: 80px;
    padding-right: 0;
}




section.testimonialpage-sec {
    padding: 80px 0px;
}

.testi-box {
    border: 1px solid #8d89b159;
    padding: 40px 20px;
    border-radius: 5px;
    margin-bottom: 32px;
    transition: 0.5s;
}

span.star-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: #D11C24;
    font-size: 18px;
}

span.star-tag .yellow {
    color: #F5B62E;
    font-size: 24px;
    line-height: 1;
}

.theme-heading span {
    font-weight: 500;
}

.testi-box p {
    font-size: 19px;
    margin: 22px 0px;
    color: #A2A2A2;
}


.testi-av {
    display: flex;
    align-items: center;
    gap: 18px;
}

.tst-av-cont h4 {
    color: #1B1464;
    font-weight: 400;
    font-size: 21px;
}

.tst-av-cont p {
    margin: 0px;
    font-size: 15px;
}


.testi-av img {
    width: 57px;
    filter: drop-shadow(0px 3px 4px #0000006e);
    border-radius: 50%;
    border: 1px solid white;
}


.testi-box .quote {
    margin: 40px 13px 20px auto;
    display: block;
    width: 50px;
}

.testi-box:hover {
    background: #d11c24;
}

.testi-box:hover p {
    color: white;
}

.testi-box:hover .quote {
    filter: brightness(22.5);
}

.testi-box:hover .tst-av-cont h4 {
    color: white;
}

.testi-box:hover span.star-tag {
    color: white;
}



.testi-page {
    background: #1B1464;
    padding: 0px;
}

.testi-page .content-wrapper {
    padding-right: 0px;
}

.testi-page h2 {
    color: white;
}

.testi-page p {
    color: #ffffffc2 !important;
    font-size: 23px;
}
.testi-page a.bi-btn.transparent {
    color: white !important;
    font-weight: 300;
    font-size: 22px;
}

.testi-page .image-wrapper {
    margin-top: -59px;
}

.margin-top-0 {
 margin-top:0px !important;
}
.optimize-wrapper {
    margin-inline: 10px;
}

ul.slick-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top:10px;
}
ul.slick-dots li button{
    font-size: 0;
    padding:4px 20px;
    border-radius:5px;
    border:none;
}
ul.slick-dots li.slick-active button{
    background-color: var(--themeColor2);
}
.building-item-wrapper .counter-num {
    font-size: 30px;
}

.building-item-wrapper h5 {
    font-size: 19px;
    text-transform: capitalize;
}
.optimize-img-wrapper img {
    height: 620px;
    object-fit: cover;
    width: 100%;
    border-radius: 10px;
}

.optimize-img-wrapper {
    display: flex;
    align-items: start;
    justify-content: start;
}
#modal .modal-content{
    background-color: #fff;
}
.modal-body p {
    color: #000;
}

.modal-content .bi-form :is(input, textarea) {
    border-color: rgb(0 0 0 / 20%);
    color: #000 !important;
    background-color: rgb(0 0 0 / 10%);
}

.modal-content .bi-form :is(input, textarea)::placeholder {
    color: rgb(0 0 0 / 50%);
}

button.close-modal {
    color: #000;
}

.inner-p-cont {
    color: black;
    line-height: 1.5;
    font-size: 18px;
}

.inner-p-cont {
    padding: 30px 0px;
}

.inner-p-cont h3 {
    font-size: 27px;
    margin-top: 18px;
    margin-bottom: 5px;
    font-weight: 500;
}
.faq-question {
    font-size: 24px !important;
}

.faq-answer p {
    font-family: "Halyard_Display", sans-serif;
    font-size: 18px !important;
    line-height: 1.5em;
}
.at-box h3 {
    line-height: 1;
    height: 56px;
}
.tabs-area .tab .stack-paragraph {
    font-size: 22px;
    font-weight: 300;
    color: #292929;
    position: absolute;
    left: 0vw;
    max-width: 360px;
    top: 0vw;
    bottom: 0vw;
    margin: auto;
    height: fit-content;
    line-height:1.1em;
    opacity: 0;
    transition: .5s;
}

.tabs-area .tab.active .stack-paragraph {
    opacity: 1;
}
.bi-mobile-tabs{
    display:none;
}
.mobile-tabs .tabs{
  max-width:800px;
  margin:auto;
  font-family:sans-serif;
}

.mobile-tabs .tabs-nav{
  display:flex;
  flex-wrap:wrap;
  border-bottom:2px solid #eee;
}

.mobile-tabs .tab-btn{
  flex:1;
  padding:14px;
  border:none;
  background:#f5f5f5;
  cursor:pointer;
  font-size:16px;
  transition:0.3s;
}

.mobile-tabs .tab-btn:hover{
  background:#eaeaea;
}

.mobile-tabs .tab-btn.active{
  background:#000;
  color:#fff;
}

.mobile-tabs .tabs-content{
  padding:20px;
  border:1px solid #eee;
}

.mobile-tabs .tab-panel{
  display:none;
  animation:mobileTabFade 0.4s ease;
}

.mobile-tabs .tab-panel.active{
  display:block;
}
.bi-mobile-tabs {
    padding: 80px 0;
}

@keyframes mobileTabFade{
  from{
    opacity:0;
    transform:translateY(10px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}
.bi-mobile-tabs {
    padding: 80px 0;
}

.mobile-tabs .tabs {
    display: flex;
    font-family: 'Halyard_Display' !important;
}

.mobile-tabs .tabs-nav {
    flex-direction: column;
    flex: 2;
    gap: 12px;
}

.mobile-tabs .tabs-content {
    flex: 4;
    border: navajowhite;
}
.mobile-tabs .tabs-content p{
    margin-bottom:0;
}
.mobile-tabs .tab-btn.active {
    background-color: var(--themeColor2);
}

.mobile-tabs .tab-btn {
    font-family: 'Halyard_Display';
}
li.tab.active:nth-child(1) {
    color: #f7972b !important;
}
li.tab.active:nth-child(2) {
    color: #0d71c6 !important;
}
li.tab.active:nth-child(3) {
    color: #febb10 !important;
}
li.tab.active:nth-child(4) {
    color: #66d081 !important;
}
li.tab.active:nth-child(5) {
    color: #000 !important;
}

.highlight {
    font-weight: 500;
}

.mk-sec-cont span {
    font-weight: 500;
}

a.mk-btn {
    font-weight: 500;
}

.bi-btn {
    font-weight: 500;
    font-family: 'Halyard_Display';
}

.header-btn .bi-btn.white {
    font-weight: 500;
    text-transform: uppercase;
}

.mk-tag-item {
    font-weight: 500;
}

.main-banner .bn-cont .bi-form {
    gap: 0 !important;
}
.main-banner .bn-cont .bi-form input {
    color:#000 !important;
    background-color:#fff !important;
}
.main-banner .bn-cont .bi-form input::placeholder {
    color:#000 !important;
    background-color:#fff !important;
}
.main-banner .bn-cont .bi-form .bi-btn{
    border-radius:90px !important;
}
.wrapper-review {
    position: relative;
    display: flex !important;
    align-items: flex-end;
    justify-content: flex-start;
}
.video-testimonial-section {
    padding: 260px 0 120px;
    background: #f5f5f5;
    overflow: hidden;
    margin-top: -150px;
}

/*.video-testimonial-section .container {*/
/*    max-width: 1280px;*/
/*    margin: 0 auto;*/
/*    padding: 0 20px;*/
/*}*/
.testimonial-card .brand-logo img {
    position: absolute;
    right: 40px;
    bottom: 40px;
    height: fit-content;
    margin: auto;
    max-width: 150px;
}

.testimonial-card {
    position: relative;
}
.video-testimonial-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.video-testimonial-content {
    width: 34%;
}

.video-testimonial-content .section-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #6a6a6a;
    margin-bottom: 18px;
}

.video-testimonial-content h2 {
    font-size: 56px;
    line-height: 1.05;
    font-weight: 500;
    color: #111111;
    margin: 0 0 24px;
}

.video-testimonial-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #555555;
    max-width: 390px;
    margin: 0 0 32px;
}

.video-testimonial-content .case-study-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 26px;
    border: 2px solid #3f51f7;
    border-radius: 8px;
    color: #3f51f7;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.video-testimonial-content .case-study-btn:hover {
    background: #3f51f7;
    color: #ffffff;
}

.video-testimonial-media {
    width: 66%;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
}

.video-thumb {
    position: relative;
    width: 55%;
    /*max-width: 480px;*/
    z-index: 1;
    background: #000;
    overflow: hidden;
}

.video-thumb img,
.video-thumb video {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
}

.video-thumb .testimonial-video {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease;
}

.video-thumb.playing .testimonial-video {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.video-thumb.playing .video-poster {
    opacity: 0;
    visibility: hidden;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 92px;
    height: 92px;
    background: #3f51f7;
    border: none;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
    z-index: 3;
    box-shadow: 0 15px 35px rgba(63, 81, 247, 0.28);
    transition: transform 0.3s ease, background 0.3s ease;
}

.play-btn:hover {
    transform: translate(-50%, -50%) scale(1.08);
}

.play-btn span {
    width: 0;
    height: 0;
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
    border-left: 22px solid #ffffff;
    margin-left: 4px;
}

.video-thumb.playing .play-btn {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.testimonial-card {
    background: #ece9d7;
    padding: 34px 30px;
    width: 45%;
    max-width: 540px;
    z-index: 2;
}
.video-thumb iframe {
    width: 100%;
}
.testimonial-card .brand-logo {
    font-size: 34px;
    line-height: 1;
    font-weight: 700;
    color: #111111;
    margin-bottom: 26px;
}

.testimonial-card .testimonial-quote {
    font-size: 17px;
    line-height: 1.30;
    font-style: italic;
    color: #111111;
    margin: 0 0 28px;
    max-width: 95%;
}

.testimonial-card h4 {
    font-size: 18px;
    line-height: 1.3;
    font-weight: 700;
    color: #111111;
    margin: 0 0 6px;
}

.testimonial-card span {
    display: block;
    font-size: 16px;
    line-height: 1.5;
    color: #222222;
}
.video-testimonial-content .theme-heading {
    font-size: 37px;
    margin-bottom: 25px;
}

.video-testimonial-content .theme-para {
    line-height: 1.4em;
    max-width: 100%;
}
.video-testimonial-content .mk-btn{
    margin-bottom:0;
    max-width: fit-content;
}
.slick-arrow {
    position: absolute;
    top: -60px;
    right: 0;
    font-size: 0;
    background-color: transparent;
    border: none;
    padding:15px;
    background-color: var(--themeColor);
    border-radius: 50%;
    text-align:center;
    z-index:9999;
    transition:.5;
    cursor:pointer;
}
.slick-arrow:hover {
    scale:.95;
    background-color: var(--themeColor2);
}
.slick-prev.slick-arrow{
    right: 50px;
}
.slick-arrow:before{
    content:">";
    font-size:20px;
    font-weight:700;
    color:#fff;
    line-height:10px;
    font-family:monospace;
}
.slick-prev.slick-arrow{
    rotate:180deg !important;
}
@media (max-width: 1199px) {
    .video-testimonial-content h2 {
        font-size: 46px;
    }

    .video-testimonial-media {
        min-height: 470px;
    }

    .video-thumb img,
    .video-thumb video {
        height: 430px;
    }

    .testimonial-card {
        width: 60%;
        padding: 28px 24px;
    }
}

@media (max-width: 991px) {
    .video-testimonial-wrap {
        flex-direction: column;
        gap: 45px;
    }

    .video-testimonial-content,
    .video-testimonial-media {
        width: 100%;
    }

    .video-testimonial-content h2 br {
        display: none;
    }

    .video-testimonial-content h2 {
        font-size: 40px;
    }

    .video-testimonial-media {
        min-height: auto;
        display: block;
    }

    .video-thumb {
        width: 100%;
        max-width: 100%;
    }

    .video-thumb img,
    .video-thumb video {
        width: 100%;
        height: auto;
        min-height: 420px;
    }

    .testimonial-card {
        position: relative;
        width: calc(100% - 40px);
        max-width: 100%;
        right: auto;
        bottom: auto;
        margin: -60px 0 0 auto;
    }
}

@media (max-width: 767px) {
    .video-testimonial-section{
        padding: 60px 0;
        margin-top: 0px;
    }
    .video-testimonial-content .theme-heading {
        font-size: 25px;
        margin-bottom: 25px;
    }
    .video-testimonial-section {
        padding: 60px 0;
    }

    .video-testimonial-content h2 {
        font-size: 34px;
    }

    .video-testimonial-content p {
        font-size: 16px;
    }

    .video-testimonial-content .case-study-btn {
        font-size: 16px;
        padding: 14px 22px;
    }

    .video-thumb img,
    .video-thumb video {
        min-height: 320px;
    }

    .play-btn {
        width: 74px;
        height: 74px;
    }

    .play-btn span {
        border-top: 11px solid transparent;
        border-bottom: 11px solid transparent;
        border-left: 18px solid #ffffff;
    }

    .testimonial-card {
        width: calc(100% - 20px);
        margin-top: -35px;
        padding: 24px 20px;
    }

    .testimonial-card .brand-logo {
        font-size: 28px;
        margin-bottom: 18px;
    }

    .testimonial-card .testimonial-quote {
        font-size: 17px;
        margin-bottom: 20px;
    }
    .wrapper-review {
        flex-direction: column;
    }
    .wrapper-review .video-thumb{
        height:250px;
    }
    .wrapper-review .video-thumb iframe {
        width:100%;
        height:100%;
    }
    
    .testimonial-card {
        width: 100%;
        margin-top: 0;
    }
    
    .testimonial-card .brand-logo img {
        right: 20px;
        bottom: 20px;
        max-width: 110px;
    }
}
.bi-blog {
    padding: 100px 0;
}
.blog-filter {
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border: 2px solid var(--themeColor2);
}

ul.category-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 0;
}

ul.category-tabs li.active {
    background-color: var(--themeColor2);
    color: #fff;
}

ul.category-tabs li {
    padding: 4px 20px;
    color: #000;
    font-weight: 600;
    transition: .5s;
    cursor:pointer;
}

ul.category-tabs li:hover {
    background-color: #f2eeee;
}
ul.category-tabs li.active:hover {
    background-color: var(--themeColor2);
    color: #fff;
}

input#blog-search {
    height: 45px;
    text-indent: 10px;
    background-color: #f4f4f5;
    border: none;
}
.blog-grid {
    display: flex;
    justify-content: center;
    align-items: start;
    gap: 30px;
    flex-wrap: wrap;
}

.blog-card-modern {
    flex: 0 0 31%;
    border: 1px solid #f1efef;
    border-radius: 12px !important;
    background-color: #fff;
    transition: .5s;
}
.blog-card-modern:hover {
    background-color: #f3efef;
}

.blog-content {
    padding: 20px;
}

.blog-cats {
    display: flex;
    gap: 10px;
    text-decoration: underline;
    color: var(--themeColor3);
    margin-bottom: 10px;
}

.blog-title {
    line-height: 1em;
}

.blog-title a {
    color: var(--themeColor);
    font-weight: 500;
}

.blog-author {
    display: flex;
    margin-top: 20px;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.blog-author-details {
    display: flex;
    align-items: center;
    gap: 10px;
}
.blog-author img {
    max-width: 40px;
}

.blog-author span {
    font-size: 14px;
}