/* ***************************************************
 * Author:           SE-2
 * Created Date:     2024-12-22
 * Last Modified:    2025-01-14
 * Version:          1.1
 * Project:          Progmize 2.0 Website
 * Company:          Progmize Software Systems
 * Contact:          tech@progmize.com
 ***************************************************  */


/* ====================  GENERAL STYLES FOR ALL PAGES ==================== */
.cookie-popup h3,
body {
    font-family: Inter, sans-serif;
    font-display: swap
}

.cookie-popup h3,
body,
html {
    font-display: swap
}

.cookie-popup .cookie-privacy,
.cookie-popup .cookie-privacy:hover,
.cookie-popup h3,
.cookie-popup p {
    -webkit-text-fill-color: transparent
}

.cookie-popup,
.custom-alert {
    position: fixed;
    z-index: 1000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, .2);
    display: none
}

.arrow1,
.arrow2,
.arrow3 {
    overflow: visible
}

@font-face {
    font-family: 'Pixelify Sans';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('https://fonts.gstatic.com/s/pixelifysans/v2/CHylV-3HFUT7aC4iv1TxGDR9Jn0Ei0tSaJ0.woff2') format('woff2')
}

@font-face {
    font-family: 'Monomaniac One';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('https://fonts.gstatic.com/s/monomaniacone/v13/4iC06K17YctZjx50EU-QlwPmcpRgo4gj5VwJ.woff2') format('woff2')
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    overflow-x: hidden
}

.cookie-popup {
    bottom: 20px;
    left: 34%;
    transform: translateX(-50%);
    width: 65%;
    max-width: 100%;
    min-width: 60%;
    border-radius: 10px;
    border: 0 solid #023189;
    background: rgba(255, 255, 255, .74);
    backdrop-filter: blur(20px)
}

.cookie-popup h3 {
    margin-bottom: 10px;
    font-size: clamp(15px, 2vw, 28px);
    font-weight: 700;
    background: linear-gradient(90deg, #165e99 0, #071f33 100%);
    background-clip: text;
    -webkit-background-clip: text
}

.cookie-popup button,
.cookie-popup p {
    font-weight: 600;
    font-style: normal;
    font-family: Inter, sans-serif;
    font-display: swap
}

.cookie-popup p {
    text-align: justify;
    margin-bottom: 20px;
    font-size: clamp(10px, 2vw, 18px);
    background: linear-gradient(90deg, #165e99 0, #071f33 100%);
    background-clip: text;
    -webkit-background-clip: text
}

.cookie-popup .cookie-privacy {
    background: linear-gradient(90deg, #ffb81d 0, #ffb81d 100%);
    background-clip: text;
    -webkit-background-clip: text
}

.cookie-popup .cookie-privacy:hover {
    background: linear-gradient(90deg, #d6a200 0, #d6a200 100%);
    background-clip: text;
    -webkit-background-clip: text
}

.cookie-popup button {
    min-width: 50px;
    border: 3px solid #023189;
    background: rgba(217, 217, 217, 0);
    color: #023189;
    font-size: clamp(8px, 2vw, 15px);
    border-radius: 0
}

.cookie-popup button:last-of-type {
    border: 2px solid #023189;
    background: #ffb81d;
    color: #fff
}

.cookie-popup button:hover {
    background: #023189;
    color: #fff
}

.cookie-popup button:last-of-type:hover {
    background: #d6a200
}

#analyticalCookies,
#marketingCookies,
#necessaryCookies {
    border-radius: 0;
    border: 2px solid #000;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, .25) inset;
    appearance: none;
    position: relative;
    cursor: pointer;
    vertical-align: middle;
    background-color: transparent;
    display: inline-block
}

#necessaryCookies::after,
.custom-checkbox:checked::after {
    content: '\2713';
    font-size: 12px;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: 700
}

#analyticalCookies:checked::after,
#marketingCookies:checked::after {
    content: '\2713';
    font-size: 12px;
    color: #000;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: 700
}

.form-check-label {
    color: #000;
    text-align: justify;
    font-family: Inter, sans-serif;
    font-display: swap;
    font-size: clamp(15px, 2vw, 18px);
    font-style: normal;
    font-weight: 500;
    line-height: normal
}

.custom-alert {
    top: 300px;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    color: #000;
    padding: 20px 10px;
    border-radius: 8px;
    font-family: Inter, sans-serif;
    font-display: swap;
    font-weight: 500;
    font-size: 20px;
    text-align: center;
    opacity: 0;
    animation: .5s ease-out forwards slideDownFadeIn
}

.custom-alert .alert-ok-btn {
    margin-top: 15px;
    padding: 8px 15px;
    background-color: #023189;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color .3s
}

.custom-alert .alert-ok-btn:hover {
    background-color: #d6a200;
    color: #fff
}

.animated-services .col-4 .service-title,
.animated-services h1 {
    color: #023189;
    font-style: normal;
    line-height: normal;
    font-family: Inter, sans-serif;
    font-display: swap
}

@keyframes slideDownFadeIn {
    0% {
        transform: translate(-50%, -100%);
        opacity: 0
    }

    100% {
        transform: translate(-50%, -50%);
        opacity: 1
    }
}

.open-button {
    z-index: 91
}

.contact-form-container {
    z-index: 200
}

.animated-services {
    text-align: center;
    padding: 60px 0;
    margin-top: 80px
}

.animated-services h1 {
    font-size: clamp(30px, 4vw, 50px);
    font-weight: 900
}

.logo-img {
    width: 300px;
    margin-top: 30px;
    position: relative;
    animation: 2.5s ease-in-out infinite heartbeat;
    z-index: 20
}

.animated-services .row {
    overflow: visible !important
}

.animated-services .row:first-of-type .col-4:first-of-type {
    position: absolute;
    top: -230px;
    left: -155px
}

.animated-services .row:first-of-type .col-4:nth-of-type(2) {
    position: absolute;
    bottom: -100px;
    left: -250px
}

.animated-services .row:first-of-type .col-4:nth-of-type(3) {
    position: absolute;
    bottom: -250px;
    left: -233px
}

.animated-services .row:last-of-type .col-4:first-of-type {
    position: absolute;
    top: -220px;
    right: 120px
}

.animated-services .row:last-of-type .col-4:nth-of-type(2) {
    position: absolute;
    top: -100px;
    right: -120px
}

.animated-services .row:last-of-type .col-4:last-of-type {
    position: absolute;
    top: 120px;
    right: -73px
}

.service-icon1 {
    width: 100px;
    margin-top: -110px;
    animation: 2.5s ease-in-out heartbeat
}

.service-icon2 {
    width: 100px;
    animation: 2.5s ease-in-out 2.5s heartbeat
}

.service-icon3 {
    width: 230px;
    margin-right: -70px;
    margin-bottom: -15px;
    animation: 2.5s ease-in-out 5s heartbeat
}

.service-icon4 {
    width: 130px;
    margin-top: -112px;
    animation: 2.5s ease-in-out 7.5s heartbeat
}

.service-icon5 {
    width: 130px;
    margin-left: 120px;
    animation: 2.5s ease-in-out 10s heartbeat
}

.service-icon6 {
    width: 150px;
    margin-left: 80px;
    animation: 2.5s ease-in-out 12.5s heartbeat
}

@keyframes heartbeat {

    0%,
    100%,
    70% {
        transform: scale(1)
    }

    14% {
        transform: scale(1.1)
    }

    28% {
        transform: scale(.95)
    }

    42% {
        transform: scale(1.05)
    }
}

.arrow1 {
    width: 250px;
    height: 165px;
    animation: 1.7s ease-in-out pulseGlow
}

.arrow2 {
    width: 300px;
    height: 32px;
    animation: 1.7s ease-in-out 2.5s pulseGlow
}

.arrow3 {
    width: 390px;
    height: 135px;
    animation: 1.7s ease-in-out 5s pulseGlow
}

.arrow4 {
    width: 250px;
    height: 175px;
    animation: 1.7s ease-in-out 7.5s pulseGlow
}

.arrow5,
.arrow6 {
    margin-right: 150px;
    height: 60px
}

.arrow5 {
    width: 320px;
    animation: 1.7s ease-in-out 10s pulseGlow
}

.arrow6 {
    width: 250px;
    animation: 1.7s ease-in-out 12.5s pulseGlow
}

.animated-services .col-4 .service-title {
    min-width: 100%;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap
}

.animated-services .service-title {
    opacity: 1
}

.animated-services .row:first-of-type .col-4:first-of-type .service-title {
    position: relative;
    top: -57px;
    left: -197px;
    animation: 1.7s ease-in-out forwards blink
}

.animated-services .row:first-of-type .col-4:nth-of-type(2) .service-title {
    position: relative;
    top: -15px;
    left: -197px;
    animation: 1.7s ease-in-out 2.5s forwards blink
}

.animated-services .row:first-of-type .col-4:nth-of-type(3) .service-title {
    position: relative;
    top: 37px;
    left: -215px;
    animation: 1.7s ease-in-out 5s forwards blink
}

.animated-services .row:last-of-type .col-4:first-of-type .service-title {
    position: relative;
    top: -62px;
    left: -345px;
    animation: 1.7s ease-in-out 7.5s forwards blink
}

.animated-services .row:last-of-type .col-4:nth-of-type(2) .service-title {
    position: relative;
    top: -26px;
    left: -40px;
    animation: 1.7s ease-in-out 10s forwards blink
}

.animated-services .row:last-of-type .col-4:nth-of-type(3) .service-title {
    position: relative;
    top: -2px;
    left: -50px;
    animation: 1.7s ease-in-out 12.5s forwards blink
}

@keyframes pulseGlow {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .5
    }
}

@keyframes blink {
    0% {
        opacity: .8;
        color: #d6a200;
    }

    70% {
        opacity: .9;
    }

    100% {
        opacity: 1;
        color: #d6a200;
    }
}

.services-sections {
    margin-top: 200px;
    font-family: Inter, sans-serif;
    font-display: swap
}

.service-container {
    min-width: 100%;
    padding: 0
}

.tab-content .row {
    border-radius: 0 0 4px 4px;
    border: 3px solid #fff;
    border-top: none;
    background: rgba(255, 255, 255, .59);
    backdrop-filter: blur(20px);
    z-index: 5;
    position: relative;
    padding: 20px 50px 50px
}

.design-bg,
.software-bg,
.specials-bg,
.tab-content .card {
    background-size: cover
}

.nav-pills {
    background-color: #023189;
    min-width: 100%
}

.nav-pills button {
    border-right: 1px solid #fff;
    font-weight: 700
}

.nav-pills li:last-of-type button {
    border-right: none
}

.nav-pills .nav-link {
    border-radius: 0;
    background-color: transparent;
    color: #fff;
    padding: 20px
}

.nav-pills .nav-link.active {
    color: #ffb81d;
    background-color: transparent !important
}

#ai_service,
#cloud_service,
#custom_software_service,
#digital_marketing_service,
#ecommerce_service,
#graphic_designing_service,
#legacy_service,
#uiux_service,
#web_blockchain_service,
#web_designing_service {
    scroll-margin-top: 150px
}

