*,
*::after,
*::before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body {
  padding: 0;
  margin: 0;
  width: 100%;
}

body {
  position: relative;
  font-family: Poppins;
}

html {
  height: 100%;
}

.container {
  max-width: 1200px;
  width: 100%;
  display: inherit;
  -webkit-box-pack: inherit;
      -ms-flex-pack: inherit;
          justify-content: inherit;
  -webkit-box-align: inherit;
      -ms-flex-align: inherit;
          align-items: inherit;
  margin: auto;
  padding: 0 20px;
}

#sticky {
  position: fixed;
  width: 100%;
  bottom: 0;
  border-radius: 0px;
  z-index: 10;
}

@-webkit-keyframes pulse {
  50% {
    opacity: 0.7;
    -webkit-transform: scale(0.9) rotate(5deg);
            transform: scale(0.9) rotate(5deg);
    -webkit-filter: hue-rotate(-20deg);
            filter: hue-rotate(-20deg);
  }
  0%,
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-filter: none;
            filter: none;
  }
}

@keyframes pulse {
  50% {
    opacity: 0.7;
    -webkit-transform: scale(0.9) rotate(5deg);
            transform: scale(0.9) rotate(5deg);
    -webkit-filter: hue-rotate(-20deg);
            filter: hue-rotate(-20deg);
  }
  0%,
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-filter: none;
            filter: none;
  }
}

@-webkit-keyframes fireworks {
  to {
    -webkit-mask-position: 100%;
            mask-position: 100%;
  }
}

@keyframes fireworks {
  to {
    -webkit-mask-position: 100%;
            mask-position: 100%;
  }
}

body[lang] .button {
  color: #ffffff;
  font-size: 32px;
  font-weight: 700;
  border-radius: 40px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#e2bb6a), to(#bf8512));
  background-image: linear-gradient(180deg, #e2bb6a 0%, #bf8512 100%);
  padding: 6px 40px;
  border: none;
  cursor: pointer;
  position: relative;
  -webkit-box-shadow: 0px 0px 0px 0px #e2bb6a;
          box-shadow: 0px 0px 0px 0px #e2bb6a;
  -webkit-transition: -webkit-box-shadow 1s linear;
  transition: -webkit-box-shadow 1s linear;
  transition: box-shadow 1s linear;
  transition: box-shadow 1s linear, -webkit-box-shadow 1s linear;
}

body[lang] .button:hover {
  -webkit-box-shadow: 2px 0px 10px 1px #e2ba6a94, -2px 0px 10px 1px #e2ba6a94, 0px 2px 10px 1px #e2ba6a94, 0px -2px 10px 1px #e2ba6a94;
          box-shadow: 2px 0px 10px 1px #e2ba6a94, -2px 0px 10px 1px #e2ba6a94, 0px 2px 10px 1px #e2ba6a94, 0px -2px 10px 1px #e2ba6a94;
}

body[lang] .main {
  background: url(./main_BG_1920.png) no-repeat center top;
  min-height: 892px;
  color: #ffffff;
}

body[lang] .main header {
  padding-top: 65px;
}

body[lang] .main header #logo {
  height: 56px;
  background: url(./logo.svg) no-repeat center left;
  background-size: auto 56px;
}

body[lang] .main__title {
  font-size: 45px;
  line-height: 110%;
  font-weight: 600;
  margin-top: 40px;
  max-width: 600px;
}

body[lang] .main__sub_title {
  font-size: 30px;
  margin-top: 16px;
  max-width: 600px;
}

body[lang] .main .button {
  margin-top: 35px;
}

body[lang] .main__box_title {
  position: relative;
  padding: 25px 40px;
  text-align: center;
  margin-top: 122px;
  text-shadow: 0 0 6px #000000;
  color: #ffffff;
  font-size: 36px;
  font-weight: 600;
}

body[lang] .main__box_title::before, body[lang] .main__box_title::after {
  content: '';
  width: 343px;
  height: 133px;
  position: absolute;
  background: url(./border.png) no-repeat center top;
}

