@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.5.0/font/bootstrap-icons.css");
@import url('https://fonts.googleapis.com/css2?family=Mulish:wght@300;400;500;600;700;800;900&display=swap');
/* colors*/
:root {
    --blue: #007bff;
    --indigo: #6610f2;
    --purple: #6f42c1;
    --pink: #e83e8c;
    --red: #dc3545;
    --orange: #fd7e14;
    --yellow: #ffc107;
    --green: #28a745;
    --teal: #20c997;
    --cyan: #17a2b8;
    --white: #fff;
    --gray: #6c757d;
    --gray-dark: #343a40;
    --primary: #002868;
    --secondary: #BF0A30;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #343a40;
    --black: #000000;
    --theme-blue: #144783;
    --theme-green: #05af94;
}
*{
    scroll-behavior: smooth;
}
body{
  font-family: 'Mulish', sans-serif;
  font-size: 17px;
}
p{
    font-size: 17px;
}
.btn-primary{
    background-color: var(--theme-blue);
    border: 1px solid var(--theme-blue);
    color: var(--white);
}
.bg-theme-blue{
    background-color: var(--theme-blue);
}
.bg-theme-green{
    background-color: var(--theme-green);
}
main{
    margin-top: 69px;
}

.navbar-brand img{
    width: 225px;
}
.navbar{
    padding: 0;
}
.navbar-light .navbar-nav .nav-link {
    color: #181b21;
    transition: color .33s ease,background-color .33s ease;
    font-size: 18px;
    font-weight: 600;
}
.navbar-light .navbar-nav .nav-link:hover{
    background-color: #d8d8d83b;
    border-radius: 10px;
}
.navbar-dark .navbar-nav .nav-link {
    color: #fff;
}
.navbar-dark .navbar-nav .nav-link:hover{
    background-color: #d8d8d83b;
    border-radius: 10px;
}
.nav-item.active .nav-link{
    color: var(--theme-green)!important;
}
.home-banner .carousel {
    position: relative;
    height: auto;
    overflow: hidden;

}
.home-banner .bg-overley{
    content: ' ';
    position:absolute;
    background: #00000070;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}
.carousel-caption {
    position: absolute;
    right: 15%;
    top: 35%;
    left: 15%;
    z-index: 10;
    padding-top: 20px;
    padding-bottom: 20px;
    color: #fff;
    text-align: center;
}
.carousel-caption p{
    font-size: 20px;
     font-weight: 500;
}

.inner-banner{
    height: 400px;
    overflow: hidden;
}
.contact-banner{
    content: '';
    background: url('../img/contact-banner.jpg');
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding: 11rem 0;
    text-align: center;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
}
.about-banner{
    content: '';
    background: url('../img/about-banner.jpg');
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding: 11rem 0;
    text-align: center;
    background-position: top center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
}
.industry-banner{
    content: '';
    background: url('../img/industry-banner.jpg');
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding: 11rem 0;
    text-align: center;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
}
.services-banner{
    content: '';
    background: url('../img/services-banner.jpg');
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding: 11rem 0;
    text-align: center;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
}
.company-banner{
    content: '';
    background: url('../img/company-banner.jpg');
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding: 11rem 0;
    text-align: center;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
}
.contact-banner:before,
.about-banner:before,
.industry-banner:before,
.services-banner:before,
.company-banner:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #0000002b;
}
.contact-banner h1,
.about-banner h1,
.industry-banner h1,
.services-banner h1,
.company-banner h1{
    color: #fff;
    font-size: 5rem;
    font-weight: bold;
        position: relative;
}
.c-box{
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 10px;
    background: linear-gradient(228deg, var(--theme-blue), var(--theme-blue), var(--theme-green));
    height: 212.9px;
    transition: 0.33s;
}
.c-box:hover{
    background: #002146ad;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
}
.contact-details .c-box span i{
    font-size: 3rem;
    color: #fff;
}
.contact-details .c-box h3{
    color: #fff;
}
.contact-details .c-box p{
    font-size: 15px;
    font-weight: 300;
    color: #fff;
}
.contact-details .c-box p a{
    font-size: 15px;
    color: #fff;
}
.zigzag{
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
}
.zigzag .zigzag-img img{
    border-radius: 8px;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
}
.zigzag .zigzag-description ul li{
    font-size: 17px;
}
.zigzag .flexi-2{
    flex-direction: row-reverse;
}
.values .col-md-4{
    padding-left: 0px;
    padding-right: 0px;
}
.v-box{
    text-align: center;
    padding: 25px 10px;
    height: 250px;
    color: #fff;
}
.v-box .v-icon img{
    width: 100px;
    margin-bottom: 1.5rem;
}
.v-box.vbg-1{
    background: #144783;
}
.v-box.vbg-2{
    background: #05af94;
}
.v-box.vbg-3{
    background: #144783;
}
.parallax-bg{
    background: url('../img/bg-2.jpg');
    padding: 100px 0px;
    background-position: left top;
    background-attachment: fixed;
}
.pbg:before{
content: ' ';
    background: linear-gradient( 140deg, #144783, #05af94);
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    opacity: 0.8;

}
.parallax-bg p{
    color: #fff;
    font-size: 17px;
}
.parallax-bg ul li{
    
    font-size: 17px;
    color: #fff;
}
footer.footer{
    color: #fff;
}
footer.footer .footer-widget ul li a{
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    
    line-height: 26px;
}
.w-divider{
    width: 100px;
    border-radius: 15px;
    height: 3px;
    background: #d8d8d8;
    margin-bottom: 1rem;
}
.theme-divider{
    width: 150px;
    border-radius: 15px;
    height: 4px;
    background: linear-gradient(to right, var(--theme-blue), var(--theme-green) );
    margin-bottom: 1rem;
}
.text-theme-blue{
    color: var(--theme-blue);
}
.text-theme-red{
    color: var(--theme-red);
}
.text-theme-green{
    color: var(--theme-green);
}
}
.flex-wrap{
    flex-wrap: wrap!important;
}
.process{
    background: #f8f8f8;
}
.process .p-box{
    width: 25%;
    padding: 0 10px;
    text-align: center;
}
.process .p-box img{
    width: 65px;
    margin-bottom: 1rem;
}
.cre-cards .card{
    border-radius: 10px;
    color: #fff;
    background: linear-gradient(124deg, #002147,#0b4662, #bb133e );
    margin-bottom: 1rem;
}
.cre-cards .card .card-body p{
    font-size: 14px;
}

.parallax-bg-2{
    background: url('../img/bg-5.jpg');
    padding: 100px 0px;
    background-position: center;
    background-attachment: fixed;
    /*height: 90vh;*/
}
/*.parallax-bg-2:before{
    content: ' ';
    background: #0000001f;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;

}*/
.parallax-bg-2 div.h1{
    color: #fff;
    text-align: center;
    font-size:25px;
    line-height: 2rem;
    margin-top: 1rem;

}
.testimonials .heading-title {
    font-family: 'Mulish', sans-serif;
    font-weight: 900;
    color: #000;
    font-size: 20px;
    text-transform: uppercase;
    /*letter-spacing: 0.1rem;*/
    padding-right: 1rem;
    padding-left: 1rem;
}
.testimonials #demo .carousel-control-prev {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-transition: none;
    transition: none;
    opacity: unset;
}
.testimonials #demo .carousel-control-next {
    width: auto!important;
    opacity: 1;
}
.testimonials #demo .carousel-inner .carousel-caption img {
    width: 6rem;
    border-radius: 5rem;
    margin-top: 2rem;
}
.testimonials #demo .carousel-inner .carousel-caption #image-caption {
    font-style: normal;
    font-size: 1rem;
    margin-top: 0.5rem;
}
.bi{
    display: inline-block;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.testimonials #demo .carousel-inner .carousel-caption {
    position: initial;
    z-index: 10;
    padding: 5rem 8rem;
    color: rgba(78, 77, 77, 0.856);
    text-align: center;
    font-size: 1.2rem;
    font-style: italic;
    font-weight: bold;
    line-height: 2rem;
}
.testimonials #demo {
    background: linear-gradient(112deg, #fff 50%, #05af9445 50%);
    /*max-width: 900px;*/
    margin: auto;
}
.testimonials #demo .carousel-control-prev i {
    background-color: var(--theme-blue);
    padding: 1.4rem;
}
.testimonials #demo .carousel-control-next i {
    background-color: var(--theme-blue);
    padding: 1.4rem;
}
.footer-logo{
    font-weight: 900;
    font-size: 3.5rem;
    margin-bottom: 30px;
}
.industry-exp .ie-box{
    text-align: center;
}
.industry-exp .ie-box .ie-img img{
    width: 100px;
    margin-bottom: 20px;
}
footer .fc-1{
    text-align: left;
}
footer .fc-2{
    text-align: right;
}



