@font-face {
  font-family: Gotham;
  src: url('../fonts/Gotham-Bold.otf') format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Gotham book;
  src: url('../fonts/Gotham-Book.otf') format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Gotham;
  src: url('../fonts/Gotham-Light.otf') format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Gotham;
  src: url('../fonts/Gotham-Medium.otf') format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root {
  --royal-blue: #0d52a0;
  --crimson: #dd052b;
  --white: white;
  --light-steel-blue: #c6e1ff;
  --black: black;
}

body {
  color: var(--royal-blue);
  font-family: Gotham book, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5em;
}

h2 {
  color: var(--royal-blue);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Gotham, Arial, sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.5em;
}

h3 {
  color: var(--crimson);
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
}

h4 {
  color: var(--crimson);
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Gotham, Arial, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
}

a {
  color: var(--crimson);
  text-decoration: underline;
}

.page-hero {
  z-index: 20;
  background-color: var(--royal-blue);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  min-height: 800px;
  display: flex;
  position: relative;
}

.hero-text-wrapper {
  z-index: 50;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.hero-heading {
  z-index: 5;
  color: var(--white);
  letter-spacing: 2px;
  text-shadow: 1px 1px 6px #000;
  margin-top: 45px;
  margin-bottom: 20px;
  font-family: Gotham, Arial, sans-serif;
  font-size: 50px;
  font-weight: 500;
  line-height: 1.4em;
  position: relative;
}

.container {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 90%;
  max-width: 1300px;
  display: flex;
}

.container._2-col {
  flex-direction: row;
  align-items: stretch;
}

.container._2-col.left {
  justify-content: flex-start;
  position: relative;
}

.container.center {
  align-items: center;
}

.heading-wrapper {
  flex-direction: column;
  align-items: flex-start;
  max-width: none;
  display: flex;
}

.menu-wrapper {
  z-index: 2147483647;
  background-color: var(--white);
  box-shadow: 0 1px 3px 0 var(--white);
  justify-content: center;
  display: flex;
  position: fixed;
  inset: 0% 0% auto;
}

.navbar-wrapper-three {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.navbar-brand-three {
  z-index: 5;
  width: 300px;
}

.nav-menu-wrapper-three {
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  display: flex;
}

.nav-menu-three {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
  display: flex;
}

.nav-link {
  color: var(--royal-blue);
  letter-spacing: 1px;
  text-transform: uppercase;
  flex-direction: column;
  justify-content: center;
  padding: 15px;
  font-family: Gotham book, Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  transition: all .2s ease-in-out;
  display: flex;
}

.nav-link:hover {
  color: #0d52a0e6;
  background-color: #e1efff;
}

.nav-link:focus-visible, .nav-link[data-wf-focus-visible] {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 4px;
  outline: 2px solid #0050bd;
}

.nav-link.dropdown {
  padding-right: 40px;
}

.nav-link.hidden {
  display: none;
}

.nav-dropdown {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-left: 0;
  margin-right: 0;
  display: flex;
}

.nav-dropdown-icon {
  margin-right: 10px;
}

.nav-dropdown-list {
  background-color: #fff;
  border-radius: 12px;
}

.nav-dropdown-list.w--open {
  padding-top: 10px;
  padding-bottom: 10px;
}

.nav-dropdown-list.shadow-three.mobile-shadow-hide {
  border-radius: 0;
}

.nav-dropdown-list.shadow-three.mobile-shadow-hide.w--open {
  padding-top: 0;
  padding-bottom: 0;
}

.nav-dropdown-link {
  color: var(--crimson);
  letter-spacing: 1px;
  padding-top: 20px;
  padding-bottom: 20px;
  font-family: Gotham, Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  transition: all .2s ease-in-out;
}

.nav-dropdown-link:hover {
  border-left: 3px solid var(--crimson);
}

.nav-dropdown-link:focus-visible, .nav-dropdown-link[data-wf-focus-visible] {
  outline-color: var(--crimson);
  outline-offset: 0px;
  color: var(--crimson);
  border-radius: 0;
  outline-width: 2px;
  outline-style: solid;
  font-weight: 500;
}

.nav-dropdown-link.w--current {
  border: 3px solid var(--crimson);
  color: var(--crimson);
  font-style: normal;
  font-weight: 500;
}

.menu-button {
  display: none;
}

.navbar-centered {
  z-index: 2147483647;
  background-color: #0000;
  width: 100%;
  padding: 20px;
}

.menu-container {
  z-index: 5;
}

.button-8 {
  border: 2px solid var(--crimson);
  max-width: 300px;
  color: var(--crimson);
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: #fff;
  justify-content: center;
  align-items: center;
  padding: 20px 25px;
  font-family: Gotham, Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1em;
  text-decoration: none;
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: 1px 1px 3px #d3d3d3;
}

.button-8.secondary {
  background-color: var(--crimson);
  color: var(--white);
  border-radius: 10px;
  margin-top: 30px;
  font-size: 14px;
  box-shadow: 1px 1px 6px #0d52a054;
}

.button-8.secondary:hover {
  background-color: var(--white);
  color: var(--crimson);
}

.button-8.secondary.just-icons {
  background-color: var(--white);
  max-width: none;
  color: var(--crimson);
}

.button-8.in-menu {
  border-radius: 10px;
  margin-left: 10px;
  font-weight: 500;
  box-shadow: 1px 1px 6px #0d52a054;
}

.button-8.in-menu.hidden {
  display: none;
}

.text-button-b8 {
  z-index: 1;
  text-align: center;
  line-height: 1.5em;
  position: relative;
}

.bg-mask-b8 {
  background-color: var(--crimson);
  width: 0;
  height: 200px;
  position: absolute;
  inset: auto;
  transform: rotate(37deg);
}

.header-sub-text {
  z-index: 5;
  width: 100%;
  max-width: 600px;
  color: var(--white);
  letter-spacing: 1px;
  text-shadow: 1px 1px 6px #000;
  font-family: Gotham, Arial, sans-serif;
  font-size: 25px;
  font-weight: 300;
  line-height: 1.2em;
  position: relative;
}

.menu-second, .menu-first {
  align-items: center;
  display: flex;
}

.page-section {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 8%;
  padding-bottom: 8%;
  display: flex;
}

.page-section.blue {
  background-color: var(--royal-blue);
  background-image: linear-gradient(100deg, var(--royal-blue) 37%, #0d52a04d), url('../images/Group-2.jpg');
  background-position: 0 0, 70%;
  background-repeat: repeat, repeat;
  background-size: auto, cover;
  padding-top: 8%;
  padding-bottom: 10%;
  position: relative;
}

.page-section.blue.reviews {
  background-image: linear-gradient(100deg, var(--royal-blue) 37%, #0d52a04d), url('../images/Reviews-2.jpg');
  background-position: 0 0, 50% 70%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  min-height: 650px;
}

.section-heading-wrapper {
  text-align: left;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}

.section-heading-wrapper.centered {
  width: 100%;
  display: flex;
}

.section-heading-wrapper.centered.horizontal {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  flex-direction: row;
  justify-content: center;
}

.section-header-icon {
  width: 90%;
  margin-bottom: 0;
}

.section-heading {
  letter-spacing: 1px;
  text-transform: uppercase;
  max-width: 600px;
  margin-top: 0;
  font-family: Gotham, Arial, sans-serif;
  font-size: 40px;
  font-weight: 300;
  line-height: 1.3em;
}

.section-heading.white {
  color: var(--white);
  margin-bottom: 20px;
}

.rich-text {
  font-size: 18px;
  line-height: 1.6em;
}

.rich-text.faq-text {
  color: var(--royal-blue);
  padding: 15px 25px 15px 40px;
  font-size: 16px;
  line-height: 1.5em;
}

.rich-text.legal {
  font-size: 16px;
}

.company-logos {
  object-fit: scale-down;
  width: 125px;
  height: 125px;
  margin-right: 20px;
  padding: 10px;
}

.faq-circle {
  border: 1px solid var(--crimson);
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  display: flex;
}

.faq-content {
  overflow: hidden;
}

.accordion-wrap {
  border-left: 4px solid var(--crimson);
  background-color: #ffffffe6;
  width: 100%;
  margin-bottom: 40px;
  margin-right: 20px;
  transition: box-shadow .2s ease-in;
}

.accordion-wrap:hover {
  box-shadow: 1px 1px 13px 0 var(--white);
}

.portfolio-sub-heading {
  color: var(--royal-blue);
  text-align: center;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Gotham, Arial, sans-serif;
  font-size: 20px;
  font-weight: 700;
}

.website-link {
  color: var(--crimson);
  letter-spacing: 1px;
  text-transform: capitalize;
  padding-bottom: 25px;
  padding-left: 40px;
  padding-right: 25px;
  font-family: Gotham, Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  transition: letter-spacing .2s;
  display: block;
}

.website-link:hover {
  letter-spacing: 2px;
}

.logo-wrapper {
  flex-direction: row;
  align-items: center;
  display: flex;
}

.faq {
  cursor: pointer;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  min-height: 90px;
  padding: 20px 30px;
  transition: all .2s;
  display: flex;
}

.group-division-wrapper {
  width: 100%;
  display: flex;
}

.faqs {
  flex-direction: column;
  width: 100%;
  max-width: none;
  display: flex;
}

.embed {
  width: 100%;
  margin-bottom: 50px;
}

.footer {
  background-image: radial-gradient(circle farthest-side at 100% 50%, #0d52a00d, #0d52a0b0 43%, #0d52a0fc 100%, var(--royal-blue)), url('../images/Group-2.jpg'), url('../images/Reviews.jpg');
  background-position: 0 0, 50%, 50%;
  background-repeat: repeat, repeat, no-repeat;
  background-size: auto, cover, cover;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 15%;
  display: flex;
  position: relative;
}

.footer-container {
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  width: 90%;
  max-width: 1200px;
  display: flex;
}

.footer-contact-info-wrapper {
  flex: 1;
  width: 30%;
  margin-right: 40px;
}

.footer-links {
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  align-self: stretch;
  padding-right: 20px;
}

.footer-links.hidden {
  display: none;
}

.footer-link-block {
  width: 48%;
  margin-bottom: 20px;
  padding-top: 5px;
  padding-bottom: 5px;
  font-family: Gotham, Arial, sans-serif;
  font-weight: 500;
  text-decoration: none;
}

.footer-link-block.hidden {
  display: none;
}

.footer-text {
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 14px;
  text-decoration: none;
}

.footer-contact-links {
  width: 100%;
  height: 80px;
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
  align-items: center;
  margin-bottom: 20px;
  padding-top: 5px;
  padding-bottom: 5px;
  font-family: Gotham, Arial, sans-serif;
  font-size: 14px;
  text-decoration: underline;
  display: flex;
}

.footer-icon {
  width: 45px;
  margin-right: 20px;
}

.footer-heading {
  border-bottom: 1px solid var(--crimson);
  color: var(--white);
  letter-spacing: 2px;
  padding-bottom: 20px;
  font-family: Gotham, Arial, sans-serif;
  font-size: 20px;
  font-weight: 500;
}

.quick-link-wrap {
  flex-wrap: wrap;
  display: flex;
}

.quick-link-wrap.vertical {
  flex-direction: column;
}

.social-link-wrapper {
  justify-content: flex-end;
  align-items: center;
  margin-top: 40px;
  display: flex;
}

.social-links {
  width: 50px;
  margin-right: 10px;
}

.social-icon {
  background-color: var(--white);
  filter: saturate(10%);
  border-radius: 100%;
  padding: 7px;
}

.values-block {
  border: 2px solid var(--crimson);
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: center;
  min-width: 300px;
  max-width: 350px;
  height: 300px;
  margin: 20px;
  padding: 20px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.footer-credit {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 50px;
  margin-top: 6%;
  display: flex;
}

.footer-credit-text {
  color: var(--light-steel-blue);
  text-decoration: none;
  transition: all .2s ease-in-out;
}

.footer-credit-text:hover {
  color: var(--white);
}

.home-icon {
  width: 30px;
}

.background-video {
  width: 100%;
  height: 100%;
  position: absolute;
}

.after {
  z-index: 5;
  color: #fff;
  background-color: #0000;
  border-radius: 12px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: auto;
  height: auto;
  margin-left: 10px;
  margin-right: 10px;
  display: flex;
  position: relative;
  box-shadow: 0 6px 22px #0000001f;
}

.typed-words {
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  font-family: Gotham, Arial, sans-serif;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.5em;
  text-decoration: none;
  display: inline-block;
}

.div-block {
  z-index: 5;
  align-items: center;
  display: flex;
  position: relative;
}

.text-block-3 {
  color: var(--white);
  font-family: Gotham, Arial, sans-serif;
  font-size: 25px;
  font-weight: 700;
}

.bg_overlay {
  z-index: 5;
  background-image: radial-gradient(circle at 0 0, #0d52a0d9 19%, #fff0 75%);
  position: absolute;
  inset: 0%;
}

.divider_hero {
  z-index: 555555555;
  background-image: url('../images/White-tyre-divder.png');
  background-position: 50% 85%;
  background-repeat: repeat-y;
  background-size: auto;
  width: 100%;
  height: 50px;
  position: absolute;
  inset: auto 0% -1%;
}

.subtitle {
  letter-spacing: 1px;
  margin-bottom: 22px;
  font-family: Gotham, Arial, sans-serif;
  font-size: 20px;
  font-weight: 700;
}

.text_overlapping_div {
  background-color: #fffffff0;
  flex-direction: column;
  justify-content: center;
  width: 60%;
  margin-right: 0;
  padding: 40px;
  display: flex;
  position: absolute;
  inset: 0% 0% 0% auto;
  box-shadow: 1px 1px 16px #0000002b;
}

.div-block-2 {
  background-image: url('../images/5D4_4791-EditResize-1024x683.jpg');
  background-position: 50%;
  background-size: cover;
  width: 70%;
  height: 700px;
  display: flex;
}

.page_section_divider_top {
  z-index: 222222222;
  background-image: url('../images/White-tyre-divder.png');
  background-position: 50% 85%;
  background-repeat: repeat-y;
  background-size: auto;
  width: 100%;
  height: 50px;
  position: absolute;
  inset: -1% 0% auto;
}

.page_section_divider_bottom {
  z-index: 1;
  background-image: url('../images/White-tyre-divder.png');
  background-position: 50% 85%;
  background-repeat: repeat-y;
  background-size: auto;
  width: 100%;
  height: 50px;
  position: absolute;
  inset: auto 0% -1%;
}

.paragraph {
  width: 80%;
  color: var(--white);
  text-align: center;
  font-size: 18px;
  line-height: 1.6em;
}

.paragraph.blue {
  width: 100%;
  color: var(--royal-blue);
}

.paragraph.blue.smaller {
  width: 70%;
}

.heading {
  color: var(--royal-blue);
  background-color: #0000;
  font-family: Gotham, Arial, sans-serif;
  font-size: 26px;
}

.heading.white {
  color: var(--white);
  margin-top: 51px;
  margin-bottom: -3px;
}

.partner-wrapper {
  background-color: #0000;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin-top: 25px;
  display: flex;
}

.partner-link {
  width: 200px;
  margin-right: 10px;
}

.partner-text {
  display: flex;
}

.div-block-3 {
  background-color: #ffffffcf;
  align-items: center;
  width: 50%;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
}

.icon-grid {
  grid-column-gap: 90px;
  grid-row-gap: 90px;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  width: 100%;
  display: flex;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  padding-top: 10vw;
  padding-bottom: 10vw;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: auto;
  margin-top: 42px;
  display: flex;
}

.text-block-4 {
  margin-bottom: 34px;
}

._2buttons {
  grid-column-gap: 35px;
  grid-row-gap: 35px;
  align-items: center;
  margin-top: 5px;
  display: flex;
}

.image-6 {
  width: 60px;
  margin-bottom: 10px;
}

.icon-list {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  align-items: center;
  margin-left: 23px;
  display: flex;
}

.link-block {
  width: 55px;
  height: 55px;
}

.white_link {
  color: var(--white);
  font-family: Gotham, Arial, sans-serif;
  font-weight: 500;
}

.bg-for-icons {
  background-color: var(--white);
  border-radius: 50%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  margin-bottom: 23px;
  display: flex;
}

.bg-for-icons.blue {
  background-color: var(--royal-blue);
}

.button-8-2 {
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: #dd052b;
  border: 2px solid #dd052b;
  justify-content: center;
  align-items: center;
  max-width: 300px;
  padding: 20px 25px;
  font-family: Gotham, Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1em;
  text-decoration: none;
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: 1px 1px 3px #d3d3d3;
}

.button-8-2.secondary {
  box-shadow: none;
  color: #fff;
  text-align: center;
  background-color: #dd052b;
  border-radius: 10px;
  margin-top: 30px;
  font-size: 14px;
}

.button-8-2.secondary.hidden {
  display: none;
}

.text-button-b8-2 {
  z-index: 1;
  line-height: 1.5em;
  position: relative;
}

.bg-mask-b8-2 {
  background-color: #fff;
  width: 0;
  height: 200px;
  position: absolute;
  inset: auto;
  transform: rotate(37deg);
}

.block-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 20px;
  margin-bottom: 20px;
  display: grid;
}

.block {
  border: 3px solid var(--royal-blue);
  border-radius: 10px;
  flex-direction: column;
  flex: 1;
  justify-content: flex-start;
  align-self: stretch;
  align-items: center;
  min-width: 33%;
  display: flex;
}

.service-image {
  object-fit: cover;
  border-radius: 10px;
  width: 100%;
  height: 250px;
  margin-bottom: 20px;
}

.text-wrapper {
  background-color: #fff;
  border-radius: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: -50px;
  padding: 20px 30px;
  display: flex;
  position: relative;
}

.service-title {
  color: var(--crimson);
  text-transform: uppercase;
  font-size: 20px;
}

.logo-image-2 {
  width: 300px;
}

.brand {
  height: 100%;
}

.social-text {
  z-index: 1;
  text-align: center;
  line-height: 1.5em;
  position: relative;
}

.legal-embed {
  width: 100%;
  max-width: 900px;
}

.secondary-hero {
  z-index: 20;
  background-color: var(--royal-blue);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 80vh;
  min-height: 600px;
  display: flex;
  position: relative;
}

.logo {
  width: 100%;
}

.dropdown-2 {
  margin-left: 0;
  margin-right: 0;
}

.footer-credit-text-2 {
  color: #c6e1ff;
  text-decoration: none;
  transition: all .2s ease-in-out;
}

.footer-credit-text-2:hover {
  color: #fff;
}

@media screen and (min-width: 1920px) {
  .divider_hero {
    background-position: 50% 85%;
    background-size: auto;
    bottom: -1%;
  }

  .page_section_divider_top {
    background-position: 50% 85%;
    background-repeat: repeat-y;
    background-size: auto;
    inset: 0% 0% auto;
  }

  .page_section_divider_bottom {
    background-position: 50% 85%;
    background-size: auto;
    bottom: -1%;
  }
}

@media screen and (max-width: 991px) {
  .container._2-col.left {
    flex-direction: column;
  }

  .navbar-wrapper-three {
    justify-content: space-between;
    position: relative;
  }

  .navbar-brand-three {
    position: relative;
  }

  .nav-menu-wrapper-three {
    background-color: #f3f3f3;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 20px;
    display: flex;
  }

  .nav-menu-three {
    background-color: #fff;
    border-radius: 25px;
    flex-flow: column wrap;
    place-content: center;
    align-items: center;
    padding: 20px;
    display: flex;
    box-shadow: 0 8px 50px #0000000d;
  }

  .nav-link {
    text-align: left;
    width: 100%;
    margin-bottom: 10px;
  }

  .nav-link.dropdown {
    margin-left: 0;
    margin-right: 0;
    display: block;
  }

  .nav-dropdown-list.shadow-three.w--open {
    position: absolute;
  }

  .nav-dropdown-list.shadow-three.mobile-shadow-hide.w--open {
    margin-bottom: 10px;
    position: relative;
  }

  .menu-button {
    padding: 12px;
  }

  .menu-button.w--open {
    background-color: var(--royal-blue);
    color: #fff;
  }

  .button-8.secondary.just-icons {
    padding-left: 20px;
    padding-right: 20px;
  }

  .button-8.in-menu {
    margin-left: 0;
  }

  .menu-second {
    flex-direction: column;
  }

  .menu-first {
    flex-flow: wrap;
  }

  .page-section {
    padding-top: 10%;
  }

  .page-section.blue {
    padding-top: 15%;
  }

  .page-section.blue.reviews {
    padding-bottom: 15%;
  }

  .section-heading {
    margin-bottom: 20px;
    font-size: 35px;
  }

  .accordion-wrap {
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .footer-container {
    flex-flow: wrap;
    justify-content: center;
  }

  .footer-contact-info-wrapper {
    width: 100%;
  }

  .footer-links {
    width: 50%;
    margin-top: 51px;
  }

  .social-link-wrapper {
    justify-content: flex-start;
  }

  .div-block {
    align-items: flex-start;
  }

  .subtitle {
    margin-bottom: 20px;
  }

  .text_overlapping_div {
    width: 100%;
    position: static;
  }

  .div-block-2 {
    width: 100%;
    height: 300px;
  }

  .paragraph, .paragraph.blue.smaller {
    width: 100%;
  }

  .partner-wrapper {
    width: 90%;
    margin-top: 50px;
  }

  .div-block-3 {
    width: 100%;
  }

  .icon-grid {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-direction: column;
  }

  .block-wrapper {
    flex-direction: column;
    display: flex;
  }

  .dropdown-2 {
    flex-direction: column;
    align-items: flex-start;
    display: flex;
  }
}

@media screen and (max-width: 767px) {
  .hero-heading {
    font-size: 40px;
  }

  .navbar-brand-three {
    width: 280px;
    padding-left: 0;
  }

  .nav-menu-three {
    border-radius: 20px;
    flex-direction: column;
  }

  .nav-link {
    padding-top: 10px;
    padding-bottom: 10px;
    display: inline-block;
  }

  .nav-dropdown {
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .nav-dropdown-list.shadow-three {
    box-shadow: 0 8px 50px #0000000d;
  }

  .nav-dropdown-list.shadow-three.w--open {
    position: relative;
  }

  .nav-dropdown-list.shadow-three.mobile-shadow-hide {
    box-shadow: none;
  }

  .button-8.secondary.just-icons {
    flex-direction: column;
  }

  .header-sub-text {
    font-size: 20px;
  }

  .page-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .section-heading {
    font-size: 30px;
  }

  .rich-text {
    font-size: 16px;
  }

  .faq-circle {
    margin-top: 20px;
    margin-left: 0;
  }

  .portfolio-sub-heading {
    text-align: center;
    font-size: 20px;
    line-height: 1.5em;
  }

  .logo-wrapper, .faq {
    flex-direction: column;
  }

  .text-block-3 {
    font-size: 20px;
  }

  .text_overlapping_div {
    padding: 25px;
  }

  .paragraph {
    font-size: 16px;
  }

  .heading {
    font-size: 20px;
  }

  ._2buttons {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-direction: column;
    margin-top: 20px;
  }

  .icon-list {
    margin-left: 0;
  }

  .button-8-2.secondary {
    width: 100%;
    margin-top: 0;
  }

  .service-title {
    font-size: 18px;
  }

  .social-text {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 479px) {
  .page-hero {
    height: auto;
    min-height: auto;
    padding-top: 10%;
    padding-bottom: 10%;
  }

  .hero-text-wrapper {
    margin-top: 135px;
    margin-bottom: 33px;
  }

  .hero-heading {
    font-size: 35px;
  }

  .heading-wrapper {
    margin-bottom: 40px;
    padding-top: 24px;
  }

  .navbar-brand-three {
    width: 200px;
  }

  .nav-menu-wrapper-three {
    padding: 10px;
  }

  .nav-menu-three {
    border-top: 4px solid var(--royal-blue);
    border-radius: 0;
    flex-direction: column;
    width: 100%;
    margin-top: 0;
  }

  .nav-link, .nav-dropdown {
    width: 100%;
  }

  .button-8.secondary.just-icons {
    flex-direction: column;
    width: 100%;
  }

  .button-8.in-menu {
    width: 100%;
    margin-left: 0;
  }

  .text-button-b8 {
    font-size: 12px;
  }

  .menu-first {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .page-section.blue {
    padding-top: 26%;
  }

  .page-section.blue.reviews {
    padding-bottom: 35%;
  }

  .page-section.alt {
    padding-top: 13%;
  }

  .section-heading-wrapper.centered.horizontal {
    flex-direction: column;
  }

  .section-heading.white {
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .rich-text.faq-text {
    padding-left: 29px;
  }

  .company-logos {
    margin-right: 0;
  }

  .portfolio-sub-heading {
    text-align: center;
  }

  .faq {
    align-items: center;
    min-width: auto;
    padding-left: 10px;
    padding-right: 10px;
  }

  .faqs {
    margin-top: 24px;
    margin-bottom: 24px;
  }

  .footer-container {
    margin-top: 31px;
    margin-bottom: 22px;
  }

  .footer-contact-info-wrapper {
    width: auto;
  }

  .footer-links {
    width: 100%;
  }

  .footer-icon {
    width: 35px;
  }

  .social-link-wrapper {
    justify-content: flex-start;
  }

  .after {
    margin-left: 0;
  }

  .typed-words {
    font-size: 18px;
  }

  .div-block {
    flex-direction: column;
  }

  .text-block-3 {
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 18px;
    display: flex;
  }

  .text_overlapping_div {
    box-shadow: none;
    margin-top: 40px;
    padding: 0;
  }

  .div-block-2 {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .heading {
    text-align: center;
  }

  .div-block-3 {
    width: 100%;
  }

  ._2buttons {
    grid-column-gap: 18px;
    grid-row-gap: 18px;
    flex-direction: column;
    justify-content: center;
  }

  .icon-list {
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 10px;
  }

  .button-8-2.secondary {
    margin-top: 20px;
  }

  .brand {
    margin-right: 20px;
    padding-left: 0;
  }

  .social-text {
    font-size: 12px;
  }

  .footer-credit-text-2 {
    text-align: center;
    font-size: 14px;
  }
}


@font-face {
  font-family: 'Gotham';
  src: url('../fonts/Gotham-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gotham book';
  src: url('../fonts/Gotham-Book.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gotham';
  src: url('../fonts/Gotham-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gotham';
  src: url('../fonts/Gotham-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}