@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Bold.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-ExtraLight.woff2') format('woff2');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Thin.woff2') format('woff2');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    overflow-x: hidden;
    font-size: 1.025vw;
    line-height: 1.15;
}

body {
    font-weight: normal;
    font-size: 1rem;
    line-height: 1.5;
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

input,
button,
textarea,
select {
    font: inherit;
}

a {
    text-decoration: none;
    color: inherit;
}

p {
    font-size: 1rem;
    line-height: 2rem;
    font-weight: 400;
}

ul,
ol {
    list-style: none;
}

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

.container {
    max-width: 80rem;
}

.btn {
    color: #ffff;
    background: #1871FB;
    border-radius: 4px;
    padding: .875rem 1.1875rem;
    font-size: 1rem;
}

/* header css starts */
header {
    width: 100%;
    background-color: transparent;
    position: fixed;
    top: 0;
    z-index: 99;
    padding: .75rem 0;
    transition: background-color 0.1s ease, transform 0.3s ease;
}

.header.scrolled {
    background-color: #0A0A3D;
}

.header.hide {
    transform: translateY(-100%);
}

header .navbar-brand img {
    width: auto;
    height: 2rem;
}

header .navbar-nav {
    gap: 2rem;
}

header .navbar-nav li a {
    color: #FFFFFF;
    font-size: 1rem;
    font-weight: 400;
}

header .navbar-nav li .dropdown-menu {
    left: -9.5rem;
    border-radius: 0;
    background: #F4FAFF;
    padding: 2.5rem 0;
}

.dropdown-menu a.dropdown-heading {
    color: #141414 !important;
    font-weight: 500;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.dropdown-menu ul li {
    margin-bottom: 0.25rem;
}

.dropdown-menu ul li a {
    font-weight: 400;
    font-size: .875rem;
    color: #404040;
    padding-right: 0;
    padding-left: 0;
    white-space: normal;
}

header .navbar-nav li a img {
    width: 1.25rem;
    height: 1.25rem;
}

.navbar-nav .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(.625rem);
    transition: all 0.5s ease;
    margin-top: 0;
    position: absolute;
}

.navbar-nav .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(1.5rem);
}

.dropdown-toggle::after {
    content: "";
    display: inline-block;
    width: 1rem;
    height: 1rem;
    background: url("../images/home/navbar-toggler.webp") no-repeat center center;
    border: none;
    margin-left: 0;
    vertical-align: middle;
    transition: transform 0.3s ease;
}

.dark-header .dropdown-toggle::after {
    background: url("../images/home/navbar-toggler-dark.svg") no-repeat center center;
}

.navbar-nav .dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

header.mobile-header {
    display: none;
}


/* header css ends */

main {
    margin-top: 0;
}

section {
    padding: 5rem 0;
}

.hero-section {
    position: relative;
    padding-top: 5rem;
}

.hero-section .hero-background {
    position: absolute;
    z-index: -1;
    width: 100%;
}

.hero-section .mobile-service-bg {
    display: none;
}

.hero-section .hero-graphic-wrapper img {
    position: absolute;
    top: -4rem;
    left: 0;
    width: 60rem;
    height: 60rem;
    mix-blend-mode: hard-light;
    opacity: 1;
    pointer-events: none;
    z-index: 1;
}

.hero-section .hero-content-wrapper h1 {
    color: #fff;
    font-weight: 600;
    font-size: 4.75rem;
    line-height: 4.75rem;
    letter-spacing: -0.2rem;
}

.hero-content-wrapper .lead {
    color: #fff;
    font-size: 1rem;
    line-height: 2rem;
}

.btn-wrapper {
    display: flex;
    justify-content: flex-start;
    gap: .5rem;
}

