  :root {
  	--primary: #2463EB;
  	--primary-dark: #1D4FD7;
     --light-gray: #f1f5f9;
  	--accent: #DCEBFE;
  	--text-primary: #171717;
  	--bg-primary: #ffffff;
  	--radius: 12px;
  	--radius-lg: 30px;
  	--border-color: #E1E7EF;
  	--shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  	--shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
  	--glass-bg: rgba(255, 255, 255, 0.1);
  	--glass-border: rgba(255, 255, 255, 0.2);
  	--glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  	--transition: all 0.3s ease;
  }

  @font-face {
  	font-family: "Lato";
  	font-weight: 300;
  	font-display: swap;
  	src: url(..fonts/Lato-Light.woff);
  	src: url(../fonts/Lato-Light.woff2) format("woff2"),
  		url(../fonts/Lato-Light.woff) format("woff");
  }

  @font-face {
  	font-family: "FuturaNew";
  	font-weight: 400;
  	font-display: swap;
  	src: url(..fonts/FuturaNew-Book.woff);
  	src: url(../fonts/FuturaNew-Book.woff2) format("woff2"),
  		url(../fonts/FuturaNew-Book.woff) format("woff");
  }

  @font-face {
  	font-family: "FuturaNew";
  	font-weight: 700;
  	font-display: swap;
  	src: url(..fonts/FuturaNew-Demi.woff);
  	src: url(../fonts/FuturaNew-Demi.woff2) format("woff2"),
  		url(../fonts/FuturaNew-Demi.woff) format("woff");
  }

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

  blockquote,
  body,
  code,
  dd,
  div,
  dl,
  dt,
  fieldset,
  form,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  input,
  li,
  p,
  pre,
  td,
  textarea,
  th,
  ul {
  	margin: 0;
  	padding: 0
  }

  textarea {
  	resize: none
  }

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

  abbr,
  fieldset,
  img {
  	border: 0
  }

  address,
  caption,
  cite,
  code,
  dfn,
  ,
  strong,
  th,
  var {
  	font-style: normal;
  	font-weight: 400
  }

  ul li {
  	list-style: none;
  	color: inherit
  }

  caption,
  th {
  	text-align: left
  }

  input,
  select,
  textarea {
  	font-family: inherit;
  	font-size: inherit;
  	font-weight: inherit
  }

  article,
  aside,
  details,
  figcaption,
  figure,
  footer,
  header,
  main,
  menu,
  nav,
  section {
  	display: block
  }

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

  footer,
  header,
  section {
  	min-width: 320px;
  	overflow: hidden
  }

  .scrollTop,
  .scrollto,
  a,
  button,
  svg {
  	-webkit-transition: all .3s ease;
  	transition: all .3s ease
  }

  a,
  a:active,
  a:focus,
  a:hover,
  button,
  button:active,
  button:focus,
  button:hover,
  input,
  input:active,
  input:focus,
  textarea,
  textarea:active,
  textarea:focus {
  	text-decoration: none;
  	outline: 0;
  	-webkit-tap-highlight-color: transparent;
  	-webkit-tap-highlight-color: transparent
  }

  .container,
  .wrapper {
  	position: relative;
  	max-width: 1200px;
  }

  a {
  	color: inherit
  }

  :after,
  :before,
  a,
  button,
  div,
  footer,
  form,
  header,
  input,
  li,
  nav,
  p,
  section,
  ul {
  	-webkit-box-sizing: border-box;
  	box-sizing: border-box
  }

  input:not([type=checkbox]):not([type=radio]),
  select,
  textarea {
  	-webkit-appearance: none !important;
  	-moz-appearance: none !important;
  	appearance: none !important
  }

  input:invalid {
  	-webkit-box-shadow: none;
  	box-shadow: none
  }

  @-webkit-keyframes autofill {
  	to {
  		color: #2d3865;
  		background: transparent;
  	}
  }

  input:-webkit-autofill {
  	-webkit-animation-name: autofill;
  	-webkit-animation-fill-mode: both;
  }


  button {
  	border: none
  }

  html {
  	overflow-x: hidden
  }

  html.locked {
  	overflow: hidden;
  	-ms-touch-action: none;
  	touch-action: none;
  }

  ::-webkit-scrollbar,
  ::-webkit-scrollbar {
  	-webkit-appearance: none;
  	width: 3px;
  	height: 3px;
  	border-radius: 6px;
  	background-color: #EAEAEA
  }

  ::-webkit-scrollbar-thumb,
  ::-webkit-scrollbar-thumb {
  	border-radius: 3px;
  	background: var(--text-primary);
  	-webkit-box-shadow: 0 0 2px #EAEAEA
  }

  @-webkit-keyframes float {
  	0% {
  		-webkit-transform: translateY(0px);
  		transform: translateY(0px);
  	}

  	50% {
  		-webkit-transform: translateY(-10px);
  		transform: translateY(-10px);
  	}

  	100% {
  		-webkit-transform: translateY(0px);
  		transform: translateY(0px);
  	}
  }

  @keyframes float {
  	0% {
  		-webkit-transform: translateY(0px);
  		transform: translateY(0px);
  	}

  	50% {
  		-webkit-transform: translateY(-10px);
  		transform: translateY(-10px);
  	}

  	100% {
  		-webkit-transform: translateY(0px);
  		transform: translateY(0px);
  	}
  }

  .floating {
  	-webkit-animation: float 6s ease-in-out infinite;
  	animation: float 6s ease-in-out infinite;
  }


  body {
  	min-width: 320px;
  	position: relative;
  	margin: 0;
  	padding: 0;
  	font-family: 'Lato', sans-serif;
  	font-weight: 300;
  	color: var(--text-primary);
  	background: #ffffff;
  	font-size: 18px;
  	line-height: 1.4;
  	/*	letter-spacing: 0.04em;*/
  	overflow-x: hidden;
  	border: 0;
  	vertical-align: baseline;
  }

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

  h1,
  h2,
  h3,
  h4,
  h5,
  p,
  label {
  	margin: 0;
  }

  a,
  a:hover {
  	text-decoration: none
  }

  p {
  	font-size: 16px;
  }

  section {
  	position: relative;
  	padding-top: 110px;
  }

  h1,
  h2,
  h3,
  h4 {
  	letter-spacing: 0.01em;
  	text-transform: none;
  	line-height: 1.1;
  	font-family: "FuturaNew"
  }


  h1 {
  	font-size: 50px;
  	font-weight: 700;
  	line-height: 1.05;
  }

  h2 {
  	font-size: 40px;
  	text-align: center;
  }

  h3 {
  	font-size: 26px;
  	margin-bottom: 10px;
  }

  h4 {
  	font-size: 22px;
  	font-weight: 700;
  }

  p {
  	line-height: 1.65em;
  	font-size: 16px;
  }


  .nav {
  	display: -webkit-box;
  	display: -ms-flexbox;
  	display: flex;
  	-ms-flex-wrap: wrap;
  	flex-wrap: wrap;
  	padding-left: 0;
  	margin-bottom: 0;
  	list-style: none
  }

  .nav-link {
  	display: block;
  	padding: .5rem 1rem
  }

  .nav-link:focus,
  .nav-link:hover {
  	text-decoration: none
  }

  .nav-link.disabled {
  	color: #6c757d
  }

  .nav-tabs {
  	border-bottom: 1px solid #dee2e6
  }

  .nav-tabs .nav-link {
  	border: 1px solid transparent;
  	border-top-left-radius: .25rem;
  	border-top-right-radius: .25rem
  }


  .nav-tabs .nav-link.disabled {
  	color: #6c757d;
  	background-color: transparent;
  	border-color: transparent
  }

  .nav-tabs .nav-item.show .nav-link,
  .nav-tabs .nav-link.active {
  	color: #495057;
  	background-color: #F0F6FF;
  	border-color: #dee2e6 #dee2e6 #f9f9f9
  }

  .nav-tabs .dropdown-menu {
  	margin-top: -1px;
  	border-top-left-radius: 0;
  	border-top-right-radius: 0
  }

  .nav-pills .nav-link {
  	border-radius: .25rem
  }

  .nav-pills .nav-link.active,
  .nav-pills .show > .nav-link {
  	color: #F0F6FF;
  	background-color: #007bff
  }

  .nav-fill .nav-item {
  	-webkit-box-flex: 1;
  	-ms-flex: 1 1 auto;
  	flex: 1 1 auto;
  	text-align: center
  }

  .nav-justified .nav-item {
  	-ms-flex-preferred-size: 0;
  	flex-basis: 0;
  	-webkit-box-flex: 1;
  	-ms-flex-positive: 1;
  	flex-grow: 1;
  	text-align: center
  }

  .tab-content > .tab-pane {
  	display: none
  }

  .tab-content > .active {
  	display: block
  }

  ::-webkit-input-placeholder {
  	color: inherit;
  	opacity: 1;
  	-webkit-transition: all .4s ease;
  	transition: all .4s ease
  }

  :-moz-placeholder {
  	color: inherit;
  	opacity: 1;
  	-webkit-transition: all .4s ease;
  	transition: all .4s ease
  }

  ::-moz-placeholder {
  	color: inherit;
  	opacity: 1;
  	-webkit-transition: all .4s ease;
  	transition: all .4s ease
  }

  :-ms-input-placeholder {
  	color: inherit;
  	opacity: 1;
  	-webkit-transition: all .4s ease;
  	transition: all .4s ease
  }

  :focus::-webkit-input-placeholder {
  	opacity: 0
  }

  :focus:-moz-placeholder {
  	opacity: 0
  }

  :focus::-moz-placeholder {
  	opacity: 0
  }

  :focus:-ms-input-placeholder {
  	opacity: 0
  }


  .button {
  	outline: none;
  	cursor: pointer;
  	max-width: -webkit-fit-content;
  	max-width: -moz-fit-content;
  	max-width: fit-content;
  	width: 100%;
  	height: 56px;
  	border-radius: 12px;
  	text-align: center;
  	color: #F0F6FF;
  	display: block;
  	font-size: 18px;
  	line-height: 54px;
  	-webkit-transition: all .4s ease;
  	transition: all .4s ease;
  	/*	background: linear-gradient(45deg, #F00000, #DC281E);*/
  	background: var(--primary);
  	border: 1px solid transparent;
  	display: block;
  	font-family: "FuturaNew";
  	letter-spacing: 0.025em;
  	font-weight: 700;
  	-webkit-transition: all .3s ease;
  	transition: all .3s ease;
  	padding: 0 30px;
  	text-align: center;
  	text-decoration: none;
  	z-index: 0;
  	position: relative;
  	-webkit-box-shadow: var(--shadow);
  	box-shadow: var(--shadow);
  	/*
	-webkit-animation: pulse 2s infinite;
	animation: pulse 2s infinite;
	-webkit-animation-delay: 0.3s;
	animation-delay: 0.3s;
	-webkit-box-shadow: 0 0 0px 6px transparent;
	box-shadow: 0 0 0px 6px transparent;
*/
  	overflow: hidden;
  }

  /*
.button:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 50%;
	background: rgba(255, 255, 255, 0.1);
	z-index: 10;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
*/


  /*
.button:hover:before {
	height: 100%;
}
*/

  .button:hover {
  	-webkit-transform: translateY(-2px);
  	transform: translateY(-2px);
  	-webkit-box-shadow: var(--shadow-lg);
  	box-shadow: var(--shadow-lg);
  	background: var(--primary-dark);
  	color: #fff;
  }

  .button_accent {
  	background: #fff;
  	color: var(--primary);
  	border-color: var(--primary);
  }

  .button_accent:hover {}

  /*
@-webkit-keyframes pulse {
	0% {
		-webkit-box-shadow: 0 0 0 0 var(--text-primary);
		box-shadow: 0 0 0 0 var(--text-primary);
	}
}

@keyframes pulse {
	0% {
		-webkit-box-shadow: 0 0 0 0 var(--text-primary);
		box-shadow: 0 0 0 0 var(--text-primary);
	}
}
*/

  /*

.btn {
	position: relative;
	width: 330px;
	border-radius: 50px;
	height: 68px;
	line-height: 66px;
	background: var(--text-primary);
	font-size: 18px;
	text-align: center;
	letter-spacing: 0.1em;
	text-decoration: none;
	-webkit-transition: 0.5s;
	transition: 0.5s;
}

.btn span {
	position: absolute;
	display: block;
	top: 4px;
	left: 4px;
	right: 4px;
	line-height: 58px;
	border-radius: 50px;
	bottom: 4px;
	text-align: center;
	background: var(--text-primary);
	color: rgba(255, 255, 255, 1);
	-webkit-transition: 0.5s;
	transition: 0.5s;
}

.btn:hover span {
	color: var(--text-primary);
	background: transparent;
}

.btn::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	filter: blur(20px);
	border-radius: 50px;
	width: 100%;
	height: 100%;
	background: linear-gradient(45deg,
			rgba(255, 218, 247, 1),
			rgba(255, 242, 127, 1),
			rgba(255, 218, 247, 1),
			rgba(165, 165, 255, 1),
			rgba(255, 218, 247, 1),
			rgba(255, 242, 127, 1),
			rgba(255, 218, 247, 1),
			rgba(165, 165, 255, 1));
	background-size: 400%;
	background-position: center 0;
	opacity: 1;
	-webkit-transition: 3s;
	transition: 3s;
	-webkit-animation: eff 20s linear infinite;
	animation: eff 20s linear infinite;
}

.btn:hover::before {
	opacity: 1;
}

.btn:hover span::before {
	background: rgba(255, 255, 255, 0)
}

.btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    rgba(255, 242, 127,  0.2),
	rgba(255, 218, 247,  0.2),
	rgba(165, 165, 255,  0.2),
	    rgba(255, 242, 127,  0.2),
	rgba(255, 218, 247,  0.2),
	rgba(165, 165, 255,  0.2)
  );
  background-size: 400%;
  opacity: 0;
  filter: blur(20px);
  transition: 0.5s;
  animation: eff 20s ease infinite;
}

@-webkit-keyframes eff {
	0% {
		background-position: right 0;
	}

	50% {
		background-position: left 0;
	}

	100% {
		background-position: right 0;
	}
}


@keyframes eff {
	0% {
		background-position: right 0;
	}

	50% {
		background-position: left 0;
	}

	100% {
		background-position: right 0;
	}
}
*/


  .call-btn {
  	-webkit-animation: none;
  	animation: none;
  }



  .button[disabled] {
  	background: #ccc;
  	-webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  }

  .button:active,
  .button:focus,
  input:active,
  input:focus,
  textarea:active,
  textarea:focus {
  	outline: none;
  }


  input::-webkit-input-placeholder,
  textarea::-webkit-input-placeholder {
  	color: rgba(23, 23, 23, 0.66);
  	font-size: 18px;
  	font-weight: 400;
  	letter-spacing: 0.025em;
  }

  input:-ms-input-placeholder,
  textarea:-ms-input-placeholder {
  	color: rgba(23, 23, 23, 0.66);
  	font-size: 18px;
  	font-weight: 400;
  	letter-spacing: 0.025em;
  }

  input:-moz-input-placeholder,
  textarea:-moz-input-placeholder {
  	color: rgba(23, 23, 23, 0.66);
  	font-size: 18px;
  	font-weight: 400;
  	letter-spacing: 0.025em;
  }

  input:focus::-webkit-input-placeholder,
  textarea:focus::-webkit-input-placeholder {
  	color: transparent;
  }

  input:-ms-input-placeholder,
  textarea:-ms-input-placeholder {
  	color: transparent;
  }

  input:-moz-input-placeholder,
  textarea:-moz-input-placeholder {
  	color: transparent;
  }


  .link {
  	-webkit-transition: all 0.3s ease;
  	transition: all 0.3s ease;
  	cursor: pointer;
  	text-decoration: none;
  	position: relative;
  	display: inline-block;
  	color: inherit;
  }

  header {
  	min-height: 100vh;
  	background: url(../img/offer4.jpg) no-repeat center bottom/cover;
  }

  header .container-fluid {
  	min-height: 100vh;
  	display: -moz-flex;
  	display: -ms-flex;
  	display: -o-flex;
  	display: -webkit-box;
  	display: -ms-flexbox;
  	display: flex;
  	-webkit-box-orient: vertical;
  	-webkit-box-direction: normal;
  	-ms-flex-direction: column;
  	flex-direction: column;
  	-webkit-box-pack: justify;
  	-ms-flex-pack: justify;
  	justify-content: space-between;
  	padding: 20px 30px;
  	gap: 30px;
  }

  .time {
  	margin-bottom: 10px;
  }

  .tel {
  	display: block;
  }

  .tel:first-of-type {
  	margin-bottom: 10px;

  }

  .tel {
  	margin-right: 30px;
  }


  .offer,
  .quiz {
  	padding: 70px 0 10px;
  	max-width: 795px;
  	margin: 0 auto;
  	text-align: center;
  }

  .offer {
  	max-width: 1170px;
  	text-align: left;
  	margin: 0 auto;
  	background: var(--glass-bg);
  	-webkit-backdrop-filter: blur(12px);
  	backdrop-filter: blur(12px);
  	border: 1px solid var(--glass-border);
  	border-radius: var(--radius-lg);
  	-webkit-box-shadow: var(--glass-shadow);
  	box-shadow: var(--glass-shadow);
  	padding: 50px 40px;
  	-webkit-transition: var(--transition);
  	transition: var(--transition);
  }

  .offer__heading span {
  	font-size: 55px;
  }

  .offer__heading {
  	font-size: 50px;
  }

  .offer__desc {
  	max-width: 615px;
  	margin: 10px 0 20px;
  }

  .offer__btns,
  .guarantees-docs {
  	gap: 20px;
  	margin-top: 40px;
  }

  .offer__main {
  	margin-bottom: 35px;
  }


  .copyright,
  .policy {
  	font-size: 12px;
  	color: #636363;
  	line-height: 1.5;
  }

  .copyright a {
  	font-weight: 700;
  	font-size: 30px;
  	color: var(--primary);
  	font-family: "FuturaNew";
  	margin-left: 40px;
  }

  .copyright a:hover {
  	color: var(--primary-dark);
  }

  .logo {
  	background: url(../img/logo.svg) no-repeat left center/contain;
  	width: 70px;
  	height: 65px;
  	display: block;
  }

  .quiz {
  	text-align: left;
  }

  .quiz-success {
  	padding: 20px 0;
  }


  .nav-tabs {
  	position: relative;
  	border: none;
  	-webkit-box-pack: center;
  	-ms-flex-pack: center;
  	justify-content: center;
  	margin: 0 auto 30px;
  	max-width: 620px;
  }

  .nav-item {

  	-webkit-transition: all 0.3s ease;
  	transition: all 0.3s ease;
  	text-align: center;
  	width: calc(20%);
  	position: relative;
  }

  .nav-item:focus,
  .nav-item:hover {}

  .nav-link {
  	color: transparent;
  	font-size: 25px;
  	font-weight: 700;
  	padding: 0;
  	display: block;
  	-webkit-transition: all 0.3s ease;
  	transition: all 0.3s ease;
  }

  .nav-item {
  	padding-right: 15px;
  	padding-left: 15px;
  }

  .nav-item:not(:last-of-type):before {
  	content: "";
  	position: absolute;
  	bottom: -15px;
  	left: -3px;
  	width: calc(100% + 6px);
  	height: 6px;
  	border-radius: 3px;
  	background: #F0F6FF;
  	-webkit-box-shadow: 0px 20px 10px -20px rgb(41 48 138 / 10%);
  	box-shadow: 0px 20px 10px -20px rgb(41 48 138 / 10%)
  }

  .nav-item:not(:last-of-type):after {
  	content: "";
  	position: absolute;
  	bottom: -15px;
  	left: -3px;
  	width: 0px;
  	height: 6px;
  	border-radius: 3px;
  	background: #A5A5FF;
  	-webkit-box-shadow: 0px 20px 10px -20px rgb(41 48 138 / 10%);
  	box-shadow: 0px 20px 10px -20px rgb(41 48 138 / 10%);
  	-webkit-transition: all 0.3s ease;
  	transition: all 0.3s ease;
  	z-index: 1;
  }

  .nav-item:not(:last-of-type).done:after,
  .nav-item:not(:last-of-type).active:after {
  	width: calc(100% + 6px);
  }

  .sw-theme-default > ul.step-anchor > li.active,
  .sw-theme-default > ul.step-anchor > li.clickable {
  	color: var(--text-primary);
  	font-weight: 700
  }


  .sw-theme-default > ul.step-anchor > li.active > a,
  .sw-theme-default > ul.step-anchor > li.clickable > a:hover {
  	color: var(--text-primary);
  	font-weight: 700;
  }

  .sw-theme-default > ul.step-anchor > li.done {
  	color: var(--text-primary);
  }

  .sw-theme-default > ul.step-anchor > li.done > a {
  	color: var(--text-primary);
  }


  .quiz__item a {
  	pointer-events: none;
  }

  .quiz__block {
  	max-width: 1060px;
  	position: relative;
  }

  .quiz__content {
  	max-width: 620px;
  	border-radius: 32px;
  	background-color: #F0F6FF;
  	padding: 35px 30px;
  	padding-bottom: 110px;
  	margin: 0 auto;
  }

  .sw-theme-default .sw-toolbar {
  	position: absolute;
  	bottom: 35px;
  	left: 50%;
  	-webkit-transform: translateX(-50%);
  	transform: translateX(-50%);
  	padding: 0;
  }


  .sw-btn-next {
  	outline: none;
  	cursor: pointer;
  	width: 300px;
  	height: 60px;
  	border-radius: var(--radius-lg);
  	text-align: center;
  	color: #F0F6FF;
  	display: block;
  	font-size: 18px;
  	line-height: 58px;
  	letter-spacing: 0.025em;
  	-webkit-transition: all .4s ease;
  	transition: all .4s ease;
  	background-color: var(--text-primary);
  	border: 1px solid var(--text-primary);
  	display: block;
  	color: white;
  	border: none;
  	cursor: pointer;
  	font-family: "FuturaNew";
  	font-weight: 700;
  }

  .sw-btn-next:hover,
  .sw-btn-next:active,
  .sw-btn-next:focus {
  	color: var(--text-primary);
  	background-color: #F0F6FF;
  	border-color: #F0F6FF;

  }

  .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input,
  .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input[type=tel],
  .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input[type=text] {
  	padding-left: 125px;
  }

  .quiz__title {
  	font-weight: 700;
  	margin-bottom: 20px;
  	line-height: 1.2;
  	text-align: center;
  }

  .quiz .checkpoint {
  	width: 50%;
  }

  .app-form {
  	/*  	max-width: 540px;*/
  	width: 100%;
  	min-height: 480px;
  	position: relative;
  	margin: 0 auto;
  	display: -webkit-box;
  	display: -ms-flexbox;
  	display: flex;
  	-webkit-box-pack: center;
  	-ms-flex-pack: center;
  	justify-content: center;
  	-webkit-box-align: center;
  	-ms-flex-align: center;
  	align-items: center;
  }

  .popup__box .app-form {
  	min-height: auto;
  }

  .app-form__title {
  	text-align: center;
  	margin-bottom: 15px;
  }

  .app-form__group {
  	position: relative;
  	/*	width: 330px;*/
  	width: 100%;
  	margin: 0 auto 25px;
  }

  .app-form__input {
  	width: 100%;
  	max-width: 100%;
  	height: 56px;
  	border-radius: 12px;
  	border: none;
  	border: 1px solid var(--border-color);
  	color: var(--text-primary);
  	font-size: 18px;
  	font-weight: 300;
  	line-height: 46px;
  	padding: 5px 25px 5px 35px;
  	font-weight: 400;
  	position: relative;
  }

  .app-form__input::-moz-placeholder {
  	color: rgba(23, 23, 23, 0.6);
  	font-size: 18px;
  }

  .app-form__input::-webkit-input-placeholder {
  	color: rgba(23, 23, 23, 0.6);
  	font-size: 18px;
  }

  .form-control::-webkit-input-placeholder {
  	color: rgba(23, 23, 23, 0.6);
  	font-size: 18px;
  }

  .form-control::-moz-placeholder {
  	color: rgba(23, 23, 23, 0.6);
  	font-size: 18px;
  }

  .intl-tel-input .selected-flag .iti-arrow {
  	display: none;
  }

  .intl-tel-input.separate-dial-code .selected-dial-code {
  	font-size: 18px;
  }

  .app-form__input.error {
  	border: 1px solid #E02424;
  	color: #E02424
  }

  header:before {
  	content: "";
  	position: absolute;
  	width: 100%;
  	height: 100%;
  	/*	background: rgba(255, 255, 255, 0.55);*/
  	left: 0;
  	top: 0;
  	display: block;
  	-webkit-filter: blur(1px);
  	filter: blur(1px);
  }

  .form-control.error {
  	border-bottom: 1px solid #E02424;
  	color: #E02424
  }

  .app-form__input.valid,
  .form-control.valid {
  	color: var(--text-primary);
  	border-color: #0E9F6F;
  	outline: 2px solid #DEF7EC;
  	-webkit-box-shadow: 0px 0px 2px 0px rgb(15 23 42 / 12%), 0px 0px 1px 0px rgb(15 23 42 / 4%), 0px 0px 2px 0px rgb(15 23 42 / 6%), 0px 3px 6px 0px rgb(15 23 42 / 4%);
  	box-shadow: 0px 0px 2px 0px rgb(15 23 42 / 12%), 0px 0px 1px 0px rgb(15 23 42 / 4%), 0px 0px 2px 0px rgb(15 23 42 / 6%), 0px 3px 6px 0px rgb(15 23 42 / 4%);
  }


  .app-form label.error,
  .quiz__block label.error {
  	font-size: 12px;
  	line-height: 1.3;
  	color: var(--text-primary);
  	display: block;
  	text-align: center;
  	padding-top: 5px;
  }


  .quiz__content label.error {
  	color: var(--text-primary);
  	text-align: left;
  	margin-bottom: 15px;
  	position: absolute;
  	top: -25px;
  	width: 250px;
  }

  .app-form__input.valid .app-form label.error,
  .form-control.valid .quiz__block label.error {
  	position: absolute;
  	left: 0;
  	bottom: 5px;
  	font-size: 11px;
  	color: #E02424;
  }

  .app-form label#agree-error {
  	bottom: -15px
  }

  .form-group {
  	position: relative;
  	max-width: 394px;
  	margin-top: 15px;
  }

  .form-control {
  	width: 100%;
  	background-color: transparent;
  	border: none;
  	height: 60px;
  	color: var(--text-primary);
  	font-size: 16px;
  	font-weight: 400;
  	line-height: 48px;
  	padding: 5px 0;
  	border-bottom: 1px solid rgba(60, 76, 227, 0.3);
  }

  .ripple {
  	position: relative;
  	overflow: hidden;
  }

  .ripple-effect {
  	display: inline-block;
  	position: absolute;
  	top: 0;
  	left: 0;
  	height: 0;
  	width: 0;
  	border: 2px solid rgba(255, 255, 255, 0.3);
  	border-radius: 5000px;
  	-webkit-animation: ripple 1s ease forwards;
  	animation: ripple 1s ease forwards;
  	z-index: 1;
  }

  @-webkit-keyframes ripple {
  	0% {
  		-webkit-transform: scale(0);
  		transform: scale(0);
  	}

  	100% {
  		-webkit-transform: scale(100);
  		transform: scale(100);
  	}
  }

  @keyframes ripple {
  	0% {
  		-webkit-transform: scale(0);
  		transform: scale(0);
  	}

  	100% {
  		-webkit-transform: scale(100);
  		transform: scale(100);
  	}
  }

  .intl-tel-input.separate-dial-code .selected-flag {
  	/*  	background: #F0F6FF;*/
  }


  .app-form__subheading {
  	font-size: 15px;
  	margin-bottom: 15px;
  }

  app-form__group label {
  	font-size: 14px;
  	line-height: 1.2;
  }

  .app-form__label {
  	color: #8ba0bd;
  	font-size: 10px;
  	font-weight: 400;
  	margin-top: 12px;
  	display: block
  }

  .app-form__agree {
  	position: relative;
  	max-width: 230px;
  	margin: 15px auto 0;
  }

  .app-form__agree label {
  	color: rgba(42, 57, 57, 0.62);
  	font-size: 12px;
  	line-height: 1.25;

  }

  .app-form__agree label a {
  	border-bottom: 1px dotted rgba(42, 57, 57, 0.62);
  }

  .app-form__agree label a:hover {
  	color: rgba(42, 57, 57, 1);
  }

  .app-form .intl-tel-input {
  	width: 100%;
  	position: static
  }


  li.nav-item:last-of-type {
  	/*	background: var(--text-primary) url(../img/key-icon2.svg) no-repeat center/contain !important;*/
  	border-radius: 0 !important;
  	opacity: 1 !important;
  	/*	border: none !important;*/
  	visibility: hidden;
  }

  li.nav-item:last-of-type .nav-link {
  	font-weight: 700;
  	line-height: 1.5;
  	font-size: 14px;
  	text-align: left;
  }

  .app-form .intl-tel-input.allow-dropdown input,
  .app-form .intl-tel-input.allow-dropdown input[type=text] {
  	padding-left: 87px
  }

  .app-form .intl-tel-input.allow-dropdown .selected-flag {
  	width: 40px;
  	outline: 0;
  	border-top-left-radius: 8px;
  	border-bottom-left-radius: 8px;
  	padding: 0 0 0 3px;
  	background: transparent;
  	pointer-events: none;
  }

  .app-form .intl-tel-input.allow-dropdown .flag-container {
  	height: 56px;
  	padding-left: 35px;
  }

  .popup__link {
  	color: var(--text-primary);
  }

  .remodal-close {
  	-webkit-transition: all .4s ease;
  	transition: all .4s ease;
  	font-weight: 400;
  	font-size: 30px;
  	color: var(--text-primary);
  	top: 15px;
  	right: 15px;
  	transition: all .4s ease;
  	width: 41px;
  	height: 41px;
  }

  .remodal-close:before {
  	display: none
  }

  .remodal-close:hover {
  	opacity: .7
  }

  .confid.popup {
  	max-width: 790px;
  }

  .confid.popup .remodal-close.text {
  	position: static;
  	width: auto;
  	color: var(--text-primary);
  	font-size: 18px;
  	font-weight: 700;
  	background: 0 0;
  	margin: 0 auto
  }

  .confid.popup .remodal-close.text:hover {
  	color: var(--primary)
  }

  .confid.popup .popup__box {
  	padding: 70px 40px 40px;
  	background-image: none
  }

  .remodal-overlay {
  	background: rgba(255, 255, 255, 0.8)
  }

  .popup.remodal {
  	background-color: transparent
  }

  .popup__title {
  	text-align: center;
  	margin-bottom: 10px;
  }

  .popup__wrapper a {
  	color: #747799;
  	font-size: 13px;
  	font-weight: 400;
  	margin: 5px 7px;
  	display: block;
  }


  .popup {
  	text-align: left;
  	padding: 0 10px;
  	width: 100%;
  	margin: 20px auto;
  	position: relative;
  	max-width: 640px;
  	min-width: 290px
  }

  .confid p {
  	margin-bottom: 15px;
  }

  .popup__box {
  	border-radius: var(--radius-lg);
  	padding: 45px 40px;
  	-webkit-box-shadow: 0px 0px 2px 0px rgb(15 23 42 / 12%), 0px 0px 1px 0px rgb(15 23 42 / 4%), 0px 2px 6px 0px rgb(15 23 42 / 4%), 0px 16px 24px 0px rgb(15 23 42 / 4%);
  	box-shadow: 0px 0px 2px 0px rgb(15 23 42 / 12%), 0px 0px 1px 0px rgb(15 23 42 / 4%), 0px 2px 6px 0px rgb(15 23 42 / 4%), 0px 16px 24px 0px rgb(15 23 42 / 4%);
  	max-width: 710px;
  	background: #Fff;
  	position: relative;
  	overflow: hidden;
  	text-align: center;
  }

  .order-popup,
  .order-popup .popup__box {
  	max-width: 850px;
  	text-align: left;
  }

  .order-popup .button {
  	min-height: 56px;
  	display: -webkit-box;
  	display: -ms-flexbox;
  	display: flex;
  	height: auto;
  	-webkit-box-align: center;
  	-ms-flex-align: center;
  	align-items: center;
  	line-height: 1;
  	padding-top: 10px;
  	padding-bottom: 10px;
  	-webkit-box-pack: center;
  	-ms-flex-pack: center;
  	justify-content: center;
  }

  .popup__header {
  	position: absolute;
  	padding: 15px 40px;
  	text-align: left;
  	left: 0;
  	top: 0;
  	width: 100%;
  }

  .popup__header h2 {
  	display: -webkit-box;
  	display: -ms-flexbox;
  	display: flex;
  	-webkit-box-align: center;
  	-ms-flex-align: center;
  	align-items: center;
  	gap: 10px;
  }

  .popup__header img {
  	width: 40px;
  	height: 40px;
  }

  .popup__benefits {
  	padding: 20px 20px;
  	border-radius: 20px;
  	margin: 30px 0;
  	display: -webkit-box;
  	display: -ms-flexbox;
  	display: flex;
  	gap: 20px;
  	-webkit-box-align: center;
  	-ms-flex-align: center;
  	align-items: center;
  }

  .popup__benefits h4 {
  	margin-bottom: 10px;
  }

  .popup__benefits img {
  	width: 45px;
  	height: 55px;
  	-o-object-fit: contain;
  	object-fit: contain;
  }

  .order-popup .popup__box {
  	padding-top: 105px;
  }

  .order-form .check-list {
  	text-align: left;
  }

  .popup .app-form {
  	max-width: none;
  	background: none;
  	padding: 0;
  	width: 100%;
  }

  .popup .app-form__group,
  .popup .app-form__btn {
  	width: 100%;
  	max-width: 100%
  }

  .button img {
  	width: 30px;
  	height: 30px;
  	margin-bottom: -8px;
  }

  .popup .app-form__input {
  	max-width: 100%;
  }

  #form-loader {
  	display: none;
  	position: fixed;
  	left: 0;
  	top: 0;
  	bottom: 0;
  	right: 0;
  	background: rgba(255, 255, 255, .8);
  	overflow: hidden;
  	z-index: 20000
  }

  #form-loader img {
  	position: absolute;
  	width: 70px;
  	height: 70px;
  	left: 50%;
  	margin-left: -35px;
  	top: 50%;
  	margin-top: -35px
  }

  .app-form #form-loader {
  	display: none;
  	position: absolute;
  	left: 0;
  	top: 0;
  	bottom: 0;
  	right: 0;
  	background: transparent;
  	overflow: hidden;
  	z-index: 20000
  }

  .app-form #form-loader img {
  	position: absolute;
  	width: 70px;
  	height: 70px;
  	left: 50%;
  	margin-left: -35px;
  	top: 50%;
  	margin-top: -35px
  }

  #loader-wrapper {
  	position: fixed;
  	top: 0;
  	left: 0;
  	width: 100%;
  	height: 100%;
  	z-index: 1001
  }

  #loader-wrapper .loader-overlay {
  	position: fixed;
  	top: 0;
  	left: 0;
  	width: 100%;
  	height: 100%;
  	background: #F0F6FF;
  	z-index: 1000;
  	opacity: 0.8
  }

  .app-form__ok {
  	display: none;
  }

  .form-tip {
  	display: none;
  	font-size: 15px;
  	font-weight: 400;
  	line-height: 1.3;
  	text-align: center;
  	color: #294ce1;
  	margin: 15px 0 0 25px;
  	max-width: 400px;
  }

  .app-form__title {
  	margin-bottom: 15px;
  }

  .app-form__desc {
  	text-align: center;
  	margin: 0px 0 20px;
  }

  .app-form__button {
  	margin: 20px auto 0;
  	cursor: pointer;
  	max-width: 100%;
  }

  fieldset label {
  	color: var(--text-primary);
  	font-size: 17px;
  	font-weight: 400;
  	position: relative;
  	line-height: 1.2;
  }

  .checkpoint,
  .radio {
  	margin-bottom: 15px;
  }


  .checkpoint input,
  .radio input {
  	position: absolute;
  	left: 0;
  	opacity: 0;
  	top: 0;
  	z-index: -1
  }

  .checkpoint span,
  .radio span {
  	position: relative;
  	padding-left: 40px;
  	display: block;
  	cursor: pointer;
  }

  input[type=checkbox] ~ span:before {
  	content: "";
  	display: block;
  	position: absolute;
  	left: 0;
  	top: 2px;
  	width: 17px;
  	height: 17px;
  	border: 1px solid var(--primary);
  }

  input[type=radio] ~ span:before {
  	content: "";
  	display: block;
  	position: absolute;
  	left: 0;
  	top: 0;
  	border-radius: 50%;
  	width: 20px;
  	height: 20px;
  	border: 1px solid var(--border-color)
  }


  input[type=checkbox] ~ span:after {
  	content: "";
  	display: block;
  	position: absolute;
  	opacity: 0;
  	z-index: 777;
  	width: 11px;
  	height: 11px;
  	background-color: var(--text-primary);
  	left: 3px;
  	top: 5px;
  	-webkit-transition: opacity 0.3s ease;
  	transition: opacity 0.3s ease;
  }

  input[type=radio] ~ span:after {
  	content: "";
  	display: block;
  	position: absolute;
  	opacity: 0;
  	z-index: 777;
  	border-radius: 50%;
  	width: 10px;
  	height: 10px;
  	background-color: var(--primary);
  	left: 5px;
  	top: 5px;
  	-webkit-transition: opacity 0.3s ease;
  	transition: opacity 0.3s ease;
  }

  input[type=checkbox]:checked ~ span:after,
  input[type=radio]:checked ~ span:after {
  	opacity: 1;
  }

  input[type=checkbox]:checked ~ span:before,
  input[type=radio]:checked ~ span:before {
  	border-color: var(--primary)
  }

  textarea.form-control {
  	height: 100px;
  	line-height: 1.2;
  }

  .btn.btn-secondary.sw-btn-next.disabled {
  	display: none;
  }

  .cssload-loader,
  .cssload-loader:after,
  .cssload-loader:before {
  	-webkit-animation: 1.4s ease-in-out infinite;
  	animation: 1.4s ease-in-out infinite
  }

  .cssload-loader:after,
  .cssload-loader:before {
  	width: 100%;
  	height: 100%;
  	border-radius: 50%;
  	position: absolute;
  	top: 0;
  	left: 0
  }

  .cssload-loader {
  	width: 100px;
  	width: 100px;
  	height: 100px;
  	border-radius: 50%;
  	position: absolute;
  	display: block;
  	z-index: 2001;
  	background: linear-gradient(135deg, var(--accent), var(--primary));
  	left: 50%;
  	top: 50%;
  	margin: -50px 0 0 -50px;
  	-webkit-animation-name: cssload-loader;
  	animation-name: cssload-loader
  }

  @-webkit-keyframes cssload-loader {
  	0% {
  		-webkit-transform: scale(0);
  		transform: scale(0);
  		opacity: 1
  	}

  	100% {
  		-webkit-transform: scale(1);
  		transform: scale(1);
  		opacity: 0
  	}
  }

  @keyframes cssload-loader {
  	0% {
  		-webkit-transform: scale(0);
  		transform: scale(0);
  		opacity: 1
  	}

  	100% {
  		-webkit-transform: scale(1);
  		transform: scale(1);
  		opacity: 0
  	}
  }

  .loaded #loader-wrapper .loader-overlay,
  .loaded .loader_box {
  	opacity: 0;
  	-webkit-transition: all .3s ease-out;
  	transition: all .3s ease-out
  }

  .loaded #loader-wrapper {
  	visibility: hidden;
  	-webkit-transform: translateY(-100%);
  	transform: translateY(-100%);
  	-webkit-transition: all .3s 1s ease-out;
  	transition: all .3s 1s ease-out
  }


  a:active,
  a:focus {
  	outline: 0;
  	-webkit-tap-highlight-color: transparent;
  	-webkit-tap-highlight-color: transparent
  }


  .sw-btn-next {
  	color: #F0F6FF;
  	background-color: var(--text-primary);
  	-webkit-transition: all 0.3s ease;
  	transition: all 0.3s ease;
  	overflow: hidden;
  	position: relative;
  }


  /*
.button:after,
.sw-btn-next:after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	height: 100%;
	background: -webkit-gradient(linear, left top, right top, color-stop(10%, hsla(0, 0%, 100%, .1)), color-stop(20%, hsla(0, 0%, 100%, .2)), to(hsla(0, 0%, 100%, .6)));
	background: linear-gradient(90deg, hsla(0, 0%, 100%, .1) 10%, hsla(0, 0%, 100%, .2) 20%, hsla(0, 0%, 100%, .6));
	width: 20px;
	-webkit-transform: skewX(-45deg);
	transform: skewX(-45deg);
	left: -20%;
	-webkit-transition: all .4s ease;
	transition: all .4s ease;
	-webkit-animation-name: blick;
	animation-name: blick;
	-webkit-animation-duration: 4s;
	animation-duration: 4s;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
}

@-webkit-keyframes blick {

	15%,
	to {
		left: 110%
	}
}

@keyframes blick {

	15%,
	to {
		left: 110%

}
}
*/

  @media screen and (max-width:1600px) {}

  @media screen and (max-width:1400px) {}


  @media screen and (max-width:1200px) {}

  @media screen and (max-width:1100px) {}

  @media screen and (max-width:992px) {

  	.offer__tips {
  		margin-left: 30px;
  	}

  	.copyright span {
  		display: block;
  		margin-left: 0;
  		margin-top: 10px;
  	}

  	.app-form__enter {
  		margin-top: 35px
  	}

  	.app-form__agree {
  		margin: 20px 0 0;
  	}

  	.app-form {
  		margin: 0 auto;
  	}

  	.form-tip {
  		margin: 15px auto 25px;
  	}

  }

  @media screen and (max-width:769px) {
  	.offer {
  		padding: 40px 30px
  	}

  	.offer__heading {
  		font-size: 40px;
  	}

  	.offer__heading span {
  		font-size: 44px
  	}


  	.popup__box {
  		padding: 45px 20px 30px;
  	}

  	.popup__header {
  		padding: 10px 40px 10px 20px;
  	}

  	.nav-tabs {
  		margin-right: 0;
  		padding-left: 0;
  		background-position: right 10px;
  	}

  	.quiz__content {
  		margin: 0 auto;
  	}

  	.quiz-success .quiz__block {
  		display: none;
  	}
  }

  @media screen and (max-width:730px) {
  	footer a {
  		display: block;
  	}

  	.benefits__list {
  		-ms-flex-wrap: wrap;
  		flex-wrap: wrap;
  	}
  }

  @media screen and (max-width:610px) {

  	.quiz .checkpoint {
  		width: 100%;
  	}


  	.quiz {
  		padding: 50px 0;
  	}

  }

  @media screen and (max-width:576px) {

  	.offer {
  		padding: 30px 20px;
  	}

  	.offer .button,
  	.guarantees-doc {
  		max-width: 100%;
  	}

  	.app-form__button {
  		margin-left: auto;
  		margin-right: auto;
  		display: block;
  	}

  	.offer__heading span {
  		font-size: 32px;
  	}

  	.offer__heading {
  		font-size: 32px;
  	}

  	.offer__heading br {
  		display: none;
  	}

  	.quiz .offer__main {
  		margin: 15px 0 5px !important;
  		text-align: center !important;
  		font-size: 22px !important;
  	}

  	.offer__main {
  		margin-bottom: 0;
  	}

  	.offer__btns {
  		margin-top: 15px;
  		gap: 20px
  	}

  	.button:before {
  		display: none;
  	}


  	.copyright {
  		width: 100%;
  		text-align: center;
  	}

  	.policy {
  		width: 100%;
  		text-align: center;
  		margin-top: 10px;
  		display: block;
  	}

  	.footer__wrapper {
  		margin: 0 auto;
  		margin-top: 20px;
  	}

  	.quiz__content {
  		padding: 30px 20px;
  		padding-bottom: 100px;
  	}

  	.sw-theme-default .sw-toolbar {
  		bottom: 30px;
  	}

  	.sw-btn-next {
  		width: 200px;
  	}

  	.quiz__title {
  		text-align: center;
  	}

  	/*
	.quiz .offer__desc {
		font-size: 14px;
	}
*/

  	.nav-link {
  		font-size: 18px;
  	}

  	header .container-fluid {
  		padding: 20px 15px;
  	}

  	.offer__list li {
  		font-size: 15px;
  		margin-bottom: 7px;
  		line-height: 1.4;
  		padding-left: 25px;
  	}

  	.offer__list li:before {
  		width: 20px;
  		height: 20px;
  		top: 2px;
  	}

  	.offer__list li:last-of-type {
  		font-size: 14px;
  		margin: 10px 0 20px;
  		font-weight: 700;
  	}

  	.offer__list li:last-of-type:before {
  		font-size: 40px;
  		top: 11px;
  		padding-left: 2px;
  	}

  	.app-form__desc {
  		opacity: 0.8;
  		margin-bottom: 25px;
  	}

  }

  @media screen and (max-width:544px) {
  	.app-form__body {
  		padding: 40px 19px 20px
  	}

  	.remodal-close {
  		top: 8px;
  		right: 8px
  	}

  	.confid.popup .popup__box {
  		padding: 40px 20px
  	}

  	.popup__box p {
  		font-size: 14px;
  	}

  	.ready .app-form {
  		right: 0;
  		left: 0;
  		padding-right: 30px;
  		padding-left: 30px;
  	}

  }

  @media screen and (max-width:480px) {

  	.app-form__wrapper {
  		-webkit-box-pack: center;
  		-ms-flex-pack: center;
  		justify-content: center;
  	}

  	.app-form__agree {
  		margin: 20px auto 0;
  		text-align: center;
  	}

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

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

  	.app-form__button {
  		margin: 30px auto 0;
  	}


  	.app-form__btn {
  		position: static;
  		margin: 20px auto 0;
  		display: block;
  		width: 100%;
  		max-width: 85%;
  		/*background-position: 7% center;*/
  		line-height: 54px;
  	}

  	.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input,
  	.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input[type=tel],
  	.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input[type=text] {
  		padding-left: 100px;
  	}

  	.app-form {
  		width: 100%;
  	}

  	.app-form .intl-tel-input.allow-dropdown input,
  	.app-form .intl-tel-input.allow-dropdown input[type=text] {
  		padding-left: 57px;
  	}

  	.app-form .intl-tel-input.allow-dropdown .flag-container {
  		padding-left: 15px;
  	}


  	.app-form__group {
  		width: 100%;
  		max-width: 85%;
  	}


  	.app-form__tip {
  		margin-top: 20px;
  	}

  }

  @media screen and (max-width:420px) {

  	.nav-tabs,
  	.quiz__list {
  		background: none;
  		padding-right: 0;
  		-webkit-box-pack: center;
  		-ms-flex-pack: center;
  		justify-content: center;
  	}

  	.app-form {
  		height: auto;
  	}

  	.app-form__ok .app-form__button {
  		width: 100%;
  	}

  }

  @media screen and (max-width:380px) {
  	.offer__subtitle {
  		max-width: 250px;
  	}

  	.app-form__group,
  	.app-form__btn {
  		max-width: 100%;
  	}

  }

  /*
.offer__main {
	width: fit-content;
	margin-left: auto;
	margin-right: auto;
}
*/

  .offer__benefits {
  	gap: 10px;
  }

  .offer__benefits li {
  	font-size: 16px;
  	position: relative;
  	text-align: left;
  	padding-left: 26px;
  }

  .offer__benefits li span {
  	position: absolute;
  	left: 0;
  }

  .offer__benefits b {
  	font-weight: 700;
  }

  .call-btn {
  	background: #F0F6FF;
  	border-color: #F0F6FF;
  	color: var(--text-primary);
  	height: 44px;
  	line-height: 42px;
  	padding: 0 20px;
  	width: -webkit-fit-content;
  	width: -moz-fit-content;
  	width: fit-content;
  	font-size: 18px;
  }

  .call-btn:hover,
  .call-btn:focus {
  	border-color: var(--primary);
  	background: var(--primary);
  }

  .mobile-menu .call-btn {
  	height: 60px;
  	font-size: 18px;
  	line-height: 58px;
  }

  .header_main .navbar {
  	-webkit-transition: all 0.3s ease;
  	transition: all 0.3s ease;
  	position: relative;
  	z-index: 334;
  	background: transparent;
  }

  .header_main .navbar.fixed {
  	background: rgba(255, 255, 255, 0.5);
  	-webkit-backdrop-filter: blur(12px);
  	backdrop-filter: blur(12px);
  	position: fixed;
  	width: 100%;
  	padding: 5px 20px;
  	top: 0;
  	left: 0;
  }

  .header_main .navbar.fixed .menu {
  	opacity: 1;
  }

  .menu {
  	gap: 40px;
  	font-size: 18px;
  	display: -webkit-box;
  	display: -ms-flexbox;
  	display: flex;
  	-webkit-box-align: center;
  	-ms-flex-align: center;
  	align-items: center;
  	-webkit-transition: all 0.3s ease;
  	transition: all 0.3s ease;
  }

  .navbar .menu {
  	opacity: 0;
  }

  .menu a {
  	border-radius: 10px;
  	text-align: center;
  	padding: 13px 20px;
  	display: inline-block;
  }

  .menu a:hover,
  .menu a:focus,
  .menu a:active {
  	color: #F0F6FF;
  	background: var(--text-primary);
  }


  .menu-icon {
  	position: relative;
  	width: 50px;
  	height: 50px;
  	z-index: 15;
  	cursor: pointer;
  	display: none;
  }

  .hamburger {
  	height: 1px;
  	width: 24px;
  	position: absolute;
  	top: 50%;
  	left: 50%;
  	background-color: var(--text-primary);
  	-webkit-transform: translate(-50%, -50%) rotate(0deg);
  	transform: translate(-50%, -50%) rotate(0deg);
  	-webkit-transition: all ease 0.5s;
  	transition: all ease 0.5s;
  }

  .hamburger:hover {
  	background-color: var(--text-primary)
  }

  .hamburger::before,
  .hamburger::after {
  	content: "";
  	position: absolute;
  	height: inherit;
  	border-radius: inherit;
  	background-color: inherit;
  	width: 100%;
  	-webkit-transition: all ease 0.5s;
  	transition: all ease 0.5s;
  }

  .hamburger::before {
  	top: -7px;
  	left: 0;
  	-webkit-transform-origin: left;
  	transform-origin: left;
  }

  .hamburger::after {
  	bottom: -8px;
  	right: 0;
  	-webkit-transform-origin: right;
  	transform-origin: right;
  }

  .hamburger.open {
  	-webkit-transform: translate(-50%, -50%) rotate(135deg);
  	transform: translate(-50%, -50%) rotate(135deg);
  }

  .hamburger.open::before {
  	top: 0;
  	-webkit-transform: translateX(100%) rotate(-90deg);
  	transform: translateX(100%) rotate(-90deg);
  	width: 50%;
  }

  .hamburger.open::after {
  	bottom: 0;
  	-webkit-transform: translateX(-100%) rotate(-90deg);
  	transform: translateX(-100%) rotate(-90deg);
  	width: 50%;
  }

  .mobile-menu {
  	background: rgba(255, 255, 255, 0.5);
  	-webkit-backdrop-filter: blur(12px);
  	backdrop-filter: blur(12px);
  	position: fixed;
  	padding: 110px 15px 30px 15px;
  	z-index: 333;
  	top: 0px;
  	right: 0;
  	width: 100%;
  	height: 100%;
  	visibility: hidden;
  	opacity: 0;
  	overflow-y: auto;
  	text-align: center;
  	display: -webkit-box;
  	display: -ms-flexbox;
  	display: flex;
  	-webkit-box-orient: vertical;
  	-webkit-box-direction: normal;
  	-ms-flex-direction: column;
  	flex-direction: column;
  	-webkit-box-pack: justify;
  	-ms-flex-pack: justify;
  	justify-content: space-between;
  	-webkit-box-align: center;
  	-ms-flex-align: center;
  	align-items: center;
  	gap: 15px;
  }

  .mobile-menu.active {
  	visibility: visible;
  	opacity: 1;
  	width: 100%;
  	max-width: 100%;
  	-webkit-transition: opacity 1s cubic-bezier(.73, -0.44, .16, 1.56);
  	transition: opacity 1s cubic-bezier(.73, -0.44, .16, 1.56);
  	-webkit-filter: drop-shadow(15px 15px 20px rgba(131, 92, 72, 0.1));
  	filter: drop-shadow(15px 15px 20px rgba(131, 92, 72, 0.1));
  }

  .mobile-menu .menu {
  	display: -webkit-box;
  	display: -ms-flexbox;
  	display: flex;
  	-webkit-box-orient: vertical;
  	-webkit-box-direction: normal;
  	-ms-flex-direction: column;
  	flex-direction: column;
  	-webkit-box-align: center;
  	-ms-flex-align: center;
  	align-items: center;
  	gap: 20px;
  }

  .mobile-menu .menu a {
  	font-size: 22px;
  	padding: 17px 40px;
  	width: -webkit-fit-content;
  	width: -moz-fit-content;
  	width: fit-content;
  }

  .section-heading {
  	text-align: center
  }


  .section-heading span {
  	border-radius: 50px;
  	text-align: center;
  	padding: 0px 20px;
  	/*	transform: rotate(359deg);*/
  	display: inline-block;
  }

  .section-desc {
  	margin-top: 20px;
  	text-align: center;
  }

  .guarantees,
  .calculate,
  .faq {
  	padding-bottom: 110px;
  }


  .benefits-button,
  .faq-button {
  	margin: 40px auto 0;
  }

  .calculate-button {
  	margin: 30px auto 0;
  }

  .benefits-list,
  .solutions-list,
  .guarantees-list {
  	gap: 16px;
  	margin-top: 40px;
  }

  .solutions-list {
  	margin-bottom: 40px;
  }

  .benefits-item {
  	border-radius: var(--radius-lg);
  	padding: 40px 30px 30px;
  	-webkit-box-shadow: 0px 0px 2px 0px rgb(15 23 42 / 12%), 0px 0px 1px 0px rgb(15 23 42 / 4%), 0px 2px 6px 0px rgb(15 23 42 / 4%), 0px 16px 24px 0px rgb(15 23 42 / 4%);
  	box-shadow: 0px 0px 2px 0px rgb(15 23 42 / 12%), 0px 0px 1px 0px rgb(15 23 42 / 4%), 0px 2px 6px 0px rgb(15 23 42 / 4%), 0px 16px 24px 0px rgb(15 23 42 / 4%);
  	width: calc(50% - 8px);
  	display: -webkit-box;
  	display: -ms-flexbox;
  	display: flex;
  	-webkit-box-orient: vertical;
  	-webkit-box-direction: normal;
  	-ms-flex-direction: column;
  	flex-direction: column;
  }

  .benefits-item img,
  .guarantees-item img {
  	width: 60px;
  	margin-bottom: 10px;
  }

  .benefits-item > span {
  	color: var(--text-primary);
  	font-size: 16px;
  	text-transform: uppercase;
  	display: block;
  	margin-bottom: 20px;
  }

  .promo-block .button {
  	margin-top: 20px;
  }

  .benefits-item .button {
  	margin-top: auto;
  	max-width: 100%;
  }

  @keyframes float {
  	0% {
  		-webkit-transform: translateY(0px);
  		transform: translateY(0px);
  	}

  	50% {
  		-webkit-transform: translateY(-10px);
  		transform: translateY(-10px);
  	}

  	100% {
  		-webkit-transform: translateY(0px);
  		transform: translateY(0px);
  	}
  }

  .floating {
  	-webkit-animation: float 6s ease-in-out infinite;
  	animation: float 6s ease-in-out infinite;
  }

  .solutions-card {
  	border-radius: var(--radius-lg);
  	padding: 40px 30px 30px;
  	width: calc(50% - 8px);
  	display: -webkit-box;
  	display: -ms-flexbox;
  	display: flex;
  	-webkit-box-orient: vertical;
  	-webkit-box-direction: normal;
  	-ms-flex-direction: column;
  	flex-direction: column;
  	gap: 10px;
  	-webkit-box-pack: justify;
  	-ms-flex-pack: justify;
  	justify-content: space-between;
  	-webkit-box-shadow: 0px 0px 2px 0px rgb(15 23 42 / 12%), 0px 0px 1px 0px rgb(15 23 42 / 4%), 0px 2px 6px 0px rgb(15 23 42 / 4%), 0px 16px 24px 0px rgb(15 23 42 / 4%);
  	box-shadow: 0px 0px 2px 0px rgb(15 23 42 / 12%), 0px 0px 1px 0px rgb(15 23 42 / 4%), 0px 2px 6px 0px rgb(15 23 42 / 4%), 0px 16px 24px 0px rgb(15 23 42 / 4%);
  	cursor: pointer;
  	-webkit-transition: all 0.5s ease;
  	transition: all 0.5s ease;
  }

  .button_secondary {
  	background: transparent;
  	color: var(--text-primary);
  	border: 1px solid var(--interactive-tertiary, #E1E7EF);
  	font-weight: 400;
  }

  .button_secondary:hover {
  	background: var(--accent);
  	color: var(--text-primary);
  }

  .solutions-card:hover {
  	-webkit-transform: translateY(-10px);
  	transform: translateY(-10px);
  }


  .solutions-badge {
  	border-radius: 8px;
  	padding: 5px 10px;
  	display: inline-block;
  	width: -webkit-fit-content;
  	width: -moz-fit-content;
  	width: fit-content;
  	font-weight: 700;
  	text-transform: uppercase;
  	font-size: 16px;
  	font-family: "FuturaNew";
  	display: -webkit-box;
  	display: -ms-flexbox;
  	display: flex;
  	-webkit-box-align: center;
  	-ms-flex-align: center;
  	align-items: center;
  	gap: 6px;
  }

  .solutions-badge img {
  	width: 25px;
  	height: 25px;
  	-o-object-fit: contain;
  	object-fit: contain;
  }

  .solutions-benefits {
  	padding: 20px 20px;
  	border-radius: 20px;
  }

.solutions-benefits ul {
	margin-bottom: 0;
}

  .solutions-card .button {
  	width: 100%;
  	max-width: 100%;
  	margin-top: 20px;
  }

  /*
.solutions-card:first-of-type {
	background:  linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%)
}
*/

  .solutions-card h3 {
  	margin-top: 20px;
  	margin-bottom: 0;
  }

  .solutions-card:first-of-type h3 {
  	color: #2463EB;
  }

  .solutions-card:first-of-type .solutions-badge {
  	color: #1D4FD7;
  	background: #DCEBFE;
  }

  .solutions-card:first-of-type .solutions-benefits {
  	background: #F0F6FF
  }

  /*
.solutions-card:nth-of-type(2) {
	background:  linear-gradient(135deg, #10b981 0%, #047857 100%)
}
*/

  .solutions-card:nth-of-type(2) h3 {
  	color: #057A55
  }

  .solutions-card:nth-of-type(2) .solutions-badge {
  	color: #046C4F;
  	background: #DEF7EC;
  }

  .solutions-card:nth-of-type(2) .solutions-benefits {
  	background: #F4FAF8
  }

  /*
.solutions-card:nth-of-type(3) {
	background:  linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}
*/

  .solutions-card:nth-of-type(3) h3 {
  	color: #E02424
  }

  .solutions-card:nth-of-type(3) .solutions-badge {
  	color: #E02424;
  	background: #FDF2F2;
  }

  .solutions-card:nth-of-type(3) .solutions-benefits {
  	background: #FDF2F2
  }

  /*
.solutions-card:nth-of-type(4) {
	background:  linear-gradient(135deg, #ec4899 0%, #db2777 100%);
}
*/

  .solutions-card:nth-of-type(4) h3 {
  	color: #7E3AF2
  }

  .solutions-card:nth-of-type(4) .solutions-badge {
  	color: #7E3AF2;
  	background: #EDEBFF;
  }

  .solutions-card:nth-of-type(4) .solutions-benefits {
  	background: #F6F5FF
  }



  .guarantees-item {
  	border-radius: var(--radius-lg);
  	padding: 40px 30px 30px;
  	width: calc(33.3% - 11px);
  	display: -webkit-box;
  	display: -ms-flexbox;
  	display: flex;
  	-webkit-box-orient: vertical;
  	-webkit-box-direction: normal;
  	-ms-flex-direction: column;
  	flex-direction: column;
  	-webkit-box-shadow: 0px 0px 2px 0px rgb(15 23 42 / 12%), 0px 0px 1px 0px rgb(15 23 42 / 4%), 0px 2px 6px 0px rgb(15 23 42 / 4%), 0px 16px 24px 0px rgb(15 23 42 / 4%);
  	box-shadow: 0px 0px 2px 0px rgb(15 23 42 / 12%), 0px 0px 1px 0px rgb(15 23 42 / 4%), 0px 2px 6px 0px rgb(15 23 42 / 4%), 0px 16px 24px 0px rgb(15 23 42 / 4%);
  }

  .promo-wrap {
  	position: relative;
  	display: -webkit-box;
  	display: -ms-flexbox;
  	display: flex;
  	overflow: hidden;
  	-webkit-user-select: none;
  	-moz-user-select: none;
  	-ms-user-select: none;
  	user-select: none;
  }

  .marquee {
  	-webkit-animation: scroll 30s linear infinite;
  	animation: scroll 30s linear infinite;
  }

  .promo-text {
  	background: var(--text-primary) url(../img/bg-pic.jpg) no-repeat center top/cover;
  	color: #F0F6FF;
  	height: 600px;
  	font-size: 300px;
  	font-weight: 700;
  	text-transform: uppercase;
  	display: -ms-flexbox;
  	display: flex;
  	-webkit-box-align: center;
  	-ms-flex-align: center;
  	align-items: center;
  	gap: 50px;
  	padding: 0 25px;
  	text-align: center;
  	white-space: nowrap;
  	-ms-flex-negative: 0;
  	flex-shrink: 0;
  	display: -webkit-box;
  	display: flex;
  	min-width: 100%;
  }

  .marquee {
  	-webkit-animation: scroll 30s linear infinite;
  	animation: scroll 30s linear infinite;
  }

  /*
					.promo-wrap:hover .marquee {
						-webkit-animation-play-state: paused;
						animation-play-state: paused;
					}
*/

  @-webkit-keyframes scroll {
  	from {
  		-webkit-transform: translateX(0);
  		transform: translateX(0);
  	}

  	to {
  		-webkit-transform: translateX(calc(-100% - 20px));
  		transform: translateX(calc(-100% - 20px));
  	}
  }

  @keyframes scroll {
  	from {
  		-webkit-transform: translateX(0);
  		transform: translateX(0);
  	}

  	to {
  		-webkit-transform: translateX(calc(-100% - 20px));
  		transform: translateX(calc(-100% - 20px));
  	}
  }

  .promo-block {
  	border-radius: 32px;
  	background-color: #F0F6FF;
  	padding: 45px 40px;
  	max-width: 820px;
  	left: 50%;
  	-webkit-transform: translateX(-50%);
  	transform: translateX(-50%);
  	position: absolute;
  	top: 70px;
  	width: 100%;
  }

  .promo-block > span {
  	font-size: 16px;
  }

  .promo-block h3 {
  	margin-top: 20px;
  }

  .promo {
  	padding: 0;
  	position: relative;
  }

  .contacts {
  	/*	background: url(../img/form-bg.png) no-repeat right bottom/contain;*/
  	padding: 100px 0;
  	background: #F0F6FF;
  	background: linear-gradient(135deg, #fff, #F0F6FF 50%, #DCEBFE 100%)
  }

  .contacts-block .section-heading,
  .contacts-block .section-desc {
  	text-align: left;
  }

  /*
  .contacts-block ul {
  	display: -moz-flex;
  	display: -ms-flex;
  	display: -o-flex;
  	display: -webkit-box;
  	display: -ms-flexbox;
  	display: flex;
  	-ms-flex-wrap: wrap;
  	flex-wrap: wrap;
  	gap: 30px;
  	margin-top: 40px;
  }
*/


  .form-block {
  	-webkit-box-shadow: 0px 0px 2px 0px rgb(15 23 42 / 12%), 0px 0px 1px 0px rgb(15 23 42 / 4%), 0px 2px 6px 0px rgb(15 23 42 / 4%), 0px 16px 24px 0px rgb(15 23 42 / 4%);
  	box-shadow: 0px 0px 2px 0px rgb(15 23 42 / 12%), 0px 0px 1px 0px rgb(15 23 42 / 4%), 0px 2px 6px 0px rgb(15 23 42 / 4%), 0px 16px 24px 0px rgb(15 23 42 / 4%);
  	border-radius: var(--radius-lg);
  	padding: 40px;
  	background: #fff;
  	max-width: 660px;
  	margin: 0;
  	width: 100%;
  }

  .form-block h2 {
  	text-align: center;
  	margin-bottom: 20px;
  }

  .form-block .section-desc {
  	margin: 15px 0 25px;
  	text-align: center;
  	max-width: none;
  }

  .app-form__btn {
  	width: 100%;
  	margin: 30px auto 0;
  	max-width: 100%
  }

  .contacts .app-form__title,
  .contacts .app-form__desc {
  	color: var(--text-primary);
  }

  .app-form label.error {
  	text-align: left;
  	position: absolute;
  }


  .contacts .app-form {
  	background: none;
  	padding: 0;
  	width: 100%;
  	max-width: 100%;
  	min-height: 594px;
  	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;
  }


  .contacts .app-form__group,
  .contacts .app-form__btn {
  	width: 100%;
  	max-width: 100%;
  }

  .contacts .app-form__input {
  	max-width: 100%;
  }

  footer {
  	padding: 20px 0 10px;
  }

  .footer-logo {
  	width: 60px;
  	height: 60px;
  	margin-bottom: 10px;
  }

  .quiz {
  	padding-top: 30px;
  }

  .quiz .section-heading,
  .quiz .offer__desc {
  	text-align: center;
  }

  .quiz .offer__main {
  	margin-top: 40px;
  	width: -webkit-fit-content;
  	width: -moz-fit-content;
  	width: fit-content;
  	margin-left: auto;
  	margin-right: auto;
  }


  .quiz .offer__desc {
  	font-size: 16px;
  	margin-left: auto;
  	margin-right: auto;
  }

  .quiz-offer {
  	display: block;
  }

  /*
.timer {
	font-size: 14px;
	text-transform: uppercase;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 15px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.timer span {
	font-size: 40px;
	font-weight: 700;
	padding: 3px 20px;
	border-radius: 50px;
	display: inline-block;
	background: #F0F6FF;
	width: 180px;
	text-align: center;
	line-height: 50px;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}
*/

  .comparison-block {
  	background: #F0F6FF;
  	border-radius: 32px;
  	padding: 50px;

  }

  .comparison-table {
  	margin-top: 40px;
  	gap: 40px;
  }

  .comparison-column {
  	width: calc(50% - 20px)
  }

  .comparison-column h3 {
  	font-size: 30px;
  }

  .comparison-column ul {
  	margin-top: 10px;
  }

  .quote {
  	font-style: italic
  }

  .steps-list {
  	gap: 12px;
  	margin-top: 40px;
  }

  .steps-item {
  	border-radius: 32px;
  	background: var(--text-primary);
  	padding: 30px;
  	color: #F0F6FF;
  	width: calc(50% - 6px)
  }

  .steps-item .icon {
  	font-size: 26px;
  }

  .steps-item h3 {
  	color: #F0F6FF;
  	position: relative;
  }

  .steps .quote {
  	text-align: center;
  	max-width: 820px;
  	margin: 70px auto 0;
  	font-size: 24px;
  }

  .steps .button,
  .comparison-button {
  	margin: 30px auto 0;
  }

  .steps .button {
  	margin-bottom: 10px;
  }

  .check-list {
  	display: -webkit-box;
  	display: -ms-flexbox;
  	display: flex;
  	-webkit-box-orient: vertical;
  	-webkit-box-direction: normal;
  	-ms-flex-direction: column;
  	flex-direction: column;
  	gap: 10px;
  	font-size: 16px;
  	margin: 10px 0;
  }

  .check-list li {
  	position: relative;
  	padding-left: 26px;
  }

  .check-list li span {
  	position: absolute;
  	left: 0;
  }

  .check-list .check-item,
  .check-list li {
  	/*  		background: url(../img/usage-tip.svg) no-repeat left top/22px;*/
  	background: url(../img/check-mark.svg) no-repeat left top/18px;
  	padding-left: 26px;
  	position: relative;
  }

  /*

  .check-list .check-item:before {
  	content: '✓';
  	position: absolute;
  	left: 0;
  	top: 0;
  	color: #22c55e;
  	font-weight: bold;
  }
*/

  /*
.check-list .cross-item {
	background: url(../img/cross-icon.svg) no-repeat left top/22px;
	padding-left: 30px;
}
*/

  .faq-block {
  	margin-top: 40px;
  }

  .faq-item {
  	border: 1px solid var(--border-color);
  	max-width: 850px;
  	margin: 0 auto 20px;
  	border-radius: var(--radius);
  	-webkit-transition: var(--transition);
  	transition: var(--transition);
  }

  .faq-item:hover {
  	border-color: var(--primary);
  }

  .faq-title {
  	background: var(--color-primary);
  	padding: 20px 50px 20px 30px;
  	position: relative;
  	cursor: pointer;
  }

  .faq-title h3 {
  	color: var(--color-accent);
  	margin-bottom: 0;
  	font-weight: 400
  }

  .faq-title.active::after {
  	-webkit-transform: rotate(-180deg);
  	transform: rotate(-180deg);
  }

  .faq-title::after {
  	content: " ";
  	background-position: center center;
  	background-repeat: no-repeat;
  	height: 20px;
  	position: absolute;
  	width: 20px;
  	top: 50%;
  	margin-top: -10px;
  	right: 30px;
  	background-image: url(../img/chevron-down.svg);
  	-webkit-transition: all 0.3s ease;
  	transition: all 0.3s ease;
  }

  .faq-content.active {
  	display: block;
  }

  .faq-content {
  	padding: 0px 50px 30px 30px;
  	display: none;
	  opacity: 0.8;
  }


  .faq-content li {
  	list-style: disc;
  	font-size: 16px;
  	margin-bottom: 15px;
  }

  .calculate {
  	background: url(../img/offer3.jpg) no-repeat right top/cover;
  }

  .calculate-container {
  	max-width: 850px;
  	margin: 40px auto 0;
  	background: var(--glass-bg);
  	-webkit-backdrop-filter: blur(12px);
  	backdrop-filter: blur(12px);
  	border: 1px solid var(--glass-border);
  	border-radius: var(--radius-lg);
  	-webkit-box-shadow: var(--glass-shadow);
  	box-shadow: var(--glass-shadow);
  	padding: 50px 40px;
  	-webkit-transition: var(--transition);
  	transition: var(--transition);
  }

  .calculate-heading {
  	text-align: center;
  	margin-bottom: 30px;
  }

  .calculate-form {
  	display: -webkit-box;
  	display: -ms-flexbox;
  	display: flex;
  	-webkit-box-orient: vertical;
  	-webkit-box-direction: normal;
  	-ms-flex-direction: column;
  	flex-direction: column;
  	gap: 20px;
  }

  .form-group {
  	display: -webkit-box;
  	display: -ms-flexbox;
  	display: flex;
  	-webkit-box-orient: vertical;
  	-webkit-box-direction: normal;
  	-ms-flex-direction: column;
  	flex-direction: column;
  	gap: 8px;
  }

  .form-label {
  	font-weight: 600;
  }

  .form-input {
  	padding: 16px;
  	border-radius: var(--radius);
  	border: 1px solid rgba(255, 255, 255, 0.1);
  	background: rgba(255, 255, 255, 0.05);
  	color: white;
  	font-size: 1rem;
  	-webkit-transition: var(--transition);
  	transition: var(--transition);
  }

  .form-input:focus {
  	outline: none;
  	border-color: var(--primary);
  	background: rgba(255, 255, 255, 0.08);
  }



  .radio-group {
  	display: -webkit-box;
  	display: -ms-flexbox;
  	display: flex;
  	-ms-flex-wrap: wrap;
  	flex-wrap: wrap;
  	gap: 15px;
  	margin-top: 10px;
  }

  .radio-label {
  	display: -webkit-box;
  	display: -ms-flexbox;
  	display: flex;
  	-webkit-box-align: center;
  	-ms-flex-align: center;
  	align-items: center;
  	gap: 8px;
  	padding: 12px 16px;
  	-webkit-box-shadow: var(--glass-shadow);
  	box-shadow: var(--glass-shadow);
  	cursor: pointer;
  	-webkit-transition: var(--transition);
  	transition: var(--transition);
  	background: var(--glass-bg);
  	-webkit-backdrop-filter: blur(10px);
  	backdrop-filter: blur(10px);
  	border-radius: var(--radius);
  	/*    padding: 20px;*/
  	/*    text-align: center;*/
  	/*    margin-top: 30px;*/
  	border: 1px solid var(--glass-border);
  }

  .radio-label:hover {
  	border-color: var(--primary);
  }

  .radio-label input {
  	display: none;
  }

  /*
  .radio-label input:checked + .radio-custom::after {
  	content: '';
  	display: block;
  	width: 8px;
  	height: 8px;
  	background: white;
  	border-radius: 50%;
  	position: absolute;
  	top: 3px;
  	left: 3px;
  }
*/


  .radio-custom {
  	width: 20px;
  	height: 20px;
  	/*  	border: 2px solid var(--gray);*/
  	border-radius: 50%;
  	position: relative;
  }

  .calculate-group {
  	margin-top: 30px;
  }

  .calculate-group .radio-label {
  	width: calc(50% - 8px)
  }


  .calculate-result {
  	background: var(--glass-bg);
  	-webkit-backdrop-filter: blur(12px);
  	backdrop-filter: blur(12px);
  	border: 1px solid var(--glass-border);
  	border-radius: 24px;
  	-webkit-box-shadow: var(--glass-shadow);
  	box-shadow: var(--glass-shadow);
  	padding: 30px;
  	-webkit-transition: var(--transition);
  	transition: var(--transition);
  	text-align: center;
  	margin: 20px 0;
  }

  .profit-amount {
  	font-size: 2rem;
  	font-weight: 800;
  	color: var(--accent);
  	margin: 10px 0;
  }

  .small-text {
  	font-size: 0.9rem;
  	opacity: 0.8;
  	margin-top: 5px;
  }

  .radio-option {
  	display: -webkit-box;
  	display: -ms-flexbox;
  	display: flex;
  	/*
  	-webkit-box-orient: vertical;
  	-webkit-box-direction: normal;
  	-ms-flex-direction: column;
  	flex-direction: column;
*/
  	-webkit-box-align: center;
  	-ms-flex-align: center;
  	align-items: center;
  	border: 1px solid var(--light-gray);
  	border-radius: var(--radius);
  	cursor: pointer;
  	-webkit-transition: var(--transition);
  	transition: var(--transition);
  	text-align: center;
  }

  .radio-option:hover .radio-content {
  	border-color: var(--primary);
  }

  .radio-option input {
  	display: none;
  }

  .radio-option input:checked + .radio-content {
  	border-color: var(--primary);
  	background: rgba(37, 99, 235, 0.05);
  }

  .radio-content {
  	display: -webkit-box;
  	display: -ms-flexbox;
  	display: flex;
  	/*
  	-webkit-box-orient: vertical;
  	-webkit-box-direction: normal;
  	-ms-flex-direction: column;
  	flex-direction: column;
*/
  	-webkit-box-align: center;
  	-ms-flex-align: center;
  	align-items: center;
  	gap: 8px;
  	width: 100%;
  	padding: 7px 12px;
  	border: 1px solid transparent;
  	border-radius: var(--radius);
  }

  .radio-icon {
  	height: 25px;
  }

  .radio-icon img {
  	height: 25px;
  	width: 25px;
  	-o-object-fit: contain;
  	object-fit: contain;
  }

  .checkbox-group {
  	display: -webkit-box;
  	display: -ms-flexbox;
  	display: flex;
  	-webkit-box-align: start;
  	-ms-flex-align: start;
  	align-items: flex-start;
  	gap: 10px;
  	margin-top: 15px;
  }

  .checkbox-group input {
  	margin-top: 5px;
  }

  .radio-group-grid {
  	display: -webkit-box;
  	display: -ms-flexbox;
  	display: flex;
  	gap: 10px;
  	margin-top: 10px;
  	-ms-flex-wrap: wrap;
  	flex-wrap: wrap;
  }

  .range-slider {
  	width: 100%;
  	height: 10px;
  	-webkit-appearance: none;
  	background: -webkit-gradient(linear, left top, right top, from(var(--accent)), to(var(--primary)));
  	background: linear-gradient(to right, var(--accent), var(--primary));
  	border-radius: 5px;
  	outline: none;
  	margin: 20px 0;
  }

  .range-slider::-webkit-slider-thumb {
  	-webkit-appearance: none;
  	width: 25px;
  	height: 25px;
  	border-radius: 50%;
  	background: white;
  	border: 2px solid var(--primary);
  	cursor: pointer;
  	-webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  }

  .range-slider::-moz-range-thumb {
  	width: 25px;
  	height: 25px;
  	border-radius: 50%;
  	background: white;
  	border: 2px solid var(--primary);
  	cursor: pointer;
  	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  }

  .slider-values {
  	display: -webkit-box;
  	display: -ms-flexbox;
  	display: flex;
  	-webkit-box-pack: justify;
  	-ms-flex-pack: justify;
  	justify-content: space-between;
  	margin-top: 10px;
  	font-size: 16px;
/*  	color: var(--gray);*/
  }

  .slider-values strong {
/*  	color: var(--dark);*/
  	font-size: 1.1rem;
  }

  .profit-amount {
  	font-size: 40px;
  	font-weight: 700;
  	font-family: "FuturaNew";
  	color: var(--primary-dark);
  	margin: 10px 0;
  	-webkit-transition: all 0.3s ease;
  	transition: all 0.3s ease;
  }

  /* Callback виджет */
  .callback-widget {
  	position: fixed;
  	bottom: 30px;
  	right: 30px;
  	z-index: 1000;
  }

  .callback-button {
  	width: 60px;
  	height: 60px;
  	border-radius: 50%;
  	background: var(--primary) url(../img/call-b.svg) no-repeat center/ 25px;
  	color: white;
  	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;
  	font-size: 1.5rem;
  	-webkit-box-shadow: var(--shadow-lg);
  	box-shadow: var(--shadow-lg);
  	cursor: pointer;
  	-webkit-transition: var(--transition);
  	transition: var(--transition);
  	border: none;

  }

  .callback-button:hover {
  	-webkit-transform: scale(1.1);
  	transform: scale(1.1);
  	background-color: var(--primary-dark);
  }


  .callback-button:after {
  	content: "";
  	-webkit-transform-origin: 50% 50% !important;
  	transform-origin: 50% 50% !important;
  	width: 90px;
  	height: 90px;
  	top: -15px;
  	left: -15px;
  	position: absolute;
  	background-color: transparent;
  	border-radius: 100%;
  	border: 2px solid var(--primary);
  	opacity: 0.1 !important;
  	-webkit-animation: circle-anim 2s infinite ease-in-out;
  	animation: circle-anim 2s infinite ease-in-out;
  	-webkit-transition: all 0.5s;
  	transition: all 0.5s;
  }

  @-webkit-keyframes circle-anim {
  	0% {
  		-webkit-transform: rotate(0deg) scale(0.5) skew(1deg);
  		transform: rotate(0deg) scale(0.5) skew(1deg);
  		opacity: 0.1;
  	}

  	30% {
  		-webkit-transform: rotate(0deg) scale(0.7) skew(1deg);
  		transform: rotate(0deg) scale(0.7) skew(1deg);
  		opacity: 0.5;
  	}

  	100% {
  		-webkit-transform: rotate(0deg) scale(1) skew(1deg);
  		transform: rotate(0deg) scale(1) skew(1deg);
  		opacity: 0.1;
  	}
  }

  @keyframes circle-anim {
  	0% {
  		-webkit-transform: rotate(0deg) scale(0.5) skew(1deg);
  		transform: rotate(0deg) scale(0.5) skew(1deg);
  		opacity: 0.1;
  	}

  	30% {
  		-webkit-transform: rotate(0deg) scale(0.7) skew(1deg);
  		transform: rotate(0deg) scale(0.7) skew(1deg);
  		opacity: 0.5;
  	}

  	100% {
  		-webkit-transform: rotate(0deg) scale(1) skew(1deg);
  		transform: rotate(0deg) scale(1) skew(1deg);
  		opacity: 0.1;
  	}
  }

  @-webkit-keyframes link-rotate-anim {
  	0% {
  		-webkit-transform: rotate(0deg) scale(1) skew(1deg);
  		transform: rotate(0deg) scale(1) skew(1deg);
  	}

  	10% {
  		-webkit-transform: rotate(-25deg) scale(1) skew(1deg);
  		transform: rotate(-25deg) scale(1) skew(1deg);
  	}

  	20% {
  		-webkit-transform: rotate(25deg) scale(1) skew(1deg);
  		transform: rotate(25deg) scale(1) skew(1deg);
  	}

  	30% {
  		-webkit-transform: rotate(-25deg) scale(1) skew(1deg);
  		transform: rotate(-25deg) scale(1) skew(1deg);
  	}

  	40% {
  		-webkit-transform: rotate(25deg) scale(1) skew(1deg);
  		transform: rotate(25deg) scale(1) skew(1deg);
  	}

  	100%,
  	50% {
  		-webkit-transform: rotate(0deg) scale(1) skew(1deg);
  		transform: rotate(0deg) scale(1) skew(1deg);
  	}
  }

  @keyframes link-rotate-anim {
  	0% {
  		-webkit-transform: rotate(0deg) scale(1) skew(1deg);
  		transform: rotate(0deg) scale(1) skew(1deg);
  	}

  	10% {
  		-webkit-transform: rotate(-25deg) scale(1) skew(1deg);
  		transform: rotate(-25deg) scale(1) skew(1deg);
  	}

  	20% {
  		-webkit-transform: rotate(25deg) scale(1) skew(1deg);
  		transform: rotate(25deg) scale(1) skew(1deg);
  	}

  	30% {
  		-webkit-transform: rotate(-25deg) scale(1) skew(1deg);
  		transform: rotate(-25deg) scale(1) skew(1deg);
  	}

  	40% {
  		-webkit-transform: rotate(25deg) scale(1) skew(1deg);
  		transform: rotate(25deg) scale(1) skew(1deg);
  	}

  	100%,
  	50% {
  		-webkit-transform: rotate(0deg) scale(1) skew(1deg);
  		transform: rotate(0deg) scale(1) skew(1deg);
  	}
  }


  @media screen and (max-width: 1200px) {
  	section {
  		padding-top: 100px;
  	}

  	.guarantees,
  	.calculate,
  	.faq {
  		padding-bottom: 100px;
  	}

  	h2 {
  		font-size: 40px;
  	}

  }

  @media screen and (max-width: 992px) {
  	.menu-icon {
  		display: block;
  	}

  	.navbar .menu {
  		display: none;
  	}

  	.header_main .navbar .call-btn {
  		margin-left: auto;
  		margin-right: 20px;
  	}

  	.benefits-list,
  	.steps-list,
  	.comparison-table,
	  .solutions-list, .guarantees-list {
  		margin-top: 30px;
  	}

  	section {
  		padding-top: 80px;
  	}

  	.guarantees,
  	.calculate,
  	.faq {
  		padding-bottom: 80px;
  	}

  	.copyright a {
  		font-size: 26px;
  	}

  	.contacts {
  		padding: 80px 0;
  	}


  	.benefits-item .button {
  		margin-top: 20px;
  		max-width: 300px;
  	}

  	.promo-block {
  		max-width: calc(100% - 30px)
  	}

  	.steps-item h3 {
  		padding-left: 45px;
  	}

  	.steps-item h3 span {
  		position: absolute;
  		left: 0;
  	}

  	.steps .quote {
  		margin-top: 50px;
  	}

  	.comparison-block {
  		padding: 45px 40px;
  	}

  	.comparison-table {
  		gap: 20px;
  	}

  	.form-block {
  		padding: 30px;
  	}

  	.offer__main {
  		margin-bottom: 20px;
  	}

  	.offer__btns,
  	.guarantees-docs,
  	.benefits-button,
  	.faq-button {
  		margin-top: 30px;
  	}

  	.solutions-card h3,
  	.solutions-card .button {
  		margin-top: 10px;
  	}
  }

  @media screen and (max-width: 769px) {


  	header:before {
  		content: "";
  		position: absolute;
  		width: 100%;
  		height: 100%;
  		background: rgba(255, 255, 255, 0.55);
  		left: 0;
  		top: 0;
  		display: block;
  	}

  	h2 {
  		font-size: 36px;
  	}

  	.check-list li {
  		padding-left: 23px;
  	}

  	.benefits-item {
  		width: 100%
  	}

  	.benefits-item .button {
  		margin-top: 20px;
  	}

  	section {
  		padding-top: 65px;
  	}

  	.guarantees,
  	.calculate,
  	.faq {
  		padding-bottom: 65px;
  	}


  	.solutions-card,
  	.guarantees-item {
  		width: 100%;
  	}

  	.benefits-item,
  	.guarantees-item {
  		text-align: center;
  		padding: 30px 20px;

  	}

  	.benefits-item img,
  	.guarantees-item img {
  		margin: 0 auto 10px;
  		width: 40px;
  	}

  	.calculate-container {
  		padding: 40px 30px;
  		margin-top: 30px;
  	}

  	.faq-block {
  		margin-top: 30px;
  	}

  	.calculate {
  		background-position: left top;
  	}

  	.calculate-group .radio-label {
  		width: 100%;
  	}

  	.radio-group {
  		gap: 8px;
  	}

  	.calculate-result {
  		padding: 20px;
  	}

  	.profit-amount {
  		line-height: 1;
  	}

  	.app-form__btn {
  		margin-top: 20px;
  	}

  	.contacts {
  		padding: 65px 0;
  	}

  	.promo-block,
  	.comparison-block {
  		padding: 35px 30px;
  	}

  	.promo-text {
  		font-size: 150px;
  	}

  	.steps-item {
  		width: 100%;
  	}

  	.steps .quote {
  		font-size: 22px;
  	}

  	.header {
  		background-size: auto 100vh;
  		background-position: left top;
  	}

  	.steps .button {
  		margin-top: 20px;
  	}

  	.comparison-block {
  		padding: 0;
  		background: transparent;
  		border-radius: 0;
  	}

  	.comparison-column {
  		width: 100%;
  		border-radius: 32px;
  		background: #F0F6FF;
  		padding: 25px 20px;
  	}

  	.form-block {
  		margin-top: 30px;
  	}
  }

  @media screen and (max-width: 576px) {
  	:root {
  		--radius-lg: 20px;
  	}

  	.navbar .call-btn {
  		display: none;
  	}

  	.section-heading span {
  		padding: 0 15px;
  	}

  	.header_quiz .call-btn {
  		display: block;
  		height: 38px;
  		line-height: 36px;
  		padding: 0px 10px;
  		font-size: 16px;
  	}

  	.logo {
  		width: 45px;
  		height: 45px;
  		overflow: hidden;
  	}

  	.header_main .navbar.fixed {
  		background: rgba(255, 255, 255, 0.8);
  	}

  	.popup__header h2 {
  		line-height: 1;
  		font-size: 20px;
		text-align: left;
  	}
	  
	  .popup__header img {
		  height: 36px;
		  width: 36px;
	  }

  	.order-popup .popup__box {
  		padding-top: 80px;
  	}

  	.popup__benefits {
  		margin: 20px 0;
  		gap: 8px;
  		-webkit-box-orient: vertical;
  		-webkit-box-direction: normal;
  		-ms-flex-direction: column;
  		flex-direction: column;
		    -webkit-box-align: center;
		    -ms-flex-align: center;
		    align-items: center;
    text-align: center;
  	}

  	.popup__benefits h4 {
  		margin-bottom: 5px;
  	}

  	.popup__benefits img {
  		width: 27px;
    height: 38px;
  	}
	  
	  .remodal-close {
		  font-size: 22px;
	  }


  	.offer__desc {
  		margin-bottom: 10px;
  	}

  	.offer__benefits,
  	.check-list {
  		gap: 8px 0;
  	}

  	.offer__benefits b {
  		display: block;
  	}

  	.benefits-item > span {
  		margin-bottom: 10px;
  	}

  	.calculate-container {
  		padding: 30px 20px;
  	}

  	.calculate-group {
  		margin-top: 20px;
  	}

  	.promo-text {
  		height: 650px;
  	}

  	.promo-block {
  		top: 50px;
  	}

  	.promo-block h3 {
  		margin-top: 10px;
  	}

  	.promo-block .button {
  		max-width: 100%;
  	}

  	.steps-item h3 {
  		padding-left: 38px;
  	}

  	.benefits-list,
  	.steps-list,
  	.comparison-table,
	 .solutions-list, .guarantees-list {
  		margin-top: 20px;
  	}

  	.comparison-table {
  		gap: 12px;
  	}

  	.comparison-column h3 {
  		font-size: 26px;
  	}

  	.faq-title {
  		padding: 15px 40px 15px 20px;
  	}

  	.faq-content {
  		padding: 0px 40px 20px 20px;
  	}

  	.faq-title::after {
  		right: 20px;
  	}

  	section .button {
  		max-width: 100%;
  	}

  	h3 {
  		font-size: 22px;
  		margin-bottom: 5px;
  	}

  	.check-list {
  		font-size: 15px;
  	}

  	.check-list .cross-item,
  	.check-list .check-item {
  		background-size: 16px;
  		padding-left: 23px;
  	}

  	.steps .quote {
  		margin-top: 30px;
  		font-size: 20px;
  	}

  	.section-desc {
  		margin-top: 15px;
  	}

  	.benefits-item,
  	.guarantees-item,
  	.solutions-card {
  		padding: 20px;
  	}

  	section {
  		padding-top: 50px;
  	}

  	.guarantees,
  	.calculate {
  		padding-bottom: 50px;
  	}
	  
	  .faq {
		  padding-bottom: 0;
	  }

  	.solutions-badge {
  		width: 100%;
  	}

  	.solutions-card h3,
  	.solutions-card p {
  		text-align: center;
  	}

  	.solutions-card p {
  		line-height: 1.35;
  		margin-top: 5px;
  	}

  	.offer__btns,
  	.guarantees-docs,
  	.benefits-button,
  	.faq-button {
  		margin-top: 25px;
  	}

  	.offer__btns,
  	.guarantees-docs {
  		gap: 16px;
  	}
	  
	  p {
		  line-height: 1.35;
	  }

  	.button {
  		display: -webkit-box;
  		display: -ms-flexbox;
  		display: flex;
  		-webkit-box-align: center;
  		-ms-flex-align: center;
  		align-items: center;
  		padding: 3px 15px;
  		line-height: 1;
  		-webkit-box-pack: center;
  		-ms-flex-pack: center;
  		justify-content: center;
  		gap: 5px;
		font-size: 20px;
		font-weight: 400;
  	}

  	.button img {
  		margin-bottom: 0;
  	}

  	.steps-item {
  		width: 100%;
  	}

  	.contacts {
  		padding: 70px 0 210px;
  	}

  	.form-block {
  		margin-top: 30px;
  	}

  	h2 {
  		font-size: 28px;
  	}

  	.benefits-item .button {
  		max-width: 100%;
  	}

  	body {
  		font-size: 15px;
  		line-height: 1.35
  	}
	  
	  h4 {
		  font-size: 20px;
	  }
	  
	  .solutions-benefits, .popup__benefits {
		  border-radius: 16px;
		  padding: 15px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    background: none!important;
	  }

  	.promo-block {
  		padding: 25px 20px;
  		max-width: calc(100% - 30px);
  	}

  	.copyright a {
  		font-size: 22px;
  	}

  	.steps-item {
  		padding: 25px 20px;
  	}

  	.section-heading span {
  		padding: 0 10px;
  	}

  	.form-block {
  		padding: 0;
  		-webkit-box-shadow: none;
  		box-shadow: none;
  		background: none;
  		border-radius: none;
  	}

  	.radio-option {
  		width: 100%;
  	}

  	.floating {
  		-webkit-animation: none;
  		animation: none;
  	}

  	.callback-widget {
  		right: 15px;
  		bottom: 15px;
  	}

  	.callback-button {
  		width: 40px;
  		height: 40px;
  		background-size: 20px;
  	}

  	.callback-button:after {
  		width: 60px;
  		height: 60px;
  		top: -10px;
  		left: -10px;
  	}

  	.copyright a {
  		margin-left: 0;
  		text-align: center;
  	}

  	.contacts {
  		background: none;
  		padding-bottom: 50px;
  	}

  	.policy:nth-of-type(2) {
  		-webkit-box-ordinal-group: 4;
  		-ms-flex-order: 3;
  		order: 3;
  	}
  }

  @media screen and (max-width: 415px) {
  	.offer__benefits {
  		letter-spacing: 0;
  	}

  }

  .app-form .intl-tel-input.allow-dropdown .selected-flag {
  	pointer-events: none;
  }

  .intl-tel-input .selected-flag .iti-arrow {
  	display: none;
  }

  .app-form__input {
  	font-size: 18px;
  	padding-left: 35px;
  }

  .intl-tel-input.separate-dial-code .selected-dial-code {
  	font-size: 20px;
  }

  @media screen and (max-width: 480px) {
  	.app-form__btn {
  		background-position: 40px center;
  	}

  	.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input,
  	.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input[type=tel],
  	.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input[type=text] {
  		padding-left: 100px;
  	}
  }

  @media screen and (max-width: 380px) {

  	.app-form__group,
  	.app-form__btn {
  		max-width: 100%;
  	}
  }
