@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700;800&display=swap");
* {
  margin: 0;
  padding: 0;
  outline: none;
  box-sizing: border-box;
}

html{
  height: 100%;
}

body {
  height: 100%;
  overflow-x: hidden;
  background: #0F0F0F;
}

a {
  text-decoration: none;
}

ul {
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
}

p {
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
}

.my-80 {
  margin: 80px 0;
}

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

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

.my-100 {
  margin: 100px 0;
}

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

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

.gap-2 {
  gap: 2px;
}

.gap-4 {
  gap: 4px;
}

.gap-10 {
  gap: 10px;
}

.gap-20 {
  gap: 20px;
}

.AZ-img-container {
  position: relative;
  overflow: hidden;
  display: block;
}
.AZ-img-container::after {
  content: "";
  display: block;
}

.AZ-img-container-inner {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.AZ-img-cover img {
  width: 100% !important;
  height: 100% !important;
  -o-object-fit: cover !important;
     object-fit: cover !important;
}

.AZ-section-text {
  font-size: 14px;
  color: #F5F3E9;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
}

.AZ-primary-btn {
  font-size: 16px;
  color: #ffffff;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  background: #00A173;
  border-radius: 8px;
  padding: 10px 20px;
  transition: all 0.2s linear;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #008D73;
  gap: 5px;
}
.AZ-primary-btn:hover {
  background: #008D73;
  color: #ffffff;
}

.AZ-secondary-btn {
  font-size: 16px;
  color: #FFFFFF;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  padding: 12px 10px;
  border-bottom: 0.5px dashed #F5F3E9;
  transition: all 0.2s linear;
}
.AZ-secondary-btn span {
  font-size: 20px;
}
.AZ-secondary-btn:hover {
  border-bottom: 0.5px dashed #F46A4E;
  color: #F46A4E;
}
.AZ-secondary-btn:hover .icon-Arrow-Download-1:before {
  color: unset;
}
.AZ-secondary-btn:hover .icon-Link:before {
  color: unset;
}

.AZ-group-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
}
.AZ-group-field input,
.AZ-group-field textarea {
  font-size: 16px;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  color: #ffffff;
  border: 0;
  border-bottom: 0.5px solid #999896;
  background: transparent;
  padding: 16px;
}
.AZ-group-field input:focus,
.AZ-group-field textarea:focus {
  border-bottom: 1px solid #fff;
}
.AZ-group-field input:focus::-moz-placeholder, .AZ-group-field textarea:focus::-moz-placeholder {
  color: #fff;
}
.AZ-group-field input:focus::placeholder,
.AZ-group-field textarea:focus::placeholder {
  color: #fff;
}
.AZ-group-field input.err,
.AZ-group-field textarea.err {
  border-bottom: 1px solid #FF7A92;
}
.AZ-group-field input.err::-moz-placeholder, .AZ-group-field textarea.err::-moz-placeholder {
  color: #FF7A92;
}
.AZ-group-field input.err::placeholder,
.AZ-group-field textarea.err::placeholder {
  color: #FF7A92;
}
.AZ-group-field input.err:focus,
.AZ-group-field textarea.err:focus {
  border-bottom: 1px solid #fff;
}
.AZ-group-field input.err:focus::-moz-placeholder, .AZ-group-field textarea.err:focus::-moz-placeholder {
  color: #fff;
}
.AZ-group-field input.err:focus::placeholder,
.AZ-group-field textarea.err:focus::placeholder {
  color: #fff;
}

.error-message {
  font-size: 13px;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  color: #FF7A92;
  padding: 5px 16px;
}

.AZ-section-title {
  margin-bottom: 80px;
  font-size: 32px;
  font-family: "Open Sans", sans-serif;
  font-weight: 300;
  color: #F5F3E9;
  position: relative;
  padding-bottom: 20px;
  text-align: center;
}
.AZ-section-title::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 32px;
  height: 3px;
  background: #F5F3E9;
  border-radius: 1px;
}

.AZ-navbar {
  z-index: 100;
  position: fixed;
  top: 0;
  width: 100%;
}
.AZ-navbar.bg {
  background: #040404;
}
.AZ-navbar .hamburger-menu {
  padding: 20px 0;
  font-size: 25px;
}
.AZ-navbar .nav-link {
  font-size: 16px;
  color: #F5F3E9;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  padding: 24px 30px;
  transition: all 0.2s linear;
}
.AZ-navbar .nav-link::after {
  content: "";
  position: absolute;
  background-origin: 0;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 32px;
  height: 3px;
  border-radius: 1px 1px 0 0;
}
.AZ-navbar .nav-link:hover {
  color: #F46A4E;
}
.AZ-navbar .nav-link.active {
  color: #F46A4E;
  background: transparent;
}
.AZ-navbar .nav-link.active::after {
  background: #F46A4E;
}
.AZ-navbar .nav-item {
  position: relative;
}
.AZ-navbar .nav-item::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: #F5F3E9;
}
.AZ-navbar .nav-item:last-child::after {
  content: none;
}

