body {
  font-family: "Archivo", sans-serif !important;
}
.navbar-brand img {
  height: auto;
  width: 170px;
}
.same-head {
  font-size: 40px;
}

/*** Button Start ***/
.btn {
  font-weight: 600;
  transition: 0.5s;
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-md-square {
  width: 46px;
  height: 46px;
}

.btn-lg-square {
  width: 58px;
  height: 58px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}

.back-to-top {
  position: fixed;
  width: 50px;
  height: 50px;
  right: 30px;
  bottom: 30px;
  z-index: 99;
}

/*** Button End ***/

/*** Navbar Start ***/
.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 99;
  box-shadow: 0 0 20px 0 #ccc;
}
.navbar .navbar-nav {
  padding: 15px 0;
}

.navbar .navbar-nav .nav-link {
  padding: 10px 20px;
  color: #000;
  font-size: 18px;
  outline: none;
  font-weight: 500;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
  color: #1842b6 !important;
}

.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "font awesome 5 free";
  font-weight: 900;
  vertical-align: middle;
  margin-left: 8px;
}

@media (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    visibility: hidden;
    top: 100%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
    transition: 0.5s;
    opacity: 0;
  }
}

.navbar .nav-item:hover .dropdown-menu {
  transform: rotateX(0deg);
  visibility: visible;
  transition: 0.5s;
  opacity: 1;
}

/*** Navbar End ***/

/*** Carousel Start ***/

.carousel-item {
  position: relative;
  margin-top: 50px;
}

.carousel-item::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.6);
}
.carousel-item img {
  height: 100vh;
  width: 100%;
}
.carousel-caption {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.carousel-item p {
  max-width: 700px;
  margin: 0 auto 35px auto;
}

.carousel-control-prev {
  width: 90px;
  height: 60px;
  position: absolute;
  top: 50%;
  left: 0;
  background: var(--bs-primary);
  border-radius: 0 50px 50px 0;
  opacity: 1;
}

/* .carousel-control-prev:hover {
  background: var(--bs-secondary);
  transition: 0.8s;
} */

.carousel-control-next {
  width: 90px;
  height: 60px;
  position: absolute;
  top: 50%;
  right: 0;
  background: var(--bs-primary);
  border-radius: 50px 0 0 50px;
  opacity: 1;
}

/* .carousel-control-next:hover {
    background: var(--bs-secondary);
    transition: .8s;
} */

.carousel-caption .carousel-content a button.carousel-content-btn1 {
  background: var(--bs-primary);
  color: var(#fff);
  opacity: 1;
  border: 0;
  border-radius: 20px;
}

.carousel-caption .carousel-content a button.carousel-content-btn1:hover {
  background: var(--bs-primary);
  color: #ffffff;
  border: 0;
  opacity: 1;
  transition: 1s;
  border-radius: 20px;
}

.carousel-caption .carousel-content a button.carousel-content-btn2 {
  background: var(--bs-primary);
  color: var(--bs-white);
  opacity: 1;
  border: 0;
  border-radius: 20px;
}

/* .carousel-caption .carousel-content a button.carousel-content-btn2:hover {
    background: #000;
    color: #fff;
    border: 0;
    opacity: 1;
    transition: 1s;
    border-radius: 20px;
} */

#carouselId .carousel-indicators li {
  width: 20px;
  height: 1px;
  background: #fff;
  margin: 10px;
  border-radius: 100px;
  opacity: 1;
  display: none;
  opacity: 0.6;
}
#carouselId .carousel-indicators li.active {
  opacity: 1;
}

/* #carouselId .carousel-indicators li:hover {
  background: var(--bs-secondary);
  opacity: 1;
} */

@media (max-width: 992px) {
  .carousel-item {
    min-height: 500px;
  }

  .carousel-item img {
    min-height: 500px;
    object-fit: cover;
  }

  .carousel-item h1 {
    font-size: 40px !important;
  }

  .carousel-item p {
    font-size: 16px !important;
  }
}

@media (max-width: 768px) {
  .carousel-item {
    height: 400px;
  }

  .carousel-item img {
    height: 100vh;
    object-fit: cover;
  }
  .carousel-caption {
    right: 0px;
    left: 0px;
  }

  .carousel-item h1 {
    font-size: 28px !important;
  }

  .carousel-item p {
    font-size: 14px !important;
  }
  .carousel-control-prev,
  .carousel-control-next {
    display: none;
  }
  #carouselId .carousel-indicators li {
    display: block;
  }
}

.page-header {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(../img/inner-banner.png) center center no-repeat;
  background-size: cover;
  margin-top: 60px;
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
  color: var(--bs-white);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
  font-size: 18px;
  color: var(--bs-white);
}

/*** Carousel End ***/
.why-box {
  box-shadow: 0 0 20px 0 #ccc;
  border-radius: 10px;
  padding: 40px;
}

/*** Services Start ***/

.services .services-item {
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.2);
  width: 100%;
  height: 100%;
  border-radius: 10px;
  padding: 10px 0;
  position: relative;
}

.services-item:hover .services-content-icon {
  position: relative;
  z-index: 2;
}

.services-item .services-content-icon i,
.services-item .services-content-icon p {
  transition: 0.5s;
}

.technology-inner .box:hover {
  background-color: #fafafa;
}
.technology-inner img {
  width: 100%;
}
.service-box img {
  height: 400px;
  max-width: 100%;
  object-fit: cover;
}
.social-link .btn-square {
  height: 30px;
  width: 30px;
}
.contact-detail img{
    height: 20px;
}

/*** Services End ***/
.carrer-img {
  height: 330px;
  overflow: hidden;
}
.carrer-img img {
  height: 330px;
  border-radius: 10px;
  width: auto;
}
.newsletter {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
}
.newsletter input {
  padding: 9px 15px;
  width: 350px;
  border: 1px solid #ccc;
  font-size: 14px;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
.newsletter input:focus {
  outline: none;
}
.newsletter button {
  background-color: #1842b6;
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  cursor: pointer;
  margin-left: -5px;
}

/*** Footer Start ***/
.footer-logo img {
  height: auto;
  width: 170px;
}
.footer .short-link a,
.footer .help-link a,
.footer .contact-link a {
  transition: 0.5s;
}

.footer .short-link a:hover,
.footer .help-link a:hover {
  color: #235dff !important;
}

.footer .social-link a:hover {
  background: #1842b6;
}

.footer .social-link a:hover i {
  color: #fff !important;
}

/*** Footer End ***/

@media screen and (max-width: 767px) {
  .navbar-dark .navbar-toggler-icon {
    background: none;
  }
  .navbar-dark .navbar-toggler-icon i {
    color: #000;
    font-size: 20px;
    padding: 6px 0px;
  }
  .navbar .navbar-nav {
    padding: 20px 0px !important;
  }
  .same-head {
    font-size: 30px;
  }
  .fact h2 {
    width: 30px;
  }
  .fact h5 {
    font-size: 15px;
  }
  .why-box {
    padding: 20px;
    margin-top: 20px;
  }
  .service-box img {
    height: auto;
    width: 100%;
    max-width: none;
    border-radius: 10px;
  }
  .newsletter input{
    width: auto;
  }
}
