@font-face {
    font-family: 'GothamBook';
    src: url('../fonts/GothamBook.woff2') format('woff2'),
        url('../fonts/GothamBook.woff') format('woff'),
        url('../fonts/GothamBook.otf') format('otf'),
        url('../fonts/GothamBook.ttf') format('ttf');
}

@font-face {
    font-family: 'GothamBold';
    src: url('../fonts/GothamBold.woff2') format('woff2'),
        url('../fonts/GothamBold.woff') format('woff'),
        url('../fonts/GothamBold.otf') format('otf'),
        url('../fonts/GothamBold.ttf') format('ttf');
}

:root {
    --level-1: #8dccad;
    --level-2: #f5cc7f;
    --level-3: #7b9fe0;
    --level-4: #f27c8d;
    --black: black;
}


/*Base setup starts*/

* {
    transition: 0.2s ease all;
    box-sizing: border-box;
}

img {
    max-width: 100%;
}

body {
    /* font-family: Jost, Arial, sans-serif; */
    font-family: 'Lato', sans-serif;
    transition: 0.2s ease all;
    padding-top: 92px;
}

.btn-primary {
    background: #FF8425;
    border: none;
    border-radius: 6px;
    color: #fff;
    outline: none;
    padding: 10px 30px;
    text-decoration: none;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary:active:focus {
    background-color: #FF8425;
    border: none;
    box-shadow: none;
    color: #fff;
    outline: none;
}

.btn i {
    left: 0;
    margin-left: 5px;
    position: relative;
    top: 1px;
}

.btn:hover i {
    left: 3px;
}

.theme-color {
    color: #FF8425;
}

.row {
    margin-left: -15px;
    margin-right: -15px;
}

.row [class^="col"] {
    padding-left: 15px;
    padding-right: 15px;
}

.container {
    padding-left: 15px;
    padding-right: 15px;
}

/* Base setup ends */

header {
    background: #fff;
    box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 40%);
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 99;
}

.header_logo {
    margin-right: 20px;
    padding: 10px 0;
}

.header_logo img {
    max-width: 25em;
}

.navbar-expand-lg .navbar-collapse {
    flex-grow: revert;
}

.navbar {
    justify-content: space-between;
    padding: 0;
}

.navbar-nav .nav-link {
    color: #000;
    height: 82px;
}

.navbar-nav .nav-item .nav-link:after {
    content: "";
    margin-left: -10px;
    padding-top: 7px;
    border-bottom: 2px solid transparent;
    width: calc(100% + 20px);
    transition: 0.5s ease all;
}

.navbar-nav .nav-item:hover .nav-link:after,
.navbar-nav .nav-item .nav-link.active::after {
    border-bottom-color: #FF8425;
}

.navbar-nav .nav-item:hover .nav-link {
    color: #FF8425;
}

.desktop-menu .nav-item .nav-link {
    text-transform: uppercase;
}

header .navbar li.nav-item {
    margin: 0 10px;
    position: relative;
}

header .navbar li .dropdown-menu {
    background: none;
    background-color: transparent;
    border: none;
    border-radius: 0;
    left: 15px;
    padding: 0;
    top: 74px;
}

/******   Career      *******/
.hero-section {
    display: flex;
    min-height: 400px;
    width: 100%;
    margin: 0p auto;
}

.career-title-container {
    border-bottom: 1px solid #FF8425;
    margin: 40px 0px;
    text-align: center;
}

.link {
    color: #FF8425;
    transition: 1s;
}

.link:hover {
    color: #fb6f04;
}

.career-title-container>h1 {
    position: relative;
    text-align: center;
    background-color: #fff;
    top: 22px;
    display: inline-block;
    padding: 0px 1rem;
    font-size: 1.5rem;
}

.c-image {
    border-radius: 0.625rem;
    max-height: 300px;
}

.my-60 {
    margin-top: 60px;
    margin-bottom: 60px;
}


@media screen and (min-width: 1024px) {
    .career-title-container>h1 {
        top: 28px;
        font-size: 2rem;
    }
}

/******  Career END       *******/


/******  Contact       *******/
.contact-title {
    font-size: 1.5rem;
    font-weight: 600;
}

.contact-form-section {
    display: flex;
    padding: 3.75rem 3.125rem;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    border-radius: 0.625rem;
    border: 1px solid #FFF;
    background: #FFF;
    box-shadow: 0px 0px 13px 0px rgba(0, 0, 0, 0.25);
    margin-bottom: 4.37rem;
}

.contact-form-section ::placeholder,
.contact-form-section .form-select option:first-child {
    color: #E5E5E5;
    font-family: inherit;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}



.contact-form-section .form-control,
.contact-form-section .form-select {
    border: 1px solid #999 !important;
    height: 4.375rem;
    padding: 0.625rem 1.25rem;
    border-radius: 0.25rem !important;
}

.contact-form-section .form-select {
    height: 3.3rem !important;
}

.contact-form-section textarea.form-control {
    min-height: 10rem !important;
}

.contact-form-section .form-label {
    color: #343A40;
    font-family: inherit;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
}

