:root {
  --primary: #4FC9FD;
  --primaryDarker: #0A78BE;
  --primaryDarker: #4FC9FD;
  --white: white;
  --black: black;
  --bodyColor: #FFFEFA;
  --textColor: #222;
  --textHover: #0A78BE;
  --textHover: #4FC9FD;
  --backgroundColor: #334155;
  --background: #FFFEFA;
  --background3: #3FD5F5;
  --backgroundHover: #0A78BE;
  --backgroundHover: #4FC9FD;
  --buttonHoverColor: #0A78BE;
  --buttonHoverColor: #4FC9FD;
  --button: var(--primaryDarker);
  --buttonHover: var(--buttonHoverColor);
  --boxShadow: 0px 0px 3px rgb(124, 124, 124);
  --boxShadowHover: 0px 0px 3px rgb(20, 20, 20);
  --border: 1px solid var(--shadowColor);
  --secondary: #6F8F7C;
  --secondary2: #7E9A8A;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  list-style: none;
  text-decoration: none;
}

html {
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%;
  background: #222;
}

body {
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  max-width: 1920px;
  margin: 0 auto;
  background-color: rgb(250, 250, 250);
}

a,
p,
li,
ul,
span,
div,
button {
  color: #222;
  line-height: 1.5;
  font-family: system-ui, "Segoe UI", "Trebuchet MS", Verdana, Arial, sans-serif;
  text-wrap: pretty;
}

