*,
*::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: rgb(250, 250, 250);
  background-size: 100px;
  touch-action: manipulation;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  font-size: 1rem;
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  max-width: 1920px;
  margin: 0 auto;
  overflow-x: hidden;
  overflow-x: clip;
}
@media only screen and (min-width: 0px) and (max-width: 800px) {
  body * {
    font-size: 0.925rem;
  }
}

b a,
p,
li,
ul,
span,
div,
button {
  text-wrap: pretty;
  font-family: "Inter", system-ui, "Segoe UI", Helvetica, Arial, sans-serif;
}

p {
  letter-spacing: -0.25px;
}

h1,
h2,
h3 {
  line-height: 1.25;
  font-family: "Anton", system-ui, "Segoe UI", Helvetica, Arial, sans-serif;
  font-weight: 100;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.75);
}

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

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

.skip {
  position: absolute;
  top: -100px;
  left: 20px;
  z-index: 10000;
  background: var(--primary);
  color: black;
  padding: 14px 18px;
  text-decoration: none;
  font-weight: 700;
  border-radius: 4px;
}

.header-title {
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.75);
}

.skip:focus {
  top: 20px;
  outline: 3px solid #fff;
}

:root {
  --black: #000;
  --white: #fff;
  --yellow: #F1A908;
  --text-color: #133552;
  --primary: #fed050;
  --primaryHover: #fabb0d;
  --secondary: #6099C7;
  --body: #f9f9f9;
  --bodyDark: #0D1B2A;
  --cta: 0px 0px 3px rgba(0, 0, 0, 0.125),
      0px 0px 2px rgba(0, 0, 0, 0.25),
      0px 0px 1.5px rgba(0, 0, 0, 0.125),
      0px 0px 1px rgba(0, 0, 0, .25);
}

