@import "../fonts/lato/stylesheet.css";

:root {
  --text--xss: 12px;
  --text--xs: 15px;
  --text--s: 20px;
  --text--sm: 22px;
  --text--md: 24px;
  --text--m: 30px;
  --text--l: 40px;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: none;
  outline: none;
}

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: var(--text--xs);
}

body {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Lato";
  font-weight: normal;
  color: #707070;
  line-height: 1.2;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  position: relative;
  overflow-x: hidden;
}

html,
body {
  width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Lato";
  font-weight: normal;
  margin: 0;
}

p,
ul {
  margin: 0;
}

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

a {
  font-size: inherit;
  text-decoration: none;
  color: inherit;
}

a:hover {
  color: inherit;
}

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

figure {
  margin: 0;
}

[type=search]::-webkit-search-cancel-button,
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
  appearance: none;
}

.btn-check:focus + .btn,
.btn:focus {
  outline: 0;
  -webkit-box-shadow: 0 0 0 0 rgba(13, 110, 253, 0);
          box-shadow: 0 0 0 0 rgba(13, 110, 253, 0);
}

h1 {
  font-size: var(--text--l);
  line-height: 1.38;
  letter-spacing: 0.2px;
}

h2 {
  font-size: var(--text--m);
  line-height: 1.3;
  letter-spacing: 0.4px;
}

h3 {
  font-size: var(--text--md);
  line-height: 1.313;
  letter-spacing: 0.4px;
}

h4 {
  font-size: var(--text--sm);
  line-height: 1.43;
  letter-spacing: 0.4px;
}

h5 {
  font-size: var(--text--s);
  line-height: 1.333;
  letter-spacing: 0.4px;
}

h6 {
  font-size: var(--text--xs);
  line-height: 1.333;
  letter-spacing: 0.4px;
}

p {
  font-size: var(--text--s);
  line-height: 1.524;
  margin-bottom: 15px;
  letter-spacing: 0.2px;
}

/*****************************
	  Standart Text Css Start
  *****************************/

.standard__text ol {
  padding-left: 17px;
  list-style-type: decimal;
  margin-bottom: 1.5rem;
}

.standard__text ol li {
  font-size: 17px;
  line-height: 28px;
  margin: 0 0 5px;
}

.standard__text ol li::marker {
  color: #1f4b67;
}

.standard__text ol:last-child {
  margin-bottom: 0;
}

.standard__text ul {
  padding-left: 15px;
  margin-bottom: 1.5rem;
}

.standard__text ul li {
  font-size: 17px;
  line-height: 28px;
  margin: 0 0 5px;
  list-style: disc;
}

.standard__text ul li::marker {
  color: #1f4b67;
}

.standard__text ul li a {
  line-height: 1.2;
}

.standard__text ul:last-child {
  margin-bottom: 0;
}

.standard__text p {
  margin-bottom: 25px;
}

.standard__text p:last-child {
  margin-bottom: 0;
}

