@font-face {
  font-family: "NeueRegrade";
  src: url("/fonts/Neue Regrade Bold.otf"); }

:root {
  --container-max-width: 1200px; }

:root {
  --start-clr: #000;
  --end-clr: #fff;
  --almost-white: rgb(0, 0, 0);
  --almost-white2: #111;
  --primary-drk-mode: #03101a;
  --header-bg: #fff;
  --primary: #f9f9f9;
  --primary-drk: var(--primary);
  --primary-alt: #ffffff;
  --page-hdr-bg: #111543;
  --title-support-color: #D75555;
  --hero-gr-bg: rgba(255,255,255,.76);
  --button-clr: rgb(255, 255, 255);
  --button-bg: #1f4c9e;
  --card-bg: #fff;
  --card-shadow: rgba(255, 255, 255, 0);
  --portfolio-crd-bg: #f9f9f9;
  --review-crd-bg: #e7ebf0;
  --reviews-bg: #fff;
  --rating-clr: #ffbb00;
  --border-clr: #ffffff00;
  --border-clr-alt: darken(var(--border-clr), 50%);
  --contact-cnt-bg: var(--header-bg);
  --contact-bg: #dff3ff;
  --cloud-display: block;
  --cloud-fill: #f3faff;
  --engine-clr: #45494b;
  --flame-clr-1: rgb(226, 164, 156);
  --flame-clr-2: rgba(223, 235, 60, 0.705);
  --particle-clr: #ff660075;
  --icon-fill: var(--title-support-color);
  --service-card-shdw: #d7d7d7;
  --engine-display: flex;
  --ftr-color: #eee;
  --ftr-bg: #232121;
  --start-clr: #fff;
  --end-clr: #000;
  --logo-color: var(--button-bg); }

:root {
  --container-max-width: 1200px; }

:root {
  --start-clr: #000;
  --end-clr: #fff;
  --almost-white: rgb(0, 0, 0);
  --almost-white2: #111;
  --primary-drk-mode: #03101a;
  --header-bg: #fff;
  --primary: #f9f9f9;
  --primary-drk: var(--primary);
  --primary-alt: #ffffff;
  --page-hdr-bg: #111543;
  --title-support-color: #D75555;
  --hero-gr-bg: rgba(255,255,255,.76);
  --button-clr: rgb(255, 255, 255);
  --button-bg: #1f4c9e;
  --card-bg: #fff;
  --card-shadow: rgba(255, 255, 255, 0);
  --portfolio-crd-bg: #f9f9f9;
  --review-crd-bg: #e7ebf0;
  --reviews-bg: #fff;
  --rating-clr: #ffbb00;
  --border-clr: #ffffff00;
  --border-clr-alt: darken(var(--border-clr), 50%);
  --contact-cnt-bg: var(--header-bg);
  --contact-bg: #dff3ff;
  --cloud-display: block;
  --cloud-fill: #f3faff;
  --engine-clr: #45494b;
  --flame-clr-1: rgb(226, 164, 156);
  --flame-clr-2: rgba(223, 235, 60, 0.705);
  --particle-clr: #ff660075;
  --icon-fill: var(--title-support-color);
  --service-card-shdw: #d7d7d7;
  --engine-display: flex;
  --ftr-color: #eee;
  --ftr-bg: #232121;
  --start-clr: #fff;
  --end-clr: #000;
  --logo-color: var(--button-bg); }

* {
  box-sizing: border-box;
  font-family: "Inter", sans-serif; }

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0; }

input[type=number] {
  appearance: textfield; }

body {
  margin: 0;
  color: var(--almost-white); }
  body main {
    margin-top: 4rem; }

h2 {
  font-size: 1.8rem; }

li {
  list-style-type: none; }

ul {
  padding: 0; }

a {
  color: var(--almost-white);
  text-decoration: none; }

.hr-title-support {
  color: var(--title-support-color); }

.se-button-container {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 1rem;
  z-index: 9; }

.cta-text {
  color: var(--button-bg); }

