@import url('https://fonts.googleapis.com/css2?family=STIX+Two+Text:ital,wght@0,400..700;1,400..700&display=swap');
*{
  text-decoration: none;
  border-color: #000;
}
body {
  height: 100%;
  width: 100%;
  margin: 0%;
}
a {
  text-decoration: none;
}
.logo {
    width: max(30ch, 25%);
    height: 3.391em;
}

.navbar {
  width:100%;
  margin: 0;
  background-color: black;
}
.navbar-expand-lg{
  width:100%;
  margin: 0;
  


}
.navbar-toggler{
  background-color: whitesmoke;

}
button#btn {
  background-color: orange;
  color: #fff;
}
.link{
  padding-left: 5rem;
}

a.nav-link.link {
  font-weight: 600;
  font-size: 1.4rem;
  margin-left: 0.5rem;
  background-image: url("gradient.jpeg");
  background-size: cover;
  background-clip: text;
  color: transparent;
  animation: transition-nav-link 3s linear infinite;
}

@keyframes transition-nav-link {
  to {
    background-position-x: -500px ;
  }
  
}
a.nav-link-active.link {
  font-weight: 600;
  font-size: 1.4rem;
  color: orange;
  text-decoration: none;
}

.call-link,.phone-number{
  color: rgb(224, 184, 136);
  text-decoration: none;
}
.phone-number:hover{
  color: #fff;
  transform: scale(1.5);
}

.social-btn{
    padding-top: 0.5rem;
    padding-left:0.5em;
    color: orange;

}

.social-btn:hover{
    padding-top: 0.5rem;
    padding-left:0.5em;
    color: #fff;

}
#promoImg{
    padding-top: 0.5rem;
    padding-left: 2rem;}


a{
  text-decoration: none;
}
#container {
    position: relative;
}
#copyright {
    position: absolute;
    bottom: 0;
}

.bg-success {
  --bs-bg-opacity: 1;
  background-color:rgb(51, 51, 51);
}

.img-layer:hover{
   animation: fadeIn 5s;
}

.card-img-exp{
  opacity: 1;
}
.card-img-exp:hover{
   animation: fadeIn 5s;
   stop-opacity: 0;
}


.carousel-inner-testimonial{
  margin: 2.5rem;

}
.fade-in-image:hover {
  opacity: 100%;
  transition: opacity 1s;
}

.review-image{
  width: 20rex;
  height: 20rex;
  align-items: start;
}


.container {
  position: relative;
  width: 1160px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  transform-style: preserve-3d;
  perspective: 500px;

}
.container .box {
  position: relative;
  width: 275px;
  height: 275px;
  background: #000;
  transition: 0.5s;
  transform-style: preserve-3d;
  overflow: hidden;
  margin-top: 45px;
}
.container:hover .box {
  transform: rotateY(25deg);
}
.container .box:hover ~ .box {
  transform: rotateY(-25deg);
}
.container .box:hover {
  transform: rotateY(0deg) scale(1.25);
  z-index: 1;
  box-shadow: 0 25px 40px rgba(0,0,0,0.5);
}
.container .box .imgBx {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.container .box .imgBx:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg,#f00,#000);
  z-index: 1;
  opacity: 0;
  transition: 0.5s;
  mix-blend-mode: multiply;
}
.container .box:hover .imgBx:before {
  opacity: 1;
}
.container .box .imgBx img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.container .box .content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  padding: 20px;
  align-items: flex-end;
  box-sizing: border-box;
}
.container .box .content h2 {
  color: #fff;
  transition: 0.5s;
  text-transform: uppercase;
  margin-bottom: 5px;
  font-size: 20px;
  transform: translateY(200px);
  transition-delay: 0.3s;
}
.container .box:hover .content h2 {
  transform: translateY(0px);
}
.container .box .content p {
  color: #fff;
  transition: 0.5s;
  font-size: 14px;
  transform: translateY(200px);
  transition-delay: 0.4s;
}
.container .box:hover .content p {
  transform: translateY(0px);
}

nav.navbar.sticky-bottom {
  background-color: #000;
}

/* FOOTER CARD */
.footer-card.card {
  background: #000;
    border-color: rgb(51, 51, 51);
}

/* END */
