/********** Template CSS **********/
:root {
    --primary: #009CFF;
    --secondary: #777777;
    --light: #F8F8F8;
    --dark: #252525;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

.call_email a{
    color: rgb(0, 0, 0); 
}

/* a:link {
    color: #252525;
    background-color: transparent;
    text-decoration: none;
  } */

a:hover{
    color:rgb(50, 50, 50);
}

a:visited {
    color: #252525;
    background-color: transparent;
    text-decoration: none;
  }

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


.soc_icn small{
    color: #428bca;
    font-size: 1.2rem;
}

.soc_icn i{
    font-size: 18px;
    color: #009CFF;
}



/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary {
    color: #FFFFFF; 
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 20px 0;
    color: #FFFFFF;
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--dark);
}

.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 8px 0;
    }

    .navbar .navbar-nav {
        margin-top: 8px;
        border-top: 1px solid rgba(256, 256, 256, .1)
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
#header-carousel .carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .5);
    z-index: 1;
}

#header-carousel .carousel-control-prev,
#header-carousel .carousel-control-next {
    width: 10%;
}

#header-carousel .carousel-control-prev-icon,
#header-carousel .carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 500px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

#header-carousel .carousel-indicators [data-bs-target] {
    width: 60px;
    height: 60px;
    text-indent: 0;
    margin-bottom: 15px;
    border: 2px solid #FFFFFF;
    border-radius: 60px;
    overflow: hidden;
}

#header-carousel .carousel-indicators [data-bs-target] img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--secondary);
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}


.welcm h6{
    margin-bottom: 20px;
}

.welcm p{
    text-align: justify;
    line-height: 1.8rem;
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    font-size: 18px;
}

.section-title::before {
    position: absolute;
    content: "";
    width: calc(100% + 80px);
    height: 2px;
    top: 4px;
    left: -40px;
    background: var(--primary);
    z-index: -1;
}

.section-title::after {
    position: absolute;
    content: "";
    width: calc(100% + 120px);
    height: 2px;
    bottom: 4px;
    left: -60px;
    background: var(--primary);
    z-index: -1;
}

.section-title.text-start::before {
    width: calc(100% + 40px);
    left: 0;
}

.section-title.text-start::after {
    width: calc(100% + 60px);
    left: 0;
}



/*** Img Border ***/
.img-border {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.img-border::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 3rem;
    bottom: 3rem;
    border: 3px solid var(--primary);
    border-radius: 6px;
}

.img-border img {
    position: absolute;
    top: 1rem;
    left: 1rem;
    width: calc(100% - 3rem);
    height: calc(100% - 3rem);
    object-fit: cover;
    border-radius: 6px;
}



/*** Footer ***/

.footer h5{
    color: rgb(170, 170, 170);
    font-size: 1.1rem;
}

/* .foot_links p{
    color: #009CFF;
} */

/* .footer p{
    color: rgb(139, 139, 139);
    font-size: 1.1rem;
} */

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--secondary);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--secondary);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--dark);
}

.footer .copyright a:hover {
    color: var(--primary);
}


.index_service h5{
    color:rgb(24, 181, 253);
}

.index_service img{
    width: 50px;
}

.footer_soc_ico i{
    font-size: 1.4rem;
    color: rgb(171, 171, 171);
}


/* <!-- Services Start --> */

.service{
    margin: 0px;
}

.index_service img{
    width: 100px;
}

.index_service h5{
    font-size: 1.3rem;
    color:rgb(1, 80, 141); 
}

.serv h1{
    font-size:2.2rem ;
}


/* Quotes Start */

.quotes h2{
    font-size: 1.7rem;
    color:#e04827;
    margin-bottom: 0px;
}

.quotes i{
    font-size: 1.4rem;
}
/* Quotes Ends */


/* Business Associate Start */
#bus_ass {
    /* background: linear-gradient(rgba(255, 77, 41, 0.85), rgba(255, 77, 41, 0.85)), url(../img/bg_banner1.jpg); */
    background-color: #cceafd;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding:10px;
    margin-bottom: 3rem;
}

#bus_ass_cont{
    font-size: 1.1rem;
    color: rgb(42, 42, 42);
    margin-bottom: 1rem;
}

#bus_ass h1{
    color: #222222;
    margin-bottom: .9rem;
    font-size: 2rem;
}
/* Business Associate End */


/* ----------------  Industry Start ----------------   */
.industry_head{
    text-align: center;
    width: 15rem;
}

.industry h1{
    letter-spacing: -.05rem;
    /* font-size: 10rem; */
}


.card i{
    color: rgb(158, 123, 63);
    font-size: 2rem;
    margin-top: .5rem;
    /* margin-top: 1rem; */
}


.ind_data row{
    margin-bottom: 5rem;
    color: red;
}

/* ----------------  Industry End ----------------   */



