@import url("https://fonts.googleapis.com/css2?family=Averia+Serif+Libre:wght@300;400;700&display=swap");
@-webkit-keyframes animate {
  17% {
    border-radius: 50% 50% 20px 20px;
  }
  25% {
    -webkit-transform: translateY(9px);
            transform: translateY(9px);
  }
  50% {
    -webkit-transform: translateY(18px) scale(1, 0.9);
            transform: translateY(18px) scale(1, 0.9);
  }
  75% {
    -webkit-transform: translateY(9px);
            transform: translateY(9px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes animate {
  17% {
    border-radius: 50% 50% 20px 20px;
  }
  25% {
    -webkit-transform: translateY(9px);
            transform: translateY(9px);
  }
  50% {
    -webkit-transform: translateY(18px) scale(1, 0.9);
            transform: translateY(18px) scale(1, 0.9);
  }
  75% {
    -webkit-transform: translateY(9px);
            transform: translateY(9px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@-webkit-keyframes shadow {
  50% {
    -webkit-transform: scale(1.2, 1);
            transform: scale(1.2, 1);
  }
}

@keyframes shadow {
  50% {
    -webkit-transform: scale(1.2, 1);
            transform: scale(1.2, 1);
  }
}

@-webkit-keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes float {
  0%, 100% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
  50% {
    -webkit-transform: translate(-8px, 21px);
            transform: translate(-8px, 21px);
  }
}

@keyframes float {
  0%, 100% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
  50% {
    -webkit-transform: translate(-8px, 21px);
            transform: translate(-8px, 21px);
  }
}

.progress {
  vertical-align: baseline;
  height: 2px;
  border: 0;
  width: 100%;
  -webkit-transition: .3s ease-out;
  transition: .3s ease-out;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

label {
  cursor: pointer;
}

/* --------------------------------------------------------
version: 1.0
last modified: 24.2.2020 by anjit
author: Anjit Pariyar	
email: anjitpariyar@gmail.com
github: https://github.com/anjitzero
----------------------------------------------------------*/
html {
  font-size: 16px;
  scroll-behavior: smooth;
}

@media only screen and (max-width: 589px) {
  html {
    font-size: 12px;
  }
}

a:hover {
  text-decoration: none;
  color: currentColor;
}

a:active, a:focus {
  outline: 0;
  border: none;
  outline-style: none;
}

a {
  -webkit-transition: .3s ease;
  transition: .3s ease;
  color: currentColor;
  box-shadow: none;
  -webkit-box-shadow: none;
}

a:hover {
  color: #3FB04C;
}

a a:active {
  color: #3FB04C;
}

a:active {
  color: #DD1414;
}

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

h1, h2, h3 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #232323;
}

@media only screen and (max-width: 600px) {
  h1, h2, h3 {
    font-size: 2rem;
  }
}

@media only screen and (max-width: 455px) {
  h1, h2, h3 {
    margin-bottom: 10px;
  }
}

.logo img {
  height: 4rem;
  -o-object-fit: contain;
     object-fit: contain;
}

body {
  font-family: 'Averia Serif Libre', cursive;
  font-weight: 400;
  position: relative;
  scroll-behavior: smooth;
  color: #747474;
}

.section__rule {
  margin: 0 auto;
  max-width: 1390px;
}

@media only screen and (min-width: 0px) {
  .section__rule {
    padding: 20px 0;
    width: 90%;
  }
}

@media only screen and (min-width: 1300px) {
  .section__rule {
    width: 1260px;
    padding: 60px 0;
  }
}

img[src$='.jpg'] {
  background-color: #f6f7f9;
}

.slick-slide {
  outline: none;
}

input::-webkit-input-placeholder {
  color: #747474;
}

input:-ms-input-placeholder {
  color: #747474;
}

input::-ms-input-placeholder {
  color: #747474;
}

input::placeholder {
  color: #747474;
}

.description p {
  font-size: 1em;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  /* no standardized syntax available, no ie-friendly solution available */
}

select + i {
  position: absolute;
  right: 0;
  position: absolute;
  right: 8px;
  pointer-events: none;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.select-wrapper, .select--wrapper {
  position: relative;
}

.noselect {
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently supported by Chrome, Edge, Opera and Firefox */
}

.row {
  margin: 0;
}

@media only screen and (max-width: 480px) {
  .col-sm-6 {
    padding: 0 6px !important;
  }
}

.fixed-top {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  overflow-y: scroll;
  z-index: 10000 !important;
}

hr {
  border-top: 2px solid rgba(255, 255, 255, 0.16);
  width: 100%;
  margin: 35px 0;
}

@media only screen and (max-width: 455px) {
  hr {
    margin: 25px 0px;
  }
}

mark {
  background-color: #232323;
  color: #fff;
  padding: 3px 14px;
}

@media only screen and (max-width: 678px) {
  p {
    margin-bottom: 8px;
  }
}

a {
  display: inline-block;
  text-decoration: none;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  display: none;
}

input[type=number] {
  -moz-appearance: textfield;
}

.form-check-input {
  position: relative;
  margin-top: 0;
  margin-left: -1.25rem;
  margin-right: 11px;
}

button.disabled {
  cursor: not-allowed;
}

button:visited, button:focus {
  outline: none;
}

body.overflow {
  overflow-y: hidden;
}

.relative {
  display: none !important;
}

[class^="bi-"]::before, [class*=" bi-"]::before {
  vertical-align: sub;
}

html {
  overflow-y: overlay;
}

a[type="button"] {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  -webkit-appearance: none !important;
  border: none !important;
}

body {
  width: 100%;
  overflow-x: hidden;
}

header {
  position: relative;
  font-size: 18px;
}

header .section__rule {
  padding: 20px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  z-index: 99;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header .logo svg {
  height: 50px;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media only screen and (max-width: 840px) {
  header .logo svg {
    height: 30px;
  }
}

header .logo h1 {
  margin-bottom: 0;
  color: #3FB04C;
  font-size: 30px;
  margin-left: 12px;
}

@media only screen and (max-width: 840px) {
  header .logo h1 {
    font-size: 20px;
  }
}

header button {
  background-color: #3FB04C;
  border: none;
  padding: 18px 30px;
  font-size: 18px;
  color: #fff;
  border-radius: 5px;
  text-transform: capitalize;
  line-height: 17px;
  position: relative;
  white-space: nowrap;
  font-weight: 500;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  will-change: transform;
  -webkit-perspective: 1000;
  -webkit-box-shadow: rgba(63, 176, 76, 0.2) 0px 20px 20px;
          box-shadow: rgba(63, 176, 76, 0.2) 0px 20px 20px;
  -webkit-transition: .3s ease-out;
  transition: .3s ease-out;
  background-color: #fff;
  color: #232323;
}

header button span {
  margin-left: 6px;
}

@media only screen and (max-width: 1130px) {
  header button {
    font-size: 16px;
  }
}

@media only screen and (max-width: 455px) {
  header button {
    font-size: 14px;
    padding: 14px 20px;
    line-height: 14px;
    border-width: 1px;
  }
}

header button:active {
  -webkit-transition: .3s ease-in;
  transition: .3s ease-in;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  outline: none;
}

header button.deactive {
  background-color: #f6f7f9;
  background-image: none;
  color: #747474;
}

header button img {
  height: 30px;
  width: auto;
  vertical-align: middle;
  margin-right: 10px;
}

@media only screen and (max-width: 840px) {
  header button img {
    display: none;
  }
}

header button:hover img {
  -webkit-animation-name: shakeX;
          animation-name: shakeX;
}

header .svg--bg {
  position: absolute;
}

@media only screen and (max-width: 840px) {
  header .svg--bg {
    display: none;
  }
}

header .svg--lg {
  height: 980px;
  min-height: 500px;
  top: calc(-900px / 3.5);
  right: calc(-900px / 2.5);
  width: auto;
}

@media only screen and (max-width: 601px) {
  header .svg--lg {
    height: 500px;
  }
}

header .svg--small {
  height: 500px;
  width: auto;
  top: -60px;
  left: -60px;
}

header .svg--small circle {
  fill: #FFDB60;
}

.form-control[readonly] {
  background-color: transparent;
}

#modal--logout {
  padding: 0;
}

#modal--logout .modal-content {
  padding: 30px;
  border: 0;
  border-radius: 5px;
  -webkit-box-shadow: rgba(35, 35, 35, 0.1) -3px 4px 12px;
          box-shadow: rgba(35, 35, 35, 0.1) -3px 4px 12px;
  -webkit-transition: .3s ease-in;
  transition: .3s ease-in;
}

@media only screen and (max-width: 601px) {
  #modal--logout .modal-content {
    padding: 10px;
  }
}

#modal--logout .modal-content:hover {
  -webkit-transition: .3s ease-out;
  transition: .3s ease-out;
  -webkit-box-shadow: rgba(35, 35, 35, 0.1) -5px 6px 12px;
          box-shadow: rgba(35, 35, 35, 0.1) -5px 6px 12px;
}

#modal--logout .modal-body {
  padding: 0px;
  position: relative;
}

#modal--logout .modal-body button {
  background-color: #3FB04C;
  border: none;
  padding: 18px 30px;
  font-size: 18px;
  color: #fff;
  border-radius: 5px;
  text-transform: capitalize;
  line-height: 17px;
  position: relative;
  white-space: nowrap;
  font-weight: 500;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  will-change: transform;
  -webkit-perspective: 1000;
  -webkit-box-shadow: rgba(63, 176, 76, 0.2) 0px 20px 20px;
          box-shadow: rgba(63, 176, 76, 0.2) 0px 20px 20px;
  -webkit-transition: .3s ease-out;
  transition: .3s ease-out;
}

#modal--logout .modal-body button span {
  margin-left: 6px;
}

@media only screen and (max-width: 1130px) {
  #modal--logout .modal-body button {
    font-size: 16px;
  }
}

@media only screen and (max-width: 455px) {
  #modal--logout .modal-body button {
    font-size: 14px;
    padding: 14px 20px;
    line-height: 14px;
    border-width: 1px;
  }
}