.tab-pane .col-md-11 {
    margin: auto
}

.tab-pane .tab-pane-text {
    font-weight: 500;
    padding: 0 60px
}

.cta-section .btn,
.tab-pane .col-md-11 .btn {
    width: 200px;
    transition: transform .3s ease-in-out;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
    display: flex
}

.tab-content .card {
    color: #fff;
    margin-bottom: 2rem;
    background-position: center
}

.tab-pane:first-of-type .col-md-11:first-of-type .card {
    background-image: url(../img/services/csd.webp)
}

.tab-pane:first-of-type .col-md-11:nth-of-type(2) .card {
    background-image: url(../img/services/wbs.webp)
}

.tab-pane:first-of-type .col-md-11:nth-of-type(3) .card {
    background-image: url(../img/services/cdm.webp)
}

.tab-pane:nth-of-type(2) .col-md-11:first-of-type .card,
.tab-pane:nth-of-type(3) .col-md-11:first-of-type .card {
    background-image: url(../img/services/uiux.webp)
}

.tab-pane:nth-of-type(2) .col-md-11:nth-of-type(2) .card,
.tab-pane:nth-of-type(3) .col-md-11:nth-of-type(2) .card {
    background-image: url(../img/services/gd.webp)
}

.tab-pane:nth-of-type(2) .col-md-11:nth-of-type(3) .card {
    background-image: url(../img/services/wd.webp)
}

.tab-pane:nth-of-type(3) .col-md-11:nth-of-type(3) .card {
    background-image: url(../img/services/lsm.webp)
}

.tab-pane:nth-of-type(3) .col-md-11:nth-of-type(4) .card {
    background-image: url(../img/services/dmsag.webp)
}

.tab-pane .card h5 {
    font-weight: 900;
    font-size: 30px;
    text-align: center;
    margin-bottom: 25px
}

.tab-pane .card p,
.tab-pane li {
    text-align: left;
    font-weight: 600
}

