@charset "UTF-8";
.about__section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background-color: #ffffff;
}
.about__section--greenText {
  padding-bottom: 20px;
  color: #01cd75;
  font-size: 16px;
  font-weight: 600;
}
.about__section--textSection {
  text-align: left;
  display: inline-block;
}
.about__section--mainText {
  line-height: 1.5;
  font-size: 1rem;
  padding-bottom: 20px;
  font-weight: 700;
}
@media screen and (min-width: 1366px) {
  .about__section--mainText {
    font-size: 30px;
  }
}
.about__section--secondaryText {
  font-size: 16px;
  line-height: 1.5;
  text-align: justify;
}
.about__section--secondaryText span {
  font-weight: 500;
}
@media screen and (min-width: 992px) {
  .about__section--secondaryText {
    width: 90%;
  }
}
.about__section--imageSection img {
  margin-left: 15%;
}
.about__section--button {
  text-align: center;
  display: flex;
  align-items: center;
  margin-top: 30px;
  text-decoration: none;
  width: 320px;
  height: 60px;
  color: #fff;
  font-size: 1.1rem;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.about__section--button:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  z-index: -2;
}
.about__section--button:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #01cd75;
  transition: all 0.3s;
  z-index: -1;
}
.about__section--button:hover {
  color: #fff;
}
.about__section--button:hover:before {
  width: 100%;
}
.about__section--rating {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  width: 300px;
  border-radius: 10px;
  height: 50px;
  background-color: #ffffff;
  position: absolute;
  top: 55%;
  left: 53%;
}

#Sticky--button {
  z-index: 9999;
  position: fixed;
  bottom: 5%;
  right: 2%;
  padding: 10px;
  border: none;
  cursor: pointer;
}
#Sticky--button:hover {
  animation: latido 2s infinite;
  transform-origin: center;
}

.circle {
  z-index: -1;
  color: #01cd75;
  position: absolute;
}

.circle2 {
  filter: drop-shadow(1px);
  margin-top: 10px;
  margin-left: 10px;
  z-index: 2;
  color: #ffffff;
}

.phoneIcon {
  position: absolute;
  margin-top: 25px;
  margin-left: 25px;
  color: #01cd75;
}

@keyframes latido {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
.bubble {
  align-items: center;
  color: #ffffff;
  height: 40px;
  position: absolute;
  opacity: 0;
  background-color: #01cd75;
  border: 1px solid #01cd75;
  padding: 10px;
  border-radius: 5px;
  top: -50%;
  left: 20%;
  transform: translateX(-50%);
  white-space: nowrap;
  transition: opacity 1s ease;
}

.bubbleSquare {
  z-index: -1;
  height: 1px;
  position: absolute;
  opacity: 0;
  background-color: #01cd75;
  padding: 10px;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  transition: opacity 0.2s ease;
  transition: opacity 0s ease-out;
  transform: rotate(45deg);
  animation-delay: 0.5s;
}

#Sticky--button:hover .bubble {
  opacity: 1;
}

#Sticky--button:hover .bubbleSquare {
  animation-delay: 0.5s;
  transition: opacity 1s ease;
  opacity: 0.9;
}