#modal--logout .modal-body button:active {
  -webkit-transition: .3s ease-in;
  transition: .3s ease-in;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  outline: none;
}

#modal--logout .modal-body button.deactive {
  background-color: #f6f7f9;
  background-image: none;
  color: #747474;
}

@media only screen and (max-width: 601px) {
  #modal--logout .modal-body button {
    width: 100%;
  }
}

#modal--logout .modal-body .modal-title {
  margin-bottom: 20px;
}

#modal--logout .close {
  background-color: #e9e9e9;
  height: 42px;
  width: 42px;
  border-radius: 12px;
  line-height: 40px;
  padding: 0;
  font-size: 40px;
  margin: 0;
  color: #fff;
  opacity: 1;
}

@media only screen and (max-width: 601px) {
  #modal--logout .close {
    background-color: transparent;
  }
}

#modal--logout .close svg {
  height: 22px;
  width: auto;
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}

#modal--logout .close svg .cls-1 {
  opacity: 1;
  fill: #fff;
}

@media only screen and (max-width: 601px) {
  #modal--logout .close svg .cls-1 {
    fill: #232323;
  }
}

@media only screen and (max-width: 601px) {
  #modal--logout .close svg {
    height: 18px;
  }
}

#modal--logout .modal-header {
  border: 0;
  padding: 0;
}

