/* ------------------------------------------------------------- *
 * Fonts
/* ------------------------------------------------------------- */
@font-face {
    font-family: 'TT Firs Neue Trl';
    src: url('../fonts/TTFirsNeueTrl-Thin.woff2') format('woff2');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'TT Firs Neue Trl';
    src: url('../fonts/TTFirsNeueTrl-ExtraLight.woff2') format('woff2');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'TT Firs Neue Trl';
    src: url('../fonts/TTFirsNeueTrl-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'TT Firs Neue Trl';
    src: url('../fonts/TTFirsNeueTrl-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'TT Firs Neue Trl';
    src: url('../fonts/TTFirsNeueTrl-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'TT Firs Neue Trl';
    src: url('../fonts/TTFirsNeueTrl-DemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'TT Firs Neue Trl';
    src: url('../fonts/TTFirsNeueTrl-Bold.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}


/* ------------------------------------------------------------- *
 * Global variables
/* ------------------------------------------------------------- */

:root {
	--main-font: 'TT Firs Neue Trl', sans-serif;
	--white: #FFFFFF;
	--white-15: rgb(255 255 255 / 15%);
	--white-50: rgb(255 255 255 / 50%);
	--white-70: rgb(255 255 255 / 70%);
	--black: #000000;
	--black-30: rgb(0 0 0 / 30%);
	--body: #202228;
	--red: #ED1C24;
	--grey: #2F3236;
	--grey-2: #D9D9D9;
	--light-grey: #BCBDBE;
}

/* ------------------------------------------------------------- *
 * General
/* ------------------------------------------------------------- */

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

html,body { padding: 0; margin: 0; }

body {
	position: relative;
	background-color: var(--body);
	line-height: normal;
	font-family: var(--main-font);
	font-size: 16px;
	font-weight: 300;
	font-style: normal;
	color: var(--white);
	overflow-x: hidden;
}
main {
	display: block;
	height: 100%;
	width: 100%;
	padding: 0 30px;
	margin: 0 auto;
}
@media (max-width: 992px) {
	main {
		overflow-x: hidden;
	}
}
@media (max-width: 767px) {
	main {
		padding: 0 15px;
	}
}
p { 
	color: var(--black);
	margin: 0 0 25px; 
	font-weight: 400;
	line-height: normal;
}
a {
	color: #fff;
	text-decoration: none;
	outline: none;
	cursor: pointer;
}
a {
	color: var(--black);
	-webkit-transition: .2s ease-in;
	-o-transition: .2s ease-in;
	transition: .2s ease-in;
}
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}
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;
}
img {
	display: block;
  border-style: none;
  user-select: none;
	width: 100%;
	max-width: 100%;
	height: auto;
}
b, strong {
	font-weight: bold;
	font-weight: 700;
}
button {
	font-family: var(--main-font);
	outline: none;
	border: 0;
	padding: 0;
	background: transparent;
	cursor: pointer;
}
button:focus { 
	outline: none; 
}
fieldset {
	border: 0;
	padding: 0;
	margin: 0;
}
input {
	border: 0;
	outline: none;
}
.small, small {
	font-size: 80%;
}
.no-scroll {
	overflow: hidden;
}
.hide {
	display: none;
}
.w-100 {
	width: 100%!important;
}
/* Selection */
::-moz-selection {
	color: var(--white);
	text-shadow: none;
	background: var(--black);
}
::selection {
	color: var(--white);
	text-shadow: none;
	background: var(--black);
}
::-moz-selection {
	color: var(--white);
	text-shadow: none;
	background: var(--black);
}
::-webkit-selection {
	color: var(--white);
	text-shadow: none;
	background: var(--black);
}
/* Lists */
ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.list-inline {
	padding-left: 0;
	margin-left: -5px;
	list-style: none;
}
.list-inline > li {
	display: inline-block;
	padding-right: 5px;
	padding-left: 5px;
}
figure {
	margin: 0;
	padding: 0;
	overflow: hidden;
}
section {
	position: relative;
	padding: 90px 0;
}
@media (max-width: 767px) {
	section {
		padding: 70px 0;
	}
}
/* Container */
.container {
	position: relative;
	width: 100%;
	max-width: 1440px;
/*	padding: 0 30px;*/
  margin: 0 auto;
}
.container-fluid {
	width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}
.row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}
/* Main */
.main {
	display: block;
	padding-top: 12px;
}
/* Font weights */ 
.fw-300 { font-weight: 300!important; }
.fw-400 { font-weight: 400!important; }
.fw-500 { font-weight: 500!important; }
.fw-600 { font-weight: 600!important; }
/* Flex Classes */ 
.d-flex {display: -webkit-box; display: -ms-flexbox; display: flex;}
.align-center { -webkit-box-align: center!important; -ms-flex-align: center!important; align-items: center!important; }
.justify-content-center { -webkit-justify-content: center!important; -ms-justify-content: center!important; justify-content: center!important; }
/* Margins */ 
.mb-0 { margin-bottom: 0!important }
.mb-10 { margin-bottom: 10px }
.mb-20 { margin-bottom: 20px }
.mb-40 { margin-bottom: 40px!important }
.mt-0 { margin-top: 0!important }
/* Paddings */
.pb-0 { padding-bottom: 0!important }
.pt-0 { padding-top: 0!important }
/* Text Colors */
.color-red { color: var(--red)!important }
.color-white { color: var(--white)!important }
/* Opacity */
.opacity-70 { opacity: .7 }

/* Анимация: появление сверху вниз с прозрачности */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ------------------------------------------------------------- *
 * Buttons
/* ------------------------------------------------------------- */
.btn {
	background: var(--white);
	color: var(--black);
	padding: 12px 20px;
	font-size: 16px;
	font-weight: 500;
	border-radius: 100px;
	gap: 6px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-decoration: none;
    cursor: pointer;
    -webkit-transition: .2s ease;
    -o-transition: .2s ease;
    transition: .2s ease;
}
/* Button White */
.btn-white {
	background: var(--white);
	color: var(--black);
}
/* Button Outline */
.btn-outline {
	background: transparent;
	border: 2px solid var(--white-15);
	height: 46px;
	padding: 12px 28px;
	color: var(--white);
}
/* Button Phone */
.btn-phone {
	font-weight: 300;
	background: var(--black-30);
	color: var(--white);
	border: 2px solid var(--white-15);
}
.btn-phone svg {
	width: 22px;
	height: 22px;
}
.btn-phone svg path {
	fill: var(--red);
}
/* Button Main */
.btn-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: transparent;
  border: 2px solid var(--white-15);
  border-radius: 100px;
  padding: 9px 10px;
  color: var(--white);
  width: 320px;
  font-size: clamp(14px, 2.3vw, 20px);
  font-weight: 500;
  text-transform: uppercase;
  gap: 0;
}
.btn-main > span {
  flex: 1;
  text-align: center;
  font-weight: 500;
  margin-bottom: -2px;
}
.btn-main > div {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  width: clamp(48px, 12vw, 60px);
  height: clamp(48px, 12vw, 60px);
  background: var(--red);
  box-shadow: 0 4px 31.9px 3px rgba(237, 28, 36, 1.0);
}
.btn-main > div svg {
  width: 50%;
  height: 50%;
}
.btn-main > div svg path {
  fill: var(--white);
}
/* Button Medium */
.btn-md {
	font-size: 18px;
}
@media (max-width: 1200px) {
	.btn-small {
		font-size: 14px;
	}
}
@media (max-width: 767px) {
	.btn-main {
		width: 100%;
	}
}

/* ------------------------------------------------------------- *
 * Header
/* ------------------------------------------------------------- */
.header {
	position: fixed;
 	width: 100%;
 	top: 0;
 	left: 50%;
 	transform: translateX(-50%);
 	z-index: 998;
 	padding: 12px 30px;
  transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}
.header-scrolled {
  background: rgb(210 210 210 / 3%);
  backdrop-filter: blur(80px);
  box-shadow: 0 3px 14px rgb(0 0 0 / 2%);
}
.header .header-wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.header .header-logo {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	max-width: 185px;
/*	margin-right: auto;*/
}
.header .header-menu {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
   	margin: auto;
}
.header .header-menu-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
    margin: auto;
}
.header .header-menu-list li {
	margin-right: 25px;
}
.header .header-menu-list li:last-child {
	margin-right: 0;
}
.header .header-menu-list li a {
	position: relative;
  font-size: 15px;
  font-weight: 400;
  padding: 8px 0;
  color: var(--color-dark-1);
  -webkit-transition: -webkit-transform .2s ease;
  transition: -webkit-transform .2s ease;
  -o-transition: transform .2s ease;
  transition: transform .2s ease;
  transition: transform .2s ease, -webkit-transform .2s ease;
}
.header .header-menu-list li a:before {
	content: "";
	position: absolute;
	-webkit-transition: -webkit-transform .2s ease;
	transition: -webkit-transform .2s ease;
	-o-transition: transform .2s ease;
	transition: transform .2s ease;
	transition: transform .2s ease, -webkit-transform .2s ease;
}
.header .header-menu-list li a:before {
	left: 0;
	bottom: 0;
	width: 100%;
	height: 1px;
	background: var(--yellow-dark);
	-webkit-transform: scaleX(0);
	-ms-transform: scaleX(0);
	    transform: scaleX(0);
}
.header .header-menu-list li a:hover,
.header .header-menu-list li a.active {
	color: var(--yellow-dark);
}
.header .header-menu-list li a.active {
	font-weight: 500;
}
.header .header-menu-list li a:hover:before,
.header .header-menu-list li a.active:before {
  -webkit-transform: scaleX(1);
      -ms-transform: scaleX(1);
          transform: scaleX(1);
}

.header .header-buttons {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}

.header .header-buttons .btn {
	height: 50px;
	width: 225px;
}

.header .header-burger {
	position: relative;
  width: 50px;
  height: 50px;
  background: var(--black-30);
  border: 2px solid var(--white-15);
  border-radius: 100px;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  margin-left: 15px;
}

.header .header-burger .line {
  fill: none;
  stroke: var(--white);
  stroke-width: 6;
  stroke-linecap: round;
  transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
              stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1),
              transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

.header .header-burger .line1 {
  stroke-dasharray: 32 200;
  stroke-dashoffset: -14;
  stroke-width: 6;
}
.header .header-burger .line2 {
  stroke-dasharray: 60 60;
  stroke-width: 6;
}
.header .header-burger .line3 {
  stroke-dasharray: 32 200;
  stroke-dashoffset: -14;
  stroke-width: 6;
}

.header .header-burger.opened {
	background: transparent;
}
/*.header .header-burger svg g {
	transition: transform 0.4s ease-in-out;
}
.header .header-burger.opened svg g {
	transform: scale(0.85) translate(50%, 50%);
  transform-origin: center;
}*/
.header .header-burger.opened .line1 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
}
.header .header-burger.opened .line2 {
  stroke-dasharray: 1 60;
  stroke-dashoffset: -30;
}
.header .header-burger.opened .line3 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
}