.contact-btn {
    display: flex;
    width: 31.25rem;
    height: 4.375rem;
    padding: 0.625rem;
    justify-content: center;
    align-items: center;
    gap: 0.625rem;

    border-radius: 0.625rem;
    background: var(--gem-primary, #FF8425);
    border-color: #FF8425;

    color: #FFF;
    font-family: inherit;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

@media screen and (min-width: 1024px) {
    .contact-title {
        font-size: 2.1rem;
    }
}

/******  Contact END       *******/

/******  company       *******/
.company-page {
    background-color: #EAEEF4;
    padding-bottom: 40px;

}

.company-page .card {
    border-radius: 0.625rem;
    background: #FFF;
    padding: 4rem 3.75rem;
    margin-bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    flex: 1 1;
    flex-wrap: wrap;
}

.card-image {
    width: 250px;
}

.card-image img {
    border-radius: 0.625rem;
    max-width: 22.5rem;
}

.company-page .card-text {
    width: 100%;
    position: relative;
    padding-right: 40px;
    margin-bottom: 1rem;
}

@media screen and (min-width: 768px) {
    .company-page .card {
        flex-direction: row;
    }

    .company-page .card-text {
        width: calc(100% - 250px);
    }
}

/******  company END       *******/




@media screen and (min-width: 1024px) {
    header .navbar li:hover .dropdown-menu {
        display: block;
    }
}

header .navbar li .dropdown-menu li a {
    background: none;
    border-bottom: 1px solid transparent;
    color: #fff;
    display: inline-block;
    margin-bottom: 5px;
    padding: 10px 0 5px;
    width: auto;
}

header .navbar li .dropdown-menu li a:hover,
header .navbar li .dropdown-menu li a:active,
header .navbar li .dropdown-menu li a:focus,
header .navbar li .dropdown-menu li a.active {
    background: none;
    border-bottom: 1px solid #225CBF;
}

header .navbar li:hover~.nav-menu-backdrop {
    top: 0;
}

header .navbar .nav-menu-backdrop {
    background: #000;
    content: '';
    left: 0;
    height: 270px;
    opacity: 0.7;
    position: fixed;
    right: 0;
    top: -600px;
    transition: 0.5s ease all;
    width: 2000px;
    z-index: -10;
}

.header .nav-menu-left {
    display: flex;
    align-items: center;
}

.header .nav-menu-right {
    display: flex;
    align-items: center;
}

.header .nav-menu-right a+a {
    /* padding-left: 0; */
}

.header .nav-menu-right .nav-link {
    color: #000;
}

.header .nav-menu-right .nav-link i {
    color: #fff;
    margin-right: 4px;
    background: #FF8425;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    display: inline-block;
}

.header .nav-menu-right .nav-link i:before {
    line-height: 30px;
    margin-left: 7px;
}

.header .nav-menu-right .nav-button {
    background-color: #225CBF;
    border-radius: 5px;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
}

.header .nav-menu-right .nav-button:hover {
    opacity: 0.8;
}

.header .nav-menu-right .nav-menu-contact {
    margin-left: 3em;
}

.header .nav-menu-right .nav-menu-contact .nav-link {
    padding: 5px 0;
}

.contact-nav {
    background: #ff8425;
    display: flex;
    justify-content: space-between;
    margin: 0 -15px;
    padding: 5px 15px;
}

.contact-nav .contact-nav-link {
    color: #fff;
    font-size: 16px;
}

.contact-nav .contact-nav-link i {
    color: #ff8425;
    margin-right: 4px;
    background: #fff;
    height: 24px;
    width: 24px;
    border-radius: 50%;
    display: inline-block;
    font-size: 16px;
}

.contact-nav .contact-nav-link i:before {
    line-height: 24px;
    margin-left: 4px;
}

.contact-nav .contact-nav-link span {
    vertical-align: top;
}

/*Header Ends*/


/*Banner Starts*/

.page-banner {
    margin: 50px 0;
}

.page-banner video,
.page-banner img {
    display: block;
}

.page-banner .container {
    position: relative;
}

.page-banner-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.page-banner-desc {
    background-color: rgb(0 0 0 / 50%);
    border-left: 1px solid;
    margin-left: 50px;
    padding: 10px 20px;
}

.page-banner-title {
    margin-bottom: 20px;
    white-space: nowrap;
}

.page-banner-link:hover {
    left: 4px;
}

.home-page .page-banner-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.home-page .page-banner-desc {
    margin-left: 0;
    font-size: 1.2em;
    border: none;
    padding: 0;
    background: none;
    margin-bottom: 1em;
}

.home-page .page-banner-title {
    font-size: 50px;
    margin-bottom: 10px;
    white-space: normal;
}

.home-page .page-banner-link {
    width: 11em;
}

.page-banner .owl-carousel {
    margin: 0 50px;
    width: calc(100% - 100px);
}

.page-banner .owl-nav {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    left: -40px;
    transform: translateY(-50%);
    width: calc(100% + 80px);
    z-index: -1;
}

.page-banner .owl-theme .owl-nav [class*=owl-]:hover {
    background: none;
    color: #F15D29;
}

.page-banner .owl-nav .owl-prev i,
.page-banner .owl-nav .owl-next i {
    font-size: 40px;
}

.page-banner .owl-dots {
    margin-top: 50px;
}

/*Banner Ends*/

/*Unique Feature & Contact starts*/
.unique-feature {
    margin-bottom: 30px;
}

.unique-feature-contact {
    background-color: #F8F9FA;
    padding: 50px 0 10px;
}

.section-title {
    font-size: 2.6em;
    font-weight: bold;
}

.unique-feature-item {
    background: #fff;
    border-radius: 40px;
    box-shadow: 0 0 10px 0px #ccc;
    margin: 30px 15px;
    padding: 20px 30px;
}

.unique-feature-item h4 {
    margin-bottom: 15px;
    margin-top: 10px;
}

.unique-feature-contact .contact-form {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 0 10px 0px #ccc;
    padding: 40px;
}

.unique-feature-contact .contact-form h2 {
    font-size: 1.5em;
    line-height: 1.4;
}

/*Gallery slider*/
.gallery-slider .item {
    padding: 0 15px;
}

.gallery-slider .item img {
    border-radius: 20px;
}

.gallery-slider {
    padding: 70px 0;
}

/*Key Features*/
.key-features {
    padding: 20px 40px;
    margin-bottom: 20px;
}

.key-features-item {
    box-shadow: 0 0 10px 0px #ccc;
    border-radius: 20px;
    padding: 20px 26px;
    position: relative;
    height: 180px;
    margin-bottom: 30px;
}

.key-features-item img {
    position: absolute;
    right: 20px;
    top: 10px;
    height: 120px;
}

.key-features-item h4 {
    font-size: 2em;
    font-weight: bold;
    margin-top: 0.8em;
    margin-bottom: 1em;
}

.key-features-item label {
    color: #015E73;
}


/*Services page starts*/
.simple-banner {
    position: relative;
    margin-bottom: 4em;
}

.banner-content-wrapper {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.simple-banner .banner-content {
    color: #fff;
    max-width: 33em;
}

.simple-banner .banner-content h1 {
    font-size: 4em;
    margin-bottom: 0.4em;
}

.simple-banner .banner-content p {
    font-size: 1.8em;
    line-height: 1.2;
}

.title-2 {
    text-shadow: 2px 2px 3px #ccc;
    font-size: 2.3em;
    font-weight: 600;
    margin-bottom: 1.3em;
}

.list-box {
    margin-bottom: 4em;
}

.list-box-item {
    background: #EAEEF4;
    border-radius: 1em;
    box-shadow: 0 0 10px 0 #ccc;
    padding: 3em 3em 3em 11em;
    position: relative;
    margin-bottom: 2em;
}

.list-box-item img {
    max-width: 6em;
    position: absolute;
    left: 2em;
    top: 1.6em;
}

.list-box-item h5 {
    font-size: 1.6em;
    font-weight: bold;
    margin-bottom: 0.8em;
}

.list-box-item p {
    margin-bottom: 0;
}

.gray-box-out-image {
    position: relative;
    min-height: 22em;
    display: flex;
    margin-bottom: 6em;
}

.gray-box-out-image p {
    background: #EAEEF4;
    border-radius: 1em;
    box-shadow: 0 0 10px 0 #ccc;
    padding: 3em;
    padding-right: 24em;
    position: relative;
    margin-bottom: 0;
    font-size: 1.2em;
    width: 90%;
    display: flex;
    align-items: center;
}

.gray-box-out-image img {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    max-width: 30em;
    border-radius: 20px;
}

/******   Career      *******/
.careers-page .simple-banner .banner-content h1 {
    color: #000;
}

.career-title-container {
    border-bottom: 1px solid #FF8425;
    margin: 40px 0px;
    text-align: center;
}

.link {
    color: #FF8425;
    transition: 1s;
}

.link:hover {
    color: #fb6f04;
}

.career-title-container>h1 {
    position: relative;
    text-align: center;
    background-color: #fff;
    top: 22px;
    display: inline-block;
    padding: 0px 1rem;
    font-size: 1.5rem;
}

.c-image {
    border-radius: 0.625rem;
    max-height: 300px;
}

.my-60 {
    margin-top: 60px;
    margin-bottom: 60px;
}


@media screen and (min-width: 1024px) {
    .career-title-container>h1 {
        top: 28px;
        font-size: 2rem;
    }
}

/******  Career END       *******/


/******  Contact       *******/
.contact-title {
    font-size: 1.5rem;
    font-weight: 600;
}

.contact-form-section {
    display: flex;
    padding: 3.75rem 3.125rem;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    border-radius: 0.625rem;
    border: 1px solid #FFF;
    background: #FFF;
    box-shadow: 0px 0px 13px 0px rgba(0, 0, 0, 0.25);
    margin-bottom: 4.37rem;
}

.contact-form-section ::placeholder,
.contact-form-section .form-select option:first-child {
    color: #E5E5E5;
    font-family: inherit;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}



.contact-form-section .form-control,
.contact-form-section .form-select {
    border: 1px solid #E5E5E5;
    height: 4.375rem;
    padding: 0.625rem 1.25rem;
}

.contact-form-section textarea.form-control {
    min-height: 10rem !important;
}

.contact-form-section .form-label {
    color: #343A40;
    font-family: inherit;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
}

.contact-btn {
    display: flex;
    width: 31.25rem;
    height: 4.375rem;
    padding: 0.625rem;
    justify-content: center;
    align-items: center;
    gap: 0.625rem;

    border-radius: 0.625rem;
    background: var(--gem-primary, #FF8425);
    border-color: #FF8425;

    color: #FFF;
    font-family: inherit;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

@media screen and (min-width: 1024px) {
    .contact-title {
        font-size: 2.1rem;
    }
}

/******  Contact END       *******/

/******  company       *******/
.company-page {
    background-color: #EAEEF4;
    padding-bottom: 40px;

}

.company-page .card {
    border-radius: 0.625rem;
    background: #FFF;
    padding: 4rem 3.75rem;
    margin-bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    flex: 1 1;
    flex-wrap: wrap;
}

.card-image {
    width: 250px;
}

.card-image img {
    border-radius: 0.625rem;
    max-width: 22.5rem;
}

.company-page .card-text {
    width: 100%;
    position: relative;
    padding-right: 40px;
    margin-bottom: 1rem;
}

@media screen and (min-width: 768px) {
    .company-page .card {
        flex-direction: row;
    }

    .company-page .card-text {
        width: calc(100% - 250px);
    }
}

/******  company END       *******/

/*Arav Section Starts*/
.secondary-title {
    font-family: 'GothamBold';
    color: #003cc3;
    margin-bottom: 60px;
    letter-spacing: -2px;
    font-size: 60px;
    text-transform: uppercase;
    font-weight: bold;
}

.service-section {
    margin-top: 40px;
}

h2.secondary-title.service-title {
    margin-bottom: 10px;
}

.service-description {
    margin-bottom: 40px;
}

.service-section .col-md-4 {
    width: 330px;
}

.service-section .col-md-8 {
    width: calc(100% - 330px);
}

.service-nav {
    border-bottom: 3px solid #000;
    height: 100%;
}

.service-nav .nav-pills .nav-link {
    color: #000;
    font-size: 1.5rem;
    margin-bottom: 40px;
    padding: 0;
    position: relative;
    text-align: left;
    font-weight: bold;
}

.industries-section .service-nav .nav-pills .nav-link {
    margin-bottom: 30px;
}

.service-nav .nav-pills .nav-link.active {
    background: transparent;
}

.service-nav .nav-pills .nav-link.active span {
    border-bottom: 2px solid #225CBF;
}

.service-content .tab-pane {
    border-radius: 57px 0 57px 0;
    max-height: 488px;
    overflow: hidden;
    position: relative;
}

.service-content .tab-pane:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    background: hsl(0deg 0% 0% / 50%);
    width: 100%;
    height: 100%;
}

.service-content .tab-pane img {
    width: 100%;
}

.service-content-box {
    /* background: rgb(0 0 0 / 60%); */
    bottom: 30px;
    color: #fff;
    left: 40px;
    padding: 20px;
    position: absolute;
    width: 400px;
}

.service-content-title {
    font-size: 34px;
}

.service-content-info {
    font-size: 20px;
    line-height: 1.2;
}

.service-content-explore {
    border: 2px solid #fff;
    border-radius: 5px;
    color: #fff;
    display: inline-block;
    font-size: 18px;
    left: 0;
    padding: 8px 30px;
    position: relative;
    text-decoration: none;
}

.service-content-explore:hover {
    left: 4px;
    color: inherit;
}

/*Arav Section Ends*/

/*Testimonial Starts*/
.testimonial-section {
    margin-top: 100px;
}

.testimonial-section .secondary-title {
    margin-bottom: 30px;
}

.testimonial-section .owl-carousel {
    margin: 0 40px;
    width: calc(100% - 80px);
}

.testimonial-section .owl-nav {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    left: -40px;
    transform: translateY(-50%);
    width: calc(100% + 80px);
}

.testimonial-section .owl-theme .owl-nav [class*=owl-]:hover {
    background: none;
    color: #F15D29;
}

.testimonial-section .owl-nav .owl-prev i,
.testimonial-section .owl-nav .owl-next i {
    font-size: 40px;
}

.testimonial-section .owl-dots {
    margin-top: 50px;
}

.testimonial {
    background: #fff;
    -webkit-box-shadow: 0px 0px 14px 0 rgb(0 0 0 / 10%);
    box-shadow: 0px 0px 14px 0 rgb(0 0 0 / 10%);
    padding: 20px;
    margin: 50px 10px 20px;
}

.testimonial-profile {
    border-radius: 50%;
    height: 100px;
    margin-bottom: 20px;
    margin-top: -70px;
    overflow: hidden;
    width: 100px;
    left: 50%;
    position: relative;
    transform: translateX(-50%);
}

.testimonial-info {
    margin-bottom: 70px;
    margin-top: 30px;
}

.testimonial-who {
    text-align: center;
}

.testimonial-who:before {
    content: '';
    display: block;
    width: 160px;
    border-top: 1px solid #ccc;
    position: relative;
    left: 50%;
    transform: translate(-50%, -28px);
}

.testimonial-who-name {
    font-family: 'GothamBold';
    color: #003cc3;
    font-size: 1.3rem;
    margin-bottom: 0;
    opacity: 0.7;
}

.testimonial-section.case-studies .testimonial-who-name,
.testimonial-section.customers-say .testimonial-who-name {
    min-height: 50px;
}

.testimonial-who-position {
    font-size: 0.9rem;
}

.testimonial-section .testimonial {
    margin-top: 20px;
    min-height: 400px;
    padding-top: 30px;
}

.testimonial-section .testimonial-who:before {
    display: none;
}

.testimonial-section .testimonial-who:after {
    content: '';
    display: block;
    width: 160px;
    border-top: 1px solid #ccc;
    position: relative;
    left: 50%;
    transform: translate(-50%, 15px);
}

.testimonial-section .testimonial-info {
    margin-bottom: 10px;
    margin-top: 70px;
}

/*Testimonial Ends*/


/* Software page starts */
.see-more {
    margin: 200px 0;
}

.page-banner-link.see-more-link {
    background: #fff;
    border: 2px solid #1051c1;
    border-radius: 0px;
    color: #000;
    display: block;
    font-size: 20px;
    margin: 0 auto;
    text-align: center;
    padding: 20px;
    width: 700px;
}

.see-more-link span {
    font-weight: 600;
    font-size: 26px;
    margin-left: 3px;
}

.see-more-link i {
    color: #1051c1;
    float: right;
    margin-top: 2px;
    font-size: 28px;
}

.hover-box-section {
    margin-bottom: 60px;
    margin-top: 100px;
}

.hover-box {
    background-color: #99B7FF;
    border: 1px solid #fff;
    color: #fff;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 300px;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hover-box-title {
    /* background: #225cbf; */
    position: absolute;
    margin-bottom: 0;
    padding: 46px 10px;
    text-align: center;
    top: calc(50% - 60px);
    width: 100%;
    transition: 0.3s ease all;
    z-index: 1;
}

.hover-box-info {
    margin-bottom: 0;
    padding: 15px;
    display: flex;
    flex-direction: column;
    font-size: 16px;
    justify-content: center;
    visibility: visible;
    bottom: -100%;
    opacity: 0;
    height: 100%;
    position: absolute;
    transition: 0.5s ease all;
}

.hover-box:hover {
    background: rgb(34 92 191 / 82%);
}

.hover-box:hover .hover-box-title {
    /* padding: 16px 10px;
    top: 0px; */
    opacity: 0;
    transform: scale(0.4);
    -webkit-animation: shrink 0.35s ease-in;
    animation: shrink 0.35s ease-in;
}

.hover-box:hover .hover-box-info {
    bottom: 0;
    opacity: 1;
}

.video-element::-webkit-media-controls {
    display: none !important;
}

/* Software page ends */


/*PCB Starts*/
.workflow-section,
.offer-section,
.workwith-section,
.countries-section,
.mb-100 {
    margin-bottom: 100px;
}

.workflow-box {
    box-shadow: 0px 0px 6px 0px #cdcdcd;
    padding: 26px;
    height: calc(100% - 24px);
    border-radius: 10px;
    margin-bottom: 24px;
}

.workflow-img {
    max-width: 140px;
    max-height: 100px;
}

.workflow-title {
    margin: 15px 0 10px;
}

.workflow-info {
    margin-bottom: 0;
}

.secondary-title-description {
    margin-bottom: 40px;
    text-align: center;
}

.offer-section .secondary-title,
.workwith-section .secondary-title {
    margin-bottom: 10px;
}

.offer-box {
    overflow: hidden;
}

.offer-box img {
    max-width: 160%;
    height: 300px;
}

.offer-title {
    margin: 25px 0 0;
    text-align: center;
}

.design-tool-table {
    margin: 0 auto 100px;
    width: 75%;
}

.design-tool-table .col-4 {
    border: 1px solid #611FF0;
    border-width: 0 0 1px 1px;
    padding: 10px;
}

.design-tool-table .head-row .col-4 {
    background: #611FF0;
    border-left-color: #fff;
    color: #fff;
    text-align: center;
}

.design-tool-table .head-row .col-4:first-child {
    border-left-color: #611FF0;
}

.design-tool-table .col-4:last-child {
    border-right: 1px solid #611FF0;
}

.workwith-container {
    width: 75%;
    margin: 0 auto;
}

.workwith-container .col-4 span {
    display: block;
    font-size: 1.6rem;
    background: rgb(34 92 191);
    font-weight: 500;
    list-style: none;
    margin-bottom: 30px;
    padding: 4px 10px 6px 20px;
    position: relative;
    color: #fff;
    width: calc(100% - 60px);
    left: 0;
}

.workwith-container .col-4 span:before {
    content: '';
    height: 48px;
    border: 24px solid transparent;
    border-left-color: rgb(34 92 191);
    position: absolute;
    top: 0;
    right: -48px;
    width: 48px;
}

.workwith-container .col-4 span:hover {
    /* background: rgb(34 92 191 / 80%); */
    left: 4px;
}

.workwith-container .col-4 span:hover:before {
    /* border-left-color: rgb(34 92 191 / 80%); */
}



/* PCB Ends */

/* Contact Us Starts */

.contact-section {
    background: #FFFFFF;
    box-shadow: 8px 34px 75px 0 rgb(15 14 14 / 15%);
    border-radius: 17px;
    padding: 50px 40px 30px 40px;
    overflow: hidden;
    margin-bottom: 80px;
}

.contact-section h2 {
    text-align: center;
}

.contact-form {
    margin-bottom: 50px;
}

.contact-form .form-control {
    background-color: transparent !important;
    outline: none !important;
    box-shadow: none !important;
    position: relative;
    color: #000;
    font-weight: 500;
    font-size: 16px;
    background: transparent;
    border: 0;
    border: solid 1px rgba(151, 151, 151, 0.65);
    border-radius: 0px;
    margin-bottom: 8px;
    padding-left: 20px;
    resize: none;
    height: calc(1.5em + 1.55rem + 2px);
}

.contact-form .invalid-feedback {
    display: block !important;
    margin-bottom: 20px;
}

.contact-form textarea.form-control {
    height: auto;
}

.contact-form .contact-submit {
    font-family: 'GothamBold';
    margin-left: 0;
    font-size: 20px;
    text-transform: uppercase;
    border-radius: 6px;
    width: auto;
}


/* Contact Us Ends */

.about-us-banner .page-banner-desc {
    font-style: italic;
}

.about-us-banner .page-banner-by {
    font-style: normal;
    font-size: 20px;
    display: block;
    margin-top: 10px;
}

.about-us-pg .secondary-title {
    margin-bottom: 60px;
}

svg#core-values {
    margin: 0 auto;
    max-width: 720px;
    width: 100%;
    height: 100%;
}

svg#core-values .line-layer path {
    stroke: #1c79f9;
    stroke-width: 1px;
}

svg#core-values .line-layer circle {
    r: 2.5px;
    fill: #1c79f9;
}

svg#core-values .point circle {
    stroke: #fff;
    stroke-width: 1.25px;
    fill: #124e9f;
    r: 5px;
}