#modal--logout .modal-header.title__wrapper .section__title {
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
  text-align: center;
}

@media only screen and (max-width: 601px) {
  #modal--logout .modal-header.title__wrapper .section__title {
    text-align: left;
    margin-left: 16px;
  }
}

#modal--logout .card__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#modal--logout .card__link button {
  margin: 0 10px;
}

#ott--modal {
  padding: 0;
  text-align: center;
}

#ott--modal .modal-content {
  padding: 30px;
  border: 0;
  border-radius: 5px;
  -webkit-box-shadow: rgba(35, 35, 35, 0.1) -3px 4px 12px;
          box-shadow: rgba(35, 35, 35, 0.1) -3px 4px 12px;
  -webkit-transition: .3s ease-in;
  transition: .3s ease-in;
}

@media only screen and (max-width: 601px) {
  #ott--modal .modal-content {
    padding: 10px;
  }
}

#ott--modal .modal-content:hover {
  -webkit-transition: .3s ease-out;
  transition: .3s ease-out;
  -webkit-box-shadow: rgba(35, 35, 35, 0.1) -5px 6px 12px;
          box-shadow: rgba(35, 35, 35, 0.1) -5px 6px 12px;
}

#ott--modal .modal-body {
  padding: 0px;
  position: relative;
}