.standard__text p a {
  color: #1f4b67;
  position: relative;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.standard__text p a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 100%;
  background-color: #47bb5c;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
      transform: translateX(-50%);
  height: 2px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.standard__text p a:hover {
  color: #47bb5c;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.standard__text h1 {
  margin-bottom: 1.7rem;
}

.standard__text h2 {
  margin-bottom: 20px;
  line-height: 1.3;
  font-weight: bold;
}

.standard__text h3 {
  margin-bottom: 28px;
}

.standard__text h3:last-child {
  margin: 0;
}

.standard__text h4 {
  margin-bottom: 20px;
  font-weight: bold;
}

.standard__text h5 {
  margin-bottom: 28px;
  font-weight: bold;
}

.standard__text h6 {
  margin-bottom: 1.5rem;
}

.btn {
  background: #ffffff;
  border: 0;
  color: #707070;
  font-size: 17px;
  font-weight: bold;
  text-align: left;
  padding: 10px 15px;
  min-height: 40px;
  min-width: 190px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
      align-items: center;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  margin: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
      justify-content: center;
  -webkit-box-shadow: 4px 4px 16px rgba(0, 0, 0, 0.09);
          box-shadow: 4px 4px 16px rgba(0, 0, 0, 0.09);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.btn span {
  position: relative;
  z-index: 12;
}

.btn::before {
  width: 3px;
  height: 100%;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background: #47bb5c;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.btn:hover {
  color: #ffffff;
}

.btn:hover::before {
  width: 100%;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.btn:focus {
  -webkit-box-shadow: 4px 4px 16px rgba(0, 0, 0, 0.09);
          box-shadow: 4px 4px 16px rgba(0, 0, 0, 0.09);
}

.btn.btn--bg--green {
  color: #ffffff;
  background: #47bb5c;
}

.btn.btn--bg--green::before {
  display: none;
}

.btn.btn--bg--green:hover {
  background: #1f4b67;
}

.btn.hover--bg--white:hover {
  background: #ffffff;
  color: #1f4b67;
}

/*****************************
		Padding
  *****************************/

.pv-0 {
  padding-top: 0;
  padding-bottom: 0;
}

.pt-0 {
  padding-top: 0;
}

.pb-0 {
  padding-bottom: 0;
}

.pl-0 {
  padding-left: 0;
}

.pr-0 {
  padding-right: 0;
}

.pt-50 {
  padding-top: 50px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pv-50 {
  padding-top: 50px;
  padding-bottom: 50px;
}

.pv-75 {
  padding-top: 75px;
  padding-bottom: 75px;
}

.pt-75 {
  padding-top: 75px;
}

.pb-75 {
  padding-bottom: 75px;
}

.pt-100 {
  padding-top: 100px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pv-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.pv-125 {
  padding-top: 125px;
  padding-bottom: 125px;
}

.pt-125 {
  padding-top: 125px;
}

.pb-125 {
  padding-bottom: 125px;
}

.pv-150 {
  padding-top: 150px;
  padding-bottom: 150px;
}

.pt-150 {
  padding-top: 150px;
}

.pb-150 {
  padding-bottom: 150px;
}

.pv-175 {
  padding-top: 175px;
  padding-bottom: 175px;
}

.pt-175 {
  padding-top: 175px;
}

.pb-175 {
  padding-bottom: 175px;
}

.pv-200 {
  padding-top: 200px;
  padding-bottom: 200px;
}

.pt-200 {
  padding-top: 200px;
}

.pb-200 {
  padding-bottom: 200px;
}

/*****************************
		Margin
  *****************************/

.mv-0 {
  margin-top: 0;
  margin-bottom: 0;
}

.mh-0 {
  margin-left: 0;
  margin-right: 0;
}

.mt-30 {
  margin-top: 30px;
}

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

.mt-40 {
  margin-top: 40px;
}

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

.mt-50 {
  margin-top: 50px;
}

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

.mt-60 {
  margin-top: 60px;
}

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

.mt-70 {
  margin-top: 70px;
}

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

.mt-80 {
  margin-top: 80px;
}

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

.mt-95 {
  margin-top: 95px;
}

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

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

.mt-100 {
  margin-top: 100px;
}

.mt-140 {
  margin-top: 140px;
}

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

.mt-150 {
  margin-top: 150px;
}

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

.mt-160 {
  margin-top: 160px;
}

._text-semibold {
  font-weight: 600;
}

.bg--blue {
  background-color: #1f4b67;
}

.bg--green {
  background-color: #47bb5c;
}

.bg--gray {
  background-color: #707070;
}

.bg--alice--blue {
  background-color: #f4f8fc;
}

.bg--white {
  background-color: #ffffff;
}

.bg--black {
  background-color: #000000;
}

/*****************************
		  Heading color Css Start
  *****************************/

.heading--color--white h1 {
  color: #ffffff;
}

.heading--color--white h2 {
  color: #ffffff;
}

.heading--color--white h3 {
  color: #ffffff;
}

.heading--color--white h4 {
  color: #ffffff;
}

.heading--color--white h5 {
  color: #ffffff;
}

.heading--color--white h6 {
  color: #ffffff;
}

.heading--color--black h1 {
  color: #000000;
}

.heading--color--black h2 {
  color: #000000;
}

.heading--color--black h3 {
  color: #000000;
}

.heading--color--black h4 {
  color: #000000;
}

.heading--color--black h5 {
  color: #000000;
}

.heading--color--black h6 {
  color: #000000;
}

.heading--color--blue h1 {
  color: #1f4b67;
}

.heading--color--blue h2 {
  color: #1f4b67;
}

.heading--color--blue h3 {
  color: #1f4b67;
}

.heading--color--blue h4 {
  color: #1f4b67;
}

.heading--color--blue h5 {
  color: #1f4b67;
}

.heading--color--blue h6 {
  color: #1f4b67;
}

.heading--color--green h1 {
  color: #47bb5c;
}

.heading--color--green h2 {
  color: #47bb5c;
}

.heading--color--green h3 {
  color: #47bb5c;
}

.heading--color--green h4 {
  color: #47bb5c;
}

.heading--color--green h5 {
  color: #47bb5c;
}

.heading--color--green h6 {
  color: #47bb5c;
}

.heading--color--gray h1 {
  color: #707070;
}

.heading--color--gray h2 {
  color: #707070;
}

.heading--color--gray h3 {
  color: #707070;
}

.heading--color--gray h4 {
  color: #707070;
}

.heading--color--gray h5 {
  color: #707070;
}

.heading--color--gray h6 {
  color: #707070;
}

/*****************************
   Text colors
  *****************************/

.text--color--white p {
  color: #ffffff;
}

.text--color--black p {
  color: #000000;
}

.text--color--gray p {
  color: #707070;
}

.text--color--blue p {
  color: #1f4b67;
}

.text--color--green p {
  color: #47bb5c;
}

.heading--font--bold h1 {
  font-weight: bold;
}

.heading--font--bold h2 {
  font-weight: bold;
}

.heading--font--bold h3 {
  font-weight: bold;
}

.heading--font--bold h4 {
  font-weight: bold;
}

.heading--font--bold h5 {
  font-weight: bold;
}

.heading--font--bold h6 {
  font-weight: bold;
}

.heading--font--bolder h1 {
  font-weight: 900;
}

.heading--font--bolder h2 {
  font-weight: 900;
}

.heading--font--bolder h3 {
  font-weight: 900;
}

.heading--font--bolder h4 {
  font-weight: 900;
}

.heading--font--bolder h5 {
  font-weight: 900;
}

.heading--font--bolder h6 {
  font-weight: 900;
}

.text--fontweight--bold p {
  font-weight: bold;
}

.text--fontweight--lighter p {
  font-weight: 300;
}

.z-index-12 {
  z-index: 12;
}

.font--size24 p {
  font-size: var(--text--md);
  line-height: 35px;
}

.font--size--small p {
  font-size: 17px;
  line-height: 26px;
}

.bg--gradient {
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(255, 255, 255)), color-stop(56%, rgb(235, 239, 245)), to(rgb(235, 239, 245)));
  background: linear-gradient(to bottom, rgb(255, 255, 255) 0%, rgb(235, 239, 245) 56%, rgb(235, 239, 245) 100%);
}

.bg--gradient--lighter {
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(244, 248, 252)), color-stop(67%, rgb(244, 248, 252)), to(rgb(235, 239, 245)));
  background: linear-gradient(to bottom, rgb(244, 248, 252) 0%, rgb(244, 248, 252) 67%, rgb(235, 239, 245) 100%);
}

.bg--gradient--light-dark-blue {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #f4f8fc), color-stop(50%, #1f4b67));
  background: linear-gradient(180deg, #f4f8fc 50%, #1f4b67 50%);
}

.bg--gradient--light-blue-white {
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, #f4f8fc), color-stop(50%, #ffffff));
  background: linear-gradient(90deg, #f4f8fc 50%, #ffffff 50%);
}

.row--gap30 {
  row-gap: 30px;
}

.row--gap50 {
  row-gap: 50px;
}

.text--lineheight37 p {
  line-height: 37px;
}

.box--shadow--none {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.text__block__module h3 {
  margin-bottom: 5px;
}

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

.text__block__module h5 {
  margin-bottom: 5px;
}

.text__block__module h6 {
  margin-bottom: 5px;
}

.text__block__module p {
  margin: 0 0 20px;
}

.header__module {
  padding: 0;
  top: 0;
  width: 100%;
  z-index: 99;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.header__module.sticky {
  background: #ffffff;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.09);
          box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.09);
}

.header__module .header__nav__module {
  padding: 50px 0 25px 0;
  width: 100%;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.header__module.sticky .header__nav__module {
  padding: 10px 0;
}

.header__module.sticky .header__logo img {
  min-width: 105px;
  max-width: 105px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.header__logo {
  position: relative;
  z-index: 12;
}

.header__logo a img {
  min-width: 127px;
  max-width: 127px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.header__logo a img.logo--white {
  display: none;
}

.header__logo.white--logo .logo--white {
  display: inline-block;
}

.header__logo.white--logo .logo--gray {
  display: none;
}

.header__right__module {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}

.header__menu__block {
  width: 100%;
  text-align: right;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.navbar__toggler {
  margin-left: 30px;
  position: relative;
  z-index: 12;
  width: 33px;
  height: 11px;
  cursor: pointer;
  display: none;
}

.navbar__toggler span {
  background: #47bb5c;
  border: none;
  border-radius: 50px;
  height: 2px;
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.navbar__toggler span:nth-of-type(1) {
  top: 2px;
}

.navbar__toggler span:nth-of-type(2) {
  top: 10px;
  width: 75%;
}

.navbar__toggler.change .top {
  -webkit-transform: translateY(2px) translateX(0px) rotate(45deg);
      -ms-transform: translateY(2px) translateX(0px) rotate(45deg);
          transform: translateY(2px) translateX(0px) rotate(45deg);
  width: 25px;
  right: 0;
}

.navbar__toggler.change .middle {
  -webkit-transform: translateY(-6px) translateX(0) rotate(-45deg);
      -ms-transform: translateY(-6px) translateX(0) rotate(-45deg);
          transform: translateY(-6px) translateX(0) rotate(-45deg);
  width: 25px;
  right: 0;
}

.header__menu {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.header__menu .navbar {
  padding: 0;
}

.header__menu ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  text-align: center;
}

.header__menu ul li {
  display: block;
  position: relative;
  margin-right: 37px;
}

.header__menu ul li.li:last-child {
  margin-right: 0;
}

.header__menu ul li a {
  display: inline-block;
  position: relative;
  text-align: left;
  font-weight: bold;
  color: #1f4b67;
  font-size: 17px;
  text-decoration: none;
  padding: 0px 0;
  text-transform: uppercase;
  letter-spacing: 0.1px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.header__menu ul li::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 0%;
  background-color: #47bb5c;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
      transform: translateX(-50%);
  height: 2px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.header__menu ul li:hover::after {
  width: 100%;
}

.header__menu ul li:focus::after {
  width: 100%;
}

.header__menu ul li.active::after {
  width: 100%;
}

.header__menu ul li:hover a {
  color: #47bb5c;
}

.header__menu ul li.active a {
  color: #47bb5c;
}

.hero__img__module {
  height: 100vh;
}

.hero__img__module h1 {
  margin-bottom: 20px;
}

.hero__img__module h5 {
  color: #47bb5c;
  margin-bottom: 20px;
}

.hero__img__module .hero--img--inner {
  position: relative;
}

.hero__img__module .hero--img--inner .mob--tablet--img {
  position: absolute;
  bottom: 0;
  right: 0;
}

.hero__img__module .circle--shape {
  width: 100vh;
  height: 100vh;
  border-radius: 50%;
  position: absolute;
  right: -19%;
  bottom: -27%;
  -webkit-box-shadow: 0 3px 89px #47bb5c;
          box-shadow: 0 3px 89px #47bb5c;
  z-index: 1;
  -webkit-animation: zoomin 1s ease-in;
          animation: zoomin 1s ease-in;
}

@-webkit-keyframes zoomin {
  0% {
    bottom: -32%;
    right: -23%;
  }

  100% {
    bottom: -27%;
    right: -19%;
  }
}

@keyframes zoomin {
  0% {
    bottom: -32%;
    right: -23%;
  }

  100% {
    bottom: -27%;
    right: -19%;
  }
}

.hero__text__block {
  padding-left: 120px;
}

.hide--blocks {
  opacity: 0;
}

.left__img__block {
  padding-left: 0;
}

.left__img__block figure {
  height: 100%;
  position: relative;
  padding-bottom: 82%;
  width: 100%;
  overflow: hidden;
}

.left__img__block figure img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.right__text__block {
  padding-left: 120px;
}

.right__text__block p {
  font-size: 17px;
}

.right__text__block figure {
  max-width: 50px;
  float: left;
  margin-right: 25px;
  margin-top: 20px;
}

.section__title {
  position: relative;
  width: 100%;
}

.section__title h2 {
  font-weight: 700;
}

.heading__border__bottom h1 {
  position: relative;
  padding-bottom: 8px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 197px;
}

.heading__border__bottom h1::after {
  height: 2.5px;
  background: #47bb5c;
  content: "";
  position: absolute;
  bottom: 0;
  width: 100rem;
  border-radius: 50px;
}

.heading__border__bottom h2 {
  position: relative;
  padding-bottom: 8px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 197px;
}

.heading__border__bottom h2::after {
  height: 2.5px;
  background: #47bb5c;
  content: "";
  position: absolute;
  bottom: 0;
  width: 100rem;
  border-radius: 50px;
}

.heading__border__bottom.border--position--right h1::after {
  left: 0px;
}

.heading__border__bottom.border--position--right h2::after {
  left: 0px;
}

.heading__border__bottom.border--position--left h1::after {
  right: 0px;
}

.heading__border__bottom.border--position--left h2::after {
  right: 0px;
}

.button__repeater {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.icon__text__block i {
  max-width: 35px;
  display: inline-block;
}

.icon__text__block img {
  margin: 0 0 15px;
}

.testimonial__slider__text {
  max-width: 600px;
  padding-top: 55px;
  position: relative;
}

.testimonial__slider__text::before {
  content: "";
  position: absolute;
  color: #ffffff;
  width: 100%;
  height: 20px;
  left: 0;
  right: 0;
  top: 0;
  background-image: url("../img/quot-icon.png");
  background-size: 18px;
  background-position: center;
  background-repeat: no-repeat;
}

.testimonial__slider__text p {
  margin-bottom: 20px;
}

.testimonial__slider__text h5 {
  font-weight: bold;
  text-transform: uppercase;
  font-size: 13px;
  margin: 0 0 10px;
  color: #47bb5c;
}

.testimonial__slider__text h6 {
  font-weight: normal;
  font-size: 13px;
  margin: 0;
}

.slider__arrow {
  position: absolute;
  top: 43%;
  width: 60px;
  height: 60px;
  border-radius: 48%;
  background: #ffffff;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 12;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.slider__arrow.prev {
  left: -30px;
  padding-left: 17px;
}

.slider__arrow.next {
  right: -30px;
  padding-right: 17px;
}

.slider__arrow img {
  max-width: 12px;
}

.slider__arrow:hover {
  background: #f4f8fc;
}

.bg__circle__shape {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: absolute;
  -webkit-box-shadow: 0 3px 89px #47bb5c;
  box-shadow: 0 3px 89px #47bb5c;
  z-index: 1;
  max-width: 460px;
  height: 460px;
}

.bg__circle__shape.right--align {
  bottom: 0;
  right: 0;
}

.bg__circle__shape.center--align {
  top: 20px;
  right: 0;
  left: 0;
  margin: 0 auto;
}

.animate__img__block figure {
  position: relative;
  z-index: 12;
}

.animate--img--right figure {
  position: relative;
  left: 60px;
  max-width: 570px;
  float: right;
  top: 40px;
}

.animate--img--left figure {
  position: relative;
  right: 30px;
  max-width: 510px;
  float: right;
  top: 40px;
}

.bg--img {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
}

.cta__block {
  padding: 70px 100px;
  border-radius: 10px;
  -webkit-box-shadow: 4px 4px 16px rgba(0, 0, 0, 0.16);
          box-shadow: 4px 4px 16px rgba(0, 0, 0, 0.16);
}

.accordion__block {
  padding: 0;
  margin-bottom: 25px;
}

.accordion__block:last-child {
  margin-bottom: 0;
}

.accordion__block .card-header {
  border: none;
  padding: 20px 80px 20px 80px;
  cursor: pointer;
  position: relative;
  width: 100%;
  display: inline-block;
  border-radius: 10px;
  position: relative;
  z-index: 12;
  overflow: hidden;
}

.accordion__block .card-header h4 {
  position: relative;
  z-index: 12;
}

.accordion__block .card-header::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background: -webkit-gradient(linear, left top, right top, from(rgba(71, 187, 92, 0.35)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(to right, rgba(71, 187, 92, 0.35) 0%, rgba(0, 0, 0, 0) 100%);
}

.accordion__block .card-header i {
  position: absolute;
  right: 40px;
  top: 30px;
  width: 20px;
  height: 15px;
  background-size: 17px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.accordion__block .card-header::before {
  width: 0px;
  height: 100%;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background: #47bb5c;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.accordion__block .card-header.show {
  -webkit-box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.09);
          box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.09);
}

.accordion__block .card-header.show::after {
  width: 100%;
}

.accordion__block .card-header.show i {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.accordion__block .card-header.show::before {
  width: 5px;
}

.accordion__block .inner {
  display: none;
}

.accordion__block .card-body {
  padding: 40px 80px 40px;
  border-radius: 0px 0px 10px 10px;
  -webkit-box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.09);
          box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.09);
  position: relative;
  margin-top: -10px;
}

.faq__module h2{
    font-size: var(--text--sm);
    line-height: 1.43;
    letter-spacing: 0.4px;
}

.team__img {
  max-width: 255px;
  max-height: 255px;
  width: 100%;
  border-radius: 50%;
  overflow: hidden;
  height: 100%;
  margin: 0 auto;
}

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

.team__block p {
  font-size: var(--text--xs);
}

.client__logo__block {
  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;
}

.client__logo__block figure {
  max-width: 250px;
}

.comparison__item {
  padding: 30px 30px 30px 0;
  border-radius: 24px;
  background-color: #ffffff;
  color: #1f4b67;
  height: 100%;
}

.comparison__item h2 {
  position: relative;
  padding-bottom: 10px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  text-align: center;
  min-width: 197px;
  width: 100%;
  margin-bottom: 30px;
}

.comparison__item h2::after {
  height: 2.5px;
  content: "";
  background-color: #f06c44;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 95%;
  border-radius: 50px;
}

.comparison__item ul {
  padding-left: 30px;
}

.comparison__item ul li {
  list-style: none;
  font-size: var(--text--sm);
  line-height: 37px;
  padding-left: 40px;
  padding-bottom: 10px;
  position: relative;
}

.comparison__item ul li::before {
  content: "";
  background-image: url(../img/cross_icon.svg);
  background-repeat: no-repeat;
  background-color: unset;
  background-size: contain;
  position: absolute;
  width: 24px;
  height: 24px;
  top: 9px;
  left: 0;
  border-radius: 24px;
}

.comparison__item._pros h2::after {
  background: #47bb5c;
  right: 0;
}

.comparison__item._pros ul li::before {
  background-image: url(../img/check_icon.svg);
}

.timeline .heading__border__bottom h2 {
  width: unset;
}

.timeline__scroll {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 50px;
}

.timeline__scroll .timeline__item .timeline__name {
  color: #1f4b67;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  margin-bottom: 16px;
}

.timeline__scroll .timeline__item .timeline__name span {
  font-size: var(--text--m);
  position: relative;
  padding-right: 40px;
  font-weight: bold;
}

.timeline__scroll .timeline__item .timeline__name span::after {
  content: "";
  position: absolute;
  background-color: #1f4b67;
  width: 15px;
  height: 3px;
  top: 18px;
  -webkit-transform: translate(50%, -50%);
      -ms-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
}

.timeline__scroll .timeline__item .timeline__name ._heading {
  font-size: var(--text--m);
  font-weight: bold;
}

.timeline__scroll .timeline__item .timeline__name ._subheading {
  font-size: var(--text--s);
  font-weight: 400;
  margin-top: 5px;
}

.sib_signup_form input {
  width: 100%;
  color: #1f4b67;
  background: #f4f8fc;
  border-radius: 5px;
  border: 1px solid transparent;
  border-radius: 5px;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  padding: 0.125em 1em;
  font-size: var(--text--s);
  line-height: 1.5;
  height: 50px;
}

.sib_signup_form input:focus {
  border: 1px solid #47bb5c;
  color: #1f4b67;
}

.sib_signup_form input::-webkit-input-placeholder {
  /* Edge */
  color: #1f4b67;
}

.sib_signup_form input:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #1f4b67;
  font-size: var(--text--s);
}

.sib_signup_form input::-moz-placeholder {
  color: #1f4b67;
  font-size: var(--text--s);
}

.sib_signup_form input::-ms-input-placeholder {
  color: #1f4b67;
  font-size: var(--text--s);
}

.sib_signup_form input::placeholder {
  color: #1f4b67;
  font-size: var(--text--s);
}

.sib_signup_form input[type=checkbox] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 3px;
  height: 20px;
  width: 20px;
  background-color: #ffffff;
  border: 1px solid #47bb5c;
  border-radius: 0;
  cursor: pointer;
  margin-right: 5px;
  position: relative;
}

.sib_signup_form input[type=checkbox]:checked {
  background-color: #47bb5c;
}

.sib_signup_form input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  left: 4px;
  top: -1px;
  width: 10px;
  height: 16px;
  border: solid #ffffff;
  border-width: 0 4px 4px 0;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.sib_signup_form input[type=submit] {
  background: #47bb5c;
  border: 0;
  color: #ffffff;
  font-size: 17px;
  font-weight: bold;
  text-align: center;
  padding: 10px 15px;
  min-height: 40px;
  height: auto;
  min-width: 190px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
      align-items: center;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
      justify-content: center;
  -webkit-box-shadow: 4px 4px 16px rgba(0, 0, 0, 0.16);
          box-shadow: 4px 4px 16px rgba(0, 0, 0, 0.16);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  margin-top: 20px;
}

.sib_signup_form input[type=submit]:hover {
  color: #ffffff;
  background: #1f4b67;
}

.sib_signup_form input[type=submit]:focus {
  -webkit-box-shadow: 4px 4px 16px rgba(0, 0, 0, 0.16);
          box-shadow: 4px 4px 16px rgba(0, 0, 0, 0.16);
}

.contact-form-wrapper .nf-form-content {
  max-width: 100%;
}

.contact-form-wrapper .nf-before-form-content {
  margin-bottom: 12px;
  color: #000000;
  font-size: var(--text--s);
  display: none;
}

.contact-form-wrapper .list-radio-wrap ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  gap: 0 30px;
}

.contact-form-wrapper .list-radio-wrap ul li {
  width: auto !important;
  color: #000000;
  font-size: var(--text--s);
}

.contact-form-wrapper .list-radio-wrap ul li::before {
  content: unset;
}

.contact-form-wrapper .list-radio-wrap ul li label {
  font-size: inherit !important;
  white-space: nowrap;
}

.contact-form-wrapper .list-checkbox-wrap ul li::before {
  content: unset;
}

.contact-form-wrapper .nf-form-content input[type=checkbox].ninja-forms-field,
.contact-form-wrapper .nf-form-content input[type=radio].ninja-forms-field {
  visibility: hidden;
  padding: 0;
}

.contact-form-wrapper .listradio-wrap .nf-field-element label:after {
  width: 20px;
  height: 20px;
  border: 2px solid #47bb5c;
  border-radius: 50%;
  background: #fff;
  bottom: auto;
  top: 0;
}

.contact-form-wrapper .listradio-wrap .nf-field-element label.nf-checked-label:after {
  border-color: #47bb5c;
}

.contact-form-wrapper .listradio-wrap .nf-field-element label.nf-checked-label:before {
  width: 12px;
  height: 12px;
  background: #47bb5c;
  border-radius: 50%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -webkit-transform-origin: center;
      -ms-transform-origin: center;
          transform-origin: center;
  border: 4px solid transparent;
  bottom: auto;
  top: 4px;
}

.contact-form-wrapper #ninja_forms_required_items,
.contact-form-wrapper .nf-field-container {
  margin-bottom: 20px;
}

.contact-form-wrapper .nf-form-content .listselect-wrap .nf-field-element div,
.contact-form-wrapper .nf-form-content input.ninja-forms-field,
.contact-form-wrapper .nf-form-content select.ninja-forms-field:not([multiple]) {
  height: 50px;
}

.contact-form-wrapper .nf-form-content .list-select-wrap .nf-field-element > div:focus,
.contact-form-wrapper .nf-form-content input:not(.btn):focus,
.contact-form-wrapper .nf-form-content textarea:focus {
  border: 1px solid #47bb5c;
  color: #1f4b67;
}

.contact-form-wrapper .nf-form-content label {
  font-size: var(--text--s);
  font-weight: 600;
  color: #1f4b67;
  padding-top: 1px;
}

.contact-form-wrapper .nf-form-content label a {
  font-weight: bold;
}

.contact-form-wrapper .checkbox-wrap .nf-field-element label,
.contact-form-wrapper .checkbox-wrap .nf-field-label label,
.contact-form-wrapper .listcheckbox-wrap .nf-field-element label,
.contact-form-wrapper .listcheckbox-wrap .nf-field-label label {
  cursor: pointer;
}

.contact-form-wrapper .checkbox-wrap .nf-field-element label:after,
.contact-form-wrapper .checkbox-wrap .nf-field-label label:after,
.contact-form-wrapper .listcheckbox-wrap .nf-field-element label:after,
.contact-form-wrapper .listcheckbox-wrap .nf-field-label label:after {
  width: 21px;
  height: 21px;
  border: 2px solid #47bb5c;
  margin: 0.125rem 0 0;
  background: transparent;
}

.contact-form-wrapper .checkbox-wrap .nf-field-element label:after,
.contact-form-wrapper .checkbox-wrap .nf-field-label label:after,
.contact-form-wrapper .listcheckbox-wrap .nf-field-element label:after,
.contact-form-wrapper .listcheckbox-wrap .nf-field-label label:after {
  color: #000000;
  background: transparent;
}

.contact-form-wrapper .checkbox-wrap .nf-field-element label.nf-checked-label:after,
.contact-form-wrapper .checkbox-wrap .nf-field-label label.nf-checked-label:after,
.contact-form-wrapper .listcheckbox-wrap .nf-field-element label.nf-checked-label:after,
.contact-form-wrapper .listcheckbox-wrap .nf-field-label label.nf-checked-label:after {
  border-color: #47bb5c;
}

.contact-form-wrapper .checkbox-wrap .nf-field-element label:before,
.contact-form-wrapper .checkbox-wrap .nf-field-label label:before,
.contact-form-wrapper .listcheckbox-wrap .nf-field-element label:before,
.contact-form-wrapper .listcheckbox-wrap .nf-field-label label:before {
  font-size: var(--text--s);
  background: white;
  width: 20px;
  height: 20px;
}

.contact-form-wrapper .checkbox-wrap .nf-field-element label.nf-checked-label:before,
.contact-form-wrapper .checkbox-wrap .nf-field-label label.nf-checked-label:before,
.contact-form-wrapper .listcheckbox-wrap .nf-field-element label.nf-checked-label:before,
.contact-form-wrapper .listcheckbox-wrap .nf-field-label label.nf-checked-label:before {
  background: #47bb5c;
  color: #ffffff;
  width: 20px;
  height: 20px;
}

.contact-form-wrapper .checkbox-container.label-right label {
  margin: 0 0 0 42px !important;
}

.contact-form-wrapper .checkbox-container.label-right label:after {
  left: -40px !important;
}

.contact-form-wrapper .checkbox-container.label-right label:before {
  left: -39px !important;
  top: 1px;
  font-size: 18px;
}

.contact-form-wrapper .checkbox-container.label-left label {
  margin: 0 42px 0 0 !important;
}

.contact-form-wrapper .checkbox-container.label-left label:after {
  right: -40px !important;
}

.contact-form-wrapper .checkbox-container.label-left label:before {
  right: -36px !important;
}

.contact-form-wrapper .listcheckbox-container .nf-field-element label {
  margin-left: 42px !important;
}

.contact-form-wrapper .listcheckbox-container .nf-field-element label:before {
  left: -38px !important;
}

.contact-form-wrapper .listcheckbox-wrap .nf-field-element label:after {
  left: -40px !important;
}

.contact-form-wrapper .listcheckbox-container .nf-field-element label:after,
.contact-form-wrapper .checkbox-container.label-right label:after {
  top: -2px;
}

.contact-form-wrapper .listcheckbox-container .nf-field-element label:before {
  top: 0;
}

.contact-form-wrapper .label-right .field-wrap,
.contact-form-wrapper .label-left .field-wrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.contact-form-wrapper .label-right .field-wrap .nf-field-description,
.contact-form-wrapper .label-left .field-wrap .nf-field-description {
  margin: 0 !important;
}

.contact-form-wrapper .field-wrap .nf-field-description {
  color: #000000;
  font-size: var(--text--s);
  font-weight: 600;
  padding-top: 10px;
}

.contact-form-wrapper .label-right .field-wrap .nf-field-description {
  margin: 0 !important;
}

.contact-form-wrapper .label-left .field-wrap .nf-field-description {
  margin: 0 !important;
  padding-right: 40px;
}

.contact-form-wrapper .nf-form-content .list-select-wrap .nf-field-element > div,
.contact-form-wrapper .nf-form-content input:not(.btn),
.contact-form-wrapper .nf-form-content textarea {
  color: #1f4b67;
  background: #f4f8fc;
  border-radius: 5px;
  border: 1px solid transparent;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  padding: 0.125em 1em;
  font-size: var(--text--s);
  line-height: 1.5;
  -moz-appearance: none;
  -webkit-appearance: none;
}

.contact-form-wrapper .nf-form-content .list-select-wrap .nf-field-element > div,
.contact-form-wrapper .nf-form-content input:not(.btn),
.contact-form-wrapper .nf-form-content textarea {
  border: none;
  background: #f4f8fc;
  border-radius: 5px;
}

.contact-form-wrapper .nf-form-content textarea {
  display: block;
  width: 100%;
  padding: 1em;
}

.contact-form-wrapper .nf-form-content input::-webkit-input-placeholder, .contact-form-wrapper .nf-form-content textarea::-webkit-input-placeholder {
  color: #1f4b67;
  font-size: inherit !important;
}

.contact-form-wrapper .nf-form-content input::-moz-placeholder, .contact-form-wrapper .nf-form-content textarea::-moz-placeholder {
  color: #1f4b67;
  font-size: inherit !important;
}

.contact-form-wrapper .nf-form-content input:-ms-input-placeholder, .contact-form-wrapper .nf-form-content textarea:-ms-input-placeholder {
  color: #1f4b67;
  font-size: inherit !important;
}

.contact-form-wrapper .nf-form-content input::-ms-input-placeholder, .contact-form-wrapper .nf-form-content textarea::-ms-input-placeholder {
  color: #1f4b67;
  font-size: inherit !important;
}

.contact-form-wrapper .nf-form-content input::placeholder,
.contact-form-wrapper .nf-form-content textarea::placeholder {
  color: #1f4b67;
  font-size: inherit !important;
}

.contact-form-wrapper .nf-form-content select.ninja-forms-field {
  color: #000000;
  padding: 0.125em 1em;
  font-size: var(--text--s);
  font-weight: 600;
}

.contact-form-wrapper .nf-form-content .list-select-wrap > div div:after {
  font-size: var(--text--s);
}

.contact-form-wrapper .nf-form-content select.ninja-forms-field:active,
.contact-form-wrapper .nf-form-content select.ninja-forms-field:focus,
.contact-form-wrapper .nf-form-content .list-select-wrap .nf-field-element > div {
  border-color: transparent !important;
}

.contact-form-wrapper .list-select-wrap div:after {
  color: #000000;
}

.contact-form-wrapper .submit-wrap .nf-field-element {
  width: 100%;
}

.contact-form-wrapper .nf-form-content button,
.contact-form-wrapper .nf-form-content input.btn {
  font-size: 17px;
  line-height: 1.375;
  border-radius: 10px;
  font-weight: bold;
  text-align: left;
  padding: 10px 15px;
  min-height: 40px;
  min-width: 190px;
  outline: none;
  color: #ffffff;
  background-color: #47bb5c;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-user-select: auto;
     -moz-user-select: auto;
      -ms-user-select: auto;
          user-select: auto;
  height: auto;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.contact-form-wrapper .nf-form-content button:hover,
.contact-form-wrapper .nf-form-content input.btn:hover {
  background-color: #1f4b67;
  color: #ffffff;
}

.contact-form-wrapper .textarea-wrap .nf-field-label {
  width: 100%;
}

.contact-form-wrapper .textarea-wrap label {
  width: 100%;
  color: #000000;
  font-size: var(--text--s);
  line-height: 1.36;
  font-weight: 600;
}

.contact-form-wrapper .nf-error-msg {
  font-size: var(--text--s);
  line-height: 1;
}

.contact-form-wrapper .nf-error .nf-error-msg {
  font-size: var(--text--s);
  line-height: 1;
}

.contact-form-wrapper .nf-error.field-wrap .nf-field-element:after {
  display: none;
}

.contact-form-wrapper .nf-pass.field-wrap .nf-field-element:after {
  display: none;
}

.contact-form-wrapper .nf-error.listimage-wrap .nf-field-element ul,
.contact-form-wrapper .nf-error .ninja-forms-field {
  border-color: transparent;
  border: 0;
}

.contact-form-wrapper .nf-pass .ninja-forms-field {
  border-color: green;
}

.contact-form-wrapper label .nf-error-msg,
.contact-form-wrapper label .ninja-forms-req-symbol {
  color: #000000;
}

.hbspt-form .form-control,
.hbspt-form .hs-fieldtype-text .hs-input,
.hbspt-form .hs-fieldtype-phonenumber .hs-input,
.hbspt-form .hs-fieldtype-select select {
  border: 1px solid #c4c4c4;
  outline: none;
  border-radius: 8px;
  font-size: 16px !important;
  line-height: 1 !important;
  color: #000;
  font-family: "CeraPro", sans-serif;
  padding: 13px 30px 13px 10px !important;
  -webkit-transition: border-color 0.2s ease-out, -webkit-box-shadow 0.2s ease-out;
  transition: border-color 0.2s ease-out, -webkit-box-shadow 0.2s ease-out;
  transition: border-color 0.2s ease-out, box-shadow 0.2s ease-out;
  transition: border-color 0.2s ease-out, box-shadow 0.2s ease-out, -webkit-box-shadow 0.2s ease-out;
  background: #fff;
}

.hbspt-form .form-control:focus,
.hbspt-form .hs-fieldtype-text .hs-input:focus,
.hbspt-form .hs-fieldtype-phonenumber .hs-input:focus,
.hbspt-form .hs-fieldtype-select select:focus {
  border-color: #f6c534;
  -webkit-box-shadow: 0 0 0 2.5px rgba(246, 197, 52, 0.25);
          box-shadow: 0 0 0 2.5px rgba(246, 197, 52, 0.25);
}

.hbspt-form .form-select,
.hbspt-form .hs-fieldtype-select select {
  padding: 15px 30px 15px 10px !important;
  background: #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e") no-repeat right 0.75rem center;
  background-size: 16px 12px;
}

.hbspt-form .actions {
  text-align: center;
}

.hbspt-form input[type=submit] {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  margin-top: 10px;
  border-radius: 17px;
  background: #3956df;
  color: #fff;
  border: 1px solid #3956df;
  height: 50px;
  padding: 0 50px;
}

.hbspt-form .hs-fieldtype-text,
.hbspt-form .hs-fieldtype-phonenumber {
  position: relative;
}

.hbspt-form .hs-fieldtype-text .hs-input,
.hbspt-form .hs-fieldtype-phonenumber .hs-input {
  width: 100% !important;
}

.hbspt-form .hs-fieldtype-text .hs-input.invalid,
.hbspt-form .hs-fieldtype-text .hs-input.error,
.hbspt-form .hs-fieldtype-phonenumber .hs-input.invalid,
.hbspt-form .hs-fieldtype-phonenumber .hs-input.error {
  border-color: #f45351;
  -webkit-box-shadow: 0 0 0 2.5px rgba(244, 83, 81, 0.25);
          box-shadow: 0 0 0 2.5px rgba(244, 83, 81, 0.25);
  background: #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e") no-repeat calc(100% - 10px) center;
  background-size: 18px 18px;
}

.hbspt-form select.invalid,
.hbspt-form select.error {
  border-color: #f45351;
  -webkit-box-shadow: 0 0 0 2.5px rgba(244, 83, 81, 0.25);
          box-shadow: 0 0 0 2.5px rgba(244, 83, 81, 0.25);
  background: #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e") no-repeat calc(100% - 10px) center;
  background-size: 18px 18px;
}

.hbspt-form .hs-fieldtype-select {
  margin-bottom: 28px;
  position: relative;
}

.hbspt-form .hs-fieldtype-select select {
  width: 100% !important;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.hbspt-form .hs-form-booleancheckbox input:focus {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.hbspt-form .hs-fieldtype-booleancheckbox {
  position: relative;
  -webkit-transform: translateY(-10px);
      -ms-transform: translateY(-10px);
          transform: translateY(-10px);
}

.hbspt-form .hs-fieldtype-booleancheckbox ul {
  padding-left: 0;
  list-style-type: none;
}

.hbspt-form .hs-fieldtype-booleancheckbox ul a {
  color: #007bff;
  text-decoration: none;
}

.hbspt-form .hs-fieldtype-booleancheckbox ul label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.hbspt-form .hs-fieldtype-booleancheckbox ul label span {
  color: #707070;
}

.hbspt-form .hs-fieldtype-booleancheckbox ul label input {
  margin: 2px 10px 0 0;
}

.hbspt-form input[type=checkbox] {
  border: 1px solid rgba(0, 0, 0, 0.25);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 16px !important;
  height: 16px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 3px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.hbspt-form input[type=checkbox]:focus {
  -webkit-box-shadow: 0 0 0 0.35rem #f6c534;
          box-shadow: 0 0 0 0.35rem #f6c534;
}

.hbspt-form input[type=checkbox]:checked {
  border-color: #f6c534;
  background: #f6c534 url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
}

.hbspt-form fieldset {
  max-width: unset !important;
}

.hbspt-form .hs-form-field {
  margin-bottom: 30px !important;
}

.hbspt-form .was-validated .hs-input:not(.invalid) {
  border-color: #f6c534;
  background: #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23f3b831' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") no-repeat calc(100% - 10px) center;
  background-size: 15px 15px;
}

.hbspt-form .was-validated .hs-input:not(.invalid):focus {
  border-color: #f6c534;
  -webkit-box-shadow: 0 0 0 2.5px rgba(246, 197, 52, 0.25);
          box-shadow: 0 0 0 2.5px rgba(246, 197, 52, 0.25);
}

.hbspt-form .form-submitted {
  pointer-events: none;
  opacity: 0.5;
}

.hbspt-form .hs-error-msgs {
  position: absolute;
  left: 12px;
  bottom: -20px;
  list-style-type: none;
  padding-left: 0;
  margin: 0;
  font-size: 1.2rem;
  color: #f45351;
  pointer-events: none;
  min-width: -webkit-max-content;
  min-width: -moz-max-content;
  min-width: max-content;
}

.hbspt-form .hs-fieldtype-text > label,
.hbspt-form .hs-fieldtype-phonenumber > label,
.hbspt-form .hs-fieldtype-select > label {
  position: absolute;
  top: 0;
  left: 20px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  padding: 0 5px;
  font-size: 18px;
  color: #707070;
  background: #fff;
  pointer-events: none;
}

.hbspt-form span {
  color: inherit !important;
}

.hbspt-form .inputs-list {
  font-size: 10px !important;
  bottom: -25px !important;
}

.hbspt-form .inputs-list li {
  color: inherit !important;
  padding-left: 0 !important;
  font-size: inherit !important;
}

.hbspt-form .inputs-list li::before {
  content: unset;
}

.hbspt-form .nf-form-content label {
  font-size: unset;
}

.footer__logo img {
  max-width: 120px;
  margin-bottom: 30px;
}

.footer__logo p {
  font-size: var(--text--xs);
}

.footer__widget p {
  font-size: var(--text--xs);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  margin-bottom: 15px;
}

.footer__widget p a {
  color: #ffffff;
}

.footer__widget p a::after {
  display: none;
}

.footer__widget p a:hover {
  color: #47bb5c;
}

.footer__widget img {
  max-width: 19px;
  margin-right: 10px;
}

.footer__widget a {
  color: #ffffff;
}

.footer__widget a::after {
  display: none;
}

.footer__widget a:hover {
  color: #47bb5c;
}

.footer__links ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.footer__links ul li {
  margin-left: 50px;
}

.footer__links ul li:first-child {
  margin-left: 0;
}

.footer__links ul li a {
  color: #ffffff;
  font-size: var(--text--xs);
}

.footer__links ul li a:hover {
  color: #47bb5c;
}

.footer__links ul li a::after {
  display: none;
}

@media (min-width: 992px) {
  .hero__text__block {
    max-width: calc((100% - 960px) / 2 + 400px);
    padding-left: calc((100% - 960px) / 2 + 10px);
  }

  .left__img__block {
    max-width: calc((100% - 1140px) / 2 + 665px);
  }

  .right__text__block {
    max-width: calc((100% - 1140px) / 2 + 665px);
    /*padding-right: calc((100% - 1140px) / 2 + 140px);*/
    padding-right: calc((100% - 1140px) / 2);
  }

  .hbspt-form .hs-fieldtype-booleancheckbox ul {
    width: 70%;
  }
}

@media (min-width: 1200px) {
  .hero__text__block {
    max-width: calc((100% - 1140px) / 2 + 475px);
    padding-left: calc((100% - 1140px) / 2 + 10px);
  }

  .left__img__block {
    max-width: calc((100% - 1320px) / 2 + 665px);
  }

  .right__text__block {
    max-width: calc((100% - 1320px) / 2 + 665px);
    /*padding-right: calc((100% - 1320px) / 2 + 140px);*/
    padding-right: calc((100% - 1320px) / 2);
  }

  .sib_signup_form {
    padding-right: 20px;
  }
}

@media (min-width: 1400px) {
  :root {
    --bs-gutter-x: 3rem;
  }

  .row {
    --bs-gutter-x: 3rem;
    margin-right: calc(var(--bs-gutter-x) * -1);
    margin-left: calc(var(--bs-gutter-x) * -1);
  }

  .row .row {
    --bs-gutter-x: 3rem;
    margin-right: calc(var(--bs-gutter-x) * -0.5);
    margin-left: calc(var(--bs-gutter-x) * -0.5);
  }

  .hero__text__block {
    max-width: calc((100% - 1320px) / 2 + 770px);
    padding-left: calc((100% - 1320px) / 2 + 22px);
  }

  .slider__arrow {
    width: 100px;
    height: 100px;
    top: 31%;
  }

  .slider__arrow.prev {
    left: -50px;
    padding-left: 27px;
  }

  .slider__arrow.next {
    right: -50px;
    padding-right: 27px;
  }

  .slider__arrow img {
    max-width: 16px;
  }
}

@media (max-width: 1599.98px) {
  .mt-160 {
    margin-top: 150px;
  }
}

@media (max-width: 1399.98px) {
  .mt-160 {
    margin-top: 130px;
  }

  .right__text__block {
    padding-left: 70px;
  }

  .animate--img--right figure {
    top: 9%;
  }

  .bg__circle__shape.right--align {
    bottom: 23%;
    right: 0;
  }

  .bg__circle__shape.center--align {
    top: 60px;
  }
}

@media (max-width: 1199.98px) {
  .mt-160 {
    margin-top: 90px;
  }

  .hero__text__block h1 {
    font-size: 35px;
    line-height: 1.38;
  }

  .bg__circle__shape {
    max-width: 400px;
    height: 400px;
  }

  .cta__block {
    padding: 50px 60px;
  }
}

@media (max-width: 991.98px) {
  :root {
    --text--xss: 12px;
  }

  :root {
    --text--xs: 15px;
  }

  :root {
    --text--s: 18px;
  }

  :root {
    --text--sm: 21px;
  }

  :root {
    --text--md: 23px;
  }

  :root {
    --text--m: 28px;
  }

  :root {
    --text--l: 35px;
  }

  .pt-175 {
    padding-top: 125px;
  }

  .pb-175 {
    padding-bottom: 125px;
  }

  .pt-200 {
    padding-top: 150px;
  }

  .pb-200 {
    padding-bottom: 150px;
  }

  .mt-30 {
    margin-top: 20px;
  }

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

  .mt-40 {
    margin-top: 20px;
  }

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

  .mt-80 {
    margin-top: 60px;
  }

  .mb-80 {
    margin-bottom: 60px;
  }

  .mb-100 {
    margin-bottom: 80px;
  }

  .mt-100 {
    margin-top: 80px;
  }

  .mb-140 {
    margin-bottom: 100px;
  }

  .mt-150 {
    margin-top: 120px;
  }

  .mb-150 {
    margin-bottom: 120px;
  }

  .bg--gradient--light-blue-white {
    background: #f4f8fc;
  }

  .text--lineheight37 p {
    line-height: 30px;
  }

  .navbar__toggler {
    display: block;
  }

  .navbar__toggler.change span {
    background: #ffffff;
  }

  .header__menu {
    position: fixed;
    right: -100%;
    height: 100%;
    width: 100%;
    background: #47bb5c;
    bottom: 0;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    padding: 130px 30px 30px 40px;
  }

  .header__menu.open {
    right: 0%;
  }

  .header__menu .navbar {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    width: 100%;
  }

  .header__menu ul {
    display: inline-block;
    text-align: left;
    width: 100%;
  }

  .header__menu ul li {
    padding: 13px 0;
  }

  .header__menu ul li a {
    font-size: 17px;
    color: #ffffff;
  }

  .header__menu ul li.active a {
    color: #1f4b67;
  }

  .header__menu ul li:hover a {
    color: #1f4b67;
  }

  .header__menu ul li::after a {
    background-color: #1f4b67;
  }

  .hero__text__block h1 {
    font-size: 30px;
    line-height: 1.28;
  }

  .hero__img__module {
    height: 100%;
  }

  .hero__img__module .hero__text__block {
    padding-left: 15px;
    max-width: 720px;
    margin: 0 auto;
    padding-top: 20px;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }

  .hero__img__module .hero__img__block {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    padding-top: 0;
    margin-bottom: 30px;
  }

  .hero__img__module .circle--shape {
    width: 40rem;
    height: 40rem;
    left: -42%;
    top: -7%;
    right: auto;
    bottom: auto;
    border-radius: 100vh 100vh 100vh 100vh;
  }

@-webkit-keyframes zoomin {
    0% {
      left: -48%;
      top: -10%;
    }

    100% {
      left: -42%;
      top: -7%;
    }
}

@keyframes zoomin {
    0% {
      left: -48%;
      top: -10%;
    }

    100% {
      left: -42%;
      top: -7%;
    }
}

  .left__img__block {
    padding: 0;
  }

  .right__text__block {
    padding: 30px 15px 90px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }

  .title__text__block {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }

  .animate__img__block {
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-line-pack: center;
        align-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 50px;
  }

  .animate--img--right figure {
    top: 0;
    left: auto;
  }

  .bg__circle__shape.right--align {
    right: auto;
    left: auto;
    bottom: 0;
  }

  .bg__circle__shape.center--align {
    top: 30px;
  }

  .animate--img--left figure {
    right: auto;
    top: 0;
  }

  .accordion__block .card-header {
    padding-left: 40px;
  }

  .accordion__block .card-header.show i {
    top: 30px;
  }

  .accordion__block .card-body {
    padding: 60px 40px 60px;
  }

  .accordion__block {
    margin-bottom: 20px;
  }

  .accordion__block .card-header i {
    top: 23px;
  }

  .accordion__block .card-body {
    padding: 40px 40px 60px;
  }

  .comparison__item ul li::before {
    width: 20px;
    height: 20px;
  }

  .contact-form-wrapper #ninja_forms_required_items,
  .contact-form-wrapper .nf-field-container {
    margin-bottom: 5px;
  }

  .contact-form-wrapper .label-right .field-wrap,
  .contact-form-wrapper .label-left .field-wrap {
    margin-top: 20px;
  }
}

@media (max-width: 767.98px) {
  :root {
    --text--xss: 12px;
  }

  :root {
    --text--xs: 15px;
  }

  :root {
    --text--s: 17px;
  }

  :root {
    --text--sm: 19px;
  }

  :root {
    --text--md: 20px;
  }

  :root {
    --text--m: 24px;
  }

  :root {
    --text--l: 30px;
  }

  .standard__text ol li {
    font-size: var(--text--s);
  }

  .standard__text ul li {
    font-size: var(--text--s);
  }

  .pv-75 {
    padding-top: 55px;
    padding-bottom: 55px;
  }

  .pv-125 {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .pt-125 {
    padding-top: 100px;
  }

  .pb-125 {
    padding-bottom: 100px;
  }

  .pv-150 {
    padding-top: 125px;
    padding-bottom: 125px;
  }

  .pt-150 {
    padding-top: 125px;
  }

  .pb-150 {
    padding-bottom: 125px;
  }

  .pv-175 {
    padding-top: 125px;
    padding-bottom: 125px;
  }

  .pv-200 {
    padding-top: 150px;
    padding-bottom: 150px;
  }

  .font--size24 p {
    font-size: var(--text--xs);
    line-height: 25px;
  }

  .font--size--small p {
    font-size: var(--text--s);
    line-height: 25px;
  }

  .header__nav__module {
    padding: 10px 0;
  }

  .header__nav__module .header__logo {
    max-width: 120px;
  }

  .header__nav__module .header__logo a img {
    min-width: 100%;
    max-width: 100%;
  }

  .header__nav__module .header__right__module {
    max-width: 80px;
  }

  .header__nav__module .header__right__module .header__menu {
    padding: 130px 30px 30px 20px;
    max-width: 100%;
  }

  .header__nav__module .header--right--icons ul {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }

  .header__nav__module .navbar__toggler {
    margin-left: 20px;
  }

  .hero__img__module .circle--shape {
    width: 35rem;
    height: 35rem;
  }

  .right__text__block {
    max-width: 540px;
  }

  .heading__border__bottom h2 {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }

  .testimonial__slides {
    padding: 0 35px;
  }

  .slider__arrow {
    width: 53px;
    height: 60px;
  }

  .cta__block {
    padding: 40px;
    max-width: 96%;
  }

  .bg--img {
    position: relative;
    background-repeat: repeat;
    background-size: contain;
    background-position: center center;
    background-attachment: fixed;
    background-image: none !important;
  }

  .bg--img:after {
    content: "";
    position: fixed;
    top: 0;
    height: 100vh;
    left: 0;
    right: 0;
    z-index: -1;
    background: url("../assets/img/cta-img.jpg") center center;
    background-size: cover;
  }

  .accordion__block {
    margin-bottom: 20px;
  }

  .accordion__block .card-header {
    padding: 15px 40px 15px 20px;
  }

  .accordion__block .card-header i {
    top: 18px;
    right: 20px;
    width: 13px;
  }

  .accordion__block .card-body {
    padding: 30px 20px 40px;
  }

  .team__img {
    margin-bottom: 15px !important;
  }

  .contact-form-wrapper .submit-wrap .nf-field-element {
    margin: auto;
  }

  .footer__widget h5 {
    font-size: var(--text--sm);
    margin-bottom: 10px;
  }
}

@media (max-width: 575.98px) {
  .pt-75 {
    padding-top: 55px;
  }

  .pb-75 {
    padding-bottom: 55px;
  }

  .pt-100 {
    padding-top: 75px;
  }

  .pb-100 {
    padding-bottom: 75px;
  }

  .pv-100 {
    padding-top: 75px;
    padding-bottom: 75px;
  }

  .pv-125 {
    padding-top: 75px;
    padding-bottom: 75px;
  }

  .pt-125 {
    padding-top: 75px;
  }

  .pb-125 {
    padding-bottom: 75px;
  }

  .pv-150 {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .pt-150 {
    padding-top: 80px;
  }

  .pb-150 {
    padding-bottom: 80px;
  }

  .pv-175 {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .pt-175 {
    padding-top: 100px;
  }

  .pb-175 {
    padding-bottom: 100px;
  }

  .pv-200 {
    padding-top: 125px;
    padding-bottom: 125px;
  }

  .pt-200 {
    padding-top: 125px;
  }

  .pb-200 {
    padding-bottom: 125px;
  }

  .mt-50 {
    margin-top: 30px;
  }

  .mb-50 {
    margin-bottom: 30px;
  }

  .mt-60 {
    margin-top: 50px;
  }

  .mb-60 {
    margin-bottom: 50px;
  }

  .mt-80 {
    margin-top: 40px;
  }

  .mb-80 {
    margin-bottom: 40px;
  }

  .mb-140 {
    margin-bottom: 60px;
  }

  .mt-150 {
    margin-top: 70px;
  }

  .mb-150 {
    margin-bottom: 70px;
  }

  .mt-160 {
    margin-top: 80px;
  }

  .header__module .header__nav__module {
    padding: 20px 0 20px 0;
  }

  .hero__img__module .circle--shape {
    width: 25rem;
    height: 25rem;
  }

  .hbspt-form .form-control,
  .hbspt-form .hs-fieldtype-text .hs-input,
  .hbspt-form .hs-fieldtype-phonenumber .hs-input,
  .hbspt-form .hs-fieldtype-select select {
    font-size: 1.6rem;
    padding: 12px 30px 12px 10px !important;
  }

  .hbspt-form .form-select,
  .hbspt-form .hs-fieldtype-select select {
    padding: 14px 30px 14px 10px !important;
    width: 100% !important;
  }

  .hbspt-form .hs-fieldtype-text > label,
  .hbspt-form .hs-fieldtype-phonenumber > label,
  .hbspt-form .hs-fieldtype-select > label {
    font-size: 1.5rem;
    left: 15px;
  }
}

@media (max-width: 475.98px) {
  .bg__circle__shape {
    max-width: 340px;
    height: 340px;
  }
}

@media (max-width: 375.98px) {
  .bg__circle__shape {
    max-width: 300px;
    height: 300px;
  }
}

@media screen and (min-device-width: 992px) and (max-device-width: 1200px) {
  .hero__img__module .circle--shape {
    width: 85vh;
    height: 85vh;
    bottom: -7%;
    right: -19%;
  }

@-webkit-keyframes zoomin {
    0% {
      bottom: -13%;
    }

    100% {
      bottom: -7%;
    }
}

@keyframes zoomin {
    0% {
      bottom: -13%;
    }

    100% {
      bottom: -7%;
    }
}
}