@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap");

:root {
    --bs-blue: #0d6efd;
    --bs-indigo: #6610f2;
    --bs-purple: #6f42c1;
    --bs-pink: #d63384;
    --bs-red: #dc3545;
    --bs-orange: #fd7e14;
    --bs-yellow: #ffc107;
    --bs-green: #198754;
    --bs-teal: #20c997;
    --bs-cyan: #0dcaf0;
    --bs-black: #000;
    --balck-color: #000;
    --bs-white: #fff;
    --bs-gray: #6c757d;
    --bs-gray-dark: #343a40;
    --bs-gray-100: #f8f9fa;
    --bs-gray-200: #e9ecef;
    --bs-gray-300: #dee2e6;
    --bs-gray-400: #ced4da;
    --bs-gray-500: #adb5bd;
    --bs-gray-600: #6c757d;
    --bs-gray-700: #495057;
    --bs-gray-800: #343a40;
    --bs-gray-900: #212529;
    --bs-primary: #0d6efd;
    --bs-secondary: #6c757d;
    --bs-success: #198754;
    --bs-info: #0dcaf0;
    --bs-warning: #ffc107;
    --bs-danger: #dc3545;
    --bs-light: #f8f9fa;
    --bs-dark: #212529;
    --bs-primary-rgb: 13, 110, 253;
    --bs-secondary-rgb: 108, 117, 125;
    --bs-success-rgb: 25, 135, 84;
    --bs-info-rgb: 13, 202, 240;
    --bs-warning-rgb: 255, 193, 7;
    --bs-danger-rgb: 220, 53, 69;
    --bs-light-rgb: 248, 249, 250;
    --bs-dark-rgb: 33, 37, 41;
    --bs-white-rgb: 255, 255, 255;
    --bs-black-rgb: 0, 0, 0;
    --bs-body-color-rgb: 33, 37, 41;
    --bs-body-bg-rgb: 255, 255, 255;
    --bs-font-sans-serif: "Roboto", sans-serif;
    --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas,
        "Liberation Mono", "Courier New", monospace;
    --bs-gradient: linear-gradient(180deg,
            hsla(0, 0%, 100%, 0.15),
            hsla(0, 0%, 100%, 0));
    --bs-body-font-family: var(--bs-font-sans-serif);
    --bs-body-font-size: 1rem;
    --bs-body-font-weight: 400;
    --bs-body-line-height: 1.5;
    --bs-body-color: #212529;
    --bs-body-bg: #fff;
    --bs-border-width: 1px;
    --bs-border-style: solid;
    --bs-border-color: #dee2e6;
    --bs-border-color-translucent: rgba(0, 0, 0, 0.175);
    --bs-border-radius: 0.375rem;
    --bs-border-radius-sm: 0.25rem;
    --bs-border-radius-lg: 0.5rem;
    --bs-border-radius-xl: 1rem;
    --bs-border-radius-2xl: 2rem;
    --bs-border-radius-pill: 50rem;
    --bs-link-color: #0d6efd;
    --bs-link-hover-color: #0a58ca;
    --bs-code-color: #d63384;
    --bs-highlight-bg: #fff3cd;
    --main-color: #0076fd;
    --secondary-color: #ffc005;
    --balck-color: #17161a;
    --white-color: #fff;
}

body {
    font-family: "Roboto", sans-serif;
}

body::-webkit-scrollbar {
    width: 15px;
    background-color: #f2f2f2;
}

body::-webkit-scrollbar-thumb {
    border-radius: 100px;
    background-color: #0d6efd;
}

.btn-block {
    background: #000;
    position: relative;
    color: #fff !important;
    padding: 14px !important;
    border: 1px solid transparent;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
    text-decoration: none;
    border-radius: 4px;
    cursor: pointer;
    min-width: 180px;
}

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

.btn-block:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    border-radius: 200px;
    transition: 0.5s;
}

.btn-block:hover:before {
    background: rgba(255, 255, 255, .7);
    left: 60%;
    right: 60%;
}

.btn-block:hover:after {
    background: rgba(255, 255, 255, .7);
    top: 60%;
    bottom: 60%;
}

.btn-block:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: hsla(0, 0%, 100%, 0.5);
    transition: none;
}

.main-menu .sub-menu-wrap {
    background-color: #fff !important;
}

/* .btn-block:hover:after {
    width: 120%;
    background-color: hsla(0, 0%, 100%, 0);
    transition: all 0.6s ease-in-out;
} */

.btn-block:hover {
    color: orange !important;
    transition: all 0.6s ease-in-out;
}

.btn-border {
    background: #fff;
    position: relative;
    color: #000;
    padding: 14px !important;
    border: 1px solid #000;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
    text-decoration: none;
    border-radius: 4px;
}

.btn-border:hover {
    border: 1px solid #000;
    background-color: #000;
    color: orange;
}

.btn-border:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    border-radius: 200px;
    transition: 0.5s;
}

.btn-border:hover:before {
    background: rgba(255, 255, 255, .7);
    left: 60%;
    right: 60%;
}

.btn-border:hover:after {
    background: rgba(255, 255, 255, .7);
    top: 60%;
    bottom: 60%;
}

.btn-border:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: hsla(0, 0%, 100%, 0.5);
    transition: none;
}

a {
    text-decoration: none;
}

.d-none {
    display: none;
}

.form-control {
    color: #8c959f;
    padding: 20px;
    background: #f9fbfc;
    border: 1px solid #e3e3e3;
    margin-bottom: 25px;
    resize: none;
}

.form-control:focus {
    box-shadow: none;
}



/* header */
.main-header .container {
    max-width: 100%;
}

.main-header .btn {
    padding: 0.4em 1em;
    min-width: 162px;
}

.main-header .container {
    max-width: 100%;
    padding: 0px 50px;
}

.main-header {
    background: transparent;
    /* position: absolute; */
    width: 100%;
    top: 0;
    left: 0;
    z-index: 9;
}

.logo {
    width: 200px;
}



.main-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-menu ul.main-menu-ul {
    display: flex;
    align-items: center;
}

.main-menu ul.main-menu-ul>li {
    padding: 30px 15px;
    position: relative;
}

.main-menu ul.main-menu-ul>li:first-child {
    position: inherit;
}

.position-inherit {
    position: inherit !important;
}

.main-menu ul.main-menu-ul>li>a {
    font-weight: 500;
}

.main-menu ul.main-menu-ul>li a {
    text-decoration: none;
    padding: 0px 10px;
    color: #000;
    position: relative;
    display: flex;
    align-items: center;
    transition: all ease 0.5s;
    justify-content: center;
}

