/* RESET*/
::-webkit-input-placeholder {
  color: var(--color-text-darkest);
  opacity: 1;
}
:-moz-placeholder,
::-moz-placeholder {
  color: var(--color-text-darkest);
  opacity: 1;
}
:-ms-input-placeholder {
  color: var(--color-text-darkest);
  opacity: 1;
}
article,
aside,
audio,
body,
canvas,
caption,
details,
div,
em,
figure,
footer,
form,
header,
html,
i,
iframe,
img,
label,
li,
menu,
nav,
object,
ol,
p,
section,
span,
summary,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
ul,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  font-weight: 400;
  vertical-align: baseline;
  background: 0 0;
}
b,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: 0 0;
}
article,
aside,
details,
figure,
footer,
header,
hr,
menu,
nav,
section {
  display: block;
}
ul {
  list-style: none;
}
a,
a:active,
a:visited {
  vertical-align: baseline;
  text-decoration: none;
  outline: 0;
}
b {
  font-weight: 700;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
}
hr {
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}
button,
input,
select,
textarea {
  outline: 0;
  border: 0;
}

@font-face {
  font-family: 'Ubuntu';
  src: url('/css/ubuntu-regular.woff2') format('woff2'),
    url('/css/ubuntu-regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Ubuntu';
  src: url('/css/ubuntu-medium.woff2') format('woff2'),
    url('/css/ubuntu-medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Ubuntu';
  src: url('/css/ubuntu-bold.woff2') format('woff2'),
    url('/css/ubuntu-bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
:root {
  --c-green2: #5ec724;
  --c-light-green: #d3f4c1;
  --c-light-green2: #b5ec97;
  --color-red: #f68561;

  --color-black: #141b25;
  --color-black2: #191919;
  --color-blue: #1f2431;
  --color-blue2: #111827;
  --color-light-blue: #22293a;
  --color-green: #89e159;
  --color-green2: #10b981;
  --color-darkgreen: #1e4e4e;
  --color-aqua-blue: #c9fafa;
  --gradient-green: linear-gradient(301.86deg, #1e4e4e 16.05%, #1f2431 75.16%),
    #1f2431;
  --gradient-lightgreen: linear-gradient(
    94.75deg,
    var(--color-green) 8.46%,
    #b9f598 95.23%
  );
  --gradient-green-revert: linear-gradient(
      328.57deg,
      rgba(30, 78, 78, 0.6) -13.26%,
      rgba(31, 36, 49, 0.6) 46.17%
    ),
    #1f2431;
  --color-text: #dbe2f9;
  --color-text-darker: #bfc6dc;
  --color-text-darkest: #8990a5;
  --color-grey: #424d5e;
  --border-radius-xl: 20px;
  --border-radius-lg: 16px;
  --border-radius-md: 12px;
  --border-radius-sm: 8px;
  --border-radius-xs: 4px;
}
.border-radius-xl {
  border-radius: var(--border-radius-xl);
}
.border-radius-sm {
  border-radius: var(--border-radius-sm);
}
.border-radius-xl-0-0-0 {
  border-radius: var(--border-radius-xl) 0 0 0;
}
.border-radius-xl-xl-0-0 {
  border-radius: var(--border-radius-xl) var(--border-radius-xl) 0 0;
}
.border-radius-0-xl-0-0 {
  border-radius: 0 var(--border-radius-xl) 0 0;
}
.border-radius-0-0-xl-xl {
  border-radius: 0 0 var(--border-radius-xl) var(--border-radius-xl);
}
.border-radius-0-0-0-xl {
  border-radius: 0 0 0 var(--border-radius-xl);
}
.border-radius-0-0-xl-0 {
  border-radius: 0 0 var(--border-radius-xl) 0;
}
.border-radius-xl-0-0-xl {
  border-radius: var(--border-radius-xl) 0 0 var(--border-radius-xl);
}
.border-radius-0-xl-xl-0 {
  border-radius: 0 var(--border-radius-xl) var(--border-radius-xl) 0;
}
.border-radius-lg {
  border-radius: var(--border-radius-lg);
}
.border-radius-lg-0-0-0 {
  border-radius: var(--border-radius-lg) 0 0 0;
}
.border-radius-0-0-0-lg {
  border-radius: 0 0 0 var(--border-radius-lg);
}
.border-radius-0-lg-lg-0 {
  border-radius: 0 var(--border-radius-lg) var(--border-radius-lg) 0;
}
.border-radius-0-0-lg-0 {
  border-radius: 0 0 var(--border-radius-lg) 0;
}
.border-radius-0-lg-0-0 {
  border-radius: 0 var(--border-radius-lg) 0 0;
}
.border-radius-lg-lg-0-lg {
  border-radius: var(--border-radius-lg) var(--border-radius-lg) 0
    var(--border-radius-lg);
}
.border-radius-lg-lg-lg-0 {
  border-radius: var(--border-radius-lg) var(--border-radius-lg)
    var(--border-radius-lg) 0;
}
.border-radius-lg-0-0-lg {
  border-radius: var(--border-radius-lg) 0 0 var(--border-radius-lg);
}
.border-radius-lg-lg-0-0 {
  border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
}
.border-radius-0-0-lg-lg {
  border-radius: 0 0 var(--border-radius-lg) var(--border-radius-lg);
}
.border-radius-md {
  border-radius: var(--border-radius-md);
}
.border-radius-sm {
  border-radius: var(--border-radius-sm);
}

.color--red {
  color: var(--color-red) !important;
}
.color--black {
  color: var(--color-black) !important;
}
.color--grey {
  color: var(--color-text-darkest) !important;
}
.color--white {
  color: var(--color-text) !important;
}
.color--green {
  color: var(--color-green) !important;
}
.color--text {
  color: var(--color-text-darker) !important;
}
.bg-gradient-green {
  background: var(--gradient-green) !important;
}
.bg-gradient-green-revert {
  background: var(--gradient-green-revert);
}
.cover-gradient-grey:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-image: linear-gradient(
    176deg,
    rgba(30, 78, 78, 0) 34.81%,
    #1f2431 89.45%
  );
  transition: background-image 0.3s ease;
}

.bg-green {
  background: var(--color-green) !important;
  border-color: var(--color-green) !important;
}
.bg-blue {
  background: var(--color-black);
  border: 2px solid #22293a;
}
.bg-lightblue {
  background: var(--color-blue);
}

.m-0 {
  margin: 0 !important;
}
.ml-a {
  margin-left: auto !important;
}
.ml-0 {
  margin-left: 0 !important;
}
.ml-1 {
  margin-left: 5px !important;
}
.ml-2 {
  margin-left: 12px !important;
}
.ml-3 {
  margin-left: 20px !important;
}
.ml-4 {
  margin-left: 28px !important;
}
.ml-5 {
  margin-left: 40px !important;
}
.mr-a {
  margin-right: auto !important;
}
.mr-0 {
  margin-right: 0 !important;
}
.mr-1 {
  margin-right: 5px !important;
}
.mr-2 {
  margin-right: 12px !important;
}
.mr-3 {
  margin-right: 20px !important;
}
.mr-4 {
  margin-right: 28px !important;
}
.mr-5 {
  margin-right: 40px !important;
}
.mt-a {
  margin-top: auto !important;
}
.mt-0 {
  margin-top: 0 !important;
}
.mt-1 {
  margin-top: 5px !important;
}
.mt-2 {
  margin-top: 12px !important;
}
.mt-2-5 {
  margin-top: 16px !important;
}
.mt-3 {
  margin-top: 20px !important;
}
.mt-4 {
  margin-top: 28px !important;
}
.mt-5 {
  margin-top: 40px !important;
}
.mt-6 {
  margin-top: 50px !important;
}
.mb-a {
  margin-bottom: auto !important;
}
.mb-0 {
  margin-bottom: 0 !important;
}
.mb-1 {
  margin-bottom: 5px !important;
}
.mb-2 {
  margin-bottom: 12px !important;
}
.mb-3 {
  margin-bottom: 20px !important;
}
.mb-4 {
  margin-bottom: 28px !important;
}
.mb-5 {
  margin-bottom: 40px !important;
}
.mb-6 {
  margin-bottom: 60px !important;
}
.m-3 {
  margin: 20px !important;
}

.p-3 {
  padding: 20px !important;
}
.p-2 {
  padding: 12px !important;
}
.p-4 {
  padding: 28px !important;
}
.p-5 {
  padding: 40px !important;
}
.p-6 {
  padding: 50px !important;
}
.p-0 {
  padding: 0 !important;
}
.pl-a {
  padding-left: auto !important;
}
.pl-0 {
  padding-left: 0 !important;
}
.pl-1 {
  padding-left: 5px !important;
}
.pl-2 {
  padding-left: 12px !important;
}
.pl-3 {
  padding-left: 20px !important;
}
.pl-4 {
  padding-left: 28px !important;
}
.pl-5 {
  padding-left: 40px !important;
}
.pr-a {
  padding-right: auto !important;
}
.pr-0 {
  padding-right: 0 !important;
}
.pr-1 {
  padding-right: 5px !important;
}
.pr-2 {
  padding-right: 12px !important;
}
.pr-3 {
  padding-right: 20px !important;
}
.pr-4 {
  padding-right: 28px !important;
}
.pr-5 {
  padding-right: 40px !important;
}
.pt-a {
  padding-top: auto !important;
}
.pt-0 {
  padding-top: 0 !important;
}
.pt-1 {
  padding-top: 5px !important;
}
.pt-2 {
  padding-top: 12px !important;
}
.pt-3 {
  padding-top: 20px !important;
}
.pt-4 {
  padding-top: 28px !important;
}
.pt-5 {
  padding-top: 40px !important;
}
.pt-6 {
  padding-top: 60px !important;
}
.pb-a {
  padding-bottom: auto !important;
}
.pb-0 {
  padding-bottom: 0 !important;
}
.pb-1 {
  padding-bottom: 5px !important;
}
.pb-2 {
  padding-bottom: 12px !important;
}
.pb-3 {
  padding-bottom: 20px !important;
}
.pb-4 {
  padding-bottom: 28px !important;
}
.pb-5 {
  padding-bottom: 40px !important;
}
.pr-6 {
  padding-right: 50px !important;
}

.pr-7 {
  padding-right: 70px !important;
}
.pb-6 {
  padding-bottom: 60px !important;
}
.top-1 {
  top: 4px;
}
.top-0 {
  top: 0 !important;
}
.top--1 {
  top: -4px;
}
.btm--0 {
  bottom: 0 !important;
}

input:not([type='checkbox']):not([type='radio']),
textarea,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
* {
  box-sizing: border-box;
}
textarea {
  resize: none;
}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: var(--color-text-darker);
  font-size: 1em;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
  color: var(--color-text-darker);
  font-size: 1em;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: var(--color-text-darker);
  font-size: 1em;
}
input {
  outline: none;
}
input:-webkit-autofill {
  -webkit-box-shadow: inset 0 0 0 70px #38424f !important; /* Цвет фона */
  -webkit-text-fill-color: var(
    --color-text-darker
  ) !important; /* цвет текста */
  color: var(--color-text-darker) !important; /* цвет текста */
}
button {
  outline: none !important;
  background: none;
  padding: 0;
  font-size: 0;
  cursor: pointer;
}
body,
html {
  font-size: 16px;
  min-width: 320px;
  font-family: Ubuntu, arial;
  color: var(--color-text-darker);
  position: relative;
  word-wrap: break-word;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  max-width: 100vw;
}
.inner-page {
  overflow-x: hidden;
  overflow-y: auto;
}
.podcast-page {
  overflow: initial;
}
.tittle-search-info-invisible {
  display: none;
}
.main {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  position: relative;
  padding-top: 144px;
  justify-content: start;
  overflow: hidden;
}
.podcast-page .main {
  overflow: initial;
}
.container {
  margin-left: auto;
  margin-right: auto;
  max-width: 1280px;
  width: 100%;
}
.btn {
  -webkit-appearance: none;
  padding: 0;
  transition: color 0.3s ease, background 0.3s ease, background-color 0.3s ease,
    border-color 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  padding-left: 46px;
  padding-right: 46px;
  border-radius: var(--border-radius-sm);
  font-size: 20px;
  font-weight: 500;
  color: var(--color-black) !important;
  text-decoration: none !important;
  position: relative;
  overflow: hidden;
  font-family: Ubuntu, arial;
  cursor: pointer;
  text-decoration: none !important;
}

.btn:after {
  content: '';
  border-radius: var(--border-radius-sm);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0;
  border: 2px solid var(--color-green);
  background: rgba(137, 225, 89, 0.1);
  transition: opacity 0.3s ease-out;
}
.btn:hover:after {
  opacity: 1;
}
.btn:hover {
  background: transparent;
  color: Var(--color-text) !important;
}
.btn span {
  font-weight: 500;
  font-size: 20px;
  display: block;
  position: relative;
  z-index: 1;
  text-decoration: none !important;
}
.btn--small {
  height: 40px;
  font-size: 16px;
  padding: 0 20px;
}
.btn--small span {
  font-size: 16px;
}
.btn--middle {
  height: 56px;
  padding-left: 28px;
  padding-right: 28px;
  font-size: 20px;
}
.btn--middle span {
  font-size: 20px;
}
.btn--green {
  background: var(--color-green);
}

.btn:active:after {
  background: var(--gradient-lightgreen);
  opacity: 1;
  border-color: transparent;
}
.btn:focus,
.btn:active {
  outline: none !important;
  box-shadow: none !important;
  color: var(--color-black) !important;
}
.btn.disabled {
  background: var(--color-text-darker);
  cursor: not-allowed !important;
  pointer-events: none;
  color: var(--color-text-darkest);
  opacity: 1;
}
.btn img,
.btn svg {
  z-index: 1;
}
.btn--green:hover svg path {
  fill: var(--color-text);
}
.btn.disabled span {
  color: var(--color-text-darkest);
}

.btn--white--empty {
  color: var(--color-text) !important;
  border: 1px solid var(--color-text);
  background: none;
  text-decoration: none !important;
}
.btn--white--empty:hover {
  background: var(--color-green);
  border-color: var(--color-green);
}

.btn--green--empty .btn {
  color: var(--color-green);
  background: none;
}
.btn--green--empty,
.btn--green--empty:focus {
  border: 2px solid var(--color-green);
  background: transparent;
  color: Var(--color-green) !important;
}
.btn--green--empty:hover,
.btn--green--empty:active {
  background: var(--color-green);
  color: var(--color-black) !important;
}
.btn--green--empty:active:after,
.btn--green--empty:focus:after {
  background: none;
}
.btn--green--empty2,
.btn--green--empty2:focus {
  border: 2px solid var(--color-green);
  background: transparent;
  color: Var(--color-text) !important;
}
.btn--green--empty2:hover,
.btn--green--empty2:active {
  background: var(--color-green);
  color: var(--color-black) !important;
}
.btn--green--empty2:active:after,
.btn--green--empty2:focus:after {
  background: none;
}
.btn--green--empty__wrap {
  position: relative;
  display: inline-block;
  text-decoration: none !important;
}
.btn--green--empty__wrap > svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin-left: 0 !important;
}
.btn--green--empty__wrap .btn svg path {
  transition: fill 0.3s ease;
}
.btn--green--empty__wrap:hover .btn svg path {
  fill: #d3f4c1;
}
.btn--green--empty__wrap:active .btn svg path {
  fill: #b5ec97;
}
.btn--green--empty__wrap .btn:after {
  display: none;
}
.btn--green--empty__wrap .btn:hover {
  background: none;
}
.btn--green--empty__wrap .btn:hover span {
  color: #d3f4c1;
}
.btn--green--empty__wrap .btn span {
  color: var(--color-green);
}
.btn--green--empty__wrap > svg rect {
  transition: stroke 0.3s ease;
}
.btn--green--empty__wrap:hover > svg rect {
  stroke: #d3f4c1;
}
.btn--green--empty__wrap:active .btn span {
  color: #b5ec97;
}
.btn--green--empty__wrap:active > svg rect {
  stroke: #b5ec97;
}
.btn--black--empty svg rect {
  stroke: var(--color-black);
}
.btn--black--empty .btn span {
  color: var(--color-black);
}
.btn--black--empty .btn svg {
  filter: brightness(0);
}
.btn--black--empty:hover svg rect {
  stroke: var(--color-text);
}
.btn--black--empty:hover .btn span {
  color: var(--color-text);
}
.btn--black--empty:hover .btn svg {
  filter: none;
}
.btn--black--empty:hover .btn svg path {
  fill: var(--color-text) !important;
}
.btn--green2,
.btn--green2:hover,
.btn--green2:active,
.btn--green2:focus {
  background: var(--color-green2);
  color: #fff !important;
}
.btn--green2:after {
  display: none;
}

#canvas {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

section,
footer,
header {
  position: relative;
}
p {
  line-height: 1.5;
  font-size: 16px;
  margin-bottom: 15px;
}
.text-underline {
  text-decoration: underline;
}
.border-none {
  border: none !important;
}
.fz-44 {
  font-size: 44px;
}
.opacity-7 {
  opacity: 0.7 !important;
}
.opacity-5 {
  opacity: 0.5 !important;
}
.opacity-3 {
  opacity: 0.3 !important;
}
.opacity-1 {
  opacity: 1 !important;
}
.z-index-1 {
  z-index: 1;
}
.z-index-2 {
  z-index: 2;
}
.z-index-10000 {
  z-index: 10000;
}
li {
  list-style: none;
}
.list-circle li {
  line-height: 1.5;
  margin-bottom: 20px;
  position: relative;
  padding-left: 25px;
  font-size: 16px;
}
.texting .list-circle li {
  font-size: 20px;
}
.list-circle {
  padding-left: 15px;
  margin-top: 20px;
  margin-bottom: 10px;
}
.list-circle li:before {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-green);
  position: absolute;
  content: '';
  top: 50%;
  margin-top: -5px;
  left: 0;
}
.list-circle--mod li:before {
  background-color: var(--color-text-darker);
}
.list1 li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 20px;
  color: var(--color-black);
}
.list-circle--compact li:before {
  top: 12px;
  left: 0;
}

