:root {
  --time: 0.45s;
  --color-primary: #9EB7AF;
  --color-primary-hover: #69877d;
  --color-secondary: #4ef938;
  --color-secondary-hover: #29bf15;
--font-primary: "Montserrat", sans-serif;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  text-rendering: optimizeLegibility;
}

body {
  margin: 0;
  font-size: 16px;
  background: #ffffff;
  font-family: var(--font-primary);
  --container-width: 1400px;
}

html{
  scroll-padding-top: 85px;
}

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

a:hover {
  text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

p:only-child,
p:last-child {
  margin-bottom: 0;
}

p {
  font-size: 24px;
  margin-bottom: 15px;
  font-family: var(--font-primary);
  color: #212121;
  line-height: 36px;
}

ul,
ol {
  padding: 0;
  margin: 0;
  list-style: none;
}

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

img,
svg {
  vertical-align: middle;
}

input,
select,
button,
textarea {
  cursor: pointer;
  font-family: var(--font-primary);
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

input[type="number"] {
  -moz-appearance: textfield;
  appearance: textfield;
}

input[type="submit"] {
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
}

button {
  cursor: pointer;
}

:focus {
  outline: none;
}

:disabled {
  cursor: default;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  line-height: inherit;
}

/* span {
  display: inline-block;
} */

select {
  background-image: url("/images/down-arrow.png");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 18px;
  -ms-progress-appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

label {
  display: inline-block;
  margin: 0 0 7px 0;
  font-size: 13px;
}

select.form-field,
input.form-field {
  --height: 48px;
  height: var(--height);
  line-height: var(--height);
  padding: 0 15px;
  color: #7c7c7c;
}

textarea {
  height: 240px;
  resize: none;
  padding: var(--padding);
}

textarea,
.form-field {
  display: block;
  width: 100%;
  background-color: #fff;
  border: none;
  padding:0 15px;
  border: 1px solid #AAAAAA;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
}

iframe {
  border: 0;
  vertical-align: bottom;
}

.w-100 {
  width: 100%;
}

.vh-100 {
  height: 100vh;
}

.relative {
  position: relative;
}

.container {
  margin: auto;
  max-width: var(--container-width);
}

.container-lg{
  margin: auto;
  max-width: 1700px;
}

.text-center{
  text-align: center;
}

/* ------------------------------------------------ */

@keyframes fadeIn {
  0% { opacity: 0;}
  100% { opacity: 1; background: var(--color-primary-hover);}
}

/* ------------------------------------------------ */

.slider-label {
  font-weight: 500;
  margin-bottom: 8px;
  font-size: 14px;
}

.range-slider {
  width: 100%;
  position: relative;
  font-size: 14px;
}

.range-slider .selected {
  position: relative;
  margin-left: 0px;
  top: 9px;
  text-align: center;
  display: block;
}

input[type=range] {
  -webkit-appearance: none;
  appearance: none;
  appearance: none;
  width: 100%;
  height: 10px;
  background: #d3d3d3;
  border-radius: 10px;
  outline: none;
  margin: 0;
  padding: 0;
}

input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 30px;
  width: 30px;
  background: #b7ccc6;
  border: 2px solid #ffffff;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  top: 0px;
}

input[type=range]::-moz-range-thumb {
  height: 30px;
  width: 30px;
  background: #b7ccc6;
  border-radius: 50%;
  cursor: pointer;
}

.range-values {
  display: flex;
  justify-content: space-between;
  margin-top: -10px;
  font-weight: 500;
}

.range-values span.selected {
  position: absolute;
  top: 35px;
  left: 50%;
  transform: translateX(-50%);
  font-weight: bold;
}