svg#core-values .point__title {
    fill: #000;
    font-size: 14px;
    letter-spacing: 1px;
    font-family: 'Proxima Nova', Arial, sans-serif;
    font-weight: bold;
}

svg#core-values .point__subtitle {
    fill: #000;
    font-size: 9px;
}

.arts-diagram-section {
    margin-bottom: 100px;
    position: relative;
}

.arts-diagram-steps {
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    text-align: center;
    width: 300px;
}

.arts-diagram-steps.step-1 {
    top: 100px;
}

.arts-diagram-steps.step-2 {
    left: calc(50% + 290px);
    text-align: left;
    top: 230px;
}

.arts-diagram-steps.step-3 {
    left: calc(50% + 290px);
    text-align: left;
    top: 420px;
}

.arts-diagram-steps.step-4 {
    top: 560px;
}

.arts-diagram-steps.step-5 {
    left: calc(50% - 330px);
    text-align: right;
    top: 390px;
    width: 350px;
}

.arts-diagram-steps.step-6 {
    left: calc(50% - 330px);
    text-align: right;
    top: 230px;
    width: 350px;
}

.arts-diagram-steps h5 {
    font-family: "GothamBold";
}

.parav-group,
.recent-projects-section {
    box-shadow: 0px 0px 8px #b5b5b5;
    margin-bottom: 100px;
    padding: 60px 0;
}