.list-circle--compact li {
  margin-bottom: 10px;
  padding-left: 30px;
}

.list-circle--compact {
  padding-left: 0;
}
.list1 li:before {
  content: '';
  background-image: url(/img/krest.svg);
  width: 18px;
  height: 18px;
  background-repeat: no-repeat;
  position: absolute;
  top: 6px;
  left: 0;
}

.list1 li:last-child {
  margin-bottom: 0;
}
.list-circle--glowing li:before {
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25), 0px 0px 26.1818px #89e159;
  top: 7px;
  margin-top: 0;
}
.list-circle--glowing--mod li:before {
  width: 8px;
  height: 8px;
}

.list-circle--glowing--mod li {
  margin-bottom: 10px;
  padding-left: 20px;
}
a {
  text-decoration: none;
  transition: all 0.3s ease;
}
a:hover {
  text-decoration: none;
}
.fw-400 {
  font-weight: 400 !important;
}
.fw-500 {
  font-weight: 500 !important;
}
.pr {
  position: relative;
}
.ps {
  position: static !important;
}
.posa {
  position: absolute !important;
}
.bg-none {
  background: none !important;
}
.bordered {
  border: 1px solid var(--color-green) !important;
}
a.bordered:hover {
  border-color: var(--color-text) !important;
}
.section-wrap {
  margin-bottom: 80px;
}
.section-wrapless {
  margin-bottom: 60px;
}
.overlay {
  transition: opacity 0.5s ease;
}
.iziModal-overlay {
  backdrop-filter: blur(14px);
}
.box-shadow-none {
  box-shadow: none !important;
}
.responsive {
  max-width: 100%;
  max-height: 100%;
  line-height: 1;
}
.ovh {
  overflow: hidden !important;
}
.ovv {
  overflow: visible !important;
}
.gs_reveal {
  will-change: transform, opacity;
  visibility: visible !important;
  opacity: 1 !important;
}
.animated {
  -webkit-animation-duration: 0.7s;
  animation-duration: 0.7s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
[data-target] {
  scroll-margin-top: 128px;
}
@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }

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

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }

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

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }

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

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }

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

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }

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

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }

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

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }

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

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }

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

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}
.d-none {
  display: none !important;
}
.text-right {
  text-align: right !important;
}

