html, body {
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
}

html, body {
  font-size: 10px;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

h1 {
  font-size: 3.4vw;
}
@media (max-width: 991px) {
  h1 {
    font-size: 3rem;
  }
}

h2 {
  font-size: 3.4vw;
}
@media (max-width: 991px) {
  h2 {
    font-size: 3rem;
  }
}

h3 {
  font-size: 2.8rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

p {
  font-size: 1.8rem;
  margin-bottom: 3rem;
}

.btn {
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 1.2rem 3.5rem;
  position: relative;
  overflow: hidden;
  border: unset;
  border-radius: 0.5rem;
  transition: all ease 0.7s;
  background-color: #FFF;
}
@media (max-width: 991px) {
  .btn {
    font-size: 1.4rem;
    padding: 1.2rem 2rem;
  }
}
.btn span {
  position: relative;
  z-index: 2;
  transition: all ease 0.5s;
  color: #000;
}
.btn::after {
  content: "";
  position: absolute;
  left: -2%;
  top: -2%;
  height: 104%;
  width: 0;
  background-image: linear-gradient(to bottom, #682772 0%, #400f48 80%);
  transition: all ease 0.7s;
}
.btn:hover {
  background-color: #FFF;
}
.btn:hover span {
  color: #FFF;
}
.btn:hover::after {
  background-color: #682772;
  width: 104%;
}
.btn--white {
  background-color: #FFF;
}
.btn--blue {
  background-color: #006695;
}
.btn--blue span {
  color: #FFF;
}
.btn--green {
  background-color: #426f6e;
}
.btn--green span {
  color: #FFF;
}

.hero {
  margin-top: -6.1rem;
}
@media (max-width: 991px) {
  .hero {
    margin-top: 0;
  }
}
.hero--slider .slick-slide {
  position: relative;
  overflow: hidden;
}
.hero--slider .slick-slide img {
  max-width: unset;
  width: 100%;
}
@media (max-width: 991px) {
  .hero--slider .slick-slide img {
    height: 45rem;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: unset;
  }
}
.hero--slider .cap {
  position: absolute;
  max-width: 60vw;
  text-align: center;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #FFF;
}
@media (max-width: 991px) {
  .hero--slider .cap {
    width: 90vw;
    max-width: unset;
  }
}
.hero--slider .cap h2 {
  font-size: 5vw;
  font-weight: 500;
  margin-bottom: 2rem;
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.3);
}
@media (max-width: 991px) {
  .hero--slider .cap h2 {
    font-size: 2.7rem;
  }
}
.hero--slider .cap p {
  font-weight: 300;
  max-width: 50vw;
  margin: auto;
  margin-bottom: 3rem;
}
@media (max-width: 991px) {
  .hero--slider .cap p {
    max-width: 80vw;
    font-size: 1.4rem;
  }
}
.hero--slider .slick-next, .hero--slider .slick-prev {
  right: 5rem;
  width: 6rem;
  height: 6rem;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  display: flex;
  place-content: center;
  transition: all ease 0.3s;
}
@media (max-width: 991px) {
  .hero--slider .slick-next, .hero--slider .slick-prev {
    width: 2.5rem;
    height: 2.5rem;
    right: 2rem;
    top: 55%;
  }
}
.hero--slider .slick-next img, .hero--slider .slick-prev img {
  align-self: center;
  width: 2rem;
  filter: invert(1);
  transition: all ease 0.3s;
}
@media (max-width: 991px) {
  .hero--slider .slick-next img, .hero--slider .slick-prev img {
    width: 1.2rem;
  }
}
.hero--slider .slick-next::before, .hero--slider .slick-prev::before {
  display: none;
}
.hero--slider .slick-next:hover, .hero--slider .slick-prev:hover {
  background-color: #e3b597;
}
.hero--slider .slick-next:hover img, .hero--slider .slick-prev:hover img {
  filter: unset;
}
.hero--slider .slick-prev {
  right: unset;
  left: 5rem;
  z-index: 3;
}
@media (max-width: 991px) {
  .hero--slider .slick-prev {
    left: 2rem;
  }
}
.hero--crumb {
  position: relative;
  overflow: hidden;
}
@media (max-width: 991px) {
  .hero--crumb img {
    max-width: unset;
    height: 25rem;
  }
}
.hero--crumb .cap {
  position: absolute;
  left: 10vw;
  color: #FFF;
  top: 50%;
  transform: translateY(calc(-50% + 2rem));
}
@media (max-width: 991px) {
  .hero--crumb .cap {
    transform: translateY(-50%);
  }
}
.hero--crumb .cap .breadcrumb {
  font-size: 1.4rem;
  color: #FFF;
  font-weight: 500;
}
.hero--crumb .cap .breadcrumb .active {
  color: #FFF;
}
.hero--crumb .cap .breadcrumb a {
  color: #e3b597;
}
.hero--crumb .cap .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: #FFF;
}
.hero--crumb .cap--black {
  color: #000;
}
.hero--crumb .cap--black .breadcrumb .active {
  color: #000;
}
.hero--crumb .cap--black .breadcrumb a {
  color: #006695;
}
.hero--crumb .cap--black .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: #000;
}
.hero--title {
  padding: 8rem 10vw 4rem 10vw;
  background-color: #006695;
  color: #FFF;
}
@media (max-width: 991px) {
  .hero--title {
    padding: 8rem 10vw;
  }
}
.hero--title h1 {
  font-size: 2.5vw;
  margin-top: 1rem;
  margin-bottom: 0.8rem;
}
@media (max-width: 991px) {
  .hero--title h1 {
    font-size: 2.5rem;
  }
}
.hero--title .breadcrumb {
  font-size: 1.4rem;
  color: #FFF;
  font-weight: 500;
}
.hero--title .breadcrumb .active {
  color: #FFF;
}
.hero--title .breadcrumb a {
  color: #e3b597;
}
.hero--title .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: #FFF;
}

