@import url("https://fonts.googleapis.com/css2?family=Forum&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Onest:wght@100..900&display=swap");
* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*:before, *:after {
  box-sizing: border-box;
}

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

body {
  font-size: 28px;
  min-width: 320px;
  position: relative;
  line-height: normal;
  font-family: "Onest", sans-serif;
  font-weight: normal;
  background: #09261F;
  color: #F7F7F7;
}

html, body {
  overflow-x: hidden;
}

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

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

a {
  display: block;
  text-decoration: none;
  transition: 0.3s ease;
  outline: none;
  width: -moz-fit-content;
  width: fit-content;
}
a:hover, a:focus {
  text-decoration: none;
}

input, textarea, select {
  outline: none;
  box-shadow: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 0 15px;
  box-sizing: border-box;
  font-family: "Onest", sans-serif;
  border: none;
  border-radius: 10px;
  width: 100%;
  height: 54px;
  background: transparent;
  color: #000;
  font-size: 15px;
  cursor: pointer;
}
input::-moz-placeholder, textarea::-moz-placeholder, select::-moz-placeholder {
  color: #595959;
}
input::placeholder, textarea::placeholder, select::placeholder {
  color: #595959;
}
input:hover, input:focus, textarea:hover, textarea:focus, select:hover, select:focus {
  outline: none;
  box-shadow: none;
}

input[type=radio], input[type=checkbox] {
  width: auto;
  height: auto;
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
  margin: 0 5px 0 0;
  display: inline;
}

label {
  display: block;
  width: 100%;
  margin: 0 0 13px;
}
label:last-child {
  margin: 0;
}

textarea {
  resize: none;
  padding: 12px 17px;
  height: 103px;
}

button, .btn {
  outline: none;
  transition: 0.3s ease;
  cursor: pointer;
  box-shadow: none;
  font-family: "Onest", sans-serif;
  padding: 0;
  margin: 0;
  border: none;
  border-radius: 0;
}
button:hover, button:focus, .btn:hover, .btn:focus {
  outline: none;
  box-shadow: none;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 43px;
  font-size: 34px;
  font-weight: bold;
  text-transform: uppercase;
  height: 130px;
  border-radius: 300px;
  transition: 0.3s ease;
}
.btn .svg-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 20px 0 0;
  fill: #855C29;
}

.btn-icon {
  margin: 0 20px 0 0;
}

.btn-gradien-accent {
  color: #855C29;
  background: url("../img/btn-default.svg") no-repeat center;
  background-size: cover;
}
.btn-gradien-accent:hover, .btn-gradien-accent:focus {
  background: url("../img/btn-default-hover.svg") no-repeat center;
  background-size: cover;
}