@media only screen and (min-width: 0px) {
  main section [class$=-inner] {
    padding: 100px 0 125px;
  }
}
@media only screen and (min-width: 0px) and (min-width: 0px) and (max-width: 800px) {
  main section [class$=-inner] {
    padding: 75px 0;
  }
}
@media only screen and (min-width: 0px) {
  html section [class$=-header] {
    margin-bottom: clamp(25px, 3vw, 35px);
  }
  html section [class$=-header] .topper {
    display: block;
    font-family: "Inter", system-ui, "Segoe UI", Helvetica, Arial, sans-serif;
    font-size: clamp(1.25em, 3.5vw, 1.75em);
    font-weight: 900;
    letter-spacing: -1px;
    color: var(--primary);
    text-shadow: none;
    line-height: 1.5;
  }
}
@media only screen and (min-width: 0px) and (min-width: 0px) and (max-width: 800px) {
  html section [class$=-header] .topper {
    margin-bottom: 5px;
  }
}
@media only screen and (min-width: 0px) {
  html section [class$=-header] h2 {
    font-weight: normal;
    font-size: clamp(1.75em, 3.5vw, 2.5em);
    line-height: 1.25;
    letter-spacing: 0.25px;
    margin-bottom: 20px;
    color: var(--secondary);
  }
}
@media only screen and (min-width: 0px) and (min-width: 0px) and (max-width: 800px) {
  html section [class$=-header] h2 {
    letter-spacing: 0.25px;
  }
}
@media only screen and (min-width: 0px) {
  html section [class$=-header] h3 {
    font-size: clamp(1.125em, 2vw, 1.3em);
  }
  html section [class$=-header] p {
    max-width: 800px;
    line-height: 1.75;
    margin-bottom: 25px;
  }
  html section [class$=-header] p:last-of-type {
    margin-bottom: 35px;
  }
}
@media only screen and (min-width: 0px) {
  html [class~=primary-cta] {
    display: inline-block;
    width: -moz-fit-content;
    width: fit-content;
    text-align: center;
    font-weight: bold;
    line-height: 1.5;
    border-radius: 100vw;
    padding: 25px 30px;
    font-size: 0.95rem;
    box-shadow: 0px 0px 3px rgb(0, 0, 0);
    text-shadow: var(--cta);
    color: white;
    background: var(--primary);
  }
  html [class~=primary-cta]:hover {
    background: var(--white);
    color: black;
    text-shadow: none;
  }
}
@media only screen and (min-width: 0px) and (min-width: 0px) and (max-width: 500px) {
  html [class~=primary-cta] {
    padding: 22px 20px;
  }
}
@media only screen and (min-width: 0px) {
  html .button {
    display: flex;
    gap: 15px;
    align-items: center;
    width: -moz-fit-content;
    width: fit-content;
  }
  html .button a {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 20px;
    background: #fed050;
    font-size: 16px;
    color: var(--textColor);
  }
}
/* inter-regular - latin */
@font-face {
  font-display: swap;
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  src: url("/assets/fonts/inter-v20-latin-regular.woff2") format("woff2");
}
/* inter-700 - latin */
@font-face {
  font-display: swap;
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  src: url("/assets/fonts/inter-v20-latin-700.woff2") format("woff2");
}
/* anton-regular - latin */
@font-face {
  font-display: swap;
  font-family: "Anton";
  font-style: normal;
  font-weight: 400;
  src: url("/assets/fonts/anton-v27-latin-regular.woff2") format("woff2");
}
@media only screen and (min-width: 0px) {
  #reviews-page {
    background: #061F44;
    border: 1px solid rgba(0, 0, 0, 0.25);
    background-image: url(/assets/images/global/backgrounds/bg-inverse.webp);
    background-size: cover;
    background-repeat: no-repeat;
  }
  #reviews-page .reviews-page-inner {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
  }
  #reviews-page .reviews-heading {
    max-width: 850px;
    margin: 0 auto 40px;
    text-align: center;
  }
  #reviews-page .reviews-heading h2 {
    display: block;
    color: var(--primary);
    font-size: 15px;
    margin-bottom: 5px;
    font-family: "Inter", system-ui, "Segoe UI", Helvetica, Arial, sans-serif;
    font-weight: 700;
    letter-spacing: 0;
  }
  #reviews-page .reviews-heading .header-title {
    display: block;
    font-family: "Anton", system-ui, "Segoe UI", Helvetica, Arial, sans-serif;
    font-size: clamp(34px, 7vw, 44px);
    font-weight: 100;
    line-height: 1.15;
    margin-bottom: 15px;
    color: white;
  }
  #reviews-page .reviews-heading p {
    max-width: 760px;
    margin: 0 auto;
    color: white;
    font-size: clamp(15px, 2vw, 16px);
    line-height: 1.5;
  }
  #reviews-page .reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  #reviews-page .review-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: clamp(20px, 3vw, 28px);
    transition: 0.2s ease-in-out;
    background: #061F44;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background-image: url(/assets/images/global/backgrounds/bg-light-blue.webp);
    background-position: left center;
    background-size: cover;
    background-repeat: no-repeat;
  }
  #reviews-page .review-card:hover {
    transform: scale(1.025);
    background: #0a233c;
    background-image: url(/assets/images/global/backgrounds/bg-light-blue.webp);
    background-position: left center;
    background-size: cover;
    background-repeat: no-repeat;
  }
  #reviews-page .review-card .review-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
  }
  #reviews-page .review-card .review-top strong {
    font-size: 18px;
    color: white;
  }
  #reviews-page .review-card .review-top .stars {
    font-size: 15px;
    letter-spacing: 1px;
    color: var(--primary);
    white-space: nowrap;
  }
  #reviews-page .review-card p {
    flex: 1;
    margin-bottom: 22px;
    font-size: 16px;
    line-height: 1.45;
    color: white;
  }
  #reviews-page .review-card small {
    display: block;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--primary);
  }
}
@media only screen and (min-width: 0px) and (max-width: 1100px) {
  #reviews-page .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 0px) and (max-width: 700px) {
  #reviews-page .reviews-heading {
    text-align: left;
    margin-bottom: 30px;
  }
  #reviews-page .reviews-heading p {
    margin: 0;
  }
  #reviews-page .reviews-heading .header-title {
    font-size: clamp(34px, 12vw, 46px);
  }
  #reviews-page .reviews-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  #reviews-page .review-card {
    padding: 24px;
  }
  #reviews-page .review-card:hover {
    transform: none;
  }
  #reviews-page .review-card p {
    font-size: 15px;
  }
}
@media only screen and (min-width: 0px) {
  #cta {
    background: #0d2b4a;
    background-image: url(/assets/images/about/cta.webp);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left;
  }
}
@media only screen and (min-width: 0px) and (min-width: 0px) and (max-width: 800px) {
  #cta {
    background-attachment: local;
  }
}
@media only screen and (min-width: 0px) {
  #cta .cta-inner {
    background-color: rgba(0, 0, 0, 0.25);
    width: 100%;
    margin: 0 auto;
    padding: clamp(60px, 8vw, 100px) 0;
  }
  #cta .cta-content {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    padding: clamp(15px, 5vw, 60px);
  }
  #cta .cta-content h2 {
    display: block;
    color: var(--primary);
    font-size: 15px;
    margin-bottom: 5px;
    font-family: "Inter", system-ui, "Segoe UI", Helvetica, Arial, sans-serif;
    font-weight: 700;
    letter-spacing: 0;
  }
  #cta .header-title {
    display: block;
    font-family: "Anton", system-ui, "Segoe UI", Helvetica, Arial, sans-serif;
    font-size: clamp(34px, 7vw, 44px);
    font-weight: 100;
    line-height: 1.15;
    margin-bottom: 15px;
    color: white;
  }
  #cta p {
    max-width: 650px;
    margin: 0 auto 35px;
    color: white;
    font-size: clamp(15px, 2vw, 15px);
    line-height: 1.5;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.75);
  }
  #cta .cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
  }
  #cta .cta-buttons a {
    transition: 0.1s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    height: 55px;
    padding: 25px 20px;
    text-decoration: none;
    box-shadow: 0px 0px 3px black;
  }
  #cta .cta-buttons a:first-child {
    color: var(--textColor);
    background: var(--primary);
    background-image: url(/assets/images/global/backgrounds/bg-yellow.webp);
  }
  #cta .cta-buttons a:first-child:hover {
    background-image: url(/assets/images/global/backgrounds/yellow-lighter.webp);
  }
  #cta .cta-buttons .cta-phone {
    color: var(--primary);
    background: rgba(0, 0, 0, 0.125);
    border: 1px solid var(--primary);
    font-weight: 700;
  }
  #cta .cta-buttons .cta-phone:hover {
    color: var(--textColor);
    background-image: url(/assets/images/global/backgrounds/yellow-lighter.webp);
  }
}
@media only screen and (min-width: 0px) and (max-width: 700px) {
  #cta .cta-content {
    text-align: left;
  }
  #cta .cta-buttons a {
    width: 100%;
  }
}/*# sourceMappingURL=reviews-local.css.map */