.cta-button {
  background-color: var(--button-bg);
  position: relative;
  width: fit-content;
  text-decoration: none;
  padding: .8rem 1.5rem;
  color: var(--button-clr);
  font-weight: bold;
  border-radius: 2em;
  transition: scale .5s; }
  .cta-button:hover {
    scale: 1.04; }
    .cta-button:hover::before {
      content: "";
      position: absolute;
      height: 100%;
      width: 100%;
      left: 0;
      top: 0;
      border-radius: 2rem;
      opacity: .5;
      -webkit-box-shadow: 0px 0px 10px 0px var(--button-bg);
      -moz-box-shadow: 0px 0px 10px 0px var(--button-bg);
      box-shadow: 0px 0px 10px 0px var(--button-bg); }

.cta-se-button {
  background-color: #fff0;
  color: var(--button-bg);
  border: 1px solid var(--button-bg); }

section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center; }

.container {
  max-width: var(--container-max-width);
  padding: 1rem; }

@media only screen and (max-width: 799px) {
  .container {
    max-width: 600px;
    overflow: hidden; }
  body.cs-open {
    overflow: hidden; } }

#cs-navigation {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: var(--header-bg);
  border-bottom: var(--border-clr-alt) 1px solid;
  z-index: 10000;
  box-shadow: rgba(24, 59, 95, 0.2) 0px 8px 24px; }
  #cs-navigation .cs-container {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center; }
  #cs-navigation .cs-logo {
    margin: 0 auto 0 0;
    padding: 0;
    display: flex;
    align-items: center;
    z-index: 10; }
  #cs-navigation .cs-li-link {
    text-decoration: none;
    margin: 0;
    position: relative; }

.cs-button-solid {
  font-size: calc(16 / 16 * 1rem);
  font-weight: 700;
  line-height: clamp(2.875em, 5.5vw, 3.5em);
  text-align: center;
  text-decoration: none;
  min-width: calc(150 / 16 * 1rem);
  margin: 0;
  box-sizing: border-box;
  padding: 0 calc(24 / 16 * 1rem);
  background-color: #fff0;
  border-radius: calc(4 / 16 * 1rem);
  display: inline-block;
  position: relative;
  z-index: 1; }
  .cs-button-solid:before {
    content: "";
    width: 0%;
    height: 100%;
    background: var(--button-bg);
    opacity: 1;
    border-radius: calc(4 / 16 * 1rem);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: width 0.3s; }
  .cs-button-solid:hover {
    color: var(--button-clr); }
    .cs-button-solid:hover:before {
      width: 100%; }

