@charset "UTF-8";
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local("Montserrat Regular"),
    url(../fonts/Montserrat-Regular400.woff2) format("woff2"),
    url(../fonts/Montserrat-Regular400.woff) format("woff"),
    url(../fonts/Montserrat-Regular400.ttf) format("truetype");
}
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: local("Montserrat SemiBold"),
    url(../fonts/Montserrat-SemiBold600.woff2) format("woff2"),
    url(../fonts/Montserrat-SemiBold600.woff) format("woff"),
    url(../fonts/Montserrat-SemiBold600.ttf) format("truetype");
}
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: local("Montserrat Bold"),
    url(../fonts/Montserrat-Bold700.woff2) format("woff2"),
    url(../fonts/Montserrat-Bold700.woff) format("woff"),
    url(../fonts/Montserrat-Bold700.ttf) format("truetype");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: local("Poppins Medium"),
    url(../fonts/Poppins-Medium.woff2) format("woff2"),
    url(../fonts/Poppins-Medium.woff) format("woff"),
    url(../fonts/Poppins-Medium.ttf) format("truetype");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: local("Poppins Bold"), url(../fonts/Poppins-Bold.woff2) format("woff2"),
    url(../fonts/Poppins-Bold.woff) format("woff"),
    url(../fonts/Poppins-Bold.ttf) format("truetype");
}
@font-face {
  font-family: "Epilogue";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: local("Epilogue Medium"),
    url(../fonts/Epilogue-Medium.woff2) format("woff2"),
    url(../fonts/Epilogue-Medium.woff) format("woff"),
    url(../fonts/Epilogue-Medium.ttf) format("truetype");
}
html {
  scroll-behavior: smooth;
}
blockquote,
h1,
h2,
h3,
p,
ul {
  margin: 0;
  padding: 0;
}
ul {
  list-style: none;
}
a {
  text-decoration: none;
}
a:hover {
  opacity: 0.8;
}
a:active {
  opacity: 0.6;
}
a,
button {
  cursor: pointer;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}