.parav-group-col {
    background-color: #fff;
    width: 200px;
    border: 1px solid #E17572;
    border-radius: 5px;
    font-size: 30px;
    font-weight: 500;
    position: relative;
    text-align: center;
    margin-top: 50px;
    max-width: 16%;
}

.parav-group-col label {
    display: block;
    background: #E17572;
    color: #fff;
}

.parav-group-col span {
    font-size: 30px;
    padding: 10px;
    display: block;
}

.parav-group-col:before {
    content: '';
    position: absolute;
    height: 50px;
    width: 1px;
    border-left: 2px solid #E17572;
    top: -50px;
}

.parav-group-col.parav-group-parent:before {
    top: 100%;
}

.parav-group-col.parav-group-parent {
    margin-bottom: 50px;
    margin-top: 0;
}

.parav-group-child {
    margin-bottom: 40px;
    margin-top: -2px;
    position: relative;
}

.parav-group-child:before,
.parav-group-child:after {
    content: '';
    position: absolute;
    width: 100px;
    height: 0;
    border-top: 2px solid #fff;
    top: -2px;
    left: 0;
}

.parav-group-child:after {
    right: 0;
    left: auto;
}

.parav-group-col:after {
    content: '';
    position: absolute;
    width: calc(100% + 50px);
    height: 0;
    border-top: 2px solid #E17572;
    top: -50px;
}

.parav-group-col:last-child:after {
    right: 50%;
}

.parav-group-col:nth-child(5):after {
    width: 0;
}

.parav-group-parent:after {
    width: 0;
}

.countries-flag {
    font-size: 30px;
    font-weight: bold;
    width: 200px;
    text-align: center;
    margin: 0 50px 50px;
}

.countries-flag img {
    max-width: 150px;
}

.countries-flag label {
    display: block;
    margin-top: 10px;
}

.our-teams-section {
    padding-bottom: 0;
}

.testimonial.our-team {
    padding-top: 30px;
    position: relative;
    margin: 180px auto 100px;
    max-width: 300px;
}


.testimonial.our-team .testimonial-profile {
    height: 200px;
    position: absolute;
    top: -180px;
    margin-top: 0;
    width: 200px;
}

.testimonial.our-team .testimonial-who:before {
    border: 0;
}


/* IoT page starts */

.iot-page .service-section {
    margin-bottom: 100px;
}

.stats-section {
    background: #f5f6f9;
    padding-top: 60px;
    padding-bottom: 100px;
    margin-bottom: 0;
}

.stats-section .secondary-title {
    text-align: center;
}

.stat-box label {
    font-family: 'GothamBold';
    color: #003cc3;
    font-size: 60px;
    font-weight: 700;
    line-height: 1;
}

.stat-box span {
    display: block;
}

.stat-box {
    color: rgb(46, 67, 112);
    text-align: center;
    background: #fff;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.iot-page .recent-projects-section {
    box-shadow: none;
}

.rproj-box {
    line-height: 1.8;
}

.rproj-box+.rproj-box {
    margin-top: 200px;
}

.rproj-box-mt {
    margin-top: 300px;
}

.rproj-box img {
    max-width: 260px;
    margin: 0 auto;
    width: 100%;
    display: block;
}

.rproj-box h4 {
    font-family: 'GothamBold';
    letter-spacing: -0.8px;
    color: #204cc2;
    font-weight: bold;
    margin: 35px 0 20px;
}

.rproj-box li {
    margin-bottom: 10px;
}

.iot-page .rproj-box {
    display: block;
    color: #333;
    text-decoration: none;
}

.iot-page .rproj-box:hover {
    color: #333;
    text-decoration: none;
}

.iot-page .rproj-box img {
    max-width: 100%;
}

.iot-page .rproj-box h4 {
    margin-top: 0;
}

.iot-page .rproj-box+.rproj-box {
    margin-top: 60px;
}

.iot-page .rproj-box .row .col-md-6 {
    overflow: hidden;
}

.iot-page .rproj-box .row-1 img {
    display: block;
}

.iot-page .rproj-box .row-2 .col-md-6 {
    display: block;
}

.iot-page .rproj-box .row-2 img {
    margin-top: -20px;
}

.iot-page .rproj-box .row-3 .col-md-6 {
    height: 420px;
}

.iot-page .rproj-box .row-3 img {
    margin-top: -70px;
}

@media screen and (min-width: 1440px) {
    .iot-page .rproj-box .row-1 .col-md-6 {
        height: 300px;
    }

    .iot-page .rproj-box .row-1 img {
        margin-top: -60px;
    }

    .iot-page .rproj-box .row-2 .col-md-6 {
        height: 320px;
    }

    .iot-page .rproj-box .row-2 img {
        margin-top: -40px;
    }

    .iot-page .rproj-box .row .col-md-6 {
        padding: 0 40px;
    }
}


