@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,300i,400,400i,500,500i,600,600i,700');
/*
font-family: 'Poppins', sans-serif;
*/
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    font-weight: 400;
    color: #333;
    background: #fff;
    font-size: 16px;
}
p:empty{
    display: none;
}
.darrow{display: none;}
body,a, .btn, img, a:hover, div {
    transition: all 0.5s ease-in-out;
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    text-decoration: none;
}
.list-inline li{display: inline-block;}
.hidden{display: none;}
.red-text{color:#c00; }
.red-bg{background: #c00 !important; color: #fff;}
.relative{position: relative;}
.btn-round{
    background: #c00;
    color: #fff;
    border-radius: 4px; 
    border: 1px solid #c00;
}
.btn-round:hover{
    color: #c00;
    background: #fff;
    border-color: #fff;
}
header {
    position: absolute;
    left: 0;
    right: 0;
    z-index: 999;
}
header.fixed-header {
    position: fixed;
    top: 0;    
    left: 0;
    right: 0;
    z-index: 999;   
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.075);
    animation: smoothScroll 1s forwards;
    background: rgba(113, 113, 113, 0.93);
}
@keyframes smoothScroll {
    0% {
        transform: translateY(-40px);
    }
    100% {
        transform: translateY(0px);
    }
}
.navbar-expand-lg .navbar-nav .nav-link{
    color: #fff;
    font-weight: 300;
    position: relative;
    padding-right: 15px;
    padding-left: 15px;
}
.navbar-expand-lg .navbar-nav .nav-link:hover{
    color: #c00;
}
header.fixed-header .navbar-expand-lg .navbar-nav .nav-link{
 /*  padding: 10px 15px; 
   font-size: 16px; */
}
header.fixed-header .navbar-expand-lg .navbar-nav .nav-link:hover{
    color: #fff;
}
header.fixed-header  a.navbar-brand {
    max-width: 150px;
}
header.fixed-header .nav-link.btn-round{
  /*  padding: 6px 8px !important;  */ 
}
header.fixed-header .nav-link.btn-round:hover{
    color: #c00 !important;
}
.nav-link.down::after{
    border: 0;
    font-family:'fontAwesome';
    content: '\f107';
    position: absolute;  
    top: 10px;
    right: 0;
    color: #fff;
}
.dropdown-menu {    
/*   border-top: 3px solid #c00;  */
    margin-top: 0;
}
.dropdown-item{
    padding: 8px 10px;
    font-size: 16px;
    font-weight: 400;
    border-left: 2px solid transparent;
}
.dropdown-item:focus, .dropdown-item:hover{
    background: #ccc;
    color: #000;
    border-left: 2px solid #ff0600;
}
.dropdown:hover .dropdown-menu{
    display: block;
}
.banner-text {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    max-width: 1140px;
    margin: 0 auto;
    color: #fff;
    display: flex;
    padding-top: 40px;
}
.banner-heading{
    font-size: 48px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 500;
}
.banner-subheading{
    font-size: 24px;
    color: #fff;
    font-weight: 300;
    margin: 20px auto 30px;
    max-width: 450px;
}
.banner img.w-100{
    max-height: 452px;
    object-fit: cover;
}
.slick-dots{
    bottom: 25px;
}
.slick-dots li button{
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #fff;
    font-size: 0;
    opacity: 0.2;
}
.slick-dots li button:before{
    display: none;
}
.slick-dots li.slick-active button{
    opacity: 1;
}
.slick-dots li{
    width: auto;
    height: auto;
}
.zigzag-body h2{
    font-size: 30px;
    color: #161616;
    font-weight: 300;
    margin-bottom: 15px;
    text-transform: capitalize;
}
.zigzag-body h3{
    font-size: 20px;
    color: #1e1e1e;
    font-weight: 500;
}
.zigzag-body p{
    font-size: 16px;
    color: #292929;
}
.zigzag-body figure{
    overflow: hidden;
}
.zigzag-body figure img{
   max-width: 100%;
   margin: 0 auto;
   display: block;
}
/*.zigzag-body figure:hover img{
    transform: scale(1.2,1.2);
}*/
.list-text h2{
    font-size: 36px;
    margin-bottom: 30px;
}
.list-text {
    padding-left: 25px;
}
.list-text ul li{
    position: relative;
    margin-bottom: 25px;
}
.list-text ul{
    position: relative;
    padding-left: 30px;
    list-style-type: none;
}
.list-text ul:before{
    position: absolute;
    content: '';
    left: 0;
    top: 3px;
    height: 84%;
    width: 3px;
    background: #c00;
}
.list-text ul li:before{
    position: absolute;
    content: '';
    left: -42px;
    top: 0px;
    width: 25px;
    height: 25px;
    background: #c00;
    font-size: 16px;
    color: #fff;
    border-radius: 100%;    
    text-align: center;
    line-height: 25px;
}
.list-text ul li:first-child:before{
    content: '1';
}
.list-text ul li:nth-child(2):before{
    content: '2';
}
.list-text ul li:nth-child(3):before{
    content: '3';
}
.list-text ul li:nth-child(4):before{
    content: '4';
}
.btn-more{
   background: #c00;
   color: #fff;
   border-radius: 0px; 
   border: 1px solid #c00;
   text-transform: uppercase;
   font-size: 16px;
   padding: 0;
   width: 115px;
   height: 33px;
   line-height: 33px; 
   margin-top: 20px;
}
.zig-zag-text {
    overflow: hidden;
}
.btn-more:hover{
    color: #c00;
    background: #fff;   
}
.cus-success-story h2{
    font-size: 30px;
    color: #070707;
    font-weight: 500;
    margin-bottom: 10px;
}
.cus-success-story p{
    font-size: 16px;
    color: #292929;
    font-weight: 400;
    margin-bottom: 20px;
}
.story-bg{
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 521px;
    background-attachment: fixed;
}
.whitebg-s{
    background: #fff;
    padding: 15px;
    padding-left: 25px;
    width: 100%;
    max-width: 578px;  
    margin-right: 8%;
}
.whitebg-s p{
    color: #5b5b5b;
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 15px;
}
.thum-img{
    width:45px;
    height: 45px;
    border-radius: 100%;
    margin-right: 10px;
    overflow: hidden;
    background: #c00;
    margin-bottom: 0;
}
.thum-img img{
    width: 100%;
    height: 100%;
}
.name-txt h6{
    font-size: 16px;
    font-weight: 400;
    color: #000;
    margin: 0;    
}
.name-txt span{
    display: block;
    font-size: 16px;
    color: #000;
    font-weight: 300;
}
.whitebg-s .slick-dots li button{
    opacity: 1;
    background: #c4c4c4;
}
.whitebg-s .slick-dots li.slick-active button{   
    background: #c00;
}
.whitebg-s .slick-dots{
    width: 90%;
    text-align:right;
}
.aw-box{
    border: 1px solid #ddd;
    padding: 15px;
    width: 32%;
    height: 202px;
    display: flex;
    align-items: center;
    margin-top: 25px;
    overflow: hidden;
}
.aw-box img{
    display: block;
    margin: 0 auto;  
    max-width: 100% !important;
    width: auto !important;
}
.why-trignig h2{
    font-size: 36px;
    color: #292929;
    font-weight: 300;
    margin-bottom:20px;
}
.why-trignig h2 strong{
    font-weight: 600;    
}
.main-footer{
    background: #636161;
    padding:40px 0px;
}
.c-info ul li{
    position: relative;
    padding-left: 15px;
    color: #fff;
    font-weight: 300;
    font-size: 16px;
    margin-bottom: 10px;
}
.c-info ul li a{
    display: block;
    padding: 5px 10px;
    color: #fff;
    font-weight: 300;
}
.c-info ul li i{
    position: absolute;
    left: 0;
    top: 9px;
    font-size: 16px;
    color: #c00;
    text-align: center;
}
.links{
    padding-left: 25px;
}
.links h2{
    font-size: 24px;
    color: #fff;
    text-transform: capitalize;
    font-weight: 400;
    margin-bottom: 15px;
}
.links ul li a{
     display: block;
    padding: 5px 0px;
    color: #fff;
    font-weight: 300;
    font-size: 16px;
}
.links ul li a:hover,
.c-info ul li a:hover{   
    text-decoration: underline;
}
.bottom-footer{
    background: #090909;
    color: #fff;
    padding: 10px 0;
}
.bottom-footer p{
    margin: 0;
}
.bottom-footer ul li a{
    display: block;
    font-size: 20px;
    line-height: 35px;
    width: 35px;
    text-align: center;
    color: #fff;
    background: #424242;
    border-radius: 100%;
    margin: 0 5px;
}
.banner-text.overlay {
/*    background: rgba(6, 35, 71, 0.74);*/
    background: rgba(0,0,0,0.55);
    max-width: 100%;
}
.banner-text.overlay .banner-subheading{
    max-width: 100%;
}
.solution{
    background-repeat: no-repeat;
    background-position-x: -3px;
    background-position-y: -104px;    
}
.icon-box{
    margin-bottom: 45px;
    position: relative;
}
.icon-box:hover .round-icon img{
    transform: rotate(360deg);
}
.icon-box:hover .round-icon{
    background: #c00;
}
.round-icon{
    min-width: 80px;
    height: 80px;
    margin-right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    background: #2099d8;
    overflow: hidden;
}
.round-icon img{
    max-width: 50px;
    max-height: 50px;
}
.icon-box .text h3{
    font-size: 18px;
    font-weight: 500;
    color: #292929;
    margin-bottom: 10px;
}
.icon-box .text p{
    font-size: 16px;
    margin-bottom: 10px;
}
.t-txt h5{
    font-size: 18px;
    line-height: 28px;
    max-width: 939px;
    margin: 0 auto;
}
ul.listed li{
    font-size: 16px;
    padding: 5px 0px;
    padding-left: 20px;
    margin-bottom: 5px;
    position: relative;
    font-weight: 400;
}
ul.listed li:before{
    position: absolute;
    content: '';
    left: 0;
    top: 12px;
    width: 6px;
    height: 6px;
    border-radius: 100%;
    background: #c00;
}
.grey-box{
    background: #f6f6f6;
    padding: 15px;
    width: 32%;
    min-height: 205px;
}
.grey-box h5{
    font-size: 18px;
}
.grey-box p{
    font-size: 16px;
}
.onepage-nav{
    background: #8d8d8d;
}
.onepage-nav.fixed-header {
    position: fixed;
    left: 0;
    right: 0;
    z-index: 99999;
    top: 0;    
    animation: smoothScroll 1s forwards;
}
.onepage-nav ul li a{
    font-size: 16px;
    font-weight: 300;
    padding: 15px 10px;
    color: #fff;
    background: transparent;
    display: block;
}
.onepage-nav ul li a:hover,.onepage-nav ul li.active a{
    background: #c00;
    color: #fff;    
}
.serchbx .form-control{
    background: transparent;
    box-shadow: none;
    border: 0;
    border-bottom: 1px solid #f3f3f3;
    color: #fff;
    border-radius: 0;
}
.serchbx .input-group-text{
    color: #fff;
    background: transparent;
    border-radius: 0;
    border: 0;
    border-bottom: 1px solid #f3f3f3;
    cursor: pointer;
    outline: none;
}
.serchbx input::-webkit-input-placeholder { 
  color: #ddd;
}
.serchbx input::-moz-placeholder { 
  color: #ddd;
}
.serchbx input:-ms-input-placeholder { 
  color: #ddd;
}
.serchbx input:-moz-placeholder { 
  color: #ddd;
}
.tech-note h2{
    margin-bottom: 20px;
    padding-bottom: 10px;
    position: relative;
    font-size: 24px;
    color: #000;
}
.tech-note h2:after{
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0 auto;
    width: 60px;
    height: 2px;
    background: #c00;    
}
.r-box{
    background:#f6f6f6;
    padding:0 15px 15px;
    margin-bottom: 15px;
}
.r-box:hover{
    box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,.075);    
}
.name-txt {
    padding-right: 10px;
}
/*.r-box:hover figure img{
    transform: scale(1.2,1.2);
}*/
.r-box figure{
    max-height: 186px;
    overflow: hidden;
    margin: 0 -15px 15px;
}
.r-box figure iframe{
    width: 100% !important;
    max-width: 100%;
    height: 100%;
}
.r-box h5{
    font-size: 18px;
    color: #010101;
    font-weight: 500;
}
.r-box .date-r{
    font-size: 16px;
    color: #868585;
    display: block;    
}
.r-box p{
    font-size: 16px;
    line-height: 24px;    
}
.r-box a{
    font-weight: 600;
    font-size: 16px;
    padding: 6px 15px;
    background: transparent;
    display: inline-block;
}
.r-box a:hover{
    background: #c00;
    color: #fff;
    border-radius: 35px;
}
.txt-over p{
    line-height: 28px;
}
.btn-div span{
    font-size: 30px;
    text-transform: uppercase;
    color: #fff;
    background: #c00;
    padding:15px 10px;
    display: block;
    text-align: center;
    margin-bottom: 15px;
}
.news-sec h3{
    font-size: 24px;
    color: #000;
}
.n-box{
    background: #f4f2f2;
    padding: 10px;
    text-align: left;
    margin-bottom: 20px;
    overflow: hidden;
}
.n-box h6{
    font-size: 16px;
    color: #000;
}
.n-box span{
    font-size: 12px;
    display: block;
    color: #808080;
    font-style: italic;
}
.n-box p{
    font-size: 16px;
    line-height: 24px;
}
a.btn.btn-white {
    border-radius: 0;
    float: right;
    background: #fff;
    color: #c00;
    padding: 4px 15px;
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
}
.bd-box {
    text-align: center;
    position: relative;
    padding: 15px;
    border: 1px solid #ccc;
    margin-top: 38px;
    margin-bottom: 42%;
}
.bd-box h2{
    font-size: 20px;
    text-transform: uppercase;    
}
.bd-box p{
    font-size: 16px;
}
.bd-box .btn.btn-more{
    margin: 0 auto;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -17px;
    width: 155px;
}
.blog-box.r-box{
    padding-top: 15px;
    overflow: hidden;
    margin-bottom: 25px;
}
.blog-box.r-box figure{
    margin: 0px 0 15px;
    max-height: 268px;
}
.blog-box.r-box span{
    color: #888;
}
.blog-box span.auth{
    color: #000;
    font-weight: 400;
}
.blog-box.r-box a{
    float: right;
}