.btn-green {
  background: #133029;
  border: 2px solid transparent;
  background: linear-gradient(#133029, #133029) padding-box, linear-gradient(to bottom, rgba(247, 247, 247, 0.8), rgba(247, 247, 247, 0.2)) border-box;
  color: #F7F7F7;
}
.btn-green::before {
  content: "";
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("../img/loader-white.svg") no-repeat center;
  background-size: 100%;
  margin: 0 20px 0 0;
  width: 40px;
  height: 40px;
  min-width: 40px;
}
.btn-green:hover {
  color: #855C29;
  background: url("../img/btn-green-hover.svg") no-repeat center;
  background-size: cover;
  border: none;
}
.btn-green:hover::before {
  background: url("../img/loader-icon-hover.svg") no-repeat center;
  background-size: 100%;
}

.svg-icon {
  display: inline-block;
  width: 100%;
  height: 100%;
}

strong, b {
  font-weight: bold;
  display: inline;
}

ul, ol {
  padding: 0 0 0 20px;
}

.my-ul {
  list-style: none;
  padding: 0;
}

.list-dots {
  list-style-type: disc;
}

.list-decor li {
  margin: 0 0 20px;
  display: flex;
  align-items: flex-start;
}
.list-decor li::before {
  content: "";
  width: 40px;
  height: 40px;
  min-width: 40px;
  margin: 0 20px 0 0;
  background: url("../img/icon-decor1.svg") no-repeat center;
  background-size: 100%;
}
.list-decor li:last-child {
  margin: 0;
}

.list-check li {
  display: flex;
  align-items: flex-start;
  margin: 0 0 15px;
}
.list-check li:last-child {
  margin: 0;
}
.list-check li::before {
  content: "";
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 25px 0 0;
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: url("../img/check-icon3.svg") no-repeat center;
  background-size: 100%;
}

.list-check-v2 li {
  align-items: center;
}
.list-check-v2 li::before {
  width: 35px;
  height: 35px;
  min-width: 35px;
  margin: 0 15px 0 0;
  background: url("../img/check-icon4.svg") no-repeat center;
  background-size: 100%;
}

h1 {
  font-family: "Forum", sans-serif;
  width: 100%;
  text-align: center;
  text-transform: uppercase;
  font-size: 110px;
  line-height: 105%;
  margin: 0 auto;
  max-width: 1230px;
}

.h1 {
  width: 100%;
  text-align: center;
  margin: 45px auto;
  text-transform: uppercase;
  font-size: 195px;
  font-family: "Forum", sans-serif;
  color: #09261F;
}

h2, .h2 {
  width: 100%;
  font-family: "Forum", sans-serif;
  text-align: center;
  font-size: 90px;
  line-height: 115%;
  margin: 0 auto 50px;
  text-transform: uppercase;
}

h3, .h3 {
  font-weight: bold;
  font-size: 34px;
  width: 100%;
}

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

.subtitle {
  font-size: 34px;
  font-weight: 500;
  width: 100%;
}

.container {
  width: 100%;
  max-width: 1920px;
  padding: 0 40px;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
}

.row {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  margin: 0 -10px;
}

.w-100 {
  width: 100%;
}

.col-25 {
  width: 25%;
  padding: 0 10px;
}

.col-30 {
  width: 33.33%;
  padding: 0 10px;
}

.col-50 {
  width: 50%;
  padding: 0 10px;
}

.order-1 {
  order: 1;
}

.mb-20 {
  margin-bottom: 20px;
}

.m-auto {
  margin: 0 auto;
}

.m-100 {
  margin: 100px 0;
}

.bg-black {
  background: #121715;
}

.bg-green {
  background: #133029;
}

.box-text p, .box-text ul {
  margin: 0 0 20px;
}
.box-text p:last-child, .box-text ul:last-child {
  margin: 0;
}

.d-tablet {
  display: none;
}

/* Cookie */

.cookie {
	--cookie-box-margin: 30rem;
	--cookie-box-width: 520rem;
	--cookie-box-padding: 40rem;
	--cookie-box-radius: 10rem;
	--cookie-box-color: rgb(33, 33, 33);
	--cookie-box-shadow: 0 0 30rem rgba(0,0,0, 0.1);
	--cookie-text-color: var(--white);
	--cookie-text-size: 16px;
	/*--cookie-text-size: inherit;*/
	--cookie-button-margin: 20rem;
	--cookie-button-position: start; /* start, center, end */
	--cookie-button-padding: 0.7em 1.5em;
	--cookie-button-radius: 8rem;
	--cookie-button-color: var(--brown);
	--cookie-button-text-color: var(--white-80);
	--cookie-button-hover-color: #756555;
	--cookie-button-hover-text-color: white;
	/*	--cookie-button-text-size: inherit;*/
    --cookie-button-text-size: 16px;

	font-size: var(--cookie-text-size);
	color: var(--cookie-text-color);
	padding: var(--cookie-box-padding);
	border-radius: var(--cookie-box-radius);
	background: var(--cookie-box-color);
	box-shadow: var(--cookie-box-shadow);
	display: grid;
	position: fixed;
	bottom: var(--cookie-box-margin);
	left: auto;
	right: var(--cookie-box-margin);
	width: 100%;
	max-width: min(var(--cookie-box-width), calc(100% - var(--cookie-box-margin) * 2));
	z-index: 100;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.4s;
}
.cookie_open {
	opacity: 1;
	pointer-events: all;
}
.cookie__button {
	justify-self: var(--cookie-button-position);
	display: flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
	padding: var(--cookie-button-padding);
	border: none;
	border-radius: var(--cookie-button-radius);
	background: var(--cookie-button-color);
	color: var(--cookie-button-text-color);
	font-size: var(--cookie-button-text-size);
	margin-top: var(--cookie-button-margin);
	transition: 0.3s;
}
.cookie__button:hover {
	background: var(--cookie-button-hover-color);
	color: var(--cookie-button-hover-text-color);
}

@media (max-width: 600px) {
	.cookie {
		--cookie-box-margin: 10rem;
		--cookie-box-padding: 20rem;
	}
}