@media only screen and (max-width: 799px) {
  #cs-navigation {
    padding: calc(12 / 16 * 1rem) calc(16 / 16 * 1rem); }
    #cs-navigation:before {
      content: "";
      width: 100%;
      height: 0vh;
      background: rgba(0, 0, 0, 0.6);
      opacity: 0;
      display: block;
      position: absolute;
      top: 100%;
      right: 0;
      z-index: -1100;
      transition: height 0.5s, opacity 0.5s;
      -webkit-backdrop-filter: blur(10px);
      backdrop-filter: blur(10px); }
    #cs-navigation.cs-active:before {
      height: 150vh;
      opacity: 1; }
    #cs-navigation.cs-active .cs-ul-wrapper {
      opacity: 1;
      transform: scaleY(1);
      transition-delay: 0.15s; }
      #cs-navigation.cs-active .cs-ul-wrapper ul {
        overflow: hidden; }
    #cs-navigation.cs-active .cs-li {
      opacity: 1;
      transform: translateY(0); }
    #cs-navigation .cs-logo {
      width: 40%;
      max-width: calc(146 / 16 * 1rem);
      height: 100%;
      /* prevents padding and border from affecting height and width */ }
    #cs-navigation .cs-toggle {
      /* 44px - 48px */
      width: clamp(2.75rem, 6vw, 3rem);
      height: clamp(2.75rem, 6vw, 3rem);
      margin: 0 0 0 auto;
      background-color: transparent;
      border: none;
      border-radius: calc(4 / 16 * 1rem);
      display: flex;
      justify-content: center;
      align-items: center; }
    #cs-navigation .cs-active .cs-line1 {
      top: 50%;
      transform: translate(-50%, -50%) rotate(225deg); }
    #cs-navigation .cs-active .cs-line2 {
      top: 50%;
      transform: translate(-50%, -50%) translateY(0) rotate(-225deg);
      transform-origin: center; }
    #cs-navigation .cs-active .cs-line3 {
      opacity: 0;
      bottom: 100%; }
    #cs-navigation .cs-box {
      /* 24px - 28px */
      width: clamp(1.5rem, 2vw, 1.75rem);
      /* 14px - 16px */
      height: clamp(0.875rem, 1.5vw, 1rem);
      position: relative; }
    #cs-navigation .cs-line {
      width: 100%;
      height: 2px;
      background-color: var(--almost-white);
      border-radius: 2px;
      position: absolute;
      left: 50%;
      transform: translateX(-50%); }
    #cs-navigation .cs-line1 {
      top: 0;
      transition: transform 0.5s, top 0.3s, left 0.3s;
      animation-duration: 0.7s;
      animation-timing-function: ease;
      animation-direction: normal;
      animation-fill-mode: forwards;
      transform-origin: center; }
    #cs-navigation .cs-line2 {
      top: 50%;
      transform: translateX(-50%) translateY(-50%);
      transition: top 0.3s, left 0.3s, transform 0.5s;
      animation-duration: 0.7s;
      animation-timing-function: ease;
      animation-direction: normal;
      animation-fill-mode: forwards; }
    #cs-navigation .cs-line3 {
      bottom: 0;
      transition: bottom 0.3s, opacity 0.3s; }
    #cs-navigation .cs-ul-wrapper {
      width: 100%;
      height: auto;
      padding-bottom: calc(48 / 20 * 1em);
      background-color: var(--primary-drk);
      box-shadow: inset rgba(0, 0, 0, 0.2) 0px 8px 24px;
      opacity: 0;
      position: absolute;
      top: 100%;
      left: 0;
      z-index: -1;
      overflow: hidden;
      transform: scaleY(0);
      transition: transform 0.4s, opacity 0.3s;
      transform-origin: top; }
    #cs-navigation .cs-ul {
      width: 100%;
      height: auto;
      max-height: 65vh;
      margin: 0;
      padding: calc(48 / 16 * 1rem) 0 0 0;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: center;
      gap: calc(20 / 16 * 1rem);
      overflow: scroll; }
    #cs-navigation .cs-li {
      text-align: center;
      width: 100%;
      margin-right: 0;
      opacity: 0;
      /* transition from these values */
      transform: translateY(-4.375rem);
      transition: transform 0.6s, opacity 0.9s; }
      #cs-navigation .cs-li:nth-of-type(1) {
        transition-delay: 0.05s; }
      #cs-navigation .cs-li:nth-of-type(2) {
        transition-delay: 0.1s; }
      #cs-navigation .cs-li:nth-of-type(3) {
        transition-delay: 0.15s; }
      #cs-navigation .cs-li:nth-of-type(4) {
        transition-delay: 0.2s; }
      #cs-navigation .cs-li:nth-of-type(5) {
        transition-delay: 0.25s; }
      #cs-navigation .cs-li:nth-of-type(6) {
        transition-delay: 0.3s; }
      #cs-navigation .cs-li:nth-of-type(7) {
        transition-delay: 0.35s; }
      #cs-navigation .cs-li:nth-of-type(8) {
        transition-delay: 0.4s; }
      #cs-navigation .cs-li:nth-of-type(9) {
        transition-delay: 0.45s; }
      #cs-navigation .cs-li:nth-of-type(10) {
        transition-delay: 0.5s; }
      #cs-navigation .cs-li:nth-of-type(11) {
        transition-delay: 0.55s; }
      #cs-navigation .cs-li:nth-of-type(12) {
        transition-delay: 0.6s; }
      #cs-navigation .cs-li:nth-of-type(13) {
        transition-delay: 0.65s; }
    #cs-navigation .cs-li-link {
      /* 16px - 24px */
      font-size: clamp(1rem, 2.5vw, 1.5rem);
      line-height: 1.2em;
      display: inline-block; }
      #cs-navigation .cs-li-link:before {
        /* active state underline */
        content: "";
        width: 100%;
        height: 1px;
        background: currentColor;
        opacity: 1;
        display: none;
        position: absolute;
        bottom: calc(-2 / 16 * 1rem);
        left: 0; }
      #cs-navigation .cs-li-link.cs-active:before {
        display: block; }
    #cs-navigation .cs-button-solid {
      position: fixed;
      bottom: 10px;
      right: 10px;
      border-radius: .5rem;
      background-color: var(--card-bg);
      border: 2px var(--border-clr) solid;
      -webkit-box-shadow: 0px 0px 20px 0px var(--card-shadow);
      -moz-box-shadow: 0px 0px 20px 0px var(--card-shadow);
      box-shadow: 0px 0px 20px 0px var(--card-shadow);
      color: var(--button-clr); }
      #cs-navigation .cs-button-solid:before {
        width: 100%; } }