.app-icon-row {
    margin-top: 40px;
    justify-content: center;
}

.down-arrow {
    height: 8px;
    width: 8px;
    position: relative;
    right: 0;
    border-left: 1px solid var(--balck-color);
    border-bottom: 1px solid var(--balck-color);
    transform: rotate(-45deg);
    top: -2px;
    transition: all ease 0.5s;
    margin-left: 12px;
}

.main-menu ul.main-menu-ul {
    display: flex;
    align-items: center;
}

.sub-menu-wrap .sub-menu-inner .sub-menu-title .icon {
    padding-right: 15px;
}

.btn-link {
    position: absolute;
    right: 40px;
    bottom: 40px;
}

.hire-developer-section {
    padding: 80px 0;
    min-height: 400px;
    width: 100%;
}

.hire-developer-section .container {
    min-height: 400px;
    background-repeat: no-repeat;
    background-size: 100%;
}

.hire-developer {
    display: flex;
    justify-content: center;
    flex-direction: column;
    min-height: 400px;
    padding: 40px 40px;
    gap: 40px;
}

.hire-developer a {
    max-width: max-content;
}

.hire-developer h2 {
    font-weight: 600;
}

/* platform-section */

.platform-section {
    padding: 100px 0;
    background: #f8fcff;
}

.platform-section h2 {
    font-size: 48px;
    text-align: center;
}

.platform-section p {
    font-size: 20px;
    text-align: center;
}

.platform-section .app-icon-row h2 {
    font-size: 24px;
    margin-bottom: 60px;
}

.platform-section span {
    color: #000;
    font-size: 20px;
}

.company-row h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
}

.company-row {
    margin-bottom: 80px;
}

@media (min-width: 1200px) {
    .mobile-trigger {
        display: none !important;
    }

    .main-header {
        top: 0;
        left: 0;
        right: 0;
    }

    .main-header.scrolling_down {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        z-index: 1;
        background: var(--white-color);
        position: fixed;
        top: 0;
        opacity: 0;
        visibility: hidden;
        transform: translate3d(0, -100%, 0);
    }

    .main-header.scrolling_up {
        opacity: 1;
        visibility: visible;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        z-index: 1000;
        -webkit-transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
        -o-transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
        transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
        -webkit-transition-delay: 0.2s;
        -o-transition-delay: 0.2s;
        transition-delay: 0.2s;
        background-color: var(--white-color);
    }

    .main-menu ul.main-menu-ul>li a:hover {
        color: var(--main-color);
    }

    .main-menu ul.main-menu-ul>li a:hover .down-arrow {
        border-color: var(--main-color);
    }

    .sub-menu-wrap,
    .sub-menu-wrap .child-menu {
        min-width: 210px;
        position: absolute;
        left: 0;
        top: 84px;
        z-index: 10;
        padding-top: 15px;
        padding-bottom: 15px;
        background-color: var(--white-color);
        opacity: 0;
        visibility: hidden;
        -webkit-border-radius: 6px;
        border-radius: 6px;
        -webkit-box-shadow: 0 20px 32px -8px rgb(0 0 0 / 15%),
            0 0 1px rgb(0 0 0 / 5%);
        box-shadow: 0 20px 32px -8px rgb(0 0 0 / 15%), 0 0 1px rgb(0 0 0 / 5%);
        -webkit-transition-property: opacity, visibility, -webkit-transform;
        transition-property: opacity, visibility, -webkit-transform;
        -o-transition-property: transform, opacity, visibility;
        transition-property: transform, opacity, visibility;
        transition-property: transform, opacity, visibility, -webkit-transform;
        pointer-events: none;
    }

    .sub-menu-wrap.full-width {
        max-width: 1820px;
        width: 100%;
        margin: 0 auto;
        right: 0;
        z-index: 1111;
    }

    .main-menu ul.main-menu-ul>li:hover>.sub-menu-wrap,
    .sub-menu-wrap .sub-menu>li:hover>.child-menu {
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        visibility: visible;
        z-index: 200;
        transform: none;
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
        background-color: #fff;
    }

    .sub-menu-wrap.full-width {
        display: flex;
        align-items: flex-start;
        justify-content: center;
    }

    .sub-menu-wrap.service-menu .sub-menu-inner {
        padding: 0px 20px;
        width: calc(100% / 6);
    }

    .sub-menu-wrap.service-menu .sub-menu-inner li {
        margin: 0px -20px;
    }

    .sub-menu-wrap .sub-menu-inner .sub-menu-title {
        text-transform: uppercase;
        position: relative;
        padding-left: 0;
        display: inline-block;
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 0.8px;
        margin-bottom: 10px;
    }

    .sub-menu-wrap .sub-menu-inner ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .main-menu ul .sub-menu-wrap ul>li>a {
        padding: 8px 25px;
        display: block;
        width: 100%;
        display: inline-block;
        transition: all ease 0.5s;
        font-size: 0.96rem;
    }

    .sub-menu-wrap .sub-menu-inner>ul>li>a span:before {
        content: "";
        width: 6px;
        height: 6px;
        position: absolute;
        left: -2px;
        top: 0;
        bottom: 0;
        margin: auto 0;
        border-top: 1px solid #17161a;
        border-right: 1px solid #17161a;
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
        -webkit-transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
        -moz-transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
        -o-transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
        transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
    }

    .sub-menu-wrap .sub-menu-inner>ul>li>a span {
        position: relative;
        padding-left: 24px;
        display: inline-block;
        -webkit-transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
        -moz-transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
        -o-transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
        transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
    }

    .sub-menu-wrap .sub-menu-inner>ul>li>a:hover {
        background: rgba(136, 136, 136, 0.05);
    }

    .sub-menu-wrap .sub-menu-inner>ul>li>a:hover span:before {
        border-color: var(--main-color);
    }

    .sub-menu-wrap .sub-menu-inner>ul>li>a:hover span {
        padding-left: 18px;
    }

    .sub-menu-wrap.service-menu .sub-menu-inner {
        position: relative;
    }

    .sub-menu-wrap .child-menu {
        top: 0px;
        left: 100%;
    }

    .sub-menu-wrap .sub-menu>li.child-li>a>span {
        width: 100%;
        position: relative;
        display: inline-block;
        padding-right: 10px;
    }

    .sub-menu-wrap .sub-menu>li.child-li>a>span:after {
        content: "+";
        position: absolute;
        right: -10px;
        font-size: 16px;
        opacity: 1;
        top: 2px;
        transition: all ease 0.5s;
    }

    .sub-menu-wrap .sub-menu>li.child-li>a:hover>span:after {
        transform: rotate(45deg);
    }

    .main-menu ul.sub-menu .child-li {
        position: relative;
    }


}

