:root {
    --header-bg: rgba(255, 255, 255, 0.8);
    --primary-color: #3395FF;
    --secondary-color: #FFB600;
    --text: #010101;
    --grey: #E2E4E9;
    --background: #F5FAFF; 
    --blue: #00B7FF;
    --darkblue: #0661E0;
    --darkblue2: #0F2757;
    --yellow: #FFC61A;
    --darkyellow: #FF9F1A;
    --green : #33CCCC;
}

.white-wrap {
    white-space: nowrap;
}

.header {
    backdrop-filter: blur(20px);
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 9999;
}

/* header{
    display: none !important;
} */

header.header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    background-color: #fff;
    z-index: 999;
    width: 100%;
}

/* Header Sub Menu Hover  */

.submenu-item, .submenu-item .submenu-title h6, .submenu-item .submenu-text {
    position: relative;
    transition: all 0.3s;
}

.submenu-item:hover .submenu-title h6 {
    color: var(--darkblue) !important;
}

.submenu-item:hover .submenu-text {
    text-decoration: underline;
}

.blur-15 {
    backdrop-filter: blur(15px);
}

.blue-gradient h2 {
    background-image: linear-gradient(90deg, var(--darkblue), var(--blue) 60%, var(--green));
    color: transparent !important;
    background-clip: text;
}

.yellowgreen-gradient h2 {
    background-image: linear-gradient(90deg, var(--darkyellow), var(--green));
    color: transparent !important;
    background-clip: text;
}

.banner-title h1 {
    font-size: 50px;
    font-weight: 700;
    /* margin-bottom: 20px; */
    line-height: 65px;
    text-align: left;
    font-family: Oswald,sans-serif;
    background: linear-gradient(90deg,#1D8DCC 20%,#F29C21 30%,#2A6FA0 70%,#F2C23D 80%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;

    background-size: 500% auto;
    background-position: 0% 50%;   /* Important */
    animation: textbtitle 5s ease-in-out infinite alternate;
}

@keyframes textbtitle {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

/* Industries Carousel */

.industries-card .inner-card .image,
.industries-card .inner-card,
.industries-card .inner-card .heading {
    position: relative;
    transition: all 0.3s;
}

.industries-card .inner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(transparent 0%, rgba(15, 39, 87, 0.8) 100%) repeat-x rgba(51, 204, 204, 0);
    transform: rotate(180deg);
    z-index: 5;
}

.industries-card .inner-card .heading h2 {
    font-size: 28px;
    line-height: 36px;
    font-weight: 700;
    /* white-space: nowrap; */
}

.industries-card .inner-card .heading::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 1.5px;
    width: 16%;
    /* border-radius: 6px; */
    background-color: #fff;
    transition: all 0.3s;
}

.industries-card .inner-card .content {
    pointer-events: none;
    overflow: hidden;
    z-index: 6;
}

.industries-card .inner-card .content .elementor-widget-container {
    opacity: 0;
    line-height: 5px;
    transition: all 0.5s;
}

.industries-card .inner-card:hover::before {
    cursor: pointer;
    background: linear-gradient( rgba(15, 39, 87, 0.8), rgba(0, 0, 0, 0.5) 40%);
}

.industries-card .inner-card:hover .image {
    transform: scale(1.05);
}

.industries-card .inner-card:hover .heading::before {
    width: 30%;
}

.industries-card .inner-card:hover .content .elementor-widget-container {
    opacity: 1;
    line-height: 25px;
}

/* Careers Page */

.carrerspage_form .careers-wrap {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(3, 1fr);
}

.carrerspage_form .careers-wrap .career-item {
    padding: 16px;
    border: 0px solid #DDD;
    border-radius: 5px;
    background-color: #fff;
    box-shadow: 0 0 12px 0px rgba(0, 0, 0, 0.1);
}

.carrerspage_form .careers-wrap p,
.carrerspage_form .careers-wrap h3 {
    margin-bottom: 0px;
    font-family: 'Open Sans';
}

.carrerspage_form .careers-wrap .career-title>h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    font-family: 'Montserrat';
    margin-bottom: 12px;
}

.carrerspage_form .career-department,
.carrerspage_form .career-location,
.carrerspage_form .career-emptype,
.carrerspage_form .career-workexp,
.carrerspage_form .career-desp {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 6px;
}

.carrerspage_form .careers-wrap .career-item .career-desp>p:nth-of-type(2) {
    margin-block: 10px;
}

.carrerspage_form .careers-wrap p.label {
    margin-right: 10px;
    font-size: 14px;
    font-weight: 700;
    color: #000000;
    font-family: 'Open Sans';
}

.carrerspage_form .careers-wrap .career-item .career-desp>p:nth-of-type(2) {
    margin-block: 9px;
    font-size: 14px;
    font-family: 'Open Sans';
}

.carrerspage_form .careers-wrap .career-item .career-apply {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-block: 10px;
    justify-self: end;
    align-self: end;
}

.carrerspage_form .careers-wrap .career-item .career-apply>a {
    padding: 10px 20px;
    background-color: var(--blue);
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    font-family: 'Helvetica';
    transition: all 0.4s;
}