.owl-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}
.owl-nav .owl-next,
.owl-nav .owl-prev {
  color: #F5F3E9;
}
.owl-nav .owl-next span,
.owl-nav .owl-prev span {
  color: #F5F3E9;
}

.owl-dots {
  display: flex;
  justify-content: center;
  gap: 16px;
}
.owl-dots .owl-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #9A8B8B !important;
}
.owl-dots .owl-dot.active {
  background: #F5F3E9 !important;
  box-shadow: 1px 2px 0 rgba(154, 139, 139, 0.4);
}

.AZ-footer {
  padding: 70px 0 50px;
  background: #010101;
  position: sticky;
  bottom: 0;
  width: 100%;
  height: 15%;
}
.AZ-footer .back-top {
  width: 45px;
  height: 45px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #F5F3E9;
  position: absolute;
  top: 15px;
  right: 50px;
  border: 0;
  transition: all 0.2s linear;
}
.AZ-footer .back-top:hover {
  background: #F46A4E;
}
.AZ-footer .footer-text {
  color: #999896;
}
.AZ-footer .social a {
  font-size: 20px;
  color: #999896;
  transition: all 0.2s linear;
}
.AZ-footer .social a:hover {
  color: #F46A4E;
}
.AZ-footer .social a:hover .icon-icon-instagram:before,
.AZ-footer .social a:hover .icon-icon-youtube:before,
.AZ-footer .social a:hover .icon-icon-twitter:before {
  color: unset;
}

.AZ-comment-section {
  padding: 80px 0 50px 0;
}
.AZ-comment-section .comment-card {
  border-radius: 8px;
  border: 1px solid #232323;
  background: rgba(255, 255, 255, 0.08);
  padding: 32px;
}
.AZ-comment-section .comment-img-pro {
  width: 32px;
  border-radius: 50%;
}
.AZ-comment-section .comment-img-pro::after {
  padding-bottom: 100%;
}
.AZ-comment-section .comment-date {
  font-size: 13px;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  color: #999896;
}
.AZ-comment-section .comment-name {
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
}
.AZ-comment-section .stars span {
  color: #00A173;
  font-size: 16px;
}
.AZ-comment-section .stars .star-off {
  color: #999896;
}
.AZ-comment-section .stars .star-off.icon-Star:before {
  color: #999896;
}

.AZ-terms-section {
  padding: 80px 0 50px 0;
}
.AZ-terms-section .terms-box {
  padding: 40px;
  height: 340px;
  overflow-y: auto;
  border-radius: 8px;
  border: 1px solid #232323;
  background: rgba(255, 255, 255, 0.08);
}
.AZ-terms-section .terms-box::-webkit-scrollbar-track {
  background-color: #232323;
}
.AZ-terms-section .terms-box::-webkit-scrollbar {
  width: 5px;
  background-color: #232323;
}
.AZ-terms-section .terms-box::-webkit-scrollbar-thumb {
  background-color: rgba(217, 217, 217, 0.4);
  border-radius: 10px;
  width: 5px;
}
.AZ-terms-section .terms-title {
  font-size: 28px;
  color: #F5F3E9;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  margin-bottom: 20px;
}

.AZ-app-section {
  padding: 80px 0 50px 0;
}
.AZ-app-section .app-box {
  padding: 0 56px;
  display: block;
}
.AZ-app-section .app-img {
  width: 100%;
  display: block;
}
.AZ-app-section .app-name {
  font-size: 20px;
  color: #F5F3E9;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  margin: 10px 0;
}
.AZ-app-section .app-desc {
  font-size: 13px;
  color: #999896;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
}