.visible {
  opacity: 1 !important;
}

body.frize {
  overflow: hidden !important;
}
.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -4px;
  margin-right: -4px;
  width: calc(100% + 8px);
  gap: 8px 0;
}
.row-big {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
  width: calc(100% + 30px);
  gap: 12px 0;
}
.row-big > * {
  padding-left: 15px;
  padding-right: 15px;
}
.row > * {
  padding-left: 4px;
  padding-right: 4px;
}
.row-gap {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 8px;
}
.row-gapper {
  gap: 0 30px;
  display: flex;
  flex-wrap: wrap;
}
.flex-column {
  flex-direction: column;
}
.d-flex-column {
  display: flex !important;
  flex-direction: column;
}
.d-inline-flex {
  display: inline-flex !important;
}
.d-flex {
  display: flex !important;
}
.d-block {
  display: block !important;
}
.d-inline {
  display: inline !important;
}
.justify-content-between {
  justify-content: space-between !important;
}
.justify-content-start {
  justify-content: flex-start !important;
}
.justify-content-end {
  justify-content: flex-end !important;
}
.justify-content-center {
  justify-content: center !important;
}
.align-items-end {
  align-items: flex-end !important;
}
.align-items-center {
  align-items: center !important;
}
.flex-nowrap {
  flex-wrap: nowrap !important;
}
.align-items-start {
  align-items: start !important;
}
.row-reverse {
  flex-direction: row-reverse;
}
.flex-grow-1 {
  flex-grow: 1 !important;
}

