* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-decoration: none;
  scroll-behavior: smooth;
}
a,
button:active,
button:focus,
input:active,
input:focus {
  outline: 0 !important;
}
a:hover {
  text-decoration: none;
}

/* form */
.formbox {
  max-width: 547px;
  width: 100%;
}
.filed_group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
}
.intl-tel-input {
  width: 100%;
}
#fname,
#lname,
#email,
#phone {
  color: #000;
  font-family: Roboto;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  border: 1px solid #9d9d9d;
  border-radius: 10px;
  background: #fff;
  width: 100%;
  padding: 18px 20px;
  margin-bottom: 14px;
}
#phone {
  padding-left: 60px;
  margin: 0;
}
.submit {
  display: inline-block;
  width: 100%;
  color: #fff;
  font-family: Roboto;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  border-radius: 10px;
  background: #18c862;
  border: 0;
  cursor: pointer;
  margin-top: 17px;
  padding: 18px 0;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.submit:hover {
  -webkit-box-shadow: 0 0 10px #18c862;
  box-shadow: 0 0 10px #18c862;
}
#checklabel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 11px;
  margin-top: 32px;
}
.formSub {
  color: #6e6e73;
  font-family: Roboto;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.formSub a {
  color: #00f;
}
.error-msg {
  display: block;
  margin-top: 20px;
  color: red;
  font-size: 20px;
}
.formImg img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}
.loadingView {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.loadingView img {
  max-width: 100%;
}

/* container */
.container {
  max-width: 1123px;
  margin: 0 auto;
}

/* intro */
.intro {
  background: url('../../assets/img/introBg.png');
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: cover;
  padding-top: 49px;
  padding-bottom: 225px;
}
.introTop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.logo img {
  display: block;
  max-width: 100%;
}
.introLinks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.introLink {
  display: block;
  width: 144px;
  color: #fff;
  text-align: center;
  font-family: Roboto;
  font-size: 15.8px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.introLink:hover {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.introContent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 146px;
}
.introText {
  width: 46%;
}
.title {
  color: #fff;
  font-family: Roboto;
  font-size: 43.2px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.title span {
  color: #18c862;
}
.introSub {
  margin-top: 28px;
}
.sub {
  color: #fff;
  font-family: Roboto;
  font-size: 21.6px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}
.btn {
  display: inline-block;
  color: #fff;
  text-align: center;
  font-family: Roboto;
  font-size: 15.8px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  text-transform: uppercase;
  border-radius: 7.2px;
  padding: 31px 0;
  width: 273px;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#22ba8c),
    to(#0cab50)
  );
  background: -o-linear-gradient(left, #22ba8c 0%, #0cab50 100%);
  background: linear-gradient(90deg, #22ba8c 0%, #0cab50 100%);
  margin-top: 28px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.btn:hover {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}
.introVideo {
  position: relative;
  width: 48%;
  height: 303px;
}
.introVideo iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

/* wrapper */
.wrapper {
  background: url('../../assets/img/wrapperBg.png');
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: cover;
  padding-top: 166px;
  padding-bottom: 235px;
}

/* what */
.whatInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.whatImg {
  width: 53%;
}
.whatImg img {
  display: block;
  max-width: 100%;
}
.whatText {
  width: 40%;
}
.whatSub {
  margin-top: 15px;
}

/* platform */
.platform {
  margin-top: 230px;
}
.platformInner {
  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;
  gap: 100px;
}
.platformText {
  width: 40%;
}
.platformSub {
  margin-top: 19px;
}
.platformImg {
  width: 38%;
}
.platformImg img {
  display: block;
  max-width: 100%;
}

/* items */
.items {
  background: url('../../assets/img/itemsBg.png');
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: cover;
  padding-top: 138px;
  padding-bottom: 176px;
}
.itemsTitle {
  color: #fff;
  font-family: Roboto;
  text-align: center;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.itemsBlocks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 80px;
}
.itemBlock {
  width: 32%;
  border-radius: 20px;
  border: 1px solid #1e1e1e;
  padding: 15px;
}
.itemBlockImg img {
  display: block;
  max-width: 100%;
}
.itemBlockTitle {
  color: #fff;
  font-family: Roboto;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-top: 15px;
}
.itemBlockSub {
  color: #6e6e73;
  font-family: Roboto;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-top: 12px;
}

/* numbers */
.numbers {
  background: url('../../assets/img/numbersBg.png');
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: cover;
  padding-top: 152px;
  padding-bottom: 127px;
}
.numbersSub {
  color: #6e6e73;
  text-align: center;
  font-family: Roboto;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.numbersTitle {
  color: #fff;
  text-align: center;
  font-family: Roboto;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-top: 32px;
}
.numbersSub1 {
  color: #fff;
  text-align: center;
  font-family: Roboto;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-top: 12px;
}
.numbersBlocks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-width: 1015px;
  margin: 0 auto;
  margin-top: 119px;
}
.numberBlockTitle {
  color: #0cab50;
  font-family: Roboto;
  font-size: 64px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.numberBlockSub {
  color: #fff;
  font-family: Roboto;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

/* start */
.start {
  background: url('../../assets/img/itemsBg.png');
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: cover;
  padding-top: 130px;
  padding-bottom: 184px;
}
.startTitle {
  color: #fff;
  text-align: center;
  font-family: Roboto;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.startBlocks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 80px;
}
.startBlock {
  width: 32%;
  border-radius: 20px;
  border: 1px solid #1e1e1e;
  padding: 40px 30px 40px 25px;
}
.startBlockNumber {
  color: #0cab50;
  font-family: Roboto;
  font-size: 64px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.startBlockTitle {
  color: #fff;
  font-family: Roboto;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-top: 15px;
}
.startBlockSub {
  color: #6e6e73;
  font-family: Roboto;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-top: 12px;
}

/* get */
.get {
  background: url('../../assets/img/getBg.png');
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: cover;
  padding-top: 142px;
  padding-bottom: 161px;
}
.getInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.getText {
  width: 40%;
}
.getSub {
  margin-top: 12px;
}

/* footer */
.footer {
  background: #000;
  padding: 15px 0;
}
.footerTop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.footerLogo img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}
.footerLinks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
}
.footerLink {
  color: #fff;
  font-family: Roboto;
  font-size: 14.4px;
  font-style: normal;
  font-weight: 200;
  line-height: normal;
}
.footerLink:not(:last-child) {
  padding-right: 15px;
  border-right: 1px solid #fff;
}
.footerSub {
  color: #fff;
  text-align: right;
  font-family: Roboto;
  font-size: 14.4px;
  font-style: normal;
  font-weight: 200;
  line-height: normal;
}
.footerSubs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
  margin-top: 15px;
}
.footerSub1 {
  color: #fff;
  font-family: Roboto;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 12px;
}
