/* @import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bubblegum+Sans&display=swap'); */

* {
    box-sizing: border-box;
}

html {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: normal;
    color: rgb(75 85 99);
    background: #FFFFFF;
    overflow-x: hidden;
}

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

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

a {
    display: inline-block;
    text-decoration: none;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    color: #0b5798;
}

:focus {
    outline: none !important;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

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

iframe {
    max-width: 100%;
}

select {
    width: 100%;
    width: 100%;
    height: 50px;
    border: 1px solid #d1d5db;
    outline: none;
    font-size: 16px;
    font-weight: 400;
    padding: 0.5rem 1rem;
    line-height: 30px;
    color: #000;
    border-radius: 0.75rem;
    transition: 0.2s ease all;
    background: #fff;
}

textarea {
    width: 100%;
    height: 122px;
    border: 1px solid #d1d5db;
    outline: none;
    font-size: 16px;
    font-weight: 400;
    padding: 0.5rem 1rem;
    line-height: 30px;
    color: #000;
    border-radius: 0.75rem;
    transition: 0.2s ease all;
    background: #fff;
    resize: none;
}

[type="text"],
[type="date"],
[type="datetime"],
[type="datetime-local"],
[type="email"],
[type="month"],
[type="number"],
[type="password"],
[type="search"],
[type="tel"],
[type="url"],
[type="week"],
[type="date"] {
    width: 100%;
    height: 50px;
    border: 1px solid #d1d5db;
    outline: none;
    font-size: 16px;
    font-weight: 400;
    padding: 0.5rem 1rem;
    line-height: 30px;
    color: #000;
    border-radius: 0.75rem;
    transition: 0.2s ease all;
    background: #fff;
}

input::-webkit-input-placeholder {
    color: #707070;
    opacity: 1;
}

textarea::placeholder,
input::placeholder {
    color: #707070;
    opacity: 1;
}

textarea:focus,
input:focus {
    outline: none;
    border-color: #0d6efd;
}

label {
    color: #374151;
    display: block;
    font-weight: 500;
    font-size: 0.875rem;
    line-height: 1.25rem;
    margin-bottom: 0.5rem;
}

.form-col-btn .btn {
    width: 100%;
    text-align: center;
    transition-duration: 300ms;
    transition-timing-function:
        cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.125rem;
    line-height: 1.75rem;
    transition-property: all;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 600;
    color: rgb(255, 255, 255);
    border-radius: 12px;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    padding: 20px 40px;
}

.btn:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

.btn img {
    max-width: 20px;
    filter: brightness(0) invert(1);
    transition: 0.3s;
}

.btn-primary {
	background: #1173B7;
	border-color: #1173B7;
}

.btn-primary:hover img {
    transform: translateX(4px);
}

.btn-grey {
    background-color: rgb(31 41 55 / 0.4);
    border: 2px solid rgb(209 213 219 / 0.5);
    backdrop-filter: blur(12px);
}

.btn-grey:hover {
    color: #fff;
}

h1 {
    font-weight: 400;
    font-size: 32px;
    color: #fff;
    text-transform: capitalize;
}

h2 {
    font-size: 1.875rem;
    line-height: 2.25rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    color: rgb(17 24 39);
}

.title-xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
}

p {
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 400;
    margin: 0;
}

.sub-heading {
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 16px;
    width: max-content;
    font-weight: 600;
    border-radius: 50px;
    font-size: 14px;
}

.sub-heading svg {
    width: 16px;
    height: 16px;
}

.container {
    max-width: 1280px;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 768px) {
    h2 {
        font-size: 2.25rem;
        line-height: 2.5rem;
    }

    p {
        font-size: 18px;
    }

    .btn {
        font-size: 1.125rem;
        line-height: 1.75rem;
    }

    .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 1200px) {
    h2 {
        font-size: 3rem;
        line-height: 1;
    }

    .title-xl {
        font-size: 3.75rem;
        line-height: 1;
    }

    .container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}



/* header css start */
.header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(4px);
    border-bottom: 1px solid rgb(229 231 235);
    padding: 0;
}

.navbar {
    padding: 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 64px;
    padding: 0;
	width: 200px;
}

.navbar-brand svg {
    width: 32px;
    height: 32px;
    stop-color: rgb(37 99 235);
}

.navbar-brand span {
    display: block;
    font-size: 20px;
    line-height: 1.75rem;
    font-weight: 600;
    color: rgb(17 24 39);
}

.navbar-collapse {
    border-top: 1px solid rgb(229 231 235);
    padding: 16px 0;
}

.nav-item {
    margin: 0 0 8px;
}

.navbar-light .navbar-nav .nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: rgb(55 65 81);
    font-weight: 400;
    padding: 8px;
}

.nav-link img {
    max-width: 16px;
    opacity: 0.8;
}

.navbar-light .navbar-nav .nav-link.dropdown-toggle {
    font-weight: 500;
}

.dropdown-toggle::after {
    display: none;
}

.navbar-toggler {
    border: none;
    background: transparent;
    padding: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.header-btn a {
    display: block;
    color: #FFFFFF;
    background: #1173B7;
    border-radius: 8px;
    text-align: center;
    padding: 8px 16px;
}

.dropdown-item img {
    display: none;
}

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-collapse {
        justify-content: flex-end;
        border-top: none;
        padding: 0;
    }

    .nav-item {
        margin: 0 24px 0 0;
    }

    .navbar-light .navbar-nav .nav-link {
        gap: 4px;
        padding: 8px 0;
    }

    .header-btn a {
        padding: 10px 20px;
    }
}

@media (min-width: 1200px) {
    .header {
        padding: 0;
    }

    .header-btn a:hover {
        box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
        background-color: rgb(29 78 216);
    }

    .nav-link {
        font-weight: 500 !important;
        color: rgb(75 85 99) !important;
    }

    .nav-item:hover .nav-link {
        color: rgb(17 24 39) !important;
    }

    .nav-item:hover .nav-link img {
        transform: rotate(180deg);
    }

    .dropdown-menu {
        display: block;
        visibility: hidden;
        opacity: 0;
        transition: 0.3s;
        margin-top: 20px;
        min-width: 18rem;
        box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
        border-color: rgb(229 231 235);
        border-radius: 12px;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }

    .nav-item:hover .dropdown-menu {
        visibility: visible;
        opacity: 1;
        margin-top: 0;
    }

    .dropdown-item {
        display: flex;
        align-items: center;
        gap: 12px;
        color: rgb(55 65 81);
        padding: 12px 16px;
    }

    .dropdown-item img {
        display: block;
        max-width: 20px;
        opacity: 0.8;
    }

    .dropdown-item:hover {
        background-color: rgb(239 246 255);
        color: #2563eb;
    }

    .dropdown-item:hover img {
        filter: brightness(0) saturate(100%) invert(30%) sepia(79%) saturate(1750%) hue-rotate(209deg) brightness(92%) contrast(101%);
    }
}