#ott--modal .modal-body button {
  background-color: #3FB04C;
  border: none;
  padding: 18px 30px;
  font-size: 18px;
  color: #fff;
  border-radius: 5px;
  text-transform: capitalize;
  line-height: 17px;
  position: relative;
  white-space: nowrap;
  font-weight: 500;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  will-change: transform;
  -webkit-perspective: 1000;
  -webkit-box-shadow: rgba(63, 176, 76, 0.2) 0px 20px 20px;
          box-shadow: rgba(63, 176, 76, 0.2) 0px 20px 20px;
  -webkit-transition: .3s ease-out;
  transition: .3s ease-out;
}

#ott--modal .modal-body button span {
  margin-left: 6px;
}

@media only screen and (max-width: 1130px) {
  #ott--modal .modal-body button {
    font-size: 16px;
  }
}

@media only screen and (max-width: 455px) {
  #ott--modal .modal-body button {
    font-size: 14px;
    padding: 14px 20px;
    line-height: 14px;
    border-width: 1px;
  }
}

#ott--modal .modal-body button:active {
  -webkit-transition: .3s ease-in;
  transition: .3s ease-in;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  outline: none;
}

#ott--modal .modal-body button.deactive {
  background-color: #f6f7f9;
  background-image: none;
  color: #747474;
}

@media only screen and (max-width: 601px) {
  #ott--modal .modal-body button {
    width: 100%;
  }
}

#ott--modal .modal-body .modal-title {
  margin-bottom: 20px;
}

#ott--modal .close {
  background-color: #e9e9e9;
  height: 42px;
  width: 42px;
  border-radius: 12px;
  line-height: 40px;
  padding: 0;
  font-size: 40px;
  margin: 0;
  color: #fff;
  opacity: 1;
}

@media only screen and (max-width: 601px) {
  #ott--modal .close {
    background-color: transparent;
  }
}

#ott--modal .close svg {
  height: 22px;
  width: auto;
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}

#ott--modal .close svg .cls-1 {
  opacity: 1;
  fill: #fff;
}

@media only screen and (max-width: 601px) {
  #ott--modal .close svg .cls-1 {
    fill: #232323;
  }
}

@media only screen and (max-width: 601px) {
  #ott--modal .close svg {
    height: 18px;
  }
}

#ott--modal .modal-header {
  border: 0;
  padding: 0;
}

#ott--modal .modal-header.title__wrapper .section__title {
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
  text-align: center;
}

@media only screen and (max-width: 601px) {
  #ott--modal .modal-header.title__wrapper .section__title {
    text-align: left;
    margin-left: 16px;
  }
}

#ott--modal .form__header {
  margin-bottom: 2em;
}

#ott--modal .para {
  line-height: 1.5;
  font-size: 18px;
  margin-bottom: 0;
  color: #4E4E4E;
}

#ott--modal .otp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

#ott--modal input.form-control {
  width: 60px;
  text-align: center;
  height: 56px;
  font-size: 18px;
  color: #4E4E4E !important;
  font-weight: 500;
  background-color: #A7A7A7 !important;
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
  border: 1px solid transparent;
  border-radius: 5px;
  width: 60px;
  text-align: center;
}

#ott--modal input.form-control:not(:first-child) {
  margin-left: 6px;
}

#ott--modal input[type="number"] {
  -moz-appearance: textfield;
}

a.active {
  color: #3FB04C;
}

.card__margin {
  margin-bottom: 25px;
}

@media only screen and (max-width: 455px) {
  .card__margin {
    margin-bottom: 12px;
  }
}

.section__title {
  color: #232323;
  font-size: 48px;
  line-height: 1.3;
  font-weight: bold;
}

@media only screen and (max-width: 1130px) {
  .section__title {
    font-size: 35px;
  }
}

@media only screen and (max-width: 601px) {
  .section__title {
    font-size: 26px;
    position: relative;
    z-index: 1;
  }
}

