*, *:before, *:after {
  box-sizing: border-box;
}
html, body{
  -webkit-font-smoothing: antialiased;
  color: $base--text-colour $base--bg-colour;
	font: 16px/170% Inter, -apple-system, linkMacSystemFont, Helvetica Neue, Segoe UI, Arial, sans-serif;;
	font-weight: 400;
	max-width: 100%;
	min-width: 320px;
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
========================================================================== */

/**
* 1. Correct the line height in all browsers.
* 2. Prevent adjustments of font size after orientation changes in iOS.
*/

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
========================================================================== */

/**
* Remove the margin in all browsers.
*/

body {
  margin: 0;
}

/**
* Correct the font size and margin on `h1` elements within `section` and
* `article` contexts in Chrome, Firefox, and Safari.
*/

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
========================================================================== */

/**
* Add the correct box sizing in Firefox.
*/

hr {
  box-sizing: content-box;
  height: 0;
}

/**
* 1. Correct the inheritance and scaling of font size in all browsers.
* 2. Correct the odd `em` font sizing in all browsers.
*/

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
========================================================================== */

/**
* 1. Remove the bottom border in Chrome 57-
* 2. Add the correct text decoration in Chrome, Edge, Opera, and Safari.
*/

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
* Add the correct font weight in Chrome, Edge, and Safari.
*/

b,
strong {
  font-weight: bolder;
}

/**
* 1. Correct the inheritance and scaling of font size in all browsers.
* 2. Correct the odd `em` font sizing in all browsers.
*/

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
* Add the correct font size in all browsers.
*/

small {
  font-size: 80%;
}

/**
* Prevent `sub` and `sup` elements from affecting the line height in
* all browsers.
*/

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Forms
========================================================================== */

/**
* 1. Change the font styles in all browsers.
* 2. Remove the margin in Firefox and Safari.
*/

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
* Remove the inheritance of text transform in Edge and Firefox.
* 1. Remove the inheritance of text transform in Firefox.
*/

button,
select { /* 1 */
  text-transform: none;
}

/**
* Correct the inability to style clickable types in iOS and Safari.
*/

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
* Remove the inner border and padding in Firefox.
*/

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
* Restore the focus styles unset by the previous rule.
*/

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
* Correct the padding in Firefox.
*/

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
* Remove the padding so developers are not caught out when they zero out `fieldset` elements in all browsers.
*/

legend {
  padding: 0;
}

/**
* Add the correct vertical alignment in Chrome, Firefox, and Opera.
*/

progress {
  vertical-align: baseline;
}

/**
* Correct the cursor style of increment and decrement buttons in Chrome.
*/

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
* 1. Correct the odd appearance in Chrome and Safari.
* 2. Correct the outline style in Safari.
*/

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
* Remove the inner padding in Chrome and Safari on macOS.
*/

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
* 1. Correct the inability to style clickable types in iOS and Safari.
* 2. Change font properties to `inherit` in Safari.
*/

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
========================================================================== */

/*
* Add the correct display in Edge and Firefox.
*/

details {
  display: block;
}

/*
* Add the correct display in all browsers.
*/

summary {
  display: list-item;
}


/* CSS variables */

:root {
  --column-gap: 2.13%;
  --column-width-multiplier: 8.333;
}

/* Mobile layout */

.row-fluid {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}


.row-fluid .span1,
.row-fluid .span2,
.row-fluid .span3,
.row-fluid .span4,
.row-fluid .span5,
.row-fluid .span6,
.row-fluid .span7,
.row-fluid .span8,
.row-fluid .span9,
.row-fluid .span10,
.row-fluid .span11,
.row-fluid .span12{
/*   min-height: 1px; */
  width: 100%;
}

/* Desktop layout */

@media (min-width: 768px) {
  .row-fluid {
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  
  .row-fluid .span1 {
    width: calc(var(--column-width-multiplier) * 1% * 1 - var(--column-gap) * (11 * var(--column-width-multiplier) / 100));
  }
  
  .row-fluid .span2 {
    width: calc(var(--column-width-multiplier) * 1% * 2 - var(--column-gap) * (10 * var(--column-width-multiplier) / 100));
  }
  
  .row-fluid .span3 {
    width: calc(var(--column-width-multiplier) * 1% * 3 - var(--column-gap) * (9 * var(--column-width-multiplier) / 100));
  }
  
  .row-fluid .span4 {
    width: calc(var(--column-width-multiplier) * 1% * 4 - var(--column-gap) * (8 * var(--column-width-multiplier) / 100));
  }
  
  .row-fluid .span5 {
    width: calc(var(--column-width-multiplier) * 1% * 5 - var(--column-gap) * (7 * var(--column-width-multiplier) / 100));
  }
  
  .row-fluid .span6 {
    width: calc(var(--column-width-multiplier) * 1% * 6 - var(--column-gap) * (6 * var(--column-width-multiplier) / 100));
  }
  
  .row-fluid .span7 {
    width: calc(var(--column-width-multiplier) * 1% * 7 - var(--column-gap) * (5 * var(--column-width-multiplier) / 100));
  }
  
  .row-fluid .span8 {
    width: calc(var(--column-width-multiplier) * 1% * 8 - var(--column-gap) * (4 * var(--column-width-multiplier) / 100));
  }
  
  .row-fluid .span9 {
    width: calc(var(--column-width-multiplier) * 1% * 9 - var(--column-gap) * (3 * var(--column-width-multiplier) / 100));
  }
  
  .row-fluid .span10 {
    width: calc(var(--column-width-multiplier) * 1% * 10 - var(--column-gap) * (2 * var(--column-width-multiplier) / 100));
  }
  
  .row-fluid .span11 {
    width: calc(var(--column-width-multiplier) * 1% * 11 - var(--column-gap) * (1 * var(--column-width-multiplier) / 100));
  }
  
}
/* --- Unknown but removes bottom invisible padding */
.body-wrapper {
  height: 100px;
}


.content-wrapper {
  margin: 0;
  padding: 0;
}

@media screen and (min-width: 1380px) {
  .content-wrapper {
    padding: 0;
  }
}

.dnd-section > .row-fluid {
  margin: 0 auto;
}

.dnd-section .dnd-column {
  padding: 0;
}

@media (max-width: 767px) {
  .dnd-section .dnd-column {
    padding: 0;
  }
}

/* --- Global components --- */
/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/




.btn-1 {
  padding: 0.05em;
  border-radius: 0.625em;
  display: inline-block;
  cursor: pointer;
}

.btn-1-inner {
  text-align: center;
  border-radius: 0.625em;
  padding: 1.25em 2.5em;
  background-color: var(--white);
  color: var(--bg);
  transition: .3s;
}

.btn-1:hover {
  background: var(--gradient-1); 
  color: var(--primary);
}
.btn-1:hover .btn-1-inner {
  background-color: #1F282F;
  color: var(--primary);
}


.btn-3 {
  padding: 0.05em;
  border-radius: 0.625em;
  display: block;
  cursor: pointer;
}

.btn-3-inner {
  text-align: center;
  border-radius: 0.625em;
  padding: 1.25em 2.5em;
  background-color: var(--primary);
  color: var(--white);
  transition: .3s;
}

.btn-3:hover {
  background: var(--gradient-1); 
  color: var(--primary);
}
.btn-3:hover .btn-3-inner {
  background-color: #1F282F;
  color: var(--primary);
}


@media (max-width: 768px) {
  .btn-1 {
    display: block;
  }

  .btn-1-inner {
    padding: .75em 0;

  }

  .btn-3-inner {
    padding: .75em 0;

  }
}


/************* Hover Button ********/
.hover-button {
    position: fixed;
    width: 85px;
    height: 85px;
    border-radius: 50%;
    background: #faad00;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease;
    text-decoration: none;
    cursor: pointer;
    text-transform: uppercase;
  }

  .hover-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
  }

  .hover-button-ring {
    position: absolute;
    width: 100px;
    height: 100px;
    border: 2px solid #faad00;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .hover-button-text {
    font-family: 'Apercu Mono';
    font-weight:400;
    color: #fff;
    font-size: 12px;
    letter-spacing: 1px;
    z-index: 1;
    text-transform: uppercase;
  }
@media (max-width: 768px) {
    .hover-button {
      display: none;
    }
}
:root {
  --yellow: #FAAD00;
  --green: #0B5D67;
  --orange: #DA5C00;
  --black1: #0D0D0D;
  --black2: #191919;
  --black3: #333333;
  --black4: #4D4D4D;
  --gray: #666666;
  --Texture-1:url("https://25358362.fs1.hubspotusercontent-eu1.net/hubfs/25358362/texture_01.png");
  --Texture-2:url("https://25358362.fs1.hubspotusercontent-eu1.net/hubfs/25358362/texture_02.png");
  --Texture-3:url("https://25358362.fs1.hubspotusercontent-eu1.net/hubfs/25358362/texture_03.png");
  --Texture-4:url("https://25358362.fs1.hubspotusercontent-eu1.net/hubfs/25358362/texture_04.png");
  --Texture-5:url("https://25358362.fs1.hubspotusercontent-eu1.net/hubfs/25358362/texture_05.png");
  --Texture-6:url("https://25358362.fs1.hubspotusercontent-eu1.net/hubfs/25358362/texture_05l.png");
  
  --circle-light:url("https://25358362.fs1.hubspotusercontent-eu1.net/hubfs/25358362/website-svg/dot-circle-light.svg");
  --circle-dark:url("https://25358362.fs1.hubspotusercontent-eu1.net/hubfs/25358362/website-svg/dot-circle-dark.svg");
   --circle-dark-two:url("https://25358362.fs1.hubspotusercontent-eu1.net/hubfs/25358362/dot-circle--1-1.svg");
}
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

@font-face {
  font-family: 'TT Hoves';
  src: url('https://25358362.fs1.hubspotusercontent-eu1.net/hubfs/25358362/Fonts/TT%20Hoves/TT_Hoves_Pro_Thin.woff2') format('opentype'); 
  font-weight: 100;
  font-style: normal;
}

@font-face {
  font-family: 'TT Hoves';
  src: url('https://25358362.fs1.hubspotusercontent-eu1.net/hubfs/25358362/Fonts/TT%20Hoves/TT_Hoves_Pro_Regular.woff2') format('opentype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'TT Hoves';
  src: url('https://25358362.fs1.hubspotusercontent-eu1.net/hubfs/25358362/Fonts/TT%20Hoves/TT_Hoves_Pro_Medium.woff2') format('opentype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'TT Hoves';
  src: url('https://25358362.fs1.hubspotusercontent-eu1.net/hubfs/25358362/Fonts/TT%20Hoves/TT_Hoves_Pro_Bold.woff2') format('opentype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'TT Hoves';
  src: url('https://25358362.fs1.hubspotusercontent-eu1.net/hubfs/25358362/Fonts/TT%20Hoves/TT_Hoves_Pro_Bold.woff2') format('opentype');
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'Apercu Mono';
  src: url('https://25358362.fs1.hubspotusercontent-eu1.net/hubfs/25358362/Fonts/Apercu%20Mono/Apercu-Mono.woff2') format('opentype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Inter';
  src: url('https://25358362.fs1.hubspotusercontent-eu1.net/hubfs/25358362/Fonts/Inter/Inter-Variable.woff2') format('opentype');
  font-weight: 400;
  font-style: normal;
}

a {
  text-decoration: none;
}

p,h1,h2,h3,h4,h5,h6 {
  margin: 0;
}

*::selection{
color: white;      
    background: #3D3D3D;   
}


/* For Desktop (Larger Sizes) */
.xl-header {
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: "TT Hoves";
  font-size: 150px;
  font-style: normal;
  font-weight: 600;
  line-height: 144px; /* 96% */
  letter-spacing: -5px;
}

.l-header {
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: "TT Hoves";
  font-size: 100px;
  font-style: normal;
  font-weight: 600;
  line-height: 94px; /* 94% */
  letter-spacing: -5px;
}

.m-header {
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: "TT Hoves";
  font-size: 80px;
  font-style: normal;
  font-weight: 600;
  line-height: 80px; /* 100% */
  letter-spacing: -3.36px;
}

.s-header {
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: "TT Hoves";
  font-size: 50px;
  font-style: normal;
  font-weight: 600;
  line-height: 54px; /* 108% */
  letter-spacing: -1.786px;
}

.xs-header {
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: "TT Hoves";
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: 38px; /* 105.556% */
  letter-spacing: -1px;
}

.subtitle {
  font-family: "Apercu Mono";
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 19px; /* 190% */
  letter-spacing: 2px;
  text-transform: uppercase;
}

.body-large {
  font-family: "TT Hoves";
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
  line-height: 106%; /* 26.5px */
  letter-spacing: -0.25px;
}

.body-medium {
  font-family: "TT Hoves";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 27px; /* 127.778% */
  letter-spacing: -0.18px;
}

.body-regular {
  font-family: "TT Hoves";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 23px; /* 127.778% */
  letter-spacing: -0.18px;
}

.body-samll {
  font-family: "TT Hoves";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.75em;
/*   letter-spacing: -0.18px; */
}

/* Mobile Media Queries */
@media (max-width: 768px) {
  .xl-header {
    font-family: "TT Hoves";
    font-size: 60px;
    font-style: normal;
    font-weight: 600;
    line-height: 50px; /* 83.333% */
    letter-spacing: -1.2px;
  }

  .l-header {
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: "TT Hoves";
    font-size: 50px;
    font-style: normal;
    font-weight: 600;
    line-height: 44px; /* 88% */
    letter-spacing: -1.786px;
  }

  .m-header {
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: "TT Hoves";
    font-size: 42px;
    font-style: normal;
    font-weight: 700;
    line-height: 42px; /* 100% */
    letter-spacing: -0.8px;
  }

  .s-header {
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: "TT Hoves";
    font-size: 34px;
    font-style: normal;
    font-weight: 600;
    line-height: 34px; /* 100% */
    letter-spacing: -0.8px;
  }

  .xs-header {
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: "TT Hoves";
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: 40px; /* 133.333% */
    letter-spacing: -1px;
  }

  .subtitle-box {
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: "Apercu Mono";
    font-size: 9px;
    font-style: normal;
    font-weight: 400;
    line-height: 10px; /* 111.111% */
    letter-spacing: 2px;
    text-transform: uppercase;
  }

  .body-large {
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: "TT Hoves";
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 29px; /* 120.833% */
    letter-spacing: -0.6px;
  }

  .body-regular {
    font-family: "TT Hoves";
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 17px; /* 141.667% */
    letter-spacing: -0.12px;
  }
}


/* --- Utilities --- */
/* --- Macro CSS --- */






.navbar-offset{
  padding-top: 155px;
}
@media (max-width: 768px) {
  .navbar-offset{
    padding-top: 102px;
  }
}
/* html {
  scroll-behavior: smooth;
} */