/* IoT page ends */

section.recent-projects-section.eda-conversion-section,
section.recent-projects-section.firm-rjbox-section {
    box-shadow: none;
}

.recent-projects-section.eda-conversion-section .rproj-box-mt {
    margin-top: 240px;
}

.recent-projects-section.eda-conversion-section .rproj-box+.rproj-box {
    margin-top: 240px;
}

section.recent-projects-section.firm-rjbox-section {
    padding-bottom: 0;
}

.firm-services-section {
    margin-bottom: 0;
    margin-top: 100px;
}

.all-service-section {
    background: #f5f6f9;
    margin-bottom: 0;
    padding: 60px 0;
}

.all-service-section .secondary-title {
    margin-bottom: 0;
}

.all-service-section .secondary-title+p {
    margin-bottom: 60px;
    text-align: left;
    font-size: 20px;
}

.all-service-section .subtitle {
    font-family: 'GothamBold';
    color: #003cc3;
    margin-bottom: 30px;
    letter-spacing: -2px;
    font-size: 32px;
    text-transform: uppercase;
    font-weight: bold;
}

.firm-service-items {
    font-family: 'GothamBold';
    font-size: 20px;
    margin-bottom: 30px;
    position: relative;
    padding-left: 50px;
}

.firm-service-items:before {
    content: '';
    height: 20px;
    width: 16px;
    position: absolute;
    border: 6px solid #003ec2;
    border-width: 0 6px;
    transform: skewX(-30deg);
    left: 0;
    top: 50%;
    transform: skewX(-30deg) translateY(-50%);
}

section.technology-section {
    background: #f5f6f9;
    padding: 60px 0 40px;
}

section.technology-section img {
    margin: 0 30px 30px;
    max-width: 70px;
}

section.technology-section .img-lg {
    max-width: 190px;
}

.certifications-page .page-banner-info {
    max-width: 100%;
    width: 100%;
    text-align: center;
    left: 0;
}

.certification-bg {
    min-height: 700px;
    background: rgba(34, 92, 191, 1);
    background: linear-gradient(90deg, rgb(18 55 62) 0%, rgba(34, 92, 191, 1) 50%, rgba(149, 188, 255, 1) 100%);
}

.certifications-page .page-banner-info img {
    display: inline-block;
    max-height: 90px;
    max-width: 110px;
    background: #fff;
    border: 10px solid #fff;
}

.certifications-page .page-banner-info img.testsafe-logo {
    border: none;
}

.certifications-page .page-banner-info img+img {
    margin-left: 40px;
}

.certifications-page .page-banner-desc {
    background-color: transparent;
    margin-left: 0;
    border: none;
    display: flex;
    justify-content: space-evenly;
}

.certifications-page .firm-services-section {
    margin: 70px 0;
}

.certifications-page .firm-services-section .secondary-title,
.certifications-page .process-section .secondary-title {
    margin-bottom: 10px;
}

.certifications-page .firm-services-section .secondary-title+p,
.certifications-page .process-section .secondary-title+p {
    margin-bottom: 50px;
}

.process-section {
    margin-bottom: 100px;
}

.bg-0 {
    background-color: transparent !important;
}

.contact-banner {
    background-color: #049DBF;
    padding: 3em 0;
}

.contact-banner-wrapper {
    display: flex;
    justify-content: space-between;
    color: #fff;
    align-items: center;
}

.contact-banner-center {
    justify-content: center !important;

}

.contact-banner-center .contact-button {
    margin-left: 20px !important;
}

.contact-banner-wrapper div {
    display: flex;
    align-items: center;
}

.contact-banner-wrapper img {
    max-height: 16em;
}

.contact-banner-wrapper h2 {
    font-size: 26px;
    line-height: 1.4;
    margin-left: 50px;
    margin-bottom: 0;
}

.contact-button {
    display: block;
    border: 0.12em solid #fff;
    border-radius: 0.4em;
    color: #fff;
    min-width: 140px;
    text-align: center;
    padding: 0.6em 2.4em 0.6em 0.6em;
    text-decoration: none;
    margin-left: 100px;
    position: relative;
}

.contact-button i {
    transform: rotate(90deg);
    position: absolute;
    font-size: 1.3em;
    right: 0.8em;
    top: 0.3em;
}



.contact-button:hover {
    color: #fff;
}

.contact-form .control-file {
    height: calc(1rem + 1.25rem + 2px) !important;
    padding-left: 10px !important;
}

/*Case studies Starts*/
.case-details {
    margin-bottom: 80px;
}

.case-details .subtitle {
    color: #6D6B6B;
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
}

.case-details .col-md-8 .col-md-4 {
    border-right: 1px solid #e8e0e0;
    margin-right: 50px;
    width: calc(33.33% - 50px);
}

.case-details .icon {
    margin-bottom: 5px;
}

.case-details .icon svg {
    height: 66px;
    width: 54px;
}

.case-details label {
    color: #545454;
    font-weight: 600;
    font-size: 18px;
    display: block;
    margin-bottom: 4px;
}

.case-details h5 {
    font-size: 21px;
    font-weight: 700;
}

.case-details .col-md-8 .col-md-4:last-child {
    border: none;
}

.case-details .case-image {
    border-radius: 57px 0px 57px 0px;
}

.case-box-wrapper {
    margin-bottom: 100px;
}

.case-box {
    background-color: #e5f4ff;
    border-radius: 10px;
    padding: 25px 25px 25px 25px;
    height: 100%;
}

.case-box-even {
    background-color: #efebff;
}

.case-box svg {
    height: 50px;
    width: 50px;
}

.case-box span {
    display: block;
    margin-bottom: 8px;
}

.case-box label {
    font-size: 22px;
    font-weight: 700;
    /* line-height: 30px; */
}

.case-box p,
.case-box li {
    font-size: 18px;
    font-weight: 500;
    line-height: 30px;
}

.case-contact {
    background: #FFFFFF;
    box-shadow: 8px 34px 75px 0 rgb(15 14 14 / 15%);
    border-radius: 17px;
    padding: 30px 40px 30px 40px;
    overflow: hidden;
    margin-bottom: 80px;
}

.case-contact h2 {
    font-family: 'GothamBold';
    color: #003cc3;
    margin-bottom: 60px;
    letter-spacing: -2px;
    font-size: 34px;
    text-transform: uppercase;
    font-weight: bold;
}

.case-contact .col-md-8 {
    padding-right: 100px;
}

.case-contact .contact-form {
    margin-bottom: 20px;
}

.case-contact .contact-submit {}

/*Case studies Ends*/


/*Footer starts*/

footer {
    background-color: #262626;
    color: #fff;
    padding: 3em 0 0;
    position: relative;
}

footer .foot-col.footer-contact {
    min-width: 20em;
    max-width: 20em;
}

footer h4 {
    border-bottom: 0.08em solid #fff;
    padding-bottom: 1em;
    padding-right: 0.5em;
    margin-bottom: 1em;
}

footer .nav-link {
    border-bottom: 1px solid transparent;
    color: #fff;
    display: inline-block;
    margin-bottom: 6px;
    padding: 0;
    font-size: 1.2em;
}

footer .nav-link:hover,
footer .nav-link:active,
footer .nav-link:focus {
    border-bottom: 1px solid #fff;
    color: #fff;
}

footer .nav-social li {
    margin-bottom: 0.5em;
}

footer .nav-social li a {
    color: #fff;
    font-size: 1.2em;
    text-decoration: none;
}

footer .nav-social li a i {
    margin-right: 0.5em;
}

footer .nav-social li a:hover {
    /* color: #009A49; */
}

footer .footer-contact li {
    font-size: 1.2em;
    margin-bottom: 0.5em;
    position: relative;
    padding-left: 30px;
    font-weight: 100;
}

footer .footer-contact li i {
    margin-right: 10px;
    position: absolute;
    left: 0;
}

footer .footer-contact li strong {
    margin-right: 5px;
}

footer .footer-contact li a {
    color: #fff;
}

footer .footer-copyright {
    background-color: #151515;
    padding: 10px;
    margin-top: 20px;
}

footer .footer-copyright address {
    font-size: 1em;
    margin-bottom: 0;
}

/*Breadcrumb starts*/

