* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-smoothing: antialiased;
  outline: none;
  text-rendering: optimizeLegibility;
}

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
  margin: 0 !important;
}

body,
html {
  overflow-x: hidden;
}

@font-face {
  font-family: "Inter";
  src: url("./fonts/inter/Inter-Medium.woff2") format("woff2"),
    url("./fonts/inter/Inter-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("./fonts/inter/Inter-Regular.woff2") format("woff2"),
    url("./fonts/inter/Inter-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("./fonts/inter/Inter-SemiBold.woff2") format("woff2"),
    url("./fonts/inter/Inter-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("./fonts/inter/Inter-Light.woff2") format("woff2"),
    url("./fonts/inter/Inter-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("./fonts/inter/Inter-Bold.woff2") format("woff2"),
    url("./fonts/inter/Inter-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Font Family */
  --inter: "Inter", sans-serif;

  /* Base Colors */
  --white: #ffffff;
  --black: #000000;
  --endeavour: #233f8d;
  --dark-blue: #172b63;
  --midnight-blue: #142952;
  --light-goldenrod-yellow: #f6fbd9;
  --jordy-blue: #8bb4df;
  --inch-worm: #c0e009;
  --sapphire: #0a3366;
  --laser-lemon: #e8ff64;
  --primary-white-50: rgba(255, 255, 255, 0.5);
  --primary-white-60: rgba(255, 255, 255, 0.6);
  --primary-white-80: rgba(255, 255, 255, 0.8);

  --gb_base_unit: 0.125rem;
  --base_unit-half: math.div(var(--gb_base_unit), 2);
  /*-------------------------------------------------
  >> Variables for Spaces
  -------------------------------------------------*/
  --space_base_unit: var(--gb_base_unit);

  /* ------- [ D-2 to M-2 ] - [ gl-s2 ] ------- */
  --gb_space_1_max: var(--space_base_unit) * 1;
  --gb_space_1_min: var(--space_base_unit) * 1;
  --gb_space_1: clamp(
    var(--gb_space_1_min),
    calc(0.125rem + ((1vw - 7.68px) * 0)),
    var(--gb_space_1_max)
  );

  /* ------- [ D-4 to M-4] - [ gl-s4] ------- */
  --gb_space_2_max: var(--space_base_unit) * 2;
  --gb_space_2_min: var(--space_base_unit) * 2;
  --gb_space_2: clamp(
    var(--gb_space_2_min),
    calc(0.25rem + ((1vw - 7.68px) * 0)),
    var(--gb_space_2_max)
  );

  /* ------- [ D-6 to M-6] - [ gl-s6] ------- */
  --gb_space_3_max: var(--space_base_unit) * 3;
  --gb_space_3_min: var(--space_base_unit) * 3;
  --gb_space_3: clamp(
    var(--gb_space_3_min),
    calc(0.375rem + ((1vw - 7.68px) * 0)),
    var(--gb_space_3_max)
  );

  /* ------- [ D-8 to M-8] - [ gl-s8] ------- */
  --gb_space_4_max: var(--space_base_unit) * 4;
  --gb_space_4_min: var(--space_base_unit) * 4;
  --gb_space_4: clamp(
    var(--gb_space_4_min),
    calc(0.5rem + ((1vw - 7.68px) * 0)),
    var(--gb_space_4_max)
  );

  /* ------- [ D-12 to M-10] - [ gl-s12] ------- */
  --gb_space_5_max: var(--space_base_unit) * 6;
  --gb_space_5_min: var(--space_base_unit) * 5;
  --gb_space_5: clamp(
    var(--gb_space_5_min),
    calc(0.625rem + ((1vw - 7.68px) * 0.3436)),
    var(--gb_space_5_max)
  );

  /* ------- [ D-16 to M-12] - [ gl-s16] ------- */
  --gb_space_6_max: var(--space_base_unit) * 8;
  --gb_space_6_min: var(--space_base_unit) * 6;
  --gb_space_6: clamp(
    var(--gb_space_6_min),
    calc(0.75rem + ((1vw - 7.68px) * 0.6873)),
    var(--gb_space_6_max)
  );

  /* ------- [ D-20 to M-16] - [ gl-s20] ------- */
  --gb_space_7_max: var(--space_base_unit) * 10;
  --gb_space_7_min: var(--space_base_unit) * 8;
  --gb_space_7: clamp(
    var(--gb_space_7_min),
    calc(1rem + ((1vw - 7.68px) * 0.6873)),
    var(--gb_space_7_max)
  );

  /* ------- [ D-24 to M-20] - [ gl-s24] ------- */
  --gb_space_8_max: var(--space_base_unit) * 12;
  --gb_space_8_min: var(--space_base_unit) * 10;
  --gb_space_8: clamp(
    var(--gb_space_8_min),
    calc(1.25rem + ((1vw - 7.68px) * 0.6873)),
    var(--gb_space_8_max)
  );

  /* ------- [ D-28 to M-24] - [ gl-s28] ------- */
  --gb_space_19_max: var(--space_base_unit) * 14;
  --gb_space_19_min: var(--space_base_unit) * 12;
  --gb_space_19: clamp(
    var(--gb_space_19_min),
    calc(1.5rem + ((1vw - 7.68px) * 0.6873)),
    var(--gb_space_19_max)
  );

  /* ------- [ D-30 to M-24] - [ gl-s30] ------- */
  --gb_space_9_max: var(--space_base_unit) * 15;
  --gb_space_9_min: var(--space_base_unit) * 12;
  --gb_space_9: clamp(
    var(--gb_space_9_min),
    calc(1.5rem + ((1vw - 7.68px) * 1.0309)),
    var(--gb_space_9_max)
  );

  /* ------- [ D-36 to M-30] - [ gl-s36] ------- */
  --gb_space_10_max: var(--space_base_unit) * 18;
  --gb_space_10_min: var(--space_base_unit) * 15;
  --gb_space_10: clamp(
    var(--gb_space_10_min),
    calc(1.875rem + ((1vw - 7.68px) * 1.0309)),
    var(--gb_space_10_max)
  );

  /* ------- [ D-48 to M-36] - [ gl-s48] ------- */
  --gb_space_11_max: var(--space_base_unit) * 24;
  --gb_space_11_min: var(--space_base_unit) * 18;
  --gb_space_11: clamp(
    var(--gb_space_11_min),
    calc(2.25rem + ((1vw - 7.68px) * 2.0619)),
    var(--gb_space_11_max)
  );

  /* ------- [ D-72 to M-44] - [ gl-s72] ------- */
  --gb_space_12_max: var(--space_base_unit) * 36;
  --gb_space_12_min: var(--space_base_unit) * 22;
  --gb_space_12: clamp(
    var(--gb_space_12_min),
    calc(2.75rem + ((1vw - 7.68px) * 4.811)),
    var(--gb_space_12_max)
  );

  /* ------- [ D-96 to M-52] - [ gl-s96] ------- */
  --gb_space_13_max: var(--space_base_unit) * 48;
  --gb_space_13_min: var(--space_base_unit) * 26;
  --gb_space_13: clamp(
    var(--gb_space_13_min),
    calc(3.25rem + ((1vw - 7.68px) * 7.5601)),
    var(--gb_space_13_max)
  );

  /* ------- [ D-128 to M-64] - [ gl-s128] ------- */
  --gb_space_14_max: var(--space_base_unit) * 64;
  --gb_space_14_min: var(--space_base_unit) * 32;
  --gb_space_14: clamp(
    var(--gb_space_14_min),
    calc(4rem + ((1vw - 7.68px) * 10.9966)),
    var(--gb_space_14_max)
  );

  /* ------- [ D-156 to M-72] - [ gl-s156] ------- */
  --gb_space_15_max: var(--space_base_unit) * 78;
  --gb_space_15_min: var(--space_base_unit) * 36;
  --gb_space_15: clamp(
    var(--gb_space_15_min),
    calc(4.5rem + ((1vw - 7.68px) * 14.433)),
    var(--gb_space_15_max)
  );

  /* ------- [ D-200 to M-84] - [ gl-s200] ------- */
  --gb_space_16_max: var(--space_base_unit) * 100;
  --gb_space_16_min: var(--space_base_unit) * 42;
  --gb_space_16: clamp(
    var(--gb_space_16_min),
    calc(5.25rem + ((1vw - 7.68px) * 19.9313)),
    var(--gb_space_16_max)
  );

  /* ------- [ D-236 to M-98] - [ gl-s236] ------- */
  --gb_space_17_max: var(--space_base_unit) * 118;
  --gb_space_17_min: var(--space_base_unit) * 49;
  --gb_space_17: clamp(
    var(--gb_space_17_min),
    calc(6.125rem + ((1vw - 7.68px) * 23.7113)),
    var(--gb_space_17_max)
  );

  /* ------- [ D-60 to M-40] - [ gl-s60] ------- */
  --gb_space_18_max: var(--space_base_unit) * 30;
  --gb_space_18_min: var(--space_base_unit) * 20;
  --gb_space_18: clamp(
    var(--gb_space_18_min),
    calc(2.5rem + ((1vw - 7.68px) * 3.4364)),
    var(--gb_space_18_max)
  );
}

p {
  margin: 0 0 30px;

  &:last-child {
    margin: 0 0 0;
  }
}

body {
  position: relative;
  margin: 0;
  padding: 0;
  font-family: var(--inter);
}

@media (min-width: 1400px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1280px;
  }
}
.container-fluid {
  padding-left: 30px;
  padding-right: 30px;
}

h1,
h2,
h3,
h4,
h5,
.h0,
.h1,
.h2,
.h3,
.h4,
.h5 {
  font-family: var(--inter);
  word-break: break-word;
  font-weight: 500;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 30px 0;
  color: var(--endeavour);
}

h1,
.heading_h1 {
  font-size: clamp(50px, calc(3.125rem + ((1vw - 7.68px) * 5.1546)), 80px);
  line-height: 106.25%;
  letter-spacing: -3.2px;
}
@media (max-width: 767px) {
  h1,
  .heading_h1 {
    font-weight: 500;
    line-height: 110%;
    letter-spacing: -1.52px;
    font-size: 38px;
  }
}

h2,
.heading_h2 {
  font-size: clamp(42px, calc(2.625rem + ((1vw - 7.68px) * 2.4055)), 56px);
  line-height: 100%;
  letter-spacing: -2px;
}
@media (max-width: 767px) {
  h2,
  .heading_h2 {
    font-size: 33px;
  }
}

h3,
.heading_h3 {
  font-size: clamp(36px, calc(2.25rem + ((1vw - 7.68px) * 1.0309)), 42px);
  letter-spacing: -0.84px;
}

h4,
.heading_h4 {
  font-size: clamp(28px, calc(1.75rem + ((1vw - 7.68px) * 1.0309)), 34px);
  line-height: 110%;
  letter-spacing: -1px;
}

h5,
.heading_h5 {
  font-size: clamp(24px, calc(1.5rem + ((1vw - 7.68px) * 0.6873)), 28px);
  letter-spacing: -0.56px;
  @media (max-width: 767px) {
    letter-spacing: -0.48px;
  }
}

h6,
.heading_h6 {
  font-size: clamp(20px, calc(1.25rem + ((1vw - 7.68px) * 0.6873)), 24px);
  letter-spacing: -0.48px;
}

.text-22 {
  font-size: 22px;
  font-weight: 400;
  line-height: 140%;
}
@media (max-width: 767px) {
  .text-22,
  .text-22 p {
    font-size: 18px;
  }
}

.eyebrow-title {
  font-size: 14px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.56px;
  text-transform: uppercase;
  color: var(--endeavour);
}

a {
  color: var(--endeavour);
  transition: all 0.3s ease-in-out;
}
a:hover {
  text-decoration: none;
}

.bg-endeavour {
  background-color: var(--endeavour);
}
.bg-dark-blue {
  background-color: var(--dark-blue);
}

header ul,
header ol,
footer ul,
footer ol {
  list-style: none;
}

/* Description List */
dl {
  margin: 0 0 30px;
}

dl dt {
  font-weight: 700;
}

dl dd {
  margin: 0 0 12px;
}

ul,
ol {
  margin: 0 0 30px 20px;
}
ul:last-child,
ol:last-child {
  margin-bottom: 0;
}

ul li,
ol li {
  margin: 0 0 20px;
  box-sizing: border-box;
}

@media (max-width: 767px) {
  ul li,
  ol li {
    margin: 0 0 16px;
  }
}

ul li:last-child,
ol li:last-child {
  margin-bottom: 0;
}

ul ul,
ol ol,
ul ol,
ol ul {
  margin: 12px 0 0 30px;
}

.page-section ul {
  list-style: none;
  margin-left: 0;
}

.page-section ul ul,
.page-section ul ol {
  margin-left: 13px;
}

.page-section ul li {
  padding-left: 38px;
  position: relative;
}

@media (max-width: 767px) {
  .page-section ul li {
    padding-left: 35px;
  }
}

.page-section ul li::before {
  content: "";
  width: 24px;
  height: 2px;
  background-position: left top;
  position: absolute;
  background-color: var(--endeavour);
  left: 0;
  top: 14px;
}

@media (max-width: 767px) {
  .page-section ul li::before {
    width: 20px;
  }
}

.page-section ul ol {
  counter-reset: list1;
}

.page-section ul ol > li::before {
  counter-increment: list1;
  content: counters(list1, ".") ".";
}

.page-section ol {
  counter-reset: list;
  list-style-type: none;
  margin-left: 0;
}

.page-section ol ol,
.page-section ol ul {
  margin-left: 13px;
}

.page-section ol > li {
  position: relative;
  padding-left: 25px;
}

.page-section ol > li::marker {
  display: none;
}

.page-section ol > li::before {
  color: var(--endeavour);
  font-family: var(--inter);
  font-weight: normal;
  content: counters(list, ".") ".";
  counter-increment: list;
  left: 0;
  top: 0;
  position: absolute;
  background-color: transparent;
}

.page-section ol ol li {
  padding-left: 34px;
}

.page-section ol ol ol li {
  padding-left: 64px;
}

.page-section ol ol ol ol li {
  padding-left: 80px;
}

.page-section ol ul {
  counter-reset: unset;
}

.page-section ol ul li {
  padding-left: 38px;
  position: relative;
}

.page-section ol ul li::before {
  content: "";
  width: 24px;
  height: 2px;
  background-position: left top;
  position: absolute;
  background-color: var(--gb_list_ul_marker_color);
  left: 0;
  top: 14px;
}

img {
  height: auto;
  max-width: 100%;
  width: 100%;
}

a img {
  border: none;
  margin-bottom: 0;
  outline: none;
  width: 100%;
}

figure {
  margin: 0 0 30px;
}

figure figcaption {
  color: var(--black);
  font-size: 90%;
  margin: 0 0 30px;
}

picture {
  display: flex;
  margin: 0;
  width: 100%;
}

svg {
  margin: 0 0 30px;
}

.gallery .gallery-item a {
  border-bottom: none;
}

figure.wp-block-image.alignfull.size-thumbnail {
  margin-left: calc(-100vw / 2 + 100% / 2);
  margin-right: calc(-100vw / 2 + 100% / 2);
  max-width: 100vw;
}

figure.wp-block-image.alignwide.size-thumbnail {
  margin: 0 -200px;
  max-width: 140%;
}

embed,
iframe,
object {
  max-width: 100%;
}

/*Header*/
.header-wrapper {
  padding: 0;
}
.header-wrapper .row {
  align-items: center;
}
.logo {
  display: flex;
}
.logo a {
  display: block;
}
.logo a.site-logo img {
  height: clamp(28px, calc(1.75rem + ((1vw - 7.68px) * 0.5155)), 31px);
  width: 100%;
}

.header-btns .site-btn {
  padding: 10px 20px;
}

.navbar {
  padding: 0;
  margin-left: 40px;
}

ul.navbar-nav {
  margin: 0;
}
.header-menu .header-menu-list {
  display: flex;
  margin: 0;
  list-style: none;
}
.navbar ul.navbar-nav li.nav-item,
.header-menu .header-menu-list .menu-item {
  position: relative;
  transition: all 200ms linear;
  margin: 0 40px 0 0;
}
.navbar ul.navbar-nav li.nav-item:last-child,
.header-menu .header-menu-list .menu-item:last-child {
  margin-left: 0;
}
.navbar ul.navbar-nav li.nav-item > a.nav-link,
.header-menu .header-menu-list .menu-item > a {
  font-size: 16px;
  color: var(--endeavour);
  text-transform: uppercase;
  font-weight: 600;
  line-height: 125%;
  letter-spacing: 1.92px;
  padding: 30px 0;
}
.header-menu .header-menu-list .menu-item > a {
  display: block;
}
.navbar-brand img {
  height: 28px;
  width: auto;
  display: block;
  filter: brightness(10%);
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.navbar-toggler {
  float: right;
  border: none;
  padding-right: 0;
}
.navbar-toggler:active,
.navbar-toggler:focus {
  outline: none;
}
.navbar-light .navbar-toggler-icon {
  /* width: 24px;
  height: 17px; */
  background-image: none;
  position: relative;
  /* border-bottom: 1px solid #000; */
  /* transition: all 300ms linear; */
  background-image: url("./images/menu-toggle-icon.svg");
  background-size: 16px;
  background-repeat: no-repeat;
  width: 16px;
  height: 16px;
}
/* .navbar-light .navbar-toggler-icon:after,
.navbar-light .navbar-toggler-icon:before {
  width: 24px;
  position: absolute;
  height: 1px;
  background-color: #000;
  top: 0;
  left: 0;
  content: "";
  z-index: 2;
  transition: all 300ms linear;
}
.navbar-light .navbar-toggler-icon:after {
  top: 8px;
} */
.nav-item:after,
.header-menu .header-menu-list .menu-item:after {
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 4px;
  content: "";
  background-color: var(--laser-lemon);
  opacity: 0;
  transition: all 200ms linear;
}
.nav-item:hover:after,
.header-menu .header-menu-list .menu-item:hover:after {
  bottom: 0;
  opacity: 1;
}

.nav-item .dropdown-menu {
  transform: translate3d(0, 10px, 0);
  visibility: hidden;
  opacity: 0;
  max-height: 0;
  display: block;
  padding: 0 0 15px 0;
  margin: 0;
  transition: all 200ms linear;
}
.nav-item.show .dropdown-menu {
  opacity: 1;
  visibility: visible;
  max-height: 999px;
  transform: translate3d(0, 0px, 0);
}
.dropdown-menu {
  padding: 0 0 15px 0;
  margin: 0;
  font-size: 16px;
  letter-spacing: 1px;
  background-color: var(--white);
  border: none;
  border-radius: 3px;
  box-shadow: 0 5px 10px 0 rgba(138, 155, 165, 0.15);
  transition: all 200ms linear;
}
.dropdown-toggle::after {
  display: none;
}

.dropdown-item {
  padding: 15px 15px 0 15px;
  color: var(--endeavour);
  font-weight: 600;
  transition: all 200ms linear;
}
.dropdown-item:hover,
.dropdown-item:focus {
  color: var(--endeavour);
  background-color: transparent;
}

.header-btns {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.header-btns .phone-row {
  display: flex;
  align-items: center;
  margin-right: 19px;
}
.header-btns .phone-row {
  font-size: 16px;
  line-height: 125%;
  letter-spacing: 0.16px;
  font-weight: 600;
}
.header-btns .phone-row a:hover {
  color: var(--black);
}

.header-btns .phone-row .img-block {
  width: 40px;
  height: 40px;
  overflow: hidden;
  border-radius: 100%;
  border: 1px solid var(--jordy-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
}
.header-btns .phone-row .img-block img {
  width: 16px;
  height: 16px;
}
.header-btns .outline-btn {
  margin-right: 9px;
}
body .header-btns .site-btn {
  font-size: 16px;
  line-height: 125%;
  letter-spacing: 0.16px;
  font-weight: 600;
  padding: 9px 20px;
}

.header-btns.desktop-hide {
  display: none;
}
.navbar.desktop-menu-hide {
  display: none;
}
body.new-overlay {
  width: 100%;
  position: fixed;
  display: inline-block;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}
body.new-overlay:before {
  background: rgba(0, 0, 0, 0.8);
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
  transition: all 0.3s ease-in-out;
}
@media (min-width: 1200px) {
  .header-menu .header-menu-list .menu-item.desktop-hide {
    display: none;
  }
}
@media (max-width: 1199px) {
  .header-wrapper {
    padding: 20px 0;
  }
  .navbar {
    margin-left: 0;
  }
  .header-wrapper .col-lg-4 {
    display: none;
  }
  .header-wrapper .col-lg-2 {
    max-width: 27%;
    flex: 0 0 27%;
  }
  .header-wrapper .col-lg-6 {
    max-width: 73%;
    flex: 0 0 73%;
  }
  .navbar.mobile-hide {
    display: none;
  }
  .navbar.desktop-menu-hide {
    display: block;
  }
  .navbar.navbar-expand-md .navbar-nav {
    -ms-flex-direction: row;
    flex-direction: column;
    width: 100%;
    align-self: flex-start;
  }
  .navbar.navbar-expand-md ul.navbar-nav li {
    margin: 0;
  }
  .navbar.navbar-expand-md ul.navbar-nav li.nav-item:after {
    display: none;
  }
  .navbar.navbar-expand-md ul.navbar-nav li.nav-item > a.nav-link {
    padding-bottom: 10px;
    padding-top: 0;
  }
  .navbar.navbar-expand-md ul.navbar-nav li.nav-item:last-child a {
    padding-bottom: 0;
  }
  .navbar-expand-md .navbar-collapse {
    display: -ms-flexbox !important;
    display: none !important;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }
  .navbar-expand-md .navbar-collapse {
    display: block !important;
    position: fixed;
    left: auto;
    background: var(--endeavour);
    z-index: 9;
    top: 0;
    width: 100%;
    max-width: 380px;
    right: -100%;
    height: 100%;
    transition: all 0.3s ease-in-out;
    padding: 60px 20px 20px 20px;
  }
  .navbar-expand-md .navbar-collapse.show {
    right: 0;
    transition: all 0.3s ease-in-out;
  }
  .navbar-expand-md .navbar-toggler {
    display: block;
    position: relative;
    z-index: 11;
    background: transparent;
    min-width: auto;
    /* padding: 4px 4px 4px 12px; */
    border-radius: 40px;
    border: 1px solid #8bb4df;
    background: #e8ff64;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin-left: 10px;
  }
  .navbar-expand-md .navbar-toggler.active .navbar-toggler-icon:before {
    transform: translateY(8px) rotate(-45deg);
  }

  .navbar-expand-md .navbar-toggler.active .navbar-toggler-icon:after {
    transform: rotate(45deg);
  }
  .navbar-expand-md .navbar-toggler.active .navbar-toggler-icon {
    border-color: transparent;
  }
  .navbar-expand-md:has(.show) .navbar-toggler .navbar-toggler-icon {
    background-image: url("./images/menu-close-icon.svg");
  }
  .header-menu .header-menu-list {
    flex-direction: column;
    width: 100%;
    align-self: flex-start;
  }
  .header-menu .header-menu-list .menu-item {
    margin: 0;
  }
  .header-menu .header-menu-list .menu-item > a {
    padding-bottom: 10px;
    padding-top: 0;
    display: block;
  }
  /*.navbar .navbar-toggler:not(.collapsed) .navbar-toggler-icon {
    border-color: transparent;
  }
  .navbar .navbar-toggler:not(.collapsed) .navbar-toggler-icon:before {
    transform: translateY(8px) rotate(-45deg);
  }
  .navbar .navbar-toggler:not(.collapsed) .navbar-toggler-icon:after {
    transform: rotate(45deg);
  }*/
  .navbar ul.navbar-nav li.nav-item > a.nav-link,
  .header-menu .header-menu-list .menu-item > a {
    line-height: 200%;
    letter-spacing: 3.36px;
    font-size: 28px;
    color: #d9d9d9;
    padding-bottom: 0 !important;
    font-weight: 500;
  }
}
@media (max-width: 767px) {
  .navbar-expand-md .navbar-toggler {
    margin-left: 0;
  }
  .navbar .header-menu {
    margin-bottom: 30px;
  }
  .header-btns.mobile-hide .phone-row,
  .header-btns.mobile-hide .site-btn {
    display: none;
  }
  .header-btns.desktop-hide {
    display: block;
    width: 100%;
  }
  .header-btns.mobile-hide .phone-row {
    display: block;
    position: relative;
    margin: 0;
  }
  .header-wrapper .container-fluid {
    padding-left: 15px;
    padding-right: 10px;
  }
  .header-btns.mobile-hide .phone-row a {
    position: absolute;
    top: 0;
    opacity: 0;
    height: 40px;
    width: 40px;
    overflow: hidden;
    transition: none;
  }
  .header-btns.mobile-hide .phone-row .img-block {
    margin-right: 5px;
  }
  .header-btns.desktop-hide .phone-row,
  .header-btns.desktop-hide .site-btn {
    display: flex;
    margin: 0 0 20px 0;
  }
  .header-btns.desktop-hide .site-btn {
    font-size: 22px;
    font-weight: 600;
    line-height: 125%;
    letter-spacing: 0.22px;
    padding: 15px 30px;
  }
  .header-btns.desktop-hide .site-btn.outline-btn {
    color: #fff;
  }
  .header-btns.desktop-hide .site-btn.outline-btn::after {
    filter: brightness(0) saturate(100%) invert(100%) sepia(7%) saturate(1%)
      hue-rotate(189deg) brightness(113%) contrast(101%);
  }
  .navbar.navbar-expand-md ul.navbar-nav,
  .header-menu .header-menu-list {
    margin-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 24px;
  }
  .hero-section .col-right {
    padding-top: 42px;
  }
  .header-wrapper .col-lg-2 {
    max-width: 80%;
    flex: 0 0 80%;
  }
  .header-wrapper .col-lg-6 {
    max-width: 20%;
    flex: 0 0 20%;
  }
  .header-btns.desktop-hide .phone-row a {
    position: static;
    opacity: 1;
    width: auto;
    height: auto;
    font-size: 28px;
    color: #fff;
    line-height: 125%;
    letter-spacing: 0.28px;
    font-weight: 500;
  }
  .header-btns.desktop-hide .phone-row .img-block {
    margin-right: 8px;
  }
  .header-btns.desktop-hide .phone-row .img-block img {
    width: 16px;
    height: 16px;
    filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(2%)
      hue-rotate(85deg) brightness(108%) contrast(101%);
  }
}

/* Button Styles */
.site-btn {
  outline: none;
  overflow: hidden;
  position: relative;
  text-align: center;
  text-decoration: none;
  transition: 0.35s;
  display: inline-flex;
  padding: 15px 30px;
  justify-content: center;
  align-items: center;
  gap: 7px;
  border-radius: 10px;
  border: 1px solid var(--jordy-blue);
  background: var(--laser-lemon);
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: 125%;
  letter-spacing: 0.22px;
  transition: all 0.2s ease-in-out;
}
.site-btn:hover {
  background: var(--white);
  color: var(--black);
  transition: all 0.2s ease-in-out;
}
.site-btn.outline-btn {
  border: 1px solid var(--jordy-blue);
  background-color: transparent;
  padding: 10px 20px;
  font-weight: 500;
  transition: all 0.2s ease-in-out;
}
.site-btn.outline-btn:hover {
  background: var(--laser-lemon);
  color: var(--black);
  transition: all 0.2s ease-in-out;
}
.site-btn.small {
  padding: 10px 20px;
  font-weight: 500;
  transition: all 0.2s ease-in-out;
}
.site-btn.with-arrow::after {
  background-image: url("./images/arrow-left.svg");
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  width: 20px;
  height: 20px;
  transition: all 0.2s ease-in-out;
}
.site-btn.with-arrow:hover::after {
  filter: brightness(0);
  transition: all 0.2s ease-in-out;
}
button[disabled] {
  background-color: #dddddd;
  border: none;
  color: #999999;
  cursor: not-allowed;
  opacity: 0.6;
}

button[disabled]:hover {
  background-color: #dddddd;
}
.two-btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
@media (max-width: 767px) {
  .two-btn-row {
    gap: 16px;
  }
}

/* spacer */
.is-style-gl-s2,
.gl-s2 {
  height: var(--gb_space_1) !important;
}

.is-style-gl-s4,
.gl-s4 {
  height: var(--gb_space_2) !important;
}

.is-style-gl-s6,
.gl-s6 {
  height: var(--gb_space_3) !important;
}

.is-style-gl-s8,
.gl-s8 {
  height: var(--gb_space_4) !important;
}

.is-style-gl-s12,
.gl-s12 {
  height: var(--gb_space_5) !important;
}

.is-style-gl-s16,
.gl-s16 {
  height: var(--gb_space_6) !important;
}

.is-style-gl-s20,
.gl-s20 {
  height: var(--gb_space_7) !important;
}

.is-style-gl-s24,
.gl-s24 {
  height: var(--gb_space_8) !important;
}

.is-style-gl-s28,
.gl-s28 {
  height: var(--gb_space_19) !important;
}

.is-style-gl-s30,
.gl-s30 {
  height: var(--gb_space_9) !important;
}

.is-style-gl-s26,
.gl-s36 {
  height: var(--gb_space_10) !important;
}

.is-style-gl-s48,
.gl-s48 {
  height: var(--gb_space_11) !important;
}

.is-style-gl-s60,
.gl-s60 {
  height: var(--gb_space_18) !important;
}

.is-style-gl-s72,
.gl-s72 {
  height: var(--gb_space_12) !important;
}

.is-style-gl-s96,
.gl-s96 {
  height: var(--gb_space_13) !important;
}

.is-style-gl-s128,
.gl-s128 {
  height: var(--gb_space_14) !important;
}

.is-style-gl-s156,
.gl-s156 {
  height: var(--gb_space_15) !important;
}

.is-style-gl-s200,
.gl-s200 {
  height: var(--gb_space_16) !important;
}

.is-style-gl-s236,
.gl-s236 {
  height: var(--gb_space_17) !important;
}
/* endspacer */

/* hero banner */
.hero-section {
  background-color: var(--endeavour);
  padding-top: 119px;
  position: relative;
  overflow: hidden;
  padding-bottom: 29px;
}
.hero-section:before {
  content: "";
  width: 635.098px;
  height: 611.682px;
  border-radius: 635.098px;
  background: #172b63;
  filter: blur(200px);
  position: absolute;
  left: -190px;
  transform: rotate(-53.399deg);
  bottom: -204px;
  z-index: 0;
}
.hero-section::after {
  content: "";
  width: 543.785px;
  height: 523.736px;
  transform: rotate(-53.399deg);
  border-radius: 543.785px;
  background: #172b63;
  filter: blur(150px);
  position: absolute;
  top: -300px;
  right: -80px;
}
.hero-section .col-left,
.hero-section .col-right {
  position: relative;
  z-index: 1;
}
.white-bg-line {
  background: #fff;
  width: 100%;
  height: 29px;
  position: absolute;
  bottom: 0;
}
.hero-section .col-right {
  align-self: flex-end;
  margin-bottom: -29px;
}
.hero-section .eyebrow {
  color: var(--white);
}
.hero-section .block-title {
  color: var(--white);
  margin: 0;
}
.hero-section .block-description {
  color: #fff;
  max-width: 560px;
}
.hero-section .block-description p strong {
  color: #fff !important;
}
.image-with-shape {
  position: relative;
  display: flex;
  justify-content: flex-end;
  margin-right: -22px;
}
.hero-section .shape {
  background: linear-gradient(135deg, #8bb4df 4.7%, #cde2fa 74.86%);
  width: 498px;
  height: 520px;
  border-radius: 0px 200px 0px 0px;
}
.hero-section .image {
  position: absolute;
  bottom: 0;
  right: -60px;
  width: 578px;
}
.hero-section .image img {
  aspect-ratio: 760 / 742;
  object-fit: contain;
}
.line-shape {
  position: relative;
  display: inline-block;
}
.line-shape::before {
  content: "";
  position: absolute;
  background-image: url("./images/text-shape.svg");
  background-repeat: no-repeat;
  height: 100%;
  width: calc(100% + 45px);
  left: -15px;
  background-position: bottom left;
  top: 5px;
  background-size: clamp(
    119px,
    calc(7.4375rem + ((1vw - 7.68px) * 25.0859)),
    265px
  );
}
/* end hero banner */
.our-service-block {
  padding-bottom: 116px;
}
.our-service-block .block-row .block-title {
  padding-top: 18px;
  margin: 0;
}
.our-service-block .block-row .col-right,
.deal-section-block .block-row .col-right {
  text-align: right;
}
.our-service-block .block-row .row,
.deal-section-block .block-row .row {
  align-items: center;
}
.our-service-cards {
  padding-top: 53px;
}
.our-service-cards .card-item {
  border-radius: 24px;
  background: #f6fbd9;
  padding: 65px 98px 46px 56px;
  position: relative;
  height: 100%;
  min-height: 307px;
}
.our-service-cards .description {
  padding-top: 24px;
  font-size: 18px;
  font-weight: 500;
  line-height: 150%;
  color: var(--midnight-blue);
  max-width: 478px;
}
.our-service-cards .card-block .icon img {
  aspect-ratio: 70/75;
  object-fit: contain;
  position: relative;
  top: -11px;
  right: -7px;
  width: 78px;
  height: 83px;
  object-fit: contain;
}
.our-service-cards .card-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.our-service-cards .card-block .card-title {
  color: var(--endeavour);
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 0;
}
.our-service-cards .card-block .icon {
  width: 78px;
  height: 78px;
  background: rgba(192, 224, 9, 0.34);
  border-radius: 9999px;
  flex: 78px 0 0;
  position: absolute;
  right: 30px;
  top: 36px;
}
.our-service-cards .row > [class*="col-"] {
  padding: 0 15px;
  display: flex;
}
.our-service-cards .row {
  row-gap: 23px;
}
.ticker-block {
  padding: 39px 0 38px;
  /*overflow: hidden;*/
}
.ticker-block .ticker-item {
  display: flex;
  align-items: center;
  padding-right: 12px;
}
.ticker-block .ticker-item .icon {
  margin-left: 12px;
  width: 30px;
  height: 32px;
}
.ticker-block .ticker-item .title {
  line-height: 180%;
  letter-spacing: -0.44px;
  color: #fff;
}
.ticker-block .ticker-item .icon img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.mid-page-cta {
  overflow: hidden;
  padding-top: 14px;
  position: relative;
}
.mid-page-cta .star-icon {
  margin-bottom: 20px;
  width: 27px;
  height: 30px;
}
.mid-page-cta .heading-title {
  color: #fff;
  font-weight: 500;
  max-width: 659px;
}
.mid-page-cta .block-btn {
  margin-top: 40px;
}
.mid-page-cta .row {
  flex-wrap: nowrap;
  align-items: center;
}
.mid-page-cta .col-left {
  padding-top: 66px;
  padding-bottom: 83px;
}
.mid-page-cta .col-right {
  align-self: flex-end;
}
.mid-page-cta .col-right .image {
  width: 778px;
  margin-left: -240px;
  margin-top: -14px;
  position: relative;
}
.mid-page-cta .col-right .image img {
  opacity: 0.9;
  width: 778px;
  aspect-ratio: 778 / 425;
  object-fit: contain;
}

.mid-page-cta .col-right .image:before {
  content: "";
  width: 635.098px;
  height: 611.682px;
  transform: rotate(-53.399deg);
  border-radius: 635.098px;
  background: rgba(255, 255, 255, 0.2);
  filter: blur(100px);
  position: absolute;
  top: -110px;
  left: 115px;
}
.white-bg-line-small {
  position: absolute;
  top: 0;
  height: 14px;
  background: #fff;
  width: 100%;
}

/* Deal section start */

.deal-section-block {
  background: rgba(232, 239, 254, 0.69);
  padding: 93px 0 121px;
  position: relative;
  overflow: hidden;
}
.deal-section-block::before {
  content: "";
  border-radius: 979.896px;
  background: rgba(132, 187, 239, 0.4);
  filter: blur(150px);
  width: 979.896px;
  height: 943.768px;
  transform: rotate(-53.399deg);
  position: absolute;
  right: 0;
  bottom: 0;
}
.deal-section-block .deals-card {
  padding-top: 34px;
}
.deals-card .row > [class*="col-"] {
  padding: 0 17px;
}
.deal-section-block .block-title {
  line-height: 110%;
  margin-bottom: 0;
  letter-spacing: -1px;
}
.img-card-item {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  padding: 37px 0 35px 46px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.img-card-item .bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.bg-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.img-card-block {
  padding: 0 10px 85px 0;
  max-width: 290px;
}

.img-card-block::before {
  content: "";
  border-radius: 420px;
  border: 4px solid #c0e009;
  background: rgba(255, 255, 255, 0.65);
  position: absolute;
  top: -135px;
  left: -90px;
  width: 420px;
  height: 420px;
}
.img-card-block .card-heading {
  color: var(--endeavour);
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 36px;
  /* margin-bottom: 8px; */
  position: relative;
  max-width: 255px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.img-card-block .card-title {
  color: var(--endeavour);
  font-weight: 900;
  /* margin-bottom: 10px; */
  position: relative;
  letter-spacing: 0;
  line-height: 120%;
  margin: 0;
}
.img-card-block .card-img-subtitle {
  font-size: 24px;
  font-style: normal;
  font-weight: 900;
  line-height: 120%;
  color: #233f8d;
  position: relative;
  width: 221px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.img-card-block .terms-title {
  font-size: 12px;
  font-style: italic;
  font-weight: 400;
  line-height: normal;
  color: var(--endeavour);
  display: block;
  position: relative;
}
.img-card-block .site-btn {
  margin-top: 15px;
}
.img-card-block .card-title.sub-heading {
  font-size: 24px;
  max-width: 215px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.img-card-block .outline-btn {
  border-radius: 30px;
}
.img-card-block .outline-btn {
  font-size: 18px;
  line-height: 125%;
  letter-spacing: 0.36px;
}
.testimonial-block {
  padding: 13px 0 10px;
}
.testimonial-card-block {
  padding: 44px 0 0;
}
.testimonial-card-block .swiper-wrapper {
  height: auto;
}
.testimonial-block .block-title {
  line-height: 110%;
  letter-spacing: -1px;
}
.testimonial-card {
  border-radius: 24px;
  border: 1px solid var(--endeavour);
  padding: 43px 31px 21px 31px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.testimonial-card .rating-img {
  margin-bottom: 18px;
}
.testimonial-card .rating-img img {
  max-width: 130px;
  height: 16.96px;
  object-fit: contain;
}
.testimonial-card-block .row > [class*="col-"] {
  padding: 0 14px;
  display: flex;
}
.testimonial-card p {
  color: var(--endeavour);
  font-size: 18px;
  font-weight: 400;
  line-height: 28.8px;
  text-transform: capitalize;
  margin-bottom: 21px;
}
.testimonial-card .auther-detail {
  flex-grow: 1;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
}
.testimonial-card .auther-img {
  width: 51px;
  height: 51px;
  background-color: var(--light-goldenrod-yellow);
  border: 2px solid var(--inch-worm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 8px;
  border-radius: 50px;
}
.testimonial-card .auther-img span {
  display: inline-block;
  color: var(--sapphire);
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  line-height: normal;
  text-transform: capitalize;
}
.testimonial-card .auther-location {
  display: inline-block;
  color: var(--endeavour);
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
}
.testimonial-block .block-btn {
  display: none;
}
.variable-swiper-slider {
  overflow: inherit;
}
.variable-swiper-slider .swiper-wrapper {
  transition-timing-function: linear !important;
  height: auto;
}
.variable-swiper-slider .swiper-slide {
  flex-shrink: 0;
  width: -moz-fit-content !important;
  width: fit-content !important;
}
.slider-arrow {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 32px;
}

.slider-arrow .swiper-button-next,
.slider-arrow .swiper-button-prev {
  position: inherit;
}

.slider-arrow .swiper-button-next.swiper-button-disabled,
.slider-arrow .swiper-button-prev.swiper-button-disabled {
  background: rgba(255, 255, 255, 0.5);
  opacity: 0.35;
}

.slider-arrow .cta-btn-arrow {
  width: 56px;
  height: 56px;
  border-radius: 9999px;
  background: var(--gb_white);
  opacity: 1;
  color: var(--gb_white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  margin: 0;
  transition: all 0.3s ease-out;
  border: 1px solid #233f8d;
}

.slider-arrow .cta-btn-arrow:after {
  font-size: 0;
  font-weight: 400;
  left: 2px;
  position: relative;
  background-image: url(./images/arrow-left-slider.svg);
  background-repeat: no-repeat;
  background-size: 24px;
  width: 24px;
  height: 24px;
  display: block;
}

.slider-arrow .cta-btn-arrow.swiper-button-prev:after {
  left: 0;
}

.slider-arrow .cta-btn-arrow.swiper-button-next:after {
  transform: scale(-1);
}

.slider-arrow .cta-btn-arrow:hover {
  background: var(--endeavour);
}

.slider-arrow .cta-btn-arrow:hover::after {
  filter: brightness(0) saturate(100%) invert(100%) sepia(7%) saturate(1%)
    hue-rotate(189deg) brightness(113%) contrast(101%);
}
.testimonial-card-block:has(.slider-arrow) {
  padding: 21px 0 0;
}

/**/

.ticker-block .swiper-wrapper {
  transition-timing-function: linear !important;
  height: auto;
}

.ticker-block .swiper-wrapper .swiper-slide {
  flex-shrink: 0;
  width: -moz-fit-content !important;
  width: fit-content !important;
  height: auto;
}
/**/

/*Footer*/

.footer-section {
  padding: 92px 0 33px 0;
}
.footer-section .main-footer {
  padding-bottom: 104px;
}
.footer-section .main-footer .single-widget:first-child {
  flex: 433px 0 0;
}
.footer-section .main-footer .single-widget {
  flex: 212px 0 0;
}
.footer-section .logo-row .footer-logo {
  margin-bottom: 48px;
  display: flex;
}
.footer-section .logo-row .footer-logo a {
  display: block;
}
.footer-section .logo-row .footer-logo a.site-logo img {
  height: clamp(28px, calc(1.75rem + ((1vw - 7.68px) * 0.5155)), 31px);
  width: 100%;
}
.footer-section .logo-row .social-links a.phone {
  color: var(--primary-white-80);
  font-size: 24px;
  font-weight: 400;
  line-height: 125%;
  margin-bottom: 28px;
  display: block;
}
.footer-section .logo-row .social-links a.phone:hover {
  color: var(--white);
}
.footer-section .logo-row .social-links .social-icons ul {
  display: flex;
  margin: 0;
  padding: 0;
}
.footer-section .logo-row .social-links .social-icons ul li {
  padding-right: 20px;
}
.footer-section .logo-row .social-links .social-icons ul li:last-child {
  padding-right: 0;
}
.footer-section .logo-row .social-links .social-icons ul li a img {
  width: 22px;
  height: 22px;
  transition: all 0.3s ease-in-out;
}
.footer-section .logo-row .social-links .social-icons ul li a img:hover {
  opacity: 0.6;
  transition: all 0.3s ease-in-out;
}
.footer-section .footer-nav ul {
  margin: 0;
}
.footer-section .footer-nav ul li {
  padding-bottom: 22px;
  margin: 0;
}
.footer-section .footer-nav ul li:last-child {
  padding-bottom: 0;
}
.footer-section .footer-nav ul li a {
  color: var(--primary-white-60);
  font-size: 18px;
  font-weight: 400;
  line-height: 125%;
}
.footer-section .footer-nav ul li a:hover {
  color: var(--white);
}
.footer-section .footer-bottom .copy-right {
  color: var(--primary-white-60);
  font-size: 16px;
  font-weight: 400;
  line-height: 160%;
}
.footer-section .footer-bottom .legal-nav ul {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.footer-section .footer-bottom .legal-nav ul li {
  margin: 0;
  margin-right: 15px;
  padding-right: 15px;
  position: relative;
}
.footer-section .footer-bottom .legal-nav ul li:after {
  position: absolute;
  content: "";
  right: 0;
  border-right: 1px solid var(--primary-white-50);
  width: 1px;
  height: 12px;
  top: 8px;
}
.footer-section .footer-bottom .legal-nav ul li:last-child:after {
  display: none;
}
.footer-section .footer-bottom .legal-nav ul li:last-child {
  padding-right: 0;
  margin-right: 0;
}
.footer-section .footer-bottom .legal-nav ul li a {
  color: var(--primary-white-60);
  font-size: 16px;
  font-weight: 400;
  line-height: 125%;
}
.footer-section .footer-bottom .legal-nav ul li a:hover {
  color: var(--white);
}
.disclaimer p{
  font-size: 14px;
  line-height: 125%;
  color: var(--primary-white-60);
}

/**/
.img-card-block .site-btn::after {
  flex: 20px 0 0;
}
@media (max-width: 1350px) {
  .image-with-shape {
    margin-right: 0;
  }
}

@media (max-width: 1199px) {
  .hero-section .shape {
    height: 400px;
  }
  .hero-section .image {
    width: 448px;
  }
  .mid-page-cta .col-right .image {
    width: 748px;
    margin-left: -230px;
  }
  .mid-page-cta .col-right .image img {
    width: 838px;
  }
  .footer-section .main-footer .single-widget:first-child {
    flex: auto;
  }
  .footer-section .main-footer .single-widget {
    flex: auto;
  }
}
@media (min-width: 992px) {
  .img-card-block .site-btn {
    width: 191px;
  }
}
@media (max-width: 991px) {
  .image-with-shape {
    justify-content: flex-start;
  }
  .hero-section .shape {
    width: 388px;
  }
  .hero-section .image {
    right: auto;
    left: -8px;
  }
  .our-service-block {
    padding-bottom: 65px;
  }
  .our-service-block .block-row .block-title {
    margin-bottom: 30px;
  }
  .our-service-block .block-row .block-btn {
    text-align: left;
  }
  .our-service-cards {
    padding-top: 30px;
  }
  .our-service-cards .card-item {
    padding: 36px;
  }
  .our-service-cards .card-item .card-block {
    padding-right: 50px;
  }
  .our-service-cards .card-block .icon {
    width: 55px;
    height: 55px;
    flex: 55px 0 0;
    right: 10px;
    top: 16px;
  }
  .our-service-cards a:hover .card-block .card-title {
    text-decoration: underline;
    text-underline-offset: 10px;
    transition: all 0.3s ease-in-out;
  }
  .mid-page-cta .col-left {
    padding-top: 53px;
    padding-bottom: 53px;
  }
  .mid-page-cta .row {
    flex-wrap: wrap;
  }
  .mid-page-cta .col-right .image {
    margin-left: 0;
    width: auto;
  }
  .mid-page-cta .col-right .image img {
    width: auto;
  }
  .deal-section-block {
    padding: 60px 0;
  }
  .deal-section-block .block-title {
    margin-bottom: 30px;
  }
  .deal-section-block .block-btn {
    text-align: left;
  }
  .deal-section-block .deals-card {
    padding-top: 30px;
  }
  .deals-card .row > [class*="col-"] {
    padding: 17px;
  }

  .img-card-item {
    padding: 20px;
  }
  .img-card-block .card-heading {
    font-size: 26px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
  }
  .img-card-block .site-btn {
    margin-right: 10px;
  }
  .testimonial-card-block .row > [class*="col-"] {
    padding: 14px;
  }
  .img-card-block::before {
    width: 410px;
    height: 410px;
  }
  .img-card-block {
    padding: 0 0 65px 0;
    max-width: 221px;
  }
  .testimonial-card-block .row {
    justify-content: center;
  }
  .footer-section {
    padding: 75px 0 30px 0;
  }
  .footer-section .main-footer .single-widget {
    flex: 0 0 50%;
    margin-bottom: 50px;
  }
  .footer-section .main-footer {
    padding-bottom: 30px;
  }
}
@media (min-width: 768px) {
  .img-card-item .mobile-image {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .img-card-block {
    padding: 0 0 140px 0 !important;
  }
}
@media (min-width: 340px) and (max-width: 767px) {
  .page-section .row [class*="col-"] {
    padding-left: 30px;
    padding-right: 30px;
  }
  .testimonial-block .row [class*="col-"] {
    padding-left: 9px;
    padding-right: 9px;
  }
}
@media (max-width: 767px) {
  .img-card-item .desktop-image {
    display: none;
  }
  .logo a.site-logo img {
    height: 18px;
  }
  .header-wrapper {
    padding: 13px 0 12px;
  }
  .hero-section {
    padding-top: 80px;
  }
  .hero-section .block-title {
    font-size: 38px;
  }
  .our-service-cards .card-item {
    padding: 20px 36px 39px 42px;
  }
  .site-btn {
    padding: 13px 21px;
    font-size: 18px;
    letter-spacing: 0.18px;
  }
  .our-service-block .block-row .col-right,
  .deal-section-block .block-row .col-right {
    text-align: left;
  }
  .our-service-block {
    padding-top: 25px;
    padding-bottom: 45px;
  }
  .eyebrow-title {
    font-size: 13px;
    letter-spacing: 0.52px;
  }
  .our-service-block .block-row .block-title {
    padding-top: 9px;
    margin-bottom: 21px;
  }
  .testimonial-card-block {
    padding: 15px 0 30px;
  }
  .img-card-block .card-heading br {
    display: none;
  }
  .ticker-block {
    padding: 24px 0;
  }
  .footer-section {
    padding: 52px 0 23px 0;
  }
  .footer-section .logo-row .footer-logo {
    margin-bottom: 18px;
  }
  .footer-section .logo-row .footer-logo a.site-logo img {
    height: 31px;
  }
  .footer-section .container {
    padding: 0 30px;
  }
  .footer-section .main-footer .single-widget {
    flex: 0 0 100%;
  }
  .footer-section .footer-bottom .copy-right {
    justify-content: flex-start;
    display: flex;
    padding-top: 11px;
  }
  .footer-section .footer-bottom .legal-nav {
    display: flex;
    justify-content: flex-start;
  }
  .footer-section .logo-row .social-links .social-icons ul li a img {
    width: 27px;
    height: 27px;
  }
  .footer-section .logo-row .social-links .social-icons ul li {
    padding-right: 26px;
  }
  .our-service-cards {
    padding-top: 34px;
  }
  .our-service-cards .card-block .icon {
    width: 60px;
    height: 60px;
    flex: 60px 0 0;
    left: 39px;
    top: 20px;
    right: unset;
    position: static;
  }
  .our-service-cards .card-item .card-block {
    flex-direction: column-reverse;
    padding: 0;
    align-items: flex-start;
    gap: 11px;
  }
  .our-service-cards .row [class*="col-"]:first-child .card-item {
    padding-top: 42px;
  }
  .our-service-cards .row [class*="col-"]:first-child .card-block .icon img {
    top: -19px;
    height: 68px;
  }
  .our-service-cards .row {
    row-gap: 11px;
  }
  .deal-section-block {
    padding: 70px 0 60px;
  }
  .img-card-item {
    min-height: 350px;
  }
  .deals-card .row > [class*="col-"] {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .img-card-block .card-heading {
    font-size: 22px;
    line-height: 100%;
  }
  .img-card-block .card-title {
    font-size: 22px;
  }
  .img-card-block .terms-title {
    padding-top: 1px;
  }
  .img-card-block .site-btn {
    padding: 8px 12px;
    border-radius: 10px;
    font-size: 16px;
    line-height: 125%;
    letter-spacing: 0.16px;
  }
  .img-card-block .site-btn::after {
    display: none;
  }
  .img-card-block::before {
    width: 333px;
    height: 333px;
  }
  .page-section .mid-page-cta .col-right {
    padding-left: 30px;
    padding-right: 10px;
  }
  .mid-page-cta .col-right .image img {
    aspect-ratio: 818 / 663;
  }
  .mid-page-cta .col-left {
    padding-top: 60px;
  }
  .mid-page-cta .block-btn {
    margin-top: 32px;
  }
  .mid-page-cta .heading-title {
    max-width: 275px;
  }
  .footer-section .footer-nav ul li {
    padding-bottom: 8px;
  }
  .footer-section .main-footer {
    padding-bottom: 8px;
  }
  .footer-bottom .row {
    flex-direction: column-reverse;
  }
  .testimonial-block .testimonial-card-block {
    overflow: visible;
  }
  .testimonial-block .block-row .row {
    padding: 0 30px;
  }
  .mid-page-cta .star-icon {
      display: none;
  }
  .our-service-cards .card-block .icon img{
    width: 58px !important;
    height: 63px !important;
  }
  .ticker-block .ticker-item .title{
    font-size:22px !important;
  }
  .our-service-cards .card-block .card-title{
    font-size:26px;
  }
  .our-service-cards .description p{
    font-size: 18px;
    font-weight: 500;
    line-height: 150%;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding-top: 58px;
    padding-bottom: 105px;
  }
  .hero-section .shape {
    height: 305px;
    width: 311px;
    border-radius: 0 150px 0 0;
  }
  .hero-section .image {
    width: 355px;
  }
  .footer-section .main-footer .single-widget {
    margin-bottom: 33px;
  }
  .hero-section .col-right {
    margin-bottom: -105px;
  }
  .white-bg-line {
    height: 105px;
  }
}
/* @media screen and (max-width: 479px) {
  .deal-section-block {
    padding: 40px 0;
  }
} */
@media screen and (max-width: 319px) {
  .our-service-cards .card-block .icon {
    width: 45px;
    height: 45px;
    flex: 45px 0 0;
  }
  .deals-card .bg-img img {
    object-position: -190px 0;
  }
  .footer-section .footer-bottom .copy-right {
    padding-bottom: 10px;
  }
  .footer-section .footer-bottom .copy-right,
  .footer-section .footer-bottom .legal-nav ul li a {
    font-size: 14px;
  }
  .footer-section .footer-bottom .legal-nav ul li{
    padding-right: 12px;
    margin-right: 12px;
  }
}
