:root {
  --primary-color: #073566;
  --secondary-color: #8f908f;
  --accent-color: #0f70b7;
  --accent-light-color: #0f71b710;
  --white-color: #fefefe;
  --light-grey: #eff0f4;
  --color-secondary: #a8a5ab;
  --accent-darker-color: #deeffd;

  --fs-navbar: clamp(1rem, 1.3dvw, 1.4rem);
  --fs-footer: clamp(0.6rem, 2dvw, 1.2rem);

  --fs-hero: clamp(1.5rem, 3.3dvw, 3rem);
  --fs-hero-button: clamp(1rem, 3.5dvw, 1.5rem);

  --fs-contact-button: clamp(1rem, 1.3vw, 2rem);
  --fs-contact-title: clamp(1.6rem, 1.5vw, 2rem);
  --fs-contact-explain: clamp(1rem, 1.3vw, 1.2rem);

  --fs-works-title: clamp(1.2rem, 2dvw, 1.5rem);
  --fs-works-explain: clamp(1.2rem, 1vw, 2rem);

  --fs-customer-title: clamp(1.6rem, 1.0vw, 1.8rem);
  --fs-customer-explain: clamp(1rem, 1vw, 2rem);

  --fs-feature-title: clamp(1rem, 2.0vw, 1.5rem);
  --fs-feature-explain: clamp(1.1rem, 1.5vw, 2rem);

  --fs-action-title: clamp(1.2rem, 3vw, 2rem);

  --fs-policy-explain: clamp(1.2rem, 1vw, 1rem);
  --fs-policy-h3: clamp(1.3rem, 1vw, 1.6rem);
  --fs-policy-h1: clamp(1.5rem, 2vw, 1rem);
  ;
  --fs-policy-h4: clamp(1.2rem, 1vw, 1.1rem);
  ;

  --fs-review-text: 54px;
  --fs-mobile-menu: 1.2em;

  --ff-satoshi: 'Satoshi-Regular';
  --fw-normal: 400;

  --lh-works-title: clamp(1.5rem, 1.0vw, 2.0rem);
  --lh-feature-title: clamp(1.3rem, 1vw, 2.0rem);
  --lh-customer-title: clamp(1.5rem, 1.5vw, 2.0rem);

  --lh-contact-explain: clamp(1.5rem, 1.0vw, 2.0rem);
  --lh-works-explain: clamp(1.5rem, 1.0vw, 2.0rem);
  --lh-feature-explain: clamp(1.0rem, 1.5vw, 2.0rem);

  --lh-sm: clamp(1.5rem, 2.4dvw, 2.5rem);
  --lh-action-sm: clamp(1.5rem, 2.5dvw, 2.5rem);
  --lh-action-md: 86px;
  --lh-md: 86px;
  --lh-action-lg: clamp(1.9rem, 3dvw, 2.5rem);
  --lh-lg: 5.5dvw;

  --cta-button-border-radius: 1rem;
  --border-radius: 2rem;
}


html {
  overflow-y: scroll;
  overflow-x: hidden;
  scrollbar-color: var(--accent-color) var(--accent-light-color);
  scrollbar-width: thin;
  background-color: var(--accent-light-color);
}

body {
  background-color: transparent;
  color: var(--primary-color);
  overflow: hidden;
  font-family: var(--ff-satoshi);
  font-weight: 400;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
}

.root {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  width: 100%;
  background-color: var(--primary-color);
}

div {
  display: flex;
  justify-content: center;
  align-items: center;
}

p {
  margin: 0;
  padding: 0;
}

a {
  margin: 0;
  padding: 0;
  text-decoration: none;
  color: inherit;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

h1 {
  padding-left: 0.5em;
  padding-right: 0.5em;
  padding-top: 1em;
  padding-bottom: 1em;
  text-align: center;
}


section {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  scroll-margin-top: 7rem;
}

.gutter {
  padding-left: 5%;
  padding-right: 5%;
}

.gutter-top {
  margin-top: 8rem;
}

.gutter-bottom {
  padding-bottom: 4rem;
}


/*Cookie Notice */

#cookie-consent-box {
  display: flex;
  justify-content: center;
  width: 100%;
  height: 10rem;
  position: fixed;
  bottom: 5em;
  background-color: transparent;
  z-index: 1000000;
  visibility: hidden;


}

#cookie-notice {
  color: #fff;
  font-family: inherit;
  padding: 1em;
  background: var(--accent-color);
  box-shadow: 0 10px 20px rgba(0, 0, 0, .2);
  width: clamp(10rem, 90%, 120rem);
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  visibility: hidden;
  z-index: 1000000;
  box-sizing: border-box
}

#cookie-notice button {
  color: inherit;
  background: var(--primary-color);
  border: 0;
  padding: 10px;
  margin-top: 10px;
  border-radius: 2px;
  width: clamp(10rem, 10%, 20rem);
  cursor: pointer;
}

@media only screen and (max-width:600px) {
  #cookie-notice {
    max-width: 100%;
    bottom: 0;
    left: 0;
    border-radius: 2px;
  }
}

/*Animations */


.shake-horizontal {
  -webkit-animation: shake-horizontal 1s cubic-bezier(0.470, 0.000, 0.745, 0.715) both;
  animation: shake-horizontal 1s cubic-bezier(0.470, 0.000, 0.745, 0.715) both;
}

.slide-out-fwd-center {
  -webkit-animation: slide-out-fwd-center 10s cubic-bezier(0.550, 0.085, 0.680, 0.530) alternate both;
  animation: slide-out-fwd-center 10s cubic-bezier(0.550, 0.085, 0.680, 0.530) alternate both;
}


/**
* ----------------------------------------
* animation shake-horizontal
* ----------------------------------------
*/
@-webkit-keyframes shake-horizontal {

  0%,
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  10%,
  30%,
  50%,
  70% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  20%,
  40%,
  60% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }

  80% {
    -webkit-transform: translateX(8px);
    transform: translateX(8px);
  }

  90% {
    -webkit-transform: translateX(-8px);
    transform: translateX(-8px);
  }
}

@keyframes shake-horizontal {

  0%,
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  10%,
  30%,
  50%,
  70% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  20%,
  40%,
  60% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }

  80% {
    -webkit-transform: translateX(8px);
    transform: translateX(8px);
  }

  90% {
    -webkit-transform: translateX(-8px);
    transform: translateX(-8px);
  }
}

/**
* ----------------------------------------
* animation slide-out-fwd-center
* ----------------------------------------
*/
@-webkit-keyframes slide-out-fwd-center {
  0% {
    -webkit-transform: translateZ(1);
    transform: translateZ(1);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateZ(600px);
    transform: translateZ(600px);
    opacity: 0;
  }
}

@keyframes slide-out-fwd-center {
  0% {
    -webkit-transform: translateZ(1);
    transform: translateZ(1);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateZ(600px);
    transform: translateZ(600px);
    opacity: 0;
  }


}

.spinner {
  width: 32px;
  height: 32px;
  border: 4px solid #cce5ff;
  border-top: 4px solid #0056b3;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  display: none;
  vertical-align: middle;
  margin-left: 10px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}