.form--row {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 3rem;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 1.6rem;
  margin-bottom: 2rem;
}
@media (max-width: 991px) {
  .form--row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.form input, .form textarea {
  width: 100%;
  border: 1px solid #000;
  padding: 1rem 3rem;
}
.form--enquiry {
  width: 70rem;
}
@media (max-width: 991px) {
  .form--enquiry {
    width: unset;
  }
}

.hd {
  position: relative;
  z-index: 10;
  border-top: 8px solid #682772;
}
.hd--top {
  padding: 1rem 10vw;
  display: grid;
  grid-template-columns: 30rem auto;
  background-color: #f9eecf;
  background-image: linear-gradient(to left bottom, #9cd8f3, #e7f7ff, #e7f7ff);
  align-items: center;
  border-top: 1px dashed #9d8c81;
}
@media (max-width: 991px) {
  .hd--top {
    grid-template-columns: 1fr;
  }
}
.hd--links {
  margin-left: auto;
  display: flex;
  gap: 4rem;
}
@media (max-width: 991px) {
  .hd--links {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    display: none;
  }
  .hd--links img {
    width: 3rem;
  }
}
.hd--links img {
  width: 1.2rem;
  position: relative;
  top: 0.4rem;
}
.hd--links strong {
  display: block;
  font-weight: 600;
}
.hd--links > div {
  display: grid;
  grid-template-columns: 1.5rem auto;
  gap: 1rem;
  row-gap: 0;
  align-items: flex-start;
}
.hd--links > div p {
  font-size: 1.4rem;
  margin: 0;
}
.hd--nav {
  font-size: 1.6rem;
  font-weight: 600;
  color: #FFF;
  border: 1px dashed rgba(255, 255, 255, 0.4);
}
.hd--nav a {
  color: #FFF;
}
.hd--nav .navbar-nav {
  justify-content: space-evenly;
}
.hd .navbar-expand-lg .navbar-nav {
  margin: 1rem 0;
}
.hd .navbar-expand-lg .navbar-nav .nav-item:not(:first-child) {
  border-left: 1px solid rgba(0, 0, 0, 0.6);
}
@media (max-width: 991px) {
  .hd .navbar-expand-lg .navbar-nav .nav-item:not(:first-child) {
    border: none;
  }
}
.hd .navbar-expand-lg .navbar-nav .nav-item:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}
@media (max-width: 991px) {
  .hd .navbar-expand-lg .navbar-nav .nav-item:not(:last-child) {
    border: none;
  }
}
.hd .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0.3rem 5rem;
  text-transform: uppercase;
  color: #FFF;
}
@media (max-width: 991px) {
  .hd .navbar-expand-lg .navbar-nav .nav-link {
    padding: 1rem 2rem;
  }
}
.hd .navbar-expand-lg .navbar-nav .nav-link.active, .hd .navbar-expand-lg .navbar-nav .nav-link .show {
  color: #e3b597 !important;
}
.hd .navbar-expand-lg .navbar-nav .nav-link:hover {
  color: #e3b597;
}
.hd .navbar {
  padding: 5px;
  background-image: linear-gradient(to bottom, #682772 0%, #400f48 80%);
  background-image: linear-gradient(to bottom, #682772 0%, #682772 49%, #400f48 50%);
  margin: 0 10vw;
  transition: all ease 0.3s;
  transform-origin: center;
}
@media (max-width: 991px) {
  .hd .navbar {
    background-image: linear-gradient(to bottom, #682772 0%, #400f48 80%);
    margin: 0;
  }
}
.hd .navbar.scrolled-nav {
  margin: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}
.hd .dropdown-menu {
  margin-top: 1rem;
  background-color: #400f48;
  padding: 0;
  font-size: 1.6rem;
  font-weight: 600;
  border: unset;
  border-radius: unset;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}
@media (max-width: 991px) {
  .hd .dropdown-menu {
    border-top: 1px dashed rgba(255, 255, 255, 0.6);
    border-bottom: 1px dashed rgba(255, 255, 255, 0.6);
    background-color: transparent;
    margin-bottom: 1rem;
  }
}
.hd .dropdown-menu li:not(:last-child) {
  border-bottom: 1px dashed rgba(255, 255, 255, 0.6);
}
.hd .dropdown-menu a {
  padding: 1rem 5rem;
  font-weight: 500;
  transition: all ease 0.3s;
}
@media (max-width: 991px) {
  .hd .dropdown-menu a {
    padding: 1rem 2rem;
  }
}
.hd .dropdown-menu a:hover {
  background-color: #400f48;
  color: #e3b597;
}
.hd .dropdown-toggle::after {
  display: none;
}

@media (max-width: 991px) {
  .navbar-brand {
    text-align: center;
  }
}
.navbar-brand img {
  width: 14rem;
  filter: drop-shadow(1px 1px 0px white);
}
@media (max-width: 991px) {
  .navbar-brand img {
    width: 14rem;
  }
}

@media (max-width: 991px) {
  .navbar-toggler {
    margin-left: auto;
    margin-right: 0;
    border: unset;
  }
}
.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

@media (max-width: 991px) {
  .navbar-toggler-icon {
    margin: 0.6rem;
    filter: invert(1);
    transform: scale(1.4);
    padding: 1rem 0;
    outline: none;
    box-shadow: none;
  }
}

.footer {
  background-color: #ecded8;
  padding: 8rem 10vw;
}
.footer--grid {
  display: grid;
  grid-template-columns: 0.9fr 1.5fr 1fr;
  gap: 10rem;
}
@media (max-width: 991px) {
  .footer--grid {
    grid-template-columns: 1fr;
  }
}
.footer--grid .logo img {
  width: 20rem;
  margin-bottom: 2rem;
}
.footer--grid p {
  font-size: 1.4rem;
}
.footer h5 {
  font-size: 1.3rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-weight: 600;
  padding-bottom: 2rem;
  color: #682772;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.3);
}
.footer--links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
}
.footer--links ul {
  padding: 0;
  margin: 0;
}
.footer--links ul li {
  list-style-type: none;
  font-size: 1.5rem;
}
.footer--links ul li a {
  color: #333;
  text-decoration: none;
  display: block;
  padding: 0.5rem 0;
}
.footer--copyright {
  text-align: center;
  padding-top: 3rem;
  border-top: 1px dashed #b0998a;
  margin-top: 5rem;
  margin-bottom: -5rem;
  font-size: 1.4rem;
}
.footer--contact p {
  display: grid;
  grid-template-columns: 1.5rem auto;
  margin-top: 2rem;
  gap: 1rem;
}
.footer .socials {
  padding: 0;
  margin: 0;
  padding-bottom: 1.5rem;
  padding-top: 0.5rem;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.3);
}
.footer .socials li {
  display: inline;
}
.footer .socials li a {
  margin-right: 1rem;
}
.footer .socials li a img {
  width: 4rem;
}

.foot {
  background-color: #e3b597;
  padding: 4rem 28%;
  display: grid;
  grid-template-columns: 20rem auto;
  gap: 3rem;
}
@media (max-width: 991px) {
  .foot {
    padding: 4rem 3rem;
    grid-template-columns: 1fr;
    text-align: center;
  }
}
.foot img {
  max-width: 20rem;
}
@media (max-width: 991px) {
  .foot img {
    margin-bottom: -1rem;
  }
}
.foot h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.foot h2 {
  font-size: 1.6rem;
  font-weight: 700;
}
@media (max-width: 991px) {
  .foot h2 {
    font-size: 1.6rem;
  }
}
.foot p {
  margin: 0;
  font-size: 1.4rem;
}
@media (max-width: 991px) {
  .foot p {
    font-size: 1.3rem;
  }
}
.foot p strong {
  font-weight: 600;
}

.intro {
  padding: 8rem 20vw;
  padding-bottom: 32rem;
  background-color: #682772;
  border-bottom: 6px solid #006695;
  color: #FFF;
  text-align: center;
  margin-top: -0.5rem;
}
@media (max-width: 991px) {
  .intro {
    padding: 8rem 10vw;
    padding-bottom: 32rem;
  }
}
.intro h1 {
  margin-bottom: 2rem;
}

.apps {
  padding: 8rem 10vw;
  /*background-image: url(../img/canvas-bg.jpg);*/
}
.apps--grid {
  position: relative;
  margin-top: -34.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
@media (max-width: 991px) {
  .apps--grid {
    grid-template-columns: 1fr;
  }
}
.apps--grid > div {
  padding: 1rem;
  background-color: #FFF;
  text-align: center;
  border-radius: 5px;
  box-shadow: 0 0 1.3rem rgba(0, 0, 0, 0.2);
  padding-bottom: 3rem;
}
.apps--grid > div:hover img {
  transform: scale(1.1);
}
.apps--grid .im {
  position: relative;
  width: 100%;
  margin-bottom: 3rem;
  height: 25rem;
  overflow: hidden;
}
.apps--grid img {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  max-width: unset;
  transform: scale(1);
  transition: all ease 2s;
}
.apps--grid h3 {
  font-size: 2.3rem;
  font-weight: 600;
  margin-bottom: 2rem;
}
.apps--grid p {
  font-size: 1.5rem;
  font-weight: 400;
  max-width: 90%;
  margin: auto;
}

.abt {
  padding: 8rem 0 2rem 0;
}
.abt--grid {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: auto 25vw;
  gap: 10rem;
}
@media (max-width: 991px) {
  .abt--grid {
    grid-template-columns: 1fr;
    margin-top: unset;
    gap: 6rem;
  }
}
.abt h2 {
  font-size: 2.6vw;
  font-weight: 600;
  margin-bottom: 4rem;
  max-width: 80%;
}
@media (max-width: 991px) {
  .abt h2 {
    font-size: 3rem;
    max-width: unset;
  }
}
.abt .im img {
  border-radius: 5px;
}
.abt--points {
  display: grid;
  padding: 7rem 5rem 0 0;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem;
}
@media (max-width: 991px) {
  .abt--points {
    grid-template-columns: 1fr;
    gap: 4rem;
    text-align: center;
    padding: 4rem 2rem;
  }
}
.abt--points h4 {
  font-size: 1.6rem;
  font-weight: 600;
}
.abt--points img {
  margin-bottom: 1.5rem;
  width: 6rem;
}

.pros {
  background-color: #006695;
  color: #FFF;
  padding: 8rem 10vw;
  text-align: center;
}
.pros--intro {
  max-width: 50vw;
  margin: auto;
}
@media (max-width: 991px) {
  .pros--intro {
    max-width: unset;
  }
}
.pros h2 {
  margin-bottom: 3rem;
}
.pros--grid {
  margin-top: 5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5rem;
}
@media (max-width: 991px) {
  .pros--grid {
    grid-template-columns: 1fr;
  }
}
.pros--grid > div:hover .im {
  transform: rotate(-25deg);
}
.pros--grid .im {
  position: relative;
  border-radius: 50%;
  border: 1px dashed #CCC;
  width: 22rem;
  height: 22rem;
  margin: auto;
  overflow: hidden;
  transition: all ease 0.5s;
  transform: rotate(0deg);
}
.pros--grid img {
  position: relative;
  border-radius: 50%;
  border: 8px solid #426f6e;
  width: 22rem;
  height: 22rem;
}
.pros--grid h4 {
  font-size: 2rem;
  margin-top: 2rem;
  margin-bottom: 3rem;
}
.pros--center {
  margin-top: 5rem;
}

.about {
  padding: 8rem 10vw;
}
.about--grid {
  display: grid;
  grid-template-columns: 40vw auto;
  gap: 6vw;
  row-gap: 3rem;
}
@media (max-width: 991px) {
  .about--grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 991px) {
  .about--grid img {
    margin-bottom: 4rem;
  }
}
.about--left {
  width: 40vw;
}
@media (max-width: 991px) {
  .about--left {
    width: 80vw;
  }
}
.about--left .slick-arrow::before {
  display: none;
}
.about--left .slick-dots li button:before {
  font-size: 11px;
}
@media (max-width: 991px) {
  .about--left .slick-dots {
    bottom: 5px;
  }
}

.products {
  padding: 8rem 10vw;
  text-align: center;
  background-color: #f6f6f6;
}
.products:nth-child(2n) {
  background-color: #FFF;
}
.products .lefty {
  text-align: left;
  padding-bottom: 2rem;
  margin-bottom: 3rem;
  border-bottom: 1px dashed #682772;
}
.products--grid {
  margin-top: 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5vw;
}
@media (max-width: 991px) {
  .products--grid {
    grid-template-columns: 1fr;
    gap: 5rem;
  }
}
.products--grid > div {
  background-color: #FFF;
  border-radius: 5px;
  overflow: hidden;
}
.products--grid img {
  width: 100%;
}
.products--grid .im {
  height: 25rem;
  overflow: hidden;
}
@media (max-width: 991px) {
  .products--grid .im {
    height: unset;
  }
}
.products--grid .im img {
  margin-top: -10rem;
}
@media (max-width: 991px) {
  .products--grid .im img {
    margin: 0;
  }
}
.products--grid .details {
  padding: 4rem;
}
.products--blocks {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 4rem;
}
@media (max-width: 991px) {
  .products--blocks {
    grid-template-columns: 1fr;
  }
}
.products--blocks .block {
  border-radius: 5px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  text-decoration: none;
  background-color: #006695;
  overflow: hidden;
}
.products--blocks .block:hover .im span {
  opacity: 1;
  top: 0;
}
.products--blocks .block:hover .im .im img {
  transform: translateX(-50%) scale(1.2);
}
.products--blocks .block:hover .cap {
  background-color: #000;
  color: #FFF;
}
.products--blocks .im {
  height: 20rem;
  position: relative;
  overflow: hidden;
}
.products--blocks .im img {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 250%;
  max-width: unset;
  transform: translateX(-50%) scale(1);
  z-index: 0;
  transition: all ease 0.3s;
}
.products--blocks .im span {
  position: absolute;
  top: -2rem;
  left: 0%;
  color: #FFF;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 1rem;
  z-index: 1;
  width: 100%;
  text-align: right;
  font-size: 1.3rem;
  opacity: 0;
  transition: all ease 0.3s;
}
.products--blocks .cap {
  padding: 2rem;
  text-align: center;
  color: #FFF;
  font-size: 2.2rem;
  text-decoration: none;
  transition: all ease 0.3s;
}
.products--blocks .cap h4 {
  margin: 0;
}

.pr {
  padding: 8rem 10vw;
}
.pr--cols {
  display: grid;
  grid-template-columns: 35vw auto;
  gap: 8rem;
}
@media (max-width: 991px) {
  .pr--cols {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}
.pr--cols > div {
  width: 100%;
  overflow: hidden;
}
.pr--cols ul {
  font-size: 1.8rem;
  padding: 0;
  margin: 0;
  margin-bottom: 3rem;
}
.pr--cols ul li {
  list-style-type: none;
  padding: 1rem 0;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.5);
}
.pr--slider .slick-next {
  right: 1.5rem;
  top: 50%;
}
.pr--slider .slick-next::before {
  display: none;
}
.pr--slider .slick-prev {
  left: 1.5rem;
  top: 50%;
  z-index: 4;
}
.pr--slider .slick-prev::before {
  display: none;
}
.pr--tabs {
  margin-top: 8rem;
  font-size: 1.6rem;
}
@media (max-width: 991px) {
  .pr--tabs {
    margin-top: 1rem;
  }
}
.pr--tabs .nav-tabs {
  border-bottom: none;
}
.pr--tabs .tab-pane {
  padding: 3rem 3rem;
  border: 1px solid rgba(0, 0, 0, 0.2);
}
.pr--tabs .tab-pane p:last-child {
  margin: 0;
}
.pr--tabs .nav-tabs .nav-link {
  margin-right: 1rem;
  background-color: #682772;
  color: #FFF;
  font-weight: 500;
  padding: 1rem 3rem;
  border-radius: 0;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-bottom: unset;
  border-top: 3px solid #682772;
}
@media (max-width: 991px) {
  .pr--tabs .nav-tabs .nav-link {
    padding: 1rem;
    font-size: 1.3rem;
    margin-right: 0.2rem;
  }
}
.pr--tabs .nav-tabs .nav-link.active, .pr--tabs .nav-tabs .nav-link:hover {
  background-color: #FFF;
  color: #682772;
}
.pr--tabs .review:not(:last-child) {
  padding-bottom: 3rem;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.2);
  margin-bottom: 3rem;
}
.pr--tabs .review p {
  margin-bottom: 1rem;
}
.pr--tabs .review h5 {
  font-weight: 300;
}
.pr--details p + ul, .pr--tabs p + ul {
  margin-top: -3rem;
  margin-bottom: 4rem;
}
.pr--details strong, .pr--details b, .pr--tabs strong, .pr--tabs b {
  font-weight: 500;
}

.finish {
  padding: 8rem 10vw;
}
.finish--blocks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
@media (max-width: 991px) {
  .finish--blocks {
    grid-template-columns: 1fr;
  }
}
.finish .centered {
  text-align: center;
}
.finish .centered .btn {
  margin-top: 3rem;
}
.finish--block {
  border: 1px solid rgba(104, 39, 114, 0.2);
  border-bottom: 1rem solid #682772;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
}
.finish--block img {
  transition: all ease 2s;
  transform: scale(1);
}
.finish--block:hover img {
  transform: scale(1.2);
}
.finish--block h4 {
  font-size: 2.3rem;
  margin-bottom: 2rem;
  font-weight: 600;
}
.finish--block p {
  font-size: 1.5rem;
}
.finish--block p:last-child {
  margin: 0;
}
.finish--block .details {
  padding: 4rem 2rem;
}
.finish--block .certs {
  background-color: #e3b597;
  padding: 1rem 2rem;
  margin-bottom: 2rem;
}
.finish--block .certs strong {
  display: block;
}
.finish--block .im {
  overflow: hidden;
}

.contact {
  padding: 8rem 10vw;
}
.contact--grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 10rem;
}
@media (max-width: 991px) {
  .contact--grid {
    grid-template-columns: 1fr;
    gap: 5rem;
  }
}
.contact--brief {
  margin-bottom: 5rem;
}
.contact--form .form--con {
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 991px) {
  .contact--form .form--con {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.contact--form .form--con-full {
  grid-template-columns: 1fr;
}
.contact--info p {
  font-size: 1.5rem;
}
.contact--info p strong {
  display: block;
}

/*# sourceMappingURL=style.css.map */
