/********** Template CSS **********/
:root {
    --primary: #355EFC;
    --secondary: #E93C05;
    --tertiary: #555555;
    --light: #DFE4FD;
    --dark: #011A41;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

h1,
.h1,
h2,
.h2,
.fw-bold {
    font-weight: 700 !important;
}

h3,
.h3,
h4,
.h4,
.fw-medium {
    font-weight: 600 !important;
}

h5,
.h5,
h6,
.h6,
.fw-semi-bold {
    font-weight: 500 !important;
}


/*** 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;
}


/*** Button ***/
.btn {
    transition: .5s;
    font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
    color: var(--light);
}

.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 ***/
.fixed-top {
    transition: .5s;
}

.top-bar {
    height: 45px;
    border-bottom: 1px solid rgba(53, 94, 252, .07);
}

.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 {
  padding: 25px 15px;
  color: #45376c;
  font-weight: 600;
  outline: none;
}

.navbar .navbar-nav .nav-link:hover, .navbar .navbar-nav .nav-link.active {
  color: #45376c;
  font-weight: 600;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav {
        margin-top: 10px;
        border-top: 1px solid rgba(0, 0, 0, .07);
        background: #FFFFFF;
    }

    .navbar .navbar-nav .nav-link {
        padding: 10px 0;
    }
}

@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 ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: start;
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 3rem;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--primary);
    border: 10px solid var(--primary);
}

.carousel-control-prev-icon {
    border-radius: 0 3rem 3rem 0;
}

.carousel-control-next-icon {
    border-radius: 3rem 0 0 3rem;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    padding-top: 12rem;
    padding-bottom: 6rem;
    background: url(../img/header.jpg) top left no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-weight: 500;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--tertiary);
}


/*** Facts ***/
.facts {
    background: linear-gradient(rgba(53, 94, 252, .95), rgba(53, 94, 252, .95)), url(../img/bg.png);
}


/*** Callback ***/
.callback {
    position: relative;
}

.callback::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 50%;
    top: 0;
    left: 0;
    background: linear-gradient(rgba(53, 94, 252, .95), rgba(53, 94, 252, .95)), url(../img/bg.png);
    z-index: -1;
}


/*** Feature ***/
.feature .feature-box,
.feature .feature-box * {
    transition: .5s;
}

.feature .feature-box:hover {
    background: var(--primary);
    border-color: var(--primary) !important;
}

.feature .feature-box:hover * {
    color: #FFFFFF !important;
}


/*** Service ***/
.service .nav .nav-link {
    transition: .5s;
}

.service .nav .nav-link.active {
    border-color: var(--primary) !important;
    background: var(--primary);
}

.service .nav .nav-link.active h5 {
    color: #FFFFFF !important;
}

.service .nav .nav-link.active h5 i {
    color: #FFFFFF !important;
}


/*** Project ***/
.project-item,
.project-item .project-img {
    position: relative;
}

.project-item .project-img a {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, .5);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    opacity: 0;
    transition: .5s;
}

.project-item:hover .project-img a {
    opacity: 1;
}

.project-item .project-title {
    position: absolute;
    top: 3rem;
    right: 0;
    bottom: 0;
    left: 3rem;
    border: 1px solid var(--light);
    border-radius: 8px;
    display: flex;
    align-items: flex-end;
    padding: 18px;
    z-index: -1;
    transition: .5s;
}

.project-item:hover .project-title {
    background: var(--primary);
    border-color: var(--primary);
}

.project-item .project-title h4 {
    transition: .5s;
}

.project-item:hover .project-title h4 {
    color: #FFFFFF;
}

.project-carousel .owl-nav {
    margin-top: 25px;
    display: flex;
    justify-content: center;
}

.project-carousel .owl-nav .owl-prev,
.project-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: var(--light);
    border-radius: 45px;
    font-size: 22px;
    transition: .5s;
}

.project-carousel .owl-nav .owl-prev:hover,
.project-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    color: var(--light);
}


/*** Team ***/
.team-item {
    position: relative;
    padding: 4rem 0;
}

.team-item img {
    position: relative;
    z-index: 2;
}

.team-item .team-text {
    position: absolute;
    top: 0;
    right: 3rem;
    bottom: 0;
    left: 3rem;
    padding: 15px;
    border: 1px solid var(--light);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    transition: .5s;
    z-index: 1;
}

