/*
Theme Name: Insieme
Theme URI: https://example.com
Author: Your Name
Author URI: https://example.com
Description: Custom WordPress theme from HTML
Version: 1.0
*/
/*
font-family: 'Livvic', sans-serif;
font-family: 'Poppins', sans-serif;
font-family: 'Cookie', cursive;
*/
@import url('https://fonts.googleapis.com/css2?family=Livvic:wght@100;200;300;400;500;600;700;900&family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cookie&display=swap');
@font-face {
    font-family: 'florida-regularregular';
    src: url('fonts/florida-regular-webfont.woff2') format('woff2'),
         url('fonts/florida-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
@font-face {
    font-family: 'florida-demiboldregular';
    src: url('fonts/florida-demibold-webfont.woff2') format('woff2'),
         url('fonts/florida-demibold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

:root {
    --body-font:"Mulish", sans-serif;
    --heading-font:"Saira Semi Condensed", sans-serif;
    --heading-font-bold:'florida-demiboldregular';
    --secondary-font:'florida-demiboldregular';
    --main-color: #50b5f0;
    --main-color-shade: #0098d3;
     --main-color2:#b72e27;
    --main-color3:#232b52;
    --text-color:#1c1c1c;
    --black-color2:#222429;
    --white-color:#fff;
    --black-color:#000;
  }

*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
}
body{ 
    margin:0;
    padding:0; 
    font-family: var(--body-font); 
    width: 100%; 
    font-weight: 400;
    color: var(--text-color); 
    font-size: 16px; 
    line-height: 1.5;
    font-weight: normal;
    font-style: normal;
    background: var(--white-color);
}
p{
    margin: 0 0 30px 0;
}
p:last-child{
    margin-bottom: 0;
}
h1,h2,h3,h4,h5,h6{
    margin:0 0 30px 0;
    padding:0;
    font-family: var(--heading-font); 
    color: var(--text-color); 
    font-weight: 600; 
    line-height: 1.2;
}
h1{
	font-size: 62.8px; 	
}
h2{ 
    font-size: 50px; 
}
h3{
    font-size: 40px;
}
h4{
	font-size: 30px;
}
h5{
	font-size: 25px;
}
h6{
	font-size: 20px;
}
ul,li{
    list-style: none;
    margin: 0px;
    padding: 0px;
}
a{ 
    font-family: var(--heading-font); 
     margin:0;
     padding:0;
     text-decoration:none !important;
     outline:none !important; 
     color: var(--text-color);
-webkit-transition: all 0.4s ease-in-out;
 -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out; 
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.3s ease-in-out;
}
a:hover{color: var(--main-color);}

::-webkit-input-placeholder{opacity:1; color: #878787;}
:-ms-input-placeholder{opacity:1;color: #878787;}
::-moz-placeholder{opacity:1;color: #878787;}
:-moz-placeholder{opacity:1;color: #878787;}

img{
    max-width: 100%;
}

input[type="text"],input[type="tel"],input[type="password"],input[type="email"],input[type="number"]{
    width: 100%;
    -webkit-appearance:none;
    appearance:none;
    -webkit-border-radius: 0;
     -moz-border-radius: 0;
     -ms-border-radius: 0;
     border-radius: 0;
    color: #000;
    border: 1px solid #ccc;
    height: 48px;
    padding: 0 16px;
}
textarea{
    resize: none;
    -webkit-appearance:none;
    appearance:none;
    -webkit-border-radius: 0;
     -moz-border-radius: 0;
     -ms-border-radius: 0;
     border-radius: 0;
     border: 1px solid #b8b8b8;
      padding: 12px 16px;
}
select{ 
    border: 1px solid #b8b8b8; 
    width: 100%; 
    padding: 0 11px; 
    background: url(images/arrow_bottom.svg) no-repeat calc(100% - 16px) center; 
    background-color:#fff ; 
    background-size: 12px; 
    padding-right: 40px ; 
    outline: none ; 
    -webkit-appearance: none; 
    -moz-appearance: none; 
    -ms-appearance: none; 
    -o-appearance: none; 
    appearance: none; 
} 
select::-ms-expand { 
    display: none; 
}
.form-control{
    border-radius: 0;
    border: 1px solid #b8b8b8; 
    padding: 12px 16px;
}
input[type="submit"], input[type="reset"], input[type="button"]{
    background:#e92f11; 
    color: var(--white-color); 
    height: 48px; 
    border:none;
    -webkit-appearance:none;
    appearance:none;
    -webkit-border-radius: 0;
     -moz-border-radius: 0;
     -ms-border-radius: 0;
     border-radius: 0; 
     padding-left: 30px; 
     padding-right: 30px; 
     text-transform: uppercase; 
     cursor: pointer;
     transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -ms-transition: all .4s ease-in-out;
}
input[type="submit"]:hover, input[type="reset"]:hover, input[type="button"]:hover{
    background:#feb620;
}
a,button{
    transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -ms-transition: all .4s ease-in-out;
}

img.alignright { 
    float: right; 
    margin: 0 0 20px 20px; 
}
img.alignleft { 
    float: left; 
    margin: 0 20px 20px 0; 
}
img.aligncenter { 
    display: block; 
    margin-left: auto; 
    margin-right: auto; 
    margin-bottom: 20px;  
    float: none; 
}
.alignright { 
    float: right;  
    margin: 0 0 20px 20px;
}
.alignleft { 
    float: left;
    margin: 0 20px 20px 0; 
}
.aligncenter { 
    display: block; 
    margin-left: auto; 
    margin-right: auto; 
    margin-bottom: 20px;  
    float: none;
}

.cmn_gap{
    padding: 100px 0px;
}

.btn_cmn{
    font-size: 18px;
    font-family: var(--heading-font);
    color: var(--text-color2);
    text-transform: uppercase;
    height: 50px;
    line-height: 50px;
    display: inline-block;
    padding: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 184px;
    border: 2px solid var(--black-color);
}
.btn_cmn:hover,
.btn_cmn:focus{
    background:var(--black-color);
    color: var(--white-color);
}

.text_color1{
    color: var(--main-color);
}

.heading_grp {

}
.heading_grp h6 {
    font-family: var(--secondary-font);
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--text-color2);
    opacity: 0.7;
    margin-bottom: 5px;
}
.heading_grp h2 span.blue{
    color: var(--main-color-shade);
    font-weight: 600;
}
.heading_grp h2 span {
    font-family: var(--heading-font);
    font-weight: 500;
}
.heading_grp h2:after {
content: '';
width: 90px;
height: 6px;
background: var(--main-color);
display: block;
margin-top: 15px;
-webkit-clip-path: polygon(6% 0, 100% 0, 94% 100%, 0% 100%);
        clip-path: polygon(6% 0, 100% 0, 94% 100%, 0% 100%);
}
.home_about_sec .heading_grp h2:after {
    background: var(--black-color2);
}
:focus{
    outline: none;
    box-shadow: none;
}
.navbar-toggler:focus{
    box-shadow: none;

}

/* ========= custom scrollbar ======== */
::-webkit-scrollbar {
    width: 10px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    background: var(--white-color); 
  }
   
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: var(--main-color);
    border-radius: 7px; 
  }


  /* ============= main csss ============= */

.main-head{
        position: relative;
    z-index: 9;
    padding: 10px 0px 45px 0px;
    background-color: var(--white-color);
    -webkit-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}
.navbar-brand{
	padding: 0;
	margin: 0px 30px 0px 0px;
}
.navbar{
    background: none; 
    margin: 0; 
    padding: 0; 
    min-height: inherit; 
    height: inherit;
    border:none; 
    -webkit-border-radius: 0;
     -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
}
.navbar-nav li{
    position: relative;
    list-style: none;
}
.navbar-nav > li{
    margin: 0 26px;
    padding: 15px 0; 
    position: relative;
}
.navbar-nav > li:last-child{
    margin-right:0;
}
.navbar-nav > li:first-child{
    margin-left:0;
}
.navbar-nav > li > a{
    font-family: var(--heading-font);
    font-size: 16px; 
    font-weight: 500; 
    text-transform: uppercase; 
    color: var(--text-color);
}
.navbar-nav > li.current-menu-item > a, 
.navbar-nav > li > a:hover, 
.navbar-nav > li.menu-item-has-children:hover > a{
    color:var(--main-color);
}
.navbar-nav > li > a{
    position: relative;
}
.navbar-nav > li > a:after{
    content: '';
    position: absolute;
    bottom:-6px;
    left: 0px;
    right: 0px;
    margin:0 auto;
    height: 2px;
    width: 0%;
    background-color: var(--main-color);
    transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -ms-transition: all .4s ease-in-out;
}
.navbar-nav > li > a:hover:after,
.navbar-nav > li.current-menu-item > a:after{
    width: 100%;
}

/* navbar submenu*/
.sub-menu{
    background: var(--white-color);
    position: absolute;
    top: 130%;
    left: 0;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    border: 1px solid rgba(0, 0, 0, 0.15);
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    width: 230px;
    padding: 0;
    transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -ms-transition: all .4s ease-in-out;
}
.sub-menu > li > a{ 
    color: #000;
    display: block; 
    width: 100%; 
    padding: 5px 10px;
}
.sub-menu > li{
    width: 100%; 
    display: block; 
}
.sub-menu > li > a:hover, 
.sub-menu > li.menu-item-has-children:hover > a{
    background:var(--main-color);
    color: var(--white-color);
}

.navbar-nav > li:last-child > .sub-menu{ 
    right: 0; 
    left: inherit;
    padding:0; 
}

/* 2nd level submenu */
.navbar-nav > li > .sub-menu .sub-menu{
 position: absolute;
 left: 120%;
 top: 0;
 opacity: 0;
 visibility: hidden;
}
.top-navbar {
    padding-bottom: 10px;
}
.header-top-right li {
    padding: 0px 15px;
}
.header-top-right li:last-child{
    padding-right: 10px;
}
.header-top-right li a:hover{
    color: #232b52;
}
.header-top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.opening-hours {
    display: flex;
    align-items: center;
}
.header-top-left i {
    font-size: 17px;
    margin-right: 8px;
    color: var(--main-color2);
}
.header-top-row .header-top-left{
    display: flex;
    align-items: center;
    font-size: 14px;
    padding-left: 6px;
}
.header-top-row .header-top-left .divider{
    width: 1px;
    height: 20px;
    background-color: #000;
    margin-right: 15px;
    margin-left: 15px;
}
.header-top-row .header-top-right ul{
    display: flex;
    align-items: center;
}
.navbar-outer {
    position: absolute;
    z-index: 3;
    width: 1424px;
    left: 50%;
    transform: translateX(-50%);
}
nav.navbar.navbar-expand-lg.navbar-light::before{
    content: '';
    position: absolute;
    background-image: url(images/header-color-bg.png);
    background-size: cover;
    left: 0;
    width: 100%;
    height: 15px;
    bottom: -15px;
}
nav.navbar.navbar-expand-lg.navbar-light{
    background-color: #f6f6f6;
    position: relative;
    padding: 10px 20px;
}
.navbar-brand img{
    width: 180px;
    -webkit-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}
.main-head .btn_cont {
    margin-left: 38px;
}
.main-head .btn_cmn{
    background-color: var(--main-color);
    color: var(--white-color);
    border: 0px;
    max-width: 250px;
    padding-top: 5px;
    padding-bottom: 5px;
    height: 62px;
}
.main-head .btn_cmn:hover,
.main-head .btn_cmn:focus{
    background-color: var(--black-color);
}
.main-head .btn_cmn{
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 18px;
    padding-right: 18px;
    background-color: var(--main-color2);
}
.main-head .btn_cmn .icon{
    width: 30px;
}
.main-head .btn_cmn .txt{
    width: auto;
    font-size: 20px;
    line-height: 23px;
}
.main-head .btn_cmn .txt span{
    display: block;
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
}
.main-head .btn_cmn .icon img{
    width: 100%;
}
.main-head .btn_cmn .divider{
    width: 1px;
    height: 31px;
    background-color: rgba(255,255,255,0.7);
    margin-left: 14px;
    margin-right: 14px;
}
header.main-head.sticky {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    z-index: 9;
    -webkit-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.1);
            box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.1);
            animation: stickyheadersmooth 1s forwards;
}
/*
header.main-head.sticky .navbar-brand {
    width: 150px;
}
header.main-head.sticky .navbar-nav > li > a {
    font-size: 15px;
}
header.main-head.sticky .btn_cmn {
    padding: 0px 20px;
    font-size: 16px;
    height: 40px;
    line-height: 42px;
}
*/


.home_banner{
    background-image: url('images/main-banner-pic.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-color: #dbe8f1;
    position: relative;
}
.home_banner::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(images/banner-overlay-pic.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.home_banner.cmn_gap{
    padding-top: 180px;
    padding-bottom: 0px;
}
.home_banner .col-lg-7{
    width: 66.5%;
    z-index: 2;
}
.home_banner .col-lg-5{
    width: 33.5%;
}
.home_banner .row {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.home_banner h6 {
    font-size: 18px;
    border-bottom: 1px solid var(--white-color);
    display: inline-block;
    margin-bottom: 5px;
    font-family: var(--heading-font);
    color: var(--white-color);
}
.home_banner h1{
    color: var(--white-color);
    margin-bottom: 15px;
}
.home_banner h1 span.blue-text{
    color: var(--main-color-shade);
    position: relative;
}
.home_banner h1 span.blue-text::before {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--main-color-shade);
    bottom: 13px;
}
.home_banner .btn_cont .btn_cmn {
    height: 47px;
    line-height: 47px;
    background: var(--main-color);
    margin-top: 10px;
    color: var(--white-color);
    border: 0px;
}
.home_banner p {
    font-size: 18px;
    color: var(--white-color);
    max-width: 730px;
}
.home_banner .btn_cont .btn_cmn:hover {
    background: var(--main-color2);
}
.home_banner .banner_img figure {
    -webkit-transform: translateX(60px);
        -ms-transform: translateX(60px);
            transform: translateX(60px);
    margin: 0px;
}
.home_banner .banner_img figure img {
    width: 100%;
}




.home_about_sec{
    position: relative;
    z-index: 0;
}
.home_about_sec::before{
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    width: 30%;
    height: 100%;
    background-color: #f4f5f8;
    z-index: -1;
}
.home_about_sec  .img_col {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    left: 0px;
    padding: 0px 70px 0px 0px;
}
.home_about_sec .text_col {
    margin-left: auto;
    padding-top: 80px;
    padding-left: 0;
}
.home_about_sec .img_col_inner img {
    -webkit-clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
            clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
    width: 100%;
}
.home_about_sec .img_col_inner {
    position: relative;
    margin-top: 20px;
}
.home_about_sec .img_col_inner:after {
content: "";
position: absolute;
right: -25px;
top: -20px;
width: 85%;
height: 100%;
background: var(--main-color-shade);
z-index: -1;
-webkit-clip-path: polygon(0 0, 100% 0, 83% 100%, 0% 100%);
        clip-path: polygon(0 0, 100% 0, 83% 100%, 0% 100%);
}
.home_about_sec .year {
    position: absolute;
    top: -40px;
    right: -50px;
    z-index: 0;
}
.home_about_sec  .year_text h6 {
    font-size: 22px;
    text-transform: uppercase;
    color: #fff;
    margin: 0px;
}
.home_about_sec  .year:after {
content: '';
position: absolute;
left: -8px;
top: -3px;
background: #e8e9e9;
width: 95%;
height: 95%;
border-radius: 100%;
z-index: -1;
}
.home_about_sec  .year_text {
    width: 118px;
    height: 118px;
    background: #222429;
    border-radius: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
}

.home_about_sec  p {
    font-size: 18px;
    opacity: 0.7;
    margin-bottom: 15px;
}
.home_about_sec  .btn_cmn {
    margin-top: 20px;
}



.home_service {
    position: relative;
    z-index: 0;
    background-color: #f4f5f8;
}
.home_service p.service-link{
    text-align: center;
    margin-top: 45px;
    font-size: 22px;
    font-family: 'florida-regularregular';
}
.home_service .btn_cmn{
    font-size: 18px;
    background-color: var(--main-color);
    color: #fff;
    max-width: 201px;
    border: 2px solid var(--main-color);
    margin: 0 auto;
}
.home_service .btn_cmn:hover{
    background-color: var(--main-color2);
    border: 2px solid var(--main-color2);
}
.home_service p.service-link a{
    color: var(--main-color);
    text-decoration: underline !important;
}
.home_service .heading_grp {
    margin-bottom: 50px;
    text-align: left;
    width: 49%;
}
.home_service.cmn_gap{
    padding-bottom: 160px;
}
.home_service .btm_right_text {
    width: 49%;
    margin-left: auto;
    margin-top: -230px;
}
.home_service .service_row.row .col-lg-3:nth-child(3){
    margin-top: -230px;
}
.home_service .service_row.row .col-lg-3:last-child{
    margin-top: -230px;
}
.service_inner_wrapper .text_wrap h4 span{
    font-weight: 400;
    display: block;
}
.service_inner_wrapper .text_wrap h4{
    color: #fff;
    position: relative;
    margin-bottom: 36px;
}
.service_inner_wrapper .text_wrap h4::before{
    content: "";
    position: absolute;
    width: 31px;
    height: 3px;
    background-color: #fff;
    left: 1px;
    bottom: -15px;
}
.service_inner_wrapper .text_wrap p{
    color: #fff;
    font-size: 18px;
}
.home_service .service_inner_wrapper{
    padding: 25px;
    background-color: #000;
}
.service_inner_wrapper img.service-logo{
    max-height: 85px;
    width: auto;
    margin-bottom: 25px;
}
.home_service .service_inner{
    position: relative;
}
.home_service .col-lg-6.right .col-lg-6 .service_inner::before{
    content: '';
    position: absolute;
    background-repeat: no-repeat;
    background-size: cover;
    width: 140px;
    height: 140px;
    right: -40px;
    bottom: -10px;
    opacity: 0.05;
}
.home_service .col-lg-6.left .col-lg-6 .service_inner::before{
    content: '';
    position: absolute;
    background-repeat: no-repeat;
    background-size: cover;
    width: 140px;
    height: 140px;
    right: -40px;
    bottom: -10px;
    opacity: 0.05;
}
.home_service .col-lg-6.left .col-lg-6:first-child .service_inner::before{
    background-image: url(images/mainframe-tech-white.svg);
    bottom: 10px;
}
.home_service .col-lg-6.left .col-lg-6:last-child .service_inner::before{
    background-image: url(images/web-tech-white.svg);
    right: -60px;
    bottom: -20px;
}
.home_service .col-lg-6.right .col-lg-6:first-child .service_inner::before{
    background-image: url(images/qa-testing-white.svg);
}
.home_service .col-lg-6.right .col-lg-6:last-child .service_inner::before{
    background-image: url(images/);
    right: -60px;
    bottom: -20px;
}
.home_service .heading_grp h2:after {
    margin: 12px 0px 0px 0px;
    background: var(--black-color2);
}
.home_service .item{
    margin-bottom: 24px;
}
.home_service .item_inner {
    position: relative;
    z-index: 0;
    overflow: hidden;
    -webkit-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}
.home_service .item_inner img{
    width: 100%;
    -webkit-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    position: relative;
    z-index: -1;
}
.home_service .item_inner:hover img{
    -webkit-transform: scale(1.2);
        -ms-transform: scale(1.2);
            transform: scale(1.2);
}
.home_service .item_inner:before {
content: "";
position: absolute;
top: 0px;
left: 0px;
width: 100%;
height: 100%;
background: rgba(0,0,0,0.3);
}
.home_service .item_inner .text_wrap {
    position: absolute;
    bottom: -15px;
    padding: 20px;
    left: 0px;
    width: 100%;
    -webkit-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}
.home_service .item_inner .text_wrap h4 {
    color: var(--white-color);
    margin-bottom: 15px;
}
.item_inner .text_wrap h4:after{
    content: "";
    width: 30px;
    height: 3px;
    display: block;
    background-color: #fff;
}
.home_service .item_inner .text_wrap h4 span {
    font-family: var(--heading-font);
}
.home_service .item_inner .text_wrap p {
    font-size: 18px;
    color: var(--white-color);
    max-height: 0px;
}
.home_service .item_inner:hover .text_wrap {
    bottom: 0px;
}
.home_service .item_inner:hover .text_wrap p {
    max-height: 100%;
}




.why_choose_us_sec {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 0;
    background-color: #000;
}
.why_choose_us_sec:after {
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    width: 25%;
    height: 100%;
    background-color: var(--main-color);
    z-index: -2;
}
.why_choose_us_sec:before {
    content: "";
    position: absolute;
    right: 0px;
    top: 0px;
    width: 75%;
    height: 100%;
    background-image: url(images/why-choose-us-banner.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
    opacity: 0.1;
}
.why_choose_us_sec .row {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.why_choose_us_sec .img_col img {
    width: 100%;
}
.why_choose_us_sec .img_col figure {
    position: relative;
    z-index: 0;
    padding: 0;
    margin: 0px 5px 5px 0px;
}
.why_choose_us_sec .img_col figure:after {
    content: "";
    position: absolute;
    right: -8px;
    top: 16px;
    width: 1px;
    height: 100%;
    background: #8d8d8d;
}
.why_choose_us_sec .img_col figure:before {
    content: "";
    position: absolute;
    left: 16px;
    bottom: -8px;
    width: 100%;
    height: 1px;
    background: #8d8d8d;
}
.why_choose_us_sec .text_inner {
    padding: 0px 0px 0px 50px;
    z-index: 2;
}
.why_choose_us_sec .heading_grp h6 {
    color: var(--white-color);
}
.why_choose_us_sec .heading_grp h2 {
    color: var(--white-color);
}
.why_choose_us_sec .heading_grp h2:after {
    background: var(--main-color);
}
.why_choose_us_sec .heading_grp p {
    font-size: 18px;
    color: var(--white-color);
    line-height: 34px;
}
.why_choose_us_sec .heading_grp {
    border-bottom: 1px solid #fff;
    padding-bottom: 35px;
    margin-bottom: 35px;
}
.why_choose_us_sec .reasons .item_inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-bottom: 35px;
}
.why_choose_us_sec .reasons .item_inner img {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin-right: 15px;
    max-width: 45px;
    width: 45px;
}
.why_choose_us_sec .item_text h4 {
    margin-bottom: 15px;
    color: #fff;
}
.why_choose_us_sec .item_text h4 span {
    font-weight: 400;
}
.why_choose_us_sec .item_text p {
    font-size: 18px;
    color: #fff;
}
.why_choose_us_sec .cmn_gap{
    padding-bottom: 60px;
}


.home_tech {
    text-align: center;
}
.home_tech .heading_grp {
    margin-bottom: 50px;
}
.home_tech .heading_grp h2:after {
    margin: 0 auto;
}
.tech_row {
}
.tech_row .item {
    padding: 20px;
}
.tech_row .item_inner {
    background: var(--white-color);
    -webkit-box-shadow: 0px 2px 24.94px 4.06px rgba(30, 28, 30, 0.07);
            box-shadow: 0px 2px 24.94px 4.06px rgba(30, 28, 30, 0.07);
    padding: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}



.testimonial_sec {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 0;
}
.testimonial_sec:before {
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.92);
    z-index: -1;
}
.testimonial_sec:after {
    content: "";
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 100%;
    height: 35%;
    background: #f9f9f9;
    z-index: -1;
}
.testimonial_sec .char_img {
}
.testimonial_sec .char_img img {
    width: 100%;
    border-radius: 20px;
    -webkit-filter: drop-shadow(0px 22px 24.94px  rgba(30, 28, 30, 0.12));
    filter: drop-shadow(0px 22px 24.94px  rgba(30, 28, 30, 0.12));
}
.testimonial_sec .row {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.testimonial_sec .heading_grp h6 {
    color: var(--white-color);
    opacity: 1;
}
.testimonial_sec .heading_grp h2{
    color: var(--white-color);
}
.testimonial_sec .heading_grp h2:after {
    background: var(--white-color);
}
.testimonial_sec .text_col {
    padding-left: 30px;
}
.testimonial_sec .heading_grp {
    margin-bottom: 50px;
}
.testimonial_sec .quote_block_inner {
    background: var(--main-color2);
    padding: 20px 30px;
    border-radius: 20px 0px 0px 20px;
    position: relative;
    z-index: 0;
}
.testimonial_sec .quote_block {
    width: calc(100% + 25%);
    -webkit-transform: translateX(-20%);
        -ms-transform: translateX(-20%);
            transform: translateX(-20%);
}
.testimonial_sec .quote_icon {
    position: absolute;
    top:25px;
    left:25px;
    z-index: -1;
}
.quote_wrapper{
    padding-right: 22%;
}
.quote_wrapper .item {
    padding: 10px 0px 0px 40px;
}
.quote_wrapper p {
    font-size: 18px;
    line-height: 1.8;
    color: #fff;
    margin-bottom: 15px;
}
.quote_wrapper h6 {
    margin: 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 21px;
    text-transform: uppercase;
    color: #fff;
    font-family: var(--heading-font);
}
.quote_wrapper h6:before {
content: "";
width: 100px;
height: 3px;
background: #fff;
display: block;
margin-right: 20px;
}
.testimonial_sec .custom_nav {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    right: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.testimonial_sec .custom_nav .arrow {
    width: 58px;
    height: 58px;
    border-radius: 100%;
    border: 1px solid var(--white-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 20px;
    color: var(--white-color);
    cursor: pointer;
}
.testimonial_sec .prev_arrow {
    margin-right: 15px;
}
.testimonial_sec .custom_nav .arrow:hover{
    background-color: var(--white-color);
    color: var(--main-color);
}



.home_clients {
    text-align: center;
}
.home_clients .heading_grp h2:after {
    margin: 0 auto;
}
.home_clients .heading_grp {
    margin-bottom: 45px;
}
.home_clients .clients_row {
    padding: 0px 5%;
}
.home_clients .item {
    padding: 0px 10px;
}
.home_clients .item_inner {
    border: 1px solid #e6e6e6;
    padding: 30px;
    -webkit-transition:all .4s ease-in-out;
    -o-transition:all .4s ease-in-out;
    transition:all .4s ease-in-out;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.home_clients .item_inner:hover {
    -webkit-filter: grayscale(1);
            filter: grayscale(1);
}




.home_products {
    text-align: center;
}
.home_products .heading_grp h2:after{
    margin: 15px auto 0px;
    background: var(--black-color2);
}
.products_row.row {
    padding-top: 35px;
}
.home_products .item_inner{
    height: 100%;
}
.home_products .item_inner .text_wrap h4{
    margin-bottom: 20px;
}
.home_products .item_inner .text_wrap h4:after {
    content: "";
    width: 30px;
    height: 3px;
    display: block;
    background-color: #000;
    margin-top: 15px;
}
.home_products .item_inner_wrapper{
    border: 1px solid #ffb5b1;
    text-align: left;
    padding: 25px;
    height: 100%;
    background-color: #fff;
    transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -ms-transition: all .4s ease-in-out;
}
.home_products .item_inner:hover{
    border-color: var(--main-color2);
}
.home_products .item_inner{
    position: relative;
    z-index: 2;
    display: block;
}
.home_products .item_inner::before{
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    width: 100%;
    height: 100%;
    background-color: #ffb5b1;
    z-index: -1;
    transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -ms-transition: all .4s ease-in-out;
}
.home_products .item_inner:hover::before{
    background-color: var(--main-color2);
}
.home_products .col-lg-4.item{
    padding-left: 15px;
    padding-right: 15px;
}
.home_products .item_inner h4 span{
    font-weight: 400;
}
.home_products .item_inner img.product-logo {
    max-height: 86px;
    margin-bottom: 16px;
}
.home_products .item_inner p{
    font-size: 18px;
}
.home_products .btn_cmn{
    margin: 0 auto;
}
.products_row.row{
    padding-bottom: 70px;
}


.footer_top {
    background: #1c1c1c;
}
.footer_about {
    margin-top: -12px;
}
.footer_social {
    padding-top: 15px;
}
.footer_col {
    padding: 60px 30px;
    padding-left: 45px;
}
.footer_col:first-child {
    background: #0e0e0e;
}
h5.footer_title {
    color: #fff;
}
h5.footer_title:after{
    content: '';
    width: 48px;
    height: 6px;
    background: var(--main-color);
    display: block;
    margin-top: 10px;
    -webkit-clip-path: polygon(6% 0, 100% 0, 94% 100%, 0% 100%);
            clip-path: polygon(6% 0, 100% 0, 94% 100%, 0% 100%);
}
.foot_info .item + .item {
    margin-top: 20px;
}
.foot_info .item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.foot_info .item i {
    width: 44px;
    height: 44px;
    background: var(--main-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 20px;
    color: var(--white-color);
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin-right: 20px;
}
.foot_info .text h6 {
    font-family: var(--body-font);
    color: var(--white-color);
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 3px;
}
.foot_info .text h5 {
    font-size: 20px;
    color: var(--white-color);
    font-family: var(--heading-font);
    margin-bottom: 0px;
}
.foot_info .text h5 a {
    color: var(--white-color);
}
.foot_info .text h5 a:hover {
    color: var(--main-color);
}
.footer_links li + li {
    margin-top: 10px;
}
.footer_links a {
    font-family: var(--body-font);
    color: var(--white-color);
    opacity: 0.7;
    cursor: pointer;
}
.footer_links a:hover {
    color: var(--main-color);
    padding-left: 7px;
    opacity: 1;
}
.footer_about p {
    color: var(--white-color);
    opacity: 0.7;
    margin-bottom: 22px;
}
.footer_social ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.footer_social li + li {
    margin-left: 25px;
}
.footer_social a {
    color: var(--white-color);
    font-size: 16px;
    display:block;
    width: 40px;
    height: 40px;
    border: 1px solid #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}
.footer_social a:hover {
    color: var(--main-color3);
    background-color: var(--main-color);
    border: 1px solid var(--main-color);
}
.footer_btm p{
    font-size: 18px;
    font-family: "Saira Semi Condensed", sans-serif;
    color: #151515;
}
.footer_btm {
    padding: 16.5px 0px;
    text-align: center;
}
.footer_btm .text_color1{
    color: #50b5f0;
}
.footer_btm p a {
    font-family: "Saira Semi Condensed", sans-serif;
}
.footer_address p {
    color: var(--white-color);
    opacity: 0.7;
    margin: 0px;
}
.footer_address p + p {
    margin-top: 15px;
}


.slick-dots{
    margin: 20px 0px 0px 0px;
}
.slick-dots li {
    border: 2px solid var(--main-color);
    border-radius: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.slick-dots li button {
    width: 10px;
    height: 10px;
    background: var(--main-color);
    border-radius: 100%;
    opacity: 0;
}
.slick-dots li.slick-active button {
    opacity: 1;
}
.slick-dots li button:before {
    display: none;
}



.inner_banner {
    padding: 167px 0px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
    text-align: center;
    background-color: #dbe8f1;
    position: relative;
}
.inner_banner .banner_text{
    z-index: 3;
    position: relative;
}
.inner_banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(images/about-us-banner-overlay.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.inner_banner .banner_text h1 span {
    font-family: var(--heading-font);
}
.inner_banner .banner_text h1 {
    color: #fff;
    font-size: 60px;
    margin-bottom: 10px;
}
.inner_banner .menu_nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.inner_banner .menu_nav li {
    color: var(--white-color);
    font-size: 20px;
    font-family: var(--body-font);
}
.inner_banner .menu_nav li + li:before {
    content: "|";
    display: inline-block;
    margin: 0px 15px;
}
.inner_banner .menu_nav li.current-menu-item a{
    color: #fff;
}
.inner_banner .menu_nav li a {
    font-family: var(--body-font);
    color: #c22b25;
}
.inner_banner .menu_nav li a:hover {
    color: var(--main-color-shade);
}


.services_details_sec .service-categories ul li a {
    font-size: 20px;
    font-weight: 600;
    color: #1c1c1c;
    padding-right: 25px;
    position: relative;
    display: block;
    padding-top: 14px;
    padding-bottom: 14px;
    border-bottom: 1px dashed #0c83be;
}
.services_details_sec .service-categories ul li a::before{
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-image: url(images/right-angle-arrow.png);
    background-size: cover;
    background-repeat: no-repeat;
}
.services_details_sec .service-categories ul li a.active::before{
    filter: invert(1);
}
.services_details_sec .service-categories ul li:last-child a{
    border-bottom: 0px;
}
.services_details_sec .service-categories ul li a.active{
    color: #fff;
}
.services_details_sec .service-categories{
    background-color: #5cc9ff;
    padding: 50px 55px 35px 55px;
    margin-bottom: 30px;
}
.services_details_sec .service-categories h3.sec-heading::before{
    content: '';
    position: absolute;
    left: 0;
    bottom: -13px;
    width: 31px;
    height: 3px;
    margin: 0px auto ;
    background-color: #fff;
    display: block;
}
.services_details_sec .service-categories h3.sec-heading {
    font-size: 30px;
    color: #fff;
    position: relative;
}
.services_details_sec.cmn_gap{
    padding-bottom: 70px;
    padding-top: 90px;
}
.services_details_sec .left_sec{
    width: 63%;
    padding-right: 20px;
}
.services_details_sec .left_sec h2{
    position: relative;
}
.services_details_sec .left_sec p{
    margin-bottom: 20px;
    line-height: 28px;
    color: rgba(28, 28, 28, 0.7);
    font-size: 18px;
}
.services_details_sec .left_sec ol {
    margin-left: 0px;
    padding-left: 0;
    font-size: 18px;
    line-height: 30px;
    color: rgba(28, 28, 28, 0.7);
}
.services_details_sec .left_sec span.underlined_heading{
    font-size: 18px;
    color: rgba(28, 28, 28, 0.7);
    margin-bottom: 8px;
    display: block;
    text-decoration: underline;
    font-weight: 600;
}
.services_details_sec .left_sec h4{
    font-size: 20px;
    color: rgba(28, 28, 28, 0.7);
    margin-bottom: 12px;
    display: block;
    font-weight: 700;
    font-family: var(--body-font);
}
.services_details_sec .left_sec ul li{
    position: relative;
    padding-left: 21px;
    font-size: 18px;
    color: rgba(28, 28, 28, 0.7);
    margin-bottom: 5px;
}
.services_details_sec .left_sec ul li::before{
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 14px;
    height: 15px;
    background-image: url(images/arrow-blue.png);
    background-size: cover;
    background-repeat: no-repeat;
}
.services_details_sec .left_sec ul{
    margin-bottom: 20px;
}
.services_details_sec .left_sec ul li span{
    font-weight: 600;
}
.services_details_sec .left_sec h2:after {
    content: '';
    width: 90px;
    height: 6px;
    margin: 12px auto 0px 0px;
    background-color: #1c1c1c;
    display: block;
    -webkit-clip-path: polygon(6% 0, 100% 0, 94% 100%, 0% 100%);
    clip-path: polygon(6% 0, 100% 0, 94% 100%, 0% 100%);
}
.services_details_sec .left_sec .service_heading{
    font-size: 35px;
    font-weight: 600;
    color: #1c1c1c;
    margin-bottom: 12px;
    font-family: var(--heading-font);
}

.services_details_sec .right_sec{
    width: 37%;
}
.services_details_sec .left_sec .service_pic {
    position: relative;
    padding-top: 600px;
    margin-bottom: 40px;
}
.services_details_sec .left_sec .service_pic img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.services_details_sec .left_sec .service_heading span{
    font-weight: 400;
}
.services_details_sec .right_sec .contact-us-box {
    position: relative;
    padding: 65px 30px 50px 30px;
    text-align: center;
    background-image: url(images/have-any-questionpic.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}
.services_details_sec .right_sec .contact-us-box::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #d7352d;
    opacity: 0.9;
}
.services_details_sec .contact-us-box .icon img{
    width: 75px;
    filter: invert(1);
    margin-bottom: 10px;
    z-index: 3;
    position: relative;
}
.services_details_sec .contact-us-box span{
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    z-index: 3;
    position: relative;
    display: block;
}
.services_details_sec .contact-us-box a.phn{
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    z-index: 3;
    position: relative;
}
.services_details_sec .contact-us-box h3{
    font-size: 45px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 5px;
    z-index: 3;
    position: relative;
}
.services_details_sec .contact-us-box h4{
    font-size: 35px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 25px;
    z-index: 3;
    position: relative;
}









.business_solution_sec .heading_grp {
    text-align: center;
    margin-bottom: 50px;
}
.business_solution_sec .heading_grp h2:after {
    margin: 0 auto;
}
.business_solution_sec .item_inner {
    padding: 40px 30px;
    background-color: rgb(255, 255, 255);
    -webkit-box-shadow: 0px 6px 24.94px 4.06px rgba(30, 28, 30, 0.1);
            box-shadow: 0px 6px 24.94px 4.06px rgba(30, 28, 30, 0.1);
}
.business_solution_sec .icon {
    margin-bottom: 20px;
}
.business_solution_sec h4 {
    margin-bottom: 15px;
}
.business_solution_sec p {
    font-size: 18px;
}



.how_we_serve_sec {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    z-index: 0;
    padding: 25px 0px 0px !important;
    margin-bottom: 50px;
}
/* .how_we_serve_sec:before {
content: '';
position: absolute;
bottom: 0px;
left: 0px;
width: 100%;
height: 180px;
background: var(--white-color);
z-index: -1;
} */
.how_we_serve_sec .item_img {
    -webkit-transform: translateY(75px);
        -ms-transform: translateY(75px);
            transform: translateY(75px);
}
.how_we_serve_sec .item_img img {
    height: 100%;
}
.how_we_serve_sec .item_img .img_cover {
    height: 100%;
}
.how_we_serve_sec .item_img .img_cover img {
    object-fit: cover;
}
.how_we_serve_sec .item_text {
    padding: 75px 0px;
}
.how_we_serve_sec .heading_grp h2 {
    color: var(--white-color);
}
.how_we_serve_sec .heading_grp h2:after {
    background: var(--main-color);
}
.how_we_serve_sec .heading_grp h6 {
    color: var(--white-color);
    opacity: 1;
}
.how_we_serve_sec p {
    font-size: 18px;
    color: var(--white-color);
}
.img_cover img {
    width: 100%;
    border:10px solid var(--white-color);
  background-color: var(--white-color);
  -webkit-box-shadow: 0px 22px 24.94px 4.06px rgba(30, 28, 30, 0.12);
          box-shadow: 0px 22px 24.94px 4.06px rgba(30, 28, 30, 0.12);

}


.our_service_main_sec .heading_grp {
    text-align: center;
    margin-bottom: 60px;
}
.our_service_main_sec .heading_grp h2:after {
    margin: 0 auto;
}
.our_service_main_sec .nav-item {
    width: 20%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    padding: 10px;
}
.our_service_main_sec .nav-pills {
    margin: 0px -10px 60px;
}
.our_service_main_sec .nav-item .nav-link {
    background-color: #f7f8f9;
    padding: 30px 15px;
    text-align: center;
    position: relative;
    border-radius: 0px;
    cursor: pointer;
}
.our_service_main_sec .nav-item .nav-link:after{
    content: '';
    width: 30px;
    height: 30px;
    position: absolute;
    bottom: -10px;
    left: 50%;
    -webkit-transform: translateX(-50%) rotate(45deg);
        -ms-transform: translateX(-50%) rotate(45deg);
            transform: translateX(-50%) rotate(45deg);
    background-color: transparent;
    z-index: -1;
}
.our_service_main_sec .nav-item .nav-link.active:after{
    background-color: var(--main-color2);
}
.our_service_main_sec .icon img {
    position: absolute;
    top: 0px;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
}
.our_service_main_sec .icon {
    width: 64px;
    height: 64px;
    position: relative;
    margin: 0 auto 15px;
}
.our_service_main_sec h5 {
    color: var(--main-color);
    margin-bottom: 0px;
}
.our_service_main_sec .icon img + img {
    opacity: 0;
}
.our_service_main_sec .nav-link.active .icon img{
    opacity: 0;
}
.our_service_main_sec .nav-link.active .icon img + img {
    opacity: 1;
}
.our_service_main_sec .nav-link.active h5 {color: var(--white-color);}
.our_service_main_sec .nav-item .nav-link.active {
    background: var(--main-color2);
}
.service_img_text .text_col{
    padding-right: 30px;
}
.service_img_text .text_col h3 {
    margin-bottom: 20px;
}
.service_img_text .text_col p {
    font-size: 18px;
    margin-bottom: 15px;
    text-align: justify;
}




/*our-product*/
.product_values_sec .heading_grp h2:after {
    background: #1c1c1c;
    margin: 12px auto 0px auto;
}
.product_values_sec .heading_grp h2{
    margin-bottom: 40px;
}
.product_values_sec .heading_grp p {
    font-size: 18px;
    line-height: 28px;
    opacity: 0.7;
    max-width: 1050px;
    margin: 0px auto 20px;
}
.product_values_sec .row{
    padding-top: 45px;
}
.product_values_sec .product_values{
    text-align: center;
}
.product_values_sec .product_values .circle{
    width: 103px;
    height: 103px;
    border-radius: 100%;
    background-color: #b32620;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0px auto 22px auto;
    position: relative;
}
.product_values_sec .circle img.value_icon{
    width: auto;
    height: 57px;  
}
.product_values_sec .col-lg-3.item{
    position: relative;
}
.product_values_sec .col-lg-3.item::before{
    content: '';
    position: absolute;
    top: -5px;
    right: -1px;
    width: 1px;
    height: 100%;
    background-color: rgba(28, 28, 28, 0.5);
}
.product_values_sec .col-lg-3.item:last-child::before{
    display: none;
}
.product_values_sec .product_values .circle:before {
    content: '';
    position: absolute;
    width: 115px;
    height: 115px;
    border-radius: 100%;
    border: 2px dashed #b32620;
    top: -6px;
    left: -6px;
}
.product_values h3{
    font-size: 29px;
    font-weight: 600;
    color: #1c1c1c;
    margin-bottom: 12px;
}
.product_values h3 span{
    font-weight: 400;
}
.product_values_sec.cmn_gap{
    padding-bottom: 60px;
}



.product_detail_sec{
    background-color: #f9f9f9;
}
.product_detail_sec .item-details .row{
    display: flex;
    align-items: center;
}
.product_detail_sec .item-details .col-lg-7{
    width: 55%;
}
.product_detail_sec .item-details .text-sec{
    padding-right: 60px;
}
.product_detail_sec .item-details .text-sec p{
    font-size: 18px;
    line-height: 34px;
}
.product_detail_sec .item-details .text-sec .icon{
    margin-bottom: 15px;
}
.product_detail_sec .item-details .text-sec h3{
    font-size: 30px;
    position: relative;
}
.product_detail_sec .item-details .text-sec h3::before{
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 32px;
    height: 3px;
    background-color: #1c1c1c;
}
.product_detail_sec .item-details .text-sec h3 span{
    font-weight: 400;
}
.product_detail_sec .item-details .text-sec .icon img{
    width: auto;
    max-height: 83px;
}
.product_detail_sec .item-details:nth-child(even) .left{
    order: 2;
}
.product_detail_sec .item-details:nth-child(even) .right{
    order: 1;
}
.product_detail_sec .item-details:nth-child(even) .text-sec {
    padding-left: 60px;
    padding-right: 0px;
}
.product_detail_sec .item-details{
    margin-bottom: 80px;
}
.product_detail_sec .item-details:last-child{
    margin-bottom: 0px;
}
.product_detail_sec .item-details .col-lg-5{
    width: 45%;
    padding: 30px;
        -webkit-box-shadow: 0px 3px 35px 0px rgba(30, 28, 30, 0.12);
    box-shadow: 0px 3px 35px 0px rgba(30, 28, 30, 0.12);
}
.product_detail_sec .item-details .col-lg-5{
    background-color: #fff;
    border-radius: 30px;
}
.product_detail_sec .item-details .col-lg-5 .picture_sec{
    position: relative;
    padding-top: 436px;
}
.product_detail_sec .item-details .col-lg-5 .picture_sec img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 25px;
}







/* #Progress
================================================== */

.progress-wrap {
	position: fixed;
	right: 30px;
	bottom: 30px;
	height: 46px;
	width: 46px;
	cursor: pointer;
	display: block;
	border-radius: 50px;
	box-shadow: inset  0 0 0 2px #ccc;
	z-index: 10000;
	opacity: 0;
	visibility: hidden;
	transform: translateY(15px);
	-webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.progress-wrap.active-progress {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.progress-wrap::after {
	position: absolute;
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
	content: '\f062';
	text-align: center;
	line-height: 46px;
	font-size: 24px;
	color: var(--main-color); 
	left: 0;
	top: 0;
	height: 46px;
	width: 46px;
	cursor: pointer;
	display: block;
	z-index: 1;
	-webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.progress-wrap:hover::after {
	opacity: 1;
}
.progress-wrap::before {
	position: absolute;
	font-family: 'unicons';
	content: '\e84b';
	text-align: center;
	line-height: 46px;
	font-size: 24px;
	opacity: 0;
    color: var(--main-color); 
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	left: 0;
	top: 0;
	height: 46px;
	width: 46px;
	cursor: pointer;
	display: block;
	z-index: 2;
	-webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.progress-wrap:hover::before {
	opacity: 1;
}
.progress-wrap svg path { 
	fill: none; 
}
.progress-wrap svg.progress-circle path {
	stroke: #b50808;
	stroke-width: 4;
	box-sizing:border-box;
	-webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.contact_form_sec {
    text-align: center;
}
.contact_form_sec .top_sec{
    display: flex;
    flex-wrap: wrap;
}
.contact_form_sec .top_sec .heading{
    width: 50%;
    padding-right: 15px;
}
.contact_form_sec .top_sec .heading .heading_grp{
    text-align: left;
}
.contact_form_sec .top_sec .text{
    width: 50%;
    padding-left: 15px;
    text-align: left;
}
.contact_form_sec .top_sec .text p{
    font-size: 18px;
    line-height: 28px;
    opacity: 0.7;
}
.contact_form_sec ::-webkit-input-placeholder{
    color: #1c1c1c;
}
.contact_form_sec ::-moz-placeholder{
    color: #1c1c1c;
}
.contact_form_sec :-ms-input-placeholder{
    color: #1c1c1c;
}
.contact_form_sec ::-ms-input-placeholder{
    color: #1c1c1c;
}
.contact_form_sec ::placeholder{
    color: #1c1c1c;
}
.contact_form_sec .heading_grp h2:after {
    margin: 18px auto 0px 0px;
    background-color: #1c1c1c;
}
.contact_form_sec .form_group {
    margin-bottom: 15px;
}
.contact_form_sec form input {
    border-color: #dfdfdf;
    font-size: 18px;
    color: #1c1c1c;
    width: 100%;
    height: 56px;
}
.contact_form_sec textarea {
    border-color: #dfdfdf;
    font-size: 18px;
    color: #1c1c1c;
    width: 100%;
    height: 160px;
}
.contact_form_sec .form_group.message {
    margin-bottom: 35px;
}
.contact_form_sec .bottom_sec .cont_item{
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}
.contact_form_sec .cont_item .text{
    width: 77%;
    margin-left: 20px;
}
.contact_form_sec .cont_item .text p{
    font-size: 18px;
    text-align: left;
    line-height: 26px;
    color: #fff;
}
.contact_form_sec .cont_item .text p a{
    font-size: 18px;
    text-align: left;
    line-height: 26px;
    color: #fff;
    text-decoration: none;
}
.contact_form_sec .cont_item .text p a span{
    display: block;
}
.contact_form_sec .cont_item .text h4{
    font-size: 25px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 6px;
    text-align: left;
}
.contact_form_sec .cont_item .circle{
    width: 91px;
    height: 91px;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #5cc9ff;
    flex-shrink: 0;
}
.contact_form_sec .cont_item .circle img.icon{
    width: 45px;
    height: auto;
}
.contact_form_sec .btn_cmn {
    background: var(--main-color);
    color: #fff;
    width: 220px;
    height: 52px;
    text-transform: uppercase;
    border: 0px;
    margin-left: auto;
}
.contact_form_sec .btn_cmn:hover{
    background-color: #000;
}
.contact_form_sec .bottom_sec{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.contact_form_sec .bottom_sec .contact_details{
    width: 32%;
}
.contact_form_sec .bottom_sec .contact_form{
    width: 68%;
}
.contact_form_sec .bottom_sec .contact_box {
    background-color: #0098d3;
    padding: 55px 25px 30px 25px;
    z-index: 2;
    position: relative;
}
.contact_form_sec .bottom_sec .contact_form_wrapper{
    background-color: #f1f4f9;
    padding: 70px 45px 70px 140px;
    margin-left: -100px;
    z-index: -1;
}
.contact_form_sec .contact_form_wrapper h3{
    font-size: 30px;
    text-align: left;
    margin-bottom: 30px;
}


.contact_info_sec.cmn_gap{
    padding-top: 0px;
}
.contact_info_sec .separator {
    width: 100%;
    height: 1px;
    background: #dfdfdf;
    margin-bottom: 60px;
}
.contact_info_sec .item_inner {
    padding:25px;
    background-color: rgb(255, 255, 255);
    -webkit-box-shadow: 0px 2px 28.71px 0.29px rgba(30, 28, 30, 0.14);
            box-shadow: 0px 2px 28.71px 0.29px rgba(30, 28, 30, 0.14);
    text-align:center;
    cursor:pointer;
    -webkit-transition:all .4s ease-in-out;
    -o-transition:all .4s ease-in-out;
    transition:all .4s ease-in-out;
}
.contact_info_sec .icon {
    width: 56px;
    height: 56px;
    background: var(--main-color);
    margin: 0px auto;
    margin-bottom: 10px;
    border-radius: 100%;
    position: relative;
    -webkit-transition:all .4s ease-in-out;
    -o-transition:all .4s ease-in-out;
    transition:all .4s ease-in-out;
}
.contact_info_sec h4 {
    margin-bottom: 5px;
    -webkit-transition:all .4s ease-in-out;
    -o-transition:all .4s ease-in-out;
    transition:all .4s ease-in-out;
}
.contact_info_sec p {
    font-size: 18px;
    color: #1c1c1c;
    -webkit-transition:all .4s ease-in-out;
    -o-transition:all .4s ease-in-out;
    transition:all .4s ease-in-out;
}
.contact_info_sec .icon img + img {
    opacity: 0;
}
.contact_info_sec .icon img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%,-50%);
    -ms-transform: translateX(-50%,-50%);
    transform: translate(-50%,-50%);
    width: 40%;
    -webkit-transition:all .4s ease-in-out;
    -o-transition:all .4s ease-in-out;
    transition:all .4s ease-in-out;
}
.contact_info_sec .item_inner:hover{
    background:var(--main-color2);
}
.contact_info_sec .item_inner:hover .icon{
    background:#fff;
}
.contact_info_sec .item_inner:hover .icon img{
    opacity:0;
}
.contact_info_sec .item_inner:hover .icon img + img {
    opacity: 1;
}
.contact_info_sec .item_inner:hover h4{
    color:#fff;
}
.contact_info_sec .item_inner:hover p{
    color:#fff;
}
.contact_info_sec .item_inner:hover p a{
    color:#fff;
}
.contact_info_sec .item_inner:hover p a:hover{
    color:var(--main-color);
}



.map_sec{
    position: relative;
}
.map_sec .place-card.place-card-large{
    position: relative;
    z-index: 2;
}
.map_sec::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,0.3);
    z-index: 1;
}
.map_sec iframe{
    width: 100%;
    height: 570px;
    display: block;
}


.support_sec{
    padding: 55px 0px;
}
.support_sec .left_sec{
    width: 65%;
    display: flex;
    align-items: center;
    position: relative;
    padding-right: 30px;
}
.support_sec .left_sec::before{
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 85px;
    background-color: #1c1c1c;
    right: -2px;
}
.support_sec .redcircle_wrap {
    display: flex;
    align-items: center;
    padding-right: 25px;
}

.support_sec .redcircle_wrap img.telecaller_pic {
    width: 82px;
    border-radius: 100%;
    height: 82px;
    object-fit: cover;
    margin-left: -18px;
    flex-shrink: 0;
}
.support_sec .redcircle_wrap .circle{
    width: 82px;
    height: 82px;
    background-color: #c22b25;
    border-radius: 100%;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.support_sec .redcircle_wrap .circle img{
    width: 30px;
}
.support_sec .right_sec{
    width: 35%;
    padding-left: 50px;
}
.support_sec .right_sec span{
    font-size: 20px;
    font-weight: 600;
    display: block;
    color: rgba(28, 28, 28, 0.7);
    font-family: var(--heading-font);
}
.support_sec .right_sec a{
    font-size: 42px;
    font-weight: 600;
    color: rgba(28, 28, 28, 1);
    font-family: var(--heading-font);
}
.support_sec .right_sec a:hover{
    color: var(--main-color);
}
.support_sec .left_sec p{
    font-size: 18px;
    margin-bottom: 0px;
    line-height: 28px;
    color: rgba(28, 28, 28, 0.7);
}







.heading_grp.middle{
    text-align: center;
}
.about_intro .heading_grp.middle h2{
    position: relative;
    margin-bottom: 35px;
}
.about_intro .heading_grp.middle{
    padding-bottom: 60px;
}
.about_intro .heading_grp.middle h2:after {
    content: '';
    width: 90px;
    height: 6px;
    background: var(--black-color);
    display: block;
    -webkit-clip-path: polygon(6% 0, 100% 0, 94% 100%, 0% 100%);
    clip-path: polygon(6% 0, 100% 0, 94% 100%, 0% 100%);
    margin: 20px auto 0px auto;
}
.about_intro{
    position: relative;
    z-index: 0;
    padding-bottom: 70px;
}
.about_intro:before {
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    width: 30%;
    height: 100%;
    background-color: #f5fdff;
    z-index: -1;
}
.about_intro .text_col {
    padding-top: 20px;
    padding-left: 20px;
}
.about_intro figure {
    margin: 0px;
    position: relative;
    z-index: 0;
}
.about_intro figure:before {
    content: '';
    background: var(--main-color2);
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    -webkit-clip-path: polygon(80% 0, 0 80%, 0 0);
            clip-path: polygon(80% 0, 0 80%, 0 0);
    z-index: -1;
}
.about_intro figure img {
    padding: 20px 20px 0px;
    width: 100%;
}
.about_intro .heading_grp h2:after {
    display: none;
}
.about_intro p {
    font-size: 18px;
    margin-bottom: 0px;
    line-height: 28px;
    color: rgba(28,28,28,0.7);
}
.about_intro .heading_grp h2 {
    margin-bottom: 15px;
}
.about_intro p + p {
    margin-top: 10px;
}
.about_intro ul {
    margin-top: 20px;
}

.mission_vision{
    background-color: #ddf6fc;
    padding: 50px 0px;
}
.mission_vision .text h3{
    font-size: 35px;
    font-weight: 600;
    color: #1c1c1c;
    position: relative;
    margin-bottom: 35px;
}
.mission_vision .text p{
    font-size: 18px;
    line-height: 28px;
    color: rgba(28,28,28,0.7);
    margin-bottom: 15px;
}
.mission_vision .text{
    padding: 0px 15px;
}
.mission_vision .text h3 span{
    font-weight: 400;
}
.mission_vision .text h3::before{
    content: '';
    position: absolute;
    bottom: -9px;
    left: 0px;
    right: auto;
    margin: 15px auto 0px 0px;
    height: 3px;
    width: 31px;
    background-color: #1c1c1c;
    
}
    

.why_choose_us .heading_grp h2:after{
    display: none;
}
.why_choose_us .row{
    padding-top: 30px;
}
.why_choose_us .text-box h3{
    font-size: 25px;
    margin-bottom: 5px;
}
.why_choose_us .text-box{
    padding: 35px 20px 20px 25px;
    -webkit-box-shadow: 0px 3px 35px 0px rgba(30, 28, 30, 0.12);
            box-shadow: 0px 3px 35px 0px rgba(30, 28, 30, 0.12);
    background-color: #fff;
    position: relative;
}
.why_choose_us .item:nth-child(odd) .text-box:after {
    content: '';
    width: 30px;
    height: 30px;
    background-color: #fff;
    position: absolute;
    bottom: -10px;
    left: 50px;
    -webkit-transform: translateX(-50%) rotate(45deg);
    -ms-transform: translateX(-50%) rotate(45deg);
    transform: translateX(-50%) rotate(45deg);
    z-index: 1;
}
.why_choose_us .item:nth-child(even) .text-box:after {
    content: '';
    width: 30px;
    height: 30px;
    background-color: #fff;
    position: absolute;
    top: -10px;
    left: 50px;
    -webkit-transform: translateX(-50%) rotate(45deg);
    -ms-transform: translateX(-50%) rotate(45deg);
    transform: translateX(-50%) rotate(45deg);
    z-index: 1;
}
.why_choose_us .text-box p{
    font-size: 17px;
    color: rgba(28,28,28,0.7);
    margin-bottom: 10px;
}
.why_choose_us .item{
    display: flex;
    flex-direction: column;
}

.why_choose_us .item:nth-child(odd) .text-box{
    margin-bottom: 32px;
}
.why_choose_us .item:nth-child(even) .text-box{
    margin-top: 32px;
    order: 2;
}
.why_choose_us .item:nth-child(even) .num{
    order: 1;
}
.why_choose_us .item .num{
    margin-left: 30px;
    -webkit-box-shadow: 0px 3px 35px 0px rgba(30, 28, 30, 0.12);
            box-shadow: 0px 3px 35px 0px rgba(30, 28, 30, 0.12);
    width: 39px;
    height: 39px;
    border-radius: 100%;
    font-family: var(--heading-font);
    font-size: 19px;
    font-weight: 600;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}
.why_choose_us .circle{
    width: 76px;
    height: 76px;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #0098d3;
    margin-bottom: 32px;
}
.why_choose_us .circle img.icon{
    width: 37px;
}












/* ====== key frame codes ======= */
.circular{
    animation: circular 10s linear 0s infinite;
    -webkit-animation: circular 10s linear 0s infinite;
    -webkit-transform-origin: center center;
    transform-origin: center center;
}
.zoominout{
    -webkit-animation: zoominout 5s linear infinite;
    animation: zoominout 5s linear infinite;
}
.bounceupdown{
    -webkit-animation: bounceupdown 5s linear infinite;
    animation: bounceupdown 5s linear infinite;
}

@-webkit-keyframes stickyheadersmooth{
	0% {
		-webkit-transform: translateY(-100%);
		        transform: translateY(-100%);
	}
	100% {
		-webkit-transform: translateY(0px);
		        transform: translateY(0px);
	}
}
@keyframes stickyheadersmooth{
	0% {
		-webkit-transform: translateY(-100%);
		        transform: translateY(-100%);
	}
	100% {
		-webkit-transform: translateY(0px);
		        transform: translateY(0px);
	}
}
@-webkit-keyframes bounceupdown {
	0% {
		-webkit-transform: translateY(0px);
		transform: translateY(0px);
	}
	50% {
		-webkit-transform: translateY(20px);
		transform: translateY(20px);
	}
	100% {
		-webkit-transform: translateY(0px);
		transform: translateY(0px);
	}
}

@keyframes bounceupdown {
	0% {
		-webkit-transform: translateY(0px);
		transform: translateY(0px);
	}
	50% {
		-webkit-transform: translateY(20px);
		transform: translateY(20px);
	}
	100% {
		-webkit-transform: translateY(0px);
		transform: translateY(0px);
	}
}

@-webkit-keyframes circular{
    20% {
        -webkit-transform: rotate3d(0, 0, 1, 30deg);
        transform: rotate3d(0, 0, 1, 15deg);
    }
    60% {
        -webkit-transform: rotate3d(0, 0, 1, 10deg);
        transform: rotate3d(0, 0, 1, 5deg);
    }
    to {
        -webkit-transform: rotate3d(0, 0, 1, 0deg);
        transform: rotate3d(0, 0, 1, 0deg);
    }
}

@keyframes circular {
    20% {
        -webkit-transform: rotate3d(0, 0, 1, 30deg);
        transform: rotate3d(0, 0, 1, 15deg);
    }
    60% {
        -webkit-transform: rotate3d(0, 0, 1, 10deg);
        transform: rotate3d(0, 0, 1, 5deg);
    }
    to {
        -webkit-transform: rotate3d(0, 0, 1, 0deg);
        transform: rotate3d(0, 0, 1, 0deg);
    }
}

@-webkit-keyframes zoominout {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
	50% {
		-webkit-transform: scale(0.9);
		transform: scale(0.9);
	}
	100% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

@keyframes zoominout {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
	50% {
		-webkit-transform: scale(0.9);
		transform: scale(0.9);
	}
	100% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

.custom-logo-link {
    width: 180px;
    height: auto;
}

.custom-logo-link img {
    height: auto;
}

.navbar-brand {
    display: none;
}


/* ========== responsive css =========== */
@media only screen and (max-width: 1599px){
.custom-logo-link {
    width: 140px;
}	

	
}

@media(min-width:1500px){
    .container{
        max-width: 1424px;
    }
}


@media(min-width:992px){

    /* navbar*/
    .clickD{
        display: none;
    }
    .navbar-nav  li.menu-item-has-children:hover > .sub-menu{ 
        top: 100%;
        visibility: visible; 
        opacity: 1;
    }
    .navbar-nav  li.menu-item-has-children:hover > .sub-menu li.menu-item-has-children:hover > .sub-menu{
        top: 0;
        left: 100%;
        visibility: visible; 
        opacity: 1;
    }

}




@media (max-width: 1680px) {
    .home_banner .banner_img figure {
        -webkit-transform: translateX(0px);
        -ms-transform: translateX(0px);
        transform: translateX(0px);
    }
}
@media (max-width: 1500px) {
    .about_dtls .left_col .heading {
        padding: 30px 20px 60px;
    }
    .about_dtls .left_col .heading h2 {
        font-size: 45px;
    }
    .about_dtls .left_col {
        padding-left: 0px;
    }
    .about_dtls {
        margin-top: -150px;
    }
    .about_dtls .right_col {
        padding: 25px 12px 0px 25px;
    }
    .about_info.cmn_gap{
        padding-bottom: 290px;
    }
}
@media (max-width: 1400px) {
    .navbar-nav > li {
        margin: 0 20px;
    }
    .navbar-nav > li > a {
        font-size: 15px;
    }
    h1 {
        font-size: 60px;
    }
   
    .home_about_sec .text_col{
        padding-top: 0px;
    }
    .cmn_gap{
        padding: 70px 0px;
    }
    .career_intro .container{
        padding-bottom: 70px;
    }
    .career_info .accordion-button p {
        font-size: 15px;
    }
}

@media (max-width: 1365px) {
	
}

@media(max-width:1300px){
    .navbar-nav > li {
        margin: 0 10px;
    }

    
}
@media(max-width:1199px){ 
    .navbar-nav > li {
        margin: 0px 10px;
    }
    .navbar-nav > li > a {
        font-size: 14px;
    }
    h1 {
        font-size: 50px;
    }
    h2{
        font-size: 40px;
    }
    .about_dtls .left_col .heading h2{
        font-size: 35px;
    }
    .about_dtls {
        margin-top: -130px;
    }
    .about_info.cmn_gap {
        padding-bottom: 200px;
    }
}

 @media(max-width:1024px){
 /* navbar*/
 
.sub-menu.show{
  display: block;
}



}



@media (max-width: 991px) { 
    .navbar-nav .clickD { 
        position: absolute;
        right: 0;
        top: 0;
        width: 20px;
        height: 20px;
        background: url(images/sort-down.svg) center center no-repeat; 
        cursor: pointer; 
        display: block;
        background-size: 10px;
    }
     .navbar-nav > li.menu-item-has-children{
         padding-right: 20px;
    }

    .navbar-toggler {
        position: relative;
        width: 30px;
        height: 30px;
        padding: 0;
        outline: none !important;
        border: none !important;
    }
    .stick,.stick:after,.stick:before {
        width: 30px;
        height: 2px;
        background: var(--main-color);
        position: absolute;
        left: 0;
        top: auto;
        transition: all 0.6s;
        border-radius: 5px;
    }
    .stick:before {
        content: '';
        top: -10px;
        left: 0;
    }
    .stick:after {
        content: '';
        top: 10px;
        left: 0;
    }
    .stick.open{
        transform: translateX(-50px);
        background: transparent;
    }
    .stick.open:before{
        transform: rotate(45deg) translate(42px, -28px);
    }
    .stick.open:after{
        transform: rotate(-45deg) translate(42px, 28px);
    }

    .navbar-nav > li {
        margin: 0px;
        padding: 2px 15px;
    }
    .navbar-nav > li > a{
        display: block;
        padding:5px 15px;
    }
    .navbar-nav > li > a:after{
        display: none;
    }
    .navbar-nav > li > a:hover,
    .navbar-nav > li.active > a,
    .navbar-nav > li.current-menu-item > a{
        background-color: var(--main-color);
        color: var(--white-color);
    }
    .navbar-collapse{
        background-color: rgba(0, 0, 0, .8);
        margin-top: 15px;
    }

    .navbar .btn_style1 a {
        font-size: 14px;
        color: var(--white-color);
    }

    button.navbar-toggler img {
        height: 25px;
}
    /* navbar*/
.navbar-nav .clickD{
    top: 6px;
    right: 10px;
  }
  .sub-menu, .navbar-nav > li > .sub-menu .sub-menu{
    position: relative; 
    width: 100%; 
    left: inherit; 
    top: inherit;
    border: none;
    visibility: visible;
    opacity: 1;
    display: none;
  }
  .sub-menu.show{
      position: relative;
      display: block !important;
  }
  .navbar-nav > li.menu-item-has-children{
      padding-right: 0;
    }
  .navbar-nav > li{
    margin: 0;
    padding: 0;
  }
  .navbar-nav > li > a{
    padding: 6px 10px;
    display: inline-block;
    width: 100%;
  }
  .sub-menu > li > a{
      padding-left: 20px;
    }
  .sub-menu .sub-menu > li > a{
      padding-left: 40px;
    }
  .sub-menu .sub-menu .sub-menu > li > a{
      padding-left: 60px;
    }


    h1{
        font-size: 35px; 	
    }
    h2{ 
        font-size: 30px; 
    }
    h3{
        font-size: 25px;
    }
    h4{
        font-size: 20px;
    }
    h5{
        font-size: 18px;
    }
    h6{
        font-size: 16px;
    }
    .cmn_gap {
        padding: 60px 0px;
    }
    .btn_cmn {
        height: 40px;
        line-height: 40px;
        font-size: 15px;
    }

    .navbar-brand img {
        width: 150px;
    }
    .navbar-nav > li > a{
        color: var(--white-color);
    }
    .main-head .btn_cont {
        margin: 0px;
    }
    .main-head .btn_cont a {
        font-family: var(--secondary-font);
        font-size: 14px;
        width: 100%;
        padding: 6px 10px;
        height: auto;
        line-height: inherit;
        background: transparent;
    }

    .home_banner .banner_text {
        text-align: center;
        margin-bottom: 50px;
    }
    .home_banner p {
        margin-bottom: 15px;
    }
    .home_banner .banner_img {
        width: 80%;
        margin: 0 auto;
    }
    .home_about_sec .img_col {
        position: static;
        -webkit-transform: translate(0);
            -ms-transform: translate(0);
                transform: translate(0);
        padding: 12px;
        margin-bottom: 38px;
    }
    .home_about_sec::before {
        display: none;
    }
    .home_about_sec .img_col_inner img {
        -webkit-clip-path: none;
                clip-path: none;
    }
    .home_about_sec .text_col {
        text-align: center;
    }
    .home_about_sec .year {
        display: none;
    }
    .home_about_sec .img_col_inner:after {display: none;}
    .heading_grp h2:after {
        margin: 10px auto !important;
    }
    .home_about_sec p {
        font-size: 16px;
    }
    .home_banner p {
        font-size: 16px;
    }
    .home_service .item_inner .text_wrap {
        bottom: 0px;
        text-align: center;
    }
    .home_service .item_inner .text_wrap p {
        max-height: inherit;
        font-size: 16px;
    }
    .item_inner .text_wrap h4:after {
        margin: 8px auto;
    }
    .why_choose_us_sec:after {
        width: 50%;
        display: none;
    }
    .why_choose_us_sec .img_col {
        margin-bottom: 50px;
    }
    .why_choose_us_sec .text_inner {
        padding: 0px;
        text-align: center;
    }
    .why_choose_us_sec .reasons .item_inner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
    }
    .why_choose_us_sec .reasons .item_inner img {
        margin: 0px 0px 20px;
    }
    .why_choose_us_sec .heading_grp p {
        font-size: 16px;
    }
    .why_choose_us_sec .item_text p {
        font-size: 16px;
    }
    .testimonial_sec .char_img img {
        display: none;
    }
    .testimonial_sec {
        text-align: center;
    }
    .testimonial_sec .quote_block {
        width: 100%;
        -webkit-transform: translateX(0%);
        -ms-transform: translateX(0%);
        transform: translateX(0%);
    }
    .quote_wrapper .item {
        padding: 15px;
    }
    .quote_wrapper {
        padding: 0px;
        text-align: center;
    }
    .quote_wrapper h6 {
        font-size: 20px;
        text-align: center;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
    }
    .quote_wrapper h6:before {width: 30px;}
    .testimonial_sec .custom_nav {
        position: static;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-transform: translate(0);
            -ms-transform: translate(0);
                transform: translate(0);
        margin-top: 15px;
    }
    .testimonial_sec .quote_block_inner {
        padding: 40px 15px;
        border-radius: 15px;
    }
    .testimonial_sec .custom_nav .arrow {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    .footer_col {
        padding: 12px !important;
        margin-bottom: 40px;
    }
    .footer_col:first-child {
        background: transparent;
    }
    .footer_top {
        padding: 50px 0px;
        text-align: center;
    }
    h5.footer_title:after {
        width: 50px;
        margin: 8px auto 0px;
    }
    .foot_info .item {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
    }
    .foot_info .item i {
        margin: 0px 0px 8px 0px;
    }
    .footer_social ul {
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
    }
    .footer_top .row {
        margin-bottom: -40px;
    }
    .foot_info .text h5 {
        font-size: 16px;
    }
    .foot_info .text h6 {
        font-size: 14px;
    }
    .footer_links a {
        font-size: 14px;
    }
    .footer_about p {
        font-size: 14px;
    }
    .footer_btm p {
        font-size: 12px;
    }
    .testimonial_sec .text_col {
        padding-left: 12px;
    }

    .home_clients .clients_row {
        padding: 0px 0px 20px 0px;
    }
    header.main-head.sticky .btn_cmn {
        padding: 6px 10px;
        font-size: 14px;
        height: auto;
        line-height: initial;
    }
    .main-head .btn_cmn:hover, 
    .main-head .btn_cmn:focus{
        background-color: var(--main-color);
    }

    .contact_info_sec .item {
        margin-bottom: 25px;
    }
    .contact_info_sec .row {
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
    }
    .inner_banner .banner_text h1 {
        font-size: 35px;
    }
    .inner_banner .menu_nav li {
        font-size: 14px;
    }
    .contact_form_sec form input {
        font-size: 15px;
        height: 45px;
    }
    .contact_info_sec p {
        font-size: 14px;
    }
    .map_sec iframe {
        height: 300px;
    }

    .business_solution_sec .item {
        margin-bottom: 25px;
    }
    .business_solution_sec .row {
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
    }
    .business_solution_sec .item_inner {
        text-align: center;
    }
    .business_solution_sec p {
        font-size: 14px;
    }
    .how_we_serve_sec .item_text {
        padding: 12px;
    }
    .how_we_serve_sec .row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
            -ms-flex-direction: column-reverse;
                flex-direction: column-reverse;
    }
    .how_we_serve_sec .item_img {
        -webkit-transform: translateY(0);
            -ms-transform: translateY(0);
                transform: translateY(0);
        margin-bottom: 40px;
    }
    .how_we_serve_sec {
        padding: 60px 0px !important;
        text-align: center;
        margin: 0px;
    }
    .how_we_serve_sec p {
        font-size: 16px;
    }
    .our_service_main_sec .nav-pills {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
    }
    .our_service_main_sec .nav-item {
        width: 33.333333%;
    }
    .our_service_main_sec .nav-item .nav-link:after {
        display: none;
    }
    .our_service_main_sec {
        text-align: center;
    }
    .our_service_main_sec .heading_grp h2 {
        margin-bottom: 0px;
    }
    .our_service_main_sec .heading_grp {
        margin-bottom: 30px;
    }
    .service_img_text .text_col {
        padding-right: 12px;
    }
    .our_service_main_sec .nav-item .nav-link{
        padding: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    }
    .our_service_main_sec .icon {
        display: none;
    }
    .service_img_text .text_col p {
        font-size: 16px;
    }

    .about_intro:before {
        display: none;
    }
    .img_col {
        margin-bottom: 25px;
    }
    .about_info.cmn_gap {
        padding: 40px 0px;
    }
    .about_info .item {
        padding-top: 0px;
        margin: 20px 0px;
        border: 0px;
    }
    .about_dtls {
        margin: 0px;
    }
    .about_dtls.cmn_gap {
        padding: 40px 0px;
    }
    .about_dtls .left_col .heading {
        padding: 30px 15px;
    }
    .about_dtls .left_col .heading:before {
        display: np;
    }
    .about_dtls .left_col .heading:before {
        display: none;
    }
    .about_dtls .left_col {
        padding: 0px 12px;
        margin-bottom: 40px;
    }
    .about_dtls .right_col {
        padding: 0px 12px;
    }
    .about_dtls .right_col .text_col {
        padding-left: 12px;
    }


    
    .career_intro {
        text-align: center;
    }
    .career_intro .text_col {
        padding-right: 12px;
    }
    .career_intro .text_col p {
        font-size: 16px;
    }
    .career_intro .container {
        padding-bottom: 60px;
    }
    .career_intro .row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
            -ms-flex-direction: column-reverse;
                flex-direction: column-reverse;
    }
    .career_intro .img_col {
        margin-bottom: 30px;
    }
    .career_info .top_title_bar {
        display: none;
    }
    .accordion-button p {
        display: none;
    }
    .career_info  .btn_cont {
        position: static;
        transform: translate(0);
    }
    .career_info .accordion-header .btn_cont {
        display: none;
    }
    .career_info .mob_dtls {
        display: block;
    }
    .career_info .accordion-button h5 {
        font-size: 22px;
        width: 90%;
        padding: 0px;
    }
    .career_info .mob_title {
        display: block;
    }
    .career_info .mob_btn_content {
        display: block;
    }
    .career_info .accordion-button {
        min-height: auto;
    }
    .career_info .accordion-body {
        padding: 0px 15px 30px;
    }

  .navbar-collapse {
    margin-top: 0;
    position: fixed;
    left: -250px;
    top: -45px;
    margin: 0px;
    width: 250px;
    height: 100vh !important;
    background: #000;
    z-index: 9;
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}
    .navbar-collapse.show {
        left: 0px;
    }

    .main-head .container {
    width: 100%;
    max-width: 100%;
}

.navbar-outer {
    width: 100% !important;
}

.main-head .btn_cont {
    margin-left: 0;
}

.main-head .btn_cont a {
    justify-content: flex-start;
}

.home_banner.cmn_gap{
    padding-top: 90px;
}

.footer_top{
    text-align: left;
}

h5.footer_title:after {
    margin-left: 0;
}

.footer_social ul {
    justify-content: flex-start;
}
	
.home_service .service_inner_wrapper{
	height:100%;
}

}



@media (max-width: 767px) {

    .tech_row .item {
        width: 33.33333333%;
        margin-bottom: 24px;
    }
    .tech_row {
        margin-bottom: -24px;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
    }
    .home_clients .clients_row {
        padding: 0px;
        margin-bottom: 0px;
    }
    .home_clients .item {
        width: 50%;
        margin-bottom: 24px;
    }
    .why_choose_us_sec .reasons .item_inner{
        margin-bottom: 40px;
    }

    .progress-wrap {
        height: 35px;
        width: 35px;
    }
    .progress-wrap::before {
        line-height: 35px;
        font-size: 30px;
        height: 35px;
        width: 35px;
    }
    .progress-wrap::after {
        line-height: 35px;
        font-size: 18px;
        height: 35px;
        width: 35px;
    }

    
    .our_service_main_sec .nav-item {
        width: 50%;
    }
    .about_info .icon {
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start;
    }
    .about_intro figure img {
        padding: 15px 15px 0px;
    }

    .footer_top .col-lg-4.col-md-6.footer_col{
        width: 100%;
    }
    .footer_col{
        flex-grow: 1;
    }

}

@media (max-width: 575px) {
	.tech_row .item {
        width: 50%;
    }
    .quote_wrapper h6 {
        font-size: 18px;
    }
    .quote_wrapper p {
        font-size: 15px;
        line-height: 1.5;
    }
    .quote_wrapper .item {
        padding: 0 15px;
    }

    .career_modal .btn_cmn {
        height: 40px;
        line-height: 42px;
        min-width: 120px;
        font-size: 14px;
    }

    .career_info .mob_dtls .item p {
        font-size: 16px;
    }
    .career_info .mob_title {
        font-size: 16px;
    }
    .career_info .key_skills p {
        font-size: 16px;
    }

}



@media (max-width: 479px) {	
    .home_banner h6 {
        font-size: 12px;
    }
    .home_banner h1 {
        font-size: 28px;
    }

}