.section__title__link {
  font-size: 14px;
  margin-left: auto;
}

.section__title__link i {
  margin-right: 5px;
  font-size: 12px;
}

.section__title--sm {
  font-size: 30px;
  color: #3FB04C;
  font-weight: 500;
}

.section__title--lg {
  font-size: 35px;
}

@media only screen and (max-width: 601px) {
  .section__title--lg {
    font-size: 24px;
  }
}

.title__description {
  font-size: 20px;
  margin-bottom: 35px;
  color: #747474;
  font-weight: 400;
  margin-bottom: 35px;
  width: 100%;
  max-width: 900px;
}

.title__wrapper {
  margin-bottom: 20px;
  position: relative;
  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;
}

.title__wrapper .section__title {
  margin-bottom: 0 !important;
}

.text__wrapper.center {
  width: 100%;
  max-width: 650px;
  text-align: center;
  margin: auto;
}

.text__wrapper.center .title__description {
  color: #232323;
}

.modal-backdrop {
  background-color: #232323;
}

.modal-backdrop.show {
  opacity: .6;
}

.pr {
  position: relative;
}

.pointer--events__none {
  pointer-events: none;
}

button.white {
  background-color: #3FB04C;
  border: none;
  padding: 18px 30px;
  font-size: 18px;
  color: #fff;
  border-radius: 5px;
  text-transform: capitalize;
  line-height: 17px;
  position: relative;
  white-space: nowrap;
  font-weight: 500;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  will-change: transform;
  -webkit-perspective: 1000;
  -webkit-box-shadow: rgba(63, 176, 76, 0.2) 0px 20px 20px;
          box-shadow: rgba(63, 176, 76, 0.2) 0px 20px 20px;
  -webkit-transition: .3s ease-out;
  transition: .3s ease-out;
  background-color: #fff;
  color: #232323;
}

button.white span {
  margin-left: 6px;
}

@media only screen and (max-width: 1130px) {
  button.white {
    font-size: 16px;
  }
}

@media only screen and (max-width: 455px) {
  button.white {
    font-size: 14px;
    padding: 14px 20px;
    line-height: 14px;
    border-width: 1px;
  }
}

button.white:active {
  -webkit-transition: .3s ease-in;
  transition: .3s ease-in;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  outline: none;
}

button.white.deactive {
  background-color: #f6f7f9;
  background-image: none;
  color: #747474;
}

button.white:hover {
  color: #3FB04C;
  -webkit-box-shadow: rgba(35, 35, 35, 0.1) -3px 4px 12px;
          box-shadow: rgba(35, 35, 35, 0.1) -3px 4px 12px;
  -webkit-transition: .3s ease-in;
  transition: .3s ease-in;
}

button.white:hover:hover {
  -webkit-transition: .3s ease-out;
  transition: .3s ease-out;
  -webkit-box-shadow: rgba(35, 35, 35, 0.1) -5px 6px 12px;
          box-shadow: rgba(35, 35, 35, 0.1) -5px 6px 12px;
}

button.white.active {
  -webkit-box-shadow: rgba(35, 35, 35, 0.1) -3px 4px 12px;
          box-shadow: rgba(35, 35, 35, 0.1) -3px 4px 12px;
  -webkit-transition: .3s ease-in;
  transition: .3s ease-in;
}

button.white.active:hover {
  -webkit-transition: .3s ease-out;
  transition: .3s ease-out;
  -webkit-box-shadow: rgba(35, 35, 35, 0.1) -5px 6px 12px;
          box-shadow: rgba(35, 35, 35, 0.1) -5px 6px 12px;
}

.price {
  color: #fff;
  font-weight: 800;
  margin-bottom: 0;
}

.dark {
  color: #232323;
}

a.link {
  color: #3FB04C;
}

.tost-wrapper {
  position: fixed;
  bottom: 30px;
  right: 40px;
  z-index: 99;
}

