:root {
  --color-white: #fff;
  --color-content: #000;
  --color-border-alt: #eee;
  --color-main: #FF5000;
  --color-background: #f6f7f8;
  --color-background-alt: #090909;
  --selection-color: #c2c2c270;
  --font-main: "Montserrat", sans-serif;
}

::-moz-selection {
  background-color: var(--selection-color);
}

::selection {
  background-color: var(--selection-color);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  line-height: 1.15;
  font-family: var(--font-main);
  margin: 0;
  background-color: var(--color-background);
}

main {
  display: block;
}

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

pre,
code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

a {
  text-decoration: none;
  color: var(--color-main);
  background-color: transparent;
}

abbr[title] {
  border-bottom: none;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

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

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

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

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
}
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
button :-moz-focusring,
[type=button] :-moz-focusring,
[type=reset] :-moz-focusring,
[type=submit] :-moz-focusring {
  outline: 1px dotted ButtonText;
}

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

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

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

[type=search] {
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
       appearance: textfield;
  outline-offset: -2px;
}
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

details {
  display: block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
ul,
li {
  font-weight: normal;
  text-decoration: none;
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1;
}

h2 {
  font-size: clamp(3rem, 5vw, 5rem);
}

h3 {
  font-size: clamp(2.5rem, 5vw, 3.438rem);
}

h4 {
  font-size: clamp(2.5rem, 5vw, 2.813rem);
}

p {
  line-height: 1.5;
}
p,
p a {
  font-size: clamp(1rem, 3vw, 1.125rem);
}

button {
  outline: none;
  border: none;
}

.container {
  width: 100%;
  margin: 0 auto;
  padding: 4rem 1.25rem;
  max-width: 95%;
}
@media screen and (min-width: 1480px) {
  .container {
    max-width: 1440px;
  }
}

.mainButton {
  background-color: var(--color-main);
  color: var(--color-white);
  border: 3px solid var(--color-main);
  border-radius: 10rem;
  font-family: var(--font-main);
  font-size: 1.125rem;
  font-weight: bold;
  padding: 0.7rem 2rem;
  text-transform: uppercase;
  transition: 0.3s;
  cursor: pointer;
}
.mainButton:hover {
  background-color: var(--color-background-alt);
  border: 3px solid var(--color-background-alt);
  color: var(--color-white);
}

.ButtonSecond {
  background-color: var(--color-white);
  color: var(--color-main);
  border: 3px solid var(--color-white);
  border-radius: 10rem;
  font-family: var(--font-main);
  font-size: 1.125rem;
  font-weight: bold;
  padding: 0.7rem 2rem;
  text-transform: uppercase;
  transition: 0.3s;
  cursor: pointer;
}
.ButtonSecond:hover {
  background-color: var(--color-background-alt);
  border: 3px solid var(--color-background-alt);
  color: var(--color-white);
}/*# sourceMappingURL=global.css.map */