@keyframes shine {
  from {
    opacity: 0;
    left: 0%;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
    left: 100%;
  }
}
.practices_section .image_wrapper {
  height: 80vh;
  background-image: url("../../images/practices/practices_banner.jpg");
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
@media only screen and (max-width: 1170px) {
  .practices_section .image_wrapper {
    min-height: 500px;
    height: 70vh;
  }
}
@media only screen and (max-width: 768px) {
  .practices_section .image_wrapper {
    min-height: 450px;
    height: 60vh;
  }
}
@media only screen and (max-width: 540px) {
  .practices_section .image_wrapper {
    min-height: 400px;
    height: 50vh;
  }
}
.practices_section .practices_wrapper {
  position: relative;
  z-index: 0;
  background: var(--white);
  margin-top: -100px;
  border-radius: 25px 25px 0 0;
  padding: 70px 50px 0;
  overflow: hidden;
}
@media only screen and (max-width: 991px) {
  .practices_section .practices_wrapper {
    padding: 55px 40px 40px;
    margin-top: -80px;
    border-radius: 20px 20px 0 0;
  }
}
@media only screen and (max-width: 768px) {
  .practices_section .practices_wrapper {
    padding: 40px 20px 30px;
    margin-top: -60px;
  }
}
@media only screen and (max-width: 540px) {
  .practices_section .practices_wrapper {
    padding: 30px 15px;
    margin-top: -40px;
  }
}
.practices_section .practices_wrapper .heading {
  text-align: center;
}
.practices_section .practices_wrapper .heading h2 {
  font-size: 60px;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 20px;
}
@media only screen and (max-width: 991px) {
  .practices_section .practices_wrapper .heading h2 {
    font-size: 50px;
  }
}
@media only screen and (max-width: 768px) {
  .practices_section .practices_wrapper .heading h2 {
    font-size: 40px;
  }
}
@media only screen and (max-width: 540px) {
  .practices_section .practices_wrapper .heading h2 {
    font-size: 30px;
    margin-bottom: 10px;
  }
}
.practices_section .practices_wrapper .heading p {
  font-size: 24px;
  text-transform: uppercase;
  max-width: 460px;
  margin: 0 auto 70px;
}
@media only screen and (max-width: 991px) {
  .practices_section .practices_wrapper .heading p {
    margin: 0 auto 50px;
    font-size: 22px;
  }
}
@media only screen and (max-width: 768px) {
  .practices_section .practices_wrapper .heading p {
    font-size: 20px;
    margin: 0 auto 40px;
  }
}
@media only screen and (max-width: 540px) {
  .practices_section .practices_wrapper .heading p {
    font-size: 16px;
    margin: 0 auto 30px;
  }
}
.practices_section .practices_wrapper .heading p span {
  color: var(--primary);
}
.practices_section .practices_wrapper .main_wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 30px 20px;
}
@media only screen and (max-width: 991px) {
  .practices_section .practices_wrapper .main_wrapper {
    grid-gap: 20px 15px;
  }
}
@media only screen and (max-width: 768px) {
  .practices_section .practices_wrapper .main_wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}/*# sourceMappingURL=practices.css.map */