body{
	
    /*font-family: 'Roboto';*/
    font-family: 'Nunito Sans', sans-serif;
/*font-family: 'Quicksand', sans-serif;
font-family: 'Lato', sans-serif;
font-family: 'Inter', sans-serif;*/

	font-size: 17px;
	color: #555;
	line-height: 1.6;
    font-weight: 300;
}
h1{
	font-size: 42px;
	font-weight: 700;
	margin-bottom: 8px;
	color: #343493;
}
h2{
	color: #333;
    font-size: 36px;
}
h3{
	font-weight: 700;
    margin-bottom: 16px;
    font-size: 27px;
    color: #333;
}
h4{
    font-weight: 600;
    margin-bottom: 16px;
}
.innerPage .head_two, h2{
    font-weight: 700;
    /*font-size: 30px;*/
    margin-bottom: 16px;
    color: #555;
}
.homePage h2, .innerPage h2{
    color: #343493;
    margin-bottom: 16px;
    font-weight: 700;
}
a{
    color: #047cff;
}
input:focus{
    outline: none;
}
img{
	max-width: 100%;
}
::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  /*font-style: italic;*/
  color: #888;
  font-size: 90%;
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
  /*font-style: italic;*/
  color: #888;
  font-size: 90%;
}

::-ms-input-placeholder { /* Microsoft Edge */
  /*font-style: italic;*/
  color: #888;
  font-size: 90%;
}
.clear:after{
	content: "";
	display: block;
	clear: both;
}
a{

}
a:hover{
	text-decoration: none;
	color: #343493;
}
.container{
	max-width: 1366px;
}
ul{
	margin: 0px;
	padding: 0px;
}
ul li{
	list-style: none;
}
.ul_style li{
    background-image: url(../images/tick.svg);
    background-size: 16px;
    background-repeat: no-repeat;
    padding: 6px 0 12px 24px;
    background-position: 0px 10px;
}
/*.ul_style li:before{
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
}*/
ul.half_width{
  display: -ms-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
ul.half_width li{
  width: 50%;
  padding-right: 8px;
}
.ul_style.white li{
    background-image: url(../images/tick_w.png);
    background-size: 20px;
    background-repeat: no-repeat;
    padding: 2px 0 12px 24px;
    background-position: 0px 10px;
}
/*.btn_style1{
	background-color: #343493;
    color: #fff;
    border: 1px solid transparent;
    display: inline-block;
    padding: 12px 24px;
    font-size: 92%;
    margin-top: 16px;
    box-shadow: 0px 2px 4px #ccc;
    -ms-transition: all 0.3s;
    transition: all 0.3s;
}
.btn_style1:hover{
	background-color: #fff;
    color: #343493;
    border: 1px solid #343493;
}*/
.btn_style2{
	background-color: #fff;
    color: #343493;
    padding: 8px 36px;
    display: inline-block;
    /*border-top-right-radius: 6px;
    border-bottom-left-radius: 14px;*/
    font-size: 20px;
    border: 1px solid transparent;
    /*box-shadow: 2px 3px 2px #f1f1f1;*/
    -ms-transition: all 0.3s;
    transition: all 0.3s;
}
.btn_style2:hover{
	background-color: #f1f1f1;
    box-shadow: 1px 1px 7px #e9e9e9;
    color: #343493;
    border: 1px solid #fff;
}
.btn_style1{
    background-color: #047cff;
    color: #fff;
    border: 1px solid transparent;
    display: inline-block;
    padding: 6px 24px;
    font-size: 92%;
    margin-top: 16px;
    box-shadow: 0px 2px 4px #ccc;
    border-radius: 4px;
    -ms-transition: all 0.3s;
    transition: all 0.3s;
}
.btn_style1:hover{
    background-color: #fff;
    color: #047cff;
    border: 1px solid #047cff;
}
.btn_style1:focus{
    outline: none;
}
.section_space{
	margin: 5% 0;
}
.section_padd{
	padding: 5% 0;
}
.section_bg{
	background-color: #f8f8f8;
}
.section_bg1{
    background-color: #f2f6fa;
}
header .logo{
    padding: 8px 0;
    -ms-transition: all 0.3s;
    transition: all 0.3s;
    max-height: 100px;
    -webkit-animation: sqrA 4s infinite linear;
    animation: sqrA 4s infinite linear;
}


@-webkit-keyframes sqrA {
  from {
    -webkit-transform: translateX(120px) rotateY(0deg);
            transform: translateX(120px) rotateY(0deg);
  }
  to {
    -webkit-transform: translateX(120px) rotateY(360deg);
            transform: translateX(120px) rotateY(360deg);
  }
}

@keyframes sqrA {
  from {
    -webkit-transform: translateX(0px) rotateY(0deg);
            transform: translateX(0px) rotateY(0deg);
  }
  to {
    -webkit-transform: translateX(0px) rotateY(360deg);
            transform: translateX(0px) rotateY(360deg);
  }
}


.header_row{
	-ms-display: flex;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}
.header_menu{
	-ms-display: flex;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.header_menu > ul{
	-ms-display: flex;
	display: flex;
}
.header_menu li{
    margin-left: 48px;
}
.header_menu .has-sub li{
    margin-left: 0px;
}
.header_menu li a{
	padding: 20px 0px;
	display: block;
	color: #444;
	font-size: 18px;
	font-weight: 500;
    border-width: 0px;
    position: relative;
    -ms-transition: all 0.3s;
    transition: all 0.3s;
}
.header_menu > ul > li > a:after{
	content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    height: 20px;
    width: 20px;
    /*-ms-transition: all 0.3s;
    transition: all 0.3s;*/
    margin: auto;
    right: 0;
    transform: rotate(180deg);
}
.header_menu li a:hover:after, .header_menu li a.active:after{
	/*width: 100%;*/
}
.header_menu li a:hover, .header_menu li a.active{
    color: #343493;
}
/*.header_menu li a:hover:after{
    background: url("../images/plug_off.png");
    background-size: cover;    
    opacity: 0.1;
}*/
.header_menu li a.active:after{
    background: url("../images/plug.png");
    background-size: cover;    
}
/*.header_menu .has-sub:hover > a{
	background-color: #047cff;
    color: #fff;
}*/
.header_menu .has-sub ul{
	position: absolute;
    text-align: left;
    width: 250px;
    right: 0px;
    top: 200%;
    background-color: #fff; 
    opacity: 0;
    visibility: hidden;
    box-shadow: 0px 3px 16px #cecece;
    -ms-transition: top 0.3s;
    transition: top 0.3s;
}
.header_menu .has-sub ul:before{
    content: "";
    position: absolute;
    right: 15px;
    top: -20px;
    border: 10px solid transparent;
    border-bottom-color: #fff;
}
.header_menu .has-sub{
	position: relative;
}
.header_menu .has-sub ul li {
    float: none;
    /*background: #234090;*/
}
.header_menu .has-sub ul li a {
    padding: 10px 12px;
    position: relative;
    margin: 0px;
}
.header_menu .has-sub ul li a:hover{
    background-color: #f2f6fa;
    color: #0056b3;
}
.header_menu .has-sub:hover ul {
    opacity: 1;
    visibility: visible;
    top: 100%;
    z-index: 1;
}
.header_menu .input-group{
	max-width: 200px;
    margin-left: 15px;

    display: none;
}
.header_menu .form-control:focus{
    outline: none;
    box-shadow: none;
    border-color: #ced4da;
}
.header_menu .dropdown-toggle {
    line-height: 0;
    display: inline-block;
    position: relative;
    top: 3px;
    margin-left: 3px;
    font-size: 15px;
}
header.fixed{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 91;
    background-color: #fff;
    box-shadow: 0px 1px 6px #ddd;
}
/*header.fixed + section{
    padding-top: 118px;
}*/
header.fixed .logo{
	max-width: 240px;
    padding-bottom: 5px;
    padding-top: 5px;
    max-height: 60px;
}
header.fixed .header_menu li a{
	font-size: 18px;
    padding: 8px 0px;
}
header.fixed .header_menu  ul li a{
    padding: 18px 10px 8px;
}
header.fixed .header_top{
    padding: 8px 0;
}
.header_parent{
    -ms-display: flex;
    display: flex;
    flex-wrap: wrap;
    align-content: space-between;
    -ms-transition: all 0.3s;
    transition: all 0.3s;
    justify-content: flex-end;
}
.header_top{
    width: 100%;
    padding: 8px 0 ;
}
.header_top ul{
    -ms-display: flex;  
    display: flex;  
    justify-content: flex-end;
    align-items: center;
}
.header_top ul li{
    margin-left: 15px;
}
.header_top ul .btn_style1{
    margin-top: 0px;
    background-color: #047cff;
    box-shadow: none;
    padding: 4px 10px;
    border-radius: 4px;
}
.header_top ul .btn_style1.w_app{
    background-color: #25D366;
    top: 0px;
}
.header_top ul .btn_style1.w_app i{
    font-size: 18px;
}
.header_top ul .btn_style1 i{
    margin-right: 4px;
}
.header_top ul .btn_style1:hover{
    color: #f7964a;
    background-color: #fff;
    border-color: #f7964a;
}
header.fixed .header_top ul .btn_style1{
    /*padding: 5px 16px;*/
}
header{
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    z-index: 9;
    -ms-transition: all 0.3s;
    transition: all 0.3s;
}
header .call_us{
    font-weight: 500;
}
header .call_us a{
    background-color: #343493;
    color: #fff;
    padding: 8px;
    display: inline-block;
    border-radius: 4px;
    margin-bottom: 10px;
    font-size: 15px;
}

.res-but {
    width: 60px;
    height: 48px;
    position: fixed;
    right: 0;
    top: 0;
    cursor: pointer;
    z-index: 10000;
    display: none;
}

.res-but:after {
    position: absolute;
    top: 22px;
    right: 20px;
    display: block;
    height: 8px;
    width: 20px;
    border-top: 2px solid #dddddd;
    border-bottom: 2px solid #dddddd;
    content: '';
}

.res-but:before {
    transition: all .3s ease;
    position: absolute;
    top: 16px;
    right: 20px;
    display: block;
    height: 2px;
    width: 20px;
    background: #ddd;
    content: '';
}

/* Turn it into an X when open */
.res-but.menu-opened {}

.res-but.menu-opened:after {
    transition: all .3s ease;
    top: 23px;
    border: 0;
    height: 2px;
    width: 19px;
    background: #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.res-but.menu-opened:before {
    top: 23px;
    background: #fff;
    width: 19px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
} 
body{
    padding-top: 95px;
}

.banner_content h1{
    color: #555;
}
.banner p{
	font-weight: 300;
    font-size: 20px;
}



.owl-carousel.type1 .item{
	position: relative;
}
.owl-carousel.type1 .left{
    padding: 60px 140px 50px 40px;
    position: relative;
    top: 30px;
    background-color: #fff;
    border-top-right-radius: 60px;
}
.owl-carousel.type1 p{
    font-size: 26px;
    margin-bottom: 16px;
}
.owl-carousel.type1 .left:before{
	content: "";
	position: absolute;
    top: 35px;
    background-image: url(../images/quote_icon.png);
    width: 15px;
    height: 15px;
    background-repeat: no-repeat;
    background-size: contain;
}
.owl-carousel.type1 .left .name{
	display: block;
}
.owl-carousel.type1 .left .desig{
    font-size: 16px;
}
.owl-carousel.type1 .right{
    border-radius: 50%;
    position: absolute;
    right: 0px;
    top: 5px;
    z-index: 1;
}
.owl-carousel.type1 .right img{
    width: 110px;
    height: 110px;
    border-radius: 50%;
    box-shadow: -17px 10px 23px #e1e1e1;
}
.owl-theme.type1 .owl-nav{
	text-align: right;
    margin-top: -25px;
    position: relative;
    float: right;
    z-index: 1;
}
.owl-theme.type1 .owl-nav .owl-next{
	
}
.owl-theme.type1 .owl-nav button{
	padding: 8px !important;
    float: left;
    margin: 0;
    border-radius: 0px;
    opacity: 0.7;
}
.owl-theme.type1 .owl-nav button:focus{
	outline: none;
}
.owl-theme.type1 .owl-nav button:hover{
	opacity: 1;
    background-color: transparent;
}


.owl-carousel.type2 .item{
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    align-items: center;
    background-color: #0c89fd;
}
.owl-carousel.type2 .left{
    width: 50%;
    padding: 30px;
    color: #fff;
    position: relative;
}
.owl-carousel.type2 p{
    font-size: 32px;
    margin-bottom: 16px;
}
.owl-carousel.type2 .left:before{
    content: "";
    position: absolute;
    top: 0px;
    background-image: url(../images/quote_icon.png);
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-size: contain;
}
.owl-carousel.type2 .left .name{
    display: block;
}
.owl-carousel.type2 .left .desig{
    font-size: 16px;
}
.owl-carousel.type2 .right{
    width: 50%
}
.owl-theme.type2 .owl-nav{
    text-align: right;
    background-color: #343493;
    position: relative;
    float: right;
    z-index: 1;
}
.owl-theme.type2 .owl-nav .owl-next{
    
}
.owl-theme.type2 .owl-nav button{
    padding: 8px !important;
    float: left;
    margin: 0;
    border-radius: 0px;
    /*opacity: 0.7;*/
}
.owl-theme.type2 .owl-nav button:focus{
    outline: none;
}
.owl-theme.type2 .owl-nav button:hover{
    opacity: 1;
    background-color: #d15b00;
}
.owl-carousel.type2 .owl-stage{
    display: -ms-flexbox;
    display: flex;
    align-items: center;
}
.centered_sec1{
	max-width: 1200px;
	margin-left: auto;
    margin-right: auto;
}
.testimonial_sec{
	max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.stripe_sec{
    background-color: #343493;
    position: relative;

    background-color: #343493;
    position: relative;
    background-image: url(../images/bg_style1.png);
    background-size: 84%;
}
.stripe_sec:after{
    content: "";
    width: 190px;
    height: 145px;
    position: absolute;
    top: 35%;
    right: 30px;
    opacity: .05;
    border-radius: 50%;
    background-color: #888;
}
.stripe_sec h3{
	font-size: 30px;
	margin-bottom: 32px;
	color: #fff;
}
.stripe_sec p{
	font-weight: 300;
	color: #fff;
}

footer{
	background-color: #f1f1f1;
    padding-top: 40px;
    color: #555;
    font-weight: 300;
    font-size: 16px;
}
footer h4{
	margin-bottom: 16px;
    font-size: 20px;
}
footer a{
	color: #555;
	display: inline-block;
	padding: 4px 0;
}
footer a:hover{
	color: #343493;
}
.copyrights{
	border-top: 1px solid #ccc;
    padding: 16px 0;
    margin-top: 24px;
    font-size: 14px;
}
.social_icons{
    display: -ms-flex;
    display: flex;
}
.social_icons li a{
	padding: 4px 8px;
    display: block;
    font-size: 16px;
    border: 1px solid #555;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    text-align: center;
    margin-left: 5px;
}
.social_icons li a:hover{
    background-color: #343493;
    color: #fff;
    border-color: #d15b00;
}
.copyrights{
	display: -ms-flexbox;
	display: flex;
	justify-content: space-between;
}

/*Page Style Start*/
.heading_style1{
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    margin-bottom: 32px;
}
.heading_style1 h1{
    /*color: #333;*/
}
.flat_imgs img{
    padding: 8px 16px;
    margin: 14px 0;
}
.mt_top1{
    position: relative;
    top: 150px;
}
.full_img{
    box-shadow: 0px 8px 20px #ddd;
}


.owl-carousel.type3{
    /*display: none;*/
}
.owl-carousel.type3 .content{
    background-color: #fff;
    padding: 30px 30px 30px 85px;
    box-shadow: 0px 6px 24px rgba(0, 0, 0, 0.2);
    margin: 30px;   
    background-image: url(../images/bg_service.png);
    background-repeat: no-repeat;
    background-size: 58px;
    background-position: top 47% left 8px;     
    display: block;
    color: #555;
}
.owl-carousel.type3 .content.amc-icon{
    background-image: url(../images/icon/amc-icon.png);
}
.owl-carousel.type3 .content.cctv-icon{
    background-image: url(../images/icon/cctv-icon.png);
}
.owl-carousel.type3 .content.av-icon{
    background-image: url(../images/icon/av-icon.png);
}
.owl-carousel.type3 .content.home-automation-icon{
    background-image: url(../images/icon/home-automation-icon.png);
}
.owl-carousel.type3 .content.digital-signage-icon{
    background-image: url(../images/icon/digital-signage-icon.png);
}
.owl-carousel.type3 .content.ict-icon{
    background-image: url(../images/icon/ict-icon.png);
}
.owl-carousel.type3 .content.iptv-icon{
    background-image: url(../images/icon/iptv-icon.png);
}
.owl-carousel.type3 .content.smatv-icon{
    background-image: url(../images/icon/smatv-icon.png);
}
.owl-carousel.type3 .content h4{
    font-size: 19px;
    text-transform: uppercase;
    /*color: #343493;*/
    font-weight: 700;
}
.owl-carousel.type3 .content p{
    margin-bottom: 0px;
}


.lights_on_off{
    width: 200px;
    display: inline-block;
    cursor: pointer;
    margin-top: -95px;
    animation: myfirst 5s  infinite;
    animation-direction: reverse;
}
@keyframes myfirst {
  0%   {transform: rotate(0deg)}
  25%  {transform: rotate(1deg)}
  50%  {transform: rotate(0deg)}
  75%  {transform: rotate(-1deg)}
  100% {transform: rotate(0deg)}
}
/*Page Style End*/


/*Contact page*/
.contact_form h4{
    margin-bottom: 20px;
}
.contact_form .form-control{
    border: none;
    border-radius: 0px;
    border-bottom: 1px solid #888;
    padding-left: 0;
    min-height: 45px;
    color: #333;
    background-color: #f8f8f8;
}
.contact_form .form-control:focus{
    /*color: #efeded;
    background-color: #242424;
    border-color: transparent;*/
    outline: 0;
    box-shadow: none;
}
.contact_page{
    position: relative;  
    padding: 48px; 
    /*max-width: 1100px;*/
    margin: 0 auto;
}
.contact_page:before{
    content: "";
    position: absolute;
    left: 20%;
    right: 0px;
    top: 0px;
    bottom: 0px;
    background-color: #f8f8f8;
    box-shadow: 0px 6px 24px rgba(0, 0, 0, 0.1);
}
.contact_page .left_block{
    /*position: absolute;
    width: 30%;
    background-color: #343493;
    z-index: 1;
    padding: 24px;
    color: #fff;*/
    background-color: #0c89fd;
    /*color: #fff;*/
    padding: 32px;
}
.contact_page .left_block li{
    display: -ms-flexbox;
    display: flex;
    /*-ms-flex-wrap: wrap;
    flex-wrap: wrap;*/
    margin-bottom: 15px;
}
.contact_page .left_block li > i{
    margin-right: 8px;    
    margin-top: 3px;
}
.contact_page .left_block li p{
    margin-bottom: 0px;
}
.contact_page .left_block li a{
    color: #fff;
    border-color: #fff;
}
.form-group {
    margin-bottom: 24px;
}
.iframe1{
    width: 100%;
    height: 400px;
}
.remove_enquiry + .stripe_sec{
    display: none;
}
/*Contact page*/


blockquote{
    text-align: center;
    font-size: 140%;
    max-width: 1000px;
    margin: 32px auto;    
    padding: 2%;
}


.partners{

}
.partners .list{
    float: left;
    width: 20%;
    text-align: center;
    min-height: 200px;
    position: relative;
    overflow: hidden;
    /*border: 2px solid #f2f6fa;    */
}
.partners .list img{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}
.partners .list .content{
    opacity: 0;
    visibility: hidden;
    background-color: #f2f6fa;
    position: absolute;
    left: 0;
    top: 200px;
    bottom: 0;
    right: 0;
    color: #444;
    padding: 20px;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
    -ms-transition: all 0.3s;
    transition: all 0.3s;
}
.partners .list:hover .content{
    opacity: 1;
    visibility: visible;
    top: 0px;
    display: none;
}
.partners .list:nth-child(odd){
    /*background-color: #f2f6fa;*/
}
.partners .list:nth-child(even){
    background-color: #444;
}


.clients{

}
.clients .list{
    float: left;
    width: 50%;
    text-align: center;
    min-height: 200px;
    position: relative;
    overflow: hidden;
    /*border: 2px solid #f2f6fa;    */
}
.clients .col-md-6 .list:first-child{
    border-right: 2px solid #f2f6fa;
    border-bottom: 2px solid #f2f6fa;
}
.clients .col-md-6 .list:nth-child(2){
    border-bottom: 2px solid #f2f6fa;
}
.clients .col-md-6 .list:nth-child(3){
    border-right: 2px solid #f2f6fa;
}
.clients .list img{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    max-width: 60%;
    max-height: 60%;
}
.clients .list .content{
    opacity: 0;
    visibility: hidden;
    background-color: #f2f6fa;
    position: absolute;
    left: 0;
    top: 200px;
    bottom: 0;
    right: 0;
    color: #444;
    padding: 20px;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
    -ms-transition: all 0.3s;
    transition: all 0.3s;
}
.clients .list:hover .content{
    opacity: 1;
    visibility: visible;
    top: 0px;
    display: none;
}
.clients .list.box1{
    border-bottom: 1px solid #cecece;   
    border-right: 1px solid #cecece;   
}
.clients .list.box2{
    border-right: 1px solid #cecece;
}
.clients .list.box1.no-border-right{
    border-right: none;
}
.grid_testi{
    background-color: #AA81F3;
    height: 100%;
    padding: 3% 8%;
    color: #fff;
    display: flex;
    align-items: center;    
}
.grid_testi.color1{
    background-color: #AA81F3;
}
.grid_testi.color2{
    background-color: #40b5ab;
}
.grid_testi.color3{
    background-color: #edcd5b;
}
.grid_testi.color4{
    background-color: #ed5b9e;
}
.grid_testi.color5{
    background-color: #5bed95;
}
.grid_testi img{
    display: block;
    max-height: 120px;
}
.grid_testi h4{
    font-weight: 400;
    font-size: 24px;
    margin-top: 24px;
    margin-bottom: 4px;
    text-transform: uppercase;
}
.grid_testi p{
    margin: 0;
    font-size: 19px;
    line-height: 1.4;
    font-style: italic;    
}
.grid_testi .img_wrap{
    position: relative;
    padding-bottom: 24px;
}
.grid_testi .img_wrap:after{
    content: "";
    position: absolute;
    border-bottom: 1px dotted #fff;
    width: 120px;
    bottom: 0;
    height: 2px;
}
.grid_testi:after{
    content:"";
    /*width: 190px;
    height: 145px;
    position: absolute;
    top: 5%;
    right: 30px;
    opacity: .05;
    border-radius: 50%;
    background-color: #888;*/
}
.footer_stripe1{
    text-align: center;
    max-width: 800px;
    margin: auto;
}
.footer_stripe1 span{
    color: #047cff;
    font-weight: 700;
}
.footer_stripe1 h3{
    font-size: 36px;
    line-height: 1.3;
    margin-top: 8px;
}
.footer_stripe1 p{
    
}
.footer_stripe1 a{
    font-weight: 600;
    font-size: 105%;
    margin-top: 5px;
}
.contact_map{
    line-height: 0;
}
.errorMsg{
    color: #ff0000;
    font-size: 14px;
}
#success_msg{
    position: fixed;
    right: 10px;
    bottom: 10px;
    background-color: #1bb443;
    padding: 20px;
    z-index: 991;
    font-size: 16px;
    color: #fff;
    width: 400px;
    display: none;
}
#success_msg.ErrMsg{
    background-color: #ff0000;
}
.mob_image{
    display: none;
}
.img_blk_style1 .cols.active {
    margin-top: 55px;
}
.partner_logo{
    width: 160px;
    margin-top: 10px;
}

.product_list .item{
    display: -ms-flexbox;
    display: flex;
    padding: 20px;
    box-shadow: 0px 2px 8px rgb(0 0 0 / 0.1);
    margin-bottom: 25px;
    border-radius: 8px;
}
.product_list .item .img_blk{
    -ms-flex: 0 0 250px;
    flex: 0 0 250px;
}
.product_list .item1 .img_blk{
    position: relative;
    height: 200px;    
}
.product_list .item1 .img_blk img{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    max-height: 200px;
    max-width: 100%;
}
.product_list .item .right{
    padding-left: 20px;    
}
.product_list .item h4{
    color: #343493;
    margin-bottom: 8px;
    font-weight: 700;
    font-size: 18px;
}
.product_list .item h6{
    font-weight: 600;
}
.product_list .item p{
    margin: 0;
    font-size: 16px;    
}
.product_list .item .btn_style1{
    float: right;
}
.product_list .item1{
    text-align: center;
    padding: 8px;    
    position: relative;
    -ms-transition: all 0.3s;
    transition: all 0.3s;
}
.product_list .item1 h6{
    margin-top: 8px;
    font-size: 14px;
    color: #888;
}
.product_list .item1 h4{
    color: #343493;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 15px;
}
.product_list .item1:hover{
    box-shadow: 0px 2px 8px rgb(0 0 0 / 0.1);
}
.product_list .item1:hover p{
    visibility: visible;
    opacity: 1;
}
.product_list .item1 p:before{
    content: "";
    position: absolute;
    left: 15px;
    bottom: -20px;
    border: 10px solid transparent;
    border-top-color: #0095da;    
}
.product_list .item1 p{
    visibility: hidden;
    opacity: 0;
    position: absolute;
    z-index: 1;
    font-size: 15px;
    text-align: left;
    background-color: #0095da;
    color: #fff;
    bottom: 94%;
    left: 10%;
    padding: 12px;
    margin: 0px;
    border-radius: 4px;
    -ms-transition: all 0.3s;
    transition: all 0.3s;
}
.flexslider .slides img{
    margin: 0 auto;
    width: auto;
    height: auto;
}
.flex-direction-nav a{
    line-height: 1;
}
.table_style1{

}
.table_style1 th{
    background-color: #0095da;
    color: #fff;    
}
.table-bordered td, .table-bordered th{
    font-size: 16px;
}
.product_detail .right{
    font-size: 16px;
    margin-bottom: 24px;
}
.product_detail .left{
    position: -webkit-sticky; /* Safari */
    position: sticky;
    top: 100px;   
    margin-bottom: 24px; 
}
.product_detail h4{
    margin-bottom: 8px;    
    font-size: 20px;
    color: #222;
}
.product_detail h6{
    margin-bottom: 16px;    
}
.flexslidercarousel1 .slides > li{
    position: relative;
    height: 90px;
    border: 1px solid #dee2e6;
}
.flexslider1{
    margin-bottom: 20px;
}
.flexslider1 .slides > li{
    position: relative;
    height: 350px;
    border: 1px solid #dee2e6;
}
.flexslidercarousel1 .slides > li img, .flexslider1 .slides > li img{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    max-width: 100%;
    max-height: 100%;
    padding: 5px;
}
.flexslidercarousel1 .slides > li.flex-active-slide{
    border-color: #343493;
}
.row_gap [class^="col-md-3"], .row_gap [class^="col-md-4"]{
    margin-top: 24px;
    margin-bottom: 24px;
}
.circle_list{

}
.circle_list .item{
    padding: 15px;
    border: 4px solid #ddd;
    
    background-color: #fff;
    /*width: 300px;
    height: 300px;*/
    margin: 0 auto;

    border-color: #343493;
    background-color: rgb(245 125 32 / 0.8);    
    display: table-cell;
    vertical-align: middle;
}
.circle_list .item h5{
    /*position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;*/
    color: #fff;
    font-weight: 600;
    font-size: 22px;
    margin-bottom: -50px;
    line-height: 1;
    /*padding: 0px 35px;*/
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}
.circle_list .item h5 i{
    float: right;
    font-size: 18px;
    margin-top: 2px;
}
.circle_list .item p{
    margin: 0px;
    opacity: 0;
    visibility: hidden;
    line-height: 1.4;
    color: #fff;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}
.circle_list .item:hover p{
    opacity: 1;
    visibility: visible;
}
.circle_list .item:hover h5{
    margin-bottom: 10px;
}

.career_bg{
    background-color: #f8f8f8;
    padding: 25px;
}
.owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: -30px;
    z-index: 91;
    position: relative;
}


ul{
    margin: 0px;
    padding: 0px;
}
ul li{
    list-style: none;
}
.ul_style li{
    position: relative;
}
.ul_style li a{
    color: #fff;
    padding: 6px 20px;
    display: inline-block;
    position: relative;
    right: 0;
    -ms-transition: all 0.3s;
    transition: all 0.3s;
}
.ul_style li a:hover{
    right: -2px;
    color: #f8a537;
}
.ul_style li a:before{
    content: "";
    position: absolute;
    left: 0px;
    top: 21px;
    width: 12px;
    border-top: 1px solid #f8a537;
}
.ul_style li a:hover:before{
    border-color: #f8a537;
}
/*.ul_style li:before{
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
}*/
ul.half_width{
  display: -ms-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
ul.half_width li{
  width: 50%;
  padding-right: 8px;
}
.ul_style1 li{
    padding-left: 34px;
    margin-top: 10px;
    position: relative;
}
.ul_style1 li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background-image: url(../images/bulb_icon.png);
    background-size: cover;
    background-repeat: no-repeat;
    width: 25px;
    height: 25px;
}
.ul_style1 li:after {
    content: "";
    position: absolute;
    top: 14px;
    bottom: -20px;
    /*border-left: 1px solid #aaa;*/
    left: 1px;
    z-index: 1;
}
.ul_style1 li:last-child:after{
    display: none;
}
.ul_style2{

}
.ul_style2 li{
    padding: 15px;
    background-color: #f6f6f6;
    margin: 15px 0 30px;
    border-radius: 8px;
    position: relative;
}
.ul_style2 li:hover{
    background-color: #f1f1f1;
}
.ul_style2 li:after{
    content: "";
    position: absolute;
    top: -25px;
    left: 0;
    right: 0;
    /*margin: auto;*/
    background-image: url(../images/arrow-down.png);
    background-size: contain;
    background-repeat: no-repeat;
    height: 20px;
    width: 20px;
    z-index: 9;
}
.all_p_list_row .sticky_blk{
    position: sticky;
    top: 100px;
}
.mt_60{
    margin-top: 60px;
}


.project_list1{

}
.p_list_row{
    display: -ms-flex;
    display: flex;
}
.project_list1 .img_blk{
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
}
.project_list1 .content_blk{
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
    padding: 20px;
    display: -ms-flex;
    display: flex;
    align-items: center;
}
.project_list1 .content_wrapper{
    
}

.contact_form h4,
.flexslider1 {
    margin-bottom: 20px;
}
.contact_form .form-control {
    border: none;
    border-radius: 0;
    border-bottom: 1px solid #888;
    padding-left: 0;
    min-height: 45px;
    color: #333;
    background-color: #f8f8f8;
}
.clients .list,
.partners .list {
    float: left;
    min-height: 200px;
    overflow: hidden;
    text-align: center;
}
.contact_form .form-control:focus {
    outline: 0;
    box-shadow: none;
}
.contact_page {
    position: relative;
    /*padding: 48px;*/
    margin: 0 auto;
}
.contact_page:before {
    content: "";
    opacity: 0;
    position: absolute;
    left: 20%;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: #f8f8f8;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
}
.contact_page .contact_form {
    background-color: #f8f8f8;
    padding: 32px;
    box-shadow: 0 6px 24px rgb(0 0 0 / 10%);
    margin: 50px auto 0;
    max-width: 600px;
}
.product_list .item,
.product_list .item1:hover {
    box-shadow: 0 2px 8px rgb(0 0 0 / 0.1);
}
.contact_page .left_block {
    padding: 32px;
    height: 90%;
    margin-bottom: 20px;
    background-color: #f8f8f8;
    border-left: 4px solid #047cff;
}
.grid_testi,
.grid_testi.color1 {
    background-color: #aa81f3;
}
.contact_page .left_block li {
    display: -ms-flexbox;
    display: flex;
    /*-ms-flex-wrap: wrap;
    flex-wrap: wrap;*/
    margin-bottom: 15px;
}
.contact_page .left_block li > i {
    margin-right: 8px;
    margin-top: 3px;
}
.contact_page .left_block li.fa-phone {
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    top: -5px;
    left: -5px;
    position: relative;
}
.contact_page .left_block li p {
    margin-bottom: 0;
}
.contact_page .left_block li a {
    color: #555;
    border-color: #555;
}
.clients .list.box1,
.clients .list.box2 {
    border-right: 1px solid #cecece;
}
.form-group {
    margin-bottom: 24px;
}

@media (min-width: 1200px){
    .header_menu{
        display: block !important;
    }
}
@media (max-width: 992px) {
    .header_menu > ul{
        display: block;
    }
    .header_menu li a{
        color: #555;
        font-size: 16px;
    }
    .header_menu .input-group{
        display: none;
    }
    .res-but{
        display: block;
    }
    .menu .dropdown-toggle {
        padding: 16px;
        cursor: pointer;
        position: absolute;
        right: 0;
        top: 7px;
    }
    .header_menu .has-sub ul:before{
        display: none;
    }
    body{
        font-size: 16px;
    }
    .latest_post h2 {
        font-size: 20px;
    }
    header.inner_pages ul li a, .inner_pages .header_menu .parent .primary a {
        color: #fff;
    }
    .header_menu {
        display: none;
        position: fixed;
        right: 0px;
        top: 0px;
        height: 100%;
        overflow-y: auto;
        min-width: 260px;
        padding-top: 40px;
        background-color: #fff;
        z-index: 991;
        margin: 0;
        text-align: left;
        box-shadow: 0px 3px 28px rgba(0, 0, 0, 0.2);
    }
    header ul li a, .header_menu .parent .primary a{
        font-size: 16px;
    }
    .header_menu .parent{
        display: block;
    }
    .logo_txt{
        display: none;
    }
    .header_menu .left li, .header_menu .right li, .header_menu .left, .header_menu .right{
        float: none;
        margin: 0;
    }
    .header_menu .has-sub ul{
        position: relative;
        opacity: 1;
        visibility: visible;
        background-color: #0c89fd;
        box-shadow: none;
        left: 0;
        width: 100%;
        display: none;
        border-top: none;
    }
    .header_menu .has-sub ul li a{
        color: #fff;
    }
    .header_menu li{
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        margin-left: 0px;
    }
    .header_menu .dropdown-toggle{
        float: right;
        padding-right: 10px;
        padding: 8px 8px;
        line-height: 0;
        cursor: pointer;
    }
    .header_menu .parent .has-sub ul li {
        background-color: #3e3e3e;
    }
    .header_menu .has-sub ul:after{
        display: none;
    }
    .header_menu a.current .dropdown-toggle{
        -ms-transform: rotate(-180deg);
        transform: rotate(-180deg);
    }




    .header_menu  ul li {
        float: none;
    }
    .header_menu  ul li a {
        padding: 10px 15px;
        border-bottom: 1px solid transparent;
        padding: 12px 14px;
    }
    .header_menu li a:hover, .header_menu li a.active {
        color: #0a5bff;
        font-weight: 500;
        background-color: #f2f6fa;
    }
    .header_menu  ul li a:hover, .header_menu .parent .primary a:hover {
        -ms-transform: none;
        transform: none;
        border-bottom: 1px solid;
    }
    .banner-content-bg {
        display: none;
    }

    .mob_logo{
        display: block;
    }
    .res-but {

        width: 60px;
        height: 48px;
        position: absolute;
        right: 0;
        top: 25px;
        cursor: pointer;
        z-index: 10000;
    }

    .res-but:after {
        position: absolute;
        top: 22px;
        right: 20px;
        display: block;
        height: 8px;
        width: 20px;
        border-top: 2px solid #0095da;
        border-bottom: 2px solid #0095da;
        content: '';
    }

    .res-but:before {
        transition: all .3s ease;
        position: absolute;
        top: 16px;
        right: 20px;
        display: block;
        height: 2px;
        width: 20px;
        background: #0095da;
        content: '';
    }

    /* Turn it into an X when open */
    .res-but.menu-opened {}

    .res-but.menu-opened:after {
        transition: all .3s ease;
        top: 3px;
        border: 0;
        height: 2px;
        width: 19px;
        background: #0095da;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    .res-but.menu-opened:before {
        top: 3px;
        background: #0095da;
        width: 19px;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }   
    .about_sec i {
        font-size: 18px;
        margin: 16px 0;
    }   
    .section_padd {
        padding: 30px 0;
    }
    .section_space {
        margin: 30px 0;
    }
    h1 {
        font-size: 28px;
    }
    h2{
        font-size: 24px;
    }
    h3{
        font-size: 24px;
    }
    .banner p {
        font-size: 16px;
    }
    .owl-carousel.type1 p {
        font-size: 19px;
    }
    .owl-carousel.type1 .right img {
        width: 80px;
        height: 80px;
    }
    .stripe_pattern1:after {
        width: 160px;
        height: 80px;
    }
    .about_sec {
        padding: 0;
        margin-bottom: 15px;
    }
    .img_blk_style1 .cols.active{
        margin-top: 55px;
    }
    .stripe_pattern1:before {
        width: 150px;
        height: 40px;
    }
    .social_icons li a{
        height: 32px;
    }
    .stripe_sec h3 {
        font-size: 24px;
        margin-bottom: 24px;
    }
    .btn_style2 {
        padding: 4px 24px;
        font-size: 17px;
    }
    footer h4 {
        margin-bottom: 12px;
        font-size: 18px;
    }
    footer{
        font-size: 15px;
        padding-top: 20px;
    }
    footer a {
        padding: 2px 0;
    }
    .copyrights {
        padding: 10px 0;
        margin-top: 0px;
    }
    .about_sec h2 {
        font-size: 24px;
        margin-bottom: 16px;
    }
    .img_style1 .item h4{
        padding: 12px 8px;
        font-size: 18px;
        text-shadow: none;
        opacity: 1;
        bottom: 0px;
    }
    .img_style1 .item h4:before {
        -ms-transition: all 0.3s;
        transition: all 0.3s;
        bottom: 0px;
    }
    .stripe_pattern1 {
        margin-top: 40px;
        padding-top: 40px !important;
    }
    .centered_sec {
        margin: 0 auto 16px;
    }
    .stripe_pattern1:after{
        background-size: 100%;
    }
    .header_top {
        position: absolute;
        top: 24px;
        right: 50px;
    }
    .col-md-6 > h3{
        margin-top: 20px;
    }
}
@media (max-width: 768px) {
    .banner_content{
        margin-bottom: 15px;
    }
    .banner_img{
        display: none;
    }
    .header_row .left{
        max-width: 220px;
    }
    .footer_stripe1 h3 {
        font-size: 24px;
    }
    .clients .list{
        min-height: 120px;
    }
    .grid_testi img {
        max-height: 70px;
    }
    .grid_testi h4 {
        font-size: 22px;
        margin-top: 16px;
    }
    .grid_testi p {
        font-size: 16px;
    }
    .grid_testi{
        padding: 24px;
    }
    .contact_page:before{
        display: none;
    }
    .contact_page .left_block{
        margin-bottom: 36px;
    }
    .contact_form .form-control{
        background-color: transparent;
    }
    .contact_page{
        padding: 0px;
    }
    .form-group {
        margin-bottom: 16px;
    }
    .stripe_sec{
        background-size: 100%;        
    }
    .mob_image{
        display: block;
    }
    .mob_image_hide{
        display: none;
    }
    .remove_bg_mob{
        background-color: #fff;
        padding: 0;
    }
    .btn_style1{
        margin-top: 8px;
    }
}
@media (max-width: 600px) {
    .header_top{
        display: none;
    }
}
@media (max-width: 480px) {
    .owl-carousel.type1 .left {
        padding: 40px 20px;
    }
    .owl-carousel.type1 .right{
        display: none;
    }
    .owl-carousel.type1 .left:before {
        top: 20px;
        width: 12px;
        height: 12px;
        left: 20px;
    }
    .flat_imgs img {
        padding: 8px 12px;
        margin: 14px 0;
    }
    .stripe_sec:after{
        display: none;
    }
    .contact_page .left_block {
        padding: 16px;
    }
    .owl-carousel.type3 .content {
        padding: 110px 20px 20px;
        margin: 20px;
        background-size: 80px;
        background-position: top 2% left 15px;
    }
    .section_padd {
        padding: 25px 0;
    }
    .section_space {
        margin: 25px 0;
    }
    .stripe_sec h3 {
        font-size: 23px;
        margin-bottom: 16px;
    }
    .btn_style2 {
        padding: 2px 16px;
        font-size: 16px;
    }
    .remove_bg_mob{
        background-color: #fff;
        padding: 0;
    }
    .footer_stripe1 h3 {
        font-size: 22px;
    }
}
@media (max-width: 380px) {
    .banner_content input{
        width: 180px;
    }
    .banner_content .btn_style1{
        padding: 6px 14px;
    }
}