/*!*************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/scss/site.scss ***!
  \*************************************************************************************************************/
@import url(https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Proza+Libre:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500;1,600;1,700;1,800&display=swap);
/*!*****************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/scss/site.scss (1) ***!
  \*****************************************************************************************************************/
/* imports */
:root {
  --lightblue: #71b4cf;
  --seafoamgreen: #4095a0;
  --oceanblue: #2f7b92;
  --ctared: #ff4400;
}

/* boilerplate styling */
html {
  box-sizing: border-box;
  /* scroll-behavior: smooth; */
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

body {
  padding: 0;
  margin: 0;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Proza Libre", sans-serif;
}

li,
p,
div,
ul,
ol,
nav,
form {
  font-family: "Lato", sans-serif;
}

.scroll-lock {
  overflow: hidden;
}

/* header/navigation styling */
header {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  padding: 16px 18px;
  z-index: 99;
}
header .header__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .header__content .header-left {
  display: flex;
  width: 100%;
  color: white;
  align-items: center;
}
header .header__content .header-left > img {
  height: 48px;
  width: 48px;
  border-radius: 6px;
  box-shadow: 1px 1px 6px 2px rgba(0, 0, 0, 0.1);
  margin-right: 12px;
}
header .header__content .header-left > .logo__text {
  text-shadow: 1px 1px 2px black;
  font-size: 1.5em;
  font-weight: bold;
  font-family: "Proza Libre", sans-serif;
  margin: 0;
}
@media (max-width: 425px) {
  header .header__content .header-left > .logo__text {
    display: none;
  }
}
header .header__content .header-right {
  display: flex;
  width: 100%;
  justify-content: flex-end;
  align-items: center;
}
@media (max-width: 768px) {
  header .header__content .header-right {
    height: 100vh;
    width: 100%;
    position: absolute;
    top: 0;
    right: -101vw;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    padding: 0;
    opacity: 0;
    background: var(--seafoamgreen);
    transition: right 0.5s ease-out, opacity 0.5s ease-out;
  }
}
header .header__content .header-right .link {
  margin: 0 12px;
  color: white;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px 18px;
}
header .header__content .header-right .link:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  header .header__content .header-right .link {
    width: 100%;
    height: 100%;
    font-size: 5vw;
  }
  header .header__content .header-right .link:hover {
    background: rgba(0, 0, 0, 0.1);
  }
}
header .header__content .header-right .contact-button {
  text-shadow: none;
  background-color: var(--seafoamgreen);
  box-shadow: 1px 1px 6px 2px rgba(0, 0, 0, 0.2);
  border-radius: 2px;
}
@media (max-width: 768px) {
  header .header__content .header-right .contact-button {
    margin-bottom: 0;
    box-shadow: none;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  }
}
@media (max-width: 768px) {
  header .header__content .navButton {
    display: flex;
    width: 54px;
    border-radius: 4px;
    flex-direction: column;
    justify-content: flex-start;
    gap: 6px;
    padding: 10px;
  }
  header .header__content .navButton:hover {
    background: rgba(255, 255, 255, 0.25);
    cursor: pointer;
  }
  header .header__content .navButton > .line {
    height: 4px;
    width: 100%;
    border-radius: 2px;
    background: white;
  }
}
header .header__content .exitButton {
  height: 48px;
}
@media (max-width: 768px) {
  header .header__content .exitButton {
    position: absolute;
    top: 12px;
    right: 30px;
  }
  header .header__content .exitButton * {
    box-shadow: 1px 1px 6px 2px rgba(0, 0, 0, 0.1);
  }
  header .header__content .exitButton .line {
    width: 50%;
  }
  header .header__content .exitButton > .line1 {
    transform: rotate(45deg);
    position: absolute;
    top: 22px;
    left: 25%;
  }
  header .header__content .exitButton > .line2 {
    transform: rotate(-45deg);
    position: absolute;
    top: 22px;
    right: 25%;
  }
}
header.bg--show {
  background-color: var(--oceanblue);
}

/* main contents styling */
#main {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

section,
header {
  width: 100%;
}

@media (min-width: 1441px) {
  [class*=__content] {
    padding-left: calc((100vw - 1440px) / 2);
    padding-right: calc((100vw - 1440px) / 2);
  }
}