.carrerspage_form .careers-wrap .career-item .career-apply>a:hover {
    background-color: var(--darkblue);
    cursor: pointer;
}

/* Contact Us */

.form-submit {
    display: flex;
    flex-direction: column;
    align-items: start;
    row-gap: 20px;
}

.form-submit .basic-details {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    width: 100%;
}

.form-submit .basic-details div {
    width: 48%;
}

.form-submit p {
    margin-bottom: 0px;
    position: relative;
}

.form-submit .wpcf7-not-valid-tip {
    color: #eb161c;
    font-size: 9px;
    text-align: end;
    font-weight: 500;
    font-family: "Helvetica", Sans-serif;
    display: block;
    position: absolute;
    right: 0;
}

.wpcf7-response-output {
    border-color: var(--darkblue) !important;
    color: var(--darkblue);
    font-family: "Helvetica", Sans-serif;
    font-size: 12px;
    width: max-content;
    margin: 0 !important;
    margin-top: 10px !important;
    border-radius: 18px;
}

.form-submit .input-field {
    position: relative;
    width: 100%;
}

.form-submit .input-field p label {
    color: var(--darkblue);
    font-family: 'Helvetica';
    font-size: 15px !important;
    font-weight: 500 !important;
    margin-bottom: 5px;
}

.form-submit .input-field p input,
.form-submit .input-field p textarea {
    background: transparent;
    border: 0px;
    border: 1px solid #cccccc70;
    border-radius: 5px;
    height: 40px;
    width: 100%;
    font-family: "Helvetica", Sans-serif;
    color: #000 !important;
    position: relative;
    z-index: 2;
    transition: all 0.3s;
}

.form-submit .input-field p textarea {
    height: 100px !important;
}

.form-submit .input-field p input[type='file'] {
    border: none !important;
}

.form-submit .input-field p input:focus,
.form-submit .input-field p textarea:focus {
    box-shadow: none;
    border-color: var(--darkblue) !important
}

.form-submit .submit {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

.form-submit .submit span.wpcf7-form-control-wrap.recaptcha {
    transform: scale(0.85);
}

.form-submit .submit .wpcf7-spinner {
    color: #d9d9d9;
}

.form-submit .submit p {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    width: 100%;
}

.form-submit .submit .submit-btn {
    background-color: var(--blue);
    border-color: var(--blue);
    color: #fff;
    font-family: "Helvetica", Sans-serif;
    font-size: 16px;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 5px;
    transition: all 0.4s;
}

.form-submit .submit .submit-btn:hover {
    background-color: var(--darkblue);
    border-color: var(--darkblue);
    color: #fff;
    cursor: pointer;
}

.industries-carousel.owl-carousel {
    position: relative;
}

.industries-carousel .owl-nav {
    position: absolute;
    top: auto;
    bottom: -10px;
    right: 20px;
    left: auto;
}


#industriesHome .industries-carousel.owl-carousel .owl-nav > button {
    background-color: #fff;
    padding: 10px 20px !important;
    margin-right: 15px;
    border-radius: 50%;
    transition: all 0.3s;
    border: 3px dotted #0040b0;
}

/* #industriesHome .industries-carousel.owl-carousel .owl-nav > button.owl-prev::before {
    content: '\f053';
}

#industriesHome .industries-carousel.owl-carousel .owl-nav > button.owl-next::before {
    content: '\f054';
} */

#industriesHome .industries-carousel.owl-carousel .owl-nav > button > span{
    /* display: none; */
}

.products-carousel.owl-carousel > .owl-nav,
.products-carousel.owl-carousel > .owl-dots{
    display: none;
}

.industries-card .inner-card .heading h2 {
    font-size: 26px !important;
    line-height: 36px;
    font-weight: 700;
    /* white-space: nowrap; */
}

/* header.header {
    display: none !important;
}

header.header.sticky{
    display: none !important;
} */

.icontext {
  font-weight: 500;
  color: #ffb600;
}

/* Image Animate */

.animate-img.animate-left,
.animate-img.animate-right {
    position: relative;
    right: 100%;
    opacity: 0;
    transition: all 0.5s;
}

.animate-img.animate-right {
    left: 100%;
}

.animate-img.animate-left.animate-in,
.animate-img.animate-right.animate-in {
    right: 0%;
    opacity: 1;
}

.animate-img.animate-right.animate-in {
    left: 0%;
}

.animate-img.animate-in::before {
    background-color: var(--green);
    animation: reveal_img 1.8s ease;
}

.animate-img.animate-in::after {
    background-color: var(--primary-color);
    animation: reveal_img 1s .6s ease;
}

.animate-img.animate-in::before,
.animate-img.animate-in::after {
    content: '';
    position: absolute;
    top: 0;
    /* right: 0; */
    height: 100%;
    z-index: 10;
}

@keyframes reveal_img {
    0% {
        width: 0;
        right: 0;
    }

    65% {
        width: 100%;
        right: 0;
    }

    100% {
        width: 0;
        right: 100%;
    }
}