form.form-group.from{
    display: block;
    padding: 20px;
    background: #a1a1a1;
    min-height: 250px;
    border-radius: 10px;
}
.left-form h5{
    color: #fff;
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.left-form .form-control{
    border-radius: 0;
    border:1px solid #fff;
    background: #fff;
    /*text-transform: capitalize;*/
    max-height: 34px;
    font-size: 16px;
}
.left-form .form-control:focus{
    border-color: #c00;
    box-shadow: 0 0 0 0.1rem rgba(255, 6, 0, 0.42);
}
.dotted-bdr{
    display: block;
    margin: 35px auto;
    border-bottom: 1px dashed #fff;
    max-width: 320px
}
.left-form label{
    font-size: 16px;
    color: #000;
}
.left-form label i{
    color: #c00;
    font-size: 16px;
    margin-right: 6px;
}
.right-form-text h4{
    font-size: 18px;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 10px;    
}
.listed.black li:before{
    background: #777;
    top: 10px;
}
.listed.black li{
    padding: 2px 0 0 20px;
}
.grey-partner-text{
    background: #ebebeb;
    margin-bottom: 24px;
}
ul.step-li li{
    position: relative;
    padding-left: 80px;
    margin-bottom: 10px;
}
ul.step-li li span{
    display: block;
    position: absolute;
    left: 0;
    top: 0;    
    white-space: nowrap;
    overflow: hidden;   
}
.z-txt p{
    font-size: 20px;
}
.apt-bg{
    background-color: #2d98e0;
    background-repeat: no-repeat;
    background-position: left center;
    color: #fff;
    padding: 40px 20px 40px 50%;
    background-size: 46% 100%;
}
.apt-bg p{
    font-size:18px;
}
.privacy-text p{
    font-size: 15px;
    line-height: 26px;
}
.privacy-text .p-list li{
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 6px;
    font-weight: 400;
}
.privacy-text h5{
    margin-top: 30px;
}
.text-italic {
    font-style: italic;
}
.privacy-text ol.p-list{
    margin-bottom: 25px;
}
.privacy-text ol.p-list li{
    padding-left: 15px;
    margin-bottom: 20px;
    font-weight: 400
}
.career-sec,.news-sec{
    padding-top: 4rem;
    padding-bottom: 5rem;   
    background: white;
}
.news-wrap{
    background: #f9f9f9;
    padding: 25px 20px;
     border-radius: 0.5rem;
     border: 0;
}
.career-sec .wrap {
   background: #f9f9f9;
    padding: 25px 20px;
     border-radius: 0.5rem;
     border: 0;
}
.zigzag-body.row .col-12.col-md-6{
    display: flex;
    align-items: center;
    justify-content: center;
}
.paging {
    justify-content: center;
    display: flex;
    height: 100%;
    align-items: center;
}
.pagination li {
    background-color: #dddddd;
    padding: 4px 10px;
    border-radius: 5px;
    margin-right: 10px;
    cursor: pointer;
}


.media-slide{ background: #ffffff; padding: 0.5rem 1rem; margin-bottom: 30px; border: 3px solid #f7f7f7;}
.media-slide .carousel-indicators{ bottom: 0 !important;}
.media-slide .carousel-inner .carousel-item .media .media-pic{ width: 210px; height: 112px; overflow: hidden;}
.media-slide .carousel-inner .carousel-item .media .media-pic img{ width: 100%; object-fit:cover;}
.media-slide .carousel-inner .carousel-item .media .media-body { color: #636161; padding-bottom: 1.5rem;}
.media-slide .carousel-inner .carousel-item .media .media-body h5{ color: #333333; text-transform: uppercase; font-weight: 600;}

.carousel-indicators li{ background: #ebebeb;}
.carousel-indicators .active{background: #c00;}

.carousel-control-prev{ display: none;}
.carousel-control-next{ display: none;}