/********** Template CSS **********/
:root {
  --primary: #fd5d14;
  --secondary: #fdbe33;
  --light: #f4f6f8;
  --dark: #040f28;
}

.pt-6 {
  padding-top: 90px;
}

.pb-6 {
  padding-bottom: 90px;
}

.py-6 {
  padding-top: 90px;
  padding-bottom: 90px;
}

.btn {
  position: relative;
  font-weight: 600;
  text-transform: uppercase;
  transition: 0.5s;
}

.btn::after {
  position: absolute;
  content: "";
  width: 0;
  height: 5px;
  bottom: -1px;
  left: 50%;
  background: var(--primary);
  transition: 0.5s;
}

.btn.btn-primary::after {
  background: var(--dark);
}

.btn:hover::after,
.btn.active::after {
  width: 50%;
  left: 25%;
}

.btn-primary {
  color: #ffffff;
}

.btn-square {
  width: 36px;
  height: 36px;
}

.btn-sm-square {
  width: 28px;
  height: 28px;
}

.btn-lg-square {
  width: 46px;
  height: 46px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}

.back-to-top {
  position: fixed;
  display: none;
  left: 50%;
  bottom: 0;
  margin-left: -22px;
  border-radius: 0;
  z-index: 99;
}

.bg-dark-radial {
  background-image: -webkit-repeating-radial-gradient(
    center center,
    rgba(0, 0, 0, 0.3),
    rgba(0, 0, 0, 0.3) 1px,
    transparent 1px,
    transparent 100%
  );
  background-image: -moz-repeating-radial-gradient(
    center center,
    rgba(0, 0, 0, 0.3),
    rgba(0, 0, 0, 0.3) 1px,
    transparent 1px,
    transparent 100%
  );
  background-image: -ms-repeating-radial-gradient(
    center center,
    rgba(0, 0, 0, 0.3),
    rgba(0, 0, 0, 0.3) 1px,
    transparent 1px,
    transparent 100%
  );
  background-image: -o-repeating-radial-gradient(
    center center,
    rgba(0, 0, 0, 0.3),
    rgba(0, 0, 0, 0.3) 1px,
    transparent 1px,
    transparent 100%
  );
  background-image: repeating-radial-gradient(
    center center,
    rgba(0, 0, 0, 0.3),
    rgba(0, 0, 0, 0.3) 1px,
    transparent 1px,
    transparent 100%
  );
  background-size: 3px 3px;
}

.bg-light-radial {
  background-image: -webkit-repeating-radial-gradient(
    center center,
    rgba(256, 256, 256, 0.2),
    rgba(256, 256, 256, 0.2) 1px,
    transparent 1px,
    transparent 100%
  );
  background-image: -moz-repeating-radial-gradient(
    center center,
    rgba(256, 256, 256, 0.2),
    rgba(256, 256, 256, 0.2) 1px,
    transparent 1px,
    transparent 100%
  );
  background-image: -ms-repeating-radial-gradient(
    center center,
    rgba(256, 256, 256, 0.2),
    rgba(256, 256, 256, 0.2) 1px,
    transparent 1px,
    transparent 100%
  );
  background-image: -o-repeating-radial-gradient(
    center center,
    rgba(256, 256, 256, 0.2),
    rgba(256, 256, 256, 0.2) 1px,
    transparent 1px,
    transparent 100%
  );
  background-image: repeating-radial-gradient(
    center center,
    rgba(256, 256, 256, 0.2),
    rgba(256, 256, 256, 0.2) 1px,
    transparent 1px,
    transparent 100%
  );
  background-size: 3px 3px;
}

.navbar-dark .navbar-nav .nav-link {
  position: relative;
  padding: 35px 15px;
  font-size: 18px;
  text-transform: uppercase;
  color: var(--light);
  outline: none;
  transition: 0.5s;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
  color: #ff7066;
}

@media (max-width: 991.98px) {
  .navbar-dark .navbar-nav .nav-link {
    margin-left: 0;
    padding: 10px 0;
  }
}

.carousel-caption {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(4, 15, 40, 0.7);
  z-index: 1;
}

@media (max-width: 576px) {
  .carousel-caption h4 {
    font-size: 18px;
    font-weight: 500 !important;
  }

  .carousel-caption h1 {
    font-size: 30px;
    font-weight: 600 !important;
  }
}

