/*!***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[6].rules[0].oneOf[0].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[6].rules[0].oneOf[0].use[2]!./node_modules/resolve-url-loader/index.js??ruleSet[1].rules[6].rules[1].use[0]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[6].rules[1].use[1]!./src/assets/scss/styles.scss?ngGlobalStyle ***!
  \***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

:root {
  --clear: transparent;
  --white: #FFFFFF;
  --black: #000000;
  --white-op-25: rgba(255, 255, 255, 0.25);
  --black-op-25: rgba(0, 0, 0, 0.25);
  --dark-blue: #001A29;
  --dark-blue-variant: #02324E;
  --lite-blue: #385C70;
  --magenta: #D233A5;
  --aqua: #36FFFF;
  --orange: #FF6421;
  --grey-100: #ebebeb;
  --grey-200: #dbd8d8;
  --grey-300: #c7c6c6;
  --grey-400: #aeacac;
}

::selection {
  background: var(--magenta);
  color: var(--white);
}

.geologica, * {
  font-family: "Geologica", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-variation-settings: "slnt" 0, "CRSV" 0, "SHRP" 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--dark-blue);
}

p {
  color: var(--lite-blue);
}

form {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.label,
label {
  font-size: 16px;
  line-height: 18px;
  color: var(--dark-blue);
  font-weight: 300;
  margin-bottom: 5px;
}
.label span,
label span {
  color: var(--magenta);
}

input,
textarea {
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
  font-weight: 300;
  font-size: 24px;
  line-height: 26px;
  border: 1px solid var(--grey-200);
  border-radius: 10px;
  transition: all 75ms ease-in-out;
}
input:focus,
textarea:focus {
  border: 1px solid var(--grey-400);
  outline: none;
}

textarea {
  resize: none;
}

.error-message {
  font-size: 12px;
  line-height: 14px;
  font-weight: 500;
  color: var(--magenta);
  margin-top: 5px;
}

.field-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 15px;
}
.field-wrapper.row-wrapper {
  flex-direction: row;
}

.check-group {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  align-self: flex-start;
  margin: 5px 0;
  padding: 0;
  cursor: pointer;
}
.check-group input {
  position: absolute;
  pointer-events: none;
  opacity: 0;
  height: 0;
  width: 0;
}
.check-group input:focus-visible:checked + .checkbox, .check-group input:active:checked + .checkbox {
  background: var(--lite-blue);
}
.check-group input:focus-visible + .checkbox, .check-group input:active + .checkbox {
  background: var(--grey-100);
}
.check-group input:focus-visible + .checkbox span, .check-group input:active + .checkbox span {
  border-bottom: 2px solid var(--dark-blue);
  border-right: 2px solid var(--dark-blue);
}
.check-group input.required ~ .checkbox {
  border: 2px solid var(--magenta) !important;
}
.check-group input:checked ~ .checkbox {
  background: var(--dark-blue);
  border: 2px solid var(--dark-blue-variant);
}
.check-group input:checked ~ .checkbox span {
  border-bottom: 2px solid var(--white);
  border-right: 2px solid var(--white);
}
.check-group .checkbox {
  margin: 0 10px 0 0;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 24px;
  width: 24px;
  margin: 0;
  background: var(--grey-100);
  border: 2px solid var(--grey-200);
  border-radius: 3px;
  transition: all 75ms ease-in-out;
}
.check-group .checkbox span {
  display: block;
  height: 11px;
  width: 6px;
  background: var(--clear);
  background: transparent;
  border-bottom: 2px solid var(--clear);
  border-right: 2px solid var(--clear);
  transform: rotate(45deg);
  margin-top: -3px;
  transition: all 75ms ease-in-out;
}
.check-group .label {
  margin: 5px 0 0 8px;
}
.check-group:hover {
  outline: none;
}
.check-group:hover .checkbox {
  background: var(--grey-100);
}
.check-group:hover .checkbox span {
  border-bottom: 2px solid var(--dark-blue);
  border-right: 2px solid var(--dark-blue);
}

html,
body {
  width: 100%;
  background: var(--dark-blue);
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}

.page-banner {
  height: 420px;
}
.page-banner ::selection {
  background: var(--magenta);
  color: var(--white);
}
.page-banner .banner-container {
  height: 100%;
  padding: 20px 20px 100px;
  box-sizing: border-box;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
}
@media (min-width: 520px) {
  .page-banner .banner-container {
    padding: 20px 50px 100px;
  }
}
.page-banner h1 {
  font-size: 36px;
  line-height: 38px;
  margin-bottom: 5px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  -webkit-hyphens: auto;
          hyphens: auto;
  background-color: hsl(316, 63%, 51%);
  background-image: radial-gradient(at 83% 17%, hsl(180, 100%, 60%) 0px, transparent 50%), radial-gradient(at 49% 55%, hsl(316, 63%, 51%) 0px, transparent 50%), radial-gradient(at 0% 100%, hsl(18, 100%, 56%) 0px, transparent 50%), radial-gradient(at 90% 93%, hsl(241, 100%, 70%) 0px, transparent 50%), radial-gradient(at 0% 0%, hsl(316, 63%, 51%) 0px, transparent 50%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  word-break: break-word;
}
@media (min-width: 380px) {
  .page-banner h1 {
    font-size: 46px;
    line-height: 48px;
  }
}
@media (min-width: 1040px) {
  .page-banner h1 {
    font-size: 52px;
    line-height: 54px;
    margin-bottom: 10px;
  }
}
.page-banner h1::selection {
  -webkit-text-fill-color: var(--white);
  color: var(--white);
}
.page-banner p {
  font-size: 16px;
  line-height: 24px;
  color: var(--white);
  max-width: 1120px;
}
@media (min-width: 1040px) {
  .page-banner p {
    font-size: 20px;
    line-height: 28px;
  }
}

.page-content {
  background: var(--white);
  padding: 0;
}
.page-content .page-wrapper {
  height: 100%;
  padding: 50px 20px 75px;
  box-sizing: border-box;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
}
@media (min-width: 450px) {
  .page-content .page-wrapper {
    padding: 50px;
  }
}
@media (min-width: 720px) {
  .page-content .page-wrapper {
    padding: 100px 50px;
  }
}
.page-content .page-wrapper.column-wrapper {
  flex-direction: column;
}
.page-content .page-wrapper.service-wrapper {
  padding: 20px 15px;
}
@media (min-width: 520) {
  .page-content .page-wrapper.service-wrapper {
    padding: 50px;
  }
}
@media (min-width: 780px) {
  .page-content .page-wrapper.service-wrapper {
    padding: 100px 0px 100px 50px;
  }
}
.page-content .full-width-banner.dark-banner {
  background: var(--dark-blue);
}
.page-content .full-width-banner.magenta-banner {
  background: var(--magenta);
}

.sticky-bar {
  flex-shrink: 0;
  position: relative;
  width: 225px;
}
@media (max-width: 779px) {
  .sticky-bar {
    display: none;
  }
}
.sticky-bar .sticky-list {
  display: flex;
  flex-direction: column;
  width: 225px;
}
.sticky-bar .sticky-list.fixed {
  position: fixed;
  top: 50px;
}
.sticky-bar .sticky-list.absolute {
  position: absolute;
  top: inherit;
  bottom: 0;
}
.sticky-bar p {
  font-size: 16px;
  line-height: 18px;
  text-decoration: none;
  color: var(--dark-blue);
  cursor: pointer;
  padding: 8px 12px;
  background: var(--clear);
  margin-bottom: 5px;
}
.sticky-bar p.active {
  border-radius: 5px;
  background: linear-gradient(90deg, hsl(18, 100%, 56%) 0%, hsl(316, 63%, 51%) 31%, hsl(180, 100%, 60%) 100%);
  background-size: 150%;
  color: var(--white);
}

.info-column {
  width: 100%;
}
@media (min-width: 780px) {
  .info-column {
    margin: 0 0 0 100px;
  }
}

.info-list {
  display: flex;
  flex-direction: column;
}

.info-item {
  display: flex;
  flex-direction: row;
  padding: 25px 20px 75px 0;
  border-bottom: 1px solid var(--grey-100);
  scroll-margin-top: 40px;
}
@media (min-width: 520px) {
  .info-item {
    padding: 25px 50px 100px 0;
  }
}
@media (min-width: 1040px) {
  .info-item {
    padding: 25px 50px 150px 0;
  }
}
.info-item:last-child {
  border-bottom: 0px solid var(--grey-100);
}
.info-item.active .item-number {
  color: var(--magenta);
}
.info-item .item-number {
  font-size: 52px;
  line-height: 52px;
  font-weight: 900;
  color: var(--dark-blue);
  text-align: right;
  width: 100px;
  transition: all 125ms ease-in-out;
}
.info-item .item-content {
  display: flex;
  flex-direction: column;
  margin: 0 0 0 20px;
}
.info-item h2 {
  font-size: 26px;
  line-height: 32px;
  font-weight: 300;
  text-transform: uppercase;
  margin-bottom: 5px;
}
@media (min-width: 1040px) {
  .info-item h2 {
    font-size: 32px;
    line-height: 38px;
  }
}
.info-item p {
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
}

.contact-cta {
  height: 100%;
  padding: 50px 20px 100px;
  box-sizing: border-box;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--grey-100);
  border-bottom: 0px solid var(--grey-100);
}
@media (min-width: 520px) {
  .contact-cta {
    padding: 75px 50px;
  }
}
@media (min-width: 1040px) {
  .contact-cta {
    padding: 100px 50px;
  }
}
.contact-cta p {
  font-size: 16px;
  line-height: 22px;
  text-align: center;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
}
@media (min-width: 720px) {
  .contact-cta p {
    font-size: 20px;
    line-height: 30px;
  }
}
.contact-cta .button,
.contact-cta button {
  font-size: 22px;
  line-height: 28px;
  width: 180px;
  border-radius: 200px;
  padding: 12px 16px;
  margin: 25px auto 0;
}
@media (min-width: 520px) {
  .contact-cta .button,
  .contact-cta button {
    font-size: 32px;
    line-height: 38px;
    width: 260px;
    border-radius: 200px;
    padding: 25px 30px;
  }
}
@media (min-width: 720px) {
  .contact-cta .button,
  .contact-cta button {
    font-size: 44px;
    line-height: 50px;
    width: 370px;
    border-radius: 200px;
    padding: 35px 45px;
    margin: 50px auto 0;
  }
}
@media (min-width: 1080px) {
  .contact-cta .button,
  .contact-cta button {
    font-size: 58px;
    line-height: 70px;
    width: 520px;
    padding: 55px 70px;
  }
}

.button-outline {
  background: linear-gradient(#001a29, #001a29) padding-box, linear-gradient(90deg, hsl(18, 100%, 56%) 0%, hsl(316, 63%, 51%) 31%, hsl(180, 100%, 60%) 100%) border-box !important;
  border: 2px solid transparent !important;
}

.button,
button {
  font-family: "Geologica", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  font-size: 18px;
  line-height: 24px;
  text-align: center;
  text-decoration: none;
  color: var(--white);
  cursor: pointer;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  padding: 12px 20px;
  border-radius: 50px;
  position: relative;
  transition: box-shadow 75ms ease-in-out;
  -webkit-appearance: none !important;
  outline: none !important;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
  background: linear-gradient(90deg, hsl(18, 100%, 56%) 0%, hsl(316, 63%, 51%) 31%, hsl(180, 100%, 60%) 100%);
  background-size: 150%;
}
@media (hover: hover) {
  .button:hover,
  button:hover {
    color: var(--white);
    box-shadow: 0px 4px 5px rgba(0, 0, 0, 0.3);
  }
}
.button:disabled, .button.disabled,
button:disabled,
button.disabled {
  pointer-events: none !important;
  opacity: 0.5 !important;
}
.button svg,
button svg {
  height: 20px;
  width: 20px;
  margin-left: 10px;
  display: block;
  fill: var(--white);
}

.arrow-link {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  color: var(--white);
  font-size: 24px;
  line-height: 24px;
  font-weight: 700;
  padding: 5px 0;
  margin-top: 10px;
}
.arrow-link svg {
  height: 22px;
  width: 26px;
  fill: var(--white);
  margin: 3px 0 0 5px;
  transform: rotate(90deg);
}

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