/* header css end */

/* banner start */
.banner {
    position: relative;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.2) 100%);
    height: 100vh;
    padding: 100px 0;
}

.banner::before {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    width: 100%;
    height: 128px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
}

.banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-content {
    text-align: center;
}

.banner-content h1 {
    font-size: 3rem;
    letter-spacing: -0.025em;
    line-height: 1.25;
    font-weight: 700;
    text-transform: unset;
    color: #FFFFFF;
}

.banner-content h1 span {
    color: transparent;
    background: linear-gradient(270deg, rgba(103, 232, 249, 1) 0%, rgba(96, 165, 250, 1) 100%);
    background-clip: text;
}

.banner-content .sub-text {
    display: block;
    font-size: 1.25rem;
    line-height: 1.625;
    color: #fff;
    filter: drop-shadow(0 10px 8px rgb(0 0 0 / 0.04)) drop-shadow(0 4px 3px rgb(0 0 0 / 0.1));
    margin: 40px 0 70px;
}

.banner-content .btn-gruop {
    display: flex;
    flex-direction: column;
    gap: 16px;
    border-bottom: 1px solid rgb(255 255 255 / 0.3);
    padding: 0 0 40px;
}

.banner-content .btn-gruop .btn {
    font-size: 1.125rem;
    line-height: 1.75rem;
    padding: 24px 40px;
}

.counter-list {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 -32px;
    padding: 60px 0 0;
}

.counter-list li {
    position: relative;
    text-align: center;
    font-size: 2.25rem;
    line-height: 2.5rem;
    color: #fff;
    font-weight: 700;
    filter: drop-shadow(0 10px 8px rgb(0 0 0 / 0.04)) drop-shadow(0 4px 3px rgb(0 0 0 / 0.1));
    padding: 0 32px;
}

.counter-list li::after {
    position: absolute;
    content: "";
    top: 50%;
    right: 0;
    transform: translate(0, -50%);
    width: 1px;
    height: 48px;
    background: rgb(255 255 255 / 0.3);
}

.counter-list li:last-child::after {
    display: none;
}

.counter-list li span {
    display: block;
    font-size: 0.875rem;
    line-height: 1.25rem;
    font-weight: 400;
    margin-top: 4px;
}

@media (min-width: 768px) {
    .banner {
        padding: 150px 0;
    }
	
	.banner-content h1 {
		font-size: 4rem;
	}

    .banner-content .btn-gruop {
        flex-direction: row;
        justify-content: center;
    }
}

@media (min-width: 1200px) {
    .banner {
		height: 100%;
        padding: 165px 0 120px 0;
    }

    .banner-content h1 {
        font-size: 5rem;
        line-height: 1;
        padding: 0 80px;
    }

    .banner-content .sub-text {
        font-size: 1.5rem;
        line-height: 2rem;
    }

    .banner-content .btn-gruop {
        max-width: 672px;
        margin: 0 auto;
    }

    .counter-list {
        margin: 0 -48px;
    }

    .counter-list li {
        font-size: 3rem;
        line-height: 1;
        padding: 0 48px;
    }
}

@media (min-width: 1440px) {
	.banner-content h1 {
		font-size: 6rem;
	}
}


.step-cards {
    background-image: linear-gradient(to right, #F8FAFC, #fff);
    padding: 50px 0;
}

.step-cards-heading {
    text-align: center;
    padding: 0 0 48px;
}

.step-cards-heading h2 {
    margin: 0 0 16px;
}

.step-cards-wrap {
    gap: 16px 0;
}

.step-cards-inner {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid rgb(229 231 235);
    border-radius: 16px;
    transition: 0.4s;
    padding: 1.5rem;
}

.step-cards-inner figure {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: #1173B7;
    border-radius: 50%;
    margin: 0 0 16px;
}

.step-cards-inner h4 {
    font-size: 1.125rem;
    line-height: 1.75rem;
    font-weight: 700;
    color: rgb(17 24 39);
    margin-bottom: 12px;
}

.step-cards-inner p {
    font-size: 0.875rem;
    color: rgb(75 85 99);
    line-height: 1.625;
    margin-bottom: 1rem;
}

.step-cards-bot {
    border-top: 1px solid rgb(243 244 246);
    padding-top: 0.75rem;
}

.step-cards-bot p {
    font-size: 0.75rem;
    line-height: 1rem;
    margin: 0;
}

.step-cards-bot p span {
    display: block;
    font-weight: 600;
    color: #1173B7;
    margin-bottom: 4px
}

.exp-how-btn {
    margin: 48px 0 0;
}

@media (min-width: 768px) {
    .step-cards {
        padding: 95px 0;
    }

    .step-cards-heading {
        padding: 0 0 64px;
    }

    .step-cards-inner {
        min-height: 315px;
    }

    .step-cards-bot {
        margin-top: auto;
    }

    .step-cards-bot p {
        min-height: 52px;
        align-content: end;
    }

    .exp-how-btn {
        margin: 64px 0 0;
    }
}

@media (min-width: 1200px) {
    .step-cards-heading h2 {
        font-size: 2.25rem;
        line-height: 2.5rem;
    }

    .step-cards-heading p {
        max-width: 896px;
        margin: 0 auto;
    }

    .step-cards-inner {
        min-height: 392px;
        padding: 2rem;
    }

    .step-cards-inner::after {
        position: absolute;
        content: "";
        top: 33.333%;
        right: -16px;
        width: 32px;
        height: 32px;
        background: url(../img/step-card-arrow.svg) no-repeat center center / cover;
        filter: brightness(0) saturate(100%) invert(55%) sepia(75%) saturate(848%) hue-rotate(188deg) brightness(99%) contrast(98%);
    }

    .step-cards-wrap>div:last-child .step-cards-inner::after {
        display: none;
    }

    .step-cards-inner:hover {
        box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    }

    .step-cards-inner h4 {
        padding-right: 15px;
    }
}


.tailored-solutions {
    background-image: linear-gradient(to right, #F8FAFC, #fff);
    padding: 50px 0;
}

.solutions-heading {
    margin: 0 0 48px;
}

.solutions-heading h2 {
    margin: 0 0 16px;
}

.solutions-flex {
    gap: 24px 0;
}

.solutions-cards {
    display: block;
    overflow: hidden;
    background: rgb(255 255 255);
    border: 1px solid rgb(229 231 235);
    border-radius: 1rem;
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    transition: 0.3s;
}

.solutions-cards:focus {
    border-color: rgb(37 99 235);
}

.sol-card-image {
    position: relative;
    height: 208px;
}

.sol-card-image::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0) 100%);
}