.team-item:hover .team-text {
    background: var(--primary);
    border-color: var(--primary);
}

.team-item .team-text h4 {
    transition: .5s;
}

.team-item:hover .team-text h4 {
    color: #FFFFFF;
}

.team-item .team-social .btn {
    background: var(--light);
    color: var(--primary);
}

.team-item:hover .team-social .btn {
    background: #FFFFFF;
}

.team-item .team-social .btn:hover {
    background: var(--primary);
    color: var(--light);
}


/*** Testimonial ***/
.testimonial-item {
    position: relative;
    text-align: center;
    padding-top: 30px;
}

.testimonial-item .testimonial-text {
    position: relative;
    text-align: center;
}

.testimonial-item .testimonial-text .btn-square {
    position: absolute;
    width: 60px;
    height: 60px;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
}

.testimonial-item .testimonial-text::before {
    position: absolute;
    content: "";
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    border: 30px solid;
    border-color: var(--light) transparent transparent transparent;
}

.testimonial-item .testimonial-text::after {
    position: absolute;
    content: "";
    bottom: -59px;
    left: 50%;
    transform: translateX(-50%);
    border: 30px solid;
    border-color: #FFFFFF transparent transparent transparent;
}

.testimonial-carousel .owl-item img {
    margin: 0 auto;
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-dots {
    margin-top: 25px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 30px;
    height: 30px;
    border: 1px solid var(--light);
    border-radius: 30px;
    transition: .5s;
}

.testimonial-carousel .owl-dot::after {
    position: absolute;
    content: "";
    width: 16px;
    height: 16px;
    top: 6px;
    left: 6px;
    border-radius: 16px;
    background: var(--light);
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    border-color: var(--primary);
}

.testimonial-carousel .owl-dot.active::after {
    background: var(--primary);
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--light);
    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;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.copyright {
    color: var(--light);
    background: #000B1C;
}

.copyright a {
    color: var(--light);
}

.copyright a:hover {
    color: var(--primary);
}

/* ######################### */

#built{
  --bs-gutter-x: 0rem !important;
}

.built-h1{
   color: black;
   font-weight: 600 !important;
}
.built-p{
   color: black;
   margin-top: 20px;
}

.built-div{
    padding: 385px 137px;
}

.built-btn {
  height: 40px;
  border: none;
  background: #c86216;
  color: white;
  width: 130px;
  transition: 0.9s;
  border-radius: 5px;
  width: 24%;
}

.built-btn2{
    height: 40px;
    border: none;
    background: #fff;
    color: #c86215;	
    border:2px solid #c86215; 
    width:130px;
    transition: 0.9s;
    border-radius: 5px;
}
.border-bottom {
  border-bottom: none !important;
}
.built-btn2:hover {
    height: 40px;
    border: none;
    background: #c86215;
    color: white;	 
    width:130px;
}

.built-btn:hover {
  height: 40px;
  border: none;
  color: white;
}

.about-div {
     padding: 15px;
    height: 196px;
    border-radius: 4px 4px;
    border: 1px solid #c86216;
    border-left: 10px solid #c86215;
    border-right: 2px solid #c86215;
    margin-bottom: 40px;
}

.about-section{
    background-color: white;
    padding: 120px 0;
    margin-top: -185px;
}
.about-h2{
    color:#240642;
    font-size:52px;
}
.about-span{
    color:#240642;
    font-size:52px;
}
.about-p{
    color:#000;
    margin-top: 20px;
    margin-bottom: 40px;
}
.about-content-h4{
    color: #000;
    font-size: 22px;
}
.about-content-p{
    color:#000;
}

.about-img{
    display: flex;
    gap: 10px;
}

.about-img img{
        width: 35%;
    height: 1%;
    margin-left: 3px;
}

.solution {
    padding: 80px 0;
     background-color: #fbf7ff;
     margin-top: -130px;
}

.solution-div{
    background-color: #cccccc;
}

.solution-h2{
   color: #240642;
   font-size: 55px;
}
.solution-span{
   color: #240642;
   font-size: 55px;
}

.solution-p{
   color: #000;
   margin-top: 20px;
  margin-bottom: 30px;
}