h1,
h2,
h3 {
  line-height: 1.25;
  font-family: "Inter", system-ui, "Segoe UI", Helvetica, Arial, sans-serif;
}
h1 span,
h2 span,
h3 span {
  font-family: "Inter", system-ui, "Segoe UI", Helvetica, Arial, sans-serif;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

@media only screen and (min-width: 0px) {
  #overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.25) !important;
    cursor: pointer;
  }
  #overlay.active {
    display: block;
    z-index: 10;
  }
}
@media only screen and (min-width: 0px) and (min-width: 1000px) {
  #overlay.active {
    display: none;
  }
}
@media only screen and (min-width: 0px) {
  header {
    position: relative;
    background-color: var(--background);
    max-height: 110px;
    max-width: 1920px;
    margin: 0 auto;
    box-shadow: 0px 0px 3px rgb(127, 127, 127);
  }
  header .header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1600px;
    width: 98%;
    margin: 0 auto;
    position: relative;
    z-index: 50;
  }
  header .header-inner .logo {
    padding: 12px 5px;
  }
  header .header-inner .logo img {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    max-height: 90px;
    width: auto;
    -o-object-fit: contain;
       object-fit: contain;
    margin: 0;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
  }
}
@media only screen and (min-width: 0px) and (min-width: 1000px) and (max-width: 1150px) {
  header .header-inner .logo img {
    max-height: 75px;
  }
}
@media only screen and (min-width: 0px) and (min-width: 0px) and (max-width: 1000px) {
  header .header-inner .logo img {
    max-height: 75px;
  }
}
@media only screen and (min-width: 0px) and (min-width: 0px) and (max-width: 999px) {
  header .header-inner nav {
    width: 70%;
    height: 100%;
    z-index: 100;
  }
  header .header-inner nav #nav-inner {
    border-left: 7px solid var(--primary);
    position: fixed;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: var(--background);
    padding: 0;
    padding-bottom: 150px;
    height: 100dvh;
    max-width: 375px;
    min-width: 275px;
    /* START OFF SCREEN */
    transform: translateX(100%);
    pointer-events: none;
    transition: transform 0.3s ease;
  }
  header .header-inner nav #nav-inner li {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  header .header-inner nav #nav-inner li:hover {
    background: var(--background2);
  }
  header .header-inner nav #nav-inner li a {
    width: 100%;
    padding: 15px 20px;
    color: var(--textColor);
    text-align: center;
  }
  header .header-inner nav #nav-inner li a:hover {
    text-underline-offset: 4px;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-decoration-color: var(--textHover);
  }
  header .header-inner nav #nav-inner li .active {
    text-underline-offset: 4px;
    text-decoration: underline;
    color: var(--textColor);
    text-decoration-thickness: 2px;
    text-decoration-color: var(--textHover);
  }
  header .header-inner nav #nav-inner .dropdown {
    display: flex;
    flex-direction: column;
  }
  header .header-inner nav #nav-inner .dropdown ul {
    display: none;
  }
  header .header-inner nav #nav-inner .dropdown .arrow-down {
    display: none;
  }
  header .header-inner nav #nav-inner.active {
    /* SLIDE IN */
    transform: translateX(0);
    pointer-events: auto;
    background-image: url(../../images/index/corner1.webp);
    background-repeat: no-repeat;
    background-position: bottom right;
  }
}
@media only screen and (min-width: 0px) and (min-width: 1000px) {
  header .header-inner nav {
    justify-content: center;
    align-items: center;
    justify-self: center;
  }
}
@media only screen and (min-width: 0px) and (min-width: 1000px) and (min-width: 0px) and (max-width: 1200px) {
  header .header-inner nav {
    justify-content: flex-end;
  }
}
@media only screen and (min-width: 0px) and (min-width: 1000px) {
  header .header-inner nav #nav-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
  }
  header .header-inner nav #nav-inner .arrow-down {
    position: relative;
    top: 1.5px;
    width: 12px;
    margin-left: 2px;
  }
  header .header-inner nav #nav-inner li {
    height: 100%;
    padding: 35px clamp(10px, 1.25vw, 20px);
  }
}
@media only screen and (min-width: 0px) and (min-width: 1000px) and (min-width: 1000px) and (max-width: 1100px) {
  header .header-inner nav #nav-inner li {
    padding: 35px clamp(5px, 1.25vw, 5px);
  }
}
@media only screen and (min-width: 0px) and (min-width: 1000px) {
  header .header-inner nav #nav-inner li a {
    padding: 35px 3px;
  }
  header .header-inner nav #nav-inner li a:hover {
    text-underline-offset: 4px;
    text-decoration: underline;
    color: var(--textHover);
    text-decoration-thickness: 2px;
  }
  header .header-inner nav #nav-inner li .active {
    text-underline-offset: 4px;
    text-decoration: underline;
    text-decoration-color: var(--textHover);
    text-decoration-thickness: 2px;
  }
  header .header-inner nav #nav-inner .dropdown a {
    padding: 35px 0 35px 3px;
  }
  header .header-inner nav #nav-inner .dropdown ul {
    display: none;
  }
  header .header-inner nav #nav-inner .dropdown:hover ul {
    position: absolute;
    z-index: 1;
    display: block;
    padding: 0;
    background-color: var(--background);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 35.5px;
    margin-left: -100px;
  }
  header .header-inner nav #nav-inner .dropdown:hover ul li {
    padding: 0 0px 0 15px;
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    border-bottom: 1px solid rgb(200, 200, 200);
  }
  header .header-inner nav #nav-inner .dropdown:hover ul li img {
    max-width: 35px;
    margin-right: 5px;
  }
  header .header-inner nav #nav-inner .dropdown:hover ul li a {
    width: 100%;
    padding: 25px 20px 25px 10px;
    line-height: 1;
  }
  header .header-inner nav #nav-inner .dropdown:hover ul li:hover {
    background: var(--background);
    background: white;
  }
  header .header-inner nav #nav-inner .dropdown:hover ul li:hover a {
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: var(--background3);
  }
  header .header-inner nav #nav-inner .dropdown:hover .arrow-down {
    content: url("../../images/global/arrow-color.png");
  }
  header .header-inner nav #nav-inner .dropdown:hover {
    color: var(--textHover);
    text-underline-offset: 4px;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    cursor: pointer;
  }
}
@media only screen and (min-width: 0px) {
  header .header-inner .secondary {
    display: flex;
    flex-direction: row;
    min-width: 250px;
    width: clamp(50px, 14vw, 290px);
    justify-content: flex-end;
  }
  header .header-inner .secondary .cta {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  header .header-inner .secondary .cta a {
    border-radius: 27.5px;
    box-shadow: var(--boxShadow);
    border: 1px solid var(--primary);
    background: var(--bodyColor);
    background: var(--button);
    background: var(--background2);
    height: 50px;
    padding: 25px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.2s;
  }
  header .header-inner .secondary .cta a:hover {
    transition: 0.2s;
    box-shadow: 0px 0px 3px black;
    background: var(--buttonHover);
  }
  header .header-inner .secondary .instagram {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 15px 20px;
    transition: 0.2s;
    width: -moz-fit-content;
    width: fit-content;
  }
  header .header-inner .secondary .instagram p {
    margin-right: 10px;
  }
}
@media only screen and (min-width: 0px) and (min-width: 0px) and (max-width: 1500px) {
  header .header-inner .secondary .instagram p {
    display: none;
  }
}
@media only screen and (min-width: 0px) {
  header .header-inner .secondary .instagram p:hover {
    color: var(--textHover);
  }
  header .header-inner .secondary .instagram img {
    max-width: 36px;
    transition: 0.2s;
  }
  header .header-inner .secondary .instagram img:hover {
    filter: drop-shadow(1px 1px 1px var(--textColor));
    transform: scale(1.05);
    transition: 0.2s;
  }
}
@media only screen and (min-width: 0px) and (min-width: 0px) and (max-width: 1250px) {
  header .header-inner .secondary {
    display: none;
    min-width: 0px;
    width: 0px;
  }
  header .header-inner .secondary .cta,
  header .header-inner .secondary .instagram {
    display: none;
  }
}
@media only screen and (min-width: 0px) and (min-width: 0px) and (max-width: 999px) {
  header .header-inner #mobile-box {
    position: relative;
    display: block;
    margin-right: 15px;
    z-index: 100;
    box-shadow: var(--boxShadow);
    background: var(--background2);
    border-radius: 5px;
    width: 35px;
    height: 35px;
    cursor: pointer;
    transition: 0.3s;
  }
  header .header-inner #mobile-box:hover {
    box-shadow: var(--boxShadowHover);
  }
  header .header-inner #mobile-box #hamburger {
    position: relative;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  header .header-inner #mobile-box #hamburger .line {
    position: absolute;
    height: 3px;
    width: 22px;
    border-radius: 2px;
    background: #222;
    left: 50%;
    transform: translateX(-50%);
    transition: 0.2s;
  }
  header .header-inner #mobile-box #hamburger .line1 {
    top: 10px;
  }
  header .header-inner #mobile-box #hamburger .line2 {
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
  }
  header .header-inner #mobile-box #hamburger .line3 {
    bottom: 10px;
  }
  header .header-inner #mobile-box.active {
    position: fixed;
    top: 26px;
    right: 5px;
    transform: rotate(180deg);
  }
  header .header-inner #mobile-box.active #hamburger .line2 {
    opacity: 0;
  }
  header .header-inner #mobile-box.active #hamburger .line1 {
    top: 50%;
    transform: translateX(-50%) translateY(-50%) rotate(45deg);
  }
  header .header-inner #mobile-box.active #hamburger .line3 {
    bottom: auto;
    top: 50%;
    transform: translateX(-50%) translateY(-50%) rotate(-45deg);
  }
  header .header-inner .mobile-logo {
    max-width: 300px;
    margin-top: 125px;
    margin-bottom: 15px;
    padding: 15px 0 10px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  header .header-inner .mobile-logo img {
    width: 85%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
  }
}
@media only screen and (min-width: 0px) and (min-width: 1000px) {
  header .header-inner #mobile-box,
  header .header-inner .mobile-logo {
    display: none;
  }
}
@media (min-width: 0px) {
  header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 60;
    transform: translateY(0);
    transition: none;
    will-change: transform;
  }
  header.can-animate {
    transition: transform 0.25s ease;
  }
  header.is-hidden {
    transform: translateY(-110%);
  }
  header.is-pinned {
    transform: translateY(0);
  }
  body {
    padding-top: 94px;
  }
}
@media only screen and (min-width: 0px) and (max-width: 1000px) {
  body {
    padding-top: 84px;
  }
}
.line-bar {
  background-color: var(--background3);
  height: 10px;
}

