/* global class*/
ul {
  list-style: none;
  padding-inline-start: 0;
  margin-bottom: 0;
}

a {
  color: inherit;
}

.w-40 {
  width: 40%;
}

.py-10 {
  padding: 100px 0px;
}

.icon {
  height: 60px;
  width: 60px;
  border-radius: 50%;
}

.social-links li a i {
  font-size: 14px;
  background-color: rgba(0, 0, 0, 0.3);
}

.layer {
  background-color: rgba(255, 255, 255, 0.8);
  position: absolute;
  top: 10px;
  bottom: -5px;
  left: 5px;
  right: 5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: all 0.5s;
}

.section-heading-inner {
  width: fit-content;
  margin: auto;
  padding-bottom: 40px;
}
.section-heading-style h3 {
  position: relative;
  font-family: var(--montserFont);
  font-size: 40px;
  line-height: 44px;
  font-weight: 900;
  z-index: 2;
}
.section-heading-style h3::before {
  content: "";
  position: absolute;
  top: 14px;
  bottom: -6px;
  left: -1px;
  right: -4px;
  background-image: url(../imgs/dots.png);
  z-index: -1;
}



/* fonts */
@font-face {
  font-family: roboto;
  src: url(../fonts/Roboto/Roboto-VariableFont_wdth\wght.ttf);
}
@font-face {
  font-family: montser;
  src: url(../fonts/Montserrat/Montserrat-VariableFont_wght.ttf);
}

/* animation */
@keyframes up {
  from {
    bottom: 50%;
  }
  to {
    bottom: 100%;
  }
}
@keyframes down {
  from {
    top: 50%;
  }
  to {
    top: 100%;
  }
}
@keyframes fade {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes change-nav-bgc {
  0% {
    background-color: transparent;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999999;
  }
  7% {
    background-color: transparent;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999999;
  }
  9% {
    background-color: white;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999999;
  }
  100% {
    background-color: white;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999999;
  }
}
@keyframes change-text-color {
  0% {

  }
  7% {
    color: white;
    border-color: white;
  }
  9% {
    color: var(--textColor);
    border-color: var(--textColor);
  }
  100% {
    color: var(--textColor);
    border-color: var(--textColor);
  }
}

/* property */




/* variables */
:root {
  --robotoFont: roboto;
  --montserFont: montser;
  --sectionBg: #f7f7f7;
  --textColor: #343434;
  --textColor2: #999999;
  --textColor3: #748182;
  --textColor4: #888888;
  --mainColor: #1c1c1c;
  --secondaryColor: #5b5b5b;
  --iconBgColor1: #eee;
}

/* intro animation */
.intro-animation {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-color: transparent;
}
#header .up-animiation {
  background-color: white;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 50%;
  animation-name: up, fade;
  animation-duration: 2s, 2s;
  animation-delay: 0, 1s;
  animation-fill-mode: forwards, forwards;
  z-index: 99999999;
}
#header .down-animiation {
  background-color: white;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  bottom: 0;
  animation-name: down, fade;
  animation-duration: 2s, 2s;
  animation-delay: 0, 1s;
  animation-fill-mode: forwards, forwards;
  z-index: 99999999;
}

/* start nav */
#nav {
  background-color: transparent;
  animation: change-nav-bgc;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999999;
  animation-timeline: scroll(y);
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
  border-bottom: 2px solid white;
}
.navbar-nav {
  --bs-nav-link-padding-y: 0;
}
.navbar {
  --bs-navbar-nav-link-padding-x: 0;
  --bs-navbar-nav-link-padding-y: 0;
}
.navbar-brand {
  font-family: var(--montserFont);
  font-size: 18px;
  line-height: 25.7143px;
  letter-spacing: 1px;
  font-weight: 800;
  color: white;
  animation: change-text-color;
  animation-timeline: scroll(y);
}
.navbar-brand:hover{
  color: white;
}

#nav .nav-link {
  font-family: var(--robotoFont);
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  animation: change-text-color;
  animation-timeline: scroll(y);
}
.navbar-toggler {
  border: none;
}
.navbar-toggler i {
  color: white;
  animation: change-text-color;
  animation-timeline: scroll(y);
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-collapse {
  transition: all 0.5s;
}
.navbar-collapse .navbar-nav .nav-item .nav-link {
  /* color: black; */
  animation: change-text-color;
  animation-timeline: scroll(y);
}

/* end nav */

/* start header */
#header {
  background-image: url(../imgs/bg2.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
#header::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.7);
}

.inner-header h1 {
  font-family: var(--montserFont);
  font-size: 50px;
  line-height: 55px;
  font-weight: 800;
}
.text-mob-size {
  font-size: 19px;
  line-height: 36px;
  padding: 6px 0;
  width: fit-content;
}

/* end header */

/*! start main */

/*? start about */
#about {
  background-color: #fff;
}

/** about img */
.about-img {
  background-image: url(../imgs/dots.png);

  transform: translate(-4px, 50px);
}
.about-img img {
  transform: translate(15px, -50px);
}