.page-header {
  height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(rgba(4, 15, 40, 0.7), rgba(4, 15, 40, 0.7)),
    url(../img/carousel-1.jpg) center center no-repeat;
  background-size: cover;
}

.service-item .service-icon {
  margin-top: -50px;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
}

.service-item .service-icon i {
  transition: 0.2s;
}

.service-item:hover .service-icon i {
  font-size: 60px;
}

.portfolio-item {
  margin-bottom: 60px;
}

.portfolio-title {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 120px;
  padding: 0 30px;
  right: 30px;
  left: 30px;
  bottom: -60px;
  background: #ffffff;
  z-index: 3;
}

.portfolio-btn {
  position: absolute;
  display: inline-block;
  top: 50%;
  left: 50%;
  margin-top: -60px;
  margin-left: -60px;
  font-size: 120px;
  line-height: 0;
  transition: 0.1s;
  transition-delay: 0.3s;
  z-index: 2;
  opacity: 0;
}

.portfolio-item:hover .portfolio-btn {
  opacity: 1;
}

.portfolio-box::before,
.portfolio-box::after {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  top: 0;
  transition: 0.5s;
  z-index: 1;
  background: rgba(4, 15, 40, 0.7);
}

.portfolio-box::before {
  left: 0;
}

.portfolio-box::after {
  right: 0;
}

.portfolio-item:hover .portfolio-box::before {
  left: 0;
  width: 50%;
}

.portfolio-item:hover .portfolio-box::after {
  right: 0;
  width: 50%;
}

@media (min-width: 992px) {
  .testimonial,
  .contact-form {
    margin-left: -90px;
  }
}

@media (min-width: 992px) {
  .footer::after {
    content: "";
    width: 1px;
    height: 100%;
    top: 0;
    left: 50%;
    background: #ff7066;
  }
}

.footer-shape::before {
  position: absolute;
  content: "";
  width: 80px;
  height: 100%;
  top: 0;
  left: -40px;
  background: #ff7066;
  transform: skew(40deg);
}

.cont-min-height {
  min-height: 100vh;
}

img {
  max-width: 100%;
}

.card > a {
  margin: 0px auto;
  margin-top: 20px;
}