@media only screen and (min-width: 800px) {
  #cs-navigation {
    padding: calc(8/16 * 1rem) calc(16 / 16 * 1rem); }
    #cs-navigation .cs-container {
      max-width: calc(1280 / 16 * 1rem);
      margin: auto;
      gap: calc(24 / 16 * 1rem); }
    #cs-navigation .cs-toggle {
      display: none; }
    #cs-navigation .cs-ul {
      width: 100%;
      margin: 0;
      padding: 0;
      display: flex;
      justify-content: flex-start;
      align-items: center;
      /* 20px - 36px */
      gap: clamp(1.25rem, 2.6vw, 2.25rem); }
    #cs-navigation .cs-li {
      flex: none; }
    #cs-navigation .cs-li-link {
      /* 14px - 16px */
      font-size: clamp(0.875rem, 1vw, 1rem);
      line-height: 1.5em;
      display: block; }
      #cs-navigation .cs-li-link:hover:before {
        width: 100%; }
      #cs-navigation .cs-li-link.cs-active:before {
        width: 100%; }
      #cs-navigation .cs-li-link:before {
        content: "";
        width: 0%;
        height: 2px;
        background: var(--title-support-color);
        opacity: 1;
        display: block;
        position: absolute;
        bottom: calc(0 / 16 * 1rem);
        left: 0;
        transition: width 0.3s; } }

#hero {
  display: block; }
  #hero .hero-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    padding: 0;
    z-index: 0; }
    #hero .hero-container .hero-picture {
      height: 200px; }
      #hero .hero-container .hero-picture img {
        display: block;
        height: 100%;
        width: 100%;
        object-fit: cover; }
    #hero .hero-container .hero-content {
      position: absolute;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      max-width: 40rem;
      width: 100%;
      margin: 0 1rem;
      bottom: 0; }
      #hero .hero-container .hero-content .hero-graphic {
        width: 100%; }
        #hero .hero-container .hero-content .hero-graphic path {
          fill: var(--hero-gr-bg); }
      #hero .hero-container .hero-content .hero-title {
        font-size: 4rem;
        width: 100%;
        text-align: center;
        background-color: var(--hero-gr-bg);
        color: var(--title-support-color);
        margin: 0; }

@media only screen and (max-width: 799px) {
  #hero {
    display: block; }
    #hero .hero-container {
      max-width: none; } }