.tab-pane .col-md-11 .btn {
    background-image: url(../img/services/get-it-now.webp);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border: none;
    height: 50px;
    align-items: center;
    justify-content: center
}

.appointment-form .btn:hover,
.cta-section .btn:hover,
.get-in-touch .cta-btn:hover,
.play-btn-wrapper:hover,
.tab-pane .col-md-11 .btn:hover {
    transform: scale(1.1)
}

.section-title {
    text-align: center;
    margin-bottom: 2rem;
    color: #fff
}

.cta-section {
    padding: 8rem 0 12rem;
    color: #fff;
    text-align: center;
    margin-top: -60px;
    position: relative;
    z-index: 4
}

.cta-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    height: 300px;
    inset: 0;
    margin-top: 350px;
    background: #fff;
    filter: blur(70px);
    z-index: -4;
    border-radius: 3021px;
    border: 1px solid #000
}

.cta-section .btn,
.design-bg,
.software-bg,
.specials-bg {
    background-position: center
}

.software-bg {
    background-image: url(../img/services/cta-bg1.webp)
}

.design-bg {
    background-image: url(../img/services/cta-bg2.webp)
}

.specials-bg {
    background-image: url(../img/services/cta-bg3.webp)
}

.cta-section h3 {
    font-size: 40px;
    font-weight: 900
}

.cta-section .btn {
    background-image: url(../img/services/contact.webp);
    background-size: contain;
    background-repeat: no-repeat;
    border: none;
    height: 60px;
    align-items: center;
    justify-content: center
}

.industries .carousel,
.industries .carousel-container {
    max-width: 600px;
    width: 100%
}

.careers,
.get-quotations,
.industries {
    margin-top: 140px
}

.industries .top-heading h1 {
    border: none;
    color: #023189;
    font-family: Inter, sans-serif;
    font-display: swap;
    font-size: clamp(30px, 4vw, 50px);
    font-style: normal;
    font-weight: 900;
    line-height: normal;
}

.industries .carousel {
    position: relative;
    margin: auto
}

.industries .carousel-item-custom {
    width: 100%;
    min-width: 330px;
    height: auto;
    min-height: 250px;
    max-height: 250px;
    border-radius: 15px;
    border: 2px solid #1d42fb;
    background: 50%/cover no-repeat #d3d3d3;
    cursor: pointer;
    --offset-x: 0px;
    transform: translateX(var(--offset-x)) scale(1);
    transition: transform 0.6s ease-in-out, opacity 0.6s ease-in-out;
}


.industries .carousel-item-custom.active {
    animation: .5s ease-in-out scaleEffect;
    opacity: 1;
    z-index: 90;
    position: relative;
    transform: translateX(0%) scale(1.2);
}

@keyframes scaleEffect {
    from {
        opacity: 0.8;
        transform: scale(1) translateX(-90%);
    }

    to {
        opacity: 1;
        transform: scale(1.2) translateX(0%);
    }
}


@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-90%);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(90%);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.carousel-item-custom.active img {
    max-height: 247px;
    min-height: 247px;
    object-fit: cover;
    object-position: center;
    border-radius: 15px
}

.industries .carousel-item-custom:first-of-type,
.industries .carousel-item-custom:last-of-type,
.industries .carousel-item-custom:nth-of-type(3),
.industries .carousel-item-custom:nth-of-type(5) {
    animation: .5s ease-in-out slideInFromLeft;
}

.industries .carousel-item-custom .carousel-caption {
    width: 96%;
    background: rgba(255, 255, 255, .5.5);
    backdrop-filter: blur(20px);
    text-align: start;
    padding: 10px 6px 0;
    bottom: 5px;
    left: 5px;
    position: absolute;
    border-radius: 0 0 15px 15px;
    clip-path: polygon(0 0, 100% 12%, 100% 100%, 0 100%);
    border: 2px solid rgba(29, 48, 251, .1)
}

.industries .carousel-item-custom .blue-caption,
.industries .carousel-item-custom .dark-blue-caption {
    background: rgba(2, 49, 137, .54);
    backdrop-filter: blur(20px)
}

.industries .carousel-item-custom .brown-caption,
.industries .carousel-item-custom .green-caption {
    background: rgba(255, 255, 255, .05);
    backdrop-filter: blur(20px)
}

.industries .carousel-item-custom .gradient-caption,
.industries .carousel-item-custom .red-caption {
    fill: rgba(68, 68, 68, .04);
    backdrop-filter: blur(20px)
}

.industries .carousel-item-custom:active .carousel-caption {
    left: 5px;
    position: absolute
}

.industries .carousel-item-custom .carousel-caption h5 {
    white-space: nowrap;
}

.industries .carousel-item-custom .carousel-caption h5,
.industries .carousel-item-custom .carousel-caption p {
    color: #fff;
    text-align: justify;
    font-family: 'Inter', sans-serif;
    font-display: swap;
    font-size: clamp(15px, 2vw, 18px);
    font-style: normal;
    font-weight: 700;
    line-height: normal
}

.industries .carousel-item-custom .carousel-caption p {
    font-size: clamp(8px, 2vw, 10px)
}

.industries .carousel-item-custom:first-of-type,
.industries .carousel-item-custom:last-of-type {
    width: 100%;
    min-width: 200px;
    max-width: 200px;
    max-height: 160px;
    min-height: 160px;
    height: auto;
    z-index: 87;
    margin-left: -130px;
    margin-right: -130px;
    position: relative;
    transition: all 0.6s ease-in-out;
}

.industries .carousel-item-custom:first-of-type img,
.industries .carousel-item-custom:last-of-type img {
    max-height: 156px;
    min-height: 156px;
    object-fit: cover;
    border-radius: 15px
}

.industries .carousel-item-custom:first-of-type .carousel-caption,
.industries .carousel-item-custom:last-of-type .carousel-caption {
    padding: 5px 5px 0;
    left: 3px;
    bottom: 3px
}

.industries .carousel-item-custom:first-of-type .carousel-caption h5,
.industries .carousel-item-custom:last-of-type .carousel-caption h5 {
    font-size: clamp(12px, 2vw, 12px)
}

.industries .carousel-item-custom:first-of-type .carousel-caption p,
.industries .carousel-item-custom:last-of-type .carousel-caption p {
    font-size: clamp(6px, 2vw, 6px)
}

.industries .carousel-item-custom:nth-of-type(2),
.industries .carousel-item-custom:nth-of-type(6) {
    animation: .5s ease-in-out slideInFromRight;
    width: 100%;
    max-width: 200px;
    min-width: 200px;
    max-height: 200px;
    min-height: 200px;
    height: auto;
    z-index: 88;
    margin-left: -1px;
    margin-right: -1px;
    position: relative
}

