/* ========== Colors ========== */
:root {
  --color-white: #ffffff;
  --color-light: #f3f3f4;
  --color-grey: #959595;
  --color-accent: #f8931f;
  --color-disabled: #bfbfbf;
  --color-black: #000000;
}

/* ========== Fonts ========== */
@font-face {
  font-family: "RB";
  src: url("../fonts/rb_regular.ttf");
  font-weight: 400;
}
@font-face {
  font-family: "RB";
  src: url("../fonts/rb_bold.ttf");
  font-weight: 700;
}
/* ========== Initialize setup ========== */
*,
*::after,
*::before {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "RB", Helvetica, sans-serif, serif, arial;
  font-weight: 400;
}

html {
  font-size: 56%;
  direction: rtl;
  scroll-behavior: smooth;
}
@media (min-width: 37.5em) {
  html {
    font-size: 62.5%;
  }
}

body {
  font-size: 1.6rem;
  color: var(--color-black);
  background-color: var(--color-white);
  font-family: "RB", sans-serif, serif, arial;
  font-weight: 400;
  position: relative;
  overflow-x: hidden;
  line-height: 1.7;
}

::-webkit-scrollbar {
  width: 1rem;
  height: 1rem;
}

::-webkit-scrollbar-track {
  box-shadow: inset 0 0 0.5rem rgba(0, 0, 0, 0.3);
}

::-webkit-scrollbar-thumb {
  background-color: var(--color-grey);
  outline: 1px solid var(--color-grey);
}

::-moz-selection {
  background: var(--color-accent);
  color: var(--color-white);
}

::selection {
  background: var(--color-accent);
  color: var(--color-white);
}

::-moz-selection {
  background: var(--color-accent);
  color: var(--color-white);
}

:focus {
  outline: none !important;
  box-shadow: none;
}