#footer {
  position: relative;
  background-color: var(--ftr-bg);
  color: var(--ftr-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1; }
  #footer .ft-container {
    width: 100%;
    padding-top: 5rem; }
    #footer .ft-container .ft-content {
      display: flex;
      justify-content: space-between; }
      #footer .ft-container .ft-content .ft-info {
        max-width: 30%; }
        #footer .ft-container .ft-content .ft-info p {
          margin: 0 0 2rem 0;
          opacity: .8; }
      #footer .ft-container .ft-content .ft-links {
        display: flex;
        flex-wrap: wrap;
        gap: 2rem; }
        #footer .ft-container .ft-content .ft-links .ft-links-container .ft-expanded li, #footer .ft-container .ft-content .ft-links .ft-links-container .ft-contact li {
          padding-bottom: 1rem; }
          #footer .ft-container .ft-content .ft-links .ft-links-container .ft-expanded li a, #footer .ft-container .ft-content .ft-links .ft-links-container .ft-contact li a {
            color: var(--ftr-color); }
          #footer .ft-container .ft-content .ft-links .ft-links-container .ft-expanded li .ft-contact-li-contact, #footer .ft-container .ft-content .ft-links .ft-links-container .ft-contact li .ft-contact-li-contact {
            height: 2rem;
            display: flex;
            align-items: center;
            gap: 1rem; }
            #footer .ft-container .ft-content .ft-links .ft-links-container .ft-expanded li .ft-contact-li-contact svg, #footer .ft-container .ft-content .ft-links .ft-links-container .ft-contact li .ft-contact-li-contact svg {
              height: auto;
              width: 1.7rem; }
              #footer .ft-container .ft-content .ft-links .ft-links-container .ft-expanded li .ft-contact-li-contact svg path, #footer .ft-container .ft-content .ft-links .ft-links-container .ft-contact li .ft-contact-li-contact svg path {
                fill: var(--icon-fill); }
          #footer .ft-container .ft-content .ft-links .ft-links-container .ft-expanded li ul, #footer .ft-container .ft-content .ft-links .ft-links-container .ft-contact li ul {
            display: flex;
            gap: 1rem; }
            #footer .ft-container .ft-content .ft-links .ft-links-container .ft-expanded li ul li svg, #footer .ft-container .ft-content .ft-links .ft-links-container .ft-contact li ul li svg {
              height: 2rem;
              width: auto; }
              #footer .ft-container .ft-content .ft-links .ft-links-container .ft-expanded li ul li svg .main-path, #footer .ft-container .ft-content .ft-links .ft-links-container .ft-contact li ul li svg .main-path {
                fill: var(--icon-fill); }
    #footer .ft-container .ft-hr {
      margin: 2rem 0 0 0;
      color: var(--almost-white); }
    #footer .ft-container .ft-external {
      width: 100%;
      display: flex;
      justify-content: space-between; }
      #footer .ft-container .ft-external div p a {
        color: var(--ftr-color); }
      #footer .ft-container .ft-external ul {
        display: flex; }
        #footer .ft-container .ft-external ul li {
          padding: .3rem; }
          #footer .ft-container .ft-external ul li a {
            color: var(--ftr-color); }

@media only screen and (max-width: 799px) {
  #footer .ft-container .ft-content {
    flex-direction: column;
    gap: 2rem; }
    #footer .ft-container .ft-content .ft-info {
      max-width: 100%; }
  #footer .ft-container .ft-external {
    display: grid;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr; }
    #footer .ft-container .ft-external div:nth-child(1) {
      grid-column: 1 / -1; }
    #footer .ft-container .ft-external div:nth-child(2) {
      grid-column: 1; }
    #footer .ft-container .ft-external div:nth-child(3) {
      grid-column: 2; } }

body {
  background-color: var(--header-bg); }

