.breadcrum {
  width: 390px !important;
}

section {
  display: flex;
  justify-content: center;
}

.container {
  padding: 50px 80px;
}

.home-relocation-section-1 {
  background-color: #fef9d3;
}

.home-relocation-section-1 .container {
  display: flex;
  flex-direction: column;
  gap: 33px;
}

.details {
  display: flex;
  gap: 30px;
  align-items: end;
}

.capital {
  text-transform: capitalize;
}

.home-relocation-section-1 .details {
  position: relative;
}

.col-1 .dotted-img {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(40%);
}

.col-2 .row-1 h2 {
  margin-bottom: 18px;
}

.col-2 {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.col-2 .row-2 {
  display: flex;
  flex-direction: column;
  gap: 12px;

}

.col-2 .row-2 .services {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.col-2 .row-2 .services .service {
  display: flex;
  align-items: center;
}

.col-2 .row-2 .services .service img {
  width: 30px;
  height: 30px;
}


/*---home-relocation-section-2---*/
.home-relocation-section-2 .details {
  align-items: center;
}

.home-relocation-section-2 .col-1 .row-1 h2 {
  margin-bottom: 18px;
}

.home-relocation-section-2 .col-1 {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.home-relocation-section-2 .col-1 .row-2 {
  display: flex;
  flex-direction: column;
  gap: 12px;

}

.home-relocation-section-2 .col-1 .row-2 .services {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.home-relocation-section-2 .col-1 .row-2 .services .service {
  display: flex;
  align-items: start;
  gap: 15px;
}

.home-relocation-section-2 .col-1 .row-2 .services .service img {
  width: 40px;
  height: 40px;
}




/*-------------------
     Tablet view
-------------------*/
@media(max-width: 1024px) {
  .container {
    padding: 50px 40px;
  }

  .details {
    flex-direction: column;
  }

  .dotted-img {
    display: none;
  }

  .home-relocation-section-1 .services .service {
    gap: 17px;
  }

  .section-1-img {
    width: 80%;
    margin: auto;
  }

  .home-relocation-section-1 .col-1 {
    width: 100%;
    display: flex;
  }


  /*---home-relocation-section-2---*/
  .home-relocation-section-2 .col-2 {
    width: 100%;
    display: flex;
  }

  .home-relocation-section-2 .col-2 img {
    margin: auto;
    width: 90%;
  }

  .home-relocation-section-2 .details {
    gap: 57px;
  }
}





/*-------------------
     Mobile view
-------------------*/
@media(max-width: 767px) {
  .container {
    padding: 36px 24px;
  }

  .breadcrum {
    width: 370px !important;
  }

  .home-relocation-section-1 .container,
  .home-relocation-section-1 .details {
    gap: 15px;
  }
}



/*------------*/
@media(max-width: 1250px) {
  .home-relocation-section-1 .details {
    align-items: center;
  }
}

@media(min-width: 1025px) and (max-width: 1400px) {
  .section-1-img {
    width: clamp(330px, calc(70.67vw - 394.4px), 595px);
  }

  .home-relocation-section-2 .col-2 img {
    width: clamp(330px, calc(70.67vw - 394.4px), 595px);
  }
}

@media(max-width: 800px) {
  .home-relocation-section-1 .col-2 h2 {
    max-width: 510px;
  }

  .home-relocation-section-2 .col-1 h2 {
    max-width: 401px;
  }
}

@media(max-width: 400px) {
  .breadcrum {
    width: 316px !important;
    height: 68px !important;
  }
}

/*----ANIMATION----*/
@media(min-width: 1024px) {
  .home-relocation-section-1 .details {
    transform: translateX(10%);
    opacity: 0;
    transition: all 0.7s ease;
  }

  .home-relocation-section-1 .details.anim-show {
    opacity: 1;
    transform: translateX(0);
  }


  .home-relocation-section-2 .details {
    transform: translateX(-10%);
    opacity: 0;
    transition: all 0.7s ease;
  }

  .home-relocation-section-2 .details.anim-show {
    opacity: 1;
    transform: translateX(0)
  }
}