.solution-h4 {
    font-size: 20px;
    color:white;
}
.solution-h4-color {
    font-size: 20px;
    color:white;
}

.solution-p2{
    color:white;
}

.solution-div {
    background-color: #c86216;
  height: 162px;
  padding: 27px 39px;
  border-radius: 10px;
  margin-bottom: 20px;
  color: #000;
}
.solution-div-color{
    background-color: #c86216;
  height: 162px;
  padding: 27px 39px;
  border-radius: 10px;
  margin-bottom: 20px;
  color: white;
}

.solution-get{
    background: #fff;
    border: 2px solid #c86215;
    color: #c86215;
    height: 40px;
    border-radius: 10px;
    transition: 0.9s;
}
.solution-get:hover{
    background: #c86215;
    border: 2px solid #c86215;
    color: #fff;
    height: 40px;
    border-radius: 10px;
}

.why-choose{
    background-color: #fff;
    padding: 60px 0;
    margin-top: -90px;
}

.why-choose-h2{
    color: #240642;
    font-size:55px;
}
.why-choose-span{
    color: #240642;
    font-size:55px;
}

.why-choose-p{
   color: #000000;
   margin-top: 20px;
   margin-bottom: 40px;
}
.why-choose-p1{
   color: #240642;
}

.why-choose-h4 {
    color: #240642;
  font-size: 25px;
}

.why-choose-img{
    display: flex;
    gap: 12px;
    margin-top: 10px;
    margin-bottom: 10px;
}
.why-choose-img img{
    width: 30px;
    height: 30px;
    border-radius: 5px;
}

.industry-img {
  display: flex;
  gap: 11px;
  padding: 13px;
  box-shadow: 0px 0px 10px 1px #f9f9f9 !important;
  margin: 10px;
}
.industry-img:hover {
  box-shadow: 1px 1px 8px 1px #f19332 !important;
}
.industry-img img{
    width: 10%;
    height: 0%;
}
.industry-h4 {
  font-size: 24px;
  color: white;
}
.industry-p {
  color: #fff;
}
.industry-h2 {
  color: #fff;
  font-size: 55px;
}
.industry-p2 {
  color: #000;
}
.industry-h22 {
  color: #240642;
  font-size: 55px;
}
.industry-h2-span {
  color: #240642;
  font-size: 55px;
}
.industry {
  padding: 60px 0;
  background-color: #4f3270;
}
.industry-btn{
   color: #fff;
  background-color: #240642;
  height: 38px;
  border-radius: 5px;
  border: 2px solid #240642;
  transition: 0.9s;
  float: right;
}
.industry-btn:hover{
    color: #c86215;
    background-color: #fff;
    height: 40px;
    border-radius: 8px;
    border: 2px solid #c86215;
    transition: 0.9s;
}
.get{
    background-color: #d6d6d6;
    padding: 20px 0;
}
.get-h2{
    color: #240642;
    text-align: center;
}
.get-p{
    color: #240642;
    text-align: center;
}
.get-h4{
    color: #c86215;
    font-size: 20px;
    margin-top:30px;
}

.get-btn {
  color: #fff;
  background: #c86216;
  height: 40px;
  border: #c86216;
  border-radius: 5px;
  transition: 0.9s;
  width: 15%;
}
.get-btn2 {
    color: #fff;
    background: #240642;
    height: 40px;
    border: 2px solid #c86215;
    border-radius: 5px;
    transition: 0.9s;
}
.get-btn2:hover {
    color: #fff;
    background: #c86215;
    height: 40px;
    border: 2px solid #c86215;
    border-radius: 5px;
}
.get-btn:hover {
  color: #fff;
  background: #1a1c43;
  height: 40px;
  border: 2px solid #1a1c43;
  border-radius: 5px;
}

.get-ul{
    color:#fff;
    font-size: 15px;
    margin-top: 15px;
    margin-bottom: 26px;
}

.get-strong{
    font-size: 15px;
    font-weight: 600px;
    letter-spacing: 1px;
}

#get-row{
    margin-top: 20px;
}
.get-img{
    width:100%;
    border-radius: 8px;
}

.latest{
    padding: 150px 0;
    background-image: url(../img/home/background.jpg);
}