/*Captcha styles*/

        .captcha-sec { text-align: left !important;}

        .captcha-sec #success, .captcha-sec #fail{
            display: none;

        }
        .captcha-sec .btn + .btn{color: #fff!important;}

        .captcha-sec #message-sec, .captcha-sec #success, .captcha-sec #fail{
            margin-top: 10px;
            margin-bottom: 10px;
            font-size: 16px;
        }

        .captcha-sec #success{
          color: green;
        }
        .captcha-sec #fail{
          color: red;
        }

        .captcha-sec p{
            display: inline;
            margin-right: 5px;
            font-size: 16px;
            color: #666666 !important;
        }

        .captcha-sec input{
            display: inline-block !important;
            border: 1px solid #ea5b36;
            width: 40px !important;
            height: 30px !important;
            text-align: center !important;
            font-size: 14px !important;
            border-radius: 0 !important;
            padding: 0 !important;
            margin: 0!important;
        }

        .captcha-sec button:hover:enabled{
            background: #ea5b36;
        }
        .captcha-sec button{width: auto !important;margin: 0 !important;}

        .captcha-sec button:disabled{
            opacity: .5;
            cursor: default;
        }
        .submite-btn{padding-top: 10px;}
        input#ans:hover { border: 1px solid #ea5b36;}
        @media screen and (max-width: 769px){
            .captcha-sec .btn + .btn{
                margin-top: 0 !important;
                margin-left: 5px !important;
            }
        }


        /**/