/* ABOUT US PAGE */

/* About Us Section */
.abt_us_pg h6{
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.abt_us_pg h1{
    font-size: 1.8rem;
    line-height: 2.5rem;
}

.abt_us_pg p{
    text-align: justify;
}
/* About Us Section end */


/* Mision Vison */
.misival h5{
    color: rgb(71, 71, 71)
    font-size: 1.2rem;
    letter-spacing: .1rem;
}
/* Mision Vison  */


.video-wrapper{
    outline: auto;
    outline-color: #c8c8c8;
}


.qul_gur
{
    width: 800px;
}

.card-title{
    color: #e04827;
    font-size:1.2rem ;
}

.card{
border-color: rgb(201, 201, 201);
border-radius: .5cm;
border-style: groove;
border-width: 1px;
}
.card-text{
    text-align: center;
    color: #656565;
}

#benefits h5{
    color: rgb(0, 139, 181);
    font-weight:500;
}

.conc_benefit h3{
    color: #ff7b00;
    font-size: 22px;
    line-height: 30px;
}

.conc_benefit {
    max-width: 90%;
}




/*--------------------------------------------------------------
# benefits
--------------------------------------------------------------*/
.benefits .icon-box {
    text-align: center;
    border: 1px solid #ebebeb;
    padding: 30px 30px;
    transition: all ease-in-out 0.3s;
    background: #fff;
  }
  
  /* .benefits .icon-box .icon {
    margin: 0 auto;
    width: 64px;
    height: 64px;
    background: #ffc451;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: 0.3s;
  }
   */
  /* .benefits .icon-box .icon i {
    color: #880000;
    font-size: 28px;
    transition: ease-in-out 0.3s;
  }
   */
  .benefits .icon-box h4 {
    font-weight: 500;
    margin-bottom: 18px;
    font-size: 18px;
    text-transform: uppercase;
    color: rgb(0, 183, 224);
    line-height: 30px;
  }
  
  .benefits .icon-box h4 a {
    color: #151515;
    transition: ease-in-out 0.3s;
  }
  
  /* .services .icon-box h4 a:hover {
    color: #ffc451;
  } */
  
  .benefits .icon-box p {
    line-height: 28px;
    font-size: 1rem;
    font-weight: 200;
    margin-bottom: 0;
    color: #656565;
  }
  
  .benefits .icon-box:hover {
    border-color: #fff;
    box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
    transform: translateY(-10px);
  }

  


  /* # OUR SERVICES PAGE / Why Us
-------------------------------------------------------------- */ 
.serv_hd h4{
    color: #ff7b00;
}


.why-us {
  padding: 0;
}

.why-us .row {
  overflow: hidden;
}

.why-us .content-item {
  padding: 30px;
  border-left: 1px solid rgb(217, 217, 217);
  border-bottom: 1px solid rgb(217, 217, 217);
  margin: -1px;
}

/* Number */
.why-us .content-item span {    
  display: block;
  font-size: 24px;
  font-weight: 400;
  color: #6ec083;
}

/* Heading */
.why-us .content-item h4 {
  font-size: 1.4rem;
  font-weight: 500;
  padding: 0;
  margin: 20px 0;
  color: #ff7b00;
}

/* Conent */
.why-us .content-item p {
  color: #656565;
  font-size: 18px;
  margin: 0;
  padding: 0;
}

@media (max-width: 768px) {
  .why-us .content-item {
    padding: 40px 0;
  }
}

.why-us img{
    width: 150px;
    border-radius: 50%;
    border: 2px solid rgb(194, 193, 193);
    /* box-shadow: 0px 1px 4px rgb(131, 129, 129); */
      display: inline-flex;
      justify-content: center;
      align-items: center;
      width: 90px;
      height: 90px;
      margin-bottom: 5px;
      background: #fff;
      border-radius: 50%;
      transition: 0.5s;
      color: #428bca;
      box-shadow: 0px 0 25px rgba(0, 0, 0, 0.20);
      overflow: hidden;
    }


    .bott_ser{
        max-width: 80%;
        text-align: center;
        font-size: 19px;
        color: #428bca;
    }



.why_us_point img{
    width: 60px;
    margin-bottom: 10px;
}


.info i{
font-size: 25px;
}

/* .info h4{
    font-size: 1.2rem;
} */

/* .info strong{
    color: blue;
} */

.info{
    line-height: 1.8rem;
    font-size: 16px;
}


/* -------------------------------------- 
CONTACT US PAGE
--------------------------------------  */

.address strong{
    font-size:1.3rem ;
    color: rgb(0, 132, 248);
    font-family: "roboto";
    word-spacing: .3rem;
    letter-spacing: .1rem;
}

.cont_link a{
    color: rgb(46, 46, 46);
}

.cont_link{
    color: rgb(46, 46, 46);
}