* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    --prime : #1A3052;
}
html {
    position: relative;
}
body {
    color: var(--black);
    font-size: 14px;
    font-weight: 400;
    background: var(--white);
    font-family: "Archivo", sans-serif;
    overflow-x: hidden;
    --screen-width: calc(100vw - (100vw - 100%));
}
.alignleft {
    float: left;
}
.alignright {
    float: right;
}
h5 {
    font-size: 20px;
    margin: 0;
}
h6 {
    font-size: 18px;
    margin: 0;
}
p {
    font-size: 16px;
    line-height: 26px;
    margin: 0;
}
strong {
    font-weight: 700;
}
.fs-7 {
    font-size: 14px !important;
}
.text-prime{
    color:var(--prime);
}
h2:has(strong){
    font-weight: 300;
}
a,
a:hover {
    text-decoration: none;
    transition: 0.3s all ease-in-out;
}
ul {
    margin: 0px; padding: 0;
}
.container {
    max-width: 1320px;
    margin: 0 auto;
}
img {
    display: block;
    max-width: 100%;
    width: 100%;
    outline: none;
}
/**********animation**********/
@media (prefers-reduced-motion: no-preference) {
    .animate-this {
        opacity: 0;
        transform: translateY(50px);
    }
    .animate-this.animated {
        animation: fade-in 0.8s ease-in-out forwards;
    }
    .animate-this.rtl {
        opacity: 0;
        transform: translateX(50px);
    }
    .animate-this.animated.rtl {
        animation: fade-in-right 0.8s ease-in-out forwards;
    }
    .animate-this.lft {
        opacity: 0;
        transform: translateX(-20px);
    }
    .animate-this.animated.lft {
        animation: fade-in-left 0.8s ease-in-out forwards;
    }

    @keyframes fade-in {
        to {
            opacity: 1;
            transform: translateY(0px);
        }
    }
    @keyframes fade-in-right {
        to {
            opacity: 1;
            transform: translateX(0px);
        }
    }
    @keyframes fade-in-left {
        to {
            opacity: 1;
            transform: translateX(0px);
        }
    }
}
@keyframes tp-animate {
    0% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(10px, -10px);
    }
    100% {
        transform: translate(0, 0);
    }
}
/**********header**********/
header { position: relative; z-index: 9999; top: 0px; left:0; width: 100%; transition: all 0.5s ease-in-out; padding: 8px 0px; background-color: #FFFFFF; }
header.sticky {  position: fixed;  transition: all 0.5s ease-in-out; }
.header_main{display:flex;  width:100%; justify-content: space-between;    align-items: center;}
.logo { width: 220px; transition: all 0.5s ease-in-out; }
.logo a{ display: block;transition: all 0.5s ease-in-out;  }
.logo img{ width: 100%; }
header.sticky .logo { width: 170px; transition: all 0.5s ease-in-out; }
header.sticky a.home-logo { display: none; opacity: 0; }
header.sticky a.sticky-logo { display: block; opacity: 1;}
.nav_bg { width: calc(100% - 240px); }
nav{  position: relative;}
nav ul { display: flex; align-items: center;  justify-content: flex-end;  }
nav ul li{ text-transform: capitalize; list-style:none; float:left; font-size: 16px;}
nav ul li:not(:last-child) {  margin-right: 40px;}
nav ul li a{ color: #000000; position:relative; }
nav ul li a.active, nav ul li a:hover, nav ul li.active a{ color: #000000; font-weight: 700;}
nav ul li:last-child a:hover:before{ width:0;}
nav ul li:last-child a:hover { color: #FFFFFF; font-weight: 600; }
header.sticky nav { transition: all 0.5s ease-in-out;  }
header.sticky nav ul li{ font-size: 15px;}
.nav-btn1 {float: right; }
nav ul li:last-child.active a { color: #FFFFFF; }
nav ul li a::after { content: ""; position: absolute; left: 0px; bottom: -8px; right: 0px; width: 0px;
height: 4px; background-color: #1A3052; transition: 250ms; margin: 0px auto; }
nav ul li.active a::after { width: 24px; }
nav ul li:last-child.active a::after{ display: none; }
/**********nav-icon**********/
.nav-icon { display: none; -webkit-transform: rotate(0deg); -moz-transform: rotate(0deg); -o-transform: rotate(0deg); transform: rotate(0deg); -webkit-transition: .5s ease-in-out; -moz-transition: .5s ease-in-out; -o-transition: .5s ease-in-out; transition: .5s ease-in-out; cursor: pointer;	z-index: 9;	width: 24px;
 height: 20px; position: absolute; top: 25px; right: 33px;  border-radius:4px; }
.nav-icon span{display: block; position: absolute; height: 2px; background: #1A3052; opacity: 1; left: 6px; -webkit-transform: rotate(0deg); -moz-transform: rotate(0deg);
-o-transform: rotate(0deg); transform: rotate(0deg); -webkit-transition: .25s ease-in-out; -moz-transition: .25s ease-in-out;	-o-transition: .25s ease-in-out; transition: .25s ease-in-out;}
.nav-icon span:nth-child(1) 	{ top: 0px;	width:24px; right: 0px;	left: auto;}
.nav-icon span:nth-child(2)	{top: 8px; width:24px;  right: 0px;  left: auto;}
.nav-icon span:nth-child(3)	 { top: 16px; width:24px;  right: 0px;  left: auto;}
.nav-icon.open span:nth-child(1){top: 8px;    right: 0px; -webkit-transform: rotate(135deg);	-moz-transform: rotate(135deg); -o-transform: rotate(135deg); transform: rotate(135deg);}
.nav-icon.open span:nth-child(2){ 	opacity: 0; }
.nav-icon.open span:nth-child(3){top: 10px;-webkit-transform: rotate(-135deg); -moz-transform: rotate(-135deg); -o-transform: rotate(-135deg);transform: rotate(-135deg);    right: 0px;  top: 8px;	}
/**************banner_sec****************/
.btn-dark { background: #1A3052; padding: 10px 40px; color: #FFFFFF; font-size: 16px; font-weight: 600; }
.banner_slider { position: relative; }
.banner_slider:before { content: ''; position: absolute; left: 0; background: rgba(0,0,0,0.5); width: 100%;  height: 100%; top: 0;}
.banner-image img{ width: 100%; height: calc(100vh - 104px); object-fit: cover; object-position: top; }
.banner-text { position: absolute; left: 0; width: 100%; top: 50%; transform: translateY(-50%); }
.h3{ font-size: 48px; font-weight: 400; margin-bottom: 15px; color: #1A3052; }
.banner-text h1{ color: #FFFFFF; padding-right: 5px; }
.banner-text h1 strong, .h3 strong{ font-weight: 800; }
.banner-text p { color: #FFFFFF; font-size: 16px; margin-bottom: 20px; }
.banner-text ul{ display: flex; gap: 16px; padding: 0; }
.banner-text ul li{ color: #FFFFFF; position: relative; display: inline-block; }
.banner-text ul li a { display: block; }
.banner-maintext { max-width: 618px; }
.items { position: relative; }
.btn-white { background: #FFFFFF; border: 1px solid #FFFFFF; padding: 10px 40px; color: #1A3052; font-size: 16px;font-weight: 600; display: inline-block;  }
.btn-outline { background: transparent; border: 1px solid #FFFFFF; padding: 10px 40px; color: #FFFFFF; font-size: 16px; font-weight: 600; display: inline-block;  }
/**************homeabout_sec****************/
.homeabout_sec { padding: 25px 0 90px; background: url('../images/about-bg.webp') no-repeat;
background-size: 100% 100%; }
.homeabout_box { display: flex; justify-content: space-between; align-items: center; position: relative;  }
.homeabout_image h1 {  font-size: 100px;  color: rgba(255, 255, 255, 0.15); text-transform: uppercase; 	font-weight: 800;}
.homeabout_txt { padding-top: 45px; padding-right: 20px; }
.homeabout_txt p {  color: #000000; line-height: 28px;   margin-bottom: 20px;  }
.homeabout_txt .h3{ color: #1A3052; }
.homeabout_txt .h3 strong{ color: #1A3052; }
.homeabout_txt a.btn-outline { color: #1A3052; border: 1px solid #1A3052; }
.homeabout_sec .row { align-items: center; }
/**************key_card****************/
.coreproduct_sec{ overflow-x: hidden; background: url('../images/product-bg.webp') no-repeat;
background-size: 100% 100%; padding: 75px 0px 110px; }
.coreproduct_sec .title { margin-bottom: 60px; }
.coreproduct_slider { width: 100%;  padding-left: calc((var(--screen-width) - 1300px) / 2); }
.coreproduct_slider button.owl-prev { background: url('../images/arrow_circle_left.svg') no-repeat !important;
left: auto; right: 160px; top: -120px; position: absolute; transform: inherit; width: 50px; height: 50px;
font-size: 0 !important; }
.coreproduct_slider button.owl-next { background: url('../images/arrow_circle_right.svg') no-repeat !important;
left: auto; right: 75px; top: -120px; position: absolute; transform: inherit;  width: 50px; height: 50px;
font-size: 0 !important; }
.coreproduct_slider .items{ height: 100%; }
.coreproduct_card{ background-color: #FFFFFF; padding: 15px 12px 20px; border-radius: 24px;
 box-shadow: 0px 0px 10px -4px rgba(5, 29, 46, 0.6); height: 100%; }
.coreproduct-card-image{ position: relative; width: 100%; padding-bottom: 100%;	 margin-bottom: 22px; }
.coreproduct-card-image img { border-radius: 24px; object-fit: cover; position: absolute;  top: 0; left: 0;
 width: 100%; height: 100%; }
.coreproduct-card-text{ padding-left: 12px; }
.coreproduct-card-text h6 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.coreproduct-card-text p { font-size: 14px; margin-bottom: 15px; }
.coreproduct_sec .title { max-width: 756px; }
.coreproduct_sec .title h3 { width: 100%; }
.coreproduct_sec .title h3, .coreproduct_sec .title h3 strong,  .coreproduct_sec .title p {
	color: #FFFFFF;
}
.coreproduct-card-text ul{ padding-left: 10px; border-left: 5px solid #1A3052; }
.coreproduct-card-text ul li{ display: block; font-size: 14px; }
/**************key_card****************/
.key_sec { padding: 75px 0px; }
.key_card {   background-image: linear-gradient(to bottom, rgba(98, 138, 188, 0.1), rgba(98, 138, 188, 0.05));
border-radius: 24px; padding: 35px 37px; text-align: center; height: 100%; }
.key_icon { width: 100px; height: 100px; border-radius: 24px; display: flex; align-items: center; 
justify-content: center; background: #628ABC; border-radius: 24px; margin: 0 auto; margin-bottom: 23px; }
.key_icon img { width: 64px !important; }
.key_txt h5 { font-weight: 800; margin-bottom: 13px; color: #1A3052; }
.key_txt p { font-size: 14px; line-height: 24px; margin: 0; }
/**************highlight_sec****************/
.highlight_sec { background: url('../images/prodcut-bg.png') no-repeat; background-size: 100% 100%; 
padding: 30px 0px;position: relative;}
.highlight_sec .team_title {  margin-bottom: 100px; }
.highlight_list { position: relative;    z-index: 9;  }
.highlight_list ul { display: flex; flex-wrap: wrap; justify-content: space-between; }
.highlight_list ul li { display: inline-block; margin-bottom: 80px; width: 50%;position: relative; }
.list_box { display: flex; gap: 18px; align-items: center; max-width: 400px; }
.list_icon { width: 100px; height: 100px; display: flex; align-items: center; 
justify-content: center; background: #1A3052; border-radius: 24px; flex-shrink: 0; }
.list_icon img { width: 64px; }
.list_txt h5 { font-weight: 800; margin-bottom: 4px; }
.list_txt p { font-size: 14px; }
.highlight_list ul li:nth-child(odd) .list_box { flex-direction: row-reverse; }
.highlight_list ul li:nth-child(1)  { left: 85px; }
.highlight_list ul li:nth-child(1) .list_box {     max-width: 430px; }
.highlight_list ul li:nth-child(5)  { left: 30px; }
.highlight_list ul li:nth-child(2)  { left: -85px; }
.highlight_list ul li:nth-child(6)  { left: -30px; }
.highlight_list ul li:nth-child(odd) .list_box .list_txt { text-align: right; }
.highlight_list ul li:nth-child(even) .list_box { margin-left: auto; }
.highlight_image { position: absolute; left:0; top: 58%; transform: translateY(-50%);  max-width: 460px; 
right: 0; margin: 0 auto; }
.highlight_image img { width: 100%; }
.highlight_image:before { content:''; position: absolute; left: -75px; top: 0; width: 623px ; height: 623px;
background: url('../images/product-frame.webp') no-repeat;     z-index: -1;}
/**************team_sec****************/
.trust_sec {  padding: 20px 0px 80px; }
.trust_sec .row { align-items: center; }
.trust_sec .homeabout_txt { padding-left: 30px; }
/**************team_sec****************/
.team_sec { background: #F0F4F9; padding: 105px 0px 60px; }
.team_title { max-width: 756px; margin: 0 auto; margin-bottom: 35px; }
.team_box { background: #FFFFFF; padding: 18px 14px; border-radius: 20px; box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.1); margin: 10px; }
.team_image { position: relative; padding-bottom: 100%; margin-bottom: 19px; }
.team_image img { position: absolute; width: 100%; height: 100%; left: 0; top: 0; object-fit: cover;
border-radius: 20px; }
.team_txt h5 { font-weight: 800; margin-bottom: 8px; }
.team_txt span { color: rgba(0, 0, 0, 0.7); display: block;  }
.text_scroll { overflow-y: auto; height: 83px;  padding-right: 15px;}
.text_scroll::-webkit-scrollbar{ width: 4px }
.text_scroll::-webkit-scrollbar-track{
background-image: linear-gradient(to right,transparent 0%,transparent 35%,#424242 35%,#737373 65%,transparent 65%,transparent 100%)
}
.text_scroll::-webkit-scrollbar-thumb{ background-color: #000000; border-radius: 5px }
.team_slider .owl-dots { display: block !important; text-align: center;    margin-top: 15px; }
.owl-dot { display: inline-block; width: 10px; height: 10px; margin: 0 5px; border-radius: 50%; cursor: pointer;
 background-color: rgba(26, 48, 81, 0.2) !important; transition: background-color 0.3s ease; }
.owl-dot.active, .owl-dot:hover { background-color: #1A3052 !important; }
/**************homecontact_sec****************/
.homecontact_sec { position: relative; padding: 45px 0px 59px; }
.homecontact_sec:before { content: ''; position: absolute; left: 0; top: 0; width: 100%; height: 100%;
 background: linear-gradient(to left, rgba(0,0,0,0), rgba(0,0,0,0.6)); }
.homecontact_box { background: #FFFFFF; border-radius: 20px; padding: 55px 55px; max-width: 847px; 
position: relative; }
.homecontact_box .h3 { color: #1A3052;    text-transform: capitalize; }
.homecontact_box .h3 strong { color: #1A3052; }
.homecontact_box p { margin-bottom: 30px; }
.homecontact_box input { border: 1px solid #00000033; padding: 14px 24px; border-radius: 0; color: #000000;
width: 100%; font-size: 16px; }
.homecontact_box textarea { border: 1px solid #00000033; padding: 14px 24px; border-radius: 0; color: #000000; 
height: 140px; width: 100%; font-size: 16px; }
.homecontact_box div.halfs { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
.homecontact_box textarea::placeholder, .homecontact_box input::placeholder {  color: #0009;}
.homecontact_box input[type="submit"] { color: #fff; background-color: #1A3052;  font-weight: 600;
padding: 14px 40px;  text-align: center; font-size: 16px; display: inline-block;
transition: background-color .4s ease-in-out; border: 0; -webkit-appearance: none; width: auto; }
/**************success_sec****************/
.whowe_sec { padding: 90px 0px 75px; }
.whowe_txt { margin-top: -30px; padding-right: 20px; }
.whowe_txt .h3 { margin-bottom: 30px; }
.whowe_txt p { margin-bottom: 40px; }
.whowe_txt img { width: 100%; border-radius: 22px; }
.whowe_image { height: 100%; }
.whowe_image img { width: 100%; height: 100%; object-fit: cover; border-radius: 22px; }

.journey_sec { background: url('../images/journey-bg.webp') no-repeat; background-size: 100% 100%; 
padding: 80px 0px 45px; position: relative;}
.journey_sec .title { max-width: 756px; margin: 0 auto; text-align: center; margin-bottom: 48px; }
.journey_sec .title h3 { width: 100%; }
.journey_sec .title h3, .journey_sec .title h3 strong { color: #FFFFFF; }
.journey_sec .title p { color: rgba(255,255,255,0.7); }
.owl-item__inner { text-align: center;display: flex; align-items: center; flex-direction: column;
 justify-content: center; position: relative;  }
.num-wrap { color: rgba(255,255,255,0.2); font-size: 74px; margin: 25px 0px;  height: 155px;   }
.icon-wrap { width: 100px; height: 100px; border-radius: 24px; display: flex; align-items: center; 
justify-content: center; background: #628ABC; border-radius: 24px; margin: 0 auto;}
.icon-wrap img { width: 64px !important; }
.text-wrap { height: 155px;  margin: 25px 0px; }
.text-wrap h6 { color: #FFFFFF; font-weight: 700;  margin-bottom: 10px; }
.text-wrap p { font-size: 14px; line-height: 24px; color: rgba(255,255,255,0.9); font-weight: 300; }
.timeline-carousel .owl-item:nth-child(even) .owl-item__inner { flex-direction: column-reverse; }
.timeline-carousel .items { position: relative; }
.timeline-carousel .items:after { content: ''; position: absolute; width: 103%; height: 2px; 
border-top: 2px dashed #628ABC; top: 50%; right: 0px; z-index: -1; }
/**************success_sec****************/
.success_sec { background: #193055; }
.success_sec .homeabout_txt { padding: 70px 0px; max-width: 650px; margin-left: auto; margin-right: 38px; }
.stand_sec { padding-bottom: 100px; }
.stand_sec .highlight_image { max-width: 497px;    top: 53%; }
.stand_sec .highlight_image:before {    left: -78px; }
.stand_sec .list_box {  max-width: 495px; }
.success_sec .homeabout_image {  margin-top: -85px; position: relative; }
.success_sec .homeabout_image img { border-radius: 22px; }
.success_sec .homeabout_txt .h3  { color: #FFFFFF;  }
.success_sec .homeabout_txt .h3 strong { color: #FFFFFF; display: block; }
.success_sec .homeabout_txt p { color: rgba(255,255,255,0.7);  }
.success_sec .row { align-items: center;  }
/**************product_page****************/
.product_page { background: url('../images/product-mainbg.png') no-repeat; background-size:  100% 100%;
position: relative; }
.product_page:before { content: ''; position: absolute; left: 0; top: 0; width: 100%; height: 100%;
background: linear-gradient(180deg, #F0F4F9 0%, #fff 100%); opacity: 0.4; }
.product_page .container { position: relative; }
.owl-buttons-wrapper { background-color: #FFFFFF; padding: 11px 11px; border-radius: 20px; margin-bottom: 30px; 
display: flex; justify-content: space-between; gap: 20px; }
.owl-buttons-wrapper button { padding: 15px 12px; width: 20%; text-align: center;  }
.owl-buttons-wrapper button.active { background-color: #1A3052; color: #FFFFFF; } 
.all-projects { display: flex; gap: 22px; flex-wrap: wrap; }
.all-projects .product-thumb { width: 32.2%; }
.pagination { flex-wrap: wrap; justify-content: center; }
.pagination li { margin: 0px 5px; }
.pagination li.active a { background: #1A3052; color: #FFFFFF; border-radius: 50px; }
.pagination li a { width: 40px; height: 40px; line-height: 40px; font-size: 16px; color: #000000; display: flex;
 align-items: center; justify-content: center; }
.dots { width: 40px; height: 40px; font-size: 16px; color: #000000; display: flex; align-items: center;
 justify-content: center; }
.pagination li.arrow a img {  width: 24px; }
/**************footer****************/
.footer { background-color: #F0F4F9; padding: 40px 0px 30px; }
.footer-logo { max-width: 240px; }
.footer-logo img { width: 100%; }
.footer_link { width: 50%; }
.footer_inform { width: 50%; }
.footer_main h5 { font-weight: 700; margin-bottom: 20px; }
.footer_link ul { column-count: 2; padding: 0;}
.footer_link ul li { display: block; margin-bottom: 10px; }
.footer_link ul li a { color: #000000; font-size: 16px; }
.footer_inform p { margin-bottom: 10px; }
.footer_inform p a , .footerbtm p a{ color: #000000; }
.footer-row { padding-bottom: 45px; }
.footerbtm { display: flex; border-top: 1px solid rgba(0,0,0,0.2); padding-top: 25px;  gap: 10px; 
align-items: center; justify-content: center; }
ul.footer_btmlink  { display: flex; gap: 25px; }
ul.footer_btmlink li { display: inline-block; }
ul.footer_btmlink li a { color: #000000; font-size: 16px; }
ul.footer_social { display: flex;  gap: 15px; }
ul.footer_social li { display: inline-block; }
ul.footer_social li a { width: 48px; height: 48px; border: 1px solid #000000; display: flex; align-items: center; justify-content: center; border-radius: 100px; }
ul.footer_social li a img { width: 24px; }
.technology_sec .h3{ margin-bottom: 0; }
.technology_sec a.btn-outline { color: #1A3052; border: 1px solid #1A3052; }
.hero_py { padding-top: 4.5rem !important; padding-bottom: 4.5rem !important; }
.hero_py .h3 { color: #FFFFFF; }
.technology_sec { padding: 70px 0 0; }
.infrastructure_sec { padding-bottom: 30px; }
.techno-col7 { padding-top: 30px !important; }
.contact_sec input::placeholder, .contact_sec textarea::placeholder { color: #000000 !important; }
.g-recaptcha { margin-bottom: 12px; }

/**************responsive****************/
@media (max-width: 1439px) {
.all-projects .product-thumb { width: 32.08%; }
.coreproduct_slider { padding-left: calc((var(--screen-width) - 1290px) / 2); }
.container { max-width: 93%; }
.owl-buttons-wrapper {  gap: 18px; }
.all-projects {  gap: 21px; }
}
@media (max-width: 1365px) {
.homeabout_sec { padding: 25px 0 70px; }
.coreproduct_sec { padding: 60px 0px 80px; }
.coreproduct_slider {  padding-left: calc((var(--screen-width) - 1190px) / 2); }
.key_sec { padding: 60px 0px 30px; }
.trust_sec { padding: 0px 0px 60px; }
.team_sec { padding: 50px 0px; }
.stand_sec .list_box { max-width: 474px; }
.owl-buttons-wrapper { gap: 4px;}
.owl-buttons-wrapper button { padding: 15px 4px;}
}
@media (max-width: 1279px) {
.coreproduct_slider { padding-left: calc((var(--screen-width) - 1100px) / 2); }
.highlight_image {  max-width: 400px; }
.owl-buttons-wrapper button { padding: 13px 4px; width: 22%; font-size: 15px; }
.all-projects .product-thumb { width: 31.9%; }
.stand_sec .list_box { max-width: 390px; }
.owl-buttons-wrapper { gap: 0; }
}
@media (max-width: 1179px) {
.h3 { font-size: 44px; }
.btn-white , .btn-outline{ font-size: 15px; }
.coreproduct_slider {  padding-left: calc((var(--screen-width) - 1000px) / 2); }
.key_card { padding: 25px 18px; }
.key_icon { width: 90px; height: 90px; }
.key_icon img { width: 50px !important; }
.highlight_image { max-width: 355px; }
.highlight_image:before {  width: 520px; height: 520px; background-size: cover; }
.homecontact_box { padding: 40px 40px; max-width: 800px; }
ul.footer_btmlink { gap: 15px; }
ul.footer_social { gap: 10px; }
.footerbtm p, ul.footer_btmlink li a , .footer_link ul li a{ font-size: 15px; }
p { font-size: 15px; line-height: 25px; }
.highlight_sec .team_title {  margin-bottom: 50px; }
.owl-buttons-wrapper { flex-wrap: wrap; justify-content: center; }
.owl-buttons-wrapper button { width: 25%; }
.all-projects .product-thumb { width: 31.8%; }
}
@media (max-width: 1079px) {
.coreproduct_slider { padding-left: calc((var(--screen-width) - 915px) / 2); }
.coreproduct-card-text {  padding-left: 5px; }
h5 { font-size: 18px; }
.footerbtm { flex-wrap: wrap; }
.all-projects .product-thumb { width: 31.7%; }
details summary { font-size: 1.1rem !important; }
.success_sec .homeabout_txt {   margin-right: 0; }
}
@media (max-width: 991.9px) {
.nav-icon{display:block;  top: 26px; right: 20px; }
.nav_bg { position: absolute; right: 0; top: 0; border: 0; }
body.open { overflow: hidden; }
.open nav {display:block; }
.logo {  width: 140px; }
header.sticky .logo { width: 140px; }
nav {display:none; position:fixed; top: 72px; left:0;width: 100%; right:0;float:none;z-index:9999; 
background: #FFFFFF;  transition: all 0.3s ease-in-out;-webkit-transition: all 0.3s ease-in-out;-moz-transition: all 0.3s ease-in-out; -ms-transition: all 0.3s ease-in-out;-o-transition: all 0.3s ease-in-out; overflow: auto; max-height: calc(100% - 72px); max-height: -webkit-calc(100% - 72px);  max-height: -moz-calc(100% - 72px); padding: 0px; width: 100%; max-width: 100%; border: 0; border-radius: 0;  padding-bottom: 15px; }
nav ul {width: 100%;max-width: 100%;  display: block; justify-content: normal;    margin-top: 0;  padding: 0px;}
nav ul li {display: block;  float: none;  margin: 0; text-align: left; padding: 11px 40px; }
nav ul li:last-child{border:0px;}
nav ul li:not(:last-child) { margin-right: 0; }
h5 { font-size: 16px; }
.homeabout_sec { padding: 30px 0; }
.homeabout_txt { padding-top: 0; padding-right: 0; }
.coreproduct_sec { padding: 30px 0px; }
.coreproduct_slider {  padding-left: 35px; }
.coreproduct_slider button.owl-prev , .coreproduct_slider button.owl-next{  top: -65px; }
.highlight_list ul li { width: 45%; }
.highlight_list ul li:nth-child(1) { left: 0; }
.list_icon {  width: 80px; height: 80px; }
.list_icon img {  width: 45px; }
.highlight_list ul li:nth-child(2) { left: 0; }
.highlight_list ul li:nth-child(5) { left: 0; }
.highlight_list ul li:nth-child(6) { left: 0; }
.coreproduct_slider button.owl-prev { width: 40px;  height: 40px; background-size: 40px !important; }
.coreproduct_slider button.owl-next { width: 40px; height: 40px; background-size: 40px !important; }
.trust_sec .homeabout_txt {  padding-left: 0; }
.highlight_list ul li:nth-child(5) , .highlight_list ul li:nth-child(6) {  margin-bottom: 0;  }
.homeabout_image {  max-width: 400px; margin: 0 auto; margin-bottom: 30px; }
.key_slider .owl-dots { text-align: center;  margin-top: 30px; }
.footer-logo { margin-bottom: 20px; }
.footer-row { padding-bottom: 25px; }
.footer { padding: 20px 0px 20px; }

.h3 { font-size: 36px; }
.contact_round { margin-bottom: 20px; } 
.contact_image { max-width: 400px; margin: 0 auto; margin-top: 30px; }
.hero_py { padding-top: 2.5rem !important; padding-bottom: 2.5rem !important; }
.icon-wrap {  width: 90px;  height: 90px; }
.icon-wrap img {  width: 46px !important; }
.footer-row:before { bottom: 75px; }
.whowe_txt { padding-right: 0; }
.all-projects {
        gap: 16px;
}
}
@media (max-width: 767px) {
.container { max-width: 100%; padding: 0px 20px; }
.coreproduct_slider {  padding-left: 20px; }
nav ul li { padding: 11px 20px; }
.h3 {  font-size: 36px; }
.highlight_list ul li {  width: 100%; margin-bottom: 30px; display: block; }
.list_box {  max-width: 100%; }
.highlight_list ul li:nth-child(odd) .list_box { flex-direction: inherit; }
.highlight_list ul li:nth-child(odd) .list_box .list_txt { text-align: left; }
.highlight_list ul li:nth-child(5) { margin-bottom: 30px; }
.highlight_image { top: 0;  transform: inherit; position: relative; max-width: 305px; }
.highlight_image:before { width: 440px; height: 440px; z-index: 1; }
.homecontact_box { padding: 30px 30px; }
.footer_main { flex-wrap: wrap; }
.footer_link, .footer_inform { width: 100%; }
.footer_inform { margin-top: 20px; }
.footer_main h5 { margin-bottom: 10px; }
.footer_link ul { column-count: 1; }
.list_icon { width: 70px; height: 70px; border-radius: 16px; }
.key_sec {  padding: 40px 0px 30px; }
.coreproduct_slider button.owl-next { right: 15px; }
.coreproduct_slider button.owl-prev { right: 70px;}
.highlight_sec { padding: 10px 0px; }
.trust_sec {  padding: 0px 0px 30px; }
.team_sec {  padding: 40px 0px; }
.team_title {  margin-bottom: 20px; }
.list_box { align-items: flex-start; }
.homecontact_box input { padding: 14px 20px; font-size: 15px; }
.owl-buttons-wrapper button { padding: 13px 5px; font-size: 14px; width: 33%; }
.all-projects .product-thumb { width: 48.1%; }
.techno-col7 { padding-bottom: 0 !important; }
.pt-sm-0 , .techno-col4 { padding-top: 0 !important; }
.success_sec .homeabout_txt { max-width: 100%; padding: 10px 0; }
.stand_sec .highlight_image:before { left: 0; }
.stand_sec .highlight_image { max-width: 442px; }
.success_sec { padding: 20px 0 0;}
.success_sec .homeabout_image { margin-top: 0; }
.hero_py { padding: 20px 30px !important; }
.whowe_sec { padding: 40px 0px; }
.whowe_txt { margin-top: 0; }
.whowe_txt .h3 { margin-bottom: 12px; }
.whowe_txt p {  margin-bottom: 25px; }
.whowe_txt img { margin-bottom: 10px; }
.journey_sec { padding: 40px 0px; }
.stand_sec .list_box {  max-width: 100%;  }
.icon-wrap { width: 80px;  height: 80px; }
.icon-wrap img { width: 40px !important; }
.num-wrap { font-size: 60px;     height: 85px; }
.stand_sec { padding-top: 30px; }
.highlight_sec .team_title {  margin-bottom: 30px; }
.journey_sec .title { margin-bottom: 30px; }
.homeabout_txt p { line-height: 25px; }
.footer-logo {  max-width: 180px; }
.footer-row { padding-bottom: 15px; }
.infrastructure_sec .container  { padding-bottom: 0 !important;}
.technology_sec   { padding-top: 0;}
}
@media (max-width: 639px) {
.owl-buttons-wrapper button { width: 50%; }	
.all-projects .product-thumb {  width: 47.9%;  }
.hero_py { padding-top: 1rem !important; padding-bottom: 1rem !important; }
}
@media (max-width: 575px) {
.h3 {  font-size: 32px; }
.btn-white, .btn-outline { padding: 10px 35px; }
.banner-text p { color: #FFFFFF; font-size: 15px; }
.banner-text ul { flex-wrap: wrap; }
.homeabout_txt { margin-bottom: 20px; }
.homeabout_image {  max-width: 220px; }
.highlight_image:before { width: 320px; height: 320px; left: -24px; }
.homecontact_box {  padding: 30px 20px; }
.homecontact_box div.halfs { display: block;}
.all-projects .product-thumb {  width: 47.5%; }
.pagination li a, .dots { width: 32px; height: 32px; line-height: 32px; font-size: 14px; }
.image-right { right: 0; }
details summary { font-size: 1rem !important; }
}
@media (max-width: 479px) {
.h3 { font-size: 27px; }
.all-projects .product-thumb { width: 100%;  }
.timeline-carousel .owl-item:nth-child(even) .owl-item__inner { flex-direction: column; }
.timeline-carousel .items:after { top: 38%;   width: 100%;  }
.highlight_image:before {  width: 280px; height: 280px; }
.num-wrap { margin-top: 0; }
}