.tost-wrapper .toast-header {
  background-image: linear-gradient(135deg, #fe4545, #d70153);
  padding: 10px 20px;
}

.tost-wrapper .toast-header strong {
  color: #fff;
}

.tost-wrapper .toast-header button.close {
  color: #fff;
  opacity: 1;
}

.tost-wrapper .toast {
  -webkit-box-shadow: rgba(35, 35, 35, 0.1) -3px 4px 12px;
          box-shadow: rgba(35, 35, 35, 0.1) -3px 4px 12px;
  -webkit-transition: .3s ease-in;
  transition: .3s ease-in;
  background-color: #fff;
  border: 0;
  border-radius: 12px;
  box-shadow: rgba(35, 35, 35, 0.1) -3px 4px 12px;
  transition: .3s ease-in;
  opacity: 1;
  width: 350px;
}

.tost-wrapper .toast:hover {
  -webkit-transition: .3s ease-out;
  transition: .3s ease-out;
  -webkit-box-shadow: rgba(35, 35, 35, 0.1) -5px 6px 12px;
          box-shadow: rgba(35, 35, 35, 0.1) -5px 6px 12px;
}

.tost-wrapper .toast:hover {
  -webkit-transition: .3s ease-out;
  transition: .3s ease-out;
  -webkit-box-shadow: rgba(35, 35, 35, 0.1) -5px 6px 12px;
          box-shadow: rgba(35, 35, 35, 0.1) -5px 6px 12px;
}

.tost-wrapper .toast, .tost-wrapper .toast .para {
  color: rgba(35, 35, 35, 0.6);
}

.tost-wrapper .toast .toast-body {
  padding: 20px;
}

.tost-wrapper .toast .toast:not(:last-child) {
  margin-bottom: 1.45rem;
}

.para {
  line-height: 1.5;
  font-size: 18px;
  margin-bottom: 0;
  color: #747474;
}

@media only screen and (max-width: 455px) {
  .para {
    font-size: 16px;
  }
}

.para.small {
  font-size: 14px;
}

@media only screen and (max-width: 601px) {
  .para.small {
    font-size: 13px;
  }
}

.text__active {
  color: #3FB04C;
}

.text-muted {
  color: #A5A5A5 !important;
}

main {
  position: relative;
  z-index: 1;
}

.screen button {
  background-color: #3FB04C;
  border: none;
  padding: 18px 30px;
  font-size: 18px;
  color: #fff;
  border-radius: 5px;
  text-transform: capitalize;
  line-height: 17px;
  position: relative;
  white-space: nowrap;
  font-weight: 500;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  will-change: transform;
  -webkit-perspective: 1000;
  -webkit-box-shadow: rgba(63, 176, 76, 0.2) 0px 20px 20px;
          box-shadow: rgba(63, 176, 76, 0.2) 0px 20px 20px;
  -webkit-transition: .3s ease-out;
  transition: .3s ease-out;
  margin-top: 60px;
}

.screen button span {
  margin-left: 6px;
}

@media only screen and (max-width: 1130px) {
  .screen button {
    font-size: 16px;
  }
}

@media only screen and (max-width: 455px) {
  .screen button {
    font-size: 14px;
    padding: 14px 20px;
    line-height: 14px;
    border-width: 1px;
  }
}

.screen button:active {
  -webkit-transition: .3s ease-in;
  transition: .3s ease-in;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  outline: none;
}

.screen button.deactive {
  background-color: #f6f7f9;
  background-image: none;
  color: #747474;
}

.screen .screen--wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: relative;
}

.screen .img__wrapper {
  width: 100%;
  height: 530px;
  -webkit-transform: scale(1.15);
          transform: scale(1.15);
  -webkit-transform-origin: left bottom;
          transform-origin: left bottom;
  -webkit-transition: .3s ease-in;
  transition: .3s ease-in;
}

@media only screen and (max-width: 840px) {
  .screen .img__wrapper {
    -webkit-transform: scale(1);
            transform: scale(1);
    height: auto;
  }
}

.screen .img__wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  text-align: center;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-animation: float 6s linear 3s infinite alternate;
  animation: float 6s linear 3s infinite alternate;
}

.screen .svg--ab {
  position: absolute;
  -webkit-animation: float 6s linear 1s infinite alternate;
  animation: float 6s linear 1s infinite alternate;
}

.screen .svg--ab circle {
  r: 50%;
}