figure,
p {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  margin: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

ul,
ol {
  padding: 0;
  margin: 0;
  list-style: none;
}

img {
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

a {
  text-decoration: none;
}

button {
  cursor: pointer;
}

.js-scroll {
  opacity: 0;
  transition: opacity 500ms;
}
.js-scroll.scrolled {
  opacity: 1;
}
.js-scroll.scrolled.fade-up {
  -webkit-animation: fade-up 1s ease-in-out both;
          animation: fade-up 1s ease-in-out both;
}
.js-scroll.scrolled.slide-right {
  -webkit-animation: slide-in-right 1s ease-in-out both;
          animation: slide-in-right 1s ease-in-out both;
}

@-webkit-keyframes wave {
  from {
    transform: rotateZ(-2deg);
  }
  to {
    transform: rotateZ(2deg);
  }
}

@keyframes wave {
  from {
    transform: rotateZ(-2deg);
  }
  to {
    transform: rotateZ(2deg);
  }
}
@-webkit-keyframes bounce {
  from {
    transform: translateY(0deg);
  }
  to {
    transform: translateY(-1rem);
  }
}
@keyframes bounce {
  from {
    transform: translateY(0deg);
  }
  to {
    transform: translateY(-1rem);
  }
}
@-webkit-keyframes slide-in-right {
  0% {
    transform: translateX(10rem);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slide-in-right {
  0% {
    transform: translateX(10rem);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@-webkit-keyframes fade-up {
  0% {
    transform: translateY(5rem);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-up {
  0% {
    transform: translateY(5rem);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@-webkit-keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
/* ========== Content block styles ========== */
.container {
  padding: 0 3rem;
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .container {
    max-width: 85rem;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 120rem;
  }
}

.sec-block {
  padding: 9rem 0;
}

.title {
  text-align: center;
  font-size: 3.5rem;
  color: var(--color-black);
}

.subtitle {
  text-align: center;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--color-grey);
  margin-top: 1.3rem;
}

/* ========== Colors styles ========== */
.is-accent {
  color: var(--color-accent);
}

.is-dimmed {
  color: var(--color-grey);
}

.bg-accent {
  background-color: var(--color-accent);
}

.bg-light {
  background-color: rgba(248, 147, 31, 0.03) !important;
}

/* ========== Font styles ========== */
.fBold {
  font-weight: 700;
}

.fRegular {
  font-weight: 400;
}

.f14 {
  font-size: 1.4rem;
}

.f16 {
  font-size: 1.6rem;
}

/* ========== SVG styles ========== */
.svg {
  fill: currentColor;
}
.svg-resize-16 {
  width: 1.6rem;
  height: 1.6rem;
}
.svg-resize-20 {
  width: 2rem;
  height: 2rem;
}
.svg-resize-35 {
  width: 3.5rem;
  height: 3.5rem;
}

.btn {
  width: 14rem;
  height: 5rem;
  border-radius: 2.5rem;
  font-weight: 700;
  font-size: 1.2rem;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  border: 1px solid;
  transition: all 0.2s linear;
  position: relative;
  z-index: 0;
}
.btn svg {
  -webkit-margin-end: 0.8rem;
          margin-inline-end: 0.8rem;
  transition: all 0.2s linear;
}
.btn span {
  font-weight: 700;
  line-height: 1;
  transition: all 0.2s linear;
}
.btn::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 2.5rem;
  opacity: 0;
  transition: all 0.35s linear;
  background-image: linear-gradient(-45deg, #ffffff, #f8931f, #0781b2, #c9492c, #ffffff);
  background-size: 200% 200%;
  -webkit-animation: gradient 0.35s 1 ease-in-out;
          animation: gradient 0.35s 1 ease-in-out;
}
.btn:hover, .btn:focus {
  color: var(--color-white);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  border: none;
}
.btn:hover::before, .btn:focus::before {
  opacity: 1;
}

.btn-outline {
  color: var(--color-accent);
  border-color: var(--color-accent);
  background-color: var(--color-white);
}

.btn-accent {
  border-color: var(--color-accent);
  background-color: var(--color-accent);
}

.navbar {
  padding: 1.5rem 0;
  background-color: var(--color-white);
}
.navbar.fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  box-shadow: 0 0.5rem 1rem rgba(149, 149, 149, 0.07);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar-brand {
  height: 4.5rem;
  -webkit-margin-end: 5rem;
          margin-inline-end: 5rem;
}
@media only screen and (min-width: 37.5em) {
  .navbar-brand {
    height: 5.5rem;
    -webkit-margin-end: 0;
            margin-inline-end: 0;
  }
}
.navbar-brand img {
  width: auto;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.navbar-wrapper {
  display: none;
}
@media only screen and (min-width: 768px) {
  .navbar-wrapper {
    display: block;
    width: 100%;
    max-width: 50rem;
    margin: 0 2rem;
  }
}

.navbar-nav {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}
@media only screen and (min-width: 992px) {
  .navbar-nav {
    justify-content: space-between;
  }
}
.navbar-nav .nav-link {
  display: block;
  color: var(--color-black);
  font-size: 1.4rem;
  font-weight: 400;
}
.navbar-nav .nav-link:hover, .navbar-nav .nav-link:focus {
  color: var(--color-accent);
}
.navbar-nav .nav-link.active {
  font-size: 1.5rem;
  color: var(--color-accent);
  font-weight: 700;
}

.app-btns {
  display: flex;
  align-items: center;
  grid-gap: 1.2rem;
}

.grid-2-cols {
  display: grid;
  grid-gap: 8rem;
}
@media only screen and (min-width: 768px) {
  .grid-2-cols {
    grid-template-columns: repeat(2, 1fr);
  }
}
.grid-2-cols > div {
  align-self: center;
}

.form-sample {
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.7rem;
  max-width: 43.6rem;
  height: 28.2rem;
  border-radius: 1.2rem;
  text-align: center;
  background-image: linear-gradient(to left, #0781b2, #c9492c, #0781b2);
  background-size: 200% 200%;
  -webkit-animation: gradient 15s ease infinite alternate;
          animation: gradient 15s ease infinite alternate;
}
.form-sample .title {
  font-size: 1.6rem;
  color: var(--color-white);
  margin-bottom: 2rem;
}
.form-sample .input {
  position: relative;
  z-index: 0;
  width: 100%;
}
.form-sample .input .chevron {
  display: inline-block;
  position: absolute;
  z-index: 1;
  left: 2rem;
  top: 43%;
  transform: translateY(-50%);
}
.form-sample .input .chevron::after {
  display: inline-block;
  content: "";
  border-style: solid;
  border-width: 0.2rem 0.2rem 0 0;
  border-color: var(--color-white);
  width: 0.8rem;
  height: 0.5em;
  transform: rotate(135deg);
  vertical-align: top;
  margin-top: 0.5rem;
  border-radius: 0.15rem;
}
.form-sample .input input,
.form-sample .input select {
  height: 5rem;
  padding: 0 4.5rem;
  color: var(--color-white);
  width: 100%;
  border: none;
  border-radius: 5rem;
  background-color: rgba(255, 255, 255, 0.1);
  margin-bottom: 1rem;
  opacity: 1;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.form-sample .input input::-moz-placeholder, .form-sample .input select::-moz-placeholder {
  color: var(--color-white);
}
.form-sample .input input:-ms-input-placeholder, .form-sample .input select:-ms-input-placeholder {
  color: var(--color-white);
}
.form-sample .input input::placeholder,
.form-sample .input select::placeholder {
  color: var(--color-white);
}
.form-sample .input .svg {
  position: absolute;
  right: 2rem;
  top: 43%;
  transform: translateY(-50%);
}
.form-sample .btn {
  border: none;
  width: 100%;
  margin-top: 2rem;
}
.form-sample .btn:hover {
  color: var(--color-accent);
}
.form-sample .btn:hover::before {
  content: unset;
}

.add-item {
  position: relative;
  z-index: 0;
  margin-top: 4rem;
  display: flex;
  align-items: center;
  padding: 1.6rem 2rem;
  max-width: 47rem;
  height: 8.2rem;
  border-radius: 1.2rem;
  text-align: center;
  background-image: linear-gradient(to left, #0781b2, #c9492c, #0781b2);
  background-size: 200% 200%;
  -webkit-animation: gradient 15s ease infinite alternate;
          animation: gradient 15s ease infinite alternate;
}
.add-item::after {
  position: absolute;
  inset: 0;
  content: "";
  background-image: url("../img/item.webp");
}
.add-item .svg {
  width: 3rem;
  height: 3rem;
}
.add-item__content {
  position: relative;
  z-index: 1;
  color: var(--color-white);
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  -webkit-margin-start: 1.5rem;
          margin-inline-start: 1.5rem;
}

.services {
  display: grid;
  grid-gap: 1.6rem;
}
@media only screen and (min-width: 992px) {
  .services {
    grid-template-columns: repeat(3, 1fr);
  }
}
.services .service-item {
  display: flex;
  padding: 0 2rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 31rem;
  border-radius: 3rem;
  transition: all 0.35s linear;
}
@media only screen and (min-width: 1200px) {
  .services .service-item {
    padding: 0 4.4rem;
  }
}
.services .service-item:first-child {
  padding: 0 6rem;
}
.services .service-item__icon {
  width: auto;
  height: 6rem;
}
.services .service-item__title {
  font-size: 2rem;
  font-weight: 700;
  margin: 2.5rem 0 1.5rem 0;
}
.services .service-item:hover, .services .service-item:focus {
  transform: translateY(-1rem);
}
.services .service-item:hover .service-item__title, .services .service-item:focus .service-item__title {
  color: var(--color-accent);
}

.how-img {
  width: 100%;
  max-width: 25.6rem;
  margin: 0 auto;
  position: relative;
  z-index: 0;
}
.how-img img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-animation: bounce 1s infinite alternate;
          animation: bounce 1s infinite alternate;
}
.how-img::before {
  overflow: hidden;
  content: "";
  position: absolute;
  z-index: -1;
  width: 35.2rem;
  height: 51.6rem;
  border-top-left-radius: 20rem;
  border-top-right-radius: 20rem;
  background-color: rgba(248, 147, 31, 0.05);
  top: -9rem;
  left: 50%;
  transform: translateX(-50%);
}
.how-2 {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
}
@media only screen and (min-width: 768px) {
  .how-2 {
    display: grid;
    flex-direction: unset;
    align-items: unset;
  }
}
.how-content__title {
  font-weight: 700;
  font-size: 3.5rem;
  margin-bottom: 2.5rem;
}
.how-content p {
  max-width: 45rem;
  width: 100%;
}
.how-3 p {
  max-width: 40rem;
}

.owl-stage {
  padding: 6rem 0;
}
.owl-item {
  width: 26rem;
  height: 52rem;
}
.owl-item img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.owl-item.center {
  transform: scale(1.05);
}
.owl-nav, .owl-dots {
  display: none;
}

#app {
  position: relative;
  z-index: 0;
}
#app::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 60%;
  top: 0;
  background-color: rgba(248, 147, 31, 0.05);
}

header {
  margin-top: 8rem;
  margin-bottom: 1rem;
}
header .header-wrapper {
  position: relative;
  z-index: 0;
}
header .header-wrapper .header-content {
  padding: 10rem 0;
  max-width: 45rem;
  width: 100%;
}
header .header-wrapper .title {
  text-align: start;
  font-size: 3.5rem;
  margin-bottom: 2.5rem;
}
header .app-btns {
  margin-top: 3.3rem;
}
header .header-img {
  position: absolute;
  z-index: -1;
  bottom: 0;
  width: auto;
  opacity: 0.15 !important;
}
@media screen and (min-width: 450px) {
  header .header-img {
    left: 0;
  }
}
@media screen and (min-width: 992px) {
  header .header-img {
    opacity: 1 !important;
  }
}
header .header-img img {
  width: 35.2rem;
  height: 51.6rem;
  -o-object-fit: contain;
     object-fit: contain;
  transform-origin: bottom;
  position: relative;
  z-index: 0;
  animation: bounce 1s infinite 2s alternate-reverse;
}
header .header-img::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 37.6rem;
  height: 51rem;
  border-top-left-radius: 20rem;
  border-top-right-radius: 20rem;
  background-color: transparent;
  border: 1px solid var(--color-accent);
  top: -2rem;
  left: 50%;
  transform: translateX(-50%);
}

footer #download {
  position: relative;
  z-index: 0;
  text-align: center;
}
footer #download .download-bg {
  padding: 5.5rem 0;
  border-radius: 1.2rem;
  background-size: 400% 400%;
  background-image: linear-gradient(to left, #c9492c, #0781b2, #fd5900, #0781b2, #c9492c);
  -webkit-animation: gradient 80s linear infinite;
          animation: gradient 80s linear infinite;
}
@media only screen and (max-width: 37.5em) {
  footer #download .download-bg {
    border-radius: 0;
  }
}
footer #download .title {
  max-width: 60rem;
  margin: 0 auto;
  padding: 0 3rem;
  color: var(--color-white);
}
@media only screen and (max-width: 37.5em) {
  footer #download .title {
    font-size: 2.8rem;
  }
}
footer #download .subtitle {
  font-size: 1.6rem;
  margin-top: 2rem;
  color: var(--color-white);
}
footer #download .app-btns {
  margin-top: 4rem;
  justify-content: center;
}
footer #download .app-btns .btn-outline {
  border: none;
}
footer #download .app-btns .btn::before {
  content: unset;
}
footer #download .app-btns .btn:hover, footer #download .app-btns .btn:focus {
  color: var(--color-accent);
  background-color: var(--color-white);
  transform: translateY(-0.5rem);
}
footer #download .app-btns .btn:hover span,
footer #download .app-btns .btn:hover svg, footer #download .app-btns .btn:focus span,
footer #download .app-btns .btn:focus svg {
  transform: scale(1.1);
}
@media only screen and (max-width: 37.5em) {
  footer #download .container {
    padding: 0;
  }
}