.industries .carousel-item-custom:nth-of-type(2) img,
.industries .carousel-item-custom:nth-of-type(6) img {
    max-height: 196px;
    min-height: 196px;
    object-fit: cover;
    border-radius: 15px
}

.industries .carousel-item-custom:nth-of-type(2).carousel-caption,
.industries .carousel-item-custom:nth-of-type(6) .carousel-caption {
    position: absolute;
    left: 3px;
    bottom: 3px
}

.industries .carousel-item-custom:nth-of-type(2) .carousel-caption h5,
.industries .carousel-item-custom:nth-of-type(6) .carousel-caption h5 {
    font-size: clamp(14px, 2vw, 14px)
}

.industries .carousel-item-custom:nth-of-type(2) .carousel-caption p,
.industries .carousel-item-custom:nth-of-type(6) .carousel-caption p {
    font-size: clamp(7px, 2vw, 7px)
}

.industries .carousel-item-custom:nth-of-type(3),
.industries .carousel-item-custom:nth-of-type(5) {
    width: 100%;
    min-width: 250px;
    max-width: 250px;
    height: auto;
    min-height: 240px;
    max-height: 240px;
    z-index: 89;
    margin-left: -100px;
    margin-right: -100px;
    position: relative
}

.industries .carousel-item-custom:nth-of-type(3) img,
.industries .carousel-item-custom:nth-of-type(5) img {
    min-height: 237px;
    max-height: 237px;
    object-fit: cover;
    border-radius: 15px
}

.industries .carousel-item-custom::before,
.industries .carousel-item-custom:last-of-type::before,
.industries .carousel-item-custom:nth-of-type(5)::before,
.industries .carousel-item-custom:nth-of-type(6)::before {
    width: 400px;
    height: 55px;
    bottom: -60px;
    border-radius: 44px;
    opacity: .66;
    background: #7a7a7a;
    filter: blur(16px);
    content: ''
}

.industries .carousel-item-custom::before {
    flex-shrink: 0;
    position: absolute;
    left: 2%
}

.industries .carousel-item-custom:nth-of-type(5)::before {
    flex-shrink: 0;
    position: absolute;
    left: -36%
}

.industries .carousel-item-custom:last-of-type::before,
.industries .carousel-item-custom:nth-of-type(6)::before {
    flex-shrink: 0;
    position: absolute;
    left: -99%
}

.carousel-track {
    display: flex;
    justify-content: space-around;
    align-items: center;
    transition: transform .9s ease-in-out
}

.industries .carousel .carousel-indicators {
    position: absolute;
    top: 100%;
    z-index: 92;
    gap: 10px
}

.industries .carousel .carousel-indicators .indicator-btn {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-image: linear-gradient(168deg, #023189 8.48%, #deeaff 220.18%);
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, .25) inset;
    border: none;
    transition: opacity .3s ease-in-out;
    opacity: .9
}

.industries .carousel .carousel-indicators .indicator-btn.active {
    background: #ffb81d;
    filter: drop-shadow(2px 4px 4px rgba(0, 0, 0, .25));
    opacity: 1
}

#ai-blockchain,
#e-commerce,
#real-estate,
#shipping-logistics,
#showroom,
#social-network,
#travel-hospitality {
    scroll-margin-top: 110px
}

.industry-label {
    display: inline-block;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    padding: 15px;
    border-radius: 5px 5px 0 0;
    margin-top: 10px
}

.industry-card .border-line {
    width: 100%;
    height: 3px;
    background: #fff
}

.industry-card.solid,
.industry-label.solid {
    background-color: #023189;
    text-shadow: 0 4px 4px rgba(0, 0, 0, .25)
}

.industry-card.light,
.industry-label.light {
    background-color: #fff;
    color: #023189;
    text-shadow: 0 4px 4px rgba(0, 0, 0, .25)
}

.industry-card.light,
.industry-card.solid{
    text-shadow: none !important;
}

.industry-label.light {
    border: 1px solid #c3c3c3
}

.industry-card.gradient,
.industry-label.gradient {
    background-image: linear-gradient(180deg, #023189 0, #010d23 100%)
}

.industry-card {
    border-radius: 18px;
    padding: 20px;
    text-align: center;
    justify-content: center;
    width: 100%;
    height: auto;
    flex-shrink: 0;
    color: #fff;
    border: 4px solid #023189
}

.industries .image-container {
    border-radius: 18px;
    background: #fff;
    align-items: center;
    justify-content: center;
    display: flex;
    padding: 0
}

.industries .col-md-10:first-of-type .image-container,
.industries .col-md-10:nth-of-type(2) .image-container,
.industries .col-md-10:nth-of-type(3) .image-container,
.industries .col-md-10:nth-of-type(4) .image-container,
.industries .col-md-10:nth-of-type(5) .image-container,
.industries .col-md-10:nth-of-type(6) .image-container {
    background-size: 100% 100%;
    background-position: center
}

.industries .col-md-10:first-of-type .image-container,
.industries .col-md-10:nth-of-type(3) .image-container,
.industries .col-md-10:nth-of-type(5) .image-container {
    border: 6px solid #023189
}

.industries .col-md-10:last-of-type .image-container,
.industries.col-md-10:nth-of-type(2) .image-container,
.industries .col-md-10:nth-of-type(4) .image-container {
    border: 6px solid #fff
}

.industries #showroom .image-container {
    height: 350px
}

.industries .col-md-10:first-of-type .image-container {
    background-image: url(../img/industries/shippinglogistics.webp)
}

.industries .col-md-10:nth-of-type(2) .image-container {
    background-image: url(../img/industries/realestate.webp)
}

.industries .col-md-10:nth-of-type(3) .image-container {
    background-image: url(../img/industries/ecommerce.webp)
}

.industries .col-md-10:nth-of-type(4) .image-container {
    background-image: url(../img/industries/travelling.webp)
}

.industries .col-md-10:nth-of-type(5) .image-container {
    background-image: url(../img/industries/aib.webp)
}

.industries .col-md-10:nth-of-type(6) .image-container {
    background-image: url(../img/industries/socialnetwork.webp)
}

.industry-card .paragraph-container {
    line-height: 1.9;
    text-align: justify;
    font-weight: 600
}

.play-btn-wrapper {
    position: relative;
    display: inline-block;
    transition: .2s ease-in-out
}

.play-btn-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
    height: 50%;
    background: #fff;
    border-radius: 50%;
    z-index: 1
}

.play-btn {
    background: url('../img/industries/play.webp') center/contain no-repeat;
    width: 80px;
    height: 80px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    z-index: 2
}

