*,
*::after,
*::before {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
  margin: 0;
  padding: 0;
}

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 62.5%;
  font-family: "Roboto", sans-serif;
}

@media only screen and (max-width: 53em) {
  html {
    font-size: 52.5%;
  }
}

.container {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 80vh (min-content)[9];
      grid-template-rows: 80vh repeat(9, -webkit-min-content);
      grid-template-rows: 80vh repeat(9, min-content);
  -ms-grid-columns: [full-start] 1fr [center-start] ([col-start] minmax(min-content, 10rem) [col-end])[10] [center-end] 1fr [full-end];
      grid-template-columns: [full-start] 1fr [center-start] repeat(10, [col-start] minmax(-webkit-min-content, 10rem) [col-end]) [center-end] 1fr [full-end];
      grid-template-columns: [full-start] 1fr [center-start] repeat(10, [col-start] minmax(min-content, 10rem) [col-end]) [center-end] 1fr [full-end];
}

.bold {
  font-weight: 500;
}

.heading-1 {
  font-size: 5rem;
  color: #ffffff;
  font-weight: 300;
}

.heading-2 {
  font-size: 3rem;
  font-weight: 300;
}

.heading-3 {
  font-size: 3rem;
  color: #be29ec;
}

.caption {
  font-size: 1.2rem;
}

p {
  margin-top: 2rem;
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 2rem;
}

/**********************************************************
BUTTON ****************************************************
***********************************************************/
.btn {
  font-size: 1.5rem;
  font-weight: 400;
  text-transform: uppercase;
  margin-top: 6rem;
  padding: 1.5rem;
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
  position: relative;
  cursor: pointer;
}

.btn:after {
  content: "";
  display: block;
  position: absolute;
  background: #ffffff;
  bottom: 0;
  height: 2px;
  left: 50%;
  -webkit-transition: width 0.3s ease 0s, left 0.3s ease 0s;
  transition: width 0.3s ease 0s, left 0.3s ease 0s;
  width: 0px;
}

.btn:hover:after {
  padding-bottom: 10px;
  width: 100%;
  left: 0;
}

.btn a {
  text-decoration: none;
  color: #ffffff;
}

.action {
  background-color: #be29ec;
  grid-column: full-start / full-end;
  text-align: center;
  padding: 8rem;
}

.action h1 {
  font-size: 3.5rem;
}

.footer {
  background-color: #333333;
  grid-column: full-start / full-end;
  color: #ffffff;
  text-align: center;
  padding-top: 2rem;
  padding-bottom: 6rem;
}

.footer-panel {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(40rem, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(40rem, 1fr));
}

.footer-panel__content p {
  font-size: 1.2rem;
  line-height: 1rem;
}

.footer-panel__content p a {
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
}

.footer-panel__content p a:hover {
  font-weight: 500;
}

.footer-panel__social p {
  font-size: 1.2rem;
  line-height: 1rem;
}

.footer-panel__social p a {
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
}

.footer-panel__social p a:hover {
  color: #be29ec;
}

.header {
  grid-column: full-start / full-end;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(190, 41, 236, 0.8)), to(rgba(190, 41, 236, 0.8))), url("../img/header-professional.jpg");
  background-image: linear-gradient(rgba(190, 41, 236, 0.8), rgba(190, 41, 236, 0.8)), url("../img/header-professional.jpg");
  background-size: cover;
  background-position: 0% 10%;
  /*********************************************************
    NAV BAR
    *********************************************************/
  /*********************************************************
    TITLE TEXT
    *********************************************************/
}

.header .nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 5rem;
  padding-right: 5rem;
  padding-top: 5rem;
}

@media only screen and (max-width: 53em) {
  .header .nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-left: 0;
    padding-right: 0;
  }
}

@media only screen and (max-width: 53em) {
  .header .nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-left: 0;
  }
}

.header .nav__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 50%;
}

@media only screen and (max-width: 53em) {
  .header .nav__logo {
    margin: 0;
  }
}

.header .nav__icon-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: auto;
}

@media only screen and (max-width: 53em) {
  .header .nav__icon-box {
    margin: 0;
    margin-top: 5rem;
  }
}

.header .nav__icon {
  height: 4rem;
  fill: #ffffff;
  width: 8rem;
  margin-right: auto;
  -webkit-transition: all .2s;
  transition: all .2s;
}

.header .nav__icon:visited {
  fill: #cd77e6;
  outline: none;
}

.header .nav__icon:hover {
  fill: #232e3d;
  cursor: pointer;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  outline: none;
}

.header .nav__icon:active {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  fill: #673adc;
  outline: none;
}

.header__title {
  padding-left: 5rem;
  padding-top: 5rem;
}

@media only screen and (max-width: 53em) {
  .header__title {
    text-align: center;
    padding: 2rem;
  }
}

.header__dash {
  font-size: 7rem;
  color: #ffffff;
}

/**********************************************************
CYBERRISK *************************************************
***********************************************************/
.cyberRisk {
  grid-column: full-start / full-end;
}