.minh-auto {
  min-height: auto !important;
}
.minh-280 {
  min-height: 280px !important;
}
.minh-none {
  min-height: auto !important;
}
.h-80 {
  height: 80px;
}
.h-100 {
  height: 100% !important;
}
.ha {
  height: auto;
  min-height: none;
}
.maxh-100 {
  max-height: 100% !important;
}
.minh-200p {
  min-height: 200px;
}
.maxh-90 {
  max-height: 90% !important;
}
.maxh-70 {
  max-height: 70% !important;
}
.maxh-80 {
  max-height: 80% !important;
}
.w-100 {
  width: 100% !important;
}
.w-auto {
  width: auto !important;
}
.maxw-110 {
  max-width: 110%;
}
.maxw-45 {
  max-width: 45%;
}
.maxw-50 {
  max-width: 50%;
}
.maxw-60 {
  max-width: 60%;
}
.maxw-70 {
  max-width: 70%;
}
.maxw-content {
  max-width: max-content;
}
.container {
  width: 100%;
  max-width: 1280px;
}
.texting p {
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 30px;
}
.text--small {
  font-size: 16px !important;
}
.text--smaller {
  font-size: 14px !important;
}
.text--smallest {
  font-size: 12px !important;
}
.text--small * {
  font-size: 16px !important;
}
.text--middle {
  font-size: 20px !important;
}
.text--big {
  font-size: 22px !important;
}
.text--bigger {
  font-size: 24px !important;
  line-height: 1.3;
}
.text--biggest {
  font-size: 30px;
  line-height: 1.3;
}
.text-quote {
  padding-left: 16px;
  font-size: 16px;
  border-left: 2px solid var(--color-green);
  color: var(--color-text-darker);
  line-height: 1.5;
}
body .texting a {
  color: var(--color-green);
  display: inline-flex;
  align-items: center;
  align-items: center;
  font-weight: 500;
}
.texting a svg path {
  transition: path 0.3s ease;
}
.texting a:not(.btn):hover svg path {
  fill: var(--color-green);
}
.texting a svg {
  margin-left: 13px;
  position: relative;
  transition: transform 0.3s ease;
}
.texting a:hover svg {
  transform: rotate(45deg);
}
body .texting a:hover {
  color: var(--color-text);
}
body .texting a:active {
  color: var(--color-text-darkest);
}
a.disabled {
  opacity: 0.5;
  cursor: not-allowed !important;
  pointer-events: none;
}
.text-center {
  text-align: center;
}
.text-left {
  text-align: left !important;
}
.c-white * {
  color: var(--color-text-darker) !important;
}
.list1.c-white li:before {
  background-image: url(/img/krest2.svg);
}
.bgi-none {
  background-image: none !important;
}

