:root {
    --euclid-circular-a: "euclid-circular-a", sans-serif;
    --dark-bg: #050915;
    --primary: #2BA6C2;
    --primary-rgb: 43, 166, 194;
    --dark-color: #000000;
    --dark-rgb: 0, 0, 0;
    --white-color: #ffffff;
    --white-bg: #ffffff;
    --white-rgb: 255, 255, 255;
    --light-color: #B5BECB;
    --border-color: #2F3847;
    --dark-blue: #091424;
    --vintage-blue: #2B3343;
    --box-shadow: 3px 5px 20px 0 rgba(var(--dark-rgb), 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
}

html {
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    scroll-behavior: auto !important;
}

html, body {
    scroll-behavior: smooth;
    font-family: var(--euclid-circular-a);
    font-size: 18px;
    line-height: 30px;
    font-weight: 400;
    color: var(--white-color);
    background-color: var(--dark-bg);
    word-break: break-word;
    margin: 0;
    padding: 0;
}

::selection {
    background: var(--primary);
    color: var(--dark-color);
}

::-moz-selection {
    background: var(--primary);
    color: var(--dark-color);
}

picture {
    display: inline-block;
    line-height: 0;
    vertical-align: middle;
}

img {
    width: auto;
    max-width: 100%;
    min-width: auto;
    height: auto;
    max-height: 100%;
    min-height: auto;
    vertical-align: middle;
}

.svg-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.video-icon {
    position: absolute;
    inset: 0;
    z-index: 1;
    align-items: center;
    justify-content: center;
    display: flex;
    cursor: pointer;
}

.video-icon .svg-icon {
    width: 60px;
    height: 60px;
    border: 1px solid var(--primary);
    border-radius: 60px;
    background-color: rgba(var(--primary-rgb), 0.2);
    backdrop-filter: blur(20px);
    cursor: pointer;
    transition: all 0.25s ease 0s;
}

.video-icon .svg-icon img {
    border-radius: 0 !important;
    transition: all 0.25s ease 0s;
}

::-webkit-scrollbar {
    height: 6px;
    width: 6px;
}

::-webkit-scrollbar-thumb {
    border-radius: 24px;
    background-color: rgba(181, 190, 203, 0.5);
    transition: color 0.25s ease-in-out, background-color 0.25s ease-in-out, border-color 0.25s ease-in-out, box-shadow 0.25s ease-in-out;
    cursor: pointer;
}

::-webkit-scrollbar-thumb:hover {
    background-color: var(--primary);
}

::-webkit-scrollbar-track {
    border-radius: 24px;
    background-color: #2B3343;
    border: none;
}

@supports (-moz-appearance: none) {
    * {
        scrollbar-width: thin;
        scrollbar-color: var(--primary) var(--vintage-blue);
    }
}

a, button {
    -webkit-transition: all 0.35s ease 0s;
    transition: all 0.35s ease 0s;
    text-decoration: none;
}

.container {
    max-width: 1562px;
    padding-left: 16px;
    padding-right: 16px;
}

p {
    margin: 0;
}

ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

/*Button Css*/
.btn {
    font-family: var(--euclid-circular-a);
    font-size: 0.889rem;
    line-height: 1.111rem;
    color: var(--white-color);
    font-weight: 500;
    text-align: center;
    padding: 11px 30px;
    border: 1px solid var(--primary);
    border-radius: 30px;
    outline: none;
    cursor: pointer;
    position: relative;
    box-shadow: none;
    transition: all 0.35s ease 0s;
    align-items: center;
    justify-content: center;
    column-gap: 10px;
    display: inline-flex;
}

.primary-btn {
    background-color: rgba(var(--primary-rgb), 0.2);
    color: var(--white-color);
}

.btn.primary-btn:hover, .btn.primary-btn:active, .btn.primary-btn:focus-within, .btn.primary-btn:focus-visible {
    color: var(--white-color);
    background-color: var(--primary);
    border-color: var(--primary);
}

.secondary-btn {
    color: var(--white-color);
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn.secondary-btn:hover, .btn.secondary-btn:active, .btn.secondary-btn:focus-within, .btn.secondary-btn:focus-visible {
    color: var(--white-color);
    background-color: transparent;
    border-color: var(--primary);
}

.white-btn {
    color: var(--white-color);
    background-color: transparent;
    border-color: var(--white-color);
}

.btn.white-btn:hover, .btn.white-btn:active, .btn.white-btn:focus-within, .btn.white-btn:focus-visible {
    color: var(--white-color);
    background-color: var(--primary);
    border-color: var(--primary);
}

.big-title {
    font-size: 3.333rem;
    line-height: 4.222rem;
    font-weight: 400;
    color: var(--white-color);
    margin: 0 0 30px;
}

.big-title strong {
    font-weight: 600;
}

.section-title {
    font-size: 2.778rem;
    line-height: 3.444rem;
    font-weight: 500;
    color: var(--white-color);
    margin: 0 0 30px;
}

.section-semi-title {
    font-size: 2.222rem;
    line-height: 2.889rem;
    font-weight: 500;
    color: var(--white-color);
    margin: 0 0 20px;
}

/*Common CSS*/
.pt-80 {
    padding-top: 80px;
}

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

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

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

/*Header CSS Start*/
.header-wrap {
    background: linear-gradient(90deg, #090E1A 0%, #162132 100%);
    border-bottom: 1px solid var(--border-color);
    padding: 9px 0;
    position: sticky;
    top: 0;
    z-index: 99;
}

.header-wrap .header-inner {
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    display: flex;
    position: relative;
}

.header-wrap .brand-logo {
    min-width: 130px;
}

.header-wrap .brand-logo a {
    display: inline-flex;
}

.header-wrap .navbar-toggler {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    display: none;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    padding: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    cursor: pointer;
    outline: none;
    box-shadow: none;
}

.header-wrap .navbar-toggler span {
    display: block;
    width: 26px;
    background-color: var(--white-bg);
    height: 2px;
    position: relative;
    border-radius: 20px;
    transition: all 0.25s ease 0s;
}

.header-wrap .navbar-toggler span:after,
.header-wrap .navbar-toggler span:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    display: block;
    width: 100%;
    background-color: var(--white-bg);
    height: 2px;
    border-radius: 20px;
    transition: all 0.25s ease 0s;
}

.header-wrap .navbar-toggler span:after {
    bottom: -8px;
}

.header-wrap .navbar-toggler span:before {
    top: -8px;
}

.header-wrap .navbar-toggler:not(.collapsed) span {
    background-color: transparent;
}

.header-wrap .navbar-toggler:not(.collapsed) span:before {
    transform: rotate(45deg);
    top: 0;
    bottom: 0;
}

.header-wrap .navbar-toggler:not(.collapsed) span:after {
    transform: rotate(-45deg);
    top: 0;
    bottom: 0;
}

.header-wrap .navbar {
    background: transparent;
    padding: 0;
}

/*.header-wrap .navbar .navbar-collapse {*/
/*    display: block;*/
/*}*/

.header-wrap .navbar-collapse .navbar-nav {
    column-gap: 60px;
    flex-direction: row;
    display: flex;
}

.header-wrap .navbar-collapse .navbar-nav .nav-link {
    padding: 0;
    font-size: 0.889rem;
    line-height: 1.111rem;
    font-weight: 500;
    color: var(--white-color);
    text-decoration: none;
    outline: none;
    transition: all 0.35s ease 0s;
}

.header-wrap .navbar-collapse .navbar-nav .nav-link:hover, .header-wrap .navbar-collapse .navbar-nav .nav-link.active {
    color: var(--primary);
}

.header-wrap .header-action {
    min-width: 130px;
    justify-content: flex-end;
    display: flex;
}

.header-wrap .header-action .btn {
    padding-top: 9px;
    padding-bottom: 9px;
}

/*Header CSS END*/

/*Footer CSS Start*/
.cta-box {
    font-size: 1.111rem;
    line-height: 1.444rem;
    background-color: var(--primary);
    background-image: url('../images/cta-bg.webp');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    min-height: 292px;
    border-radius: 20px;
    padding: 30px;
    gap: 30px;
    flex-direction: column;
    align-items: flex-start;
    display: flex;
}

.cta-box .section-title {
    margin-bottom: 0;
}

.cta-box .btn {
    margin-bottom: auto;
}

.footer-wrap {
    background: radial-gradient(47.78% 50% at 47.78% 0%, rgba(57, 80, 110, 0.7) 0%, #111C2D 100%);
}

.footer-wrap .copyright-strip {
    padding: 20px 0;
    font-size: 0.889rem;
    line-height: 1.111rem;
    color: var(--light-color);
    justify-content: space-between;
    gap: 16px;
    display: flex;
}

.footer-wrap .copyright-strip .copyright-links {
    gap: 16px;
    flex-wrap: wrap;
    display: flex;
}

.footer-wrap .copyright-strip .copyright-links a {
    color: var(--light-color);
}

.footer-wrap .copyright-strip .copyright-links a:hover {
    color: var(--primary);
}

.footer-wrap:has(.cta-box-wrap) {
    background: transparent;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.footer-wrap:has(.cta-box-wrap):before {
    content: '';
    background: radial-gradient(47.78% 50% at 47.78% 0%, rgba(57, 80, 110, 0.7) 0%, #111C2D 100%);
    position: absolute;
    top: 26.165%;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    pointer-events: none;
}

.footer-wrap .footer-top-strip {
    padding-top: 50px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    justify-content: space-between;
    gap: 30px;
    display: flex;
}

.footer-wrap .footer-logo {
    font-size: 1.333rem;
    line-height: 1.667rem;
    font-weight: 500;
}

.footer-wrap .footer-logo a {
    margin: 0 0 15px;
    display: inline-flex;
}

.footer-wrap .footer-top-strip ul {
    gap: 24px;
    display: flex;
}

.footer-wrap .footer-top-strip ul li .link {
    font-size: 0.889rem;
    line-height: 1.111rem;
    font-weight: 500;
    color: var(--white-color);
    text-align: center;
    padding: 19px 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    min-width: 110px;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    display: flex;
    transition: all 0.25s ease 0s;
}

.footer-wrap .footer-top-strip ul li .link .svg-icon {
    width: 60px;
    height: 60px;
    align-items: center;
    justify-content: center;
    display: flex;
}

.footer-wrap .footer-top-strip ul li .link .svg-icon img {
    transition: filter 0.25s ease;
    filter: invert(1) brightness(10);
}

.footer-wrap .footer-top-strip ul li a.link:hover {
    color: var(--primary);
    border-color: var(--primary);
}

.footer-wrap .footer-top-strip ul li a.link:hover .svg-icon img {
    filter: invert(0) brightness(1);
}

/*Footer CSS END*/

/*Home Banner*/
.banner-wrap {
    background-image: url(../images/banner-bg.svg);
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: cover;
    overflow: hidden;
}

.banner-wrap .container {
    display: flex;
    align-items: center;
    gap: 30px;
}

.banner-wrap .banner-info {
    font-size: 1.111rem;
    line-height: 2rem;
    color: var(--light-color);
    flex: 1;
}

.banner-wrap .banner-info .big-title {
    margin-bottom: 16px;
}

.banner-wrap .banner-info p {
    margin-bottom: 16px;
}

.banner-wrap .banner-info p:last-child {
    margin-bottom: 0;
}

.banner-wrap .banner-info ul li {
    font-size: 1rem;
    line-height: 1.389rem;
    color: var(--white-color);
    margin-bottom: 16px;
    padding: 0 0 0 28px;
    position: relative;
}

.banner-wrap .banner-info ul li:before {
    content: '';
    position: absolute;
    top: 5px;
    left: 0;
    background-image: url(../images/icons/right-arrow-icon.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    display: inline-flex;
    width: 16px;
    height: 15px;
    opacity: 0.2;
    pointer-events: none;
}

.banner-wrap .banner-info ul li:last-child {
    margin-bottom: 0;
}

.banner-wrap .banner-info .btn {
    margin-top: 30px;
}


.banner-wrap .banner-image {
    width: 100%;
    min-width: 910px;
    max-width: 910px;
    margin-right: -160px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.banner-wrap .banner-image img {
    border-radius: 12px;
}

/*Trusted by*/
.trusted-by .section-title {
    font-size: 1.333rem;
    line-height: 1.667rem;
    text-align: center;
}

.trusted-by .client-list-wrap {
    padding: 15px 0;
    position: relative;
    overflow: hidden;
}

.trusted-by .client-list-wrap:before, .trusted-by .client-list-wrap:after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 155px;
    z-index: 1;
    pointer-events: none;
}

.trusted-by .client-list-wrap:before {
    left: 0;
    background: linear-gradient(270deg, transparent 0%, var(--dark-bg) 74.84%);
}

.trusted-by .client-list-wrap:after {
    right: 0;
    background: linear-gradient(90deg, transparent 0%, var(--dark-bg) 74.84%);
}

.trusted-by .client-list {
    padding: 0 50px;
    column-gap: 100px;
    min-width: max-content;
    display: flex;
    -webkit-animation: logoMarquee 25s linear infinite;
    animation: logoMarquee 25s linear infinite;
}

.trusted-by .client-list img {
    max-height: 40px;
    vertical-align: middle;
}

@keyframes logoMarquee {
    from {
        transform: translateX(0%);
        -webkit-transform: translateX(0%);
        -moz-transform: translateX(0%);
        -ms-transform: translateX(0%);
        -o-transform: translateX(0%);
    }
    to {
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
    }
}


/*What Ctrl+Shft Does*/
.what-does {
    background: var(--dark-blue);
}

.what-does .container {
    gap: 30px;
    align-items: center;
    display: flex;
}

.what-does .what-does-info {
    flex: 1;
    color: var(--light-color);
}

.what-does .what-does-info strong {
    font-weight: 500;
    color: var(--white-color);
}

.what-does .what-does-info p {
    margin-bottom: 30px;
}

.what-does .what-does-info p:last-child {
    margin-bottom: 0;
}

.what-does .what-does-img {
    width: 100%;
    max-width: 490px;
    border-radius: 20px;
    overflow: hidden;
}

.what-does .what-does-img picture {
    display: block;
}

.what-does .what-does-img img {
    border-radius: 20px;
    width: 100%;
}

/*Why This Matters Now*/
.why-this-matters .container {
    gap: 30px;
    align-items: center;
    display: flex;
}

.why-this-matters .why-this-matters-img {
    width: 100%;
    max-width: 490px;
    border-radius: 20px;
    overflow: hidden;
}

.why-this-matters .why-this-matters-img picture {
    display: block;
}

.why-this-matters .why-this-matters-img img {
    width: 100%;
    border-radius: 20px;
}

.why-this-matters .why-this-matters-info {
    color: var(--light-color);
    flex: 1;
}

.why-this-matters .why-this-matters-info .section-title {
    margin-bottom: 10px;
}

.why-this-matters .why-this-matters-info strong {
    font-weight: 500;
    color: var(--white-color);
}

.why-this-matters .why-this-matters-info p {
    margin-bottom: 20px;
}

.why-this-matters .why-this-matters-info p:last-child {
    margin-bottom: 0;
}

.why-this-matters .why-this-matters-info ul {
    margin-bottom: 20px;
}

.why-this-matters .why-this-matters-info ul:last-child {
    margin-bottom: 0;
}

.why-this-matters .why-this-matters-info ul li {
    background: var(--vintage-blue);
    line-height: 1.444rem;
    color: var(--white-color);
    margin-bottom: 15px;
    border-radius: 10px;
    padding: 17px 15px 17px 48px;
    position: relative;
    background-image: url(../images/icons/right-arrow-icon.svg);
    background-repeat: no-repeat;
    background-position: left 20px top 22px;
}

.why-this-matters .why-this-matters-info ul li:last-child {
    margin-bottom: 0;
}

/*What This Is / What This Isn’t*/
.what-this-is {
    background: var(--dark-blue);
}

.what-this-is .section-title {
    text-align: center;
}

.what-this-is .what-this-info {
    display: flex;
    gap: 30px;
}

.what-this-is .what-this-info .what-this-is-box {
    flex: 1;
    line-height: 1.444rem;
    color: var(--white-color);
    font-weight: 500;
    padding: 1px;
    border-radius: 20px;
    background: linear-gradient(109.48deg, #404A5E 0%, #1D2331 29.64%, #141F2F 75.72%, #404A5E 100%);
}

.what-this-is .what-this-info .what-this-is-box .what-this-is-box-inner {
    padding: 29px;
    border-radius: 20px;
    background: radial-gradient(47.78% 50% at 47.78% 0%, rgba(57, 80, 110, 0.7) 0%, #111C2D 100%);
    height: 100%;
}

.what-this-is .what-this-info .what-this-is-box .svg-icon {
    width: 60px;
    height: 60px;
    margin: 0 0 30px;
}

.what-this-is .what-this-info .what-this-is-box ul li {
    margin-bottom: 20px;
    padding: 0 0 0 28px;
    position: relative;
}

.what-this-is .what-this-info .what-this-is-box ul li:before {
    content: '';
    position: absolute;
    top: 5px;
    left: 0;
    /*bottom: 0;*/
    /*margin: auto;*/
    background-image: url(../images/icons/right-arrow-icon.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    display: inline-flex;
    width: 16px;
    height: 15px;
    opacity: 0.2;
    pointer-events: none;
}

.what-this-is .what-this-info .what-this-is-box ul li:last-child {
    margin-bottom: 0;
}

/*Built for*/
.built-for-wrap .built-for-info {
    gap: 30px;
    display: flex;
}

.built-for-wrap .built-for-info .built-for-box {
    flex: 1;
    border-radius: 20px;
    padding: 1px;
    color: var(--light-color);
    background: linear-gradient(109.48deg, #404A5E 0%, #1D2331 29.64%, #141F2F 75.72%, #404A5E 100%);
}

.built-for-info .built-for-box .built-for-box-inner {
    padding: 29px;
    border-radius: 20px;
    background: var(--dark-bg);
    height: 100%;
}

.built-for-info .built-for-box h3 {
    font-size: 1.667rem;
    line-height: 2.222rem;
    color: var(--white-color);
    margin: 0 0 10px;
    gap: 20px;
    align-items: center;
    display: flex;
}

.built-for-info .built-for-box h3 .svg-icon {
    width: 50px;
    height: 50px;
}

.built-for-info .built-for-box .built-for-img {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin: 30px 0;
}

.built-for-info .built-for-box .built-for-img > picture {
    position: relative;
    padding-bottom: 56.233%;
    display: block;
}

.built-for-info .built-for-box .built-for-img > picture img {
    border-radius: 20px;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.built-for-info .built-for-box .built-for-img .video-icon .svg-icon {
    background: rgba(var(--white-rgb), 0.05);
    border-color: var(--white-color);
}

/*What leaders get*/
.what-get-wrap {
    background: var(--dark-blue);
}

.what-get-wrap .section-semi-title {
    margin-bottom: 30px;
}

.what-get-wrap .what-get-info {
    gap: 30px;
    flex-wrap: wrap;
    display: flex;
}

.what-get-wrap .what-get-box {
    font-size: 1.111rem;
    font-weight: 500;
    flex: 1;
    padding: 1px;
    border-radius: 20px;
    background: linear-gradient(109.48deg, #404A5E 0%, #1D2331 29.64%, #141F2F 75.72%, #404A5E 100%);
}

.what-get-wrap .what-get-box .what-get-box-inner {
    padding: 29px;
    border-radius: 20px;
    background: radial-gradient(47.78% 50% at 47.78% 0%, rgba(57, 80, 110, 0.28) 0%, rgba(17, 28, 45, 1) 100%);
    height: 100%;
}

.what-get-wrap .what-get-box .svg-icon {
    width: 60px;
    height: 60px;
    margin: 0 0 30px;
}

/*Trusted by Experts. Backed by Science*/
.trusted-by-experts {
    font-size: 1.111rem;
    color: var(--light-color);
    overflow: hidden;
}

.trusted-by-experts .section-semi-title {
    margin-bottom: 10px;
}

.trusted-by-experts .trusted-by-expert-list {
    display: flex;
    gap: 160px;
    margin-top: 50px;
}

.trusted-by-experts .trusted-by-expert-list .trusted-by-expert-img {
    gap: 25px;
    flex-wrap: wrap;
    align-self: self-start;
    display: flex;
    position: relative;
    min-width: 620px;
}

.trusted-by-expert-list .trusted-by-expert-img::-webkit-scrollbar {
    height: 3px;
    width: 3px;
}

.trusted-by-expert-list .trusted-by-expert-img:before {
    content: '';
    position: absolute;
    top: 0;
    right: -80px;
    bottom: 0;
    border-right: 1px solid rgba(var(--white-rgb), 0.2);
    pointer-events: none;
}

.trusted-by-expert-list .trusted-by-expert-img .trusted-expert {
    border: none;
    border-radius: 20px;
    position: relative;
    flex: 1;
    width: calc(33.33% - 17px);
    min-width: calc(33.33% - 17px);
    background: transparent;
    outline: none;
    box-shadow: none;
}

.trusted-by-expert-img .trusted-expert:before {
    content: '';
    background: linear-gradient(180deg, rgba(5, 9, 21, 0) 62.66%, rgba(5, 9, 21, 0.9) 97.89%);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    z-index: 1;
    border-radius: 20px;
}

.trusted-by-expert-img .trusted-expert:after {
    content: '';
    position: absolute;
    border: 4px solid var(--border-color);
    border-radius: 24px;
    inset: -8px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.25s ease 0s;
}

.trusted-by-expert-img .trusted-expert picture {
    padding-bottom: 119.7%;
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 20px;
    background: var(--dark-blue);
}

.trusted-by-expert-img .trusted-expert picture img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    border-radius: 20px;
}

.trusted-by-expert-img .trusted-expert > span {
    font-size: 1.111rem;
    line-height: 1.444rem;
    font-weight: 500;
    color: var(--white-color);
    text-align: center;
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 15px 35px;
    z-index: 2;
    display: block;
}

.trusted-by-expert-img .trusted-expert:hover:after {
    opacity: 1;
    visibility: visible;
}

.trusted-by-expert-img .trusted-expert.active:after {
    opacity: 1;
    visibility: visible;
    border-color: var(--primary);
}


.trusted-by-experts .trusted-by-expert-list .trusted-by-expert-info {
    align-items: center;
    display: flex;
}

.trusted-by-expert-list .trusted-by-expert-info .trusted-expert-detail {
    font-size: 1rem;
    line-height: 1.667rem;
    display: none;
}

.trusted-by-expert-list .trusted-by-expert-info .trusted-expert-detail.active {
    display: block;
}

.trusted-by-expert-info .trusted-expert-detail .expert-designation {
    font-size: 1.333rem;
    margin-bottom: 40px;
}

.trusted-by-expert-info .trusted-expert-detail h3 {
    font-size: 2.222rem;
    line-height: 2.889rem;
    font-weight: 500;
    color: var(--white-color);
    margin: 0 0 15px;
}

.trusted-by-expert-info .trusted-expert-detail p {
    margin-bottom: 20px;
}

.trusted-by-expert-info .trusted-expert-detail p:last-child {
    margin-bottom: 0;
}

/*========== Video Popup ==========*/
.modal-backdrop {
    background: rgba(var(--dark-rgb), 0.7);
    opacity: 0;
}

.modal-backdrop.show {
    opacity: 1;
}

.video-modal .modal-dialog {
    width: 800px;
    max-width: calc(100% - 36px);
    margin: 30px auto;
    min-height: calc(100% - 60px);
}

.video-modal .modal-content {
    border-radius: 10px;
    border: none;
    outline: none;
    box-sizing: border-box;
    position: relative;
    box-shadow: var(--box-shadow);
    background: var(--white-bg);
    padding: 3px;
}

.video-modal .close-btn {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 30px;
    height: 30px;
    margin: 0;
    padding: 0;
    background: var(--white-bg);
    border: none;
    border-radius: 30px;
    outline: none;
    box-shadow: var(--box-shadow);
    z-index: 9;
    align-items: center;
    justify-content: center;
    display: inline-flex;
    transition: all 0.25s ease 0s;
}

.video-modal .close-btn img {
    width: 12px;
    height: 12px;
    transition: all 0.25s ease 0s;
}

.video-modal .close-btn:hover {
    background: var(--primary);
}

.video-modal .close-btn:hover img {
    filter: invert(1) brightness(10);
}

.video-modal .modal-body {
    padding: 0;
}

.video-box {
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    overflow: hidden;
    padding-bottom: 56.25%;
}

.video-box iframe, .video-box video, .video-box image {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    border: none;
    border-radius: 10px;
    outline: none;
    vertical-align: middle;
}

/*========== Video Popup END ==========*/

/*========== Responsive CSS Start ==========*/
@media screen and (min-width: 768px) {
    .header-wrap .navbar .navbar-collapse {
        display: block;
    }
}

@media screen and (min-width: 992px) {
    .video-icon:hover .svg-icon img {
        transform: scale(1.4);
    }
}

@media screen and (max-width: 1800px) {
    .banner-wrap .banner-image {
        margin-right: -100px;
    }
}

@media screen and (max-width: 1700px) {
    html, body {
        font-size: 16px;
        line-height: 26px;
    }

    .banner-wrap .banner-image {
        margin-right: -60px;
    }

    .btn {
        font-size: 0.938rem;
        line-height: 1.25rem;
    }
}

@media screen and (max-width: 1600px) {
    .pt-80 {
        padding-top: 60px;
    }

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

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

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

    .banner-wrap .banner-image {
        margin-right: -20px;
        min-width: 52%;
        max-width: 52%;
    }

    .trusted-by .client-list {
        column-gap: 80px;
        padding: 0 40px;
    }
}

@media screen and (max-width: 1599px) {
    .banner-wrap .banner-image {
        margin-right: 0;
    }
}

@media screen and (max-width: 1440px) {
    .big-title {
        font-size: 3rem;
        line-height: 3.75rem;
        margin-bottom: 24px;
    }

    .section-title {
        font-size: 2.5rem;
        line-height: 3.125rem;
        margin-bottom: 24px;
    }

    .section-semi-title {
        font-size: 2rem;
        line-height: 2.625rem;
        margin-bottom: 24px;
    }

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

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

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

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

    .cta-box {
        min-height: 260px;
        padding: 24px;
        gap: 24px;
    }

    .footer-wrap:has(.cta-box-wrap):before {
        top: 25.33%;
    }

    .footer-wrap .footer-top-strip ul {
        gap: 20px;
    }

    .footer-wrap .footer-top-strip ul li .link {
        padding: 15px;
    }

    .banner-wrap .container {
        gap: 24px;
    }

    .banner-wrap .banner-info .btn {
        margin-top: 24px;
    }

    .trusted-by .client-list {
        column-gap: 70px;
        padding: 0 35px;
    }

    .what-does .container {
        gap: 24px;
    }

    .what-does .what-does-info p {
        margin-bottom: 24px;
    }

    .why-this-matters .container {
        gap: 24px;
    }

    .what-this-is .what-this-info {
        gap: 24px;
    }

    .what-this-is .what-this-info .what-this-is-box .what-this-is-box-inner {
        padding: 23px;
    }

    .what-this-is .what-this-info .what-this-is-box .svg-icon {
        margin-bottom: 24px;
    }

    .what-this-is .what-this-info .what-this-is-box ul li {
        margin-bottom: 16px;
    }

    .built-for-wrap .built-for-info {
        gap: 24px;
    }

    .built-for-info .built-for-box .built-for-box-inner {
        padding: 23px;
    }

    .built-for-info .built-for-box h3 {
        font-size: 1.5rem;
        line-height: 2.125rem;
    }

    .built-for-info .built-for-box .built-for-img {
        margin: 24px 0;
    }

    .what-get-wrap .section-semi-title {
        margin-bottom: 24px;
    }

    .what-get-wrap .what-get-info {
        gap: 24px;
    }

    .what-get-wrap .what-get-box .what-get-box-inner {
        padding: 23px;
    }

    .what-get-wrap .what-get-box .svg-icon {
        margin-bottom: 24px;
    }

    .trusted-by-experts .trusted-by-expert-list {
        gap: 100px;
        margin-top: 40px;
    }

    .trusted-by-experts .trusted-by-expert-list .trusted-by-expert-img {
        gap: 22px;
        min-width: 580px;
    }

    .trusted-by-expert-list .trusted-by-expert-img:before {
        right: -50px;
    }

    .trusted-by-expert-img .trusted-expert:after {
        border-width: 3px;
        inset: -6px;
    }

    .trusted-by-expert-info .trusted-expert-detail .expert-designation {
        margin-bottom: 32px;
    }

    .trusted-by-expert-info .trusted-expert-detail h3 {
        font-size: 2rem;
        line-height: 2.625rem;
    }
}

@media screen and (max-width: 1199px) {
    .big-title {
        font-size: 2.625rem;
        line-height: 3.375rem;
    }

    .section-title {
        font-size: 2.25rem;
        line-height: 2.875rem;
    }

    .section-semi-title {
        font-size: 1.875rem;
        line-height: 2.5rem;
    }

    .banner-wrap .banner-image {
        min-width: 46%;
        max-width: 46%;
    }

    .trusted-by-experts .trusted-by-expert-list .trusted-by-expert-img {
        min-width: 480px;
    }

    .trusted-by-expert-img .trusted-expert > span {
        padding: 10px 24px;
    }

    .trusted-by-expert-info .trusted-expert-detail h3 {
        font-size: 1.875rem;
        line-height: 2.5rem;
    }
}

@media screen and (max-width: 991px) {
    .video-icon .svg-icon {
        width: 50px;
        height: 50px;
    }

    .big-title {
        font-size: 2.375rem;
        line-height: 3.125rem;
    }

    .section-title {
        font-size: 2.125rem;
        line-height: 2.75rem;
    }

    .section-semi-title {
        font-size: 1.75rem;
        line-height: 2.375rem;
    }

    .btn {
        padding: 9px 24px;
    }

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

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

    /*======*/
    .header-wrap .navbar-collapse .navbar-nav {
        column-gap: 30px;
    }

    .header-wrap .header-action .btn {
        padding: 7px 20px;
    }

    .cta-box {
        font-size: 1rem;
        line-height: 1.375rem;
        padding: 20px;
        gap: 20px;
        border-radius: 16px;
    }

    .footer-wrap .footer-top-strip {
        flex-direction: column;
    }

    .footer-wrap .footer-logo {
        text-align: center;
        font-size: 1.25rem;
        line-height: 1.875rem;
    }

    .footer-wrap .footer-top-strip ul {
        justify-content: center;
    }

    .banner-wrap .container {
        gap: 30px;
        flex-direction: column-reverse;
    }

    .banner-wrap .banner-image {
        min-width: 100%;
        max-width: 100%;
        border-radius: 8px;
    }

    .banner-wrap .banner-image img {
        border-radius: 8px;
    }

    .banner-wrap .banner-info {
        font-size: 1.125rem;
        line-height: 1.75rem;
    }

    .banner-wrap .banner-info ul li {
        line-height: 1.375rem;
    }

    .banner-wrap .banner-info ul li:before {
        top: 4px;
    }

    .trusted-by {
        padding-bottom: 50px;
    }

    .trusted-by .section-title {
        font-size: 1.25rem;
        line-height: 1.875rem;
    }

    .trusted-by .client-list-wrap {
        padding: 8px 0;
    }

    .trusted-by .client-list-wrap:before, .trusted-by .client-list-wrap:after {
        width: 100px;
    }

    .trusted-by .client-list {
        column-gap: 50px;
        padding: 0 25px;
    }

    .trusted-by .client-list img {
        max-height: 30px;
    }

    .what-does .container {
        flex-direction: column-reverse;
        gap: 30px;
    }

    .what-does .what-does-info {
        width: 100%;
    }

    .what-does .what-does-img {
        max-width: 100%;
        border-radius: 16px;
    }

    .what-does .what-does-img img {
        border-radius: 16px;
    }

    .what-does .what-does-info p {
        margin-bottom: 20px;
    }

    .why-this-matters .container {
        flex-direction: column;
        gap: 30px;
    }

    .why-this-matters .why-this-matters-img {
        max-width: 100%;
        border-radius: 16px;
    }

    .why-this-matters .why-this-matters-img img {
        border-radius: 16px;
    }

    .why-this-matters .why-this-matters-info {
        width: 100%;
    }

    .why-this-matters .why-this-matters-info ul li {
        padding: 15px 15px 15px 43px;
        background-position: left 15px top 19px;
    }

    .what-this-is .what-this-info .what-this-is-box {
        border-radius: 16px;
    }

    .what-this-is .what-this-info .what-this-is-box .what-this-is-box-inner {
        padding: 20px;
        border-radius: 16px;
    }

    .what-this-is .what-this-info .what-this-is-box .svg-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 20px;
    }

    .what-this-is .what-this-info .what-this-is-box ul li:before {
        top: 4px;
    }

    .built-for-wrap .built-for-info {
        flex-direction: column;
        gap: 30px;
    }

    .built-for-wrap .built-for-info .built-for-box {
        border-radius: 16px;
    }

    .built-for-info .built-for-box .built-for-box-inner {
        padding: 20px;
        border-radius: 16px;
    }

    .built-for-info .built-for-box h3 {
        font-size: 1.375rem;
        line-height: 1.875rem;
    }

    .built-for-info .built-for-box h3 .svg-icon {
        width: 40px;
        height: 40px;
    }

    .built-for-info .built-for-box .built-for-img {
        border-radius: 16px;
        margin: 20px 0;
    }

    .built-for-info .built-for-box .built-for-img img {
        border-radius: 16px;
    }

    .what-get-wrap .what-get-box {
        font-size: 1.125rem;
        line-height: 1.75rem;
        width: calc(50% - 12px);
        min-width: calc(50% - 12px);
        border-radius: 16px;
    }

    .what-get-wrap .what-get-box .what-get-box-inner {
        padding: 20px;
        border-radius: 16px;
    }

    .what-get-wrap .what-get-box .svg-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 20px;
    }

    .trusted-by-experts {
        font-size: 1.125rem;
        line-height: 1.75rem;
    }

    .trusted-by-experts .trusted-by-expert-list {
        gap: 32px;
        flex-direction: column-reverse;
    }

    .trusted-by-experts .trusted-by-expert-list .trusted-by-expert-img {
        overflow: auto;
        flex-wrap: nowrap;
        padding: 6px 20px 16px;
        margin-left: -16px;
        margin-right: 16px;
        width: calc(100% + 32px);
        min-width: 100%;
        align-self: initial;
    }

    .trusted-by-expert-list .trusted-by-expert-img:before {
        display: none;
    }

    .trusted-by-expert-list .trusted-by-expert-img .trusted-expert {
        width: calc(23% - 17px);
        min-width: calc(23% - 17px);
        border-radius: 16px;
    }

    .trusted-by-expert-img .trusted-expert:before {
        border-radius: 16px;
    }

    .trusted-by-expert-img .trusted-expert picture {
        border-radius: 16px;
    }

    .trusted-by-expert-img .trusted-expert picture img {
        border-radius: 16px;
    }

    .trusted-by-expert-img .trusted-expert:after {
        border-radius: 20px;
        border-width: 2px;
        inset: -5px;
    }

    .trusted-by-expert-img .trusted-expert > span {
        font-size: 1.125rem;
        line-height: 1.5rem;
        padding: 8px 20px;
    }

    .trusted-by-experts .trusted-by-expert-list .trusted-by-expert-info {
        display: block;
        padding-bottom: 32px;
        border-bottom: 1px solid rgba(var(--white-rgb), 0.2);
    }

    .trusted-by-expert-info .trusted-expert-detail h3 {
        font-size: 1.75rem;
        line-height: 2.375rem;
    }

    .trusted-by-expert-info .trusted-expert-detail .expert-designation {
        font-size: 1.25rem;
        line-height: 1.875rem;
        margin-bottom: 28px;
    }

    .trusted-by-expert-info .trusted-expert-detail p {
        margin-bottom: 16px;
    }


}

@media screen and (max-width: 767px) {
    .big-title {
        font-size: 2.25rem;
        line-height: 2.875rem;
    }

    .section-title {
        font-size: 2rem;
        line-height: 2.625rem;
    }

    .header-wrap .header-inner {
        padding-right: 45px;
    }

    .header-wrap .brand-logo {
        min-width: initial;
    }

    .header-wrap .navbar-toggler {
        display: inline-flex;
    }

    .header-wrap .navbar {
        position: absolute;
        top: calc(100% + 10px);
        left: -16px;
        right: -16px;
        border-radius: 0 0 20px 20px;
    }

    .header-wrap .navbar .navbar-collapse {
        background: radial-gradient(47.78% 50% at 47.78% 0%, rgba(57, 80, 110, 0.7) 0%, #111C2D 100%);
        backdrop-filter: blur(10px);
        border-radius: 0 0 20px 20px;
        border: 1px solid var(--border-color);
        border-top: none;
    }

    .header-wrap .navbar-collapse .navbar-nav {
        padding: 24px 15px;
        row-gap: 20px;
        flex-direction: column;
    }

    .header-wrap .navbar-collapse .navbar-nav .nav-link {
        font-size: 1rem;
        line-height: 1.375rem;
    }

    .header-wrap .header-action {
        min-width: initial;
    }

    .footer-wrap .copyright-strip {
        padding: 16px 0;
        font-size: 13px;
        line-height: 16px;
        gap: 12px;
    }

    .footer-wrap:has(.cta-box-wrap):before {
        top: 20%;
    }

    .footer-wrap .copyright-strip .copyright-links {
        gap: 10px 12px;
    }

    .trusted-by .client-list-wrap:before, .trusted-by .client-list-wrap:after {
        width: 32px;
    }

    .trusted-by .client-list {
        column-gap: 40px;
        padding: 0 20px;
    }

    .trusted-by .client-list img {
        max-height: 28px;
    }

    .what-this-is .what-this-info {
        flex-direction: column;
    }

    .trusted-by-expert-list .trusted-by-expert-img .trusted-expert {
        width: calc(33.33% - 17px);
        min-width: calc(33.33% - 17px);
    }

    .video-modal .modal-content {
        padding: 2px;
    }

    .video-modal .close-btn img {
        width: 10px;
        height: 10px;
    }

    .video-modal .close-btn {
        top: -13px;
        right: -13px;
        width: 26px;
        height: 26px;
    }
}

@media screen and (max-width: 575px) {
    .footer-wrap .copyright-strip {
        flex-direction: column;
        text-align: center;
    }

    .footer-wrap .copyright-strip .copyright-links {
        justify-content: center;
    }

    .footer-wrap .footer-top-strip ul {
        gap: 16px;
        flex-wrap: wrap;
    }

    .footer-wrap .footer-top-strip ul li {
        flex: 1;
    }

    .footer-wrap .footer-top-strip ul li .link {
        font-size: 13px;
        line-height: 16px;
        min-width: 100%;
        gap: 10px;
        padding: 10px;
    }

    .footer-wrap .footer-top-strip ul li .link .svg-icon {
        width: 40px;
        height: 40px;
    }
}

@media screen and (max-width: 480px) {
    .what-get-wrap .what-get-box {
        width: 100%;
        min-width: 100%;
    }

    .trusted-by-expert-list .trusted-by-expert-img .trusted-expert {
        width: calc(50% - 17px);
        min-width: calc(50% - 17px);
    }
}

@media screen and (max-width: 400px) {
    .footer-wrap .footer-top-strip ul li {
        min-width: 33.33%;
    }

    .footer-wrap .footer-top-strip ul li .link {
        font-size: 14px;
        line-height: 18px;
    }
}

/*========== Responsive CSS END ==========*/