.custom-close {
    position: absolute;
    top: 0;
    right: 20px;
    background: 0 0;
    color: #fff;
    font-size: clamp(20px, 2vw, 30px);
    cursor: pointer;
    padding: 0;
    border: none;
    z-index: 1000;
}

.booking-custom-close {
    top: 10px;
    right: 10px;
    background: #fff;
    color: #023189;
    font-size: clamp(23px, 2vw, 35px) !important;
    font-weight: normal;
    cursor: pointer;
    border: none !important;
    outline: none !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0% !important;
    width: none;
}


.custom-close:hover {
    color: #165e99;
    transition: color .3s ease-in-out
}

.booking-custom-close:hover {
    color: #165e99;
    transition: color .3s ease-in-out
}

#aiandblockchain .modal-dialog,
#ecommerce .modal-dialog,
#plants .modal-dialog,
#realestate .modal-dialog,
#shippingandlogistics .modal-dialog,
#showroom .modal-dialog,
#showrooms .modal-dialog,
#socialnetwork .modal-dialog,
#travelhospitality .modal-dialog {
    max-width: 55%;
}

#aiandblockchain .modal-content,
#ecommerce .modal-content,
#plants .modal-content,
#realestate .modal-content,
#shippingandlogistics .modal-content,
#showroom .modal-content,
#showrooms .modal-content,
#socialnetwork .modal-content,
#travelhospitality .modal-content {
    border-radius: 18px;
    border: 4px solid #023189;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, .25);
    overflow: hidden;
}

#aiandblockchain video,
#ecommerce video,
#plants video,
#realestate video,
#shippingandlogistics video,
#showrooms video,
#socialnetwork video,
#travelhospitality video {
    object-fit: cover;
    width: 100%;
    display: block
}

.why-choose-us-indus .col-lg-12 {
    background: url(../img/industries/why-choose-bg.webp) center/cover no-repeat;
    color: #fff;
    border-radius: 10px;
    padding: 30px 30px 10px;
    position: relative
}

.why-choose-us-indus h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px
}

.why-choose-us-indus ul {
    list-style: none;
    padding: 0;
    margin: 0
}

.why-choose-us-indus ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 700;
    list-style-type: none
}

.why-choose-us-indus ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 20px;
    color: #fff
}

.why-choose-us-indus .build-btn {
    background: url(../img/industries/btn.webp) center right/contain no-repeat;
    border: none;
    width: 220px;
    height: 60px;
    display: inline-block;
    justify-content: center;
    transform: scale(1.1)
}

.why-choose-us-indus .build-btn:hover {
    transform: scale(1.2);
    transition: transform .3s ease-in-out
}

.about-section {
    color: #fff;
    padding: 50px 0;
    margin-top: 95px
}

.about-section .container {
    padding: 10px 30px;
    background-image: url(../img/about-us/about-bg-1.webp);
    background-size: cover;
    background-position: center
}

.about-section .open-button:hover img {
    animation: .9s ease-in-out infinite ring
}

.about-section .container .row {
    justify-content: space-between
}

.about-section .container .col-lg-12 {
    padding: 10px
}

.about-section .container hr {
    height: 5px;
    opacity: 30
}

.about-section h1 {
    display: inline-block;
    position: relative;
    color: #023189;
    font-size: clamp(30px, 4vw, 50px);
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    padding-left: 10px;
    padding-bottom: 5px
}

.about-section .container h2,
.our-story h3,
.what-we-do h3,
.why-choose-us h3 {
    display: inline-block;
    font-size: 40px;
    line-height: normal;
    position: relative;
    font-style: normal
}

.about-section .container h2 {
    border-left: none;
    padding-right: 10px;
    color: #fff;
    font-weight: 900;
    padding-left: 10px;
    padding-bottom: 5px
}

.about-section .border-lines-container {
    margin-top: -58px;
    margin-right: -3px
}

.about-section .border-line-container-x {
    width: 19%;
    position: relative;
    background-color: #fff;
    padding: 2.5px 0;
    display: inline-block;
    clip-path: polygon(0 0, 94% 0, 100% 100%, 90% 100%, 0 100%);
    transform: rotate(-180deg) scaleY(1);
    margin-right: -6px
}

.about-section .border-line-container-y,
.our-story .col-lg-12 .border-line-container-y,
.our-story .col-lg-6 .border-line-container-y {
    position: relative;
    background-color: #fff;
    padding: 28px 2.5px;
    display: inline-block;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
    transform: rotate(-180deg)
}

.about-section p {
    text-align: justify;
    margin-top: 10px
}

.image-box img {
    width: 100%;
    height: auto
}

.what-we-do,
.why-choose-us {
    padding: 50px 0;
    text-align: center
}

.what-we-do h3,
.why-choose-us h3 {
    color: #023189;
    font-weight: 600;
    text-shadow: 0 4px 4px rgba(0, 0, 0, .25)
}

.what-we-do .border-lines-container {
    margin-top: -60px;
    margin-right: 0
}

.what-we-do .border-line-container-x {
    width: 22.5%;
    position: relative;
    background-color: #023189;
    padding: 3px 0;
    display: inline-block;
    clip-path: polygon(0 0, 94% 0, 100% 100%, 90% 100%, 0 100%);
    transform: rotate(-180deg) scaleY(-1);
    margin-right: -6px
}

.what-we-do .border-line-container-y {
    position: relative;
    background-color: #023189;
    padding: 28px 3px;
    display: inline-block;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
    transform: rotate(-180deg)
}

.what-we-do .info-box,
.why-choose-us .info-box {
    background-color: #023189;
    color: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: start;
    margin-top: 20px
}

.what-we-do .info-box .paragraph {
    color: #fff;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 36px
}

.what-we-do .info-box ul,
.why-choose-us .info-box ul {
    list-style-type: none;
    padding-left: 0
}

.what-we-do .info-box ul li,
.why-choose-us .info-box ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: center
}

.quotation-form .dropdown .dropdown-menu label:hover,
.values-section strong,
.what-we-do .info-box ul li p i,
.what-we-do .info-box ul li strong,
.why-choose-us .info-box ul li p i,
.why-choose-us .info-box ul li strong {
    color: #ffb81d
}

.why-choose-us .border-lines-container {
    margin-top: -58px;
    margin-right: 0
}

.why-choose-us .border-line-container-x {
    width: 28.6%;
    position: relative;
    background-color: #023189;
    padding: 3px 0;
    display: inline-block;
    clip-path: polygon(0 0, 94% 0, 100% 100%, 90% 100%, 0 100%);
    transform: rotate(-180deg) scaleY(-1);
    margin-right: -6px
}