.page-404-wrap .main {
  margin-top: 0;
}
.page-crossword .main {
  min-height: auto;
}
.products .container {
  position: relative;
}

.heading-wrap {
  position: relative;
}
.heading-letters {
  position: absolute;
  -webkit-text-stroke: 0.3px var(--color-text);
  -webkit-text-fill-color: transparent;
  left: -80px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 150px;
  text-transform: uppercase;
  font-weight: bold;
  opacity: 0.1;
  white-space: nowrap;
}

.heading-letters--mod {
  font-size: 120px;
  line-height: 1;
}
.heading {
  color: var(--color-text);
  font-size: 70px;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 35px;
  max-width: 58%;
  position: relative;
}
.products {
  padding-top: 100px;
  padding-right: 0;
  width: 100%;
  position: relative;
}
h1,
h2,
h3,
h4,
h5 {
  transition: color 0.3s ease;
}
h1 span,
h2 span,
h3 span,
h4 span,
h5 span {
  font-weight: 500;
}
.main__h-wrapper {
  width: 100%;
}
.intech-quote {
  font-size: 24px;
  line-height: 1.4;
  border-left: 5px solid var(--color-green);
  padding: 10px 0;
  margin: 65px 0;
  padding-left: 30px;
}

.intech-quote p {
  margin-bottom: 13px;
  font-size: inherit;
}
.content-hidden {
  opacity: 0;
  position: relative;
  top: -20px;
  transition: opacity 0.3s ease, top 0.3s ease;
}
.parent-of-hidden:hover .content-hidden {
  opacity: 1;
  top: 0;
}
.filter-lighten {
  mix-blend-mode: lighten;
}
.image-cover {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.line-clamp-2 {
  display: -webkit-box !important;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.line-clamp-3 {
  display: -webkit-box !important;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.line-clamp-4 {
  display: -webkit-box !important;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.line-clamp-1 {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.icon {
  display: flex;
  align-items: center;
  gap: 0 14px;
  flex-wrap: nowrap;
  background-repeat: no-repeat;
}
.icon:after {
  content: '';
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  transition: all 0.3s ease;
}
.icon--title {
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}
.icon--arrow-corner:hover {
  cursor: pointer;
}
.icon--arrow-corner:after {
  background-image: url(/img/btn-arrow.svg);
  width: 12px;
  height: 12px;
  min-width: 12px;
  position: relative;
  transition: transform 0.3s ease;
}
.icon--title.icon--arrow-corner:after {
  top: 0.4em;
}
.icon--arrow-corner:hover:after,
.icon--arrow-corner-start:hover:after {
  transform: rotate(45deg);
}
.icon--arrow-corner-start:before {
  content: '';
  background-image: url(/img/btn-arrow.svg);
  width: 12px;
  height: 12px;
  min-width: 12px;
  position: relative;
  margin-right: 5px;
  transition: transform 0.3s ease;
}
.icon--arrow-corner-start:before {
  content: '';
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  transition: all 0.3s ease;
}
.icon--arrow-corner-start:after {
  display: none;
}

.icon--arrow-corner-start {
  color: var(--color-text);
}

.icon--arrow-corner-start:hover {
  color: var(--color-green);
}
.icon--arrow-right:after {
  background-image: url(/img/arr11_green.svg);
  width: 12px;
  height: 21px;
  min-width: 12px;
  position: relative;
}
.icon--title.icon--arrow-right:after {
  top: 1px;
}
.icon--title.icon--arrow-right-btm {
  align-items: flex-end;
}
.icon--feedback:after {
  width: 24px;
  height: 18px;
  background-image: url(/img/icon-feedback.svg);
}
.icon--vc:after {
  width: 21px;
  height: 19px;
  background-image: url(/img/icon-vc.svg);
}
.icon--rutube:after {
  width: 60px;
  height: 15px;
  background-image: url(/img/icon-rutube.svg);
}
.icon--dzen:after {
  width: 20px;
  height: 20px;
  background-image: url(/img/icon-dzen.svg);
}
.icon--tg:after {
  width: 20px;
  height: 16px;
  background-image: url(/img/tg-icon.svg);
}
.icon--vk:after {
  width: 25px;
  height: 20px;
  background-image: url(/img/vk-icon.svg);
}
.icon--dtf:after {
  width: 42px;
  height: 33px;
  background-image: url(/img/dtf-icon.svg);
}
.icon--podcast:after {
  width: 24px;
  height: 26px;
  background-image: url(/img/icon-podcast.svg);
}
.icon--habr:after {
  width: 45px;
  height: 15px;
  background-image: url(/img/icon-habr.svg);
}
.icon--vc-green,
.icon--vk-green,
.icon--dzen-green,
.icon--rutube-green,
.icon--tg-green,
.icon--habr-green {
  opacity: 1;
}
.icon--vc-green:after {
  width: 21px;
  height: 19px;
  background-image: url(/img/icon-vc-green.svg);
}
.icon--rutube-green:after {
  width: 67px;
  height: 17px;
  background-image: url(/img/icon-rutube-green.svg);
}
.icon--dzen-green:after {
  width: 20px;
  height: 20px;
  background-image: url(/img/icon-dzen-green.svg);
}
.icon--tg-green:after {
  width: 20px;
  height: 16px;
  background-image: url(/img/icon-tg-green.svg);
}
.icon--vk-green:after {
  width: 20px;
  height: 18px;
  background-image: url(/img/icon-vk-green.svg);
}
.icon--habr-green:after {
  width: 45px;
  height: 15px;
  background-image: url(/img/icon-habr-green.svg);
}
.icon--habr-green:hover:after {
  background-image: url(/img/icon-habr.svg);
}
.icon--rutube-green:hover:after {
  background-image: url(/img/icon-rutube.svg);
}
.icon--dzen-green:hover:after {
  background-image: url(/img/icon-dzen.svg);
}
.icon--tg-green:hover:after {
  background-image: url(/img/tg-icon.svg);
}
.icon--vk-green:hover:after {
  background-image: url(/img/vk-icon.svg);
}
.icon--vc-green:hover:after {
  background-image: url(/img/icon-vc.svg);
}

.sticky-page {
  overflow: initial;
}
.sticky-page .main {
  overflow: initial;
}
.cursor-default {
  cursor: default !important;
}
.cursor-pointer {
  cursor: pointer !important;
}

/* СЕТКА */
.col1 {
  width: calc(100% / 12);
  min-width: calc(100% / 12);
}
.col2 {
  width: calc(2 / 12 * 100%);
  min-width: calc(2 / 12 * 100%);
}
.col20 {
  width: 20%;
  min-width: 20%;
}
.col3 {
  width: 25%;
  min-width: 25%;
}
.col3_5 {
  width: 28%;
  min-width: 28%;
}
.col3_9 {
  width: 32%;
  min-width: 32%;
}
.col4 {
  width: 33.33%;
  min-width: 33.33%;
}
.col5 {
  width: 41.6667%;
  min-width: 41.6667%;
}
.col5_5 {
  width: 44%;
  min-width: 44%;
}
.col6 {
  width: 50%;
  min-width: 50%;
}
.row-gap .col6 {
  width: calc(50% - 4px);
  min-width: calc(50% - 4px);
}
.col7 {
  width: 58.333333%;
  min-width: 58.333333%;
}
.col8 {
  width: 66.66%;
  min-width: 66.66%;
}
.col8_5 {
  width: 72%;
  min-width: 72%;
}
.col9 {
  width: 75%;
  min-width: 75%;
}
.col10 {
  width: 83.333333%;
  min-width: 83.333333%;
}
.col12 {
  width: 100%;
}
.col-sm-1,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-md-1,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-11,
.col-md-12,
.col-lg-1,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-xl-1,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12 {
  width: 100%;
}
@media (min-width: 350px) {
  .col-xs-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.3333333333%;
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .col-xs-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.6666666667%;
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-xs-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-xs-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.3333333333%;
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .col-xs-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.6666666667%;
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

  .col-xs-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-gap .col-xs-6 {
    width: calc(50% - 4px);
    min-width: calc(50% - 4px);
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(50% - 4px);
    flex: 0 0 calc(50% - 4px);
  }

  .col-xs-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.3333333333%;
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .col-xs-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.6666666667%;
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .col-xs-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-xs-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.3333333333%;
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .col-xs-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.6666666667%;
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

  .col-xs-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (min-width: 575px) {
  .col-sm-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.3333333333%;
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .col-sm-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.6666666667%;
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-sm-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-sm-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.3333333333%;
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .col-sm-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.6666666667%;
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

  .col-sm-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-gap .col-sm-6 {
    width: calc(50% - 4px);
    min-width: calc(50% - 4px);
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(50% - 4px);
    flex: 0 0 calc(50% - 4px);
  }

  .col-sm-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.3333333333%;
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .col-sm-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.6666666667%;
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .col-sm-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-sm-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.3333333333%;
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .col-sm-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.6666666667%;
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

  .col-sm-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (min-width: 767px) {
  .col-md-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.3333333333%;
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .col-md-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.6666666667%;
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-md-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-md-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.3333333333%;
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .col-md-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.6666666667%;
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

  .col-md-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .row-gap .col-md-6 {
    width: calc(50% - 4px);
    min-width: calc(50% - 4px);
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(50% - 4px);
    flex: 0 0 calc(50% - 4px);
  }

  .col-md-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.3333333333%;
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .col-md-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.6666666667%;
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .col-md-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-md-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.3333333333%;
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .col-md-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.6666666667%;
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

  .col-md-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (min-width: 991px) {
  .col-lg-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.3333333333%;
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .col-lg-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.6666666667%;
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-lg-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-lg-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.3333333333%;
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .col-lg-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.6666666667%;
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

  .col-lg-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-gap .col-lg-6 {
    width: calc(50% - 4px);
    min-width: calc(50% - 4px);
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(50% - 4px);
    flex: 0 0 calc(50% - 4px);
  }

  .col-lg-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.3333333333%;
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .col-lg-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.6666666667%;
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .col-lg-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-lg-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.3333333333%;
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .col-lg-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.6666666667%;
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

  .col-lg-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (min-width: 1199px) {
  .col-xl-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.3333333333%;
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .col-xl-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.6666666667%;
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-xl-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-xl-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.3333333333%;
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .col-xl-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.6666666667%;
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

  .col-xl-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-gap .col-xl-6 {
    width: calc(50% - 4px);
    min-width: calc(50% - 4px);
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(50% - 4px);
    flex: 0 0 calc(50% - 4px);
  }

  .col-xl-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.3333333333%;
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .col-xl-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.6666666667%;
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .col-xl-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-xl-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.3333333333%;
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .col-xl-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.6666666667%;
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

  .col-xl-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.details summary {
  color: var(--color-text-darkest);
  font-size: 36px;
  font-weight: 500;
  line-height: 1.1;
  padding: 30px 0;
  cursor: pointer;
  padding-right: 35px;
}
.details {
  border-bottom: 1px solid var(--color-text);
  position: relative;
}
.details:before {
  content: '';
  background-image: url(/img/banner-arr.svg);
  width: 21px;
  height: 12px;
  position: absolute;
  top: 46px;
  right: 0;
  cursor: pointer;
}
.details > summary {
  list-style: none;
}
.details > summary::-webkit-details-marker {
  display: none;
}
.details[open] summary {
  color: var(--color-text);
}
.details[open]:before {
  background-image: url(/img/banner-arr2.svg);
  transform: rotate(180deg);
}
.details__hidden {
  padding-bottom: 25px;
}

@media only screen and (max-width: 1500px) {
  .heading {
    font-size: 70px;
    margin-bottom: 40px;
  }
  .main .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media only screen and (max-width: 1400px) {
  .intech-quote {
    font-size: 20px;
  }
  .heading-letters {
    font-size: 110px;
  }
  .list-circle li {
    font-size: 16px;
  }

  .list-circle li:before {
    top: 8px;
  }
  .list-circle--compact li:before {
    top: 12px;
  }
  .texting p br {
    display: none;
  }
  .heading {
    font-size: 52px;
    margin-bottom: 30px;
  }

  .heading__subtitle {
    font-size: 38px;
  }

  .texting p,
  .list-circle li {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1300px) {
  .main {
    padding-top: 130px;
  }
  .card.p-4,
  .card.p-3 {
    padding: 15px !important;
  }
  .minh-280 {
    min-height: 220px !important;
  }
}
@media only screen and (max-width: 1199px) {
  .d-lg-100 {
    width: 100%;
  }
  .row-reverse-xl-none {
    flex-direction: row;
  }
  .main .container {
    padding-left: 30px;
    padding-right: 30px;
  }
  .d-xl-none {
    display: none !important;
  }
  .details summary {
    font-size: 26px;
  }
  .details:before {
    top: 38px;
  }
}
@media only screen and (max-width: 1100px) {
  .section-wrap {
    margin-bottom: 70px;
  }
  .intech-quote {
    max-width: 100%;
    font-size: 22px;
  }
}
@media only screen and (max-width: 991px) {
  .details summary {
    font-size: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .details:before {
    top: 24px;
  }
  .order-1-lg {
    order: 1;
  }
  .order-2-lg {
    order: 2;
  }
  .order-3-lg {
    order: 3;
  }
  .d-lg-100 {
    width: 100%;
  }
  .row-reverse-lg-none {
    flex-direction: row;
  }
  .d-lg-none {
    display: none !important;
  }
  .bgi-lg-none {
    background-image: none !important;
  }
  .col5_5,
  .col3_5 {
    width: calc(50% - 4px);
    min-width: calc(50% - 4px);
  }
  .heading-letters {
    font-size: 14vw;
    left: -40px;
  }
  .main .container {
    padding-left: 40px;
    padding-right: 40px;
  }

  .main {
    height: auto;
    padding-top: 100px;
  }
}
@media only screen and (max-width: 767px) {
  .md-icon-none:after {
    display: none;
  }
  .d-md-100 {
    width: 100%;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-flex {
    display: flex !important;
  }
  .row-reverse-md-none {
    flex-direction: row;
  }
  .inner-page .col4,
  .inner-page .col5,
  .inner-page .col6,
  .inner-page .col7,
  .inner-page .col8,
  .inner-page .col9 {
    width: 100%;
  }
  .d-md-none {
    display: none !important;
  }
  .texting p {
    margin-bottom: 15px;
  }
  .heading-letters {
    font-size: 18vw;
  }
  .text--middle,
  .text--middle * {
    font-size: 16px !important;
  }
  .text--big {
    font-size: 18px !important;
  }
  .texting .col4 {
    width: calc(100% - 4px);
  }
  .heading {
    max-width: 100%;
  }

  .heading-letters {
    left: -20px;
  }
  .texting p br {
    display: none;
  }
  .main .container {
    padding-left: 15px;
    padding-right: 15px;
  }
  .intech-quote {
    padding: 0;
    font-size: 16px;
    padding-left: 15px;
    border-left-width: 2px;
    margin-top: 20px;
    margin-bottom: 0;
  }
  .heading {
    font-size: 52px;
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 575px) {
  .details summary {
    font-size: 16px;
  }
  .text-quote {
    font-size: 14px;
  }
  .icon--arrow-right:after {
    width: 8px;
    min-width: 8px;
    height: 15px;
    background-size: contain;
    background-repeat: no-repeat;
  }
  .btn {
    padding: 0 20px;
  }
  .btn span {
    font-size: 16px;
  }
  .d-sm-100 {
    width: 100% !important;
  }
  .row-reverse-sm-none {
    flex-direction: row;
  }
  .d-sm-none {
    display: none !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .section-wrapless {
    margin-bottom: 24px;
  }
  .main {
    padding-top: 80px;
  }
  .mt-5 {
    margin-top: 30px !important;
  }
  .mb-3 {
    margin-bottom: 15px !important;
  }
  .col5_5,
  .col3_5 {
    width: calc(100% - 4px);
    min-width: calc(100% - 4px);
  }
  .pt-5 {
    padding-top: 20px !important;
  }
  .section-wrap {
    margin-bottom: 50px;
  }
  .col5 {
    width: calc(100% - 4px);
  }
  p.biggest {
    font-size: 20px;
  }

  .list-circle li:before {
    width: 6px;
    height: 6px;
  }
  .text--small,
  .text--smaller,
  .text--small *,
  .text--middle,
  .texting p,
  p,
  .list-circle li {
    font-size: 14px !important;
  }
  .list-circle li {
    padding-left: 15px;
  }
  .text--smallest {
    font-size: 12px !important;
  }
  .text--bigger,
  .text--biggest {
    font-size: 18px !important;
  }
  .minh-280 {
    min-height: 150px !important;
  }
  .list-circle--glowing--mod li:before {
    top: 8px;
  }
}
@media only screen and (max-width: 500px) {
  .btn {
    width: 100%;
  }
  .btn--green--empty__wrap {
    width: 100%;
  }

  .heading {
    font-size: 34px;
    margin-bottom: 20px;
  }

  .heading__subtitle {
    font-size: 24px;
  }
}
@media only screen and (max-width: 400px) {
  .border-radius-lg {
    border-radius: var(--border-radius-sm);
  }
}
@media only screen and (max-width: 350px) {
  .minh-280 {
    min-height: 100px !important;
  }
  .d-xs-100 {
    width: 100%;
  }
  .d-xs-none {
    display: none !important;
  }
  .btn {
    font-size: 16px;
  }
  .btn span {
    font-size: 16px;
  }
  .card.p-4,
  .card.p-3 {
    padding: 10px !important;
  }
}
@media only screen and (min-width: 1199px) {
  ::-webkit-scrollbar {
    width: 7px;
    height: 10px;
  }

  ::-webkit-scrollbar-button {
    background-color: var(--color-black);
  }

  ::-webkit-scrollbar-track {
    background-color: var(--color-black);
  }

  ::-webkit-scrollbar-track-piece {
    background-color: var(--color-black);
  }

  ::-webkit-scrollbar-thumb {
    height: 50px;
    background-color: var(--color-text-darkest);
  }

  ::-webkit-scrollbar-corner {
    background-color: var(--color-black);
  }

  ::-webkit-resizer {
    background-color: #666;
  }
}