.btn {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: -moz-fit-content;
  max-height: fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  padding: 12px 34px;
  color: #fff;
  background-color: #4d6bfe;
  font-family: "Poppins", "Arial", sans-serif;
  font-weight: 500;
  font-size: 16px;
  border-radius: 50px;
  border: 0;
  animation: colorChange 3s infinite alternate ease-in-out;
}
.btn:hover {
  opacity: 0.8;
}
@keyframes colorChange {
  0% {
    background-color: #4d6bfe;
  }
  50% {
    background-color: #041d9b;
  }
  100% {
    background-color: 4d6bfe;
  }
}
.btn:active {
  opacity: 0.8;
}
.btn:disabled {
  cursor: not-allowed;
}
.btn:disabled,
.btn:disabled:hover {
  color: #fff;
  background: #ddd;
}
.container {
  box-sizing: border-box;
  margin: 0 auto;
  padding: 0 60px;
}
@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
}
.heading {
  font-size: 31px;
  font-weight: 400;
}
@media (max-width: 768px) {
  .heading {
    font-size: 25px;
  }
}
.heading-color {
  color: #3d3d3d;
  font-weight: 400;
}
.poppins-font {
  font-family: "Poppins", "Arial", sans-serif;
}
.epilogue-font {
  font-family: "Epilogue", "Arial", sans-serif;
}
.desktop-only {
  display: flex;
}
@media (max-width: 768px) {
  .desktop-only {
    display: none;
  }
}
.mobile-only {
  display: none;
}
@media (max-width: 768px) {
  .mobile-only {
    display: flex;
  }
}
.page-body {
  max-width: 1920px;
  margin: 0 auto;
  font-family: "Montserrat", "Arial", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #525252;
}
.page-header {
  z-index: 10;
  position: fixed;
  top: 0;
  box-sizing: border-box;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1920px;
  padding-top: 28px;
  padding-bottom: 0;
  background: #fff;
}
@media (max-width: 768px) {
  .page-header {
    padding-top: 21px;
    padding-bottom: 21px;
  }
  .page-header__img {
    position: relative;
    z-index: 2;
    width: 168px;
    height: auto;
  }
  .page-header__lang-wrapper {
    margin-top: auto;
  }
}
.page-footer {
  display: flex;
  flex-direction: column;
  gap: 50px;
  padding-top: 36px;
  padding-bottom: 36px;
  background-color: #f7f7fd;
}
@media (max-width: 768px) {
  .page-footer {
    gap: 36px;
  }
}
.page-footer__wrapper {
  display: flex;
  justify-content: space-between;
}
.page-footer__wrapper .main-nav__item {
  text-align: center;
  font-size: 16px;
}
.page-footer__wrapper .main-nav__item a {
  font-size: 16px;
}
@media (max-width: 768px) {
  .page-footer__wrapper {
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    justify-content: center;
  }
  .page-footer__wrapper .main-nav__list {
    gap: 16px;
    margin-top: 0;
  }
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  width: 40%;
  align-items: center;
  background: #f7f7fd;
  padding: 12px 65px;
  border-radius: 50px;
}
@media (max-width: 768px) {
  .main-nav {
    box-sizing: border-box;
    position: absolute;
    top: 0;
    right: 0;
    flex-direction: column;
    align-items: start;
    min-height: 100vh;
    width: 100%;
    padding: 35px 16px;
    background: #fff;
    border-radius: unset;
  }
  .main-nav--closed {
    background: 0 0;
    min-height: 0;
    height: 0;
  }
  .main-nav--closed * {
    display: none;
  }
}
.page-header__img {
  max-width: 100%;
  height: auto;
}
.form_message.error.inactive,
.main-nav--closed svg,
.main-nav--nojs .main-nav__toggle {
  display: none;
}
@media (max-width: 768px) {
  .main-nav--nojs .main-nav__list {
    display: block;
  }
}
.main-nav__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 10px;
}
@media (max-width: 768px) {
  .main-nav__list {
    flex-direction: column;
    gap: 40px;
    margin-top: 80px;
  }
}
.main-nav__item a {
  color: #525252;
  cursor: pointer;
}
.main-nav__item a:hover {
  color: #4d6bfe;
}
.main-nav--closed .main-nav__toggle:hover::before,
.main-nav__item a:active {
  opacity: 0.6;
}
@media (max-width: 768px) {
  .main-nav__item {
    width: 100%;
  }
  .main-nav__item a {
    font-size: 20px;
  }
}
.main-nav__toggle {
  position: absolute;
  top: 20px;
  right: 16px;
  display: none;
  z-index: 2;
  width: 45px;
  height: 45px;
  padding: 6px 14px;
  background-color: #f7f7fd;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}
@media (max-width: 768px) {
  .main-nav__toggle {
    display: block;
  }
}
.main-nav--closed .main-nav__toggle::before {
  content: "";
  position: absolute;
  top: 17px;
  right: 50%;
  transform: translateX(50%);
  width: 21px;
  height: 2px;
  background-color: #3d3d3d;
  box-shadow: 0 5px 0 0 #3d3d3d, 0 10px 0 0 #3d3d3d;
  transition: all ease-in-out 500ms;
}
.main-nav--closed .main-nav__toggle:active::before {
  opacity: 0.3;
}
.main-nav--opened .main-nav__toggle::after,
.main-nav--opened .main-nav__toggle::before {
  content: "";
  position: absolute;
  top: 21px;
  right: 12px;
  width: 21px;
  height: 2px;
  background-color: #3d3d3d;
  transition: all ease-in-out 500ms;
}
.main-nav--opened .main-nav__toggle::before {
  transform: rotate(45deg);
  box-shadow: none;
}
.main-nav--opened .main-nav__toggle::after {
  transform: rotate(-45deg);
}
.main-nav--opened .main-nav__toggle:hover::after,
.main-nav--opened .main-nav__toggle:hover::before {
  opacity: 0.6;
}
.main-nav--opened .main-nav__toggle:active::after,
.main-nav--opened .main-nav__toggle:active::before {
  opacity: 0.3;
}
.promo {
  display: flex;
  justify-content: center;
  padding: 200px 16px;
  background: #fff no-repeat 50% url(../images/promo-bcg.webp);
  background-size: cover;
}
.promo .btn {
  margin-top: 20px;
}
@media (max-width: 768px) {
  .promo {
    padding: 200px 16px 100px;
    background: #fff no-repeat 50% url(../images/promo-bcg-mob.webp);
    background-size: cover;
  }
}
.promo__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 1000px;
  text-align: center;
}
.promo__sub-heading {
  font-size: 16px;
  font-weight: 700;
  color: #4d6bfe;
}
.promo__heading {
  font-size: 39px;
}
@media (max-width: 768px) {
  .promo__heading {
    font-size: 31px;
  }
}
.promo__about {
  margin-top: -4px;
  font-size: 20px;
}
.revolution {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 48px;
  padding-top: 60px;
  padding-bottom: 60px;
}
@media (max-width: 768px) {
  .revolution {
    padding-top: 36px;
    padding-bottom: 36px;
    gap: 36px;
  }
}
.revolution__benefits {
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  width: 100%;
  padding: 30px 66px;
  border-radius: 35.386px;
  box-shadow: 0 5.662px 14.154px 0 rgba(0, 0, 0, 0.13);
}
@media (max-width: 768px) {
  .revolution__benefits {
    gap: 30px;
    padding: 16px;
  }
}
.revolution__item {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 486px;
}
.revolution__item svg {
  fill: none;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .revolution__item {
    width: 100%;
    max-width: unset;
  }
  .revolution__item svg {
    fill: #4d6bfe;
    margin-bottom: 15px;
  }
}
.about__text span,
.revolution__item-heading {
  font-size: 24px;
  font-weight: 700;
  color: #4d6bfe;
}
.about {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  padding-top: 60px;
  padding-bottom: 60px;
}
@media (max-width: 768px) {
  .about {
    padding-top: 36px;
    padding-bottom: 36px;
    gap: 36px;
  }
}
.about__text-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.about__text-wrapper > * {
  max-width: 50%;
}
@media (max-width: 768px) {
  .about__text-wrapper {
    flex-direction: column;
    align-items: start;
    gap: 16px;
  }
  .about__text-wrapper > * {
    max-width: unset;
  }
}
.about-logo-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}
@media (max-width: 768px) {
  .about-logo-wrapper svg {
    width: 80px;
    height: 80px;
  }
}
.about__text {
  font-size: 20px;
}
.about__text span {
  font-size: 25px;
}
.about__list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-around;
  width: 100%;
}
.about__item {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 540px;
  padding: 14px 18px;
  border-radius: 35px;
  box-shadow: 0 5.662px 14.154px 0 rgba(0, 0, 0, 0.13);
}
.about__item svg {
  fill: none;
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  .about__item {
    max-width: 307px;
  }
}
.about__item-heading {
  font-size: 25px;
}
@media (max-width: 768px) {
  .about__item-heading {
    font-size: 20px;
  }
  .ceo-calculator__bcg-wrapper {
    background: no-repeat 0 60% url(../images/calculator-bcg.webp);
  }
}
.ceo {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  justify-content: space-around;
  padding-top: 60px;
  padding-bottom: 60px;
}
@media (max-width: 768px) {
  .ceo {
    padding-top: 36px;
    padding-bottom: 36px;
    gap: 16px;
  }
  .ceo .btn {
    align-self: center;
  }
}
.ceo__text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 860px;
}
.ceo__text {
  font-size: 20px;
}
@media (max-width: 768px) {
  .ceo__text {
    font-size: 16px;
  }
}
.ceo__img {
  -o-object-fit: contain;
  object-fit: contain;
}
@media (max-width: 768px) {
  .ceo__img {
    width: 100%;
    height: auto;
  }
}
.form,
input {
  box-sizing: border-box;
  width: 100%;
}
.form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.form--bottom .btn {
  max-width: 242px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .form {
    width: 100%;
    margin-bottom: 30px;
  }
}
input {
  max-height: 45px;
  padding: 8px 12px;
  font-size: 16px;
  font-weight: 400;
  font-family: "Montserrat", "Arial", sans-serif;
  color: #000;
  border-radius: 1000px;
  border: 1px solid #e4e4e7;
}
input:hover {
  border: 1px solid #0f0f0f;
}
input:focus {
  outline: 0;
  border: 1px solid #000;
}
input:active {
  border: 1px solid #000;
}
.form_message.error.active {
  display: block;
  color: #0a0a0a;
}
.error {
  color: #df5e63;
  border-color: #df5e63 !important;
}
label.error {
  margin-right: auto;
  margin-top: -25px;
  text-align: right;
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
}
#phone1-error,
#phone2-error {
  display: flex;
  margin-top: 5px;
}
.submit_btn {
  margin: 0 auto;
}
.form__checkbox {
  display: inline-block;
  font-size: 13px;
}
.form__checkbox a {
  text-decoration: underline;
}
input[type="checkbox"] {
  width: auto;
  height: auto;
  accent-color: #000;
  vertical-align: middle;
}
.iti__selected-flag {
  border-radius: 1000px 0 0 1000px;
}
.iti input[type="tel"] {
  padding-left: 90px !important;
}
.calculator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  padding-top: 60px;
  background: no-repeat 0 -270% url(../images/calculator-bcg.webp);
}
@media (max-width: 768px) {
  .calculator {
    padding-top: 36px;
    padding-bottom: 36px;
  }
  .calculator__heading {
    font-weight: 700;
  }
}
.calculator__text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 1040px;
  text-align: center;
}
.calculator__about,
.calculator__potential-wraper p,
.profit__wrapper label {
  font-size: 20px;
}
.calculator__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  width: 100%;
  padding: 28px 42px;
  background-color: #fff;
  border-radius: 35.386px;
  box-shadow: 0 5.662px 14.154px 0 rgba(0, 0, 0, 0.13);
}
.calculator__wrapper > * {
  width: 50%;
}
@media (max-width: 768px) {
  .calculator__wrapper {
    width: unset;
    flex-direction: column;
    gap: 20px;
    padding: 36px 16px;
  }
  .calculator__wrapper > * {
    width: 100%;
  }
}
.calculator__potential-wraper {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.calculator__potential-wraper h3 {
  font-size: 24px;
  font-weight: 600;
  line-height: 28px;
}
.calculator__potential-wraper span {
  color: #4d6bfe;
  font-size: 39px;
  font-weight: 700;
}
@media (max-width: 768px) {
  .calculator__potential-wraper {
    align-items: center;
    gap: 10px;
  }
  .calculator__potential-wraper h3 {
    font-size: 20px;
    font-weight: 700;
    line-height: normal;
  }
  .calculator__potential-wraper span {
    margin-right: auto;
  }
  .calculator__potential-wraper p {
    order: -2;
  }
  .calculator__potential-wraper .btn {
    order: -1;
  }
}
.profit__wrapper {
  box-sizing: border-box;
  padding: 21px 28px;
  color: #fff;
  background-color: #4d6bfe;
  border-radius: 35.386px;
  box-shadow: 0 5.662px 14.154px 0 rgba(0, 0, 0, 0.13);
}
.profit__wrapper span.irs-max,
.profit__wrapper span.irs-min {
  color: #fff;
}
@media (max-width: 768px) {
  .profit__wrapper {
    padding: 14px 28px;
  }
}
.profit__heading {
  margin-bottom: 30px;
  color: #fff;
}
@media (max-width: 768px) {
  .profit__heading {
    margin-bottom: 15px;
    text-align: center;
    text-shadow: 3px 0 7px gray;
  }
}
.calculator__result {
  display: flex;
  justify-self: center;
  font-size: 39px;
  font-weight: 700;
}
@media (max-width: 768px) {
  .calculator__result {
    font-size: 31px;
    font-weight: 400;
  }
}
#calcResult {
  margin-bottom: 35px;
}
/*!Ion.RangeSlider, 2.3.1, © Denis Ineshin, 2010 - 2019, IonDen.com, Build date: 2019-12-19 16:51:02*/
.irs,
.irs-line {
  position: relative;
  display: block;
}
.irs {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  font-size: 12px;
  font-family: "Montserrat", "Arial", sans-serif;
}
.irs-line {
  overflow: hidden;
  outline: 0 !important;
}
.irs-bar,
.irs-shadow {
  position: absolute;
  display: block;
  left: 0;
  width: 0;
}
.irs-shadow {
  display: none;
}
.irs-handle {
  box-sizing: border-box;
  z-index: 1;
}
.irs-handle.type_last {
  z-index: 2;
}
.irs-handle,
.irs-max,
.irs-min {
  position: absolute;
  display: block;
  cursor: default;
}
.irs-min {
  left: 0;
}
.irs-max {
  right: 0;
}
.irs-from,
.irs-single,
.irs-to {
  position: absolute;
  display: block;
  bottom: -70px;
  left: 0;
  cursor: default;
  white-space: nowrap;
}
.irs-grid {
  position: absolute;
  display: none;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 20px;
}
.irs-with-grid .irs-grid {
  display: block;
}
.irs-grid-pol {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 8px;
  background: #000;
}
.irs-grid-pol.small {
  height: 4px;
}
.irs-grid-text {
  position: absolute;
  bottom: 0;
  left: 0;
  white-space: nowrap;
  text-align: center;
  font-size: 9px;
  line-height: 9px;
  padding: 0 3px;
  color: #000;
}
.irs-disable-mask {
  position: absolute;
  display: block;
  top: 0;
  left: -1%;
  width: 102%;
  height: 100%;
  cursor: default;
  background: 0 0;
  z-index: 2;
}
.lt-ie9 .irs-disable-mask {
  background: #000;
  filter: alpha(opacity=0);
  cursor: not-allowed;
}
.irs-disabled {
  opacity: 0.4;
}
.irs-hidden-input {
  position: absolute !important;
  display: block !important;
  top: 0 !important;
  left: 0 !important;
  width: 0 !important;
  height: 0 !important;
  font-size: 0 !important;
  line-height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden;
  outline: 0 !important;
  z-index: -9999 !important;
  background: 0 0 !important;
  border-style: solid !important;
  border-color: transparent !important;
}
.irs--flat {
  height: 40px;
}
.irs--flat.irs-with-grid {
  height: 60px;
}
.irs--flat .irs-line {
  top: 25px;
  height: 12px;
  background-color: #e1e4e9;
  border-radius: 4px;
}
.irs--flat .irs-bar {
  top: 25px;
  height: 12px;
  background-color: #ed5565;
}
.irs--flat .irs-bar--single {
  border-radius: 4px 0 0 4px;
}
.irs--flat .irs-shadow {
  height: 1px;
  bottom: 16px;
  background-color: #e1e4e9;
}
.irs--flat .irs-handle {
  top: 22px;
  width: 16px;
  height: 18px;
  background-color: transparent;
}
.irs--flat .irs-handle > i:first-child {
  position: absolute;
  display: block;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  margin-left: -1px;
  background-color: #da4453;
}
.irs--flat .irs-handle.state_hover > i:first-child,
.irs--flat .irs-handle:hover > i:first-child {
  background-color: #a43540;
}
.irs--flat .irs-max,
.irs--flat .irs-min {
  top: 0;
  padding: 1px 3px;
  color: #999;
  font-size: 10px;
  line-height: 1.333;
  text-shadow: none;
  background-color: #e1e4e9;
  border-radius: 4px;
}
.irs--flat .irs-from,
.irs--flat .irs-single,
.irs--flat .irs-to {
  color: #fff;
  font-size: 10px;
  line-height: 1.333;
  text-shadow: none;
  padding: 1px 5px;
  background-color: #ed5565;
  border-radius: 4px;
}
.irs--flat .irs-from:before,
.irs--flat .irs-single:before,
.irs--flat .irs-to:before {
  position: absolute;
  display: block;
  content: "";
  bottom: -6px;
  left: 50%;
  width: 0;
  height: 0;
  margin-left: -3px;
  overflow: hidden;
  border: 3px solid transparent;
  border-top-color: #ed5565;
}
.irs--flat .irs-grid-pol {
  background-color: #e1e4e9;
}
.irs--flat .irs-grid-text {
  color: #999;
}
.irs--big,
.irs--modern {
  height: 55px;
}
.irs--big.irs-with-grid {
  height: 70px;
}
.irs--big .irs-line {
  top: 33px;
  height: 12px;
  background-color: #fff;
  background: linear-gradient(to bottom, #ddd -50%, #fff 150%);
  border: 1px solid #ccc;
  border-radius: 12px;
}
.irs--big .irs-bar {
  top: 33px;
  height: 12px;
  background-color: #92bce0;
  border: 1px solid #428bca;
  background: linear-gradient(to bottom, #fff 0, #428bca 30%, #b9d4ec 100%);
  box-shadow: inset 0 0 1px 1px rgba(255, 255, 255, 0.5);
}
.irs--big .irs-bar--single {
  border-radius: 12px 0 0 12px;
}
.irs--big .irs-shadow {
  height: 1px;
  bottom: 16px;
  background-color: rgba(66, 139, 202, 0.5);
}
.irs--big .irs-handle {
  top: 25px;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(0, 0, 0, 0.3);
  background-color: #cbcfd5;
  background: linear-gradient(to bottom, #fff 0, #b4b9be 30%, #fff 100%);
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2), inset 0 0 3px 1px #fff;
  border-radius: 30px;
}
.irs--big .irs-handle.state_hover,
.irs--big .irs-handle:hover {
  border-color: rgba(0, 0, 0, 0.45);
  background-color: #939ba7;
  background: linear-gradient(to bottom, #fff 0, #919ba5 30%, #fff 100%);
}
.irs--big .irs-max,
.irs--big .irs-min {
  top: 0;
  padding: 1px 5px;
  color: #fff;
  text-shadow: none;
  background-color: #9f9f9f;
  border-radius: 3px;
}
.irs--big .irs-from,
.irs--big .irs-single,
.irs--big .irs-to {
  color: #fff;
  text-shadow: none;
  padding: 1px 5px;
  background-color: #428bca;
  background: linear-gradient(to bottom, #428bca 0, #3071a9 100%);
  border-radius: 3px;
}
.irs--big .irs-grid-pol {
  background-color: #428bca;
}
.irs--big .irs-grid-text {
  color: #428bca;
}
.irs--modern.irs-with-grid {
  height: 55px;
}
.irs--modern .irs-line {
  top: 25px;
  height: 5px;
  background-color: #d1d6e0;
  background: linear-gradient(to bottom, #e0e4ea 0, #d1d6e0 100%);
  border: 1px solid #a3adc1;
  border-bottom-width: 0;
  border-radius: 5px;
}
.irs--modern .irs-bar {
  top: 25px;
  height: 5px;
  background: #20b426;
  background: linear-gradient(to bottom, #20b426 0, #18891d 100%);
}
.irs--modern .irs-bar--single {
  border-radius: 5px 0 0 5px;
}
.irs--modern .irs-shadow {
  height: 1px;
  bottom: 21px;
  background-color: rgba(209, 214, 224, 0.5);
}
.irs--modern .irs-handle {
  top: 37px;
  width: 12px;
  height: 13px;
  border: 1px solid #a3adc1;
  border-top-width: 0;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
  border-radius: 0 0 3px 3px;
}
.irs--modern .irs-handle > i:nth-child(1) {
  position: absolute;
  display: block;
  top: -4px;
  left: 1px;
  width: 6px;
  height: 6px;
  border: 1px solid #a3adc1;
  background: #fff;
  transform: rotate(45deg);
}
.irs--modern .irs-handle > i:nth-child(2) {
  position: absolute;
  display: block;
  box-sizing: border-box;
  top: 0;
  left: 0;
  width: 10px;
  height: 12px;
  background: #e9e6e6;
  background: linear-gradient(to bottom, #fff 0, #e9e6e6 100%);
  border-radius: 0 0 3px 3px;
}
.irs--modern .irs-handle > i:nth-child(3) {
  position: absolute;
  display: block;
  box-sizing: border-box;
  top: 3px;
  left: 3px;
  width: 4px;
  height: 5px;
  border-left: 1px solid #a3adc1;
  border-right: 1px solid #a3adc1;
}
.irs--modern .irs-handle.state_hover,
.irs--modern .irs-handle:hover {
  border-color: #7685a2;
  background: #c3c7cd;
  background: linear-gradient(to bottom, #fff 0, #919ba5 30%, #fff 100%);
}
.irs--modern .irs-handle.state_hover > i:nth-child(1),
.irs--modern .irs-handle:hover > i:nth-child(1) {
  border-color: #7685a2;
}
.irs--modern .irs-handle.state_hover > i:nth-child(3),
.irs--modern .irs-handle:hover > i:nth-child(3) {
  border-color: #48536a;
}
.irs--modern .irs-max,
.irs--modern .irs-min {
  top: 0;
  font-size: 10px;
  line-height: 1.333;
  text-shadow: none;
  padding: 1px 5px;
  color: #fff;
  background-color: #d1d6e0;
  border-radius: 5px;
}
.irs--modern .irs-from,
.irs--modern .irs-single,
.irs--modern .irs-to {
  font-size: 10px;
  line-height: 1.333;
  text-shadow: none;
  padding: 1px 5px;
  background-color: #20b426;
  color: #fff;
  border-radius: 5px;
}
.irs--modern .irs-from:before,
.irs--modern .irs-single:before,
.irs--modern .irs-to:before {
  position: absolute;
  display: block;
  content: "";
  bottom: -6px;
  left: 50%;
  width: 0;
  height: 0;
  margin-left: -3px;
  overflow: hidden;
  border: 3px solid transparent;
  border-top-color: #20b426;
}
.irs--modern .irs-grid {
  height: 25px;
}
.irs--modern .irs-grid-pol {
  background-color: #dedede;
}
.irs--modern .irs-grid-text {
  color: silver;
  font-size: 13px;
}
.irs--sharp {
  height: 50px;
  font-size: 12px;
  line-height: 1;
}
.irs--sharp.irs-with-grid {
  height: 57px;
}
.irs--sharp .irs-line {
  top: 30px;
  height: 2px;
  background-color: #000;
  border-radius: 2px;
}
.irs--sharp .irs-bar {
  top: 30px;
  height: 2px;
  background-color: #ee22fa;
}
.irs--sharp .irs-bar--single {
  border-radius: 2px 0 0 2px;
}
.irs--sharp .irs-shadow {
  height: 1px;
  bottom: 21px;
  background-color: rgba(0, 0, 0, 0.5);
}
.irs--sharp .irs-handle {
  top: 25px;
  width: 10px;
  height: 10px;
  background-color: #a804b2;
}
.irs--sharp .irs-handle > i:first-child {
  position: absolute;
  display: block;
  top: 100%;
  left: 0;
  width: 0;
  height: 0;
  border: 5px solid transparent;
  border-top-color: #a804b2;
}
.irs--sharp .irs-handle.state_hover,
.irs--sharp .irs-handle:hover {
  background-color: #000;
}
.irs--sharp .irs-handle.state_hover > i:first-child,
.irs--sharp .irs-handle:hover > i:first-child {
  border-top-color: #000;
}
.irs--sharp .irs-max,
.irs--sharp .irs-min {
  color: #fff;
  font-size: 14px;
  line-height: 1;
  top: 0;
  padding: 3px 4px;
  opacity: 0.4;
  background-color: #a804b2;
  border-radius: 2px;
}
.irs--sharp .irs-from,
.irs--sharp .irs-single,
.irs--sharp .irs-to {
  font-size: 14px;
  line-height: 1;
  text-shadow: none;
  padding: 3px 4px;
  background-color: #a804b2;
  color: #fff;
  border-radius: 2px;
}
.irs--round .irs-from:before,
.irs--round .irs-single:before,
.irs--round .irs-to:before,
.irs--sharp .irs-from:before,
.irs--sharp .irs-single:before,
.irs--sharp .irs-to:before {
  position: absolute;
  display: block;
  content: "";
  bottom: -6px;
  left: 50%;
  width: 0;
  height: 0;
  margin-left: -3px;
  overflow: hidden;
  border: 3px solid transparent;
  border-top-color: #a804b2;
}
.irs--sharp .irs-grid {
  height: 25px;
}
.irs--sharp .irs-grid-pol {
  background-color: #dedede;
}
.irs--sharp .irs-grid-text {
  color: silver;
  font-size: 13px;
}
.irs--round {
  height: 24px;
  margin-bottom: 35px;
}
.irs--round.irs-with-grid {
  height: 65px;
}
.irs--round .irs-line {
  top: 15px;
  height: 8px;
  background-color: #f4f4f4;
  border: 0.5px solid #a3aebe;
  border-radius: 100px;
}
.irs--round .irs-bar {
  top: 15px;
  height: 14px;
  border-radius: 100px;
}
.irs--round .irs-bar--single {
  border-radius: 4px 0 0 4px;
}
.irs--round .irs-shadow {
  height: 4px;
  bottom: 21px;
  background-color: rgba(222, 228, 236, 0.5);
}
.irs--round .irs-handle {
  top: 9px;
  width: 22px;
  height: 22px;
  background-color: #fff;
  border-radius: 50%;
  cursor: pointer;
}
.irs--round .irs-handle.state_hover,
.irs--round .irs-handle:hover,
.irs--square .irs-handle.state_hover,
.irs--square .irs-handle:hover {
  background-color: #f0f6ff;
}
.irs--round .irs-max,
.irs--round .irs-min {
  font-family: "Montserrat", "Arial", sans-serif;
  font-size: 16px;
  top: 30px;
  padding: 3px 5px;
  border-radius: 4px;
}
.irs--round .irs-from,
.irs--round .irs-single,
.irs--round .irs-to {
  font-size: 14px;
  line-height: 1;
  text-shadow: none;
  padding: 3px 5px;
  background-color: #4d6bfe;
  color: #fff;
  border-radius: 4px;
}
.irs--round .irs-from:before,
.irs--round .irs-single:before,
.irs--round .irs-to:before {
  border-top-color: #4d6bfe;
}
.irs--round .irs-grid {
  height: 25px;
}
.irs--round .irs-grid-pol {
  background-color: #dedede;
}
.irs--round .irs-grid-text {
  color: silver;
  font-size: 13px;
}
.irs--square {
  height: 50px;
}
.irs--square.irs-with-grid {
  height: 60px;
}
.irs--square .irs-line {
  top: 31px;
  height: 4px;
  background-color: #dedede;
}
.irs--square .irs-bar {
  top: 31px;
  height: 4px;
  background-color: #000;
}
.irs--square .irs-shadow {
  height: 2px;
  bottom: 21px;
  background-color: #dedede;
}
.irs--square .irs-handle {
  top: 25px;
  width: 16px;
  height: 16px;
  border: 3px solid #000;
  background-color: #fff;
  transform: rotate(45deg);
}
.irs--square .irs-max,
.irs--square .irs-min {
  color: #333;
  font-size: 14px;
  line-height: 1;
  top: 0;
  padding: 3px 5px;
  background-color: rgba(0, 0, 0, 0.1);
}
.irs--square .irs-from,
.irs--square .irs-single,
.irs--square .irs-to {
  font-size: 14px;
  line-height: 1;
  text-shadow: none;
  padding: 3px 5px;
  background-color: #000;
  color: #fff;
}
.irs--square .irs-grid {
  height: 25px;
}
.irs--square .irs-grid-pol {
  background-color: #dedede;
}
.irs--square .irs-grid-text {
  color: silver;
  font-size: 11px;
}
.table {
  padding-top: 120px;
  padding-bottom: 60px;
  background: no-repeat 100% -75% url(../images/calculator-bcg-opacity0-3.webp);
  overflow-x: auto;
}
.table table {
  box-sizing: border-box;
  width: 100%;
  border-collapse: collapse;
  font-family: "Poppins", "Arial", sans-serif;
  text-align: left;
  font-size: 20px;
  font-weight: 500;
}
.table table thead tr th:nth-child(2) {
  border-radius: 16px 16px 0 0;
}
.table table tbody tr:last-child td:nth-child(2) {
  border-radius: 0 0 16px 16px;
}
.table th {
  font-weight: 700;
}
.table tr > td:nth-child(2),
.table tr > th:nth-child(2) {
  background: #edf0ff;
}
.table td,
.table th {
  vertical-align: top;
  box-sizing: border-box;
  width: 14.28%;
  padding: 22px;
}
@media (max-width: 768px) {
  .table {
    padding-top: 36px;
    padding-bottom: 36px;
    background: 0;
  }
  .table table {
    font-size: 16px;
  }
  .table td,
  .table th {
    padding: 5px;
  }
}
.review {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
  font-size: 16px;
  padding: 60px 108px 130px;
}
@media (max-width: 768px) {
  .review {
    padding: 36px 16px;
  }
}
.review__heading {
  text-align: center;
  max-width: 1045px;
}
@media (max-width: 768px) {
  .review__heading {
    margin-bottom: 15px;
  }
}
.review__about {
  text-align: center;
  max-width: 1045px;
  margin-bottom: 40px;
  padding: 0 150px;
  font-size: 20px;
}
@media (max-width: 768px) {
  .review__about {
    padding: 0;
  }
}
.review__card {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 35px;
  max-width: 350px;
  margin: 0 20px;
  padding: 35px 25px;
  border-radius: 21.655px;
  border: 0.722px solid #f0f0f6;
  background: #fff;
  box-shadow: 0 2.887px 8.662px 0 rgba(13, 10, 44, 0.06);
}
@media (max-width: 768px) {
  .review__card {
    gap: 10px;
    max-width: 348px;
    margin: 0 5px;
  }
}
.review__avatae-wrapper {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-top: auto;
  padding-top: 30px;
  border-top: 1px solid #dedee9;
}
.review__name-wrapper {
  display: flex;
  flex-direction: column;
  font-family: "Arial", sans-serif;
}
.review__name-wrapper cite {
  color: #3d3d3d;
  font-size: 20.212px;
  font-weight: 700;
  font-style: normal;
  line-height: 27.43px;
}
.review__name-wrapper span {
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  line-height: 27.43px;
}
.review__img {
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 50%;
}
.review__blockquote {
  margin-bottom: 35px;
}
@media (max-width: 768px) {
  .review__blockquote {
    margin-bottom: 0;
  }
}
.review__subheading {
  margin-bottom: 16px;
  font-size: 25px;
  font-weight: 400;
}
@media (max-width: 768px) {
  .review__subheading {
    font-size: 20px;
  }
}
.slick-slider {
  position: relative;
  min-width: 0;
  width: 100%;
  margin-bottom: 80px;
}
.slider__item {
  min-width: 0;
}
.slick-list {
  overflow: hidden;
}
.slick-track {
  display: flex;
}
.slider .slick-arrow {
  position: absolute;
  bottom: -130px;
  z-index: 10;
  font-size: 0;
  width: 50px;
  height: 50px;
  padding: 18px;
  border: 0;
  border-radius: 50%;
  background-color: #f7f7fd;
  background-repeat: no-repeat;
  background-position: 50%;
}
.slider .slick-arrow:hover {
  border: 1px solid #4d6bfe;
}
@media (max-width: 768px) {
  .slider .slick-arrow {
    bottom: -80px;
  }
}
.slider .slick-arrow.slick-prev {
  background-image: url(../images/arrow-left.svg);
  left: calc(50% - 60px);
}
.slider .slick-arrow.slick-next {
  right: calc(50% - 60px);
  background-image: url(../images/arrow-left.svg);
  transform: rotate(180deg);
}
.slider .slick-arrow.slick-disabled {
  opacity: 0.2;
}
.opportunities {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 41px;
  margin: 0 60px;
  padding-top: 60px;
  padding-bottom: 60px;
  border-radius: 35.386px;
  background: #f7f7fd no-repeat 100% 37px url(../images/faq-bcg.webp);
}
@media (max-width: 768px) {
  .opportunities {
    gap: 26px;
    margin: 0;
    padding-top: 0;
    padding-bottom: 36px;
    background: 0;
  }
  .opportunities_heading {
    text-align: center;
  }
}
.opportunities__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 38px;
}
@media (max-width: 768px) {
  .opportunities__list {
    gap: 26px;
  }
}
.opportunities__item,
.opportunities__item--blue {
  border-radius: 35.386px;
  box-shadow: 0 5.662px 14.154px 0 rgba(0, 0, 0, 0.13);
}
.opportunities__item {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 19px;
  min-width: 348px;
  max-width: 31%;
  padding: 37px 28px;
  background: #fff;
}
.opportunities__item--blue {
  color: #fff;
  background: linear-gradient(211deg, #3171de 18.85%, #4ac0f2 105.91%);
}
@media (max-width: 768px) {
  .opportunities__item {
    min-width: unset;
    max-width: unset;
    width: 100%;
  }
}
.opportunities__subheading {
  font-size: 25px;
  font-weight: 400;
}
@media (max-width: 768px) {
  .opportunities__subheading {
    font-size: 20px;
  }
}
.opportunities__about {
  max-width: 80%;
}
@media (max-width: 768px) {
  .opportunities__about {
    max-width: unset;
  }
}
.faq {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 120px;
  background: no-repeat 0 37px url(../images/faq-bcg.webp);
}
@media (max-width: 768px) {
  .faq {
    background: 0;
    padding: 36px 16px;
  }
}
.faq__heading {
  margin-bottom: 36px;
}
.faq__container {
  box-sizing: border-box;
  width: 100%;
  margin-bottom: 16px;
  padding: 24px;
  border-radius: 20px;
  background: linear-gradient(0deg, #f7f7fd 0, #f7f7fd 100%), #f4f4f4;
}
.faq__container:last-of-type {
  margin-bottom: 36px;
}
.faq__btn-wrapper {
  display: flex;
  justify-content: space-between;
}
.faq__question {
  font-size: 25px;
}
@media (max-width: 768px) {
  .faq__question {
    font-size: 20px;
  }
}
.faq__dropdown {
  overflow: hidden;
}
.faq__dropdown-content {
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s ease-in-out;
  padding: 0;
}
.faq__dropdown-content.show {
  max-height: 350px;
  padding: 10px 0;
}
.faq__toggle-btn {
  padding: 10px;
  background: 0;
  border: 0;
}
.faq__toggle-btn svg,
.faq__toggle-btn.show > svg {
  transform: rotate(90deg);
  transition: all 0.5s ease-in-out;
}
.faq__toggle-btn.show > svg {
  transform: rotate(-90deg);
}
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: 0 0;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.modal.active {
  z-index: 11;
  background: rgba(0, 0, 0, 0.3);
  visibility: visible;
  opacity: 1;
}
.modal__wrapper {
  position: relative;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  max-width: 539px;
  padding: 16px 61px;
  border-radius: 22px;
  background: #fff;
}
@media (max-width: 768px) {
  .modal__wrapper {
    width: calc(100vw - 16px);
    padding: 16px;
  }
}
.modal__heading {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 400;
}
.modal__about {
  opacity: 0.5;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .modal__about {
    max-width: 267px;
  }
}
.modal__close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: 0;
  border: 1px solid #2c2c2c;
  border-radius: 50%;
}
.modal__close-btn:hover {
  border: 1px solid #4d6bfe;
}
/*# sourceMappingURL=style.min.css.map */