#contact-us {
  z-index: 99;
  width: 100%;
  display: flex; }
  #contact-us .contact-us-container {
    width: 100%;
    display: flex;
    flex-direction: column; }
    #contact-us .contact-us-container .ct-form-top {
      display: flex;
      gap: 1rem;
      margin: 5rem 0; }
      #contact-us .contact-us-container .ct-form-top .ct-form-info .ct-info-li {
        margin-top: 1rem; }
        #contact-us .contact-us-container .ct-form-top .ct-form-info .ct-info-li .ct-card {
          display: grid;
          grid-template-columns: auto 1fr;
          grid-template-rows: auto auto;
          column-gap: 1rem; }
          #contact-us .contact-us-container .ct-form-top .ct-form-info .ct-info-li .ct-card svg {
            height: 3rem;
            align-self: center;
            grid-template-columns: 1/2;
            grid-row: 1/3; }
            #contact-us .contact-us-container .ct-form-top .ct-form-info .ct-info-li .ct-card svg path {
              fill: var(--icon-fill); }
          #contact-us .contact-us-container .ct-form-top .ct-form-info .ct-info-li .ct-card h2 {
            margin: 0;
            grid-template-columns: 2/3;
            grid-row: 1/2; }
          #contact-us .contact-us-container .ct-form-top .ct-form-info .ct-info-li .ct-card p {
            grid-template-columns: 2/3;
            grid-row: 2/3; }
    #contact-us .contact-us-container .ct-form-container {
      border-radius: 1rem;
      width: 120%;
      background-color: var(--primary-drk);
      padding: 2rem 0; }
      #contact-us .contact-us-container .ct-form-container h2 {
        display: block;
        width: fit-content;
        margin: 0 auto;
        font-size: 2rem; }
      #contact-us .contact-us-container .ct-form-container .ct-form {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        width: calc(100% - 4rem);
        margin: 0 auto; }
        #contact-us .contact-us-container .ct-form-container .ct-form input {
          border: none; }
        #contact-us .contact-us-container .ct-form-container .ct-form .tx-input {
          width: 100%;
          background-color: var(--primary-alt);
          border: none;
          padding: 1rem;
          border-radius: .3rem;
          color: var(--almost-white); }
          #contact-us .contact-us-container .ct-form-container .ct-form .tx-input:focus {
            outline: 1px solid var(--icon-fill); }
        #contact-us .contact-us-container .ct-form-container .ct-form fieldset {
          display: flex;
          width: 100%;
          flex-direction: column;
          border: none; }
        #contact-us .contact-us-container .ct-form-container .ct-form .ct-form-name input {
          text-transform: capitalize; }
        #contact-us .contact-us-container .ct-form-container .ct-form .ct-form-message textarea {
          height: 15em;
          width: 100%;
          resize: none;
          font-family: 'General Sans', sans-serif; }
        #contact-us .contact-us-container .ct-form-container .ct-form .ct-form-submit {
          height: fit-content;
          margin-bottom: 1rem; }
  #contact-us .ct-information {
    background-color: var(--primary-drk);
    width: 100%;
    padding: 0;
    margin-bottom: 4rem; }
    #contact-us .ct-information .ct-info-ul {
      display: flex;
      width: 100%;
      justify-content: space-around;
      margin: 0; }
      #contact-us .ct-information .ct-info-ul .ct-info-li .ct-card {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: -2.5rem; }
        #contact-us .ct-information .ct-info-ul .ct-info-li .ct-card svg {
          height: 5rem;
          width: auto; }
          #contact-us .ct-information .ct-info-ul .ct-info-li .ct-card svg path {
            fill: var(--icon-fill); }
        #contact-us .ct-information .ct-info-ul .ct-info-li .ct-card ul {
          display: flex;
          gap: 1rem; }
          #contact-us .ct-information .ct-info-ul .ct-info-li .ct-card ul li svg {
            height: 2rem;
            width: 2rem; }

@media only screen and (max-width: 799px) {
  #contact-us .contact-us-container .ct-form-top {
    flex-direction: column; }
    #contact-us .contact-us-container .ct-form-top .ct-form-container {
      width: 100%; }
  #contact-us .ct-information {
    width: 100%;
    margin-bottom: 0;
    padding: 1rem; }
    #contact-us .ct-information .ct-info-ul {
      flex-direction: column; }
      #contact-us .ct-information .ct-info-ul .ct-info-li .ct-card {
        margin-top: 0; } }