.latest-h2{
    color:#45376c;
}

.latest-p{
    color:#000;
}

#latest-row{
    margin-top:30px;
}

.latest-btn{
   height: 40px;
  border-radius: 8px;
  color: #fff;
  background: #c86215;
  width: 100px;
  border: 2px solid #c86215;
  transition: 0.9s;
}
.latest-btn:hover{
   height: 40px;
  border-radius: 8px;
  color: #c86215;
  background: #fff;
  width: 100px;
  border: 2px solid #c86215;
}

.bg-light {
  background-color: #c6c6c6 !important;
}

#nav-fixed {
  position: fixed;
  background: #fff;
  z-index: 999;
  border-bottom: 1px solid #e5e5e5;
  margin-top: 108px;
}
#footerheading {
  color: #240642 !important;
}
.text-white {
  color: #240642 !important;
}
#footer-background{
        /*background-color: #c69d71 !important;*/
        background-color: #fbf7ff !important;
        border-radius: 15px;
        width: 1251px;
}

#toplogo1 {
  width: 141px;
  margin-left: 29px;
}
#contactformdiv{
    padding: 30px;
    background-color: white;
    width: 40%;
    height: 100%;
}

#toplogo2 {
  width: 150px;
  margin-left: 29px;
}

@media only screen and (min-width: 300px) and (max-width: 991px) {
    #toplogo2 {
  width: 111px;
  margin-left: 29px;
}
    
    #contactformdiv {
  width: 100%;
}
    .contact-div {
  padding: 107px 5px !important;
}
    #toplogo {
  width: 55px !important;
}
#footerlogomain{
    display: flex;
  margin-left: -47px;
  margin-top: -30px;
}
#footerlogo1{
   width: 170px !important;
    height: 100px;
    margin-left: 77px;
}
#footerlogo2{
   width: 100px !important;
    height: 100px;
    margin-left: 45px;
}
#toplogo1{
    width: 100px;
}
    #footer-background {
  width: 100% !important;
}
  
  #quicklink{
      width: 37%;
  } 
  #companyaddress{
      width: 56%;
  }
  #footerheading{
      font-size:16px;
  }
.built-div {
  padding: 340px 27px;
  margin-bottom: -50px;
}
.built-h1 {
  font-size: 30px;
}
.get-btn2 {
  margin-bottom: 40px;
}

.built-btn {
  width: 38% !important;
}
.about-div {
  height: 174px !important;
  margin-bottom: 20px !important;
}

.about-h2 {
  font-size: 40px !important;
}
.about-span {
  font-size: 40px !important;
}
.solution-h2 {
  font-size: 40px !important;
}
.solution-span {
  font-size: 40px !important;
}
.solution-div {
  height: 188px !important;
}
.why-choose-h2{
  font-size: 40px !important;
}
.why-choose-span {
  font-size: 40px !important;
}
.why-choose-main {
  margin-bottom: 20px !important;
}
.industry-image {
  position: unset !important;
  width: 100% !important;
}
.industry-position {
  position: unset !important;
}
.industry-h5 {
  color: #000 !important;
  padding: 22px 15px !important;
  font-size: 28px;
}
.industry-p-content {
  color: #000 !important;
  padding: 00px 15px !important;
  width: 95% !important;
  font-size: 19px;
}
.get {
  margin-top: 150px !important;
}
.get-btn {
  width: 49% !important;
}
#footerlogo {
  width: 53%;
  margin-left: 20%;
 /* margin-top: -67px; */
  margin-top: 0px;
}
.w-100 {
  width: 100% !important;
}
}


.newsletter .content h5 {
  color: #000;
  font-size: 24px;
  font-weight: 700;
  line-height: 30.72px;
  text-align: left;
  letter-spacing: -0.95px;
  margin-bottom: 12px;
}