@media (max-width: 1366px) {
    .main-menu ul.main-menu-ul>li {
        padding: 45px 10px !important;
    }
}

@media (max-width: 1199px) {

    .hire-resources .hero-info {
        margin-bottom: 40px;
    }

    .about-info .count {
        font-size: 56px !important;
    }

    .navbar-brand a {
        z-index: 111;
        position: relative;
        top: 8px;
    }

    .mobile-open .main-menu {
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        opacity: 1;
        z-index: 11;
    }

    .main-menu ul.main-menu-ul>li {
        width: 100%;
        font-size: 17px;
        position: relative;
        padding: 0 !important;
        margin: 0;
    }

    .main-menu {
        position: absolute;
        top: 0;
        height: 100vh;
        z-index: 1;
        background-color: var(--white-color);
        width: -webkit-calc(100% - 56px);
        width: calc(100% - 56px);
        text-align: left;
        overflow-y: auto;
        padding: 100px 0px;
        -webkit-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        transform: translateX(-100%);
        -webkit-transition-duration: 0.25s;
        -o-transition-duration: 0.25s;
        transition-duration: 0.25s;
        opacity: 0;
        left: 0;
        padding-left: 0;
        z-index: -1;
    }

    .logo {
        width: 200px;
    }

    .main-header .container {
        padding-left: 60px !important;
        padding-right: 15px !important;
    }

    .main-header {
        padding: 20px 0;
        box-shadow: 0 0 15px rgb(0 0 0 / 20%);
    }

    .request-quote-btn .btn {
        font-size: 14px;
        padding: 6px 10px !important;
        min-width: 135px !important;
    }

    .sub-menu-inner ul {
        display: none;
    }

    .main-menu ul.main-menu-ul {
        display: block !important;
    }

    .sub-menu-inner ul li a,
    .sub-menu-title,
    .main-menu ul.main-menu-ul>li a {
        display: block;
        line-height: 2em;
        padding: 5px 20px !important;
        position: relative;
        font-weight: 600;
    }

    .sub-menu-title {
        padding: 0 !important;
    }

    header .sub-menu-title:after,
    header .sub-menu-link:after {
        content: "+";
        position: absolute;
        right: 15px;
        font-size: 20px;
        opacity: 1;
        top: 2px;
        transition: all ease 0.5s;
        font-weight: 400;
    }

    .main-menu ul.main-menu-ul .sub-menu-wrap .sub-menu-inner ul {
        padding-left: 10px;
    }

    .main-menu ul.main-menu-ul .sub-menu-wrap .sub-menu-inner ul li a {
        font-weight: 400;
    }

    .child-open:after,
    .child-open .down-arrow:after {
        transform: rotate(45deg);
    }

    .main-menu ul.child-menu {
        display: none;
        padding-left: 10px;
    }

    .main-menu ul.child-menu li a {
        font-weight: 400;
    }

    .main-menu ul.main-menu-ul>li>a.child-open {
        background-color: rgba(136, 136, 136, 0.05);
    }

    .main-menu ul.main-menu-ul>li>a.child-open:before {
        height: 100%;
    }

    .main-menu ul.main-menu-ul>li>a.child-open,
    .main-menu ul.main-menu-ul>li a.child-open {
        color: var(--main-color);
    }

    .down-arrow {
        border: none !important;
        transform: none !important;
        right: 15px !important;
        position: absolute !important;
        border: none !important;
        transform: rotate(0) !important;
    }

    .down-arrow:after {
        content: "+";
        position: absolute;
        right: 0;
        font-size: 20px;
        opacity: 1;
        top: 6px;
        transition: all ease 0.5s;
        font-weight: 400;
    }

    .navbar-brand img {
        max-width: 235px;
    }

    .footer_map_iamge svg {
        max-width: 100%;
    }
}

@media (max-width: 991px) {

    .sub-menu-wrap {
        display: none;
    }

    .main-menu ul.main-menu-ul>li .down-arrow:after {
        font-size: 24px;
    }


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

    .hero-home-box {
        display: none;
    }

    .we-can-section #tabimage {
        display: none;
    }

    .sound_image img {
        height: auto;
    }

    .get-in-touch-info h2 {
        font-size: 36px !important;
    }

    .get-in-touch-info p.note {
        margin-bottom: 30px;
    }

    .lets_talk {
        margin-top: 30px !important;
    }

    body .slick-arrow.slick-prev {
        left: 25% !important;
    }

    body .slick-arrow.slick-next {
        right: 25% !important;
    }

    .testimonial_item {
        padding: 20px !important;
    }

    .client-img {
        margin-bottom: 40px !important;
    }

    .percent {
        text-align: center;
    }

    .about-info h3 {
        text-align: center;
    }

    .about-info .percent {
        font-size: 40px;
        max-width: max-content;
        margin: 0 auto 10px;
    }

    .really_us p {
        padding: 15px 0 15px 10px;
        font-size: 18px !important;
        font-weight: 700;
        margin: 0;
    }

    .hire-developer-section .container {
        background-size: cover;
    }

    .hire-developer h2 {
        font-weight: 600;
        font-size: 30px;
    }

}

@media (max-width: 767px) {
    .home-hero-banner .home-action {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 20px;
    }

    .hero-info h1 {
        margin-bottom: 30px;
    }

    .hero-banner {
        background-image: none !important;
    }

    .mobile-img {
        margin-bottom: 30px;
    }

    .mobile-info h2 {
        font-size: 36px !important;
    }

    .hero-info h1 {
        font-size: 36px !important;
    }

    .about-info h2 {
        font-size: 36px !important;
    }

    .about-info .count {
        font-size: 56px !important;
    }

    .inner-header h2 {
        font-size: 36px !important;
    }

    .footer_contact .row .row .col-12 .contact_cards {
        justify-content: center;
        margin: 10px 0;
    }

    .footer_contact .row .row .col-12:last-child .contact_cards {
        justify-content: center !important;
        margin: 10px 0;
    }

    .footer .copyright_text {
        text-align: center;
    }

    .other_links {
        text-align: center;
        margin: 10px 0;
    }

    .software-icons-section h2 {
        font-size: 38px !important;
    }

}

/* header */
header {
    padding: 0;
    position: relative;
    z-index: 111;
}

.navbar {
    padding: 0;
}

.navbar>.container-fluid {
    display: flex;
    flex-wrap: inherit;
    align-items: center;
    justify-content: space-between;
}