.rating--text {
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn--greenLine {
  display: inline-block;
  height: 60px;
  width: 10px;
  background-color: #01cd75;
  position: relative;
}

.button--text {
  margin-left: 2.5rem;
}

/* Ajustar diseño del footer en pantallas pequeñas */
@media (max-width: 767px) {
  .about__section {
    grid-template-columns: repeat(1, 1fr);
    background-color: #ffffff;
  }
  .about__section--mainText {
    font-size: 1.5rem;
  }
  .about__section--imageSection {
    grid-row-start: 1;
  }
  .about__section--imageSection img {
    width: 100%;
    margin-left: 0%;
  }
  .about__section--rating {
    position: absolute;
    top: 52%;
    left: 8%;
  }
  .about__section--textSection {
    margin-top: 50px;
  }
  .about__section--button {
    margin-left: 15px;
  }
  .about__section--rating {
    display: flex;
    justify-content: center;
  }
  .about__section--infoSquare {
    margin-top: 60px;
    height: auto;
    max-width: 40%;
  }

  #Sticky--button {
    z-index: 9999;
    width: 30%;
  }

  .circle,
.circle2 {
    width: 50%;
  }

  .circle {
    margin-left: 50px;
  }

  .circle2 {
    margin-left: 55px;
  }

  .phoneIcon {
    width: 20%;
    margin-left: 65px;
  }

  .bubble,
.bubbleSquare {
    animation: mostrar-elemento 4s ease;
    animation-fill-mode: forwards;
    margin-left: 20px;
  }

  @keyframes mostrar-elemento {
    0% {
      opacity: 0;
    }
    10% {
      opacity: 1;
    }
    90% {
      opacity: 1;
    }
    100% {
      opacity: 0;
    }
  }
}
.customer__section {
  background-color: #ffffff;
}
.customer__section--greenText {
  padding-bottom: 20px;
  color: #01cd75;
  font-size: 16px;
  font-weight: 600;
}
.customer__section--textSection {
  text-align: justify;
  display: inline-block;
}
.customer__section--mainText {
  line-height: 1.5;
  font-size: 1.4rem;
  padding-bottom: 20px;
  font-weight: 700;
  text-align: justify;
}
.customer__section--secondaryText {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
}
.customer__section--imageSection {
  padding-left: 5%;
  position: relative;
}
.customer__section--infoSquare {
  line-height: 1.5;
  position: absolute;
  bottom: 1rem;
  left: 4.2rem;
  z-index: 1;
  height: 120px;
  width: 180px;
  background-color: #00a45d;
}

.infoSquareText {
  top: 20%;
  position: relative;
  left: 10%;
  font-weight: 600;
  color: #eee;
}

.infoSquareNumber {
  position: relative;
  top: 20%;
  margin-left: 15px;
  font-size: 1rem;
  font-weight: 600;
  color: #eee;
}

@media (max-width: 767px) {
  .customer__section--infoLine {
    z-index: 3;
    top: -82px;
    position: relative;
    height: 10px;
    width: 150px;
    background-color: #000000;
  }
  .customer__section--infoSquare {
    margin-top: 55px;
    height: 80px;
    max-width: 45%;
  }
  .customer__section--mainText {
    font-size: 1.5rem;
  }
  .customer__section--secondaryText {
    font-size: 16px;
  }
}
.hero--secondary {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 200px;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 992px) {
  .hero--secondary {
    height: 250px;
  }
}
@media screen and (min-width: 992px) {
  .hero--secondary .container-fluid {
    padding: 0 3rem;
  }
}
.hero--secondary .container-fluid h1 {
  color: #fff;
}
.hero--secondary--corporate {
  background-image: linear-gradient(270deg, rgba(238, 238, 238, 0) 13%, rgba(0, 164, 93, 0.67) 84%), url("../../../img/corporate--mobile.jpg");
}
@media screen and (min-width: 992px) {
  .hero--secondary--corporate {
    background-image: linear-gradient(270deg, rgba(238, 238, 238, 0) 13%, rgba(0, 164, 93, 0.67) 84%), url("../../../img/corporate.jpg");
  }
}
.hero--secondary--long-distance {
  background-image: linear-gradient(270deg, rgba(238, 238, 238, 0) 13%, rgba(0, 164, 93, 0.67) 84%), url("../../../img/long-distance--mobile.jpg");
}
@media screen and (min-width: 992px) {
  .hero--secondary--long-distance {
    background-image: linear-gradient(270deg, rgba(238, 238, 238, 0) 13%, rgba(0, 164, 93, 0.67) 84%), url("../../../img/long-distance.jpg");
  }
}
.hero--secondary--storage {
  background-image: linear-gradient(270deg, rgba(238, 238, 238, 0) 13%, rgba(0, 164, 93, 0.67) 84%), url("../../../img/storage--mobile.jpg");
}
@media screen and (min-width: 992px) {
  .hero--secondary--storage {
    background-image: linear-gradient(270deg, rgba(238, 238, 238, 0) 13%, rgba(0, 164, 93, 0.67) 84%), url("../../../img/storage.jpg");
  }
}
.hero--secondary--packing {
  background-image: linear-gradient(270deg, rgba(238, 238, 238, 0) 13%, rgba(0, 164, 93, 0.67) 84%), url("../../../img/vip-packing--mobile.jpg");
}
@media screen and (min-width: 992px) {
  .hero--secondary--packing {
    background-image: linear-gradient(270deg, rgba(238, 238, 238, 0) 13%, rgba(0, 164, 93, 0.67) 84%), url("../../../img/vip-packing.jpg");
    background-position: top;
  }
}