.cyberRisk-panel {
  background-image: url("../img/section-cyberrisk.jpg");
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(20rem, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
  grid-gap: 5rem;
  padding: 5rem;
}

@media only screen and (max-width: 53em) {
  .cyberRisk-panel {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    padding: 0;
  }
}

.cyberRisk-panel__image {
  width: 90%;
  margin: auto;
}

@media only screen and (max-width: 53em) {
  .cyberRisk-panel__image {
    width: 50%;
    padding: 2rem;
  }
}

.cyberRisk-panel__dash {
  font-size: 5rem;
  color: #ffffff;
}

.cyberRisk-panel__content {
  color: #ffffff;
  background: rgba(0, 0, 0, 0.5);
  padding: 6rem;
  margin-top: -5rem;
}

@media only screen and (max-width: 53em) {
  .cyberRisk-panel__content {
    text-align: center;
  }
}

/**********************************************************
DIAMOND VALLEY ********************************************
***********************************************************/
.diamondValley {
  grid-column: full-start / full-end;
}

.diamondValley-panel {
  background-image: url("../img/section-diamondvalley.jpg");
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(20rem, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
  grid-gap: 5rem;
  padding: 5rem;
}

@media only screen and (max-width: 53em) {
  .diamondValley-panel {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    padding: 0;
  }
}

.diamondValley-panel__image {
  width: 90%;
  margin: auto;
}

@media only screen and (max-width: 53em) {
  .diamondValley-panel__image {
    width: 50%;
    padding: 2rem;
  }
}

.diamondValley-panel__dash {
  font-size: 5rem;
  color: #ffffff;
}

.diamondValley-panel__content {
  color: #ffffff;
  background: rgba(0, 0, 0, 0.5);
  padding: 6rem;
  margin-top: -5rem;
}

@media only screen and (max-width: 53em) {
  .diamondValley-panel__content {
    text-align: center;
  }
}

/**********************************************************
KEW PAEDIATRIC GROUP **************************************
***********************************************************/
.kpg {
  grid-column: full-start / full-end;
}

.kpg-panel {
  background-image: url("../img/section-kpg.jpg");
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(20rem, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
  grid-gap: 5rem;
  padding: 5rem;
}

@media only screen and (max-width: 53em) {
  .kpg-panel {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    padding: 0;
  }
}

.kpg-panel__image {
  width: 90%;
  margin: auto;
}

@media only screen and (max-width: 53em) {
  .kpg-panel__image {
    width: 50%;
    padding: 2rem;
  }
}

.kpg-panel__dash {
  font-size: 5rem;
  color: #ffffff;
}

.kpg-panel__content {
  color: #ffffff;
  background: rgba(0, 0, 0, 0.5);
  padding: 6rem;
  margin-top: -5rem;
}

@media only screen and (max-width: 53em) {
  .kpg-panel__content {
    text-align: center;
  }
}

/**********************************************************
LATROBE FINANCIAL *****************************************
***********************************************************/
.latrobe {
  grid-column: full-start / full-end;
}

.latrobe-panel {
  background-image: url("../img/section-latrobe.jpg");
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(20rem, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
  grid-gap: 5rem;
  padding: 5rem;
}

@media only screen and (max-width: 53em) {
  .latrobe-panel {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    padding: 0;
  }
}

.latrobe-panel__image {
  width: 90%;
  margin: auto;
}

@media only screen and (max-width: 53em) {
  .latrobe-panel__image {
    width: 50%;
    padding: 2rem;
  }
}

.latrobe-panel__dash {
  font-size: 5rem;
  color: #ffffff;
}

.latrobe-panel__content {
  color: #ffffff;
  background: rgba(0, 0, 0, 0.5);
  padding: 6rem;
  margin-top: -5rem;
}

@media only screen and (max-width: 53em) {
  .latrobe-panel__content {
    text-align: center;
  }
}

/**********************************************************
THE BRAND AGENCY ******************************************
***********************************************************/
.brandAgency {
  grid-column: full-start / full-end;
}

.brandAgency-panel {
  background-image: url("../img/section-brandagency.jpg");
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(20rem, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
  grid-gap: 5rem;
  padding: 5rem;
}

@media only screen and (max-width: 53em) {
  .brandAgency-panel {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    padding: 0;
  }
}

.brandAgency-panel__image {
  width: 90%;
  margin: auto;
}

@media only screen and (max-width: 53em) {
  .brandAgency-panel__image {
    width: 50%;
    padding: 2rem;
  }
}

.brandAgency-panel__dash {
  font-size: 5rem;
  color: #ffffff;
}

.brandAgency-panel__content {
  color: #ffffff;
  background: rgba(0, 0, 0, 0.5);
  padding: 6rem;
  margin-top: -5rem;
}

@media only screen and (max-width: 53em) {
  .brandAgency-panel__content {
    text-align: center;
  }
}

/**********************************************************
VEC *******************************************************
***********************************************************/
.vec {
  grid-column: full-start / full-end;
}

.vec-panel {
  background-image: url("../img/section-vec.jpg");
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(20rem, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
  grid-gap: 5rem;
  padding: 5rem;
}

@media only screen and (max-width: 53em) {
  .vec-panel {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    padding: 0;
  }
}

.vec-panel__image {
  width: 90%;
  margin: auto;
}

@media only screen and (max-width: 53em) {
  .vec-panel__image {
    width: 50%;
    padding: 2rem;
  }
}

.vec-panel__dash {
  font-size: 5rem;
  color: #ffffff;
}

.vec-panel__content {
  color: #ffffff;
  background: rgba(0, 0, 0, 0.5);
  padding: 6rem;
  margin-top: -5rem;
}

@media only screen and (max-width: 53em) {
  .vec-panel__content {
    text-align: center;
  }
}

.testimonial {
  grid-column: full-start / full-end;
}

.testimonial-panel {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(20rem, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
  grid-gap: 5rem;
  padding: 5rem;
  text-align: center;
}

@media only screen and (max-width: 800px) {
  .testimonial-panel {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    padding: 3rem 10rem;
  }
}
/*# sourceMappingURL=main.css.map */