.AZ-bg-header {
  background-image: url("/img/dark_bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.AZ-header-section {
  padding: 130px 0 240px 0;
}
.AZ-header-section .header-logo {
  margin-left: 50px;
}
.AZ-header-section .header-title {
  font-size: 38px;
  color: #F5F3E9;
  font-family: "Open Sans", sans-serif;
  font-weight: 300;
  margin-bottom: 10px;
}
.AZ-header-section .header-text {
  font-size: 20px;
  color: #F5F3E9;
  font-family: "Open Sans", sans-serif;
  font-weight: 300;
}
.AZ-header-section .header-text span {
  font-weight: 600;
}

.AZ-contact-section {
  padding: 80px 0 50px 0;
}
.AZ-contact-section .submit-btn {
  font-size: 16px;
  color: #6A6A6A;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  padding: 10px 150px;
  border: 0;
  transition: all 0.2s linear;
  margin-top: 70px;
}
.AZ-contact-section .submit-btn .icon-Send:before {
  transition: all 0.2s linear;
}
.AZ-contact-section .submit-btn:hover {
  background: #F46A4E;
  color: #ffffff;
}
.AZ-contact-section .submit-btn:hover .icon-Send:before {
  color: #ffffff;
}
.AZ-contact-section .spinner-border {
  width: 25px;
  height: 25px;
}

.AZ-how-work-section {
  background: #F5F3E9;
  padding: 35px 0;
  position: relative;
  overflow: hidden;
}
.AZ-how-work-section .work-step {
  font-size: 74px;
  color: #040404;
  font-family: "Open Sans", sans-serif;
  font-weight: 300;
  margin-right: 24px;
  padding-right: 24px;
  border-right: 2px solid #040404;
}
.AZ-how-work-section .work-title {
  font-size: 28px;
  color: #040404;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  margin-bottom: 10px;
}
.AZ-how-work-section .work-text {
  font-size: 16px;
  color: #040404;
  font-family: "Open Sans", sans-serif;
  font-weight: 300;
}
.AZ-how-work-section .content-step-one,
.AZ-how-work-section .content-step-two,
.AZ-how-work-section .content-step-three {
  margin-left: -110px;
  margin-bottom: 120px;
}
.AZ-how-work-section .AZ-section-title {
  color: #040404;
}
.AZ-how-work-section .AZ-section-title::after {
  background: #040404;
}
.AZ-how-work-section .owl-carousel {
  position: unset;
}
.AZ-how-work-section .owl-nav {
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  width: 100%;
  position: absolute;
  display: flex;
  justify-content: space-between;
  height: 0;
}
.AZ-how-work-section .owl-nav .owl-prev,
.AZ-how-work-section .owl-nav .owl-next {
  position: relative;
  width: 200px;
  min-height: 200vh;
}
.AZ-how-work-section .owl-nav .owl-prev span,
.AZ-how-work-section .owl-nav .owl-next span {
  display: none;
}
.AZ-how-work-section .owl-nav .owl-prev::after,
.AZ-how-work-section .owl-nav .owl-next::after {
  content: "\e918";
  font-family: "icomoon", sans-serif;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  color: #9A8B8B;
  font-size: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.AZ-how-work-section .owl-nav .owl-prev:hover::after,
.AZ-how-work-section .owl-nav .owl-next:hover::after {
  border: 1px solid #FFF;
  color: #040404;
  background: radial-gradient(257.26% 70.71% at 50% 50%, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.53) 100%);
}
.AZ-how-work-section .owl-nav .owl-next::after {
  content: "\e919";
}

.AZ-download-section {
  padding: 80px 0;
  background: #010101;
}
.AZ-download-section .download-specifications {
  font-size: 13px;
  color: #999896;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
}
.AZ-download-section .download-specifications span {
  font-size: 14px;
  color: #F5F3E9;
  font-weight: 600;
}
.AZ-download-section .download-desc {
  margin-left: 20px;
}
.AZ-download-section .download-desc li {
  list-style-type: disc;
  padding: 5px 0;
}
.AZ-download-section .download-app-title {
  font-size: 16px;
  color: #F5F3E9;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
}
.AZ-download-section .download-brand {
  width: 48px;
  height: 48px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}
.AZ-download-section .download-brand img {
  max-width: 70%;
  max-height: 70%;
}
.AZ-download-section .download-box {
  border-radius: 8px;
  border: 1px solid #232323;
  background: rgba(255, 255, 255, 0.08);
  padding: 24px;
}
.AZ-download-section .download-box-icon {
  border-radius: 8px;
  border: 0.5px solid var(--orange, #F46A4E);
  opacity: 0.7;
  width: 48px;
  height: 48px;
  color: #F46A4E;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 25px;
}
.AZ-download-section .download-box-desc {
  margin-top: 10px;
  font-size: 13px;
  color: #999896;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
}

.toast-container {
  z-index: 100;
}
.toast-container .toast {
  border: 1px solid var(--orange, #F46A4E);
  background: #372723;
  padding: 25px 20px;
  width: 400px;
  pointer-events: none;
}
.toast-container p {
  font-size: 16px;
  color: rgb(244, 106, 78);
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
}
.toast-container p span {
  font-size: 20px;
}

.AZ-terms-page {
  padding: 150px 0 100px;
  min-height: 85%;
}
.AZ-terms-page .terms-title {
  font-size: 20px;
  color: rgb(245, 243, 233);
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  margin-bottom: 5px;
}
.AZ-terms-page .terms-title-second {
  font-size: 16px;
  color: rgb(245, 243, 233);
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  margin-bottom: 20px;
}
.AZ-terms-page .terms-desc {
  font-size: 13px;
  color: rgb(153, 152, 150);
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  margin-bottom: 20px;
  display: block;
}
.AZ-terms-page .terms-text {
  font-size: 14px;
  color: rgb(245, 243, 233);
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  margin-bottom: 30px;
  line-height: 27px;
}
.AZ-terms-page .terms-text a {
  font-size: 14px;
  color: rgb(244, 106, 78);
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
}
.AZ-terms-page .terms-text a:hover {
  text-decoration: underline;
}
.AZ-terms-page .terms-link {
  font-size: 14px;
  color: rgb(244, 106, 78);
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
}
.AZ-terms-page .terms-link:hover {
  text-decoration: underline;
}
.AZ-terms-page .terms-list {
  padding-left: 20px;
  margin-bottom: 20px;
}
.AZ-terms-page .terms-list li {
  list-style-type: disc;
  font-size: 14px;
  color: rgb(245, 243, 233);
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  padding: 5px 0;
}

@media screen and (max-width: 991px) {
  .AZ-navbar .nav-item {
    width: 100%;
  }
  .AZ-navbar .nav-item::after {
    content: none;
  }
  .AZ-navbar .nav-pills {
    padding: 0 20px;
  }
  .AZ-navbar .nav-link {
    padding: 18px 0;
  }
  .AZ-navbar .nav-link::after {
    transform: unset;
    left: 0;
  }
  .AZ-navbar .navbar-container {
    background: #040404;
    min-height: 100vh;
    overflow-y: auto;
    width: 300px;
    position: absolute;
    right: -500px;
    top: 0;
    transition: all 0.2s linear;
  }
  .AZ-navbar .navbar-container.open {
    right: 0;
  }
  .AZ-navbar .header-sidebar {
    padding: 20px 16px;
  }
  .AZ-navbar .header-sidebar .close-sidebar {
    font-size: 25px;
  }
  .AZ-navbar .header-sidebar .close-sidebar:hover {
    color: #F46A4E;
  }
  .AZ-header-section {
    padding: 90px 0 80px 0;
  }
  .AZ-header-section .header-title {
    margin-bottom: 20px;
  }
  .AZ-how-work-section .AZ-section-title {
    margin-bottom: 0;
  }
  .AZ-how-work-section .content-step-one,
  .AZ-how-work-section .content-step-two,
  .AZ-how-work-section .content-step-three {
    margin-left: 30px;
    margin-bottom: unset;
  }
  .AZ-how-work-section svg {
    margin-left: 50px;
  }
  .AZ-how-work-section .owl-nav .owl-prev,
  .AZ-how-work-section .owl-nav .owl-next {
    width: 50px;
  }
  .AZ-how-work-section .owl-nav .owl-prev::after,
  .AZ-how-work-section .owl-nav .owl-next::after {
    font-size: 15px;
  }
  .AZ-how-work-section .work-step {
    margin-right: 16px;
    padding-right: 16px;
  }
  .owl-dots {
    margin-top: 20px;
  }
  .AZ-terms-page {
    padding: 100px 0 150px;
  }
}
@media screen and (max-width: 448px) {
  .AZ-navbar .navbar-container {
    width: 100%;
  }
  .AZ-section-title {
    font-size: 25px;
  }
  .AZ-contact-section .submit-btn {
    padding: 10px;
    width: 100%;
    justify-content: center;
  }
  .AZ-footer .back-top {
    width: 36px;
    height: 36px;
    top: 10px;
    right: 10px;
  }
  .AZ-terms-section .terms-box {
    padding: 35px;
  }
  .AZ-header-section .header-logo {
    margin-left: 30px;
  }
  .AZ-how-work-section .content-step-one,
  .AZ-how-work-section .content-step-two,
  .AZ-how-work-section .content-step-three {
    margin-left: 30px;
    margin-bottom: unset;
    margin-top: -150px;
  }
  .AZ-how-work-section svg {
    margin-top: -120px;
    margin-left: 50px;
  }
  .AZ-how-work-section .owl-nav .owl-prev,
  .AZ-how-work-section .owl-nav .owl-next {
    width: 30px;
  }
  .AZ-how-work-section .owl-nav .owl-prev::after,
  .AZ-how-work-section .owl-nav .owl-next::after {
    font-size: 15px;
  }
  .toast-container .toast {
    padding: 15px;
    width: 100%;
  }
  .toast-container p {
    font-size: 14px;
  }
  .toast-container p span {
    font-size: 16px;
  }
}
@media screen and (max-width: 360px) {
  .AZ-how-work-section .work-step {
    font-size: 40px;
  }
  .AZ-how-work-section .work-title {
    font-size: 22px;
  }
}/*# sourceMappingURL=style.css.map */