.secure__container {
  padding: 4rem 0;
}

.secure__container__row__col {
  font-size: 16px;
}
.secure__container__row__col--section {
  color: #01cd75;
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
}
@media screen and (min-width: 992px) {
  .secure__container__row__col--section {
    font-size: 1rem;
  }
}
.secure__container__row__col--title {
  font-size: 1.3rem;
  font-weight: 600;
  display: block;
}
@media screen and (min-width: 992px) {
  .secure__container__row__col--title {
    font-size: 1.87rem;
  }
}
.secure__container__row__col--text {
  padding-top: 0.5rem;
  font-weight: 500;
  font-size: 1rem;
}
@media screen and (min-width: 992px) {
  .secure__container__row__col--text {
    font-size: 1rem;
  }
}
.secure__container__row__col--button {
  background-color: #00a45d;
  text-align: center;
  color: white;
  font-size: 1.3rem;
  font-weight: 600;
  padding: 0.5rem;
}
@media screen and (min-width: 992px) {
  .secure__container__row__col--button {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 1366px) {
  .secure__container__row__col--button {
    width: 90%;
  }
}
.secure__container__row__col__phone {
  background-color: #f3fffa;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  padding: 1rem;
}
@media screen and (min-width: 992px) {
  .secure__container__row__col__phone {
    font-size: 1.3rem;
  }
}
@media screen and (min-width: 1366px) {
  .secure__container__row__col__phone {
    width: 91%;
  }
}
.secure__container__row__col__phone--number {
  color: black;
  text-decoration: none;
}
.secure__container__row__col__phone--number:hover {
  color: black;
}
.secure__container__row__col--img {
  margin-top: 50px;
}
@media screen and (min-width: 992px) {
  .secure__container__row__col--img {
    margin-top: 0px;
    width: 90%;
  }
}

.accordion-button {
  background-color: #eee !important;
  font-weight: 600;
}
.accordion-button:focus {
  box-shadow: 0 0 0 0.25rem rgba(0, 164, 93, 0.25);
  color: black;
}
.accordion-button:not(.collapsed) {
  color: #00a45d;
}
.accordion-button:not(.collapsed)::after {
  background-image: url(../../../img/arrow-green.svg);
  transform: rotate(-180deg);
}

.accordion-body {
  background-color: #f7f7f7;
}

.perk {
  align-items: center;
  display: flex;
}
.perk__icon {
  margin-right: 10px;
}

.moving__section {
  background-color: #eee;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.moving__section--greenText {
  padding-bottom: 20px;
  color: #01cd75;
  font-size: 16px;
  font-weight: 600;
}
.moving__section--textSection {
  width: 100%;
  margin-left: -10%;
  text-align: left;
  display: inline-block;
}
.moving__section--mainText {
  line-height: 1.5;
  font-size: 1.5rem;
  padding-bottom: 20px;
  font-weight: 700;
}
.moving__section--secondaryText {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
}
.moving__section--imageSection {
  position: relative;
  width: 50%;
  margin-left: 20%;
}
.moving__section--imageSection img {
  position: relative;
  z-index: 1;
}
.moving__section--perksList {
  font-size: 16px;
  font-weight: 600;
  margin-top: 20px;
  list-style: none;
  line-height: 2;
}

.perkLine {
  width: 100%;
  height: 1px !important;
  background-color: #c1c1c1;
}

.second__moving__section {
  background-color: #eee;
  padding-top: 60px;
}

.card {
  margin-top: 10%;
  margin-left: 20%;
  border: 3px solid black;
}

.list-group-item {
  border: 3px solid black;
}

/* Ajustar diseño del footer en pantallas pequeñas */
@media (max-width: 767px) {
  .card {
    margin-left: 10%;
    margin-bottom: 30px;
  }

  .truck {
    margin-top: 30px;
  }

  .moving__section {
    background-color: #eee;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .moving__section--greenText {
    margin-left: 8px;
  }
  .moving__section--mainText {
    margin-left: 8px;
  }
  .moving__section--secondaryText {
    margin-left: 8px;
  }

  .moving__section__part:nth-child(1) {
    justify-content: left;
    text-align: left;
    grid-row-start: 2;
    width: 80%;
    margin-left: 10%;
  }

  .moving__section__part:nth-child(2) {
    justify-content: left;
    text-align: left;
    margin-left: 0%;
    grid-row-start: 1;
    width: 100%;
  }

  .moving__section__part img {
    height: 300px;
  }

  .perkLine {
    width: 90%;
  }
}
.vip {
  margin-top: 2rem;
}

.vip__container__row {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1rem;
}
@media screen and (min-width: 992px) {
  .vip__container__row {
    grid-template-columns: repeat(3, 1fr);
  }
}
.vip__container__row__col {
  width: 100%;
}
.vip__container__row__col--title {
  font-size: 14px;
  font-weight: 500;
  color: #01cd75;
}
.vip__container__row__col--subtitle {
  font-size: 26px;
  font-weight: 600;
  display: block;
}
.vip__container__row__col--text {
  display: inline-block;
  text-align: justify;
  font-size: 12px;
  font-weight: 600;
  width: 100%;
}
@media screen and (min-width: 992px) {
  .vip__container__row__col--text {
    font-size: 1rem;
  }
}
.vip__container__row__col--text span {
  font-weight: bolder;
}
.vip__container__row__col--text--b {
  font-weight: lighter;
}
@media screen and (min-width: 992px) {
  .vip__container__row__col--text--b {
    font-size: 1.2rem;
  }
}
.vip__container__row__col:first-child {
  position: relative;
}
.vip__container__row__col:first-child::before {
  content: "";
  z-index: -1;
  position: absolute;
  left: -2%;
  bottom: 1%;
  height: 250px;
  width: 250px;
  background-color: #00a45d;
}
@media screen and (min-width: 992px) {
  .vip__container__row__col:first-child::before {
    height: 400px;
    width: 350px;
  }
}
@media screen and (min-width: 992px) {
  .vip__container__row__col:first-child::before {
    bottom: 8rem;
  }
}
@media screen and (min-width: 992px) {
  .vip__container__row__col:last-child {
    grid-column: span 2;
  }
}

.vip__container__col__ul {
  list-style-type: none;
  padding: 0;
}

.vip__container__col__ul__li {
  display: flex;
  border-bottom: 1px rgb(186, 186, 186) solid;
  padding: 1rem;
}

.vip__container__col__ul__li:last-child {
  border-bottom: none;
}

.check__green {
  display: block;
  height: 30px;
  margin-right: 1rem;
}
@media screen and (min-width: 992px) {
  .check__green {
    height: 25px;
  }
}

.vip__container__row__col__container--img {
  max-width: 90%;
  margin: 0 auto;
  display: block;
  margin-bottom: 2rem;
  z-index: 1;
}
.vip__container__row__col__container--bg {
  width: 22vw;
  height: 50vh;
  background-color: #00a45d;
  position: block;
  top: 27%;
  left: -10%;
}

.footer {
  border-top: 12px solid #00a45d;
  background-color: #000;
}
@media screen and (max-width: 1200px) {
  .footer {
    padding: 0 1rem;
  }
}
.footer__main-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background-color: black;
  padding: 3rem 0 1rem 0;
  color: #ffffff;
}
@media screen and (min-width: 992px) {
  .footer__main-content {
    grid-template-columns: 450px repeat(4, 220px);
    gap: 1rem;
    padding: 3rem;
  }
}
@media screen and (min-width: 1900px) {
  .footer__main-content {
    grid-template-columns: 500px repeat(4, 1fr);
  }
}
.footer__main-content--info a {
  color: #ffffff;
  text-decoration: none;
  display: block;
}
.footer__main-content--info a:not(:first-child) {
  margin-top: 1rem;
}
@media screen and (max-width: 1200px) {
  .footer__main-content--info:nth-child(1) {
    grid-row-start: 1;
    grid-column-end: span 2;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .footer__main-content--info:nth-child(4) {
    grid-row-start: 3;
    grid-column-end: span 2;
    width: 100%;
  }
}
.footer-info {
  max-width: 250px;
  font-size: 1rem;
}
@media screen and (min-width: 992px) {
  .footer-info-start {
    margin-bottom: 0;
    width: 90%;
  }
}
.footer-title {
  font-size: 20px;
  font-weight: 700;
  position: relative;
}
.footer-title::after {
  content: "";
  background-color: #00a45d;
  position: absolute;
  left: 0;
  bottom: -5px;
  height: 5px;
  width: 50px;
}
@media screen and (min-width: 992px) {
  .footer-title::after {
    height: 4px;
    bottom: -5px;
  }
}
.footer-logo {
  padding-bottom: 20px;
  width: 50%;
}
.footer__bottom {
  display: flex;
  border-top: 1px solid #484848;
  justify-content: unset;
  flex-direction: column;
  padding: 0;
}
@media screen and (min-width: 992px) {
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    padding: 1rem;
  }
}
@media screen and (min-width: 1366px) {
  .footer__bottom {
    padding: 1rem 3rem;
  }
}
.footer__bottom p {
  color: #ffffff;
  font-size: 0.8rem;
  margin-bottom: 0;
}