.sol-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sol-icon {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: #1173B7;
    border-radius: 12px;
    transition: 0.3s;
}

.sol-icon img {
    width: 24px;
    height: auto;
    object-fit: unset;
    filter: brightness(0) invert(1);
}

.tag-text {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 0.75rem;
    line-height: 1rem;
    font-weight: 600;
    color: #fff;
    backdrop-filter: blur(4px);
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    background-color: #1173B7;
    border-radius: 9999px;
    padding: 6px 12px;
}

.sol-card-detail {
    padding: 24px;
}

.sol-card-detail h4 {
    color: rgb(17 24 39);
    font-size: 1.25rem;
    line-height: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.sol-card-detail p {
    font-size: 0.875rem;
    line-height: 1.625;
    color: rgb(75 85 99);
    margin-bottom: 1.5rem;
}

.tt-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 44px;
    font-size: 0.875rem;
    line-height: 1.25rem;
    font-weight: 600;
    color: #1173B7;
    transition: 0.3s;
    margin-top: 0.5rem;
}

.tt-btn img {
    max-width: 16px;
    filter: brightness(0) saturate(100%) invert(23%) sepia(98%) saturate(2636%) hue-rotate(219deg) brightness(98%) contrast(87%);
}

@media (min-width: 768px) {
    .tailored-solutions {
        padding: 70px 0;
    }

    .solutions-heading {
        margin: 0 0 64px;
    }

    .sol-card-image {
        height: 224px;
    }

    .sol-card-detail p {
        min-height: 68px;
    }
}

@media (min-width: 1200px) {
    .tailored-solutions {
        padding: 100px 0;
    }

    .solutions-cards:hover {
        box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    }

    .solutions-cards:hover .sol-icon {
        transform: scale(1.1);
    }

    .solutions-cards:hover .tag-tex {
        box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    }

    .sol-card-detail {
        padding: 32px;
    }

    .sol-card-detail h4 {
        font-size: 1.5rem;
        line-height: 2rem;
        transition: 0.3s;
    }

    .solutions-cards:hover .sol-card-detail h4 {
        color: #1173B7;
    }

    .sol-card-detail p {
        font-size: 16px;
    }

    .solutions-cards:hover .tt-btn {
        transform: translateX(8px);
    }
}


.dooh-network {
    background: linear-gradient(115deg, rgba(17, 24, 39, 1) 0%, rgba(31, 41, 55, 1) 50%, rgba(17, 24, 39, 1) 100%);
    padding: 50px 0;
}

.network-heading {
    text-align: center;
    margin: 0 0 64px;
}

.sub-heading.border-bg {
    background: rgb(37 99 235 / 0.2);
    border: 1px solid rgb(96 165 250 / 0.3);
    color: rgb(219 234 254);
}

.sub-heading.border-bg svg {
    color: rgb(96 165 250);
}

.network-heading h2 {
    color: #FFFFFF;
    margin: 0 0 24px;
}

.network-heading p {
    font-size: 1.25rem;
    line-height: 1.625;
    color: rgb(209 213 219);
}

.network-flex {
    gap: 32px 0;
}

.network-cards {
    position: relative;
    overflow: hidden;
    background-color: rgb(255 255 255 / 0.05);
    border: 1px solid rgb(255 255 255 / 0.1);
    border-radius: 12px;
    backdrop-filter: blur(4px);
    padding: 24px;
}

.network-cards::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background: linear-gradient(285deg, rgba(34, 197, 94, 1) 0%, rgba(5, 150, 105, 1) 100%);
    opacity: 0;
    transition: 0.2s;
}

.network-flex>div:nth-child(2) .network-cards::before {
    background: linear-gradient(285deg, rgba(6, 182, 212, 1) 0%, rgba(37, 99, 235, 1) 100%);
}

.network-flex>div:last-child .network-cards::before {
    background: linear-gradient(285deg, rgba(245, 158, 11, 1) 0%, rgba(234, 88, 12, 1) 100%);
}

.network-cards figure {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: linear-gradient(285deg, rgba(34, 197, 94, 1) 0%, rgba(5, 150, 105, 1) 100%);
    border-radius: 16px;
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    margin: 0 0 24px;
}

.network-cards figure img {
    width: 32px;
    filter: brightness(0) invert(1);
}

.network-cards figure.blue {
    background: linear-gradient(285deg, rgba(6, 182, 212, 1) 0%, rgba(37, 99, 235, 1) 100%);
}

.network-cards figure.orange {
    background: linear-gradient(285deg, rgba(245, 158, 11, 1) 0%, rgba(234, 88, 12, 1) 100%);
}

.net-card-mid h4 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.net-card-mid h4 img {
    max-width: 20px;
    filter: brightness(0) saturate(100%) invert(55%) sepia(72%) saturate(1331%) hue-rotate(190deg) brightness(102%) contrast(96%);
}

.net-card-mid span {
    display: block;
    color: rgb(147 197 253);
    font-size: 0.875rem;
    line-height: 1.25rem;
    font-weight: 600;
    line-height: 1.625;
    margin-bottom: 1rem;
}

.net-card-mid p {
    font-size: 16px;
    color: rgb(209 213 219);
    line-height: 1.625;
    margin-bottom: 1.5rem;
}

.net-card-bot {
    border-top: 1px solid rgb(255 255 255 / 0.1);
    padding-top: 1rem;
}

.net-card-bot span {
    display: block;
    font-size: 0.75rem;
    line-height: 1rem;
    font-weight: 600;
    color: rgb(156 163 175);
    margin-bottom: 0.5rem;
}

.net-card-bot p {
    font-size: 0.875rem;
    line-height: 1.25rem;
    color: rgb(209 213 219);
}

.why-build-text {
    border-top: 1px solid rgb(51 65 85 / 0.4);
    padding: 40px 0 0;
    margin: 64px 0 48px 0;
}

.why-build-text p {
    text-align: center;
    color: rgb(156 163 175);
    font-size: 1.125rem;
    line-height: 1.75rem;
}