.why-choose-us .border-line-container-y {
    position: relative;
    background-color: #023189;
    padding: 29px 3px;
    display: inline-block;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
    transform: rotate(-180deg)
}

.our-story {
    padding: 50px 0;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    background-image: url('../img/about-us/our-story-bg.webp');
    background-repeat: no-repeat;
    background-size: cover
}

.get-in-touch .container,
.our-story .container {
    max-width: 100%
}

.our-story h3 {
    color: #fff;
    padding-bottom: 5px;
    text-shadow: 0 4px 4px rgba(0, 0, 0, .25);
    font-weight: 600
}

.our-story p,
.values-section ul li {
    color: #fff;
    font-size: 18px;
    font-weight: 600
}

.our-story .col-lg-12,
.our-story .col-lg-6 {
    overflow-x: hidden
}

.our-story .col-lg-12 .border-lines-container,
.our-story .col-lg-6 .border-lines-container {
    margin-top: -65px;
    margin-right: 0;
    margin-bottom: 15px
}

.our-story .col-lg-12 .border-line-container-x,
.our-story .col-lg-6:first-of-type .border-line-container-x,
.our-story .second-border .border-line-container-x {
    margin-right: -6px;
    padding: 2.5px 0;
    clip-path: polygon(0 0, 94% 0, 100% 100%, 90% 100%, 0 100%);
    transform: rotate(-180deg) scaleY(-1);
    position: relative;
    background-color: #fff;
    display: inline-block
}

.our-story .col-lg-6:first-of-type .border-line-container-x {
    width: 235px
}

.our-story .second-border .border-line-container-x {
    width: 206px
}

.our-story .col-lg-12 .border-line-container-x {
    width: 309px
}

.our-story .col-lg-12 h3 {
    position: relative;
    display: inline-block
}

.our-story p {
    font-family: 'Inter', sans-serif;
    font-display: swap;
    font-style: normal;
    line-height: 142.177%
}

.application-form h2,
.get-in-touch h2,
.get-in-touch p,
.quotation-form h2,
.values-section h2 {
    line-height: normal;
    font-style: normal
}

.our-story .info-box {
    border-radius: 10px;
    border: 0 solid #023189;
    background: rgba(255, 255, 255, .12);
    backdrop-filter: blur(20px);
    color: #fff;
    padding: 20px;
    width: 100%;
    height: 90%;
    margin-bottom: 30px;
    overflow-y: hidden
}

.our-story .info-box img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px
}

.our-story .info-box .icon-box i {
    font-size: clamp(20px, 2vw, 30px);
    color: #ffb81d
}

.values-section {
    padding: 20px 0
}

.values-section h2 {
    display: inline-block;
    color: #fff;
    font-size: 40px;
    font-weight: 600;
    position: relative
}

.values-section .col-12 .border-lines-container {
    margin-top: -55px;
    margin-right: 0;
    margin-bottom: 15px
}

.values-section .col-12 .border-line-container-x {
    width: 216px;
    position: relative;
    background-color: #fff;
    padding: 2.5px 0;
    display: inline-block;
    clip-path: polygon(0 0, 94% 0, 100% 100%, 90% 100%, 0 100%);
    transform: rotate(-180deg) scaleY(-1);
    margin-right: -6px
}

.values-section .col-12 .border-line-container-y {
    position: relative;
    background-color: #fff;
    padding: 25px 2.5px;
    display: inline-block;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
    transform: rotate(-180deg)
}

.careers .top-heading .border-line-container-x,
.get-quotations .top-heading .border-line-container-x {
    padding: 2.5px 0;
    transform: rotate(-180deg) scaleY(-1);
    margin-right: -6px;
    display: inline-block;
    position: relative
}

.values-section ul {
    list-style: none;
    padding-left: 7px
}

.values-section ul li {
    margin-bottom: 10px;
    font-style: normal;
    line-height: 142.643%
}

.get-in-touch {
    text-align: center;
    padding: 40px 0
}

.get-in-touch h2 {
    margin-bottom: 20px;
    color: #023189;
    font-size: 40px;
    font-weight: 700
}

.get-in-touch p {
    margin-bottom: 30px;
    color: #000;
    text-align: center;
    font-size: 18px;
    font-weight: 700
}