.footer__end {
  padding: 2rem 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  border-top: 1px solid #e4e4e4;
}
@media only screen and (min-width: 768px) {
  .footer__end {
    justify-content: space-between;
  }
}

.social {
  display: flex;
  align-items: center;
  justify-content: center;
}
.social-link {
  position: relative;
  z-index: 0;
  display: grid;
  place-items: center;
  margin: 0 0.8rem;
  width: 4rem;
  height: 4rem;
  border-radius: 100%;
  background-color: var(--color-accent);
  transition: all 0.25s linear;
}
@media only screen and (min-width: 768px) {
  .social-link {
    width: 5rem;
    height: 5rem;
  }
}
.social-link::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  opacity: 0;
  transition: all 0.35s linear;
  background-image: linear-gradient(-45deg, #ffffff, #f8931f, #0781b2, #c9492c, #ffffff);
  background-size: 200% 200%;
  -webkit-animation: gradient 0.35s 1 ease-in-out;
          animation: gradient 0.35s 1 ease-in-out;
}
.social-link:hover, .social-link:focus {
  transform: translateY(-0.5rem);
  box-shadow: 0 0 1rem rgba(248, 147, 31, 0.25);
}
.social-link:hover::before, .social-link:focus::before {
  opacity: 1;
}

.contacts {
  padding: 6rem 0 3rem 0;
}
.contacts .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media only screen and (min-width: 992px) {
  .contacts .container {
    flex-direction: row;
    justify-content: space-between;
  }
}
.contacts__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 3rem;
}
@media only screen and (min-width: 992px) {
  .contacts__head {
    align-items: flex-start;
    text-align: start;
    margin-bottom: 0;
  }
}
.contacts__head .title {
  text-align: center;
  font-size: 2.5rem;
}
@media only screen and (min-width: 992px) {
  .contacts__head .title {
    text-align: start;
  }
}
.contacts__grid {
  display: grid;
  grid-gap: 2rem;
}
@media only screen and (min-width: 37.5em) {
  .contacts__grid {
    grid-gap: 8rem;
    grid-template-columns: repeat(2, minmax(100px, 1fr));
  }
}
.contacts__grid .contact__item {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.contacts__grid .contact__item .svg {
  margin-top: 2rem;
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  -webkit-margin-end: 1.8rem;
          margin-inline-end: 1.8rem;
}
.contacts__grid .contact__details {
  color: var(--color-black);
  display: flex;
  align-items: center;
  flex-direction: column;
  grid-gap: 1rem;
}
.contacts__grid .contact__details a {
  direction: ltr;
  color: var(--color-black);
}

.copyrights {
  padding: 1.4rem 0;
  color: var(--color-accent);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.copyrights img {
  margin: 0 0.5rem;
  height: 1.8rem;
  -o-object-fit: contain;
     object-fit: contain;
}