nav.nav-breadcrumb li.breadcrumb-item {
    background: rgb(0 156 81 / 80%);
    color: #fff;
    padding: 5px 10px;
    position: relative;
}

nav.nav-breadcrumb li.breadcrumb-item.active {
    background: rgb(70 70 70 / 80%);
}

nav.nav-breadcrumb .breadcrumb-item+.breadcrumb-item {
    margin-left: 17px;
}

nav.nav-breadcrumb li.breadcrumb-item:before {
    content: '';
    height: 34px;
    border: 17px solid transparent;
    border-left-color: rgb(0 156 81 / 80%);
    padding: 0;
    position: absolute;
    top: 0;
    right: -34px;
    width: 34px;
}

nav.nav-breadcrumb li.breadcrumb-item.active:before {
    border-left-color: rgb(70 70 70 / 80%);
}

nav.nav-breadcrumb li.breadcrumb-item a {
    color: #fff;
    display: block;
    padding: 0 5px;
    text-decoration: none;
}

/*Product page starts*/

.banner-image {
    left: 0;
    position: fixed;
    top: 76px;
    width: 100%;
    z-index: -1;
}

.product-main-content {
    background: #fff;
    position: relative;
}

section.product-main {
    margin-top: 230px;
}

h1.product-main-title {
    font-size: 60px;
    margin-bottom: 110px;
    padding-bottom: 10px;
    text-transform: uppercase;
}

h1.product-main-title span {
    color: #fff;
    background-color: rgb(0 0 0 / 65%);
    line-height: 1.1;
    display: inline-block;
    padding: 0 10px;
}

.product-list {
    background-image: url(../images/supply.jpg);
    background-size: cover;
    position: relative;
}

.product-list:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: #000;
    opacity: 0.3;
    z-index: 0;
}

.product-list h2.product-subtitle {
    color: #fff;
    position: relative;
}

ul.product-service-list {
    position: relative;
    overflow: hidden;
}

ul.product-service-list:before {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    background: #fff;
    left: 0;
    top: 0;
    opacity: 0;
    z-index: 0;
}

ul.product-service-list li {
    background: rgb(255 255 255 / 93%);
    font-weight: 500;
    list-style: none;
    margin-bottom: 10px;
    padding: 4px 10px 6px;
    position: relative;
    float: left;
    clear: both;
}

ul.product-service-list li:before {
    content: '';
    height: 40px;
    border: 20px solid transparent;
    border-left-color: rgb(255 255 255 / 94%);
    position: absolute;
    top: 0;
    right: -40px;
    width: 40px;
}

ul.product-service-list li i {
    background: #009a49;
    border-radius: 50%;
    color: #fff;
    display: inline-block;
    font-size: 20px;
    height: 30px;
    line-height: 1.6;
    margin-right: 10px;
    position: relative;
    text-align: center;
    top: 2px;
    width: 30px;
}

/*Contact Us starts*/
.contact-page h1.product-main-title {
    position: relative;
    top: -140px;
}

.polymers-page .banner-image {
    top: -140px;
}

/*Water treatment starts*/

.cards-list {
    /* background: #f1f1f1; */
}

.card-item {
    background: #fff;
    box-shadow: 0 0 5px 0px #ccc;
    border-radius: 5px;
    overflow: hidden;
}

.card-item h2 {
    /* border-bottom: 1px solid #ff9800; */
    color: #009a49;
    display: inline-block;
    margin-left: 10px;
    margin-top: 20px;
    padding-bottom: 5px;
    position: relative;
}

.card-item ul {
    list-style: none;
    padding-left: 10px;
}

.card-item ul li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.card-item ul li i {
    color: green;
    display: inline-block;
    font-size: 26px;
    left: -6px;
    line-height: 10px;
    position: absolute;
    top: -2px;
}

.card-item img {
    margin-top: 20px;
}

.water-drop {
    background-image: url(../images/water-drop.jpg);
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
    box-shadow: 0 0 5px 0 rgb(0 0 0 / 30%);
}

.bg-cover-image {
    position: relative;
    background-size: cover;
    background-position: center;
}

.bg-cover-image svg {
    position: absolute;
    left: 0px;
    height: 100%;
    width: 1.5rem;
    fill: white;
}

.br-btm {
    background-image: linear-gradient(currentColor, currentColor);
    background-position: 0% 100%;
    background-repeat: no-repeat;
    background-size: 0% 4px;
    background-size: 100% 4px;
    position: absolute;
    content: '';
}

.initial-logo {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    z-index: 999;
    background-color: rgba(255, 255, 255, 1);
    position: fixed;
}

.initial-logo img {
    width: 100px;
    max-width: 100%;
    animation: logo-spin 2s linear infinite;
}

.rectangle {
    position: relative;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}


/* LEVEL-1 STYLES
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.level-1 {
    width: 50%;
    margin: 0 auto 80px;
    background: #005ebf;
    text-align: center;
    color: #fff;
}

.level-1::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 40px;
    background: var(--black);
}


/* LEVEL-2 STYLES
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.level-2-wrapper {
    position: relative;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    padding: 0;
    list-style: none;
}

.level-2-wrapper::before {
    content: "";
    position: absolute;
    top: -40px;
    left: 8.3%;
    width: 83.5%;
    height: 2px;
    background: var(--black);
}

.level-2-wrapper::after {
    display: none;
    content: "";
    position: absolute;
    left: -20px;
    bottom: -20px;
    width: calc(100% + 20px);
    height: 2px;
    background: var(--black);
}

.level-2-wrapper li {
    position: relative;
}

.level-2-wrapper>li::before {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 40px;
    background: var(--black);
}

.level-2 {
    width: 90%;
    margin: 0 auto 40px;
    background: #005ebf;
    color: #fff;
    text-align: center;
    font-size: 24px;
    min-height: 98px;
    padding: 20px 25px;
}

/* .level-2::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 20px;
    background: var(--black);
} */

.level-2::after {
    display: none;
    content: "";
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translate(-100%, -50%);
    width: 20px;
    height: 2px;
    background: var(--black);
}

/* MQ STYLES
–––––––––––––––––––––––––––––––––––––––––––––––––– */
@media screen and (max-width: 767px) {
    .rectangle {
        padding: 20px 10px;
    }

    .level-1,
    .level-2 {
        width: 100%;
    }

    .level-1 {
        margin-bottom: 20px;
    }

    .level-1::before,
    .level-2-wrapper>li::before {
        display: none;
    }

    .level-2-wrapper,
    .level-2-wrapper::after,
    .level-2::after {
        display: block;
    }

    .level-2-wrapper {
        width: 90%;
        margin-left: 10%;
    }

    .level-2-wrapper::before {
        left: -20px;
        width: 2px;
        height: calc(100% + 40px);
    }

    .level-2-wrapper>li:not(:first-child) {
        margin-top: 50px;
    }
}

@keyframes logo-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/*** World Map ****/
.map-container {
    height: 300px;
    padding-top: 20px 0px;
    margin: 50px auto 100px;
}

.jvmap-smart {
    width: 100%;
    height: 100%;
}

.text-center {
    text-align: center;
    font-weight: 300;
    font-size: 2rem;
}

.map-container:after,
.clearfix {
    display: block;
    content: '';
    clear: both;
}

@media only screen and (min-width: 576px) {
    .map-container {
        height: 350px;
    }
}

@media only screen and (min-width: 768px) {
    .map-container {
        height: 400px;
    }
}

@media only screen and (min-width: 992px) {
    .map-container {
        height: 500px;
    }
}

@media only screen and (min-width: 1200px) {
    .map-container {
        height: 600px;
    }
}

/*** World Map ****/
.notie-container {
    box-shadow: none;
    z-index: 9999 !important;
}

div.loader {
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    overflow: hidden;
    display: none;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
}

path[data-code="CA"],
path[data-code="US"],
path[data-code="AU"],
path[data-code="MY"],
path[data-code="SA"],
path[data-code="AE"],
path[data-code="GB"],
path[data-code="DE"],
path[data-code="CH"],
path[data-code="BE"],
path[data-code="FR"],
path[data-code="NZ"] {
    fill: #225cbf !important;
}

.jvectormap-tip {
    background-color: #fff !important;
    color: #000 !important;
}

.jvectormap-tip img {
    max-height: 75px;
}

.jvectormap-marker.jvectormap-element {
    width: 20px !important;
}

.block {
    display: block;
}

.iti.iti--allow-dropdown {
    width: 100%;
}