.newsletter {
  padding: 50px 0;
  display: flex;
  justify-content: center;
  column-gap: 80px;
  background-color: #f1f1f1;
}
.newsletter .content {
  max-width: 360px;
}
.newsletter .content p {
  color: #000;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-align: left;
  margin-bottom: 0;
}
.newsletter .form-container {
  padding: 0;
  max-width: 425px;
}
.newsletter .form-container .input-row {
  display: flex;
  gap: 6px;
}
.newsletter .form-container .btn-style-1 {
  padding: 14px 24px;
  border-radius: 8px;
}
.btn-style-1 {
  font-weight: 700;
  color: #000;
  font-size: 16px;
  text-align: center;
  letter-spacing: 0.84px;
  white-space: nowrap;
  background-color: #d22027;
  border-radius: 4px;
  border: 1px solid;
  border-color: #c1c1c1;
  padding: 12px 24px !important;
  border: none;
}
.newsletter .form-container .declaration {
  margin-top: 12px;
  display: flex;
  align-items: start;
}
.newsletter .form-container .btn-style-1 {
  padding: 14px 24px;
  border-radius: 8px;
}

.newsletter .form-container .declaration label {
  color: #000;
  font-size: 14px;
  font-weight: 400;
  line-height: 15px;
  text-align: left;
}

#newsletterEmail{
    width: 100%;
    height: 50px;
    border-radius: 6px;
    padding: 0 25px;
}

.industry-image{
    position: absolute;
}
.industry-position {
  position: relative;
}
.industry-p-content {
  color: #fff;
  padding: 230px 32px;
 width: 80%;
  font-size: 19px;
}
.d-grid.gap-2 {
  padding: 45px 0;
}
#btn-industry {
margin-bottom: 10px;
width: 80%;
  margin-left: 10%;
}
.industry-h5 {
  color: #fff;
  padding: 22px 27px;
  font-size: 28px;
}
#industry-row {
  --bs-gutter-x: 0rem;
    padding: 20px 0px;
    margin-bottom: -200px;
}
.btn-outline-primary {
  color: #C86216 !important;
  border-color: #C86216 !important;
  text-align: left;
}
.btn-outline-primary:hover {
  color: #fff;
  background-color: #C86216;
  color: white !important;
}
#industry-col-3 {
  background: white;
  height: 400px;
}
.why-choose-main {
  background: #c86216;
  padding: 14px;
  height: 180px;
  border-radius: 10px;
}
#footerlogo{
   /* width:53%; */
    width:50%;
}

.hero-section{
background-color: #fbf7ff !important;
margin-top: -112px;
}

#section-industry{
    background-color: #fbf7ff !important;
}


.contact-div {
  padding: 124px 137px;
}

#contactdetails{
    font-size: 16px;
    color: black;
}

#bysharing{
    color: #240642;
  font-size: 11px;
  display: flex;
  margin-top: 20px;
}

#declaration{
    margin-top: -67px;
  margin-left: 7px;
}

#boxwhy{
    background-color: #24064208;
  border: 1px solid #d4d4d4;
  margin: 5px;
  border-radius: 10px;
}
#boxwhyimg {
 background-color: #f8f7f9;
  text-align: center;
  margin-top: 10px;
  border-radius: 10px;
  height: 70px;
  padding: 9px;
  width: 70px;
  transition: 1s;
}
#boxwhyimg:hover {
  background-color: #c86216;
}
#boxwhy:hover {
  background-color: white;
}
#boxwhy:hover #boxwhyimg {
    background-color: #c86216; /* Change image container background */
    transition: 1s;
}
.why-choose-div {
  padding: 10px;
}

.contact-h1 {
  color: black;
  font-weight: 600 !important;
  margin-top: -13px;
  font-size: 22px;
  margin-bottom: 26px;
}
.contact-p {
  color: black;
  margin-top: 20px;
}
.fa-arrow-alt-circle-right {
  color: #c86216;
  margin-left: 10px;
  padding: 4px;
}
#contactparasecond{
    color:black;
}
#condiv{
    margin-top: -107px;
}
.btn-primary {
  color: #fff;
  background-color: #C86216;
  border-color: #C86216;
}
.btn-primary:hover {
  color: #fff;
  background-color: #141532;
  border-color: #141532;
}
#emails{
    border-bottom: 1px solid black;
  width: 64%;
  margin-bottom: 60px;
}
#contacts{
    border-bottom: 1px solid black;
  width: 64%;
}
.built-btn a{
    color:white;
}
#toplogo{
    width:15%;
}
#footerlogo1 {
  width: 158px;
}
#footerlogo2 {
  width: 158px;
  margin-bottom: 20px;
}