/* hero section */
#top {
  position: relative;
  background: linear-gradient(rgba(47, 123, 146, 0) 70%, rgb(47, 123, 146)), url(88a7580395d470754bab.jpg) center center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 90vh;
}
#top .backdrop-filter {
  background-color: rgba(255, 255, 255, 0.1);
  position: absolute;
  height: 100%;
  width: 100%;
  backdrop-filter: blur(0.07rem);
}
#top * {
  color: white;
  text-shadow: 0px 0px 1em black, 0 0 1em rgba(0, 0, 0, 0.1);
  margin: 0;
}
#top .top__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#top h1 {
  font-size: 5em;
  text-align: center;
}
@media (max-width: 975px) {
  #top h1 {
    font-size: 4em;
  }
}
@media (max-width: 768px) {
  #top h1 {
    font: size 3.25em;
  }
}
@media (max-width: 576px) {
  #top h1 {
    font-size: 8vw;
  }
}
@media (max-width: 425px) {
  #top h1 {
    font-size: 2em;
  }
}
#top .subheadline {
  margin-top: 12px;
  font-size: 2em;
  background-color: white;
  color: black;
  text-shadow: none;
  padding: 0 12px;
  font-family: "Proza Libre", sans-serif;
  font-weight: bold;
}
@media (max-width: 975px) {
  #top .subheadline {
    font-size: 1.75em;
  }
}
@media (max-width: 768px) {
  #top .subheadline {
    font-size: 1.5em;
  }
}
@media (max-width: 576px) {
  #top .subheadline {
    font-size: 4vw;
  }
}

/* about section */
#about {
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(f1da4478ef58898e920b.jpg) center center;
  background-size: cover;
  overflow: hidden;
  min-height: 70vh;
  height: fit-content;
  padding-right: 12px;
  padding-top: 72px;
  padding-bottom: 0;
  color: white;
  padding-left: 54px;
  z-index: 2;
}
@media (max-width: 975px) {
  #about {
    color: black;
    height: fit-content;
    background: white;
    padding: 0;
  }
}
#about .about__content {
  height: fit-content;
  overflow: hidden;
  padding-bottom: 0;
  color: white;
  z-index: 2;
}
@media (max-width: 975px) {
  #about .about__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: black;
    height: fit-content;
    background: white;
    padding: 0;
  }
}
#about img {
  position: relative;
  float: right;
  bottom: -5vh;
  height: calc(70vh - 72px);
  -webkit-filter: drop-shadow(5px 5px 5px #222);
  filter: drop-shadow(5px 5px 5px #222);
  shape-outside: url(9e9d129d9e1026e3d285.png);
  shape-image-threshold: 0;
  shape-margin: 2.5%;
}
@media (max-width: 975px) {
  #about img {
    display: none;
  }
}
#about h2 {
  font-size: 3em;
  margin-bottom: 24px;
  text-shadow: 0 0 24px rgba(0, 0, 0, 0.5);
}
@media (max-width: 1265px) {
  #about h2 {
    font-size: 2.5rem;
  }
}
@media (max-width: 1024px) {
  #about h2 {
    font-size: 2rem;
  }
}
@media (max-width: 975px) {
  #about h2 {
    text-shadow: none;
    font-size: 3em;
  }
}
@media (max-width: 425px) {
  #about h2 {
    font-size: 10vw;
  }
}
#about p {
  position: relative;
  font-size: 1.25rem;
  text-shadow: 0 0 24px rgba(0, 0, 0, 0.5);
  line-height: 1.25;
  z-index: 80;
}
@media (max-width: 975px) {
  #about p {
    padding: 0 10%;
    text-shadow: none;
    font-size: 1.25rem;
  }
}
#about .mobile-image-container {
  display: none;
}
@media (max-width: 975px) {
  #about .mobile-image-container {
    position: relative;
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    height: 40vh;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(f1da4478ef58898e920b.jpg) center center;
    background-size: cover;
    overflow: hidden;
  }
  #about .mobile-image-container > img {
    display: block;
    position: absolute;
    bottom: -24px;
    height: 100%;
  }
}

/* services section */
#services {
  width: 100%;
  position: relative;
}
#services hr {
  position: relative;
  width: clamp(100px, 25vw, 500px);
  top: -25px;
  opacity: 0.5;
  height: 1px;
  display: none;
}
@media (max-width: 975px) {
  #services hr {
    display: block;
  }
}
#services .services__content {
  flex-direction: column;
  display: flex;
  justify-content: center;
  align-items: center;
}
#services .services__content > .services__title {
  font-size: 3em;
  margin-top: 0;
}
@media (max-width: 576px) {
  #services .services__content > .services__title {
    font-size: 8vw;
  }
}
#services .services__content .services__card-container {
  display: flex;
  width: 100%;
  height: 100%;
  /* min-height: fit-content; */
}
@media (max-width: 768px) {
  #services .services__content .services__card-container {
    flex-direction: column;
  }
}
@media (min-width: 1441px) {
  #services .services__content .services__card-container {
    gap: 24px;
  }
}
#services .services__content .service-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 36px;
  color: white;
  margin: 0 1px;
  justify-content: flex-start;
  height: auto;
}
@media (max-width: 768px) {
  #services .services__content .service-card {
    margin-bottom: 1%;
    align-items: flex-start;
    padding-left: 10%;
    padding-right: 10%;
  }
}
@media (min-width: 1441px) {
  #services .services__content .service-card {
    border-radius: 6px;
  }
}
#services .services__content .service-card > img {
  height: 54px;
  width: 54px;
}
@media (max-width: 768px) {
  #services .services__content .service-card > img {
    align-self: center;
  }
}
#services .services__content .service-card > h3 {
  margin-bottom: 54px;
  text-align: center;
}
@media (max-width: 768px) {
  #services .services__content .service-card > h3 {
    align-self: center;
  }
}
#services .services__content .bc {
  background: var(--seafoamgreen);
}
#services .services__content .g {
  background: var(--oceanblue);
  margin-right: 0;
}
@media (max-width: 768px) {
  #services .services__content .g {
    margin-bottom: 0;
  }
}
#services .services__content .service-list-item {
  margin-bottom: 5vh;
  font-size: 18px;
  line-height: 1.5;
}

