:root {
  --primary: #28166F;
  --accent: #0635AF;
  --contrast: #00923F;
  --light: #F8F9FA;
  --dark: #1B1B1B;
}

.bg-primary {
  background-image: linear-gradient(to right bottom, #28166f, #271d7e, #24258e, #1c2d9e, #0635af);
  color: var(--light) !important;
}

.bg-light {
  background-color: var(--light) !important;
  color: var(--primary) !important;
}

.btn {
  border: 2px solid var(--primary);
  background: transparent;
  transition: all 0.3s ease-in;
  color: var(--accent);
  padding: 1rem 2rem;
  border-radius: 100px;
  border: 2px solid var(--accent);

  &:hover {
    background: var(--primary);
    color: var(--light);
    border: 2px solid var(--accent);
  }

}

body {
  background-image: radial-gradient(circle, #ffffff, #fefefe, #fdfcfd, #fbfbfc, #fafafb, #f9f9fb, #f8f9fa, #f7f8fa, #f6f8fa, #f6f8f9, #f5f7f9, #f5f7f8);
  color: var(--dark);

}

#hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}


@media (min-width: 992px) {

  #hero img {
    height: 500px;
    width: auto;
  }
}


.section {
  padding: 80px 0;
}




#assistence .container-cta {

  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

#assistence .btn {
  border-color: var(--light);
  color: var(--light);
}

/* #remote-assistence {
  background-color: #ffffff;
} */

#remote-assistence a {
  text-decoration: none;
  color: var(--accent);
  filter: drop-shadow(0 0 0.1rem rgba(0, 0, 0, 0.1));

}

.about .image-wrapper {
  position: relative;
}

.about .image-wrapper .image-box {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);

}

.about .image-wrapper .image-box img {
  transition: 0.5s transform;
}

.about .image-wrapper .image-box:hover img {
  transform: scale(1.05);
}

.about .image-wrapper .experience-box {
  position: absolute;
  bottom: -30px;
  right: 30px;
  background-color: var(--contrast);
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px color-mix(in srgb, #00923F, transparent 70%);
}

.about .image-wrapper .experience-box .years {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--light);

}

.about .image-wrapper .experience-box .text {
  font-size: 0.9rem;
  margin-top: 5px;
  line-height: 1.2;
  color: var(--light);
}


#contact .card {
  background: transparent;
  border-color: var(--accent);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  min-height: 5rem;
  display: flex;
  justify-content: center;


}

#contact .card .card-body {
  display: flex;
  align-items: center;
  color: var(--light);
  font-weight: 700;
}

#contact .card .card-body .circle {
  background-color: var(--accent);
  color: var(--light);
  border-radius: 15px;
}


#contact .card a {
  color: var(--light);
  text-decoration: none;
}

#contact .card .card-img-overlay {
  font-weight: 700;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.6) 95%, #252525 100%);
}

#contact .card .card-img-overlay .circle {

  border-radius: 15px;
  color: var(--light);

}
#footer a {
  transition: color 0.5s ease-in-out, font-weight 0.5s ease-in-out;
}

#footer a:hover {
  color: var(--accent) !important;
  font-weight: 600;
}
#footer .policy .policy-link a{
  color: var(--dark);
}
#footer .policy .policy-link a:hover {
  color: var(--accent)!important;

}