@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');


:root {
  --ff-body: "Montserrat", sans-serif;
  --ff-heading: "Jost", sans-serif;
  --ff-p: "Montserrat", sans-serif;
  --fw-normal: normal;
  --fw-thin: 100;
  --fw-elight: 200;
  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-sbold: 600;
  --fw-bold: 700;
  --fw-ebold: 800;
  --fw-black: 900;
  --fs-body: 16px;
  --fs-p: 16px;
  --fs-h1: 60px;
  --fs-h2: 48px;
  --fs-h3: 20px;
  --fs-h4: 18px;
  --fs-h5: 16px;
  --fs-h6: 14px;
  --color-white: #ffffff;
  --color-black: #000000;
  --color-dark: #232323;
  --color-heading-primary: #171717;
  --color-text-body: #fff;
  --color-theme-primary: #57a1d1;
  --color-theme-secondary: #8cbe3d;
  --color-bg-1: #11151C;
  --color-grey-1: #F4F4F2;
  --color-border-1: #171717;
  --color-border-light: #E4E4E4;
} 

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/**
	Typography CSS
*/
body {
  /* /* background-color: var(--color-black); */
  font-family: var(--ff-body);
  /* font-size: 16px;
  line-height: 1.625;
  font-weight: normal;
  color: var(--color-text-body); */ 
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
}

a,
a:hover {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--ff-heading);
  /* color: #ffffff; */
  margin-top: 0px;
  font-weight: var(--fw-sbold);
  line-height: 1.2;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}


ul {
  margin: 0px;
  padding: 0px;
}


a:focus,
.button:focus {
  text-decoration: none;
  outline: none;
}

a:focus,
a:hover {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--color-theme-primary);
}

.slick-list.draggable {
  cursor: grab;
}

a,
button {
  color: inherit;
  outline: none;
  border: none;
  background: transparent;
}

button:hover {
  cursor: pointer;
}

button:focus {
  outline: 0;
  border: 0;
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

input {
  outline: none;
}

input[type=color] {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background: none;
  border: 0;
  cursor: pointer;
  height: 100%;
  width: 100%;
  padding: 0;
  border-radius: 50%;
}

ul {
  display: block;
  padding: 0;
  margin: 0;
}

*::-moz-selection {
  background: var(--color-black);
  color: var(--color-white);
  text-shadow: none;
}

::-moz-selection {
  background: var(--color-black);
  color: var(--color-white);
  text-shadow: none;
}

::selection {
  background: var(--color-black);
  color: var(--color-white);
  text-shadow: none;
}

*::-moz-placeholder {
  color: var(--color-black);
  font-size: var(--fs-body);
  opacity: 1;
}

*::placeholder {
  color: var(--color-black);
  font-size: var(--fs-body);
  opacity: 1;
}