body[lang] .main__box_title::before {
  bottom: 0;
  left: 0;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

body[lang] .main__box_title::after {
  top: 0;
  right: 0;
}

body[lang] .bullets {
  color: #353535;
}

body[lang] .bullets__title {
  font-size: 35px;
  font-weight: 500;
}

body[lang] .bullets .bullet {
  font-family: 'Nunito Sans';
  font-size: 28px;
  -webkit-padding-start: 40px;
          padding-inline-start: 40px;
  position: relative;
  margin-top: 14px;
  line-height: 110%;
}

body[lang] .bullets .bullet::before {
  content: '';
  position: absolute;
  width: 40px;
  height: 40px;
  top: 3px;
  opacity: 1;
  left: 0;
  background: url(./bullet.svg) no-repeat;
  -webkit-animation: pulse 3s linear infinite alternate;
          animation: pulse 3s linear infinite alternate;
}

body[lang] .bullets--first .container {
  background: url(./bullets_1_BG_1920.png) no-repeat bottom right;
  min-height: 420px;
  padding-top: 85px;
}

body[lang] .bullets--first .bullet {
  max-width: 600px;
}

body[lang] .bullets--second .container {
  background: url(./bullets_2_BG_1920.png) no-repeat center left;
  min-height: 400px;
  padding: 40px 20px 85px;
  -webkit-padding-start: 625px;
          padding-inline-start: 625px;
}

body[lang] .steps {
  background: url(./steps_BG_1920.png) no-repeat center top;
  text-align: center;
  min-height: 1020px;
  padding-top: 67px;
}

body[lang] .steps__title {
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.16);
  color: #ffffff;
  font-size: 40px;
}

body[lang] .steps .step {
  color: #353535;
  position: relative;
  font-family: 'Nunito Sans';
  font-size: 30px;
  font-weight: 600;
  padding: 30px 80px;
  background-color: #ffffff;
  border-radius: 150px;
  -webkit-padding-start: 180px;
          padding-inline-start: 180px;
  margin-top: 50px;
  text-align: initial;
}

body[lang] .steps .step::before {
  content: '';
  width: 182px;
  height: 189px;
  position: absolute;
  left: 0;
  bottom: 0;
}

body[lang] .steps .step:nth-of-type(2) {
  padding: 12px 80px;
  -webkit-padding-start: 180px;
          padding-inline-start: 180px;
}

body[lang] .steps .step:nth-of-type(2)::before {
  background: url("./1.svg") no-repeat center bottom 20px;
  background-size: auto 110px;
}

body[lang] .steps .step:nth-of-type(3)::before {
  background: url("./2.svg") no-repeat center bottom 20px;
  background-size: auto 110px;
}

body[lang] .steps .step:nth-of-type(4)::before {
  background: url("./3.svg") no-repeat center bottom 20px;
  background-size: auto 110px;
}

body[lang] .steps .step:nth-of-type(5)::before {
  background: url("./4.svg") no-repeat center bottom 20px;
  background-size: auto 110px;
}