.circle-icon {
  display: inline-block;
  cursor: pointer;
}

.icon {
  display: block;
  margin: 20px;
}

a {
  text-decoration: none;
}

.footer-location {
  position: absolute;
}

.footer-loc {
  display: block;
  margin-left: 35px;
}

.navbar {
  background-color: #fff;
  position: fixed;
  width: 100%;
  z-index: 99;
  transition: all 0.2s ease-in-out;
  top: 7.1rem;
}
@media screen and (min-width: 992px) {
  .navbar {
    padding: 0;
    top: 4.3rem;
  }
}
@media screen and (min-width: 1366px) {
  .navbar {
    top: 2.8rem;
  }
}
.navbar-collapse {
  background-color: #fff;
}
@media screen and (max-width: 1200px) {
  .navbar-collapse {
    background-color: #f4f4f4;
    position: relative;
    top: 1rem;
  }
}
@media screen and (max-width: 1200px) {
  .navbar-toggler {
    margin-right: 1rem;
  }
}
.navbar-brand img {
  height: 110px;
  transition: all 0.2s ease-in-out;
}
.navbar .container-fluid {
  padding: 0;
}
@media screen and (min-width: 992px) {
  .navbar .container-fluid {
    padding: 0 0 0 3rem;
  }
}
@media screen and (max-width: 1200px) {
  .navbar-brand {
    padding: 0 1rem;
  }
}
.navbar-brand img {
  height: 76px;
}
@media screen and (min-width: 992px) {
  .navbar-brand img {
    height: 89px;
  }
}
.navbar-nav {
  position: relative;
  padding-left: 1rem;
}
@media screen and (min-width: 992px) {
  .navbar-nav {
    padding-left: 0;
    align-items: center;
  }
}
@media screen and (min-width: 992px) {
  .navbar-nav li:not(:last-child) {
    margin-right: 1rem;
  }
}
@media screen and (min-width: 1366px) {
  .navbar-nav li:not(:last-child) {
    margin-right: 1.5rem;
  }
}
@media screen and (min-width: 1366px) {
  .navbar-nav li:not(:last-child) a {
    font-size: 1.1rem;
  }
}
.navbar-nav li:not(:last-child) a.contact {
  color: #00a45d !important;
  font-weight: bolder;
}
.navbar-nav li:not(:last-child) a.active {
  font-weight: bolder;
}
.navbar-nav li:last-child {
  background-color: #000;
  padding: 0 1rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 120px;
}
@media screen and (min-width: 992px) {
  .navbar-nav li:last-child {
    position: relative;
  }
}
.navbar-nav li:last-child a {
  display: flex;
  align-items: center;
  color: #fff !important;
  font-size: 1.2rem;
}
.navbar-nav li:last-child a:hover::after {
  width: 100%;
}
.navbar-nav li:last-child a:hover img {
  transform: translateY(-4px) translateX(5px);
  height: 27px;
}
.navbar-nav li:last-child a span {
  padding: 0.3rem;
  text-align: center;
  width: 100%;
  position: relative;
  z-index: 2;
}
.navbar-nav li:last-child a img {
  padding-right: 0.5rem;
  position: relative;
  z-index: 2;
  transition: all 0.2s ease-in-out;
}
.navbar-nav li:last-child span {
  color: #fff;
  font-size: 0.8rem;
}
.navbar--top {
  background-color: #01cd75;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 99;
  transition: all 0.2s ease-in-out;
}
.navbar--top__container {
  align-items: center;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
  padding: 0.5rem 0 0 0;
}
@media screen and (min-width: 992px) {
  .navbar--top__container {
    padding: 0.4rem 0 0 0;
  }
}
@media screen and (min-width: 1366px) {
  .navbar--top__container {
    flex-direction: row;
    padding: 0 3.5rem;
  }
}
.navbar--top a {
  text-decoration: none;
  color: #fff;
  font-weight: bolder;
}
@media screen and (min-width: 1366px) {
  .navbar--top a {
    color: #000;
  }
}
.navbar--top a img {
  margin-right: 0.5rem;
}
.navbar--top__cta {
  background-color: #000;
  color: #fff;
  width: 100%;
  text-align: center;
  padding: 0.5rem 0;
}
@media screen and (min-width: 1366px) {
  .navbar--top__cta {
    background-color: unset;
    width: max-content;
  }
}
.navbar--top__cta p {
  margin: 0;
  font-size: 0.85rem;
  opacity: 0.7;
}
.navbar--top__title h1 {
  font-size: 1rem;
  font-weight: bolder;
}
@media screen and (max-width: 1200px) {
  .navbar--top__title h1 {
    padding: 0 1rem;
    text-align: center;
  }
}
.navbar .dropdown-menu {
  border: 0;
  border-radius: 0;
  padding: 1rem 1rem;
  background-color: #fff;
  border: 2px solid #000;
  border-right: 7px solid #01cd75;
  z-index: 99;
  width: 96%;
}
@media screen and (min-width: 992px) {
  .navbar .dropdown-menu {
    border-right: 2px solid #000;
    background: #f9f8f8;
    border-top: 5px solid #000;
    width: auto;
  }
}
.navbar .dropdown-menu p {
  display: none;
}
@media screen and (min-width: 992px) {
  .navbar .dropdown-menu p {
    margin-bottom: 0.3rem;
    font-size: 15px;
    color: #938e8e;
    letter-spacing: 0;
    display: block;
  }
}
.navbar .dropdown-menu li {
  background-color: #fff;
  padding: unset;
  left: unset;
}
.navbar .dropdown-menu li:not(:last-of-type) {
  border-bottom: 2px solid #eaeaea;
}
@media screen and (min-width: 992px) {
  .navbar .dropdown-menu li:not(:last-of-type) {
    border-bottom: 0;
  }
}
.navbar .dropdown-menu li a {
  color: #000 !important;
  font-size: 1.1rem;
  height: unset;
  font-weight: bolder;
  padding-left: 0 !important;
  transition: all 0.2s ease-in-out;
  display: flex;
}
@media screen and (min-width: 992px) {
  .navbar .dropdown-menu li a {
    background: #f9f8f8;
  }
}
.navbar .dropdown-menu li a img {
  display: none;
}
@media screen and (min-width: 992px) {
  .navbar .dropdown-menu li a img {
    margin-right: 10px;
    display: block;
  }
}
.navbar .dropdown-menu li a:hover {
  background-color: #00a45d;
  padding-left: 1rem;
  color: #fff !important;
}
.navbar .dropdown-menu li a:hover img {
  opacity: 0;
}
.navbar .dropdown-menu .contact--mobile {
  display: none;
}
@media screen and (min-width: 992px) {
  .navbar .dropdown-menu .contact--mobile {
    background-color: #01cd75 !important;
    display: block;
    color: #fff !important;
    font-size: 0.9rem;
    font-weight: bolder;
    padding: 0.5rem 0;
    text-align: center;
    margin-top: 0.5rem;
    transition: all 0.2s ease-in;
  }
  .navbar .dropdown-menu .contact--mobile:hover {
    background-color: #000 !important;
  }
}

