.door2door-wrap {

  padding: 80px 0;
}

.door2door-photo {

  overflow: hidden;
  box-shadow: 0 35px 70px rgba(0, 0, 0, .12);
}

.door2door-photo img {
  display: block;
  width: 100%;
  height: auto;
}

.door2door-eyebrow {
  font-weight: 700;
  color: #2b3c55;
  opacity: .9;
  letter-spacing: .2px;
  margin-bottom: 10px;
}

.door2door-title {
  font-weight: 800;

  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.1;
  margin-bottom: 18px;
}

.door2door-text {

  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.9;
  margin-bottom: 18px;
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.door2door-photo {
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
}

.door2door-eyebrow,
.door2door-title,
.door2door-text {
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
}

/* Animation sequence (delays) */
.door2door-photo {
  animation-delay: 0s;
}

.door2door-eyebrow {
  animation-delay: 0.5s;
}

.door2door-title {
  animation-delay: 0.9s;
}

.door2door-text:nth-of-type(1) {
  animation-delay: 1.3s;
}

.door2door-text:nth-of-type(2) {
  animation-delay: 1.7s;
}

.service-card-door {
  border: 0;
  border-radius: 10px;
  padding: 30px 23px 30px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.09);
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
  border: 1px solid #f0f0f0;
}

.service-card-door::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 6px;

  border-radius: 0 0 18px 18px;
  transition: transform .25s ease, opacity .25s ease;
  opacity: .95;
}

.service-card-door .service-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: #2f6dfc;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px auto;
  color: #fff;
  font-size: 28px;
  transition: transform .25s ease;
}

.service-card-door:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.service-card-door .service-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: #0072BB;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  transition: transform .25s ease;
}

.service-card-door:hover .service-icon {
  transform: scale(1.05);
}

.service-card-door .service-icon img,
.service-icon i {

  height: 28px;
  filter: brightness(0) invert(1);
}

.service-card-door .service-title {
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: .35rem;
  color: #1b1e28;
  text-align: center;
}

.service-card-door .service-text {
  color: #555;
  font-size: 16px;
  line-height: 1.55;
  margin: 0;
  text-align: center;
}

@media (max-width: 575.98px) {
  .door2door-text:nth-of-type(1) {
    font-size: 16px;
    line-height: 1.5;
  }
  .door2door-text:nth-of-type(2) {
    font-size: 16px;
    line-height: 1.5;
  }
  }

  /* Small tablets / big phones (incl. some Android tabs, iPad Mini portrait) */
  @media (min-width:576px) and (max-width:767.98px) {
    .door2door-text:nth-of-type(1) {
    font-size: 15px;
    line-height: 1.5;
  }
  .door2door-text:nth-of-type(2) {
    font-size: 15px;
    line-height: 1.5;
  }
  }


  @media (min-width:768px) and (max-width:991.98px) {
       .door2door-text:nth-of-type(1) {
    font-size: 15px;
    line-height: 1.5;
  }
  .door2door-text:nth-of-type(2) {
    font-size: 15px;
    line-height: 1.5;
  }
  }


  @media (min-width:992px) and (max-width:1199.98px) {}

  
  @media (min-width:1200px) and (max-width:1399.98px) {}


  @media (min-width:1400px) {}