.scrollable-tabs {
    background: linear-gradient(178deg, #0c0b37 35%, #141414 100%);
    padding-bottom: 5rem;
    height: 100vh;
    /* Full screen pinned section */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.scrollable-tabs h2 {
    color: #fff;
    font-weight: 600;
    font-size: 4.75rem;
    line-height: 4.75rem;
    letter-spacing: -0.2rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.scrollable-tabs ul.nav-tabs {
    border: 0;
    gap: 2rem;
}

.scrollable-tabs ul.nav-tabs li {
    border: 0;
}

.scrollable-tabs .nav-tabs .nav-link {
    color: #9090AA;
    border: 0;
    font-size: .9375rem;
}

.scrollable-tabs .nav-tabs .nav-item.show .nav-link,
.scrollable-tabs .nav-tabs .nav-link.active {
    color: #fff;
    background: none;
    border: 0;
    border-bottom: 2px solid #1871FB;
}

.scrollable-tabs .nav-tabs .nav-link:focus,
.scrollable-tabs .nav-tabs .nav-link:hover {
    color: #fff;
    border-bottom: 2px solid #1871FB;
}

.scrollable-tabs .tab-content {
    margin-top: 3rem;
}

.scrollable-tabs .tab-content .tab-pane .tab-img {
    height: 22.25rem;
    margin: auto;
}

.scrollable-tabs .tab-content .tab-details h3 {
    font-weight: 600;
    font-size: 3.5rem;
    line-height: 3.5rem;
    color: #fff;
    margin-bottom: 2rem;
}

.scrollable-tabs .tab-content .tab-details p {
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.5rem;
    color: #9090AA;
}

.scrollable-tabs .tab-content .tab-details ul {
    display: flex;
    flex-wrap: wrap;
}

.scrollable-tabs .tab-content .tab-details ul li {
    list-style-type: disc;
    width: 50%;
    line-height: 3;
}

.scrollable-tabs .tab-content .tab-details ul li::marker {
    color: #9090AA;
}

.scrollable-tabs .tab-content .tab-details ul li a {
    color: #9090AA;
    font-weight: 400;
    font-size: 1rem;
    text-decoration: underline;
}

.learn-more a {
    color: #1871FB;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.5rem;
    text-decoration: underline;
}

.why-choose-us h2 {
    color: #141414;
    font-weight: 600;
    font-size: 2.5rem;
    line-height: 2.5rem;
    letter-spacing: -0.2rem;
}

.why-choose-us .title-desc {
    color: #404040;
    font-weight: 400;
    font-size: 1.125rem;
    line-height: 1.875rem;
}

.why-choose-us .why-card img {
    width: 5.625rem;
    height: 5.625rem;
    object-fit: contain;
}

.why-choose-us .why-card h6 {
    color: #141414;
    font-weight: 600;
    font-size: 1.125rem;
    line-height: 1.5rem;
}

.why-choose-us .why-card p {
    color: #404040;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.5rem;
}

.partner-logo-section img {
    height: 4.375rem;
    object-fit: contain;
    padding: 0.5rem;
    cursor: pointer;
}

.ready-to-design {
    background: #CDE8FF;
    position: relative;
    overflow: hidden;
    padding: 8rem 0;
}

.ready-to-design .ready-to-design-content {
    position: relative;
    z-index: 1;
}

.ready-to-design h2 {
    color: #141414;
    font-weight: 600;
    font-size: 3.5rem;
    line-height: 4rem;
    letter-spacing: -0.2rem;
    margin-bottom: 2rem;
}

.ready-to-design .abs-img {
    position: absolute;
    right: -8rem;
    top: 0;
    z-index: 0;
    mix-blend-mode: overlay;
    width: 60rem;
    height: 60rem;
}

.ready-to-design ul li {
    color: #141414;
    font-weight: 400;
    font-size: 1.125rem;
    line-height: 2.5rem;
    list-style-type: disc;
}

.ready-to-design ul li::marker {
    color: #141414;
}

.case-study {
    position: relative;
    padding: 0;
}

.case-study .case-study-card {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.case-study .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(8px);
    top: 0;
}

.case-study .case-study-content {
    position: relative;
    z-index: 2;
    padding: 5rem 0;
}

.case-study .case-study-title .case-tagline {
    color: #EBEBEB;
    font-weight: 400;
    font-size: 1.125rem;
    line-height: 1.125rem;
    margin: 0;
}

.case-study .case-study-title .case-title {
    font-weight: 600;
    font-size: 10rem;
    line-height: 10rem;
    letter-spacing: -1rem;
    color: #FFFFFF;
}

.case-study .case-study-left {
    position: absolute;
    bottom: 0;
    width: 32rem;
    height: 32rem;
}

.case-study .case-study-left img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.case-study .case-study-right {
    margin-left: 32rem;
    width: 58%;
}

.case-study .case-study-right h4 {
    color: #FFFFFF;
    font-weight: 400;
    font-size: 1.75rem;
    line-height: 2.5rem;
    letter-spacing: -0.01rem;
    margin: 1.5rem 0;
}

.case-study .case-study-right p {
    font-weight: 300;
    font-size: 1rem;
    line-height: 1.5rem;
    color: #FFFFFF;
}

.case-study .case-study-right ul li {
    font-weight: 300;
    font-size: 1rem;
    line-height: 2;
    color: #FFFFFF;
    list-style-type: disc;
}

.case-study-right .case-tags {
    margin-top: 2rem;
    color: #FFFFFF;
}

.case-study-right .case-tags a {
    font-weight: 300;
    font-size: .875rem;
    line-height: 1.375rem;
    text-decoration: underline;
    color: #FFFFFF;
}

.case-study .case-study-btn {
    position: absolute;
    top: 20%;
    right: 5%;
    z-index: 3;
    display: flex;
    gap: 1.5rem;
}

.case-study-btn button {
    background: none;
    border: none;
}

.insights .insights-title-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.insights-title-wrapper .left-title {
    display: flex;
    gap: 40px;
    align-items: center;
}

.insights-title-wrapper .left-title h4 {
    font-weight: 600;
    font-size: 2.5rem;
    line-height: 2.5rem;
    letter-spacing: -0.2rem;
    color: #141414;
}

.insights-title-wrapper .left-title button {
    border: 0;
    margin: 0 0.5rem;
    background: #fff;
}

.btn-white {
    background: #ffff;
    color: #141414;
    border: 1.5px solid #1871FB;
}

.insights-slider-wrapper {
    margin-top: 4rem;
}

.insights-slider-wrapper h5 {
    color: #303030;
    font-weight: 600;
    font-size: 1.5rem;
    line-height: 2rem;
}

.insights-slider-wrapper .blog-info span {
    font-weight: 400;
    font-size: .8438rem;
    line-height: 1.125rem;
    color: #707070;
}

.insights-slider-wrapper .insights-card {
    margin: 0 1.5rem;
}

.insights-slider-wrapper .insights-small-card img {
    min-height: 20rem;
    height: 100%;
    object-fit: cover;
    border-radius: .5rem;
    margin-bottom: 1rem;
}

.insights-slider-wrapper .insights-big-card img {
    min-height: 25rem;
    height: 100%;
    object-fit: cover;
    border-radius: .5rem;
    margin-bottom: 1rem;
}

.testimonal-section {
    background: #CDE8FF;
}

.testimonal-section .testimonal-wrapper {
    max-width: 66rem;
    margin: auto;
    display: flex;
    gap: 3rem;
}

.testimonal-section .testimonal-wrapper .testimonal-image {
    height: 4.25rem;
    width: 10%;
    display: flex;
    align-items: center;
}



.testimonal-section .testimonal-wrapper .testimonal-content-wrapper {
    width: 90%;
}

.testimonal-content-wrapper .testimonal-content .testimony {
    color: #141414;
    font-weight: 300;
    font-size: 1.875rem;
    line-height: 3.375rem;
}

.testimonal-content-wrapper .testimonal-content .testimonal-info .name {
    color: #303030;
    font-weight: 600;
    font-size: 1.5rem;
    margin-bottom: 0;
}

.testimonal-content-wrapper .testimonal-content .testimonal-info .desgination {
    font-weight: 400;
    font-size: 1.125rem;
    color: #303030;
}

.star-rating-wrapper img {
    width: 1.8125rem;
    height: 1.8125rem;
    object-fit: contain;
}

.faq-section .faq-title {
    color: #141414;
    font-weight: 600;
    font-size: 2.5rem;
    line-height: 2.5rem;
    margin-bottom: 3rem;
}

.faq-wrapper .accordion-item {
    border-top: 1.5px solid #CDE8FF;
    border-bottom: 1.5px solid #CDE8FF;
    border-left: none;
    border-right: none;
    border-radius: 0;
    margin-bottom: 0;
}

.faq-wrapper .accordion-header .accordion-button {
    color: #303030;
    font-weight: 500;
    font-size: 1.125rem;
    line-height: 1.625rem;
    padding: 2rem 0;
    border: 0;
    background: #ffff;
    box-shadow: none;
}

.faq-wrapper .accordion-button:not(.collapsed) {
    background: #fff;
}

.faq-wrapper .accordion-button:focus {
    box-shadow: none;
}

.faq-wrapper .accordion-item .accordion-body {
    color: #404040;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.5rem;
    padding-top: 0;
}

.faq-wrapper .accordion-item .accordion-body ul {
    margin-bottom: 0;
    margin-top: 1rem;
}

.faq-wrapper .accordion-item .accordion-body ul li {
    list-style-type: disc;
}

footer {
    padding: 3rem 0;
    background: linear-gradient(180deg, #000066 0%, #040433 51.92%);
}

.upper-footer .idea-tagline {
    color: #9090AA;
    font-weight: 400;
    font-size: 1.125rem;
    line-height: 1.875rem;
}

.upper-footer .upper-footer-left p {
    color: #9090AA;
    font-weight: 400;
    font-size: 1.125rem;
    line-height: 1.875rem;
}

.upper-footer .upper-footer-left h2 {
    color: #FFFFFF;
    font-weight: 600;
    font-size: 4.875rem;
    line-height: 4.875rem;
    letter-spacing: -0.2rem;
    margin-bottom: 2rem;
}

.upper-footer .upper-footer-left .btn-white {
    border: 0;
}

.upper-footer-right .main-links {
    margin-bottom: 2rem;
}

.upper-footer-right .main-links li {
    margin-bottom: .375rem;
}

.upper-footer-right .main-links li a {
    color: #FFFFFF;
    font-weight: 600;
    font-size: 1.5rem;
    line-height: 1.875rem;
}

.upper-footer-right .other-links {
    margin-bottom: 2rem;
}

.upper-footer-right .other-links li {
    margin-bottom: .375rem;
}

.upper-footer-right .other-links li a {
    color: #fff;
    font-weight: 400;
    font-size: .9375rem;
    line-height: .9375rem;
}

.social-links {
    gap: 1.125rem;
}

.social-links img {
    width: 1.125rem;
    height: 1.125rem;
    object-fit: contain;
}

footer hr {
    border: 0.75px solid #202076;
    margin: 2rem 0;
}

.lower-footer-wrapper {
    gap: 4rem;
}

.col-20 {
    width: 20%;
}

.lower-footer-wrapper h6 {
    font-weight: 400;
    font-size: 1.125rem;
    color: #B4B4D6;
    margin-bottom: 1.5rem;
}

.lower-footer-wrapper ul li {
    margin-bottom: 0.75rem;
}

.lower-footer-wrapper ul li a {
    color: #7A7A99;
    font-weight: 400;
    font-size: .9375rem;
}

.copyright-wrapper {
    margin-top: 5rem;
}

.copyright-wrapper p {
    color: #7A7A99;
    font-weight: 400;
    font-size: .75rem;
    line-height: .75rem;
}

.copyright-wrapper ul {
    gap: 2rem;
}

.copyright-wrapper ul li a {
    color: #7A7A99;
    font-weight: 400;
    font-size: .75rem;
    line-height: .75rem;
}

/* services */
.service-hero-section {
    padding-top: 3rem;
}

.service-hero-section .mobile-service-bg {
    display: none;
}

.service-hero-section .hero-graphic-wrapper img {
    mix-blend-mode: screen;
    position: unset;
    width: 100%;
    height: 100%;
    right: 0;
    left: auto;
}

.service-expertise {
    background: #FFFFFF;
}

.service-expertise .service-title-wrapper h2 {
    font-weight: 600;
    font-size: 3.5rem;
    line-height: 3.5rem;
    letter-spacing: -0.1rem;
}

.service-expertise .service-title-wrapper {
    margin-bottom: 2.5rem;
}

.service-expertise .why-card {
    margin-bottom: 2rem;
}

.service-expertise .why-card p {
    color: #404040;
}

.service-expertise .why-card .btn-wrapper a {
    color: #1871FB;
    font-weight: 500;
    font-size: .9375rem;
    line-height: 1.5rem;
    text-decoration: underline;
}

.image-section {
    padding: 0;
    max-height: 40rem;
}

.image-section img {
    max-height: inherit;
    width: 100%;
    object-fit: cover;
}

.technologies {
    background: #CDE8FF;
}

.technologies h2.text-center {
    color: #141414;
    font-weight: 600;
    font-size: 3.5rem;
    line-height: 3rem;
    letter-spacing: -0.2rem;
    margin-bottom: 2rem;
}

.technologies .technical-skills {
    column-gap: 5rem;
    row-gap: 3rem;
    margin-bottom: 3rem;
}

.technologies .tabs-wrapper {
    background: #FFFFFF;
    border-radius: 2rem;
    padding: 3.5rem 5rem;
    margin-top: 3rem;
}

.technologies .nav-tabs {
    background: #F7F7F7;
    border: 0;
    padding: .5rem;
    justify-content: space-between;
    border-radius: 3.125rem;
}

.technologies .tab-content {
    margin-top: 3rem;
}

.technologies .content-wrapper h3 {
    color: #141414;
    font-weight: 400;
    font-size: 2rem;
    line-height: 2.75rem;
    letter-spacing: -0.05rem;
    margin-bottom: 2rem;
}

.technologies .content-wrapper p {
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.75rem;
    color: #404040;
    margin-bottom: 3rem;
}

.technologies .nav-tabs .nav-link {
    color: #141414;
    font-weight: 400;
    font-size: .9375rem;
    line-height: 1.5rem;
    padding: .5rem 2rem;
    border-radius: 3.125rem;
    border: 0;
}

.technologies .nav-tabs .nav-item.show .nav-link,
.technologies .nav-tabs .nav-link.active {
    color: #141414;
    font-weight: 600;
    background: #E6E6E6;
    border-radius: 3.125rem;
}

.technologies .technical-skills img {
    object-fit: contain;
    width: 7rem;
    height: 3rem;
}

.why-tech {
    background: url('../images/services/technology/why-tech-bg.webp');
    background-repeat: no-repeat;
    background-size: cover;
}

.why-tech h2 {
    color: #FFFFFF;
    font-weight: 500;
    font-size: 4rem;
    line-height: 4rem;
    letter-spacing: -0.2rem;
    margin-bottom: 1rem;
}

.why-tech p {
    color: #FFFFFF;
    font-weight: 300;
}

.why-tech .list-wrapper {
    border: 1px solid #4A64C8;
    border-radius: 3.125rem;
    padding: 4.5rem;
    width: 55rem;
    margin: 4rem auto 2rem auto;
    gap: 4rem;
}

.why-tech .list-wrapper .tech-card {
    gap: 2rem;
    align-items: flex-start;
    width: 45%;
}

.why-tech .list-wrapper .tech-card img {
    object-fit: contain;
}

.why-tech .list-wrapper .tech-card h4 {
    color: #CDE8FF;
    font-weight: 500;
    font-size: 1.25rem;
    line-height: 1.75rem;
}

.why-tech .list-wrapper .tech-card p {
    color: #71AEE2;
    font-weight: 400;
    font-size: .9375rem;
    line-height: 1.4375rem;
}

/* company */

.dark-header.scrolled {
    background-color: #FFFFFF;
}

.dark-header .navbar-nav li a {
    color: #141414;
}

.company-hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.company-hero h1,
.company-hero h2 {
    color: #141414;
    font-weight: 600;
    font-size: 4.375rem;
    line-height: 4.375rem;
    letter-spacing: -0.2rem;
    margin-bottom: 2rem;
}

.company-hero p {
    color: #141414;
}

.company-hero-img {
    height: 33.75rem;
    display: flex;
    align-items: center;
}

.company-hero-img img {
    height: 100%;
    object-fit: cover;
    object-position: left;
}

/* careers */

.title-wrapper h1 {
    font-weight: 600;
    font-size: 4.75rem;
    line-height: 4.75rem;
    letter-spacing: -0.3rem;
    color: #141414;
}

.career-image-section img {
    height: 100%;
}

.home-away h2 {
    color: #141414;
    font-weight: 600;
    font-size: 3.5rem;
    line-height: 3.5rem;
    letter-spacing: -0.2rem;

}

.open-positions {
    background-color: #F4FAFF;
}

.open-positions h2 {
    font-weight: 600;
    font-size: 2.5rem;
    line-height: 2.5rem;
    letter-spacing: -0.1rem;
    color: #141414;
}

.open-positions .job-row {
    padding: 1.5rem 2.5rem;
    background-color: #FFFFFF;
    margin-bottom: 0.5rem;
}

.open-positions .job-row .status-badge {
    padding: 8px 24px;
    width: 8rem;
    display: inline-block;
    border-radius: 6.25rem;
    color: #FFFFFF;
    font-weight: 400;
    font-size: .9375rem;
    text-align: center;
}

.open-positions .job-row .status-success {
    background-color: #11B77D;
}

.open-positions .job-row .status-secondary {
    background-color: #D3D3D3;
}

.open-positions .job-row.open-job .job-title {
    color: #303030;
    font-weight: 600;
    font-size: 1.125rem;
}

.open-positions .job-row.open-job .job-meta {
    color: #303030;
    font-weight: 400;
    font-size: 1rem;
}

.open-positions .job-row.filled-job .job-title {
    color: #808080;
    font-weight: 600;
    font-size: 1.125rem;
}

.open-positions .job-row.filled-job .job-meta {
    color: #808080;
    font-weight: 400;
    font-size: 1rem;
}

.open-positions .job-row .btn {
    padding: 1rem 2rem;
    border-radius: 6.25rem;
}

.open-positions .job-info {
    color: #404040;
    font-weight: 400;
    font-size: 1rem;
    line-height: 2rem;
}

.open-positions .job-info a {
    color: #1871FB;
    font-weight: 600;
}

/* contact-us */
.contact-us-hero .hero-background {
    height: 50rem;
    object-fit: cover;
}

.contact-us-hero .hero-content-wrapper h1 {
    font-weight: 600;
    font-size: 3.5rem;
    line-height: 3.5rem;
    letter-spacing: -0.1rem;
}

.contact-card-wrapper {
    margin-top: 4rem;
}

.contact-card-wrapper .contact-card {
    width: 22rem;
    height: 15rem;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 2rem;
    position: relative;
}

.contact-card-wrapper .contact-card .contact-card-title {
    color: #FFFFFF;
    font-weight: 400;
    font-size: 1rem;
}

.contact-card-wrapper .contact-card .contact-info {
    position: absolute;
    bottom: 2rem;
}

.contact-card-wrapper .contact-card .contact-info a,
.contact-card-wrapper .contact-card .contact-info address span {
    font-weight: 500;
    font-size: 1.25rem;
    color: #FFFFFF;
}

.contact-card-wrapper .contact-card .contact-info address span {
    margin-bottom: 0.5rem;
    display: inline-block;
}

.contact-card-wrapper .contact-card .contact-info address {
    margin: 0;
    font-weight: 500;
    font-size: .9375rem;
    color: #FFFFFF;
}

.form-section {
    background: #CDE8FF;
}

.form-section .form-left h2 {
    color: #141414;
    font-size: 3.5rem;
    line-height: 3.5rem;
    letter-spacing: -0.1rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.form-left .direct-mail {
    margin-top: 2rem;
}

.form-left .direct-mail a {
    color: #1871FB;
}

.form-section .enquiry-note {
    color: #141414;
    margin-bottom: 2rem;
}

.form-section form input,
.form-section form textarea,
.form-section form select {
    border: 0;
    border-radius: .5rem;
    padding: 1rem;
    color: #909090;
    font-size: .9375rem;
    font-weight: 400;
}

.form-section .accept-privacy {
    color: #404040;
    font-weight: 400;
    font-style: Italic;
    font-size: .875rem;
    line-height: 1.125rem;
    display: inline-block;
    margin: 1.5rem 0;
}

.contact-partner-logo-section {
    background: #CDE8FF;
}


.strategic-approach {
    position: relative;
    background: #CDE8FF;
}

.strategic-approach h2 {
    color: #141414;
    font-weight: 600;
    font-size: 3.5rem;
    line-height: 3rem;
    letter-spacing: -0.1rem;
    text-align: center;
    margin-bottom: 3rem;
}

.steps-section {
    width: 100%;
    padding: 3.75rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.steps-wrapper {
    display: flex;
    gap: 2.75rem;
    position: relative;
    z-index: 2;
    justify-content: center;
}

.steps-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 81rem;
    height: 9rem;
    background: #FFEF72;
    border-radius: 8.625rem;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.step-card {
    background: #F6F6F6;
    border: 6px solid;
    border-image-source: linear-gradient(216.19deg, #FFFFFF 40.55%, rgba(102, 102, 102, 0.02) 100%);
    border-image-slice: 1;
    width: 11.5rem;
    min-height: 15rem;
    border-radius: .375rem;
    text-align: center;
    box-shadow: -8px 8px 8px 0px #00000026;
    position: relative;
}

.step-number {
    font-size: 14.25rem;
    font-weight: 600;
    color: #FFEF72;
    line-height: 1;
    position: absolute;
    left: -1.25rem;
}

.step-title {
    font-size: 1.125rem;
    font-weight: bold;
    margin: .625rem 0;
}

.step-desc {
    font-size: .875rem;
    color: #404040;
    line-height: 1.375rem;
    width: 11.5rem;
}

/* Navigation icons */
.nav-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 1.125rem;
    cursor: pointer;
    z-index: 2;
}

.nav-icon.left {
    left: 9.5rem;
}

.nav-icon.right {
    right: 9.5rem;
}

.step-number-title {
    display: flex;
    align-items: center;
    height: 100%;
    justify-content: space-between;
}

.steps-content-wrapper .steps-wrapper {
    margin-top: 2rem;
}

.steps-content-wrapper .design-steps-wrapper .step-desc {
    width: 15.25rem;
}

/* career detail page */

.job-desc-left .back-button {
    margin-bottom: 3rem;
}

.job-desc-left .back-button a {
    background: transparent;
    padding: 1rem 2rem;
    border: 2px solid #808080;
    border-radius: 6.25rem;
    font-weight: 500;
    font-size: 1rem;
    color: #303030;
}

.job-desc-left h1 {
    font-weight: 600;
    font-size: 5rem;
    line-height: 5rem;
    letter-spacing: -0.25rem;
    color: #202020;
}

.job-desc-left hr {
    opacity: 1;
    border-top: 1px solid #C0C0C0;
    margin: 3rem 0;
    width: 25rem;
}

.job-desc-left .exp-time {
    gap: 1rem;
    margin-bottom: 2rem;
}

.job-desc-left .exp-time span {
    font-weight: 400;
    font-size: 1rem;
    color: #303030;
}

.job-desc-left .share {
    margin-bottom: 3rem;
}

.job-desc-left .share span {
    font-weight: 500;
    font-size: 1rem;
    color: #808080;
}

.job-desc-right h4 {
    font-weight: 600;
    font-size: 1.25rem;
    color: #303030;
    margin-bottom: 2rem;
}

.job-desc-right ul {
    margin-bottom: 3.5rem;
}

.job-desc-right ul li {
    font-weight: 400;
    font-size: 1rem;
    list-style-type: disc;
    color: #303030;
    margin-bottom: 1.25rem;
}

.join-team p {
    margin-bottom: 2.5rem;
}

.job-copyright p {
    color: #808080;
    font-weight: 400;
    font-size: .75rem;
    line-height: 12px;
    margin-top: 3rem;
}

/* job apply popup modal */
.job-apply-modal,
.project-model {
    padding: 0 !important;
}

.job-apply-modal .modal-dialog,
.project-model .modal-dialog {
    max-width: 100%;
    width: 100%;
    margin: 0;
}

.job-apply-modal .modal-dialog .modal-content,
.project-model .modal-dialog .modal-content {
    padding: 2rem 0;
    background: url(../images/careers/popup-bg.webp);
    background-size: cover;
    border-radius: 0;
    border: 0;
    height: 100vh;
}

.job-apply-modal .modal-header,
.project-model .modal-header {
    margin-bottom: 2rem;
    padding-right: 0;
    padding-left: 0;
}

.job-apply-modal .modal-header img,
.project-model .modal-header img {
    width: auto;
    height: 2rem;
}

.job-apply-modal .modal-body,
.project-model .modal-body {
    padding-left: 0;
    padding-right: 0;
}

.job-apply-modal .modal-body .popup-left {
    position: relative;
    height: 100%;
}

.job-apply-modal .modal-body .popup-left .job-copyright {
    position: absolute;
    bottom: 0;
}

.job-apply-modal .modal-body .popup-left .job-copyright p {
    color: #141414;
}

.job-apply-modal .modal-body .popup-left h3 {
    font-weight: 400;
    font-size: 1.25rem;
    color: #141414;

}

.job-apply-modal .modal-body .popup-left h2 {
    font-weight: 400;
    font-size: 3rem;
    line-height: 3.5rem;
    color: #202020;
}

.job-apply-modal .popup-right form input {
    font-weight: 400;
    font-size: .9375rem;
    padding: 1rem;
    border-radius: .5rem;
    border: 0;
    height: 3.125rem;
}

.job-apply-modal .popup-right form textarea {
    font-weight: 400;
    font-size: .9375rem;
    padding: 1rem;
    border-radius: .5rem;
    border: 0;
    height: 10rem;
}

.job-apply-modal .popup-right form input::placeholder,
.job-apply-modal .popup-right form textarea::placeholder {
    color: #909090;
}

.job-apply-modal .popup-right form .form-control:focus {
    outline: 0;
    border: 0;
    box-shadow: none;
}

.job-apply-modal .popup-right form .file-upload-wrapper label {
    font-weight: 700;
    font-size: 1rem;
    text-decoration: underline;
    color: #141414;
    cursor: pointer;
}

.job-apply-modal .popup-right form .file-upload-wrapper {
    margin: 0.5rem 0;
}

.job-apply-modal .popup-right form .file-upload-wrapper .label-wrapper {
    display: flex;
    align-items: center;
}

.job-apply-modal .popup-right form .file-upload-wrapper small {
    font-weight: 400;
    font-style: Italic;
    font-size: .9375rem;
    color: #141414 !important;
}

.job-apply-modal .popup-right form .file-upload-wrapper #filePreview .uploaded-file {
    background: #96FFC9;
    padding: .75rem 1.5rem;
    font-weight: 400;
    font-size: .875rem;
}

.job-apply-modal .popup-right form .file-upload-wrapper #filePreview .remove-file {
    font-size: 1rem;
    cursor: pointer;
    margin-left: 0.5rem;
}

.job-apply-modal .popup-right p {
    font-weight: 400;
    font-style: Italic;
    font-size: .875rem;
    line-height: 1.125rem;
    color: #141414;
    margin-top: 2.5rem;
    margin-bottom: 0;
}

/* query step form */


.step-page {
    display: none;
}

.step-page.active {
    display: block;
}

.project-model .start-page h3 {
    font-weight: 600;
    font-size: 5.5rem;
    line-height: 5.5rem;
    letter-spacing: -0.25rem;
    color: #202020;
}

.project-model .start-page p {
    color: #141414;
    margin-bottom: 1rem;
}

.project-model .start-page p a {
    color: #1871FB;
    text-decoration: underline;
}

.project-model .start-page .start-content {
    margin-top: 5rem;
}

.project-model #step-2 {
    max-width: 40rem;
    margin: auto;
    width: 100%;
}

.project-model .step-page small {
    font-weight: 400;
    font-size: .9375rem;
    color: #1871FB;
    margin-bottom: 1rem;
    text-align: center;
    display: inline-block;
    width: 100%;
}

.project-model .step-page h4.step-title {
    font-weight: 400;
    font-size: 2.5rem;
    line-height: 2.75rem;
    letter-spacing: -0.02rem;
    color: #202020;
    text-align: center;
    margin-bottom: 2rem;
}

.project-model .step-page input[type="text"],
 .project-model .step-page input[type="email"],
 .project-model .step-page input[type="date"],
 .project-model .step-page input[type="number"]{
    font-weight: 400;
    font-size: 16px;
    border-radius: .5rem;
    padding: 1rem;
    border: 0;
    box-shadow: none;
}

.step-page input::placeholder {
    color: #909090;
}

.project-model .start-page .next-btn {
    margin-top: 2rem;
}

.back-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
}

.error-msg {
    color: red;
    font-size: 0.875rem;
    display: none;
}


/* portfolio page */

.portfolio-overall-wrapper .two-cards,
.portfolio-overall-wrapper .three-cards,
.portfolio-overall-wrapper .two-cards-1,
.portfolio-overall-wrapper .three-cards-1 {
    margin-bottom: 5rem;
}

.portfolio-card .portfolio-image-link img {
    border-radius: .5rem;
    object-fit: cover;
    margin-bottom: 1rem;
}

.portfolio-card img.h-600,
img.h-600 {
    width: 100%;
    height: 37.5rem;
}

.portfolio-card img.h-440 {
    width: 100%;
    height: 27.5rem;
}

.portfolio-card img.h-280 {
    width: 100%;
    height: 17.5rem;
}

.portfolio-card img.h-400 {
    width: 100%;
    height: 25rem;
}

.portfolio-card img.h-360 {
    width: 100%;
    height: 22.5rem;
}

.portfolio-card img.h-500 {
    width: 100%;
    height: 31.25rem;
}

.portfolio-card-content .portfolio-name {
    font-weight: 400;
    font-size: 1rem;
    color: #404040;
    display: inline-block;
    margin-bottom: 1rem;
}

.portfolio-card-content .portfolio-title a {
    font-weight: 400;
    font-size: 1.75rem;
    line-height: 2.25rem;
    color: #141414;
    margin-bottom: 1rem;
}

.portfolio-card-content .case-tags a {
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.5rem;
    text-decoration: underline;
    color: #404040;
}