/* =============================================
   FONTS  —  self-hosted from /assets/fonts
   Headings: BR Omega   |   Body: PP Neue Montreal
   ============================================= */

/* ---- BR Omega (headings) ---- */
@font-face {
  font-family: "BR Omega";
  src: url("../fonts/BROmega-Light-BF6556cee4cd6b5.woff2") format("woff2"),
       url("../fonts/BROmega-Light-BF6556cee4cd6b5.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "BR Omega";
  src: url("../fonts/BROmega-Regular-BF6556cee4dd400.woff2") format("woff2"),
       url("../fonts/BROmega-Regular-BF6556cee4dd400.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "BR Omega";
  src: url("../fonts/BROmega-RegularItalic-BF6556cee4d38eb.woff2") format("woff2"),
       url("../fonts/BROmega-RegularItalic-BF6556cee4d38eb.otf") format("opentype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "BR Omega";
  src: url("../fonts/BROmega-Medium-BF6556cee4bc2e2.woff2") format("woff2"),
       url("../fonts/BROmega-Medium-BF6556cee4bc2e2.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "BR Omega";
  src: url("../fonts/BROmega-SemiBold-BF6556cee507ac6.woff2") format("woff2"),
       url("../fonts/BROmega-SemiBold-BF6556cee507ac6.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "BR Omega";
  src: url("../fonts/BROmega-Bold-BF6556cee4cf0f3.woff2") format("woff2"),
       url("../fonts/BROmega-Bold-BF6556cee4cf0f3.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "BR Omega";
  src: url("../fonts/BROmega-BoldItalic-BF6556cee50cc1c.woff2") format("woff2"),
       url("../fonts/BROmega-BoldItalic-BF6556cee50cc1c.otf") format("opentype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "BR Omega";
  src: url("../fonts/BROmega-Black-BF6556cee4bd4a0.woff2") format("woff2"),
       url("../fonts/BROmega-Black-BF6556cee4bd4a0.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* ---- PP Neue Montreal (body) ---- */
@font-face {
  font-family: "PP Neue Montreal";
  src: url("../fonts/ppneuemontreal-thin.woff2") format("woff2"),
       url("../fonts/ppneuemontreal-thin.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "PP Neue Montreal";
  src: url("../fonts/ppneuemontreal-book.woff2") format("woff2"),
       url("../fonts/ppneuemontreal-book.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "PP Neue Montreal";
  src: url("../fonts/ppneuemontreal-italic.woff2") format("woff2"),
       url("../fonts/ppneuemontreal-italic.otf") format("opentype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "PP Neue Montreal";
  src: url("../fonts/ppneuemontreal-medium.woff2") format("woff2"),
       url("../fonts/ppneuemontreal-medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "PP Neue Montreal";
  src: url("../fonts/ppneuemontreal-semibolditalic.woff2") format("woff2"),
       url("../fonts/ppneuemontreal-semibolditalic.otf") format("opentype");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "PP Neue Montreal";
  src: url("../fonts/ppneuemontreal-bold.woff2") format("woff2"),
       url("../fonts/ppneuemontreal-bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --cura-blue: rgba(0, 104, 180, 1);
  --cura-blue-dark : rgba(13, 39, 115, 1);
  --cura-yellow: rgba(241, 141, 0, 1);
  --cura-heading-font: "BR Omega", sans-serif;
  --cura-body-font: "PP Neue Montreal", sans-serif;
  --cura-text: rgba(2, 43, 58, 1);
  --cura-border: #e5e7eb;
  --contrasting-blue:rgba(0, 109, 184, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--cura-body-font);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.33;
  color: var(--cura-text);
  background: #ffffff;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h4,
h5,
h6 {
  margin: 0 0 16px;
  font-family: var(--cura-heading-font);
  font-weight: 700;
  font-style: normal;
  line-height: 1;
  letter-spacing: 0;
  color: var(--cura-blue);
}

/* Ensure every heading uses the heading font (h1–h3 keep their own colour/size). */
h1,
h2,
h3 {
  font-family: var(--cura-heading-font);
}

h1 {
  font-weight: 700 !important;
  font-size: 24px!important;
  line-height: 1;
  color: rgba(2, 43, 58, 1) !important;
}

h1 em {
  font-style: italic;
  color: var(--cura-blue);
}

h2 {
  font-weight: 700 !important;
  font-size: 22px!important;
  line-height: 1;
  text-transform: capitalize;
}

h2 em {
  font-style: italic;
  color: var(--cura-blue);
}

h3 {
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
}

h4 {
  font-size: 18px;
}

h5 {
  font-size: 16px;
}

h6 {
  font-size: 16px;
}

p {
  font-family: var(--cura-body-font);
  color: var(--cura-text);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 15px !important;
}

/* Tablet */
@media (min-width: 768px) {
  h1 { font-size: 44px!important; }
  h2 { font-size: 32px!important; }
  h3 { font-size: 18px!important; }
  h4 { font-size: 20px!important; }
  h5 { font-size: 18px!important; }
  p  { font-size: 17px!important; }
}

/* Desktop */
@media (min-width: 1024px) {
  h1 { font-size: 58px !important; }
  h2 { font-size: 40px !important; }
  h3 { font-size: 20px !important; }
  h4 { font-size: 22px !important; }
  h5 { font-size: 20px !important; }
  p  { font-size: 18px !important; }
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button,
input,
select,
textarea {
  font: inherit;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--cura-body-font);
  font-size: 16px;
  line-height: 1.33;
  color: var(--cura-text);
}

th,
td {
  padding: 14px 16px;
  border: 1px solid var(--cura-border);
  text-align: left;
  vertical-align: middle;
}

th {
  font-family: var(--cura-heading-font);
  font-weight: 700;
  color: var(--cura-blue);
  background: rgba(13, 39, 115, 0.06);
}

tr:nth-child(even) td {
  background: #fafafa;
}

.btn-cura {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  height: 51px;
  padding: 14px 22px;

  border-radius: 999px;

  background: var(--cura-yellow);

  font-weight: 400;

  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

/* Default text colour at zero specificity (via :where) so any text-* utility on
   the button — text-white on a dark hero, text-[#022B3A] on a light section —
   wins without a fight. Filled yellow buttons (no text utility) stay white. */
:where(.btn-cura) {
  color: #ffffff;
}

/* The arrow icon is a masked shape filled with the CURRENT text colour, so it
   always matches the button's text (white on dark, dark on light, hover colour
   on hover) — no per-button overrides needed. */
.btn-cura .icon {
  width: 14px;
  height: 12px;
  display: inline-block;
  background-color: currentColor;
  -webkit-mask: url("../../../../uploads/2026/06/right-aroow-cura.svg") no-repeat center;
          mask: url("../../../../uploads/2026/06/right-aroow-cura.svg") no-repeat center;
  -webkit-mask-size: contain;
          mask-size: contain;
  transition: 0.25s ease;
}

.btn-cura:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  border-top-color: rgba(0, 0, 0, 0.3);
}

.btn-cura:hover .icon {
  -webkit-mask-image: url("../../../../uploads/2026/06/right-aroow-up-cura.svg");
          mask-image: url("../../../../uploads/2026/06/right-aroow-up-cura.svg");
  transform: translateX(2px);
}

select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    background-image: url('../../../../uploads/2026/06/foem-drop.svg');
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;

    padding-right: 48px;
    cursor: pointer;
}

  .partners-section .swiper-slide{
  height:auto;
  }
  .partners-section h2{
  max-width:700px;
  }
  .partners-section .swiper-wrapper{
  transition-timing-function: linear !important;
  }
  @keyframes marquee {
  from {
  transform: translateX(0);
  }
  to {
  transform: translateX(-25%);
  }
  }
  .partner-track{
  animation: partnerMarquee 30s linear infinite;
  }
  .partner-track:hover{
  animation-play-state: paused;
  }
  @keyframes partnerMarquee{
  0%{
  transform: translateX(0);
  }
  100%{
  transform: translateX(-50%);
  }
  }

@keyframes floatingPulse {

    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }

    100% {
        transform: scale(1);
    }

}

.group[href^="tel"] {
    animation: floatingPulse 2s infinite;
}

.group[href^="tel"]:hover {
    animation: none;
}


#gt_float_wrapper {
  display: flex;
}

.gt_float_switcher .gt_options a {
    padding: 2px!important;
    font-size: 14px;
}

.gt_float_switcher img
 {
    width: 20px!important;
}

.gt_float_switcher .gt-selected .gt-current-lang span.gt-lang-code {
    font-size: 14px!important;
}
.nturl img {
    display: none !important;
}