/** about content */
.inner-about-content h2 {
  font-family: var(--montserFont);
  font-size: 30px;
  line-height: 33px;
  font-weight: 800;
}
.inner-about-content span {
  font-family: var(--robotoFont);
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 2px;
  font-weight: 400;
  color: var(--textColor2);
}
.inner-about-content p {
  font-family: var(--robotoFont);
  font-size: 15px;
  line-height: 24px;
  font-weight: 400;
  color: var(--textColor2);
}
.inner-about-content p strong {
  color: var(--textColor3);
}

.progress-custom,
.progress-stacked {
  --bs-progress-height: 25px;
  --bs-progress-font-size: 0.75rem;
  --bs-progress-bg: var(--bs-secondary-bg);
  --bs-progress-border-radius: var(--bs-border-radius);
  --bs-progress-box-shadow: var(--bs-box-shadow-inset);
  --bs-progress-bar-color: #fff;
  --bs-progress-bar-bg: var(--mainColor);
  --bs-progress-bar-transition: width 0.6s ease;
  display: flex;
  height: var(--bs-progress-height);
  overflow: hidden;
  font-size: var(--progress-font-size);
  background-color: var(--bs-progress-bg);
  border-radius: var(--bs-progress-border-radius);
}
.progress-bar {
  border-radius: 5px;
}
.progress-bar1 {
  width: 0%;
  transition: all 0.9s;
}
.progress-bar2 {
  width: 0%;
  transition: all 0.9s;
}
.progress-bar3 {
  width: 0%;
  transition: all 0.9s;
}

#about:hover .progress-bar1 {
  width: 95%;
}
#about:hover .progress-bar2 {
  width: 80%;
}
#about:hover .progress-bar3 {
  width: 90%;
}

.prog-span {
  font-family: var(--montserFont);
  font-size: 13px;
  line-height: 14.3px;
  font-weight: 500;
}

.btn-custom {
  --bs-btn-color: #fff;
  --bs-btn-bg: #000;
  --bs-btn-border-color: #f8f9fa;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #fff;
  --bs-btn-hover-border-color: #000;
  transition: all 0.5s;
  font-family: var(--robotoFont);
  font-size: 13;
  line-height: 18.5px;
  padding: 10px 20px;
}
.btn-custom2 {
  --bs-btn-color: #000;
  --bs-btn-bg: #fff;
  --bs-btn-border-color: #000;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #000;
  --bs-btn-hover-border-color: #000;
  transition: all 0.5s;
  font-family: var(--robotoFont);
  font-size: 13;
  line-height: 18.5px;
  padding: 10px 30px;
}

/*? end about */

/*? services start */


#services {
  background-color: var(--sectionBg);
}
#services .services-card .icon {
  background-color: var(--iconBgColor1);
  font-size: 25px;
  transition: all 0.5s;
}
#services .services-card:hover .icon {
  background-color: var(--mainColor);
  color: white;
}

#services .services-card {
  background-color: #fff;
  padding: 50px 20px;
  border-radius: 5px;

  width: 100%;
}

#services .services-card p {
  margin-bottom: 0;
  color: var(--textColor2);
  font-family: var(--robotoFont);
  font-size: 14px;
  line-height: 22.4px;
  word-spacing: 2px;
  font-weight: 400;
}
#services .services-card h6 {
  font-family: var(--montserFont);
  font-size: 18px;
  line-height: 19.8px;
  font-weight: 800;
}

/*? services end */

/*? portfolio start */

#portfolio .layer h6 {
  transform: translateY(-20px);
  transition: all 0.5s;
}
#portfolio .layer ul {
  transform: translateY(20px);
  transition: all 0.5s;
}

#portfolio .portfolio-card:hover h6,
#portfolio .portfolio-card:hover ul {
  transform: translateY(-5px);
}

.portfolio-card:hover .layer {
  opacity: 1;
  inset: 5px;
}
.layer .icons .icon {
  background-color: var(--mainColor);
  color: white;
  height: 30px;
  width: 30px;
  font-size: 12px;
  line-height: 28px;
}

.layer .icons .icon:hover {
  background-color: white;
  color: var(--mainColor);
  border: 1px solid var(--mainColor);
}

.nav-custom {
  --bs-nav-link-padding-x: 1rem;
  --bs-nav-link-padding-y: 0.5rem;
  --bs-nav-link-color: var(--mainColor);
  --bs-nav-link-hover-color: var(--mainColor);
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.nav-custom .nav-link {
  font-weight: 500;
}
/*? portfolio end */

/*? testimonial start */

#testimonial .testimonial-img img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
}

.carousel-item p {
  font-family: var(--robotoFont);
  font-size: 15px;
  line-height: 24px;
  word-spacing: 2px;
  color: var(--textColor2);
}
.carousel-item h3 {
  font-family: var(--montserFont);
  font-size: 16px;
  line-height: 17.6px;
  color: var(--textColor);
  font-weight: 600;
}
.carousel-item span {
  font-family: var(--robotoFont);
  font-size: 12px;
  line-height: 17.1429px;
  color: var(--textColor4);
  font-weight: 600;
}
.carousel-indicators button {
  height: 10px;
  width: 10px;
  border: none;
  border-radius: 50%;
  background-color: var(--textColor4);
}