body[lang] .steps__button {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#e2bb6a), to(#bf8512));
  background-image: linear-gradient(180deg, #e2bb6a 0%, #bf8512 100%);
  border-radius: 90px;
  padding: 6px;
  border: none;
  cursor: pointer;
  color: #000000;
  font-size: 34px;
  font-weight: 700;
  margin-top: 120px;
  position: relative;
}

body[lang] .steps__button span {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #ffffff;
  border-radius: 90px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: background 0.5s ease, color 0.5s ease;
  transition: background 0.5s ease, color 0.5s ease;
  padding: 8px 100px;
}

body[lang] .steps__button span:hover {
  background: transparent;
  color: #ffffff;
}

body[lang] .steps__button::before, body[lang] .steps__button::after {
  content: '';
  position: absolute;
  width: 150px;
  height: 150px;
  -webkit-mask: url("./fireworks_v2.png") right top no-repeat;
          mask: url("./fireworks_v2.png") right top no-repeat;
  -webkit-mask-size: auto 150px;
          mask-size: auto 150px;
  -webkit-mask-position: 0%;
          mask-position: 0%;
  -webkit-animation: fireworks 1.5s steps(24) infinite;
          animation: fireworks 1.5s steps(24) infinite;
  background-color: #e2bb6a;
}

body[lang] .steps__button:hover::before, body[lang] .steps__button:hover::after {
  background-color: #ffffff;
}

body[lang] .steps__button::before {
  left: -50px;
  bottom: -50px;
}

body[lang] .steps__button::after {
  right: -50px;
  top: -50px;
  -webkit-animation-delay: 600ms;
          animation-delay: 600ms;
}

body[lang] footer {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#00000010), to(#18315910));
  background-image: linear-gradient(180deg, #00000010 0%, #18315910 100%);
  color: #353535;
  font-family: 'Nunito Sans';
  font-size: 16px;
  padding: 40px 0px;
  text-align: center;
}

body[lang] .dropshadow {
  position: absolute;
  top: 0;
  background-color: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  padding-top: 65px;
}

body[lang] .dropshadow form {
  position: relative;
  text-align: center;
  background-color: #ffffff;
  padding: 60px;
  max-width: 550px;
  margin: auto;
}

body[lang] .dropshadow form .dropshadow__close_btn {
  position: absolute;
  width: 21px;
  height: 21px;
  top: 20px;
  right: 20px;
  background: url("./close.png") no-repeat center;
  background-size: 21px 21px;
  cursor: pointer;
}

body[lang] .dropshadow form .form_title {
  margin-bottom: 25px;
  color: #1b417b;
  font-size: 22px;
}

body[lang] .dropshadow form select,
body[lang] .dropshadow form input {
  width: 100%;
  font-size: 16px;
  height: 44px;
  border-radius: 5px;
  border: 1px solid #221f1f;
  padding-left: 14px;
  color: #535353;
  outline: none;
  background-color: #ffffff;
}

body[lang] .dropshadow form select::-webkit-input-placeholder,
body[lang] .dropshadow form input::-webkit-input-placeholder {
  color: #535353;
}

body[lang] .dropshadow form select:-ms-input-placeholder,
body[lang] .dropshadow form input:-ms-input-placeholder {
  color: #535353;
}

body[lang] .dropshadow form select::-ms-input-placeholder,
body[lang] .dropshadow form input::-ms-input-placeholder {
  color: #535353;
}

body[lang] .dropshadow form select::placeholder,
body[lang] .dropshadow form input::placeholder {
  color: #535353;
}

body[lang] .dropshadow form select:focus,
body[lang] .dropshadow form input:focus {
  border: 2px solid #1b417b;
  color: #1b417b;
}

body[lang] .dropshadow form select:focus::-webkit-input-placeholder,
body[lang] .dropshadow form input:focus::-webkit-input-placeholder {
  color: #1b417b;
}

body[lang] .dropshadow form select:focus:-ms-input-placeholder,
body[lang] .dropshadow form input:focus:-ms-input-placeholder {
  color: #1b417b;
}

body[lang] .dropshadow form select:focus::-ms-input-placeholder,
body[lang] .dropshadow form input:focus::-ms-input-placeholder {
  color: #1b417b;
}

body[lang] .dropshadow form select:focus::placeholder,
body[lang] .dropshadow form input:focus::placeholder {
  color: #1b417b;
}

body[lang] .dropshadow form .Form_Element_Holder_Div {
  text-align: initial;
  margin-bottom: 20px;
}

body[lang] .dropshadow form input[type='radio'],
body[lang] .dropshadow form input[type='checkbox'] {
  width: 17px;
  height: 17px;
  -webkit-box-shadow: none;
          box-shadow: none;
}

body[lang] .dropshadow form #gdpr {
  margin-top: 20px;
}

body[lang='fr'] .button,
body[lang='es'] .button {
  font-size: 28px;
}

body[lang='fr'] .main__title,
body[lang='es'] .main__title {
  font-size: 41px;
}

body[lang='fr'] .main__box_title,
body[lang='es'] .main__box_title {
  font-size: 32px;
}

body[lang='fr'] .bullets__title,
body[lang='es'] .bullets__title {
  max-width: 570px;
}

body[lang='fr'] .bullets--first .bullet,
body[lang='es'] .bullets--first .bullet {
  max-width: 540px;
}

body[lang='es'] .main__sub_title {
  line-height: 120%;
}

body[lang='es'] .main__box_title {
  margin-top: 170px;
}

body[lang='tr'] .dropshadow form .form_title {
  font-size: 17px;
}

body[lang='tr'] .main__title,
body[lang='fr'] .main__title {
  line-height: 130%;
}

body[lang='tr'] .main__sub_title,
body[lang='fr'] .main__sub_title {
  line-height: 120%;
}

body[lang='ar'] {
  direction: rtl;
}

body[lang='ar'] .main {
  background: url(./main_BG_1920_ar.png) no-repeat center top;
}

body[lang='ar'] .main header #logo {
  background-position: center right;
}