.nav-item a {
    color: #000;
    border-bottom: 2px solid transparent;
    margin: 0 4px;
    white-space: nowrap;
    font-weight: 500;
}

header .btn-block {
    text-transform: uppercase;
    padding: 14px 25px !important;
}

.navbar-expand-lg .navbar-nav {
    align-items: center;
    column-gap: 20px;
}

/* hero bg */

.home-hero-banner {
    padding: 87px 0 87px;
}

.hero-home {
    position: relative;
    height: 100%;
    width: 100%;
    inset: 0px;
    color: transparent;
    object-fit: contain;
}

.hero-home-box {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    z-index: -1;
}

.home-hero-banner .home-action {
    display: flex;
    column-gap: 20px;
    margin-top: 30px;
}

.home-hero-banner .home-action a {
    min-width: 176px;
    max-width: max-content;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
}

.home-icon {
    display: flex;
    align-items: start;
    column-gap: 10px;
    margin-top: 20px;
    margin-left: 10px;
}


.home-icon span {
    font-weight: 300;
    font-style: italic;
}



/* service */


.service-bannner {
    border-bottom: 1px solid #e0e0e0;
    padding: 60px 0;
}

.service-bannner .hero-info {
    max-width: 800px;
}


.service-bannner {
    background-repeat: no-repeat;
    background-position: right bottom;
}

.mobile-info h2 {
    font-size: 48px;
}

.mobile-info p {
    font-size: 20px;
}

.software-icons-section {
    padding: 100px 0 0;
    text-align: center;
}

.software-icons-section h2 {
    margin-bottom: 20px;
}

.software-icons-section p {
    max-width: 900px;
    margin: 0 auto;
}

.software-icons-section .app-icon {
    color: #000;
    display: flex;
    justify-content: center;
    padding: 20px 0;
}

.software-icons-section .app-icon span {
    font-size: 24px;
    padding-left: 10px;
}

.btn-row a {
    font-size: 20px;
    text-transform: capitalize;
    max-width: 180px;
    display: block;
    margin: 50px auto 0;
}

.technologies-dec {
    flex-direction: column;
}

.technologies-dec h3 {
    font-size: 24px;
}


/* quality-assurance-section */

.quality-assurance-section {
    background: #f0f1fe;
    padding: 100px 0;
    margin-bottom: 100px;
}

.quality-assurance-info h2 {
    font-size: 48px;
}

.quality-assurance-info p {
    font-size: 20px;
}

.quality-assurance-item h3 {
    font-size: 20px;
    font-weight: 700;
}

.quality-assurance-item p {
    font-size: 20px;
}

.service-bannner {
    overflow: hidden;
}


/* Development */


.development-info {
    min-height: 690px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.development-info h2 {
    font-size: 48px;
    font-weight: 700;
    display: flex;
    align-items: center;
    column-gap: 10px;
    margin-bottom: 20px;
}

.development-info p {
    font-size: 24px;
}

.development-info a {
    text-transform: uppercase;
}

.development-info a {
    margin-top: 30px;
    display: flex;
    max-width: fit-content;
}

.development-img {
    max-width: 550px;
}


/* mobile-application */

.mobile-application {
    padding: 100px 0;
}

.bg-color {
    background-color: #f9f9f9;
}

/* footer bg */
.first_bg {
    box-shadow: 0 18px 17px rgba(0, 0, 0, .03);
    border-radius: 10px;
    padding: 30px 64px;
    position: relative;
    margin-bottom: 100px;
    background: url(assets/images/Let-collaborate.webp);
    background-repeat: no-repeat;
    width: 100%;
    background-color: #0075ff;
}

.icon-cross-up-arrow:before {
    content: "⮝";
    color: #fff;
}

.hero_buttons .icon-cross-up-arrow {
    margin-right: 10px;
}

.hero_buttons a {
    text-transform: uppercase;
}

.lets_talk {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.lets_talk p {
    color: #fff;
    font-weight: normal;
}

/* hero info */
.hero-info h1 {
    font-size: 56px;
    line-height: normal;
    font-weight: 700;
}

.hero-info p {
    font-size: 20px;
}

.hero-banner {
    position: relative;
}

.hero-banner:before {
    content: "";
    position: absolute;
    right: 20;
    height: calc(100% - 1px);
    width: 100%;
    background: url(../images/line-bg.webp);
    background-repeat: no-repeat;
    background-position: 100% 0;
    background-size: contain;
    z-index: -1;
    top: -110px;
}

.border-bottom {
    border-bottom: 2px dashed #e3e3e3 !important;
    padding-bottom: 40px;
}

/* contact us */
.contact_cards_image {
    height: 50px;
    width: 50px;
    overflow: hidden;
    margin-right: 18px;
}

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

.contact_cards_text p {
    margin-bottom: 8px;
    color: #333;
    line-height: normal;
}

.contact_cards_text a {
    color: #0d63fd;
    font-weight: 700;
}

.contact_cards_image {
    height: 50px;
    width: 50px;
    overflow: hidden;
    margin-right: 18px;
    min-width: 50px;
}

.contact_form {
    background: #f9fbfc;
    padding: 70px 48px;
}

.get-in-touch-info h2 {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #fff;
}

.get-in-touch-info p.note {
    color: #fff;
    font-size: 30px;
}

/* get in touch */

.get-in-touch .first_bg {
    box-shadow: 0 18px 17px rgba(0, 0, 0, .03);
    border-radius: 10px;
    padding: 30px 64px;
    position: relative;
    margin-bottom: 100px;
    background: url(../images/Let-collaborate.webp);
    background-repeat: no-repeat;
    width: 100%;
    background-color: #0075ff;
}

/*  Happy clients */
.happy-clientss {
    position: relative;
    z-index: 0;
    padding: 80px 0 150px;
    background: #fbfbfb;
    margin-bottom: 80px;
}

.testimonial_item {
    border-radius: 4px;
    border: 1px solid #eee;
    box-shadow: 0 0 10px 7px rgba(0, 0, 0, .02);
    padding: 3.75rem 7.5rem 3.75rem 1.875rem;
}

.testimonials_btn-play-video {
    bottom: 16px;
    right: 30px;
    position: absolute;
    z-index: 11;
    width: 74px;
    height: 74px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 50%;
    flex-shrink: 0;
    cursor: pointer;
    transition: all .3s ease-in-out;
}

.testimonials_btn-play-video:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    border: 1px solid #fff;
    border-radius: 50%;
    animation: testimonials .7s linear infinite;
    z-index: -1;
    transform: scale(1);
    transition: all .3s;
}

@keyframes testimonials {
    0% {
        box-shadow: 0 0 0 0 rgba(10, 87, 244, .3), 0 0 0 .5em rgba(10, 87, 244, .3)
    }

    to {
        box-shadow: 0 0 0 .5em rgba(10, 87, 244, .3), 0 0 0 1em rgba(10, 87, 244, 0)
    }
}

.header-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 40px;
}