.get-in-touch .col-12 {
    width: 100%;
    background: linear-gradient(90deg, #023189 0, #010d23 100%);
    padding: 10px 0;
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    font-weight: 700
}

.get-in-touch .cta-btn {
    background: url(../img/about-us/btn.webp) center right/contain no-repeat;
    border: none;
    width: 250px;
    height: 68px;
    justify-content: center;
    display: inline-block;
    transition: transform .3s ease-in-out
}

.top-heading {
    margin-top: 180px
}

.get-quotations .top-heading .blue-bar {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    background: linear-gradient(90deg, #023189 .02%, #010d23 179.54%);
    padding: 200px 200px 200px 190px;
    max-width: 65%;
    min-width: 65%
}

.careers .top-heading .blue-bar {
    max-width: max-content;
    min-width: max-content;
    background: #fff;
    margin-left: auto;
    border: 2px solid #464646;
    box-shadow: -2px 4px rgba(0, 0, 0, 0.25);
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    border-bottom: none;
    padding-bottom: 12px !important;
}

.careers .top-heading h1 {
    color: #023189;
    font-family: 'Inter', sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.top-heading h1 {
    display: inline-block;
    padding-right: 8px;
    padding-bottom: 5px;
    position: relative;
    font-weight: 900
}

.top-heading .border-lines-container {
    margin-top: -61px;
    margin-right: 0;
    margin-bottom: 15px
}

.get-quotations .top-heading .border-line-container-x {
    width: 400px;
    background-color: #fff;
    clip-path: polygon(0% 0%, 96% 0%, 100% 100%, 90% 100%, 0% 100%)
}

.careers .top-heading .border-line-container-x {
    width: 170px;
    background-color: #fff;
    clip-path: polygon(0% 0%, 95% 0%, 100% 100%, 90% 100%, 0% 100%)
}

.error,
.quotation-form .dropdown-menu.show {
    display: block
}

.top-heading .border-line-container-y {
    position: relative;
    background-color: #fff;
    padding: 25px 2.5px;
    display: inline-block;
    clip-path: polygon(0% 0%, 100% 0%, 100% 85%, 0% 100%);
    transform: rotate(-180deg)
}

.get-quotations .form-container {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-top: 20px
}

.careers .form-container {
    display: flex;
    gap: 0;
    justify-content: flex-start;
    align-items: start;
    margin-top: 20px
}

.application-form,
.quotation-form {
    min-width: 60%;
    max-width: 60%;
    margin: 50px 40px 50px 60px;
    background-image: linear-gradient(173deg, #023189 5.7%, #070707 148.57%);
    padding: 25px 50px 50px;
    color: #fff;
    border-radius: 28px;
    overflow: visible;
    font-family: Inter, sans-serif;
    font-display: swap;
    justify-content: center
}

.application-form {
    min-width: 100%;
    max-width: 100%;
    margin: 0 40px 0 60px;
    padding-right: 5px;
}

.application-form h2,
.quotation-form h2 {
    color: #fff;
    text-align: left;
    font-family: Inter, sans-serif;
    font-display: swap;
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 10px
}

.application-form .line,
.quotation-form .line {
    width: 80%;
    height: 2px;
    background: #fff;
    margin: 20px 0
}

.application-form .form-group input,
.application-form .form-group textarea {
    width: 70%
}

.application-form .form-group,
.quotation-form .form-group {
    display: flex;
    align-items: center;
    margin-bottom: 30px
}

.application-form .form-group input,
.application-form .form-group textarea,
.quotation-form .form-group input,
.quotation-form .form-group select,
.quotation-form .form-group textarea {
    width: 80%;
    padding: 6px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-weight: 600
}

.quotation-form .derived-group {
    display: flex;
    gap: 10px;
    width: 80%
}

.application-form .form-group textarea,
.quotation-form .form-group textarea {
    height: 80px
}

.quotation-form .dropdown,
.quotation-form .dropdown .dropdown-item:hover {
    background: 0 0
}

.error:first-of-type {
    margin-top: 0
}

.error {
    color: red;
    margin-top: 4px
}

.quotation-form .dropdown-menu {
    display: none;
}

.quotation-form .dropdown .dropdown-menu {
    position: absolute;
    padding: 10px 10px 10px 0px;
    background-color: #2b2a2a;
    border: 1px solid #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, .1);
    border-radius: 5px;
    width: max-content !important;
    justify-content: center;
    z-index: 1000;
}

.quotation-form .dropdown .btn-secondary {
    background: #fff;
    color: #575757;
    text-align: center;
    font-family: Inter, sans-serif;
    font-display: swap;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    display: flex
}

.custom-btn .dropdown-icon {
    background-color: #ffb81d !important;
    margin-left: 10px;
    font-weight: 700;
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 5px;
    border-radius: 50px
}

.custom-btn .dropdown-icon:hover {
    background-color: #ffc107 !important
}

.quotation-form .dropdown .dropdown-toggle::after {
    background-image: url('../img/get-quote/Down\ Button.png');
    background-repeat: no-repeat
}

.quotation-form .dropdown .dropdown-menu label {
    font-size: 13px;
    color: #fff
}

.quotation-form .dropdown-item input[type=checkbox] {
    margin-right: 10px;
    width: 10%
}

.custom-checkbox {
    appearance: none;
    width: 20px;
    height: 20px;
    padding: 10px;
    border: 2px solid #fff;
    position: relative;
    cursor: pointer;
    vertical-align: middle;
    background-color: transparent;
    display: inline-block
}

.custom-checkbox:checked {
    border: 2px solid #ffb81d
}

.custom-checkbox:checked::before {
    content: '';
    width: 12px;
    height: 12px;
    padding: 8px;
    background-color: #ffb81d;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)
}

.upload-group {
    position: relative;
    display: flex;
    gap: 10px;
    z-index: -998;
}

.upload-group label {
    font-size: 17px;
    display: flex;
    white-space: nowrap;
    position: relative;
    z-index: 10;
}

.application-form .custom-upload-container,
.quotation-form .custom-upload-container {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px
}

.application-form .custom-upload-input,
.quotation-form .custom-upload-input {
    cursor: pointer;
    display: none
}

.application-form .custom-upload-container label,
.quotation-form .custom-upload-container label {
    font-size: 12px;
    color: #ffb81d;
    font-weight: 700
}

.application-form .custom-upload-button,
.quotation-form .custom-upload-button {
    border-radius: 2px;
    border: 1px solid #6b6b6b;
    background: #fff;
    backdrop-filter: blur(2px);
    padding: 4px;
    cursor: pointer;
    text-align: center;
    transition: background-color .3s
}

.custom-upload-button:hover {
    background: #ebe9e9
}

#file-name {
    font-size: 14px;
    color: #f3f3f3
}

.form-group:has(.submit-btn) {
    position: relative;
    z-index: -998;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.form-group:has(.submit-btn):hover,
.form-group:has(.submit-btn):focus {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
}

.submit-btn {
    background: url('../img/get-quote/btn.webp') center right/contain no-repeat;
    border: none;
    width: 100px;
    height: 68px;
    justify-content: center;
    transform: scale(1.2);
    transition: transform .3s ease-in-out;
    cursor: pointer;
    pointer-events: all
}

.submit-btn:hover {
    transform: scale(1.3);
}

.submit-btn:focus {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
}

.get-quotations .form-image {
    max-width: 380px;
    text-align: center
}

.careers .form-image {
    max-width: 600px;
    margin-left: 0;
    margin-top: 0;
}

.get-quotations .form-image .img {
    width: 100%;
    height: auto;
    opacity: .6
}

.careers .form-image img {
    max-width: 350px;
    height: auto;
    position: relative;
    opacity: .6
}

.careers .why-join-us,
.get-quotations .why-join-us {
    text-align: justify
}

.careers .why-join-us {
    border-radius: 24px;
    border: 1px solid #023189;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(2px);
}

.careers .why-join-us h2 {
    display: inline-block;
    padding-bottom: 1px;
    color: #023189;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
}

.careers .why-join-us p {
    color: #000;
    text-align: justify;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 152.035%;
}

.careers .form-image h2,
.get-quotations .why-join-us h2 {
    color: #023189;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 143.702%
}

.careers .why-join-us .border-lines-container,
.get-quotations .why-join-us .border-lines-container {
    margin-top: -55px;
    margin-right: 0;
    margin-bottom: 5px
}

.careers .why-join-us .border-line-container-x,
.get-quotations .why-join-us .border-line-container-x {
    width: 185px;
    position: relative;
    background-color: #023189;
    padding: 2px 0;
    display: inline-block;
    clip-path: polygon(0% 0%, 95% 0%, 100% 100%, 90% 100%, 0% 100%);
    transform: rotate(-180deg) scaleY(-1);
    margin-right: -6px
}

.get-quotations .why-join-us .border-line-container-x {
    width: 265px
}

.why-join-us .border-line-container-y {
    position: relative;
    background-color: #023189;
    padding: 25px 2px;
    display: inline-block;
    clip-path: polygon(0% 0%, 100% 0%, 100% 85%, 0% 100%);
    transform: rotate(-180deg)
}

.careers .form-image p,
.get-quotations .why-join-us p {
    color: #000;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 152.035%
}

.why-join-us-row img {
    width: 100%;
    max-width: 300px;
    min-width: 200px;
    margin: 0 auto;
    height: auto;
    display: flex;
    padding-right: 1em;
}

.key-beneits {
    border-radius: 14px;
    background: linear-gradient(180deg, #023189 0%, #010D23 100%);
    margin: 0 auto;
    color: #fff;
    font-family: 'Inter', sans-serif;
    padding: 0%;
}

.key-beneits h3 {
    display: inline-block;
    font-size: clamp(15px, 2vw, 20px);
    font-weight: 700;
    padding-left: 0.4em !important;
}

.key-beneits .key-heading {
    position: relative;
    width: max-content;
}

.key-beneits .border-line {
    position: absolute;
    bottom: 0px;
    left: 10px;
    width: 100%;
    padding: 20px 0;
    background: #fff;
    clip-path: polygon(calc(100% - 4px) 10px,
            100% 8%,
            100% 100%,
            0% 100%,
            2% 91%,
            calc(100% - 4px) 91%);
}

.key-beneits p {
    font-size: clamp(12px, 2vw, 16px);
    font-weight: 500;
    border-bottom: 2px solid #fff;
    text-align: end;
    white-space: nowrap;
}

.key-beneits p:first-of-type {
    width: max-content !important;
    padding-left: 2em !important;
}

.key-beneits p:nth-of-type(2) {
    width: max-content !important;
    padding-left: 6.6em !important;
}

.key-beneits p:nth-of-type(3) {
    width: max-content !important;
    padding-left: 7.6em !important;
}

.key-beneits p:nth-of-type(4) {
    width: max-content !important;
    padding-left: 9.6em !important;
}

.key-beneits p:nth-of-type(5) {
    width: max-content !important;
    padding-left: 12em !important;
}

.key-beneits p:nth-of-type(6) {
    width: max-content !important;
    padding-left: 14.9em !important;
}

.key-beneits p:nth-of-type(7) {
    width: max-content !important;
    padding-left: 17.4em !important;
}

.key-beneits p:nth-of-type(8) {
    width: max-content !important;
    padding-left: 20.3em !important;
}

.services-inner {
    margin-top: 100px;
    background-image: url('../img/services/css.webp');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    color: #fff;
    font-family: Inter, sans-serif;
    font-display: swap;
    font-style: normal
}

.services-inner .container {
    min-width: 100%
}

.services-inner h2 {
    font-size: 46px;
    font-weight: 900
}

.services-inner li,
.services-inner p {
    font-size: 18px;
    font-weight: 600;
    line-height: 44px
}

.appointment-form h5,
.working-process h6 {
    font-family: Inter, sans-serif;
    font-display: swap;
    font-style: normal;
    font-weight: 700
}

.appointment-form {
    border-radius: 40px;
    background: linear-gradient(154deg, #fff 4.64%, #999 106.75%);
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, .25) inset;
    height: 100%;
    margin-top: 55px
}

.appointment-form h5 {
    color: #000;
    font-size: 20px;
    line-height: normal
}

.appointment-form h5 span {
    color: #023189
}

#appointment-form #errorContainer p {
    font-size: clamp(10px, 4vw, 16px);
    margin-top: -10px;
    line-height: normal
}

.appointment-form input,
.appointment-form textarea {
    border-radius: 2px;
    border: 1px solid #000;
    background: #fdfdfd;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, .25) inset
}

.appointment-form input::placeholder {
    color: #5f5f5f;
    font-family: Inter, sans-serif;
    font-display: swap;
    font-style: normal;
    font-weight: 500;
    line-height: normal
}

.appointment-form .btn {
    background-image: url('../img/services/submit.webp');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left;
    background-color: transparent;
    border: none;
    width: 100px;
    height: 50px;
    transition: transform .3s ease-in-out;
    padding: 0
}

.language-box {
    border-radius: 14px;
    border: 2px solid #fff;
    background: rgba(255, 255, 255, .82);
    backdrop-filter: blur(20px);
    padding: 20px 0;
    text-align: center;
    box-shadow: 0 0 5px rgba(0, 0, 0, .1);
    margin-top: -100px
}

.language-icon {
    width: 60px;
    margin: 0 auto 10px
}

.ai .col-4:nth-of-type(2) .language-icon,
.cloud .col-4:nth-of-type(5) .language-icon,
.css .col-4:nth-of-type(2) .language-icon,
.wb-lang .col-4:nth-of-type(2) .language-icon {
    width: 90px
}

.css .col-4:nth-of-type(3) .language-icon,
.wb-lang .col-4:nth-of-type(3) .language-icon {
    width: 73px
}

.css .col-4:nth-of-type(5) .language-icon {
    width: 110px
}

.wb-lang .col-4:nth-of-type(4) .language-icon {
    width: 75px
}

.ai .col-4:first-of-type .language-icon,
.digital-marketing .col-4:first-of-type .language-icon,
.ecommerce .col-4:nth-of-type(3) .language-icon,
.wb-lang .col-4:nth-of-type(5) .language-icon {
    width: 70px
}

.ai .col-4:first-of-type,
.cloud .col-4:first-of-type,
.ecommerce .col-4:first-of-type {
    margin-left: 90px
}

.ai .col-4,
.cloud .col-4,
.ecommerce .col-4 {
    margin-right: 90px
}

.cloud .col-4:first-of-type .language-icon,
.uiux .col-4:first-of-type .language-icon {
    width: 120px
}

.cloud .col-4:nth-of-type(2) .language-icon {
    width: 150px
}

.uiux .col-4:nth-of-type(4) .language-icon {
    width: 160px
}

.ai .col-4:nth-of-type(3) .language-icon,
.ecommerce .col-4:first-of-type .language-icon {
    width: 80px
}

.ecommerce .col-4:nth-of-type(2) .language-icon {
    width: 100px
}

.digital-marketing .col-4:nth-of-type(4) .language-icon {
    width: 55px
}

.working-process h6 {
    color: #023189;
    font-size: 40px;
    line-height: normal
}

.working-process .img-fluid {
    max-width: 550px;
    min-width: 0;
    margin-left: auto;
    margin-right: auto;
    display: flex
}

.working-process .iphone {
    margin-bottom: -75px
}