body[lang='ar'] .main__title {
  font-size: 50px;
}

body[lang='ar'] .main__box_title {
  margin-top: 210px;
}

body[lang='ar'] .bullets .bullet::before {
  left: auto;
  right: -20px;
}

body[lang='ar'] .bullets--first .container {
  background: url(./bullets_1_BG_1920_ar.png) no-repeat center left;
}

body[lang='ar'] .bullets--second .container {
  background: url(./bullets_2_BG_1920_ar.png) no-repeat center right;
}

body[lang='ar'] .steps .step::before {
  left: auto;
  right: 0px;
}

body[lang='ar'] .steps .step:nth-of-type(2) {
  padding: 30px 80px;
  -webkit-padding-start: 180px;
          padding-inline-start: 180px;
}

@media only screen and (max-width: 1199px) {
  .container {
    max-width: 768px;
  }
  body[lang] .button {
    font-size: 27px;
    padding: 6px 30px;
  }
  body[lang] .main {
    background: url(./main_BG_1200.png) no-repeat center top;
    min-height: 625px;
  }
  body[lang] .main header {
    padding-top: 25px;
  }
  body[lang] .main__title {
    font-size: 33px;
    margin-top: 20px;
    max-width: 369px;
  }
  body[lang] .main__sub_title {
    font-size: 20px;
    margin-top: 10px;
    max-width: 369px;
  }
  body[lang] .main .button {
    margin-top: 20px;
  }
  body[lang] .main__box_title {
    padding: 20px 30px;
    margin-top: 40px;
    font-size: 25px;
  }
  body[lang] .main__box_title::before, body[lang] .main__box_title::after {
    width: 291px;
    height: 113px;
    background-size: 100%;
  }
  body[lang] .bullets__title {
    font-size: 28px;
  }
  body[lang] .bullets .bullet {
    font-size: 22px;
    -webkit-padding-start: 30px;
            padding-inline-start: 30px;
    margin-top: 16px;
  }
  body[lang] .bullets .bullet::before {
    width: 18px;
    height: 18px;
    background-size: 18px 18px;
  }
  body[lang] .bullets--first .container {
    background: url(./bullets_1_BG_1200.png) no-repeat center right 20px;
    min-height: 238px;
    padding-top: 80px;
  }
  body[lang] .bullets--first .bullets__title,
  body[lang] .bullets--first .bullet {
    max-width: 370px;
  }
  body[lang] .bullets--second .container {
    background: url(./bullets_2_BG_1200.png) no-repeat center left 20px;
    min-height: 314px;
    padding: 60px 20px;
    -webkit-padding-start: 369px;
            padding-inline-start: 369px;
  }
  body[lang] .steps {
    background: url(./steps_BG_1200.png) no-repeat center top;
    min-height: 914px;
    padding-top: 50px;
  }
  body[lang] .steps__title {
    font-size: 25px;
  }
  body[lang] .steps .step {
    font-size: 22px;
    padding: 25px;
    border-radius: 150px;
    -webkit-padding-start: 120px;
            padding-inline-start: 120px;
    margin-top: 70px;
  }
  body[lang] .steps .step::before {
    width: 100px;
    height: 124px;
  }
  body[lang] .steps .step:nth-of-type(2) {
    padding: 10px;
    -webkit-padding-start: 120px;
            padding-inline-start: 120px;
  }
  body[lang] .steps .step:nth-of-type(2)::before {
    background-position: left 10px bottom 15px;
    background-size: auto 104px;
  }
  body[lang] .steps .step:nth-of-type(3)::before {
    background-position: left 10px bottom 15px;
    background-size: auto 104px;
  }
  body[lang] .steps .step:nth-of-type(4)::before {
    background-position: left 10px bottom 15px;
    background-size: auto 104px;
  }
  body[lang] .steps .step:nth-of-type(5)::before {
    background-position: left 10px bottom 15px;
    background-size: auto 104px;
  }
  body[lang] .steps__button {
    font-size: 30px;
    margin-top: 60px;
  }
  body[lang] .steps__button span {
    padding: 15px 50px;
  }
  body[lang] .steps__button::before, body[lang] .steps__button::after {
    width: 120px;
    height: 120px;
    -webkit-mask-size: auto 120px;
            mask-size: auto 120px;
  }
  body[lang] .steps__button::before {
    left: -10%;
    bottom: 10%;
  }
  body[lang] .steps__button::after {
    right: -10%;
    top: 10%;
  }
  body[lang='en'] .main__sub_title {
    line-height: 120%;
  }
  body[lang='fr'] .button {
    font-size: 21px;
  }
  body[lang='fr'] .main__title {
    font-size: 25px;
  }
  body[lang='fr'] .main__sub_title {
    font-size: 22px;
  }
  body[lang='es'] .steps .step {
    font-size: 21px;
  }
  body[lang='tr'] .main__sub_title {
    font-size: 23px;
  }
  body[lang='ar'] .main {
    min-height: 560px;
    background: url(./main_BG_1200_ar.png) no-repeat center top;
  }
  body[lang='ar'] .main header #logo {
    background-position: center right;
  }
  body[lang='ar'] .bullets .bullet::before {
    right: 0px;
  }
  body[lang='ar'] .bullets--first .container {
    background: url(./bullets_1_BG_1200_ar.png) no-repeat center left;
  }
  body[lang='ar'] .bullets--second .container {
    background: url(./bullets_2_BG_1200_ar.png) no-repeat center right;
  }
  body[lang='ar'] .steps__title {
    font-size: 30px;
  }
  body[lang='ar'] .steps .step::before {
    right: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .container {
    max-width: none;
  }
  body[lang] .button {
    font-size: 22px;
    padding: 6px 20px;
  }
  body[lang] .main {
    background: url(./main_BG_768.png) no-repeat center top;
    min-height: auto;
    padding-bottom: 50px;
    text-align: center;
  }
  body[lang] .main header {
    padding-top: 18px;
  }
  body[lang] .main header #logo {
    height: 32px;
    background-size: auto 32px;
    background-position: center;
  }
  body[lang] .main__title {
    font-size: 25px;
    margin-top: 230px;
    max-width: none;
  }
  body[lang] .main__sub_title {
    font-size: 20px;
    max-width: none;
  }
  body[lang] .main .button {
    display: none;
  }
  body[lang] .main__box_title {
    padding: 8px;
    margin-top: 20px;
    font-size: 20px;
  }
  body[lang] .main__box_title::before, body[lang] .main__box_title::after {
    width: 200px;
    height: 83px;
  }
  body[lang] .bullets__title {
    font-size: 22px;
    text-align: center;
  }
  body[lang] .bullets .bullet {
    font-size: 18px;
    -webkit-padding-start: 25px;
            padding-inline-start: 25px;
    margin-top: 13px;
  }
  body[lang] .bullets .bullet::before {
    width: 16px;
    height: 16px;
    background-size: 16px 16px;
  }
  body[lang] .bullets--first .bullets__title,
  body[lang] .bullets .bullet {
    max-width: none;
  }
  body[lang] .bullets--first {
    padding-top: 25px;
  }
  body[lang] .bullets--second {
    margin-top: 40px;
  }
  body[lang] .bullets--second .container {
    padding-bottom: 40px;
  }
  body[lang] .bullets--first .container,
  body[lang] .bullets--second .container {
    background-position: center top;
    background-size: 284px 179px;
    min-height: auto;
    padding-top: 190px;
    -webkit-padding-start: 20px;
            padding-inline-start: 20px;
  }
  body[lang] .steps {
    background: url(./steps_BG_768.png) no-repeat center top;
    min-height: auto;
    padding: 40px 0px 70px;
  }
  body[lang] .steps__title {
    font-size: 24px;
  }
  body[lang] .steps .container {
    padding: 0 10px;
  }
  body[lang] .steps .step {
    font-size: 18px;
    padding: 25px 5px;
    border-radius: 150px;
    -webkit-padding-start: 75px;
            padding-inline-start: 75px;
    margin-top: 40px;
  }
  body[lang] .steps .step::before {
    width: 70px;
    height: 90px;
  }
  body[lang] .steps .step:nth-of-type(2) {
    padding: 15px;
    -webkit-padding-start: 75px;
            padding-inline-start: 75px;
    margin-top: 60px;
  }
  body[lang] .steps .step:nth-of-type(2)::before {
    top: 0;
    background-position: left 10px top;
    background-size: auto 74px;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
  body[lang] .steps .step:nth-of-type(3)::before {
    top: 0;
    background-position: left 10px top;
    background-size: auto 74px;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  body[lang] .steps .step:nth-of-type(4)::before {
    top: 0;
    background-position: left 10px top;
    background-size: auto 74px;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  body[lang] .steps .step:nth-of-type(5)::before {
    top: 0;
    background-position: left 10px top;
    background-size: auto 74px;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  body[lang] .steps__button {
    font-size: 25px;
  }
  body[lang] .steps__button span {
    padding: 7px 10px;
  }
  body[lang] .steps__button::before, body[lang] .steps__button::after {
    width: 80px;
    height: 80px;
    -webkit-mask-size: auto 80px;
            mask-size: auto 80px;
  }
  body[lang] .steps__button::before {
    right: 10px;
    bottom: -25px;
  }
  body[lang] .steps__button::after {
    right: -10px;
    top: -40px;
  }
  body[lang] .dropshadow form {
    padding: 60px 20px;
  }
  body[lang='en'] .main {
    padding-bottom: 32px;
  }
  body[lang='fr'] .button,
  body[lang='es'] .button {
    font-size: 20px;
    padding: 10px 20px;
  }
  body[lang='fr'] .main__sub_title,
  body[lang='es'] .main__sub_title {
    font-size: 18px;
  }
  body[lang='fr'] .main__box_title,
  body[lang='es'] .main__box_title {
    font-size: 16px;
  }
  body[lang='fr'] .steps__title,
  body[lang='es'] .steps__title {
    font-size: 23px;
    line-height: 110%;
  }
  body[lang='fr'] .steps .step,
  body[lang='es'] .steps .step {
    font-size: 16px;
    padding: 27px 5px;
    -webkit-padding-start: 75px;
            padding-inline-start: 75px;
  }
  body[lang='tr'] .main__sub_title {
    font-size: 18px;
  }
  body[lang='tr'] .main__box_title {
    font-size: 18px;
  }
  body[lang='tr'] .steps__title {
    font-size: 22px;
  }
  body[lang='tr'] .steps__button {
    font-size: 23px;
  }
  body[lang='ar'] .main__title {
    font-size: 30px;
  }
  body[lang='ar'] .main__sub_title {
    font-size: 24px;
  }
  body[lang='ar'] .bullets__title {
    font-size: 25px;
    font-weight: bolder;
  }
  body[lang='ar'] .bullets .bullet {
    font-size: 22px;
  }
  body[lang='ar'] .steps .step {
    font-size: 20px;
    -webkit-padding-start: 80px;
            padding-inline-start: 80px;
  }
  body[lang='ar'] .steps .step:nth-of-type(2) {
    -webkit-padding-start: 80px;
            padding-inline-start: 80px;
  }
  body[lang='ar'] .steps__button::before {
    left: -10px;
    right: auto;
    bottom: -40px;
  }
}
/*# sourceMappingURL=style.css.map */