.why-build-wrap {
    background-color: rgb(255 255 255 / 0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgb(255 255 255 / 0.1);
    border-radius: 24px;
    padding: 2rem;
}

.why-build-wrap h4 {
    font-size: 1.875rem;
    line-height: 2.25rem;
    font-weight: 700;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 2rem;
}

.why-build__flex {
    gap: 24px 0;
}

.why-build-col {
    text-align: center;
}

.why-build-col figure {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: #1173B7;
    border-radius: 1rem;
    margin: 0 auto 1rem auto;
}

.why-build-col figure svg {
    width: 28px;
    height: 28px;
}

.why-build-col h6 {
    font-size: 1.125rem;
    line-height: 1.75rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
}

.why-build-col p {
    font-size: 0.875rem;
    color: rgb(156 163 175);
    line-height: 1.625;
}

.btn-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 64px 0 0;
}

.btn-wrapper .btn {
    border-width: 1px;
    padding: 15px 30px;
}

.btn-wrapper .btn-grey {
    backdrop-filter: blur(4px);
    background-color: rgb(255 255 255 / 0.1);
    border-color: rgb(255 255 255 / 0.2);
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

@media (min-width: 768px) {
    .dooh-network {
        padding: 100px 0;
    }
}

@media (min-width: 1200px) {
    .network-heading p {
        font-size: 1.5rem;
        line-height: 2rem;
        max-width: 48rem;
        margin: 0 auto;
    }

    .network-flex {
        --bs-gutter-x: 2rem;
    }

    .network-cards {
        display: flex;
        flex-direction: column;
        min-height: 425px;
        transition: 0.3s;
    }

    .network-cards:hover {
        transform: translateY(-0.375rem);
        box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
        border-color: rgb(255 255 255 / 0.3);
    }

    .network-cards:hover:before {
        opacity: 0.1;
    }

    .net-card-bot {
        margin-top: auto;
    }

    .net-card-bot p {
        min-height: 35px;
    }

    .why-build-wrap {
        padding: 3rem;
    }

    .btn-wrapper .btn:hover {
        transform: scale(1.02);
        box-shadow: 0 0 8px rgba(255, 255, 255, 0.15);
    }
}


.page-footer {
    background: #1f2937;
    padding: 4rem 0;
}

.footer-logo a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 2rem;
    color: #fff;
    margin-bottom: 1.5rem;
	width: 200px;
}

.footer-logo-icon {
    background-color: #2563eb;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
}

.footer-left p {
    margin-bottom: 1.5rem;
    line-height: 1.625;
    color: #9ca3af;
}

.footer-social ul {
    display: flex;
    align-items: center;

    justify-content: flex-start;
    gap: 12px;
}

.footer-social ul li a {
    background-color: #ffffff1a;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
}

.footer-social ul li a svg {
    width: 1.25rem;
    height: 1.25rem;
    color: #fff;
}

.footer-link {
    margin: 48px 0 0;
}

.page-footer h3 {
    font-weight: 700;
    font-size: 1.125rem;
    line-height: 1.75rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.footer-link ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link ul li a {
    color: #9ca3af;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    font-size: 16px;
}

.footer-link-sm {
    font-size: 14px !important;
}

.footer-link-sm svg {
    width: 16px;
    color: #60a5fa;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid #1f2937;
    position: relative;
    text-align: center;
    margin: 3rem 0 0;
}

.footer-bottom:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(31, 41, 55, 1) 0%, rgba(37, 47, 64, 1) 100%);
}

.footer-bottom ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 24px;
    color: #9ca3af;
}

.footer-bottom ul li,
.footer-bottom ul li a {
    color: #9ca3af;
    font-size: 14px;
    line-height: 18px;
}

.footer-bottom p {
    color: #9ca3af;
    font-size: 14px;
    line-height: 18px;
    margin: 0 0 20px;
}

.footer-bottom ul li:last-child {
    padding-left: 24px;
    border-left: 1px solid #4b5563;
}