.screen .svg--1 {
  left: -20%;
  bottom: 20%;
  height: 60px;
  width: auto;
}

.screen .svg--1 circle {
  fill: #fab8c2;
}

.screen .svg--2 {
  right: -9%;
  top: -5%;
  height: 45px;
  width: auto;
}

.screen .svg--2 circle {
  fill: #ffdb60;
}

.screen .svg--3 {
  right: 9%;
  bottom: -5%;
  height: 120px;
  width: auto;
}

.screen .svg--3 circle {
  fill: #FFDB60;
}

@media only screen and (max-width: 840px) {
  .screen {
    width: 100vw;
    overflow: hidden;
  }
}

.works .card {
  border: 0;
  -webkit-box-shadow: rgba(35, 35, 35, 0.1) -3px 4px 12px;
          box-shadow: rgba(35, 35, 35, 0.1) -3px 4px 12px;
  -webkit-transition: .3s ease-in;
  transition: .3s ease-in;
  font-size: 18px;
  background-color: #fff;
  position: relative;
  z-index: 1;
  padding: 1em;
  transition: .3s ease-in;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.works .card:hover {
  -webkit-transition: .3s ease-out;
  transition: .3s ease-out;
  -webkit-box-shadow: rgba(35, 35, 35, 0.1) -5px 6px 12px;
          box-shadow: rgba(35, 35, 35, 0.1) -5px 6px 12px;
}

.works .card:hover {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.works .card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  text-align: center;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.works .card .card__img {
  display: block;
  overflow: hidden;
  position: relative;
  margin-bottom: 1em;
  max-width: 100%;
}

.works .card .card__title {
  font-size: 24px;
  line-height: 1.3;
  margin-bottom: 15px;
  color: #3FB04C;
}

.works .card button {
  background-color: #3FB04C;
  border: none;
  padding: 18px 30px;
  font-size: 18px;
  color: #fff;
  border-radius: 5px;
  text-transform: capitalize;
  line-height: 17px;
  position: relative;
  white-space: nowrap;
  font-weight: 500;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  will-change: transform;
  -webkit-perspective: 1000;
  -webkit-box-shadow: rgba(63, 176, 76, 0.2) 0px 20px 20px;
          box-shadow: rgba(63, 176, 76, 0.2) 0px 20px 20px;
  -webkit-transition: .3s ease-out;
  transition: .3s ease-out;
}

.works .card button span {
  margin-left: 6px;
}

@media only screen and (max-width: 1130px) {
  .works .card button {
    font-size: 16px;
  }
}

@media only screen and (max-width: 455px) {
  .works .card button {
    font-size: 14px;
    padding: 14px 20px;
    line-height: 14px;
    border-width: 1px;
  }
}

.works .card button:active {
  -webkit-transition: .3s ease-in;
  transition: .3s ease-in;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  outline: none;
}

.works .card button.deactive {
  background-color: #f6f7f9;
  background-image: none;
  color: #747474;
}

@media only screen and (max-width: 601px) {
  .works .card button {
    margin-top: 10px;
    width: 100%;
  }
}

.works .card .para {
  font-size: 1em;
  margin-bottom: 0;
  font-weight: 400;
}

.works .card {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 60px;
}

@media only screen and (max-width: 1130px) {
  .works .card {
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 840px) {
  .works .card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.works .card .card__img {
  min-width: 35%;
  width: 35%;
  text-align: left;
}

@media only screen and (max-width: 1130px) {
  .works .card .card__img {
    min-width: 350px;
  }
}

@media only screen and (max-width: 840px) {
  .works .card .card__img {
    width: 100%;
    min-width: 100%;
  }
}

.works .card img {
  height: 500px;
  -o-object-fit: contain;
     object-fit: contain;
}

@media only screen and (max-width: 1130px) {
  .works .card img {
    height: 400px;
  }
}

@media only screen and (max-width: 840px) {
  .works .card img {
    height: 300px;
  }
}

.works .card .card__body {
  padding: 0 60px;
}

@media only screen and (max-width: 1130px) {
  .works .card .card__body {
    padding: 0 30px;
  }
}

@media only screen and (max-width: 840px) {
  .works .card .card__body {
    padding: 0;
  }
}

.works .card .card__body + .card__img {
  text-align: right;
}

@media only screen and (max-width: 840px) {
  .works .card .card__body + .card__img {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
}

.works .card .card__body + .card__img img {
  -o-object-position: right;
     object-position: right;
}

.works .bg {
  border-radius: 60px;
  padding: 40px;
}

@media only screen and (max-width: 840px) {
  .works .bg {
    border-radius: 16px;
    padding: 24px;
  }
}

.works .bg-grey {
  background-image: -webkit-gradient(linear, left top, right top, from(#f0f0f8), to(transparent));
  background-image: linear-gradient(to right, #f0f0f8, transparent);
}

.hand .card {
  border-radius: 60px;
  background-color: #fab8c4;
}

@media only screen and (max-width: 840px) {
  .hand .card {
    border-radius: 16px;
  }
}

.hand .card, .hand .card .card__img {
  overflow: visible;
}

.hand .card img, .hand .card .card__img img {
  height: 460px;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transform: scale(1.7);
          transform: scale(1.7);
  -webkit-transform-origin: left bottom;
          transform-origin: left bottom;
}

@media only screen and (max-width: 840px) {
  .hand .card img, .hand .card .card__img img {
    -webkit-transform: scale(1);
            transform: scale(1);
    height: 100%;
  }
}

.hand .card button {
  margin-top: 60px;
}

@media only screen and (max-width: 840px) {
  .hand .card button {
    margin-top: 20px;
  }
}

.scan h2 {
  position: relative;
  z-index: 2;
}

.scan .circle {
  height: 500px;
  width: 500px;
  border-radius: 50%;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  background-color: #3FB04C;
  margin-top: -12em;
  padding-bottom: 8%;
}

@media only screen and (max-width: 1300px) {
  .scan .circle {
    margin-top: -8em;
  }
}

@media only screen and (max-width: 1300px) and (max-width: 1130px) {
  .scan .circle {
    height: 400px;
    width: 400px;
  }
}

@media only screen and (max-width: 1300px) and (max-width: 840px) {
  .scan .circle {
    height: 85vw;
    width: 85vw;
  }
}

.scan .circle img {
  height: 170px;
  width: auto;
}

@media only screen and (max-width: 1130px) {
  .scan .circle img {
    height: 140px;
  }
}

.scan .section__rule {
  padding-top: 100px;
}

@media only screen and (max-width: 840px) {
  .scan .section__rule {
    padding-top: 0;
  }
}

.other-page p, .other-page .para {
  font-size: 16px;
}

.other-page .screen img {
  width: 100%;
  height: auto;
  max-height: 70vh;
  -o-object-fit: cover;
     object-fit: cover;
}

.other-page .works .card__img {
  margin: 2.5em auto;
}

.other-page .works .card__title {
  color: #333;
}

footer .aside__img {
  position: relative;
}

footer .aside__img img {
  height: 400px !important;
  width: auto !important;
}

@media only screen and (max-width: 840px) {
  footer .aside__img img {
    width: 100% !important;
    height: auto !important;
  }
}

footer .aside__img ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 30px;
  position: absolute;
  top: 58px;
  left: 50px;
  -webkit-transform: rotate(17deg);
          transform: rotate(17deg);
}

@media only screen and (max-width: 840px) {
  footer .aside__img ul {
    font-size: 19px;
    position: absolute;
    top: 30px;
    left: 15px;
  }
}

footer .aside__img ul a {
  color: #fff;
  padding: 0 10px;
}

footer .aside__img ul a:hover {
  color: #3FB04C;
}

footer .lower--footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media only screen and (max-width: 1130px) {
  footer .lower--footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
  }
}

footer .navbar {
  padding: 0;
}

footer .navbar .navbar-nav {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

@media only screen and (max-width: 840px) {
  footer .navbar .navbar-nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

footer .nav__link {
  padding: 0 24px;
  text-align: center;
  -webkit-transition: .3s linear;
  transition: .3s linear;
  font-size: 18px;
  color: #4E4E4E;
  white-space: nowrap;
}

footer .nav__link.active, footer .nav__link:hover {
  color: #3FB04C;
}
/*# sourceMappingURL=style.css.map */