.happy-clientss {
    position: relative;
}

.happy-clientss:after {
    content: "";
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
    background: url(/assets/images/button-bg.webp);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: 50%;
}

.slick-arrow.slick-prev:before {
    border-left: 4px solid #000 !important;
    border-bottom: 4px solid #000 !important;
}

.slick-arrow.slick-next:before {
    border-right: 4px solid #000 !important;
    border-top: 4px solid #000 !important;
    left: -5px;
}

.slick-arrow {
    border: none !important;
    background: transparent !important;
}

.slick-arrow.slick-prev {
    left: 45% !important;
}

.slick-arrow.slick-next {
    right: 45% !important;
}

.happyclients_testimonial-user-img {
    height: 55px;
    width: 55px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 30px;
}

.happyclients_testimonial_user {
    display: flex;
    align-items: center;
}

.happyclients_testimonial-user-name h3 {
    font-size: 16px;
    font-style: italic;
}

.happyclients_testimonial-user-name p {
    margin: 0;
    font-style: italic;
}

.happy-clients_testimonial p.note {
    margin-bottom: 20px;
    font-size: 20px;
    line-height: 29px;
}

.happy-clients_testimonial .sub-title {
    color: #212121;
    margin: 0 0 30px;
    font-size: 1.25rem;
    display: flex;
    flex-direction: column;
    font-weight: 500;
}

.happy-clients_testimonial .sub-title span {
    font-weight: 400;
}

.slick-arrow {
    bottom: -100px;
    top: auto !important;
}

.client-img {
    position: relative;
    width: 336px;
    overflow: hidden;
    height: 327px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.client-img:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    background: url(../images/client-polygon-client.webp) 50% no-repeat;
    background-size: 100%;
}

.client-img img {
    width: 100%;
}

.client-pic {
    width: 266px;
    height: 299px;
    margin-left: auto;
    position: absolute;
    right: 0;
    top: 28px;
}

.happy-clientss .inner-header {
    margin-bottom: 60px;
}

/* Service */
.service-bg {
    border-bottom: 1px solid #e0e0e0;
}

.service-bg {
    position: relative;
    margin-top: -120px;
    padding-top: 130px;
    padding-bottom: 40px;
    min-height: 500px;
}

.service-bg:before {
    content: "";
    position: absolute;
    width: 700px;
    height: 100%;
    right: 0;
    background: url(/assets/images/line-bg-service-1.webp) !important;
    background-repeat: no-repeat !important;
    background-size: contain !important;
    background-position: top !important;
    z-index: -1;
    top: 0;
}

.service-section .mobile_app_mockup_text h2 {
    font-size: 48px;
    font-weight: 700;
}

.service-section .mobile_app_mockup_text p {
    font-size: 20px;
}

.service-webdev {
    text-align: center;
}

.service-webdev h2 {
    font-size: 32px
}

.service-webdev p {
    font-size: 22px;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

.services_app_develop_facilities {
    display: flex;
    align-items: center;
    column-gap: 20px;
    margin-top: 70px;
    color: #000;
}

.services_app_develop_facilities .tab_box {
    font-size: 24px;
}

.services_app_develop_view {
    text-align: center;
    margin-top: 70px;
    margin-bottom: 60px;
}

.services_app_develop_view a {
    font-size: 20px;
    min-width: 150px;
    text-transform: capitalize;
}

.services_hero__image_left {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    transform: translateX(-20%);
}

.services_hero__image_left img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
}

.position-relative {
    position: relative !important;
}

.services_hero-right {
    padding: 170px 0;
}

.service-webdev {
    margin-top: 80px;
}


/* Why Choose */

.why-choose-section {
    padding: 80px 0 160px;
}

.why-choose-section .slick-track {
    display: flex !important;
}

.why-choose-section .slick-slide {
    height: inherit !important;
}