.contact-block__heading {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-block {
    padding: 6rem 0;
}

.contact-block-infos {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-block-info-col {
    padding: 1.5rem;
    border: 2px solid #f3f4f6;
    border-radius: 1rem;
    transition: all ease 0.3s;
}

.contact-block-info-col {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 16px;
}

.contact-block-info-content h4 {
    color: #111827;
    font-weight: 700;
    margin-bottom: 0.7rem;
    font-size: 16px;
}

.contact-block-info-content p {
    color: #6b7280;
    font-size: 0.875rem;
    line-height: 1.25rem;
    margin-bottom: 0;
}

.contact-block-info-content p span {
    color: #4b5563;
    font-size: 16px;
    display: block;
    font-weight: 500;
    margin-bottom: 0;
}

.contact-block-info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1173B7;
    width: 56px;
    height: 56px;
    border-radius: 1rem;
}

.contact-block-info-icon svg {
    width: 1.75rem;
    color: #fff;
}

.contact-block__flex h3 {
    font-size: 1.875rem;
    line-height: 2.25rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #111827;
}

.contact-block__flex {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.form-col {
    margin: 0 0 24px;
}

.contact-block-right {
    padding: 2rem;
    background: #fff;
    border-radius: 1.5rem;
    border: 2px solid #f3f4f6;
    box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

.contact-block__heading h2 {
    color: #111827;
    letter-spacing: -0.025em;
    font-weight: 700;
    font-size: 2.25rem;
    line-height: 2.5rem;
    margin-bottom: 1.5rem;
}

.contact-block__heading p {
    font-size: 1.25rem;
    line-height: 1.625;
    color: #4b5563;
    max-width: 48rem;
    margin: 0 auto;
}

.sub-heading.blue {
    background-color: #dbeafe;
    color: #1173B7;
}

.small-cta-wrapper {
    padding: 2rem;
    text-align: center;
    background: #f6f9fd;
    border: 2px solid #dbeafe;
    border-radius: 1rem;
}

.small-cta-wrapper h2 {
    color: #111827;
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.small-cta-wrapper p {
    color: #4b5563;
    max-width: 42rem;
    margin: 0 auto;
    margin-bottom: 1.5rem;
}

.small-cta-wrapper .btn {
    padding: 15px 32px;
}

.small-cta {
    margin: 48px 0 0;
}

.image-content-card-image {
    position: relative;
    aspect-ratio: 4 / 3;
}

.image-content-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-content-card-image:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.45) 100%);
}

.image-content-card-icon {
    position: absolute;
    left: 1rem;
    top: 1rem;
    width: 48px;
    height: 48px;
    background: #fff;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.image-content-card {
    border-radius: 1rem;
    border: 1px solid #e5e7eb;
    box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 1px 2px 0 rgb(0 0 0 / 0.05);
    display: block;
    overflow: hidden;
    background: #fff;
}

.image-content-card-text {
    padding: 1.5rem;
}

.image-content-card-text h3 {
    font-size: 1.25rem;
    line-height: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #111827;
}

.image-content-card-text h5 {
    font-size: 0.875rem;
    line-height: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #1173B7;
}

.image-content-card-text p {
    font-size: 0.875rem;
    line-height: 1.625;
    font-weight: 400;
    margin-bottom: 1.8rem;
    color: #4b5563;
}

.image-content-card-text button {
    color: #1173B7;
    font-weight: 600;
    font-size: 0.875rem;
    background: transparent;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border: none;
    gap: 8px;
}

.image-content-card-text button svg {
    width: 16px;
}

.image-content-cards-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.image-content-gradient {
    background: linear-gradient(to bottom right, #f8fafc, #f9fafb, #fff);
    position: relative;
    z-index: 1;
    padding: 64px 0;
}

.image-content-gradient:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(circle at 30% 20%, rgba(59, 130, 246, 0.03), transparent 50%);
}

.full-width-cta {
    padding: 5rem 0;
    background: #1173B7;
    color: #fff;
}

.full-width-cta-wrapper h2 {
    font-size: 2.25rem;
    line-height: 2.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: -0.025em;
    font-weight: 700;
    color: #fff;
}

.full-width-cta-wrapper p {
    font-size: 1.25rem;
    line-height: 1.75rem;
    max-width: 42rem;
    margin: 0 auto;
    margin-bottom: 2.5rem;
}

.full-width-btn-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.full-width-btn-group .btn {
    width: 100%;
    height: 56px;
    gap: 8px;
}

.full-width-btn-group .btn svg {
    width: 20px;
}

.full-width-btn-group .btn-primary {
    background: #fff;
    color: #2563eb;
}

.full-width-btn-group .btn-secondary {
    background: #3b82f6;
    color: #fff;
    border: 1px solid #fff;
}

.image-content-cards-heading {
    text-align: center;
    margin-bottom: 3rem;
}

.image-content-cards-heading h2 {
    margin-bottom: 1rem;
}

.small-cta-wrapper .btn svg {
    width: 20px;
}

@media(min-width: 768px) {
    .footer-left {
        width: calc(50% - 1.5rem);
    }

    .footer-top {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 3rem;
    }

    .footer-link {
        margin: 0;
        width: calc(50% - 1.5rem);
    }

    .footer-bottom {
        text-align: left;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .footer-bottom p {
        margin: 0;
    }

    .small-cta-wrapper h2 {
        font-size: 1.875rem;
        line-height: 2.25rem;
    }

    .small-cta-wrapper p {
        font-size: 16px;
    }

    .small-cta-wrapper {
        padding: 3rem;
    }

    .small-cta-wrapper .btn {
        padding: 13px 30px;
        font-size: 16px;
    }

    .small-cta {
        margin: 48px 0 0;
    }

    .image-content-cards-list {
        flex-direction: row;
        gap: 24px;
        flex-wrap: wrap;
    }

    .image-content-card-item {
        width: calc(50% - 12px);
    }

    .image-content-card {
        height: 100%;
    }

    .image-content-gradient {
        padding: 96px 0;
    }

    .full-width-btn-group {
        flex-direction: row;
        justify-content: center;
    }

    .full-width-btn-group .btn {
        width: auto;
        font-size: 16px;
        padding: 16px 32px;
    }

    .image-content-cards-heading {
        margin-bottom: 4rem;
    }

    .image-content-cards-heading p {
        max-width: 56rem;
        margin: 0 auto;
    }
}

@media(min-width: 1200px) {
    .footer-left {
        width: calc(25% - 2.5rem);
    }

    .footer-link {
        margin: 0;
        width: calc(25% - 2.5rem);
    }

    .footer-left p {
        font-size: 16px;
    }

    .footer-social ul li a:hover {

        background-color: #1173B7;
        transform: scale(1.1);
    }

    .footer-link ul li a:hover {
        transform: translatex(0.25rem);
        color: #fff;
    }

    .footer-bottom ul li a:hover {
        color: #fff;
    }

    .contact-block__flex {
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
        gap: 48px;
    }

    .contact-block-left {
        width: calc(50% - 24px);
    }

    .contact-block-right {
        width: calc(50% - 24px);
    }

    .contact-block-info-col:hover {
        border-color: #bfdbfe;
    }

    .contact-block__heading h2 {
        font-size: 3.75rem;
        line-height: 1;
    }

    .image-content-card-item {
        width: calc(33.333% - 22px);
    }

    .image-content-cards-list {
        gap: 32px;
    }

    .image-content-card-text p {
        font-size: 1rem;
        line-height: 1.5rem;
    }

    .image-content-card-text h3 {
        font-size: 1.5rem;
        line-height: 2rem;
    }

    .image-content-card-text {
        padding: 2rem;
    }

    .full-width-cta-wrapper h2 {
        font-size: 3rem;
        line-height: 1;
    }

    .full-width-btn-group .btn:hover {
        box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    }

    .full-width-btn-group .btn-secondary:hover {
        background: #1e40af;
    }

    .image-content-card:hover {
        transform: scale(1.03);
        box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    }

    .small-cta-wrapper .btn:hover {
        transform: scale(1);
    }

    .small-cta-wrapper .btn:hover svg {
        position: relative;
        top: -5px;
        right: -5px;
    }
}


.block-section {
    background-image: linear-gradient(to right, #f9fafb, #fff);
    padding: 96px 0;
}

.about-heading {
    margin: 0 0 64px;
}

.about-heading h2 {
    margin: 0 0 24px;
}

.about-heading p {
    font-size: 1.25rem;
    line-height: 1.625;
    color: rgb(75 85 99);
}

.about-flex {
    gap: 24px 0;
}

.about-score-item {
    background: rgb(255 255 255);
    border: 2px solid rgb(243 244 246);
    border-radius: 1rem;
    text-align: center;
    transition: 0.3s;
    padding: 2rem;
}

.about-score-item figure {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: #1173B7;
    border-radius: 1rem;
    margin: 0 auto;
}

.about-score-item figure svg {
    width: 28px;
    height: 28px;
}

.about-score-item h3 {
    font-size: 3rem;
    line-height: 1;
    color: rgb(17 24 39);
    font-weight: 700;
    margin-bottom: 0.5rem;
    margin-top: 1rem;
}

.about-score-item p {
    font-size: 0.875rem;
    line-height: 1.25rem;
    color: rgb(75 85 99);
    font-weight: 500;
}

@media (min-width: 1200px) {
    .about-heading p {
        max-width: 48rem;
        margin: 0 auto;
    }

    .about-score-item:hover {
        box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
        border-color: rgb(191 219 254);
    }
}

.half-image-half-text {
    margin: 64px 0 0;
}

.half-image-half-text .row {
    gap: 48px 0;
}

.half-image-col img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
}

.half-text-box:not(:first-child) {
    margin-top: 24px;
}

.half-text-box h3 {
    font-size: 1.875rem;
    line-height: 2.25rem;
    color: rgb(17 24 39);
    font-weight: 700;
    margin-bottom: 1rem;
}

.half-text-box p {
    font-size: 1.125rem;
    line-height: 1.625;
    color: rgb(75 85 99);
}

.half-text-btn {
    margin: 40px 0 0;
}

.half-text-btn .btn {
    font-size: 16px;
    line-height: 1;
    padding: 1rem 2rem;
}

@media (min-width: 768px) {
    .half-image-col img {
        height: 400px;
        object-fit: cover;
    }

    .half-image-half-text .row {
        align-items: center;
    }
}

@media (min-width: 1200px) {
    .half-image-half-text .row {
        --bs-gutter-x: 3rem;
    }

    .half-image-col img {
        height: 400px;
    }
}

.certificate-area {
    background: rgb(249 250 251);
    border: 2px solid rgb(229 231 235);
    border-radius: 1.5rem;
    padding: 2rem;
    margin: 64px 0 0;
}

.certifi-heading {
    text-align: center;
}

.certifi-heading figure {
    position: relative;
    z-index: 1;
    display: inline-block;
    margin: 0 0 24px;
}

.certifi-heading figure::before {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    width: calc(100% + 96px);
    height: 2px;
    background: rgb(100 109 86);
}

.certifi-heading figure svg {
    width: 64px;
    height: 32px;
    background: rgb(249 250 251);
    color: rgb(100 109 86);
    padding: 0 16px;
}

.certifi-heading h3 {
    font-size: 1.875rem;
    line-height: 2.25rem;
    font-weight: 700;
    color: rgb(17 24 39);
    margin: 0 0 24px;
}

.certifi-heading p {
    font-size: 1.125rem;
    line-height: 1.625;
    color: rgb(55 65 81);
    margin: 24px 0;
}

.certification-wrap {
    background: #FFFFFF;
    border: 1px solid rgb(229 231 235);
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 2rem;
}

.certification-wrap h5 {
    font-size: 1.25rem;
    line-height: 1.75rem;
    font-weight: 700;
    color: rgb(17 24 39);
    margin-bottom: 1.5rem;
}

.certifi__flex {
    gap: 24px 0;
}

.certificate-col {
    background-image: linear-gradient(to right, #f9fafb, #fff);
    border: 1px solid rgb(229 231 235);
    border-radius: 0.75rem;
    text-align: center;
    padding: 1.5rem;
}

.certificate-col img {
    height: 128px;
    margin: 0 auto;
}

.certificate-col h6 {
    font-size: 16px;
    line-height: 1.5em;
    color: rgb(17 24 39);
    font-weight: 700;
    margin: 16px 0 8px 0;
}

.certificate-col p {
    font-size: 0.875rem;
    line-height: 1.625;
    margin-bottom: 0.75rem;
}

.view-certificate {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    line-height: 1.25rem;
    font-weight: 600;
    color: rgb(220 38 38);
    text-decoration-line: underline;
}

.view-certificate:hover {
    text-decoration: underline;
}

.view-certificate svg {
    width: 16px;
}

.blockquote-text {
    font-size: 1.25rem;
    line-height: 1.625;
    font-style: italic;
    color: rgb(55 65 81);
    text-align: center;
    margin-bottom: 2rem;
}

.download-statement .btn {
    font-size: 16px;
    line-height: 20px;
    background: #1173B7;
    border-radius: 8px;
    text-align: left;
    padding: 16px 32px;
}

@media (min-width: 768px) {
    .certificate-col {
        height: 100%;
    }

    .certifi-heading p {
        max-width: 48rem;
        margin: 0 auto;
        padding: 0 0 24px;
    }

    .certification-wrap {
        max-width: 56rem;
        margin: 0 auto;
    }
}

@media (min-width: 1200px) {
    .certificate-area {
        padding: 4rem;
    }

    .certifi-heading h3 {
        font-size: 2.25rem;
        line-height: 2.5rem;
    }

    .blockquote-text {
        max-width: 56rem;
        margin: 0 auto;
        padding: 2rem 0;
    }

    .download-statement .btn:hover {
        transform: scale(1);
        background: rgb(0 53 128);
        box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    }

    .download-statement .btn:hover img {
        transform: translate(0, 4px);
    }
}

.certification-partners {
    overflow: hidden;
    border-radius: 1.5rem;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    margin-top: 2rem;
}

.certi-title-bg {
    text-align: center;
    background: linear-gradient(285deg, rgba(15, 23, 42, 1) 0%, rgba(30, 41, 59, 1) 50%, rgba(15, 23, 42, 1) 100%);
    padding: 1.5rem 1rem;
}

.certi-title-bg h2 {
    color: #FFFFFF;
    letter-spacing: unset;
    margin: 0 0 1rem;
}

.certi-title-bg p {
    color: rgb(229 231 235);
    font-size: 1.125rem;
    line-height: 1.75rem;
    max-width: 42rem;
    margin: 0 auto;
}

.certified-verified {
    padding: 4rem 1.5rem;
}

.certified-verified h4 {
    font-size: 1.875rem;
    line-height: 2.25rem;
    font-weight: 700;
    color: rgb(17 24 39);
    text-align: center;
    margin-bottom: 2rem;
}

.certified-box {
    background: rgb(255 255 255);
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    border: 2px solid rgb(219 234 254);
    border-radius: 1rem;
    transition: 0.3s;
    padding: 2rem;
}

.certified__wrap {
    gap: 2rem 0;
}

.certified-img img {
    height: 10rem;
    object-fit: contain;
    filter: drop-shadow(0 10px 8px rgb(0 0 0 / 0.04)) drop-shadow(0 4px 3px rgb(0 0 0 / 0.1));
    margin: 0 auto;
}

.certified-right li:last-child {
    padding-top: 1rem;
}

.certified-right li h6 {
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: 700;
    color: rgb(17 24 39);
    margin-bottom: 0.5rem;
}

.certified-right li:not(:last-child) {
    border-bottom: 1px solid rgb(229 231 235);
    padding-bottom: 1rem;
}

.certified-right li p {
    line-height: 1.625;
    color: rgb(75 85 99);
}

.certified-right li:last-child h6 {
    font-size: 1.25rem;
    line-height: 1.75rem;
}

.view-certificate.dseg {
    color: #1173B7;
    margin-top: 1rem;
}

.dwl-cap-btn {
    margin-top: 40px;
}

.dwl-cap-btn .btn {
    font-size: 13px;
    gap: 5px;
    text-align: left;
    background: #1173B7;
    border-radius: 0.5rem;
    padding: 8px 10px;
}

.dwl-cap-btn .btn img {
    max-width: 12px;
}

.partner-area {
    margin: 4rem 0 0;
}

.partner-title {
    text-align: center;
}

.partner-title h3 {
    font-size: 1.875rem;
    line-height: 2.25rem;
    font-weight: 700;
    color: rgb(17 24 39);
    margin-bottom: 0.75rem;
}

.partner-title p {
    font-size: 16px;
    max-width: 42rem;
    margin: 0 auto;
    padding: 0 0 2rem;
}

.partner-flex {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.partner-cards {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(255 255 255);
    border: 2px solid rgb(229 231 235);
    border-radius: 0.5rem;
    filter: grayscale(100%);
    transition: 0.3s;
    padding: 1rem;
}

.partner-cards img {
    transition: 0.3s;
}

.meet-the-brand-btn {
    text-align: center;
    border-top: 2px solid rgb(229 231 235);
    padding-top: 3rem;
    margin-top: 3rem;
}

.meet-the-brand-btn .btn {
    font-size: 16px;
    background: #1173B7;
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    padding: 1rem 2rem;
}

@media (min-width: 768px) {
    .certi-title-bg {
        padding: 2.5rem 1rem;
    }

    .certified__wrap {
        align-items: center;
    }

    .dwl-cap-btn .btn {
        font-size: 16px;
        line-height: 1.4em;
        padding: 12px 24px;
    }

    .dwl-cap-btn .btn img {
        max-width: 20px;
    }

    .partner-flex {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .partner-flex {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (min-width: 1200px) {
    .certified-verified {
        max-width: 1100px;
        margin: 0 auto;
    }

    .certified-box:hover {
        box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
        border-color: rgb(147 197 253);
    }

    .dwl-cap-btn .btn:hover {
        transform: scale(1);
        background: rgb(29 78 216);
    }

    .dwl-cap-btn .btn:hover img {
        transform: translate(0);
    }

    .partner-flex {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }

    .partner-cards:hover {
        filter: grayscale(0);
        box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
        border-color: rgb(96 165 250);
    }

    .partner-cards:hover img {
        transform: scale(1.05);
    }

    .meet-the-brand-btn .btn:hover img {
        transform: translate(0);
    }
}


.bredcums {
    padding: 81px 0 16px 0;
    background: #fff;
}

.bredcums ul {
    display: flex;
    flex-direction: row;
    gap: 30px;
    align-items: center;
    justify-content: flex-start;
}

.bredcums ul li a {
    font-size: 14px;
    color: #4b5563;
    font-weight: 400;
}

.bredcums ul li {
    position: relative;
    font-size: 13px;
    font-weight: 700;
}

.bredcums ul li:after {
    content: "";
    position: absolute;
    right: -19px;
    top: 6px;
    width: 7px;
    height: 11px;
    background: url(../img/bredcum-arrow.svg) 0 0 no-repeat;
    background-size: 6px;
}

.bredcums ul li:last-child:after {
    display: none;
}

.banner--innerpage {
    min-height: 500px;
    padding: 110px 0 0;
    height: auto;
}

.banner--innerpage.single-inner--baner {
	padding: 125px 0 0;
	min-height: 280px;
}

.banner--innerpage .banner-content h1 {
    font-size: 2.5rem;
}

.banner--innerpage:before {
    display: none;
}

.banner--innerpage:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgb(15 23 42 / 0.8), rgb(15 23 42 / 0.7), rgb(15 23 42 / 0.8));
}

.banner--innerpage .banner-content {
    position: relative;
    z-index: 1;
}

.banner--innerpage .banner-content .sub-text {
    margin: 0 0 0;
    line-height: 1.75rem;
}

.sub-text--info {
    font-size: 14px !important;
    font-style: italic;
    font-weight: 500;
    margin: 20px auto 0 !important;
}

.banner-content h1 {
    line-height: 1;
    margin-bottom: 1.5rem;
    letter-spacing: 0;
}

.leader-image-content {
    padding: 0 0 80px;
}

.leader-image-content h2 {
    text-align: center;
}

.leader-image-content-wrapper {
    border: 1px solid #e2e8f0;
    box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 1px 2px 0 rgb(0 0 0 / 0.05);
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
}

.leader-image-content-left {
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom right, #f1f5f9, #f8fafc);
}

.leader-image-content-right {
    padding: 2rem;
}

.leader-image-content-right h4 {
    color: #2563eb;
    letter-spacing: 0.025em;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.875rem;
    line-height: 1.25rem;
    margin-bottom: 0.25rem;
}

.leader-image-content-right h3 {
    color: #0f172a;
    letter-spacing: 0.025em;
    font-weight: 700;
    font-size: 1.875rem;
    line-height: 2.25rem;
    margin-bottom: 1rem;
}

.leader-image {
    width: 192px;
    height: 192px;
    border-radius: 50%;
    border: 4px solid #fff;
    overflow: hidden;
    box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

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

.leader-image-content-right p {
    margin: 0 0 16px;
    line-height: 1.625;
    font-size: 16px;
}

.leader-image-content-right p:last-child {
    margin: 0;
}

.leader-image-content h2 {
    color: #0f172a;
    font-weight: 700;
    font-size: 1.875rem;
    line-height: 2.25rem;
    margin-bottom: 2rem;
}

.text-icons-heading {
    text-align: center;
    margin-bottom: 3rem;
}

.text-icons-heading h2 {
    margin-bottom: 1rem;
    font-size: 1.875rem;
    line-height: 2.25rem;
    font-weight: 700;
    color: #0F1728;
}

.text-icons-heading p {
    margin: 0 auto;
    font-size: 1.125rem;
    line-height: 1.75rem;
    max-width: 48rem;
    color: #475569;
}

.text-icon {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 2rem;
    transition: all ease 0.3s;
    box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 1px 2px 0 rgb(0 0 0 / 0.05);
}

.text-icon-icon {
    border-radius: 0.75rem;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-bottom: 1.5rem;
    background-image: linear-gradient(to bottom right, #1173B7, #06b6d4);
}

.text-icon-text h3 {
    font-size: 1.5rem;
    line-height: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #0f172a;
}

.text-icons__list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.text-icons--single .text-icon-item {
    width: 100%;
    text-align: center;
}

.text-icons--single .text-icon-icon {
    margin: 0 auto 1.5rem;
    width: 80px;
    height: 80px;
}

.text-icons--single .text-icon-icon svg {
    width: 40px;
}

.text-icons--single .text-icon-text h3 {
    font-size: 1.875rem;
    line-height: 2.25rem;
}

.text-icon-text-info {
    padding: 11px 24px;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 8px;
    display: inline-block;
    font-size: 14px !important;
    margin: 24px 0 0 !important;
}

.text-icons+.text-icons {
    margin-top: 80px;
}

.small-cta--dark .small-cta-wrapper {
    background-image: linear-gradient(to right, #0f172a, #1e293b);
    border: none;
}

.small-cta--dark .small-cta-wrapper h2 {
    color: #fff;
}

.small-cta--dark .small-cta-wrapper p {
    color: #cbd5e1;
    font-size: 1.25rem;
    line-height: 1.75rem;
}

.text-icons+.small-cta {
    margin-top: 80px;
}

.team-block-gradient {
    padding: 64px 0;
    background-image: linear-gradient(to bottom, #f8fafc, #fff);
}

.banner-float-tag {
    position: relative;
    font-size: 0.875rem;
    line-height: 1.25rem;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 50px;
    background: #1173B7;
    z-index: 1;
    color: #fff;
    box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    width: max-content;
    margin: -30px auto 20px;
    display: table;
}

.text-content {
    padding: 64px 0;
}

.text-content-wrapper {
    max-width: 832px;
    margin: 0 auto;
}

.text-content-wrapper p {
    margin: 0 0 22px;
}

.text-icons--inner .text-icon-icon {
    width: 48px;
    height: 48px;
    background: #1173B7;
}

.text-icons--inner .text-icon-text h3 {
    font-size: 1.25rem;
    line-height: 1.75rem;
    margin-bottom: 0.75rem;
}

.service-content-gradient {
    background-image: linear-gradient(to bottom right, #f9fafb, #fff);
    padding: 64px 0;
}

.text-icon-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 8px;
    overflow: hidden;
    background: #f3f4f6;
    margin: 24px 0 0;
}

.text-icon-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.big-single-image-block {
    margin: 64px 0 0;
    text-align: center;
}

.big-single-image-block h2 {
    margin-bottom: 2rem;
    font-size: 1.875rem;
    line-height: 2.25rem;
    font-weight: 700;
    color: #0F1728;
}

.big-single-image {
    border-radius: 16px;
    box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 25px 50px -12px rgb(0 0 0 / 0.25);
    max-width: 1088px;
    margin: 0 auto 24px;
    overflow: hidden;
    aspect-ratio: 2 / 1.13;
}

.big-single-image+p {
    font-style: italic;
}

.big-single-image img {
    width: 100%;
    height: 100%;
    max-width: unset;
    object-fit: cover;
}

@media(min-width: 768px) {
    .banner--innerpage {
        padding: 150px 0 0;
    }
	
	.banner--innerpage.single-inner--baner {
		padding: 125px 0 0;
		min-height: 340px;
	}

    .banner--innerpage .banner-content h1 {
        font-size: 6rem;
    }

    .leader-image-content-wrapper {
        display: flex;
        max-width: 894px;
        margin: 0 auto;
    }

    .leader-image-content-left {
        width: 16rem;
    }

    .text-icon-item {
        width: calc(50% - 16px);
    }

    .text-icons__list {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }

    .text-icon-text p {
        font-size: 16px;
    }

    .text-icons--single .text-icon-text p {
        font-size: 18px;
        line-height: 1.625;
        max-width: 896px;
        margin: 0 auto;
    }

    .text-icons--single .text-icon {
        padding: 3rem;
    }

    .banner--innerpage .banner-content h1 {
        font-size: 3.3rem;
    }

    .banner-float-tag {
        position: absolute;
        top: 32px;
        left: 32px;
        margin: 0;
    }

    .big-single-image+p {
        font-size: 16px;
    }
}

@media(min-width: 1200px) {
    .banner--innerpage .banner-content .sub-text {
        max-width: 734px;
        margin: 0 auto;
    }

    .banner--innerpage {
        padding: 0;
        min-height: 535px;
        height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }
	
	.banner--innerpage.single-inner--baner {
		min-height: 400px;
		padding: 50px 0;
	}

    .bredcums ul li a:hover {
        color: #2563eb;
    }

    .text-icon:hover {
        border-color: #93c5fd;
        box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    }

    .text-icons--single .text-icon:hover {
        border: 1px solid #e2e8f0;
        box-shadow: none;
    }

    .small-cta--dark .small-cta-wrapper .btn:hover {
        transform: scale(1.05);
    }

    .small-cta--dark .small-cta-wrapper .btn:hover svg {
        top: 0;
        right: 0;
    }

    .text-content {
        padding: 96px 0;
    }

    .text-icons--inner .text-icon-item {
        width: calc(33.333% - 22px);
    }

    .service-content-gradient .text-icons-heading h2 {
        font-size: 2.25rem;
        line-height: 2.5rem;
    }

    .service-content-gradient {
        padding: 96px 0;
    }

    .full-width-cta-wrapper h2.full-width-cta-small {
        font-size: 2.25rem;
        line-height: 2.5rem;
    }

    .big-single-image-block {
        margin: 96px 0 0;
    }
}

/* 27-11-25 */
.single-block__page {
	padding: 45px 0;
}

.single-block__page h2 {
	margin-bottom: 0.8rem;
    font-size: 1.875rem;
    line-height: 2.25rem;
    font-weight: 600;
    color: #0F1728;
}

.single-block__page p {
	font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 400;
	margin: 0 0 15px;
}

@media (min-width: 1200px) {
	.single-block__page {
		padding: 65px 0;
	}
	
	.single-block__page h2 {
		font-size: 2.15rem;
        line-height: 2.5rem;
		margin-bottom: 1rem;
	}
	
	.single-block__page p {
		margin: 0 0 1rem;
	}
}