/* contact section */
#contact {
  background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), url(88a7580395d470754bab.jpg) center center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  min-height: 87vh;
  position: relative;
  overflow: hidden;
  height: fit-content;
  padding-top: 72px;
}
@media (max-width: 768px) {
  #contact {
    padding-top: 0;
    height: fit-content;
    justify-content: flex-start;
    min-height: 0;
  }
}
#contact .backdrop-filter {
  position: absolute;
  top: 0;
  z-index: 1;
  width: 100vw;
  height: 100%;
  backdrop-filter: blur(10px);
}
#contact #contact-form {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: fit-content;
  width: 75%;
  padding: 48px;
  background-color: rgba(255, 255, 255, 0.75);
  border-radius: 6px;
  margin: 12px 0;
  max-width: 672px;
}
@media (max-width: 768px) {
  #contact #contact-form {
    width: 100%;
    min-height: 100vh;
    height: fit-content;
    margin: 0;
    max-height: 1000px;
    border-radius: 0;
    padding-top: 96px;
    max-width: 768px;
  }
}
#contact #contact-form .contact__title,
#contact #contact-form button {
  align-self: center;
  margin-top: 0;
}
#contact #contact-form li {
  display: flex;
  flex-direction: column;
  width: 100%;
  color: rgba(0, 0, 0, 0.75);
  margin-bottom: 18px;
}
#contact #contact-form .required-field-message {
  margin-top: 0;
  margin-bottom: 12px;
  color: var(--ctared);
  font-size: 0.75em;
}
#contact #contact-form .email-phone {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: flex-start;
}
@media (max-width: 576px) {
  #contact #contact-form .email-phone {
    flex-direction: column;
  }
}
#contact #contact-form .email-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-right: 12px;
}
@media (max-width: 576px) {
  #contact #contact-form .email-container {
    margin-bottom: inherit;
  }
}
#contact #contact-form .phone-container {
  display: flex;
  flex-direction: column;
}
#contact #contact-form #phone-inputs {
  display: flex;
  flex-direction: row;
}
#contact #contact-form .contact-input {
  height: 2.5em;
  border: none;
  border-bottom: 2px rgba(0, 0, 0, 0.5) solid;
  background: transparent;
  padding: 0 6px;
  margin-top: 6px;
}
#contact #contact-form .contact-input:focus {
  outline: none;
  border-bottom: 3px solid var(--seafoamgreen);
}
#contact #contact-form .contact-input:focus ~ label {
  color: var(--seafoamgreen);
}
#contact #contact-form .contact-label #email {
  margin-right: 24px;
}
#contact #contact-form .textarea {
  min-height: 5em;
  resize: none;
}
#contact #contact-form #phone-inputs > .contact-input {
  text-align: center;
  margin-left: 6px;
  margin-right: 6px;
}
#contact #contact-form #phone-label > ::-webkit-input-placeholder {
  text-align: center;
}
#contact #contact-form input:-webkit-autofill,
#contact #contact-form input:-webkit-autofill:hover,
#contact #contact-form input:-webkit-autofill:focus,
#contact #contact-form input:-webkit-autofill:active {
  transition: background-color 5000s ease-in-out 0s;
}
#contact #contact-form #phone-label > :-moz-placeholder {
  text-align: center;
}
#contact #contact-form #area,
#contact #contact-form #prefix {
  width: 4em;
}
#contact #contact-form #suffix {
  width: 5em;
}
#contact #contact-form button {
  padding: 12px 48px;
  border: none;
  background-color: var(--seafoamgreen);
  border-radius: 2px;
  color: white;
  font-size: 1em;
  font-family: "Lato", san-serif;
  font-weight: 300;
}
#contact #contact-form button:hover {
  cursor: pointer;
  box-shadow: 0px 0px 6px 2px rgba(0, 0, 0, 0.1);
}

footer {
  background-color: var(--seafoamgreen);
  padding: 0 12px;
  color: white;
  margin-top: -50px;
}
footer .footer__content {
  display: flex;
  align-content: center;
  justify-content: space-between;
}
@media (max-width: 425px) {
  footer .footer__content > p {
    font-size: clamp(12px, 3vw, 1rem);
  }
}

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