html,
body {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
}

*:focus {
  outline: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  margin: 0;
}

main {
  margin-top: 200px;
}
@media screen and (min-width: 992px) {
  main {
    margin-top: 180px;
  }
}
@media screen and (min-width: 1366px) {
  main {
    margin-top: 166px;
  }
}

@media screen and (min-width: 992px) {
  .footer__main-content {
    grid-template-columns: 160px repeat(5, 180px);
    gap: 1rem;
    padding: 3rem 0;
  }
}
@media screen and (min-width: 1024px) {
  .footer__main-content {
    grid-template-columns: 160px repeat(5, 150px);
  }
}
@media screen and (min-width: 1280px) {
  .footer__main-content {
    grid-template-columns: 400px repeat(4, 200px);
    gap: 1rem;
    padding: 3rem 1rem;
  }
}
@media screen and (min-width: 1366px) {
  .footer__main-content {
    grid-template-columns: 450px repeat(4, 220px);
    padding: 3rem;
  }
}

.about__section {
  padding: 3rem 1rem;
}
@media screen and (min-width: 768px) {
  .about__section {
    grid-template-columns: repeat(2, 50%);
  }
}
@media screen and (min-width: 992px) {
  .about__section {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1366px) {
  .about__section {
    padding: 3rem 2rem;
  }
}

.about__section--imageSection {
  position: relative;
}
.about__section--imageSection img {
  margin-left: unset;
}
@media screen and (min-width: 768px) {
  .about__section--imageSection img {
    width: 100%;
  }
}
@media screen and (min-width: 992px) {
  .about__section--imageSection img {
    display: block;
    margin: 0 auto;
    width: 80%;
  }
}
@media screen and (min-width: 1366px) {
  .about__section--imageSection img {
    margin: 0;
    margin-left: 15%;
  }
}

.about__section--rating {
  top: unset;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .about__section--rating {
    bottom: 55%;
  }
}
@media screen and (min-width: 992px) {
  .about__section--rating {
    bottom: 35%;
  }
}
@media screen and (min-width: 1366px) {
  .about__section--rating {
    top: 55%;
    bottom: unset;
    transform: translateX(0);
    left: 0;
    width: 320px;
  }
  .about__section--rating svg {
    margin-left: 10px;
  }
}

@media screen and (max-width: 1200px) {
  .about__section--button {
    padding: 1rem 0;
    text-align: center;
    height: 60px;
    margin-left: 0;
    margin-top: 2rem;
    width: 100%;
    font-size: 1.1rem;
  }
}

.customer__section {
  padding: 2rem 0;
}

.second__moving__section {
  padding: 3rem 1rem 5rem 1rem;
}
@media screen and (min-width: 992px) {
  .second__moving__section {
    padding: 3rem 0 3rem 0;
  }
}
.second__moving__section .moving__section--secondaryText {
  text-align: justify;
}
@media screen and (min-width: 992px) {
  .second__moving__section .moving__section--secondaryText {
    width: 90%;
  }
}

.moving__section--imageSection {
  margin-left: 0;
}

.moving__section--textSection {
  margin-left: 0;
}

.moving__section--textSection .card {
  margin: 1rem auto 0 auto;
  width: 100%;
}
@media screen and (min-width: 992px) {
  .moving__section--textSection .card {
    margin: 3rem auto 0 auto;
    width: 85%;
  }
}
.moving__section--textSection .card__header {
  text-align: center;
  padding: 1rem 1rem;
  border-bottom: 3px solid #000;
}
@media screen and (min-width: 992px) {
  .moving__section--textSection .card__header {
    padding: 1rem 0;
  }
}
.moving__section--textSection .card__header img {
  width: 50%;
  height: auto;
}
.moving__section--textSection .card__header h4 {
  margin-top: 5px;
  font-size: 1.3rem;
  font-weight: bolder;
  margin-top: 0.7rem;
}
@media screen and (min-width: 992px) {
  .moving__section--textSection .card__header h4 {
    font-size: 1.1rem;
    width: 90%;
    margin: 5px auto 0 auto;
  }
}
.moving__section--textSection .card__body {
  background-color: #01cd75;
  padding: 1.5rem 1rem;
}
.moving__section--textSection .card__body p {
  text-align: center;
  margin: 0;
}
.moving__section--textSection .card a {
  background-color: #000;
  color: #fff;
  text-decoration: none;
  text-align: center;
  padding: 1rem 0;
  font-size: 1.2rem;
}
@media screen and (min-width: 992px) {
  .moving__section--textSection .card a {
    font-size: 1rem;
  }
}
@media screen and (min-width: 992px) {
  .moving__section--textSection .card a {
    font-size: 1.1rem;
    padding: 0.8rem 0;
  }
}

.moving__section--perksList {
  padding-left: 0;
  margin-left: 0;
}
.moving__section--perksList li:not(:first-child) {
  margin-top: 1rem;
}
.moving__section--perksList li:not(:last-child) {
  padding-bottom: 1rem;
  border-bottom: 2px solid #d6d6d6;
}

.moving__section {
  grid-template-columns: repeat(1, 1fr);
}
@media screen and (min-width: 992px) {
  .moving__section {
    grid-template-columns: 40% 60%;
  }
}
.moving__section--greenText, .moving__section--mainText, .moving__section--secondaryText {
  margin-left: 0;
}
@media screen and (min-width: 992px) {
  .moving__section--greenText, .moving__section--mainText, .moving__section--secondaryText {
    margin-left: 8px;
  }
}

.moving__section--imageSection {
  width: 100%;
  text-align: center;
  position: relative;
}
.moving__section--imageSection::after {
  content: "";
  background-color: #00a45d;
  position: absolute;
  bottom: -2rem;
  left: -1rem;
  z-index: 2;
  height: 335px;
  width: 270px;
}
@media screen and (min-width: 768px) {
  .moving__section--imageSection::after {
    left: 25%;
  }
}
@media screen and (min-width: 992px) {
  .moving__section--imageSection::after {
    left: 6rem;
    bottom: 28%;
    width: 335px;
  }
}
.moving__section--imageSection img {
  width: 90%;
  height: auto;
  margin: 2rem auto 0 auto;
  display: block;
  z-index: 9;
}
@media screen and (min-width: 768px) {
  .moving__section--imageSection img {
    width: 40%;
  }
}
@media screen and (min-width: 992px) {
  .moving__section--imageSection img {
    width: 90%;
  }
}
@media screen and (min-width: 1366px) {
  .moving__section--imageSection img {
    margin: 0 auto;
    width: 60%;
  }
}

.secure__container {
  padding: 4rem 1rem 2rem 1rem;
}
@media screen and (min-width: 992px) {
  .secure__container {
    padding: 4rem 2rem 2rem 2rem;
  }
}

.customer__section2 {
  padding: 0 1rem;
}
@media screen and (min-width: 992px) {
  .customer__section2 {
    padding: 0 2rem 3rem 2rem;
  }
}
@media screen and (min-width: 1366px) {
  .customer__section2 {
    padding: 0 2rem 3rem 2rem;
  }
}

.customer__section {
  padding-top: 0;
}
@media screen and (min-width: 992px) {
  .customer__section {
    padding-top: 2rem;
  }
}

.customer__section--imageSection {
  position: relative;
}

.customer__section--infoSquare {
  margin-top: 0;
  left: 1.3rem;
  bottom: 0;
  height: 100px;
  border-top: 5px solid #000;
}
@media screen and (min-width: 1366px) {
  .customer__section--infoSquare {
    left: 4.4rem;
  }
}
