/* Breadcrumb */
.breadcrumb-section {
  background-image: url("/images/breadcrumb.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /*background-color: #4580cc;*/
  padding: 10px 0;
  position: relative;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.breadcrumb-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
}

.breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: white;
}

.breadcrumb-item.active {
  color: white;
}

.about-page-img {
  width: 400px;
  overflow: hidden;
}

.about-page-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img {
  height: 100%;
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: #dc5f00;
  display: flex;
  align-items: center;
  justify-content: center;
}

#design-card .card img {
  height: 200px;
}

#design-card .card {
  transition: transform 0.4s ease-out;
}

#design-card .card:hover {
  transform: scale(1.03);
}

.author-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
}

.author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/*all products*/
#services {
  /*background-color: lightblue;*/
}

.service-image {
  width: 100%;
  height: 50vh;
  border-radius: 10px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* card style */
.project-card {
  --font-color: #212529;
  --bg-color: #ffffff;
  /* width: 250px; */
  min-height: 350px;
  border-radius: 20px;
  background: var(--bg-color);
  box-shadow: -9px 9px 18px #5a5a5a, 9px -9px 18px #ffffff;
  display: flex;
  flex-direction: column;
  transition: 0.4s;
  position: relative;
  padding: 8px;
}

.project-card:hover {
  transform: scale(1.02);
  box-shadow: 0px 0px 10px 2px #5a5a5a;
}

.card__img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 20px 20px 0 0;
  background-color: blueviolet;
  overflow: hidden;
}

.card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover !important;
}

.card__descr-wrapper {
  padding: 15px;
  display: grid;
}

.card__title {
  border-image-source: linear-gradient(
    to right,
    #ffffff,
    #323c91a4,
    #323c91cc,
    #323c91f1,
    #323b91,
    #323b91,
    #23a2db,
    #23a2db,
    #23a1dbcb,
    #23a1db8a,
    #1f99d19f,
    #ffffff
  );
  border-bottom: 5px solid;
  border-image-slice: 1;
  border-width: 5px;
  padding-bottom: 10px;
  text-align: center;
  font-weight: 700;
  /* color: var(--font-color);
  
  font-size: 16px; */
}

.card__descr {
  color:  #212529;
}


#primary-btn {
    border: 1px solid #f1a324;
    color: #f1a324;
    font-weight: bold;
    padding: 8px 10px;
}

#primary-btn:hover {
    background-color: #f1a324;
    color: white;
}

#secondary-btn {
    border: none;
    padding: 8px 10px;
    font-weight: bold;
    background-color: #f1a324;
    color: white;
}

#secondary-btn:hover {
    background-color: #f1a324;
}

@media screen and (max-width: 768px) {
  #numbers {
    align-items: center !important;
  }
  
  .circle {
  width: 80px;
  height: 80px;
}
}
