* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    line-height: normal;
    font-family: 'Nunito', sans-serif;
    scroll-behavior: smooth;
    overflow-x: hidden;
}
html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
li {
    margin: 0;
    padding: 0;
    line-height: normal;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

input {
    box-shadow: none !important;
    outline: none !important;
}

:root {
    --light-blue: #F6F8FF;
    --dark-blue: #02214B;
    --p-gray: #526D82;
    --site-theme: #4070BA;
}
@font-face {
    font-family: 'Nunito';
    src: url('../fonts/Nunito-Bold.eot');
    src: url('../fonts/Nunito-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Nunito-Bold.woff2') format('woff2'),
        url('../fonts/Nunito-Bold.woff') format('woff'),
        url('../fonts/Nunito-Bold.ttf') format('truetype'),
        url('../fonts/Nunito-Bold.svg#Nunito-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Nunito';
    src: url('../fonts/Nunito-SemiBold.eot');
    src: url('../fonts/Nunito-SemiBold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Nunito-SemiBold.woff2') format('woff2'),
        url('../fonts/Nunito-SemiBold.woff') format('woff'),
        url('../fonts/Nunito-SemiBold.ttf') format('truetype'),
        url('../fonts/Nunito-SemiBold.svg#Nunito-SemiBold') format('svg');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Nunito';
    src: url('../fonts/Nunito-Medium.eot');
    src: url('../fonts/Nunito-Medium.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Nunito-Medium.woff2') format('woff2'),
        url('../fonts/Nunito-Medium.woff') format('woff'),
        url('../fonts/Nunito-Medium.ttf') format('truetype'),
        url('../fonts/Nunito-Medium.svg#Nunito-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Nunito';
    src: url('../fonts/Nunito-Regular.eot');
    src: url('../fonts/Nunito-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Nunito-Regular.woff2') format('woff2'),
        url('../fonts/Nunito-Regular.woff') format('woff'),
        url('../fonts/Nunito-Regular.ttf') format('truetype'),
        url('../fonts/Nunito-Regular.svg#Nunito-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


.py-90 {
    padding-block: 90px;
}
.pt-90 {
    padding-top: 90px;
}

.pb-90 {
    padding-bottom: 90px;
}

.my-90 {
    margin-block: 90px;
}

.mt-90 {
    margin-block-start: 90px;
}

.mb-90 {
    margin-block-end: 90px;
}

.py-60 {
    padding-block: 60px;
}

.pt-60 {
    padding-block-start: 60px;
}

.pb-60 {
    padding-block-end: 60px;
}

.btn-blue {
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    background: var(--site-theme);
    line-height: normal;
    color: #FFF;
    padding: 14px 45px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 50px;
    transition: all .4s ease-in-out;
    display: inline-block;
}

.btn-blue:hover {
    background: var(--dark-blue);
    color: #fff;
}

.site-p {
    font-size: 18px;
    font-style: normal;
    color: var(--p-gray);
    font-weight: 500;
    line-height: 26px;
}

header {
    padding-block: 20px;
    transition: all .5s ease-in-out;
    border-bottom: 1px solid rgba(111, 111, 111, .2);
    background-color: var(--light-blue);
}

header.sticky {
    position: fixed;
    width: 100%;
    z-index: 999;
    transition: all .5s ease-in-out;
    top: 0;
    box-shadow: 0 0 4px rgba(0, 0, 0, .5);
    left: 0;
    right: 0;
    max-width: 100%;
    border-bottom: none;
    padding-block: 15px;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: inline-block;
}
.logo a img {
    height: 60px;
}

.header-inner .menu ul li a {
    color: var(--p-gray);
    font-size: 16px;
    font-weight: 700;
    line-height: normal;
    display: inline-block;
    margin-inline: 20px;
    transition: all .4s ease-in-out;
    text-transform: uppercase;
}
.header-inner .menu ul li:last-child a {
    margin-inline-end: 0;
}
.header-inner .menu ul li a:hover,
.header-inner .menu ul li a.active {
    color: var(--dark-blue);
}
header.mobile-header {
    display: none;
    padding-block: 10px;
}
.right-hamburger button {
    border: 1px solid var(--dark-blue);
    color: var(--dark-blue);
    background: transparent;
    font-size: 26px;
    border-radius: 4px;
}
.mobile-nav-element {
    width: 0;
    max-width: 100%;
    height: 100vh;
    position: fixed;
    z-index: 99999;
    top: 0;
    right: 0;
    left: 0;
    background-color: var(--light-blue);
    overflow-x: hidden;
    transition: all 0.5s ease-in-out;
    padding-top: 20px;
}
.mobile-nav-element .menu ul {
    flex-direction: column;
    padding-top: 70px;
}
.mobile-nav-element .menu ul li a {
    color: var(--p-gray);
    font-size: 16px;
    font-weight: 700;
    line-height: normal;
    display: inline-block;
    margin-block: 15px;
    transition: all .4s ease-in-out;
    text-transform: uppercase;
}
.mobile-nav-element .menu ul li a:hover,
.mobile-nav-element .menu ul li a.active {
    color: var(--dark-blue);
}
.mobile-nav-element .top-btn-grp {
    text-align: center;
    margin-block-start: 40px;
}
.mobile-nav-element .top-btn-grp a {
    margin-block: 15px;
    margin-inline: 10px !important;
}
.mobile-nav-element button.close-btn {
    border: 1px solid var(--dark-blue);
    color: var(--dark-blue);
    background: transparent;
    font-size: 26px;
    position: absolute;
    top: 25px;
    right: 25px;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    border-radius: 4px;
}
.banner-section-inner-left h1 {
    color: var(--dark-blue);
    font-size: 45px;
    font-weight: bold;
}
.banner-section-inner-left h1 span {
    color: var(--site-theme);
}
.banner-section-inner-left p {
    padding-top: 35px;
    padding-bottom: 40px;
}

.banner-section {
    background-image: url(../img/hero-bg.png);
    background-size: cover;
    position: relative;
    background-position: center center;
}

.banner-section-inner-right img {
    margin-inline-start: auto;
}
.banner-section-inner-right img {
    width: 100%;
    height: 655px;
    object-fit: contain;
}
.banner-section .slick-prev {
    left: 0;
}
.banner-section .slick-next {
    right: 0;
}
.banner-section .slick-prev,
.banner-section .slick-next {
    display: block;
    width: 50px;
    height: 40px;
    z-index: 99;
}
.banner-section .slick-prev:before {
    content: '';
}
.banner-section .slick-next:before {
    content: '';
}
.banner-section .slick-prev:before,
.banner-section .slick-next:before {
    font-size: 26px;
    line-height: 1;
    font-weight: 600;
    width: 50px;
    height: 40px;
    line-height: 40px;
    display: inline-block;
    font-family: 'FontAwesome';
    background-color: #EEF2FF;
    opacity: 1;
    background: rgba(64, 112, 186, 0.4);
    transition: all .4s ease-in-out;
}
.banner-section .slick-prev:before {
    border-radius: 0px 20px 20px 0px;
}
.banner-section .slick-next:before {
    border-radius: 20px 0px 0px 20px;
}
.banner-section .slick-prev:hover:before,
.banner-section .slick-next:hover:before {
    background-color: var(--site-theme);
}
.trusted-company {
    background-color: #F1F2F2;
}

.trusted-company-sec ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
}

.trusted-company-sec ul li {
    display: inline-block;
}

.trusted-company-sec ul li img {
    filter: brightness(0) invert(0.5);
    transition: all .4s ease-in-out;
}
.trusted-company-sec ul li img:hover {
    filter: none;
}
.title h2 {
    text-align: center;
    font-weight: 700;
    font-size: 42px;
    line-height: 57px;
    color: var(--dark-blue);
    position: relative;
    display: inline-block;
}
.title h2:before,
.title h2:after {
    content: '';
    position: absolute;
    width: 70px;
    height: 5px;
    top: calc(50% - 3px);
    background: #4070BA;
    border-radius: 5px;
}
.title h2:before {
    left: -90px;
}
.title h2:after {
    right: -90px;
}
.about-right p {
    margin-bottom: 35px;
}
.our-service {
    background-color: #F9F9F9;
}
.our-service .our-service-inner {
    display: flex;
    flex-wrap: wrap;
}
.our-service-inner .our-service-box {
    flex: 1 0 calc(100% / 3);
    padding: 30px;
}
.our-service-box.text-center.divider-bottom {
    border-block-end: 1px solid #E4E4E7;
}
.our-service-box.text-center.divider-left {
    border-inline-end: 1px solid #E4E4E7;
}
.our-service-inner .our-service-box .our-service-icon img {
    width: 60px;
    height: 60px;
}
.our-service-inner .our-service-box h4 {
    font-weight: 700;
    font-size: 20px;
    line-height: 27px;
    color: var(--dark-blue);
    padding-block-start: 20px;
    padding-block-end: 15px;
}
.solution-slider-inner {
    border-radius: 30px;
}
.solution-slider-inner.ironcare {
    background: linear-gradient(270.07deg, #0D5C46 -0.89%, rgba(13, 92, 70, 0.575) 50.63%, rgba(13, 92, 70, 0.1) 100.75%);
}
.solution-slider-inner.blockchain {
    background: linear-gradient(270.07deg, #070D48 -0.89%, rgba(7, 13, 72, 0.77) 77.37%, rgba(7, 13, 72, 0.7) 100.75%);
}
.solution-brand-img img {
    display: block;
    margin-inline: auto;
}
.solution-brand-logo h2 {
    font-weight: 700;
    font-size: 32px;
    line-height: 44px;
    color: #FFFFFF;
}
.solution-slider-content {
    padding-block: 50px;
    padding-inline-end: 40px;
}
.solution-slider-content p {
    color: #fff;
    margin-block-start: 25px;
}
.solution-slider .slick-prev {
    left: 0;
}
.solution-slider .slick-next {
    right: 0;
}
.solution-slider .slick-prev,
.solution-slider .slick-next {
    display: block;
    width: 50px;
    height: 40px;
    z-index: 99;
}
.solution-slider .slick-prev:before {
    content: '';
}
.solution-slider .slick-next:before {
    content: '';
}
.solution-slider .slick-prev:before,
.solution-slider .slick-next:before {
    font-size: 26px;
    line-height: 1;
    font-weight: 600;
    width: 50px;
    height: 40px;
    line-height: 40px;
    display: inline-block;
    font-family: 'FontAwesome';
    background-color: #EEF2FF;
    opacity: 1;
    background: rgba(64, 112, 186, 0.4);
    transition: all .4s ease-in-out;
}
.solution-slider .slick-prev:before {
    border-radius: 0px 20px 20px 0px;
}
.solution-slider .slick-next:before {
    border-radius: 20px 0px 0px 20px;
}
.solution-slider .slick-prev:hover:before,
.solution-slider .slick-next:hover:before {
    background-color: var(--site-theme);
}
.our-technology-inner .our-technology-box {
    text-align: center;
    width: 100%;
    height: 204px;
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.our-technology-inner .our-technology-box .our-tech-icon {
    width: 78px;
    height: 88px;
    margin-inline: auto;
    margin-block-end: 30px;
}
.our-technology-inner .our-technology-box h4 {
    font-weight: 600;
    font-size: 20px;
    line-height: 27px;
    text-align: center;
    color: #515151;
}
.our-technology-inner .our-technology-box-1 {
    background: rgba(218, 246, 255, 0.54);
}
.our-technology-inner .our-technology-box-2 {
    background: rgba(209, 255, 227, 0.54902);
}
.our-technology-inner .our-technology-box-3 {
    background: rgba(255, 232, 226, 0.54902);
}
.our-technology-inner .our-technology-box-4 {
    background: rgba(255, 246, 208, 0.54902);
}
.our-technology-inner .our-technology-box-5 {
    background: rgba(235, 227, 255, 0.54902);
}
.our-technology-inner .our-technology-box-6 {
    background: rgba(255, 224, 242, 0.549);
}
.our-technology-inner .our-technology-box-7 {
    background: rgba(181, 255, 242, 0.549);
}
.our-technology-inner .our-technology-box-8 {
    background: rgba(202, 217, 255, 0.549);
}
.career-section {
    background: linear-gradient(89.82deg, #EBFFEB 0.17%, #DEF2FF 98.61%);
    position: relative;
    z-index: 0;
}
.career-section:before {
    position: absolute;
    content: '';
    left: 0;
    background: url(../img/noise.png);
    top: 0;
    bottom: 0;
    max-width: 100%;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    mix-blend-mode: overlay;
    z-index: -1;
    opacity: .4;
}
.career-section .vacany-container {
    background: #FFFFFF;
    box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
}
.career-section .vacany-container .vacany-container-grid {
    display: grid;
    grid-template-columns: 95px auto;
    place-items: center start;
}
.career-section .vacany-container .vacany-container-grid h4 {
    font-weight: 700;
    font-size: 22px;
    line-height: 30px;
    color: #000000;
    margin-block-end: 10px;
}
.career-section .vacany-container .vacany-container-grid p {
    font-weight: 500;
    font-size: 16px;
    color: #515151;
}
.career-section .vacany-container .vacancy-icon {
    background: #F4F4F4;
    border-radius: 8px;
    padding: 15px;
    width: 80px;
    height: 80px;
}
.career-section .vacany-container .btn-blue {
    font-size: 16px;
    padding: 8px 16px;
}
.blog-section .blog-card:hover img {
    transform: scale(1.1);
}
.blog-section .blog-card .blog-card-img {
    height: 240px;
    overflow: hidden;
}
.blog-section .blog-card {
    padding-block-end: 20px;
}
.blog-section .blog-card:hover {
    box-shadow: 0 10px 6px -6px rgba(51, 50, 45, 0.03);
}
.blog-section .blog-card .blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .4s ease-in-out;
}
.blog-content h5 a{
    font-weight: 700;
    font-size: 20px;
    line-height: 27px;
    color: #02214B;
    margin-top: 20px;
    margin-block-end: 15px;
    display: block;
    position: relative;
    padding-inline-end: 30px;
}
.blog-content h5 a:after {
    content: '';
    background-image: url(../img/icon-wrap.png);
    width: 24px;
    height: 28px;
    background-size: 100%;
    background-repeat: no-repeat;
    position: absolute;
    right: 0;
    top: 0;
}
footer {
    padding-block-start: 60px;
    background: linear-gradient(89.82deg, #DEF2FF 0.17%, #FFF6ED 98.61%);
}
.newsletter-section {
    background-image: url(../img/newsletter-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    padding-block: 67px;
    border-radius: 20px;
    padding-inline: 20px;
}
.newsletter-section h2 {
    font-weight: 700;
    font-size: 42px;
    line-height: 57px;
    text-align: center;
    color: #FFFFFF;
    margin-block-end: 45px;
}
.newsletter-section form {
    max-width: 700px;
    margin-inline: auto ;
}
.newsletter-section form input {
    padding-block: 15px;
    background-color: transparent;
    border-radius: 9px;
    border: 1px solid #fff;
    color: #fff;
}
.newsletter-section form input:focus {
    background-color: transparent;
    color: #fff;
}
.newsletter-section form input::placeholder {
    color: #fff;
}
.newsletter-section form input::-ms-input-placeholder {
  color: #fff;
}
.newsletter-section form button.btn {
    background-color: var(--dark-blue);
    color: #fff;
    font-size: 16px;
    padding-block: 15px;
    width: 100%;
    border-radius: 9px;
}
.footer-middle {
    border-block-end: 1px solid #E2E8F0;
}
.footer-left p {
    padding-block: 20px;
}
.social-media ul li a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid #D4D4D8;
    margin-inline-end: 10px;
    color: var(--dark-blue);
    transition: all .4s ease-in-out;
}
.social-media ul li a:hover {
    background-color: var(--site-theme);
    color: #fff;
    border-color: transparent;
}
.footer-content h4 {
    font-weight: 600;
    font-size: 22px;
    line-height: 30px;
    color: #000000;
    margin-block-end: 15px;
}
.footer-menu ul li a {
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    color: #526D82;
    margin-block-end: 15px;
    display: inline-block;
}
.two-col-list ul {
    column-count: 2;
}
.footer-contact ul li {
    display: grid;
    grid-template-columns: 32px auto;
}
.footer-bottom p {
    font-size: 16px;
    padding-block: 25px;
}
.scroll_top #scroll-button {
    background: var(--dark-blue);
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: inline-block;
    color: #fff;
    font-size: 30px;
    text-decoration: none;
    display: none;
}

.scroll_top #scroll-button.show {
    opacity: 1;
}
.product-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}
.product-card img {
    transition: all .5s ease-in-out;
    width: 100%;
}
.product-card img:hover {
    transform: scale(1.2);
}
.product-card h4 {
    position: absolute;
    font-weight: 700;
    font-size: 24px;
    line-height: 33px;
    text-align: center;
    color: #02214B;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
}
.solution-slider-inner.robotic {
    background: linear-gradient(270.07deg, #070D48 -0.89%, rgba(7, 13, 72, 0.7) 100.75%);
}
.solution-slider-inner.manufacturing {
    background: linear-gradient(270.07deg, #004230 -0.89%, rgba(0, 66, 48, 0.7) 100.75%);
}
.solution-slider-inner.agriculture {
    background: linear-gradient(270.07deg, #028123 -0.89%, rgba(2, 129, 35, 0.7) 100.75%);
}
.solution-slider-inner.healthcare {
    background: linear-gradient(270.07deg, #C53E00 -0.89%, rgba(197, 62, 0, 0.7) 100.75%);
}