#hero-page {
  position: relative;
  height: 300px;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: none;
}
#hero-page .hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}
#hero-page .hero-inner {
  width: 100%;
  max-height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
#hero-page .hero-inner .hero-text {
  position: absolute;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
#hero-page .hero-inner .hero-text h1 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  color: var(--white);
  text-shadow: 1px 1px 3px black;
}

@media only screen and (min-width: 0px) {
  .content {
    padding: 75px 0;
  }
}
@media only screen and (min-width: 0px) and (min-width: 0px) and (max-width: 1000px) {
  .content {
    padding: 50px 0;
  }
}
@media only screen and (min-width: 0px) {
  .content .content-inner {
    max-width: 1400px;
    width: 90%;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
}
@media only screen and (min-width: 0px) and (min-width: 0px) and (max-width: 1000px) {
  .content .content-inner {
    display: flex;
    flex-direction: column;
  }
}
@media only screen and (min-width: 0px) {
  .content .content-inner .content-image {
    width: 100%;
    max-width: 500px;
  }
}
@media only screen and (min-width: 0px) and (min-width: 0px) and (max-width: 1000px) {
  .content .content-inner .content-image {
    max-width: 250px;
  }
}
@media only screen and (min-width: 0px) {
  .content .content-inner .content-image img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
  }
  .content .content-inner .content-text h1 {
    margin-bottom: 1rem;
  }
  .content .content-inner .content-text a {
    transition: 0.3s;
  }
  .content .content-inner .content-text a:hover {
    transition: 0.3s;
    color: var(--primaryDarker);
  }
  .content .content-inner .content-text p {
    max-width: 650px;
    margin-bottom: 25px;
  }
  .content .content-inner .content-text h3 {
    margin-top: 25px;
    margin-bottom: 10px;
  }
  .content .content-inner .content-text ul {
    margin: 10px 0 25px;
  }
  .content .content-inner .content-text ul li {
    font-size: 14px;
    list-style-type: disc;
    margin-left: 50px;
  }
}
@media only screen and (min-width: 0px) {
  footer {
    background: var(--background);
    background-image: url("../../images/index/corner1.webp");
    background-repeat: no-repeat;
    background-size: contain;
    background-size: 650px;
    background-position: bottom right;
    padding-top: 75px;
    padding-bottom: 25px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    margin: 0 auto;
  }
  footer .footer-inner {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 75px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 50px;
  }
}
@media only screen and (min-width: 0px) and (min-width: 0px) and (max-width: 1000px) {
  footer .footer-inner {
    display: flex;
    flex-direction: column;
    gap: 25px;
  }
}
@media only screen and (min-width: 0px) {
  footer .footer-inner .footer-link {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 200px;
  }
}
@media only screen and (min-width: 0px) and (min-width: 0px) and (max-width: 1000px) {
  footer .footer-inner .footer-link {
    display: flex;
    flex-direction: column;
    gap: 25px;
  }
}
@media only screen and (min-width: 0px) {
  footer .footer-inner .footer-link h2 {
    margin-bottom: 10px;
  }
  footer .footer-inner .footer-link ul li {
    margin: 5px 0;
  }
  footer .footer-inner .footer-link ul li a {
    padding: 10px 0;
    margin-bottom: 15px;
  }
  footer .footer-inner .footer-link ul li a:hover {
    color: var(--textHover);
  }
  footer .footer-inner .footer-link a:hover {
    color: var(--textHover);
  }
  footer .footer-inner .footer-link .active {
    -webkit-text-decoration: 2px underline var(--background3);
            text-decoration: 2px underline var(--background3);
    text-underline-offset: 4px;
  }
  footer .footer-inner .footer-brand {
    position: relative;
    top: -20px;
  }
  footer .footer-inner .footer-brand .logo {
    max-width: 250px;
    margin-bottom: 15px;
    transition: 0.2s;
  }
  footer .footer-inner .footer-brand .logo:hover {
    transition: 0.2s;
    filter: brightness(1.125);
  }
  footer .footer-inner .footer-brand .footer-text {
    max-width: 300px;
  }
  footer .footer-inner .footer-brand .instagram {
    margin-top: 75px;
    display: block;
    display: flex;
    justify-content: center;
    width: -moz-fit-content;
    width: fit-content;
  }
  footer .footer-inner .footer-brand .instagram img {
    transition: 0.3s;
  }
  footer .footer-inner .footer-brand .instagram img:hover {
    filter: drop-shadow(1px 1px 1px var(--textColor));
    transform: scale(1.05);
    transition: 0.3s;
  }
  footer .footer-inner .footer-contact .service-location {
    max-width: 300px;
  }
  footer .footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    max-width: 1500px;
    margin: 0 auto;
    width: 90%;
  }
  footer .footer-bottom .footer-bottom-inner {
    color: #999;
    font-size: 13px;
    padding-top: 25px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 50px;
  }
  footer .footer-bottom .footer-bottom-inner p,
  footer .footer-bottom .footer-bottom-inner a,
  footer .footer-bottom .footer-bottom-inner span {
    color: #555;
  }
  footer .footer-bottom .footer-bottom-inner a {
    padding: 15px 0;
  }
  footer .footer-bottom .footer-bottom-inner p:hover {
    color: #222;
  }
  footer .footer-bottom .footer-bottom-inner p:hover span {
    color: #222;
  }
  footer .footer-bottom .footer-bottom-inner .artshawebdesign span {
    border: 1px solid transparent;
  }
  footer .footer-bottom .footer-bottom-inner .artshawebdesign:hover a {
    color: #222;
  }
  footer .footer-bottom .footer-bottom-inner .artshawebdesign:hover span {
    color: #4E8E72;
  }
  footer .footer-bottom .footer-bottom-inner .legalAndCompliance:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
  }
  footer .footer-bottom .footer-bottom-inner .legalAndCompliance:hover a {
    color: #222;
  }
}
@media only screen and (min-width: 0px) and (min-width: 0px) and (max-width: 1000px) {
  footer .footer-bottom .footer-bottom-inner {
    display: flex;
    flex-direction: column;
    gap: 0px;
  }
}
@media only screen and (min-width: 0px) {
  .contact {
    padding: 75px 0;
    background: #f9f9f9;
  }
  .contact .contact-inner {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
  }
  .contact .contact-header {
    text-align: center;
    margin-bottom: 50px;
  }
  .contact .contact-header .topper {
    color: var(--primary);
    font-weight: 600;
    font-size: 1.25rem;
  }
  .contact .contact-header h2 {
    margin-bottom: 15px;
  }
  .contact .contact-header p {
    max-width: 600px;
    margin: 0 auto;
  }
  .contact .contact-wrapper {
    display: flex;
    gap: 50px;
  }
}
@media only screen and (min-width: 0px) and (max-width: 800px) {
  .contact .contact-wrapper {
    flex-direction: column;
  }
}
@media only screen and (min-width: 0px) {
  .contact form {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: white;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.1);
    padding: 30px;
  }
  .contact form .form-group {
    display: flex;
    flex-direction: column;
  }
  .contact form .form-group label {
    margin-bottom: 5px;
    font-weight: 500;
  }
  .contact form .form-group input,
  .contact form .form-group textarea {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
  }
  .contact form .form-group input:focus,
  .contact form .form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
  }
  .contact form button {
    margin-top: 10px;
    padding: 18px;
    border: none;
    border-radius: 100vw;
    background: var(--primary);
    color: black;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
  }
  .contact form button:hover {
    background: rgb(129.4269662921, 216.4719101124, 253.5730337079);
  }
  .contact .contact-info {
    flex: 1;
    background: white;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.1);
  }
  .contact .contact-info h3 {
    margin-bottom: 20px;
  }
  .contact .contact-info p {
    margin-bottom: 20px;
  }
  .contact .contact-info a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 4px;
  }
  .contact .contact-info a:hover {
    color: rgb(129.4269662921, 216.4719101124, 253.5730337079);
  }
}/*# sourceMappingURL=contact.css.map */