.header-cta {
	margin-left: 12px;
}

@media (max-width: 992px) {
	.header .header-menu {
		display: none;
	}
	.header .header-burger {
		display: -webkit-box!important;
		display: -ms-flexbox!important;
		display: flex!important;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
	.header .header-buttons .btn {
		width: auto;
	}
}
@media (max-width: 767px) {
	.header {
		padding: 12px 15px;
	}
	.header .header-logo {
		max-width: 110px;
	}
	.header .header-button .btn {
		padding: 10px;
		font-size: 14px;
	}
	.header .header-buttons .btn {
		width: auto;
		height: 42px;
		font-size: 14px;
		padding: 12px 18px;
	}
	.header .header-burger {
		width: 42px;
		height: 42px;
	}
}
@media (max-width: 599px) {
	.header-main .header-buttons .btn-phone {
		display: none;
	} 
}
@media (max-width: 350px) {
	.header .logo {
		width: 100px;
	}
	.header .header-burger {
		margin-left: 5px;
		margin-left: 10px;
	}
	.header .header-buttons .btn {
		padding: 12px 15px;
	}
}

/* ------------------------------------------------------------- *
 * Menu Overlay
/* ------------------------------------------------------------- */
.menu-overlay {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: rgb(32 34 40 / 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.menu-overlay.opened {
  opacity: 1;
  visibility: visible;
}
.menu-list {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 45px;
  margin-top: -75px;
}
.menu-list li a {
  font-size: clamp(28px, 8vw, 52px);
  font-weight: 400;
  line-height: 100%;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s;
}
.menu-list li a:hover {
  color: var(--red); 
}
.menu-overlay .footer {
	position: absolute;
	bottom: 0;
	padding-left: 30px;
	padding-right: 30px;
}
@media (max-width: 767px) {
	.menu-list {
		gap: 25px;
		margin-top: -130px;
	}
	.menu-overlay .footer {
		padding: 45px 15px 75px 15px;
	}
}
/* ------------------------------------------------------------- *
 * Title
/* ------------------------------------------------------------- */
.section .title {
	font-size: clamp(37px, 7vw, 87px);
	font-weight: 400;
	line-height: 100%;
	text-transform: uppercase;
}
/* ------------------------------------------------------------- *
 * Section / Intro
/* ------------------------------------------------------------- */
.intro {
	position: relative;
	padding-top: 112px;
	padding-bottom: 90px;
}
.intro .group {
	position: relative;
}
.intro .sketch {
	position: relative;
	width: 100%;
  max-width: 687px;
	margin: 0 auto;
}
.intro .sketch:before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: calc(100% + 7.28%);
	height: calc(100% + 7.28%);
	background: var(--grey);
	border-radius: 100%;
	z-index: -1;
}
.intro .sketch img {
	mix-blend-mode: screen;
}

.intro .title span:nth-child(1) {
	position: absolute;
  top: 90px;
}
.intro .title span:nth-child(2) {
	position: absolute;
	text-align: left;
	bottom: 60px;
	right: 0;
}
.intro .title span:nth-child(1) {
  top: clamp(40px, 10vw, 90px);
  left: 0;
  right: auto;
}
.intro .title span:nth-child(2) {
  bottom: clamp(20px, 7vw, 60px);
  right: 0;
  text-align: left;
}
.intro .subtitle {
	position: absolute;
	top: 194px;
	color: var(--light-grey);
	font-size: clamp(20px, 2.5vw, 20px);
}
.intro .colors {
	position: absolute;
	top: 90px;
	right: 0;
}
.intro .colors {
  top: clamp(30px, 10vw, 90px);
  right: 0;
}
.intro .colors .text {
	text-align: left;
	font-size: clamp(16px, 2.5vw, 20px);
	line-height: 140%;
	color: var(--light-grey);
}
.intro .colors .pallete {
	display: flex;
	flex-direction: row;
	gap: 30px;
	margin-top: 10px;
}
.intro .colors .pallete div {
	position: relative;
	width: 43px;
	height: 43px;
	padding: 8px;
	border: 1px solid var(--white-15);
	border-radius: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.intro .colors .pallete div > div {
	position: relative;
	width: 100%;
	height: 100%;
	border-radius: 100%;
}
.intro .colors .pallete div:nth-child(1) > div {
/*	background: var(--white);*/
	background: #4f6d21;
}
.intro .colors .pallete div:nth-child(2) > div {
/*	background: var(--black);*/
	background: #1a3d9a;
}
.intro .colors .pallete div:nth-child(3) > div {
	background: var(--red);
}
.intro .colors .pallete div:nth-child(4) > div {
	background: #887761;
}
.intro .colors .pallete div:nth-child(5) > div {
	background: #7DA2BC;
}

.intro .btn-cta {
	position: absolute;
	bottom: 142px;
	left: 0;
}
.intro .btn-cta {
  bottom: clamp(60px, 10vw, 142px);
  left: 0;
}

.intro .scroll-down {
	position: absolute;
	left: 0;
	bottom: -35px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: 300;
  font-size: 16px;
  gap: 18px;
  cursor: pointer;
  user-select: none;
}
.scroll-down span {
  writing-mode: sideways-lr;
  text-orientation: mixed;
  color: var(--white-50);
  font-size: clamp(12px, 1.5vw, 16px);
  font-weight: 300;
  letter-spacing: 2.5px;
}
.scroll-down svg {
  transform: rotate(90deg);
  width: 24px;
  height: 24px;
  animation: scroll-bounce 1.8s infinite ease-in-out;
  opacity: .20;
}
.scroll-down svg path {
  fill: var(--white);
}
@keyframes scroll-bounce {
  0%, 100% {
    transform: rotate(90deg) translateX(-3px);
  }
  50% {
    transform: rotate(90deg) translateX(3px);
  }
}
@media (max-width: 1300px) {
	.intro .colors {
		max-width: 300px;
	}
	.intro .colors .pallete {
		gap: 24px;
	}
	.intro .colors .pallete div {
		width: 35px;
		height: 35px;
	}
}
@media (max-width: 1100px) {
	.intro .sketch img {
		transform: scale(.85);
	}
}
@media (max-width: 992px) {
	.intro {
		padding-top: 100px;
		padding-bottom: 30px;
	}
	.intro .sketch img {

	}
	.intro .sketch:before {
		width: 100%;
		height: 100%;
	}
	.intro .btn-cta {
		max-width: 320px;
	}
  .intro .title {
    text-align: center;
  }
  .intro .title span:nth-child(1),
  .intro .title span:nth-child(2) {
    position: static;
    display: block;
    text-align: left;
  }
  .intro .subtitle,
  .intro .colors,
  .intro .btn-cta,
  .intro .scroll-down {
    position: static;
  }
  .intro .sketch {
  	margin: -60px auto 0;
  	max-width: 565px;
  }
  .intro .sketch img {
     transform: scale(1);
 	}
 	.intro .scroll-down {
  	display: none;
  }
  .intro .colors {
  	margin: 0 auto;
  }
  .intro .btn-cta {
    margin: 32px auto 0;
    max-width: 540px;
    width: 100%;
  }

  .intro .colors {
  	display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
    max-width: 100%;
  }
  .intro .colors .text {
  	display: flex;
  	justify-content: flex-end;
  	text-align: right;
  }
  .intro .colors .pallete {
  	display: flex;
   	flex-wrap: wrap;
   	justify-content: center;
   	max-width: 100%;
   	gap: 7px 9px;
   	margin-top: 0;
  }
  .intro .colors .pallete div {
  	width: 28px;
  	height: 28px;
  }
}
@media (max-width: 767px) {
  .intro .subtitle {
  	text-align: left;
  	margin-top: 12px;
  }
  .intro .colors .pallete {
    justify-content: center;
  }
  .intro .sketch {
  	margin: -50px auto 0;
    mix-blend-mode: screen;
    z-index: -1;
    max-width: 538px;
  }
  .intro .sketch:before {
  	display: none;
  	width: calc(100% + 3.28%);
    height: calc(100% + 3.28%);
  }
  /*.intro .colors .pallete div:nth-child(3) {
  	margin-right: 15.5px;
  }*/
  .intro .btn-cta {
  	max-width: 430px;
  }
}
@media (max-width: 500px) {
	.intro .sketch {
		transform: scale(1.2);
	}
}
@media (max-width: 450px) {
	.intro .colors {
		gap: 0;
	}
	.intro .colors .pallete {
   	max-width: 130px;
  }
}
@media (max-width: 375px) {
	.intro .colors .pallete {
   	max-width: 115px;
   	gap: 7px 4px;
  }
}
@media (max-width: 350px) {
	.intro .colors .text {
		font-size: 14px;
	}
}

/* ------------------------------------------------------------- *
 * Section / Product
/* ------------------------------------------------------------- */
.product {
	position: relative;
}
.product .arrow {
	position: absolute;
	top: 70px;
	right: 0;
	width: 199px;
	transform: rotate(135deg);
	opacity: .05;
}
.product .arrow svg {
	width: 100%;
}
.product .arrow svg path {
	fill: var(--white);
}

.product .title {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 70px;
}
.product .title-left {
  align-self: flex-start;
}
.product .title-centered {
	padding-left: 18%;
  text-align: left;
}

.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 100%;
  width: 100%;
}
.features .group {
	display: flex;
	flex-direction: row;
	gap: 30px;
	width: 100%;
}
.features .group:nth-child(1) {
	padding-left: 18%;
}
.features .group:nth-child(2) {
	padding-left: 10%;
}
.features .feature {
	position: relative;
  width: 100%;
  max-width: 440px;
  border: 2px solid var(--white-15);
  padding: 20px;
  color: var(--white);
  font-size: 20px;
  padding: 30px 45px;
  margin-bottom: 47px;
  height: 137px;
  display: flex;
  align-items: center;
  text-align: left;
  border-radius: 0 30px 30px 30px;
  gap: 7px;
}
.features .feature:last-child {
	margin-bottom: 0;
}

.features .feature::before {
  content: '';
  position: absolute;
  top: -21px;
  left: -21px;
  width: 42px;
  height: 42px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 4px 31.9px 3px rgba(237, 28, 36, 1);
  z-index: 1;
}
.features .feature::after {
  content: '';
  position: absolute;
  top: -11px;
  left: -11px;
  width: 22px;
  height: 22px;
  background-image: url('../images/icons/icon-arrow-r.svg');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  transform: rotate(45deg);
  z-index: 2;
}
@media (max-width: 1200px) {
	.features .feature {
		align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    max-width: 360px;
	}
	.features .feature br {
		display: none;
	}
	.features .group:nth-child(1),
	.product .title-centered {
		padding-left: 17%;
	}
	.features .group:nth-child(2) {
		padding-left: 8%;
	}
	.product .arrow {
    top: 45px;
    width: 180px;
	}
}
@media (max-width: 992px) {
	.features .group {
		justify-content: center;
	}
	.features .group:nth-child(1),
	.features .group:nth-child(2),
	.product .title-centered {
		padding-left: 0%;
	}
	.product .arrow {
    top: clamp(20px, 5vw, 45px);
    width: clamp(100px, 18vw, 180px);
	}
}
@media (max-width: 767px) {
	.product .arrow {
		width: 75px;
		top: clamp(40px, 5vw, 45px);
	}
	.product .title-centered {
		padding-left: 0;
	}
	.features .group {
		display: flex;
		flex-direction: column;
		gap: 40px;
		width: 100%;
		margin-bottom: 40px;
		padding-left: 20px!important;
	}
	.features .group:last-child {
		margin-bottom: 0;
	}
	.features .feature {
		font-size: 16px;
		margin-bottom: 0!important;
		align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    max-width: 100%;
	}
}
/* ------------------------------------------------------------- *
 * Section / Details
/* ------------------------------------------------------------- */
.details {
  background: var(--grey);
  padding: 100px 36px;
  border-radius: 30px;
}
.details .group {
	display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.details .title {
	margin-bottom: 13px;
}
.details .subtitle {
	font-size: 20px;
	color: var(--light-grey);
}
.details-list {
	flex: 1 1 60%;
  max-width: calc(100% - 469px);
	margin-left: 40px;
	margin-top: 25px;
}
.details-list li {
	display: flex;
	align-items: center;
	gap: 26px;
	position: relative;
	padding: 21px 0;
	border-top: 2px solid var(--white-15);
	color: var(--white);
}
.details-list li .plus {
	position: relative;
	width: 22px;
  height: 22px;
  min-width: 22px;
  min-height: 22px;
  background-image: url('../images/icons/icon-plus.svg');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform .2s ease-in-out;
}
.details-list li:hover .plus {
	transform: rotate(-90deg);
}

.details .banner {
  max-width: 329px;
  width: 100%;
}
.details .banner .inner {
	background-color: #000;
  height: 447px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 39px; 
  overflow: hidden;
}
.details .banner picture,
.details .banner img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.details .banner .btn-cta {
	margin-top: 7px;
	width: 100%;
}
@media (max-width: 992px) {
	.details {
/*		margin-top: 30px;*/
		padding: 50px 15px;
	}
	.details .group {
		gap: 40px;
		flex-wrap: nowrap;
	}
	.details .details-list {
		max-width: unset;
		margin-left: 20px;
	}
	.details .banner {
		max-width: 260px;
	}
	.details .banner .inner {
		height: 360px;
	}
}
@media (max-width: 767px) {
	.details .group {
		gap: 20px;
		flex-direction: column;
	}
	.details .banner {
		max-width: 100%;
	}
	.details .banner .inner {
  	height: 760px;
  }
	.details-list {
		flex: 1;
		max-width: 100%;
    margin-left: 0;
	}
	.details-list li {
    align-items: flex-start;
    gap: 20px;
  }
  .details .banner .btn-cta {
    margin-top: 40px;
	}
}
@media (max-width: 650px) {
	.details .banner .inner {
		height: 600px;
	}
}
@media (max-width: 500px) {
	.details .banner .inner {
		height: 500px;
	}
}
@media (max-width: 400px) {
	.details .banner .inner {
		height: 420px;
	}
}
@media (max-width: 375px) {
	.details .banner .inner {
		height: 390px;
	}
}
/* ------------------------------------------------------------- *
 * Section / Pallete
/* ------------------------------------------------------------- */

.section.pallete {
	position: relative;
	padding-top: 250px;
}
.section.pallete .layer-1 {
	position: absolute;
	top: -110px;
	right: 0;
	width: 40vw;
  max-width: 650px;
	z-index: 5;
}
.section.pallete .layer-2 {
	position: absolute;
	top: 470px;
	left: -120px;
	z-index: -1;
	width: clamp(400px, 60vw, 834px);
}
.section.pallete .title {
	position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 70px;
  z-index: 10;
}
.section.pallete .title .arrow {
	position: absolute;
  top: -15px;
  left: 550px;
  width: 199px;
  opacity: .05;
  z-index: 5;
}
.section.pallete .title .arrow svg {
	width: 100%;
}
.section.pallete .title .arrow svg path {
	fill: var(--white);
}
.section.pallete .title-left {
  align-self: flex-start;
}
.section.pallete .title-centered {
	padding-left: 20%;
  text-align: left;
  padding-top: 39px;
}

/* Контейнер */
.slider {
	width: 1110px;
  margin: 20% auto 0;
}
.slider .heading {
	font-size: 40px;
	font-weight: 400;
	line-height: 100%;
	text-transform: uppercase;
	margin-bottom: 24px;
}
.slider-container {
  padding: 60px 0;
  background: #000;
  border-radius: 30px;
  position: relative;
}
.slider-container:before,
.slider-container:after {
  content: '';
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  pointer-events: none;
  z-index: 5;
  border-radius: 30px;
}
.slider-container:before {
  left: 0;
  background: linear-gradient(to right, #000 0%, rgba(0, 0, 0, 0) 100%);
}
.slider-container:after {
	right: 0;
	background: linear-gradient(to left, #000 0%, rgba(0, 0, 0, 0) 100%);
}
/* Слайды */
.custom-slider .slide {
  background: transparent;
  padding: 0 40px;
  margin: 0 15px;
}
.slick-slider {
	overflow: hidden;
}
.slick-list {
  overflow: visible !important;
}
.slick-track {
  display: flex;
}
/* Кастомные стрелки */
.arrows {
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% + 48px);
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 10;
}
.arrow-left,
.arrow-right {
  width: 48px;
  height: 48px;
  background: transparent;
  border: 1px solid var(--white-15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  cursor: pointer;
  transition: all .2s ease-in-out;
  z-index: 2;
}
.arrow-left svg,
.arrow-right svg {
  width: 20px;
  height: 20px;
  transform: rotate(180deg);
}
.arrow-right svg {
  transform: rotate(0deg);
}
.arrow-left svg path,
.arrow-right svg path {
	fill: var(--white);
}
.arrow-left:hover,
.arrow-right:hover {
	background: var(--red);
}
.arrow-left.slick-hidden,
.arrow-right.slick-hidden {
  display: flex !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}

.slide .color {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	gap: 14px;
	padding-left: 12px;
	padding-top: 14px;
}
.slide .color .circle {
	width: 36px;
	height: 36px;
	min-width: 36px;
  min-height: 36px;
	background: #363636;
	border-width: 4px;
	border-style: solid;
	border-color: white;
	border-radius: 50%;
}
.slide .color .circle.brown {
	background: #765852;
	border-color: white;
}
.slide .color .circle.white {
	background: #EEEEEE;
	border-color: #484848;
}
.slide .color .circle.black {
	background: #151515;
	border-color: white;
}
.slide .color .text {
	padding-top: 6px;
	display: flex;
	flex-direction: column;
}
.slide .color .text span:nth-child(1) {
	font-size: 18px;
}
.slide .color .text span:nth-child(2) {
	color: var(--white-50);
}
.custom-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 35px;
}
.custom-dots .slick-dots {
	display: flex;
	gap: 8px;
}
.custom-dots .slick-dots li {
	display: inline-flex;
	padding: 4px;
	background: var(--white);
	border-radius: 50%;
}
.custom-dots .slick-dots li:nth-child(3) {
	background: var(--white-50);
}
.custom-dots .custom-dot {
  width: 20px;
  height: 20px;
  padding: 4px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  transition: transform 0.3s;
}
.custom-dots .custom-dot.slick-active {
  opacity: 1;
  transform: scale(1.1);
}
.custom-dots .dot-1 { background-color: #363636; }
.custom-dots .dot-2 { background-color: #765852; }
.custom-dots .dot-3 { background-color: #EEEEEE; }
.custom-dots .dot-4 { background-color: #151515; }

@media (min-width: 768px) {
	.custom-dots {
		display: none;
	}
}
@media (max-width: 1400px) {
	.section.pallete .title-left,
	.section.pallete .title-centered {
		font-size: clamp(37px, 6vw, 87px);
	}
	.section.pallete .layer-1 {
    top: -50px;
	}
	.section.pallete .title .arrow {
		top: 0;
    left: 40%;
    width: 160px;
	}
}
@media (max-width: 1200px) {
	.section.pallete {
		padding-top: 200px;
	}
  .section.pallete .title .arrow {
    left: 42%;
    width: 130px;
  }
  .slider {
   	width: calc(100% - 100px);
   	margin: 24% auto 0;
  }
  .custom-slider .slide {
   	padding: 0 30px;
  }
  .section.pallete .layer-2 {
   	left: -170px;
  }
}
@media (max-width: 992px) {
	.section.pallete {
		padding-top: 150px;
	} 
	.section.pallete .title-centered {
    padding-left: 18%;
    padding-top: 30px;
	}
	.section.pallete .title .arrow {
		width: 110px;
	}
	.section.pallete .layer-1 {
		top: -20px;
		width: 37vw;
	}
	.section.pallete .layer-2 {
		top: 320px;
    left: -100px;
  }
  .slider {
  	margin: 20% auto 0;
  }
}
@media (max-width: 767px) {
	.section.pallete .title .arrow {
    width: 85px;
  } 
  .section.pallete .title-centered {
  	padding-top: 20px;
  }
  .slider {
  	width: calc(100% - 40px);
  }
  .slider-container {
  	padding: 60px 0 50px 0;
  }
  .section.pallete .layer-2 {
     top: 270px;
     left: -100px;
     width: clamp(500px, 60vw, 834px);
 	}
}
@media (max-width: 590px) {
	.section.pallete {
		padding-top: 100px;
	}
	.section.pallete .container {
		display: flex;
		flex-direction: column;
	}
	.section.pallete .layer-1 {
    position: static;
    display: block;
    text-align: left;
  }
  .section.pallete .layer-1 {
  	width: 100%;
  	max-width: 275px;
    margin-left: auto;
  }
  .section.pallete .layer-2 {
    position: absolute;
    top: 280px;
    left: -50px;
    width: 570px;
	}
  .section.pallete .title {
  	margin-top: -80px;
  	margin-bottom: 180px;
  }
  .section.pallete .title-centered {
  	padding: 0;
  }
  .section.pallete .title .arrow {
    top: unset;
    left: unset;
    right: 0;
    bottom: -110px;
    transform: rotate(-90deg);
    width: 100px;
	}
  .slider .heading {
		font-size: 30px;
    padding: 30px 15px 0 30px;
    max-width: 300px;
    margin-bottom: 0;
	}
	.slider {
		width: calc(100% - 30px);
		background: var(--black);
		border-radius: 30px;
		margin: 0 auto;
	}
	.slider-container:before, .slider-container:after {
		width: 75px;
	}
	.custom-slider .slide {
		padding: 0 10px 0 20px;
	}
	.slide .color {
		padding-left: 25px;
	}
	.slide .color .circle {
	  width: 40px;
	  height: 40px;
	  min-width: 40px;
	  min-height: 40px;
	}
	.slide .color .text span:nth-child(1) {
		font-size: 22px;
	}
	.slide .color .text span:nth-child(2) {
    font-size: 18px;
	}
}
@media (max-width: 500px) {
	.section.pallete .layer-2 {
    left: 50%;
    transform: translateX(-50%);
	}
}
/* ------------------------------------------------------------- *
 * Section / Carbon
/* ------------------------------------------------------------- */
.carbon .container {
	display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.carbon .text {
	max-width: 570px;
	flex: 1 1 39.58%;
  max-width: 570px;
}
.carbon .text .title {
	font-size: 40px;
	margin-bottom: 55px;
}
.carbon .text .title span {
	color: var(--red);
}
.carbon .banner {
	position: relative;
	flex: 0 0 60.42%;
  max-width: 870px;
}
.carbon .banner .circle {
  width: clamp(300px, 44vw, 635px);
  height: clamp(300px, 44vw, 635px);
  background: var(--grey);
  border-radius: 50%;
}
.carbon .banner .img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: clamp(280px, 36vw, 550px);
	margin-left: 6%;
	margin-top: -20px;
}

.carbon .banner .text {
	position: absolute;
	bottom: 0;
	right: 0;
  width: 100%;
  max-width: 380px;
  border: 2px solid var(--white-15);
  color: var(--white);
  padding: 30px 45px;
  margin-bottom: 47px;
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: left;
  border-radius: 0 30px 30px 30px;
  gap: 12px;
}
.carbon .banner .text .heading {
  font-size: clamp(20px, 2.2vw, 24px);
  font-weight: 500;
  margin-right: auto;
}
.carbon .banner .text span {
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 200;
}
.carbon .banner .text .arrow {
	width: 42px;
  height: 42px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 4px 31.9px 3px rgba(237, 28, 36, 1);
  z-index: 1;
  position: absolute;
  top: -21px;
  left: -21px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carbon .banner .text .arrow img {
	width: 50%;
	height: 50%;
	transform: rotate(45deg);
}
/*.carbon .banner .text::before {
  content: '';
  position: absolute;
  top: -21px;
  left: -21px;
  width: 42px;
  height: 42px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 4px 31.9px 3px rgba(237, 28, 36, 1);
  z-index: 1;
}
.carbon .banner .text::after {
  content: '';
  position: absolute;
  top: -11px;
  left: -11px;
  width: 22px;
  height: 22px;
  background-image: url('../images/icons/icon-arrow-r.svg');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  transform: rotate(45deg);
  z-index: 2;
}*/
@media (min-width: 768px) {
	.show-mobile {
		display: none;
	}
}
@media (max-width: 1400px) {
	.carbon .banner .img {
		margin-left: 0;
	}
}
@media (max-width: 1200px) {
	.carbon {
		padding-top: 30px;
	}
	.carbon .text {
		flex: 1 1 40%;
	}
	.carbon .banner {
		flex: 1 1 59%;
	}
	.carbon .text .title {
    font-size: 36px;
    line-height: 120%;
	}
	.carbon .banner .text {
		max-width: 320px;
		padding: 30px;
	}
	.carbon .banner .text .heading {
		font-size: clamp(20px, 2vw, 28px);
	}
	.carbon .banner .text span {
    font-size: clamp(16px, 1.6vw, 24px);
	}
	.carbon .banner .img {
    width: clamp(280px, 42vw, 550px);
    margin-top: -50px;
	}
}
@media (max-width: 992px) {
	.carbon .text .title {
    font-size: 30px;
  }
  .carbon .banner .text {
  	max-width: 260px;
    padding: 30px;
    bottom: -100px;
  }
}
@media (max-width: 767px) {
	.carbon {
		padding-bottom: 30px;
	}
	.carbon .container {
		flex-direction: column;
	}
	.carbon .text {
		flex: 1 1 100%;
		margin-right: auto;
	}
	.carbon .banner {
		flex: 1 1 100%;
	}
	.carbon .text .btn {
		display: none;
	}
	.carbon .text .title {
		font-size: 30px;
		margin-bottom: 10px;
	}
	.carbon .banner .text {
		position: relative;
		display: flex;
		padding: 35px 25px;
    margin-left: 15px;
    width: calc(100% - 15px);
    margin: -70px auto 0;
    max-width: 100%;
    bottom: unset;
	}
	.carbon .banner .circle {
		width: 100%;
		height: auto;
		aspect-ratio: 1 / 1;
	}
	.carbon .banner-inner {
		position: relative;
	}
	.carbon .banner .img {
		width: 93%;
		height: auto;
		margin-left: 12%;
	}
}
/* ------------------------------------------------------------- *
 * Footer
/* ------------------------------------------------------------- */
.footer {
	width: 100%;
	padding: 45px 0;
}
.footer .container {
	display: flex;
	flex-direction: row;
	align-items: center;
}
.footer .social {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-right: 65px;
}
.footer .social a {
	display: inline-flex;
	opacity: .6;
}
.footer .social a svg {
	width: 30px;
	height: 30px;
}
.footer .social a svg path {
	fill: var(--grey-2);
}
.footer .copyright {
	color: var(--white-50);
}
.footer .buttons {
	display: flex;
	align-items: center;
	flex-direction: row;
	margin-left: auto;
	gap: 12px;
}
.footer .buttons .btn:nth-child(1) {
	color: var(--white-70);
}
@media (max-width: 992px) {
	.footer .social {
		margin-right: 30px;
		gap: 15px;
	}
	.footer .copyright {
    max-width: 150px;
	}
}
@media (max-width: 767px) {
	.footer .container {
		flex-direction: column;
		gap: 20px;
	}
	.footer .social {
		order: 1;
	}
	.footer .social,
	.footer .copyright {
		margin: auto;
		text-align: center;
		font-size: 14px;
	}
	.footer .copyright {
		order: 3;
		max-width: 100%;
	}
	.footer .buttons {
		margin: 0;
		width: 100%;
		order: 2;
	}
	.footer .buttons .btn {
		font-size: 14px;
		padding: 12px;
		flex-grow: 1;
	}
}
/* ------------------------------------------------------------- *
 * Modal
/* ------------------------------------------------------------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.modal-content {
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.modal.opened {
	pointer-events: auto;
}
.modal.opened .modal-content {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgb(32 34 40 / 80%);
  backdrop-filter: blur(15px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 1;
}
.modal.opened .modal-overlay {
  opacity: 1;
  visibility: visible;
}
.modal-content {
  background: var(--grey);
  padding: 50px 30px;
  border-radius: 30px;
  position: relative;
  max-width: 400px;
  width: calc(100% - 30px);
  z-index: 1;
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.1), 0 8px 30px rgba(0, 0, 0, 0.15);
}
.modal-close {
  position: absolute;
  right: 20px;
  top: 23px;
  cursor: pointer;
  display: inline-block;
  width: 24px;
  height: 24px;
  overflow: hidden;
}
.modal-close:hover::before, .modal-close:hover::after {
  background: var(--white);
}
.modal-close::before, .modal-close::after {
  content: "";
  position: absolute;
  height: 2px;
  width: 100%;
  top: 50%;
  left: 0;
  margin-top: -1px;
  background: rgb(127 127 127);
}
.modal-close::before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.modal-close::after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.modal-close.thick::before, .modal-close.thick::after {
  height: 3px;
  margin-top: -2px;
}
.modal-close.rounded::before, .modal-close.rounded::after {
  border-radius: 5px;
}
.modal-content h2 {
  margin-bottom: 32px;
  font-size: 26px;
  font-weight: 400;
  text-align: center;
}
.form-group {
  margin-bottom: 18px;
  position: relative;
}
.form-group label {
  display: block;
	font-size: 14px;
  margin-bottom: 6px;
}
.form-group input {
	isplay: block;
  width: 100%;
  padding: 12px 16px;
  font-size: 15px;
  font-weight: 400;
  line-height: 120%;
  height: 46px;
  color: var(--white);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  background-clip: padding-box;
  border: 1px solid rgb(255 255 255 / 10%);
  border-radius: 10px;
  -webkit-transition: border-color .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
  transition: border-color .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out, -webkit-box-shadow .15s ease-in-out
}
.error-message {
	display: none;
  font-size: 13px;
  color: #fd2c2c;
  margin-top: 5px;
  min-height: 16px;
}
.btn-submit {
	font-size: 16px;
  width: 100%;
  cursor: pointer;
  margin-top: 40px;
}
.btn-submit > div {
	width: 40px;
	height: 40px;
}

.modal-success {
  margin-top: 15px;
  text-align: center;
  color: green;
}



.thanks {
	min-height: 80vh;
	display: flex;
  align-items: center;
  justify-content: center;
}
.thanks .container {
	text-align: center;
}
.thanks .container .group {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.thanks .container .title {
	margin-bottom: 20px;
}
.thanks .container .subtitle {
	position: static;
}
.thanks .container .btn {
	margin: 40px auto 0;
}

.thanks .title {
	font-size: clamp(42px, 7vw, 87px);
}
.thanks .subtitle {
	font-size: 16px;
	text-align: center;
}
@media (max-width: 500px) {
	.thanks .subtitle {
		max-width: 320px;
		margin: 0 auto;
	}
}