.why-choose-section .items-block {
    box-shadow: 0 0 10px 7px rgba(0, 0, 0, .03);
    border: 2px solid #eee;
    padding: 25px 20px;
    background: #fff;
    border-radius: 20px;
    height: calc(100% - 0px);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.why-choose-section .items-block:hover {
    background: #0076fd;
}

.why-choose-section .items-block:hover h3 {
    color: #fff;
}

.why-choose-section .items-block h3 {
    margin-bottom: 1.25rem;
    font-size: 1.875rem;
    line-height: 2rem;
    color: #212121;
    font-weight: 500;
}

.why-choose-section .items-block:hover p {
    color: #fff;
}

.why-choose-section .items-block p {
    font-size: 1.125rem;
    margin: 0;
    line-height: 1.75rem;
    color: #666;
}

.why-choose-section .items-img {
    text-align: center;
    margin-bottom: 30px !important;
}

.why-choose-section .items-img {
    margin: 0 auto;
}

.icon-number {
    background-color: #fff;
    width: 40px;
    height: 40px;
    position: absolute;
    top: 0;
    right: 0;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
    font-size: 20px;
    font-weight: 700;
}

.why-choose-section .items-block:hover .icon-number {
    display: flex;
}


/* Our App Development */
.our-development {
    padding: 80px 0;
}

.inner-header {
    text-align: center;
    margin-bottom: 100px;
}

.inner-header h2 {
    font-size: 48px;
    font-weight: 700;
    max-width: 900px;
    margin: 0 auto;
}

.inner-header p {
    font-size: 20px;
    max-width: 80%;
    margin: 0 auto;
}

.bg-color-1 {
    background: #f4fcff;
}

.bg-color-2 {
    background: #e8fffd;
}

.bg-color-3 {
    background: #f1fef0;
}

.bg-color-4 {
    background: #f0f1fe;
}

.bg-color-5 {
    background: #fffcf6;
}

.development-block {
    padding: 40px 40px 80px;
    margin-bottom: 22px;
    text-align: center;
    height: calc(100% - 20px);
    position: relative;
}

.development-block .img-block {
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.development-block .img-block img {
    height: 250px;
}

.development-block h3 {
    font-size: 24px;
    font-weight: 700;
}

.development-block p {
    font-size: 20px;
}

.development-block .img-block {
    margin-bottom: 32px;
}

.development-action {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.development-action a {
    text-align: center;
    text-transform: uppercase;
    padding: 14px 40px !important;
}

/* why-hire-section */

.why-hire-section {
    background: #f6f6f6;
    padding: 100px 0;
}


.why-hire-section .row {
    row-gap: 20px;
}


.why-hire-items {
    background-color: #fff;
    text-align: center;
    padding: 25px;
    display: flex;
    flex-direction: column;
    height: 100%;
    row-gap: 20px;
}

.why-hire-items h3 {
    margin: 0;
}

.why-hire-items p {
    margin: 0;
}

.why-hire-items img {
    max-width: fit-content;
    margin: 0 auto 0;
}

.why-hire-items .inner-header h2 {
    margin-bottom: 20px;
}


/* Technologies */

.technologies-section {
    padding: 80px 0;
}

.nav-tabs {
    display: flex;
    justify-content: space-around;
    border: none;
}

.nav-tabs .nav-link {
    font-size: 1.75rem;
    color: #000;
    font-weight: 500;
}

.nav-tabs .nav-link.active {
    color: #0075ff;
    border-bottom: 2px solid #0075ff !important;
    z-index: 0;
    position: relative;
    border: none;
}

.nav-tabs .nav-link:hover {
    border: none;
}

.nav-tabs .nav-link.active:before {
    content: "";
    position: absolute;
    height: 12px;
    width: 12px;
    bottom: -19px;
    background: url(../images/polygon.webp);
    background-repeat: no-repeat;
    left: 50%;
    right: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

/* technologies */

.technologies-item {
    background: #f5f2f2;
    padding: 18px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 8px;
    height: calc(100% - 18px);
    flex-grow: 1;
}

.technologies-item:hover {
    box-shadow: 0 0 15px 1px #dedfec;
}

.technologies-header {
    display: flex;
    align-items: center;
    column-gap: 20px;
}

.technologies-header h3 {
    font-size: 24px;
}

.technologies-dec {
    display: flex;
    column-gap: 20px;
    margin-top: 33px;
}

/* About info */

.about-company {
    padding: 80px 0;
}

.about-info {
    padding-left: 40px;
    border-left: solid 4px #0075ff;
}

.about-info h2 {
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 30px;
    max-width: 90%;
}

.about-info h2 strong {
    font-weight: 600;
}

.about-info p {
    font-size: 20px;
}

.counter-row {
    padding: 60px 0 0;
}

.about-info .count {
    font-size: 96px;
    font-weight: 600;
}

.about-info h3 {
    font-size: 18px;
    font-weight: 400;
}

.about-info .percent {
    font-size: 40px;
    display: flex;
    line-height: normal;
}

.about-info .countSup {
    top: 25px;
    font-size: 40px;
}

/* Our Case Studies */

.case-studies-section {
    padding: 80px 0;
}

.case-studies-section .inner-header {
    margin-bottom: 60px;
}

.case-studies-section .img-box img {
    width: 100%;
}


/*  Happy clients */


/* faq */

.faq-section {
    padding: 90px 0;
}

.faq-section .head-title h2 {
    text-align: center;
    font-weight: 700;
    font-size: 48px;
    margin-bottom: 30px;
}

.faq-section .accordion-item {
    border-top: none;
    border-left: none;
    border-right: none;
}

.faq-section .accordion-item h2 {
    padding: 20px 0;
    display: block;
}

.collapse.show {
    border-top: var(--bs-accordion-border-width) solid var(--bs-accordion-border-color);
}

.accordion-button:focus {
    z-index: 3;
    border-color: #000;
    outline: 0;
    box-shadow: none;
    background-color: transparent;
}

.accordion-button:not(.collapsed) {
    box-shadow: none;
    background-color: transparent;
}

.faq-section .accordion-button {
    color: #000;
    background: #fbfbfb;
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 30px;
}

.faq-section .accordion-button:before,
.faq-section .accordion-button:after {
    display: none;
}

.faq-section .accordion-button .accordion-open-close {
    position: absolute;
    height: 40px;
    width: 40px;
    right: 0;
    border-radius: 100%
}

.faq-section .accordion-button .accordion-open-close:before {
    content: "";
    position: absolute;
    right: 18px;
    top: 11px;
    height: 17px;
    width: 2.5px;
    background: #000;
}

.faq-section .accordion-button .accordion-open-close:after {
    content: "";
    position: absolute;
    right: 11px;
    top: 19px;
    height: 2px;
    width: 17px;
    background: #000;
    transform: none !important;
}

.accordion-button:not(.collapsed) .accordion-open-close:before {
    transform: rotate(90deg);
    opacity: 0;
}

.accordion-body h6 {
    font-weight: 700;
    font-size: 20px;
}

.accordion-body p {
    margin-top: 0;
    margin-bottom: 1rem;
}


/* portfolio */
.portfolio-banner {
    padding: 60px 0;
    background-color: #f4f4f4f0;
}

.portfolio-breadcrumb {
    background-color: #f2f2f2;
    margin-bottom: 20px;
}

.breadcrumb-item a {
    color: #000;
}

.breadcrumb {
    margin-bottom: 0;
}

.portfolio-banner h2 {
    font-size: 48px;
    max-width: 700px;
}

.section--hero-portfolio {
    min-height: 460px;
    background-size: cover;
    background-position: bottom;
}

.section--hero-portfolio .container {
    height: 100%;
    min-height: 460px;
}

.section--hero-portfolio .row {
    height: 100%;
    min-height: 460px;
}


.section--hero-portfolio .wrapper-inside h1 {
    font-size: 40px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

.section--hero-portfolio .wrapper-inside p {
    color: #fff;
    margin-bottom: 20px;
}


/* -----------------------------------
      Gallery Section
--------------------------------------*/
.portfolio-section {
    padding: 80px 0;
}

.portfolio-section h2 {
    font-size: 28px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
}

.portfolio-menu {
    text-align: center;
}

.control {
    background: var(--white-color);
    color: var(--main-color);
    padding: 6px 25px;
    border: 2px solid var(--main-color);
    border-radius: 50px;
    margin: 5px;
    cursor: pointer;
    -webkit-transition: all 05s ease;
    -moz-transition: all 05s ease;
    -ms-transition: all 05s ease;
    -o-transition: all 05s ease;
    transition: all 0.5s ease;
}

.control:hover {
    background: var(--main-color);
    color: var(--white-color);
}

.mixitup-control-active {
    color: var(--white-color);
    background: var(--main-color);
}

.fancybox-container button:focus {
    outline: 0;
    box-shadow: none;
}

.portfolio-item {
    padding-top: 30px;
}

.pd {
    padding: 0;
    padding: 10px;
}

.pd img {
    height: 100%;
    transition: all 0.5s;
}

.container-work-item-hover-wrapper {
    height: 100%;
    padding: 17px 17px 17px 17px;
    border: 1px solid #F4F5FB;
    display: block;
    position: relative;
    overflow: hidden;
    background-color: #fff;
}

.container-portfolio-work-hover-wrapper {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    padding: 40px 30px;
    width: 100%;
    height: 100%;
    color: white;
    line-height: 24px;
    justify-content: center;
}

.container-work-item .work-desc,
.container-work-item--big .work-desc {
    width: 100%;
    height: 100%;
    justify-content: center;
    display: flex;
    flex-direction: column;
    padding-top: 16px;
}

.container-work-item .work-desc div:not(.work-logo-color),
.container-work-item--big .work-desc div:not(.work-logo-color) {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.work-item-category ul li {
    float: left;
    margin-right: 15px;
    margin-bottom: 10px;
    color: #fdad31;
    font-size: 14px;
    font-weight: 700;
    line-height: normal;
}

.work-desc .work-client-name {
    margin-bottom: 10px;
    font-weight: 700;
    color: #494d9f;
}

.work-desc span {
    display: block;
}

.container-work-item .work-desc .work-title {
    font-weight: 500;
    line-height: normal;
    color: #494d9f;
    margin-bottom: 30px;
}

.work-desc span {
    display: block;
}

.work-item-category {
    float: left;
    width: 100%;
    min-height: 35px;
    margin-bottom: 10px;
}

.container-work-item:hover .image-hover {
    opacity: 1;
}

.container-work-item .image-hover {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    transition: opacity 300ms;
    opacity: 0;
    background-color: #494d9f;
    z-index: 111;
}

.container-portfolio-slider-work-hover-desc {
    height: 100%;
    margin-bottom: 10%;
    display: flex;
    align-items: flex-start;
    color: var(--white-color);
}

.container-work-item .image-hover .image-hover-title {
    position: relative;
    color: var(--white-color);
    font-weight: 500;
    margin-top: auto;
}

.container-work-item .image-hover .image-hover-title:after {
    position: absolute;
    bottom: -2px;
    left: 0;
    display: block;
    width: 100%;
    height: 2px;
    content: "";
    background-color: var(--white-color);
}

.work-logo-white {
    margin-bottom: 20px;
}

.work-logo-white img {
    height: 70px;
    width: 150px;
}

.work-logo-color {
    display: none;
    width: 50%;
    margin-bottom: 10px;
}

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

/* We can help */

.we-can-section {
    padding: 90px 0;
    background-color: #fbfbfb;
}


.we-can-section .accordion-item {
    border-top: none;
    border-left: none;
    border-right: none;
}

.we-can-section .accordion-item h2 {
    padding: 20px 0;
    display: block;
    border-bottom: #dee2e6 solid 1px;
}

.accordion-button:focus {
    z-index: 3;
    border-color: #000;
    outline: 0;
    box-shadow: none;
    background-color: transparent;
}

.accordion-button:not(.collapsed) {
    box-shadow: none;
    background-color: transparent;
}

.we-can-section .accordion-button {
    color: #000;
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 30px;
}

.we-can-section .accordion-button:before,
.we-can-section .accordion-button:after {
    display: none;
}

.we-can-section .accordion-button .accordion-open-close {
    position: absolute;
    height: 40px;
    width: 40px;
    right: 0;
    border-radius: 100%
}

.we-can-section .accordion-button .accordion-open-close:before {
    content: "";
    position: absolute;
    right: 18px;
    top: 11px;
    height: 17px;
    width: 2.5px;
    background: #000;
}

.we-can-section .accordion-button .accordion-open-close:after {
    content: "";
    position: absolute;
    right: 11px;
    top: 19px;
    height: 2px;
    width: 17px;
    background: #000;
    transform: none !important;
}

.accordion-button:not(.collapsed) .accordion-open-close:before {
    transform: rotate(90deg);
    opacity: 0;
}

.accordion-body h6 {
    font-weight: 700;
    font-size: 20px;
}

.accordion-body p {
    margin-top: 0;
    margin-bottom: 1rem;
}

.accordion-body .strokeeffect {
    color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #949494;
    font-family: "Poppins";
    font-style: normal;
    font-weight: 400;
    font-size: 70px;
    line-height: 105px;
}

.accordion-body h3 {
    font-style: normal;
    font-weight: 600;
    font-size: 60px;
    line-height: 63px;
    color: #000;
    margin-bottom: 20px;
}

.accordion-body h3 span {
    color: #0091ff;
}

#tabimage #servicestabimg {
    margin-top: 0;
    transform: translate(272px, -44px);
    width: 346px;
    height: 461px;
}

.tabimage {
    position: relative;
}

.service-circle {
    width: 59px;
    height: 80px;
    position: absolute;
    background: #fff;
    border-radius: 57px;
    right: 63%;
    margin-top: 16px;
    top: 45%;
}

#cricleimg1 {
    right: 68%;
    height: auto;
    position: absolute;
    top: 4%;
    width: 122px !important;
    height: 167px;
    animation: oval-zoom1 6s linear infinite;
}

#cricleimg2 {
    right: 69%;
    height: auto;
    position: absolute;
    top: 70%;
    width: 122px !important;
    height: 167px;
    animation: oval-zoom1 6s linear infinite;
}

/*  */

.hire-we-can-section {}

@keyframes oval-zoom1 {
    0% {
        transform: scale(.9);
        transition: 0.6s all ease
    }

    50% {
        transform: scale(1.1);
        transition: 0.6s all ease
    }

    100% {
        transform: scale(.9);
        transition: 0.6s all ease
    }
}


/* footer */

.easy_connect {
    background: #f5f5f5;
}

.hiring {
    border-top: 1px solid #dddbdb;
    padding-top: 42px;
}

.really_us {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.really_us_image {
    margin-top: -12px;
    max-width: 97px;
}

.really_us p {
    padding: 25px 0 25px 10px;
    font-size: 32px;
    font-weight: 700;
    margin: 0;
}

.footer_other_links {
    background: #fff;
    color: #575757;
    padding: 25px 0;
}

.other_links a {
    letter-spacing: 1.8px;
    color: #000;
}

.other_links .divider {
    padding: 0 5px;
}

.footer_contact {
    margin-top: 50px;
    background: #f5f5f5;
    padding: 15px 0;
}

.footer_li li {
    margin-top: 25px;
}

.footer_li li a {
    text-decoration: none;
    color: #232323;
}

.footer label {
    font-weight: 700;
    font-size: 18px;
}

.footer_contact .row .row .col-12:last-child .contact_cards {
    text-align: right;
    justify-content: end;
}

/* Menu */

.mobile-trigger {
    position: absolute;
    display: block;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    right: 10px;
    z-index: 56;
    top: 17px;
}

.mobile-trigger i {
    position: absolute;
    height: 2px;
    display: block;
    width: 25px;
    background: var(--balck-color);
    left: 0px;
    top: 23px;
    transition: all 0.2s linear;
    right: 0;
    margin: 0 auto;
}

.mobile-trigger i:after,
.mobile-trigger i:before {
    content: "";
    height: 100%;
    width: 100%;
    background: var(--balck-color);
    left: 0;
    position: absolute;
}

.mobile-trigger i:before {
    top: -9px;
    transform: rotate(0deg);
    transition: transform 0.2s linear, top 0.2s linear 0.2s;
}

.mobile-trigger i:after {
    top: 9px;
    transform: rotate(0deg);
    transition: transform 0.2s linear, top 0.2s linear 0.2s;
}

.mobile-open .mobile-trigger i:before {
    top: 0;
    transform: rotate(-45deg);
    transition: all 0.2s linear, transform 0.2s linear 0.2s;
}

.mobile-open .mobile-trigger i:after {
    transform: rotate(45deg);
    top: 0;
    transition: all 0.2s linear, transform 0.2s linear 0.2s;
}

.mobile-open .mobile-trigger i {
    background: transparent;
    transition: all 0.2s linear;
}

.image-view-link--mobile {
    background: #0076fd;
    position: relative;
    color: #fff !important;
    padding: 14px !important;
    border: 1px solid transparent;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
    text-decoration: none;
    border-radius: 4px;
    text-transform: uppercase;
}


.work-item-category ul li {
    border: solid 1px #f2f2f2;
    padding: 6px 12px;
    border-radius: 50px;
}


/* Doing Business With us is Easy */

.doing-business-section {
    padding: 80px 0;
}

.doing-business-item {
    display: flex;
    align-items: start;
    column-gap: 20px;
    margin: 10px 0;
}

.doing-business-dec h6 {
    font-style: normal;
    font-weight: 700;
    font-size: 22px;
    line-height: 29px;
    color: #000;
}

.doing-business-dec p {
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    color: #000;
}


/* Great Code, Great Company */


.code-company-section {
    padding: 80px 0;
}

.company-item {
    background: #fbfbfb;
    box-shadow: 0 28px 43px rgba(0, 0, 0, .1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-wrap: wrap;
    align-items: flex-start;
    padding: 16px;
    margin-bottom: 20px;
}

.company-item h6 {
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 40px;
    letter-spacing: .1px;
    color: #232323;
    width: 100%;
}

.company-item p {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    color: #232323;
    width: 100%;
}

.company-hero .hero-info h1 {
    text-align: center;
}

.company-hero .hero-info p {
    text-align: center;
}

.company-hero .home-action {
    display: flex;
    justify-content: center;
}

.company-hero .company-hero-action {
    justify-content: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.company-action {
    max-width: max-content;
    align-items: center;
}

/* developers header */
.developers-header {
    margin-bottom: 70px;
}

.developers-header h2 {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
}

.developers-header p {
    font-size: 24px;
    text-align: center;
}


/* technology-skill */
.technology-section {
    background-color: #f9f9f9;
    padding: 100px 0;
}

.technology-skill {
    padding: 30px;
    text-align: center;
    background-color: #fff;
    height: 100%;
    cursor: pointer;
    transition: opacity 300ms ease 0s;
}

.technology-skill:hover {
    cursor: pointer;
    background-color: #0076fd;
    transition: opacity 300ms ease 0s;
}

.technology-skill span img {
    max-width: 161px;
    margin-bottom: 30px;
}

.technology-skill p {
    text-align: left;
}

.technology-skill ul li {
    text-align: left;
}

/* Who We Are */

.who-we-are-section {
    padding: 80px 0;
    position: relative;
}

.who-we-are-section::after {
    background: url(../images/our_company_who_we_are.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50%;
    background-attachment: fixed;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.who-we-are-section .inner-header {
    text-align: left;
    color: #fff;
    margin-bottom: 0;
}

.who-we-are-section .inner-header h2 {
    text-align: left;
    max-width: 100%;
}

.who-we-are-section .inner-header:first-child {
    margin-bottom: 60px;
}

.who-we-are-section .inner-header p {
    font-size: 18px;
    max-width: 100%;
    margin: 0 auto 20px;
}

.copyright_text {
    text-align: right;
}

.hiddenStyle {
    position: absolute;
    overflow: hidden;
    clip: rect(0 0 0 0);
    height: 1px;
    width: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
}


/* hire-resources */

.hire-resources {
    padding: 80px 0;
}

.sales-form-wrapper {
    width: 100%;
    height: 100%;
    max-height: none;
    background-color: #fff;
    border: 1px solid #e5e1ee;
    border-radius: 20px;
    padding: 20px;
    transform: translate(8px, 8px);
    height: 100%;
    min-height: 400px;
    display: block;
}

.form-control {
    border-radius: 0;
    border-top: none;
    border-left: none;
    border-right: none;
}


.form-control::-ms-input-placeholder {
    /* Edge 12-18 */
    font-size: 24px;
}

.form-control::placeholder {
    font-size: 20px;
}

.form-control {
    font-size: 20px;
}

.circles_wrappers {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 10px;
    margin-bottom: 0;
    position: absolute;
    top: 30px;
    left: 30px;
}

.circles_wrappers span {
    width: 12px;
    height: 12px;
    border-radius: 50px;
}

.circles_wrappers span.red {
    background-color: red;
}

.circles_wrappers span.yellow {
    background-color: yellow;
}

.circles_wrappers span.green {
    background-color: green;
}

.sticky-form_wrapper {
    background-color: #e5e1ee;
    border-radius: 20px;
    max-width: 520px;
    top: 120px;
    position: sticky;
    margin: 0 auto;
}

.form-heading {
    width: 65%;
    text-align: center;
    margin: 10px auto 30px;
    font-size: 22px;
    font-weight: 700;
    line-height: 130%;
}

.hire-resources .hero-info {
    display: flex;
    flex-direction: column;
    row-gap: 30px;
}

.hire-resources .hero-info h1 {
    margin: 0;
}

.hire-resources .hero-info p {
    margin: 0;
}

.home-action {
    display: flex;
}