video::-webkit-media-controls {
    display: none !important;
}

/*Only Desktop Starts*/
@media screen and (min-width:1024px) {

    .desktop-hide,
    header .navbar-expand-lg .navbar-collapse.mobile-menu {
        display: none !important;
    }
}

/*Mobile Style Starts*/
@media screen and (max-width:1023px) {
    .mobile-hide {
        display: none;
    }

    body {
        padding-top: 86px;
    }

    body,
    header,
    .main-wrapper {
        min-width: 375px;
    }

    .header_logo {
        order: 2;
        padding: 6px 0;
        margin-right: 0;
    }

    .header_logo img {
        max-height: 40px;
    }

    .nav-menu-right {
        order: 3;
    }

    .header .nav-menu-right a {
        padding: 10px;
        font-size: 12px;
    }

    .header .navbar-toggler {
        background-color: #fff;
        height: 32px;
        padding: 4px 5px;
        width: 36px;
        box-shadow: none;
    }

    .header .navbar-toggler-icon {
        height: 1px;
        border-top: 1px solid #333;
        position: relative;
        top: -3px;
        width: 100%;
    }

    .header .navbar-toggler-icon:before,
    .header .navbar-toggler-icon:after {
        content: '';
        width: 100%;
        height: 1px;
        border-top: 1px solid #333;
        top: -8px;
        position: absolute;
        left: 0;
    }

    .header .navbar-toggler-icon:after {
        top: 6px;
    }

    .navbar-collapse {
        order: 4;
    }

    .navbar-nav .nav-link {
        height: auto;
        display: inline-block !important;
        position: relative;
    }

    .navbar-nav .nav-item .nav-link:after {
        padding-top: 0;
        border: 1px solid transparent;
        left: 0;
        position: absolute;
        bottom: 0;
    }

    header .navbar li .dropdown-menu {
        padding-left: 30px;
        /* border-left: 1px solid #fff; */
    }

    header .desktop-menu {
        display: none;
    }

    .navbar-nav .nav-link i {
        margin-left: 10px;
    }

    .header .nav-menu-left {
        min-width: calc(50% + 42px);
        justify-content: space-between;
    }

    .header .nav-menu-right .nav-link {
        font-size: 14px;
        margin-right: 6px;
        padding: 0;
    }

    .header .nav-menu-right .nav-link i:before {
        margin-left: 8px;
    }

    .header .nav-menu-right .nav-link span {
        display: none;
    }

    .header .nav-menu-right .nav-button {
        padding: 6px 12px;
    }

    header .navbar .nav-menu-backdrop {
        display: none;
    }

    header {
        background: #fff;
    }

    header .contact-nav .contact-nav-link {
        font-size: 14px;
    }

    /* header .header {
        justify-content: space-between !important;
    }

    header .header .nav.main-nav {
        order: 3;
    }

    .header_logo img {
        max-width: 120px;
    }

    .header .nav li {
        margin: 0 4px !important;
    }

    .header .nav-social li a {
        height: 24px;
        width: 24px;
    }

    .header .nav-social li a i {
        font-size: 14px;
        line-height: 26px;
    }

    .header .nav-social li a i.bi-facebook {
        font-size: 24px;
        line-height: 24px;
    }

    .header .nav-social li a i.bi-linkedin {
        font-size: 14px;
        line-height: 8px;
        margin-top: 4px;
    }

    .header .nav-menu {
        margin-bottom: 0 !important;
        margin-top: 10px !important;
    }

    .header .nav-menu li a {
        font-size: 13px;
        padding: 0 !important;
    }

    .header .nav-menu li i {
        margin: 0 4px !important;
    }

    .header .nav li .dropdown-menu {
        top: 46px;
    }

    .header .nav-menu li .dropdown-menu a {
        padding: 2px 5px !important;
    } */

    .simple-banner {
        height: 200px;
        overflow: hidden;
    }

    .simple-banner img {
        max-width: none;
        height: 100%;
    }

    .simple-banner .banner-content h1 {
        font-size: 1.6em;
    }

    .simple-banner .banner-content p {
        font-size: 0.8em;
    }

    .title-2 {
        font-size: 1.6em;
    }

    .list-box-item {
        padding: 2em;
    }

    .list-box-item h5 {
        min-height: 60px;
        display: flex;
        align-items: center;
        position: relative;
        padding-left: 80px;
    }

    .list-box-item img {
        top: 0;
        left: -6px;
    }

    .gray-box-out-image p {
        font-size: 16px;
        padding: 2em;
        width: 100%;
        order: 1;
    }

    .gray-box-out-image img {
        position: static;
        max-width: none;
        transform: none;
        order: 0;
    }

    .gray-box-out-image {
        flex-direction: column;
    }

    .company-page .card {
        padding: 2rem;
    }

    .company-page .card-text {
        padding: 0;
    }

    .card-image {
        width: 100%;
    }

    .card-image img {
        max-width: 100%;
    }

    .contact-form-section {
        padding: 2rem 1rem;
    }

    .contact-btn {
        width: 200px;
    }

    /*Ends*/

    .page-banner-info {
        top: 20px;
        max-width: calc(100% - 30px);
    }

    .page-banner-title {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .page-banner-desc {
        font-size: 13px;
        margin-left: 15px;
    }

    .home-page .page-banner-info {
        top: 50px;
        max-width: calc(100% - 30px);
    }

    .home-page .page-banner-title {
        font-size: 26px;
        font-weight: bold;
    }

    .section-title {
        font-size: 2rem;
    }

    .home-page .page-banner-desc {
        font-size: 14px;
    }

    .home-page .page-banner-link {
        font-size: 12px;
        padding: 6px 10px;
        margin-left: 0;
        margin-bottom: 20px;
    }

    .page-banner .owl-carousel {
        width: calc(100% - 50px);
        margin: 0 25px;
    }

    .page-banner .owl-nav {
        padding: 0 8px;
    }

    .secondary-title {
        font-size: 30px;
    }

    .service-section .col-md-4,
    .service-section .col-md-8 {
        display: block;
        flex: auto;
        width: 100%;
    }

    .service-nav {
        border: none;
    }

    .service-content .tab-pane {
        border-radius: 0;
    }

    .service-content-box {
        width: 100%;
        left: 0;
        bottom: 0;
    }

    .service-content-title {
        font-size: 20px;
    }

    .service-content-info {
        font-size: 16px;
    }

    .service-content-explore {
        font-size: 14px;
        padding: 4px 10px 6px;
    }

    .service-content .tab-pane img {
        width: auto !important;
        margin: 0 !important;
    }

    .service-nav .nav-pills .nav-link,
    .industries-section .service-nav .nav-pills .nav-link {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .testimonial-section .testimonial-desc {
        font-size: 18px;
        margin-bottom: 10px !important;
    }

    .testimonial-section .owl-carousel {
        margin: 0 20px;
        width: calc(100% - 40px);
    }

    .testimonial-section .owl-nav {
        left: -30px;
        width: calc(100% + 60px);
    }

    .testimonial-section .owl-nav .owl-next,
    .testimonial-section .owl-nav .owl-prev {
        margin: 0;
    }

    .testimonial-section .owl-dots {
        margin-top: 10px;
    }

    .contact-banner-wrapper {
        flex-direction: column;
    }

    .contact-banner-wrapper div {
        flex-direction: column;
    }

    .contact-banner-wrapper img {
        max-height: 100px;
    }

    .contact-banner-wrapper h2 {
        font-size: 18px;
        margin: 15px 15px 0;
    }

    .contact-button {
        margin: 15px 0 0;
    }

    section.technology-section {
        text-align: center;
    }

    .workflow-box {
        height: auto;
        margin: 0 15px 20px;
        text-align: center;
    }

    .offer-box {
        display: flex;
        flex-direction: column-reverse;
        margin-bottom: 30px;
    }

    .offer-box img {
        height: auto;
    }

    h4.offer-title {
        margin: 0 0 10px;
    }

    .design-tool-table {
        font-size: 14px;
        width: 100%;
    }

    .workwith-container .col-4 {
        width: 50%;
    }

    .workwith-container {
        width: 90%;
    }

    .workwith-container .col-4 span {
        font-size: 18px;
        width: calc(100% - 30px);
    }

    .workwith-container .col-4 span:before {
        height: 37px;
        border-width: 18px;
    }

    .firm-service-items {
        font-size: 16px;
    }

    .certification-bg {
        min-height: 210px !important;
    }

    .certifications-page .page-banner-info img {
        max-width: 50px;
        height: auto;
        max-height: none;
        display: block;
    }

    .certifications-page .page-banner-desc {
        align-items: center;
    }

    .rproj-box+.rproj-box,
    .recent-projects-section.eda-conversion-section .rproj-box+.rproj-box,
    .rproj-box-mt,
    .recent-projects-section.eda-conversion-section .rproj-box-mt {
        margin-top: 0;
    }

    .page-banner-link {
        margin-left: 15px;
        margin-top: 6px;
        font-size: 12px;
        padding: 6px 15px;
    }

    .iot-page section.page-banner-info {
        top: 6px;
    }

    .stat-box {
        margin: 0 auto 20px;
        width: 140px;
        height: 140px;
    }

    .iot-page .rproj-box .row-2 {
        flex-direction: column-reverse;
    }

    .iot-page .rproj-box h4 {
        margin-top: 20px;
    }

    .iot-page .rproj-box .row-2 {
        flex-direction: row;
    }

    .iot-page .rproj-box .row-3 .col-md-6 {
        height: auto;
    }

    .hover-box {
        min-height: auto;
    }

    .hover-box-info {
        opacity: 1;
        position: relative;
        padding: 25px 15px;
    }

    .hover-box-info p {
        margin-bottom: 0;
    }

    .page-banner-link.see-more-link {
        width: 100%;
    }

    footer {
        font-size: 14px;
        padding: 20px 0 0;
    }

    footer h4 {
        display: block;
        font-size: 16px;
        margin: 0 auto 20px;
        padding-right: 0;
        padding-bottom: 10px;
        text-align: center;
        width: 120px;
    }

    footer .nav-footer-links {
        flex-direction: row !important;
        justify-content: center;
        margin-bottom: 20px;
    }

    footer .nav-footer-links li {
        margin-bottom: 10px;
    }

    footer .nav-footer-links li+li {
        border-left: 1px solid #ccc;
    }

    footer .nav-footer-links li a {
        display: block;
        font-size: 14px;
        line-height: 14px;
        margin-bottom: 0;
        padding: 0 10px;
    }

    footer .footer-col-wrapper {
        flex-direction: column;
    }

    footer .foot-col.footer-contact {
        max-width: 100%;
        margin-bottom: 20px;
    }

    footer .footer-social .nav-social {
        flex-direction: row !important;
        justify-content: space-between !important;
    }

    footer .nav-social li a i {
        margin-right: 0.1em;
    }

    .banner-image {
        position: static;
    }

    section.product-main {
        margin-top: 0;
        position: relative;
    }

    .main-wrapper h1.product-main-title {
        font-size: 30px;
        margin-bottom: 0;
        position: absolute;
        top: -140px;
    }

    nav.nav-breadcrumb {
        margin-top: 10px;
    }

    nav.nav-breadcrumb li.breadcrumb-item {
        font-size: 12px;
        line-height: 24px;
        padding: 0;
    }

    nav.nav-breadcrumb li.breadcrumb-item.active {
        padding-left: 6px;
        padding-right: 4px;
    }

    nav.nav-breadcrumb li.breadcrumb-item:before {
        border-width: 12px;
        height: 24px;
        right: -24px;
        width: 24px;
    }

    nav.nav-breadcrumb .breadcrumb-item+.breadcrumb-item {
        margin-left: 13px;
    }

    nav.nav-breadcrumb li.breadcrumb-item a {
        font-size: 12px;
        line-height: 24px;
        padding: 0 1px 0 5px;
    }

    .product-main-content .product-subtitle {
        margin-bottom: 20px !important;
    }

    .product-main-content .product-description {
        margin-top: 10px !important;
    }

    ul.product-service-list li {
        font-size: 14px;
        padding: 4px 5px 6px;
    }

    ul.product-service-list li i {
        font-size: 16px;
        height: 24px;
        margin-right: 5px;
        width: 24px;
    }

    ul.product-service-list li:before {
        border-width: 17px;
        height: 34px;
        right: -34px;
        width: 34px;
    }

    .cards-list {
        padding-top: 0 !important;
    }

    .cards-list .col-md-8.offset-md-1.ps-5 {
        padding-left: 12px !important;
    }

    .cards-list h2 {
        margin-bottom: 20px !important;
    }

    .cards-list ul {
        margin-bottom: 10px !important;
    }
}

@media screen and (max-width: 767px) {
    .certifications-page .page-banner-info {
        top: 60px;
    }

    .about-us-banner .page-banner-by {
        font-size: 16px;
    }

    .about-us-banner .page-banner-desc {
        font-size: 12px;
    }

    .level-1 {
        font-size: 20px;
        margin-bottom: 40px;
    }

    .level-2 {
        font-size: 20px;
        min-height: 0;
    }

    .level-2-wrapper::after {
        display: none;
    }

    .level-2-wrapper::before {
        height: calc(100% + 10px);
    }

    .case-details .col-md-8 .col-md-4 {
        margin: 0;
        width: 50%;
    }

    .case-contact .col-md-8 {
        padding-right: 15px;
    }

    .arts-diagram-wrapper {
        max-width: 351px;
        margin: 0 auto;
        position: relative;
    }

    .arts-diagram-steps h5 {
        font-size: 12px;
        margin-bottom: 0;
    }

    .arts-diagram-steps p {
        font-size: 10px;
    }

    .arts-diagram-steps.step-1 {
        width: 120px;
        top: -20px;
    }

    .arts-diagram-steps.step-2 {
        left: 84%;
        top: 70px;
        width: 110px;
    }

    .arts-diagram-steps.step-3 {
        left: 84%;
        top: 160px;
        width: 110px;
    }

    .arts-diagram-steps.step-4 {
        top: 210px;
        width: 120px;
    }

    .arts-diagram-steps.step-5 {
        left: 55px;
        top: 150px;
        width: 115px;
    }

    .arts-diagram-steps.step-6 {
        left: 55px;
        top: 30px;
        width: 115px;
    }
}

@media screen and (max-width: 1023px) {
    .page-banner {
        margin-top: 32px;
    }
}


@media screen and (min-width: 768px) and (max-width: 1023px) {

    .page-banner-info,
    .home-page .page-banner-info,
    .iot-page section.page-banner-info {
        top: 120px;
        width: 60%;
    }

    .service-section .col-md-4 {
        width: 33.3%;
    }

    .service-section .col-md-8 {
        width: 66.67%;
    }

    .service-nav {
        border-bottom: 3px solid #000;
    }

    .service-nav {
        height: 400px;
    }

    .service-nav .nav-pills .nav-link {
        margin-bottom: 0;
    }

    .service-nav .nav {
        justify-content: space-between;
        height: 100%;
        padding-bottom: 30px;
    }

    .service-nav .nav-pills .nav-link,
    .industries-section .service-nav .nav-pills .nav-link {
        margin-bottom: 0;
    }

    .service-content .tab-pane {
        border-radius: 57px 0 57px 0;
        max-height: 400px;
    }

    .service-content .tab-pane img {
        min-height: 400px;
    }

    .workflow-section .col-md-6.col-lg-4 {
        margin-bottom: 25px;
    }

    .workflow-box {
        height: 100%;
    }

    .certification-bg {
        min-height: 300px !important;
    }

    .level-2 {
        font-size: 16px;
        padding: 10px;
        min-height: 70px;
    }

    .arts-diagram-wrapper {
        max-width: 460px;
        margin: 0 auto;
        position: relative;
    }

    .arts-diagram-steps h5 {
        font-size: 14px;
        margin-bottom: 0;
    }

    .arts-diagram-steps p {
        font-size: 12px;
    }

    .arts-diagram-steps.step-1 {
        width: 180px;
        top: -20px;
    }

    .arts-diagram-steps.step-2 {
        left: 92%;
        top: 90px;
        width: 200px;
    }

    .arts-diagram-steps.step-3 {
        left: 92%;
        top: 200px;
        width: 200px;
    }

    .arts-diagram-steps.step-4 {
        top: 270px;
        width: 180px;
    }

    .arts-diagram-steps.step-5 {
        left: 5px;
        top: 190px;
        width: 260px;
    }

    .arts-diagram-steps.step-6 {
        left: 5px;
        top: 70px;
        width: 260px;
    }

    .footer-copyright {
        flex-flow: column;
    }
}