#testimonial
  .container
  .testimonial-inner
  #testimonial-slider
  .carousel-indicators
  button {
  box-sizing: content-box;
  flex: 0 1 auto;
  width: 10px;
  height: 10px;
  padding: 0;
  margin-right: 7px;
  margin-left: 7px;
  margin-top: 40px;
  text-indent: -999px;
  cursor: pointer;
  background-color: var(--textColor4);
  background-clip: padding-box;
  border: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  transition: opacity 0.6s ease;
}

/*? testimonial end */

/*? counter start */

.counter-icon {
  font-size: 30px;
  line-height: 30px;
  margin-bottom: 15px;
}
.counter-item h3 {
  margin-bottom: 15px;
  font-family: var(--montserFont);
  font-size: 30px;
  line-height: 33px;
  font-weight: 900;
}
.counter-item p {
  margin-bottom: 15px;
  font-family: var(--robotoFont);
  font-size: 15px;
  line-height: 24px;
  font-weight: 600;
  color: var(--textColor3);
}

/*? counter end */

/*? team start */

.team-card-layer {
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  background-color: #ffffffb4;
  opacity: 0;
  z-index: 3;
  transition: all 0.5s;
  transform: rotateY(180deg) scale(0.7);
}
.team-card .inner-team-card:hover .team-card-layer {
  transform: rotateY(0deg) scale(1);
  opacity: 1;
}
.team-social li a i {
  background-color: var(--mainColor);
  color: white;
  border-radius: 50%;
  border: solid 1px var(--mainColor);
}
.team-social li a i:hover {
  background-color: #fff;
  color: var(--mainColor);
}
.team-card-img img {
  transition: all 0.5s;
  z-index: 2;
}
.team-card-img:hover img {
  transform: scale(1.1);
}
#team .inner-team-card {
  --bs-card-spacer-y: 1rem;
  --bs-card-spacer-x: 1rem;
  --bs-card-title-spacer-y: 0.5rem;
  --bs-card-title-color: ;
  --bs-card-subtitle-color: ;
  --bs-card-border-width: var(--bs-border-width);
  --bs-card-border-color: var(--bs-border-color-translucent);
  --bs-card-border-radius: var(--bs-border-radius);
  --bs-card-box-shadow: ;
  --bs-card-inner-border-radius: calc(
    var(--bs-border-radius) - (var(--bs-border-width))
  );
  --bs-card-cap-padding-y: 0.5rem;
  --bs-card-cap-padding-x: 1rem;
  --bs-card-cap-bg: rgba(var(--bs-body-color-rgb), 0.03);
  --bs-card-cap-color: ;
  --bs-card-height: ;
  --bs-card-color: ;
  --bs-card-bg: var(--bs-body-bg);
  --bs-card-img-overlay-padding: 1rem;
  --bs-card-group-margin: 0.75rem;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: var(--bs-card-height);
  color: var(--bs-body-color);
  word-wrap: break-word;
  background-color: var(--bs-card-bg);
  background-clip: border-box;
  border: var(--bs-card-border-width) solid var(--bs-card-border-color);
  border-radius: 0px 0px 5px 5px;
}

.card-body {
  background-color: #5b5b5b;
  color: white;
  border-radius: 0px 0px 5px 5px;
}
.card-body h4 {
  font-family: var(--montserFont);
  font-size: 25px;
  line-height: 27.5px;
  font-weight: 500;
}
.card-body h5 {
  font-family: var(--montserFont);
  font-size: 20px;
  line-height: 22px;
  font-weight: 700;
}

/*? team end */

/*? contact start */

.contact-card-icon {
  height: 60px;
  width: 60px;
  border-radius: 50%;
  background-color: var(--iconBgColor1);
  transition: all 0.5s;
}
.contact-card-icon i {
  font-size: 25px;
  color: var(--textColor);
  transition: all 0.5s;
}
.contact-card h6 {
  font-family: var(--montserFont);
  font-size: 16px;
  line-height: 17.6px;
  font-weight: 700;

  color: var(--textColor);
}
.contact-card p {
  font-family: var(--robotoFont);
  font-size: 15px;
  line-height: 24px;
  color: var(--textColor3);
}
.contact-card:hover .contact-card-icon {
  background-color: var(--mainColor);
}
.contact-card:hover .contact-card-icon i {
  color: white;
}

.contact-form-input {
  display: block;
  width: 100%;
  padding: 9px 12px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--bs-body-color);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #f4f4f4;
  background-clip: padding-box;
  border: none;
  border-radius: var(--bs-border-radius);
}

.contact-form-input::placeholder {
  font-family: var(--robotoFont);
}

.contact-form-input:focus {
  outline: none;
}
.contact-textarea {
  width: 97.7%;
}
/*? contact end */

/*? footer start */

#footer {
  padding: 30px;
  background-color: var(--mainColor);
}

.footer-content p {
  color: var(--textColor3);
  font-family: var(--robotoFont);
  font-size: 14px;
  line-height: 20.8px;
  word-spacing: 2px;
  margin: 0;
}

/*? footer end */

/*! end main */