.image-box {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.image {
  overflow: hidden;
  width: 300px;
  height: 300px;
  margin: 10px;
  border: 1px solid #88888850;
  border-radius: 4px;
  display: flex;
  justify-content: center;
}

.image img {
  height: 100%;
}

.product-box {
  width: 100vw;
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  cursor: pointer;
}

.ui-card {
  margin: 0 10px;
  height: 252px;
  width: 232px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease-out;
  background: radial-gradient(#111 50%, #000 100%);
  margin: 10px auto;
  border-radius: 4px;
}

.ui-card img {
  opacity: 0.3;
  transform: scale(1);
  transition: all 0.3s ease-out;
  height: 100%;
  width: 100%;
}
.ui-card:hover img {
  transform: scale(1.2) translateY(-10px);
  opacity: 0.3;
}

.ui-card:hover {
  background: radial-gradient(#683206 50%, #460808 100%);
}

.ui-card .description {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 15px;
  width: 100%;
  text-align: center;
  color: #fff;
  font-size: 18px;
  height: 100%;
}

.item-box {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.item {
  width: 300px;
  height: 300px;
  overflow: hidden;
  border-radius: 4px;
  margin: 5px;
}

.prod-indus-link{
  width: 100%;
  aspect-ratio: 1/1;
}

.wid-100{
  width: 100%;
  height: 100%;
  margin: 0px;
}

.item img {
  height: 100%;
  transition: 0.5s;
}

.item-indus {
  width: 100%;
  aspect-ratio:  1 / 1;
  overflow: hidden;
}

.item-indus img {
  height: 100%;
  width: 100%;
  transition: 0.5s;
}

.desc {
  position: relative;
  height: 100%;
  width: 100%;
  background: radial-gradient(#1111117c 50%, #0000007c 100%);
  bottom: 100%;
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: column;
}

.product-name-box {
  height: 60%;
  display: flex;
  align-items: end;
}

.product-name {
  color: #fff;
}

.industry-name-box {
  max-height: 30%;
  min-height: 30%;
  width: 100%;
  display: flex;
  align-items: baseline;
  justify-content: center;
}

.slide-up > * {
  position: relative;
  top: 45%;
  transition: 1s;
}

.item:hover .slide-up > * {
  top: 10%;
}

.item:hover .industry-info-box {
  opacity: 1;
}

.item-indus:hover .slide-up > * {
  top: 10%;
}

.item-indus:hover .industry-info-box {
  opacity: 1;
}

.industry-name {
  color: #fff;
  text-align: center;
}

.industry-info-box {
  max-height: 30%;
  min-height: 30%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: baseline;
  opacity: 0;
}

.industry-info-text {
  text-align: center;
  color: #fff;
}

.findout-box {
  height: 40%;
  width: 100%;
  display: flex;
  align-items: baseline;
  justify-content: center;
  overflow: hidden;
}

.findout-text {
  color: #ff7066;
  position: relative;
  top: 30px;
  transition: 0.6s;
  opacity: 0;
  text-decoration: underline;
}

.item :hover .findout-text {
  top: 10px;
  opacity: 1;
}

.item:hover .desc {
  background: radial-gradient(#683206a4 50%, #46080896 100%);
}

.item:hover img {
  transform: scale(1.2);
}

.item-indus :hover .findout-text {
  top: 10px;
  opacity: 1;
}

.item-indus:hover .desc {
  background: radial-gradient(#683206a4 50%, #46080896 100%);
}

.item-indus:hover img {
  transform: scale(1.2);
}

.ui-card .description h3 {
  font-weight: 700;
  font-size: 32px;
  margin: 0 0 20px;
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.3s ease-out;
}

.ui-card .description p {
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.3s ease-out 0.2s;
  font-size: 10px;
}
.ui-card .description .btn {
  color: #ff7066;
  display: inline-block;
  padding: 10px 25px;
  border-radius: 5px;
  text-decoration: none;
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.3s ease-out 0.4s;
}

.ui-card .description .btn-prod {
  position: relative;
  margin-top: 30%;
}

.ui-card .description .head-indus {
  margin-top: 50%;
  height: 20px;
  transition-duration: 1s;
}

.ui-card:hover .description .head-indus {
  margin-top: 1rem;
}

.description h4 {
  margin-bottom: 35%;
}

.ui-card-para {
  color: #ffffff;
}

.dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0; /* remove the gap so it doesn't close */
}

.dropdown-menu {
  background-color: #13273e;
}

.dropdown-item {
  color: #fff;
}

.dropdown-item:hover {
  color: #ff7066;
}

.ui-card:hover .description p {
  opacity: 1;
  transform: translateY(0px);
}
.ui-card:hover .description a {
  opacity: 1;
  transform: translateY(0px);
}

@media only screen and (max-width: 768px) {
  .moblook-product-box {
    flex-direction: column;
  }
}

.newTextColor {
  color: #ff7066;
}

.newBGColor {
  background-color: #ff7066;
}

.gray-text {
  color: #5c5a5c;
  background-color: red;
}

.ui-film-card {
  height: 224px;
  width: 224px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease-out;
  background: transparent;
  display: flex;
  justify-content: center;
  transition: 800ms;
  margin-bottom: 20px;
  padding: 2px 0px;
}

.ui-film-card > img {
  opacity: 1;
  transform: scale(1);
  transition: all 0.3s ease-out;
  height: 100%;
  width: 100%;
  width: fit-content;
  border-radius: 8px;
}

.ui-film-card:hover img {
  opacity: 0.3;
  box-shadow: 0 0 10px #000;
}

.ui-film-card .description {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 15px;
  width: 100%;
  text-align: center;
  color: #ff7066;
  font-size: 18px;
}

.ui-film-card .description h4 {
  text-shadow: 0 0 4px #fff;
}

.ui-film-card .description h3 {
  font-weight: 700;
  font-size: 32px;
  margin: 0 0 20px;
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.3s ease-out;
}
.ui-film-card .description p {
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.3s ease-out 0.2s;
}
.ui-film-card .description a {
  color: #fd5d14;
  display: inline-block;
  padding: 10px 25px;
  border-radius: 5px;
  text-decoration: none;
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.3s ease-out 0.4s;
}

.ui-film-card:hover .description p {
  opacity: 1;
  transform: translateY(0px);
}
.ui-film-card:hover .description a {
  opacity: 1;
  transform: translateY(0px);
}
