/* poppins-regular - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/poppins-v20-latin-regular.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* poppins-500 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/poppins-v20-latin-500.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* poppins-600 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/poppins-v20-latin-600.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
*,
*::after,
*::before {
  box-sizing: border-box;
}

:root {
  --clr-text: #fff;
  --clr-dark-blue: #282938;
  --clr-royal-blue: #2405f2;
  --clr-btn-color: #fcd980;
  --clr-grey: #f4f6fc;
  --clr-tint-blue: #1c1e53;
}

htmml {
  scroll-behavior: smooth;
}

body {
  color: var(--clr-text);
  line-height: 1.5;
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: none;
  color: var(--clr-tint-blue);
  border-radius: 41px;
}

.btn:hover {
  opacity: 0.9;
  transition: 255ms cubic-bezier(1, 0.01, 0, 0.98);
  transform: scale(0.9);
}

.container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 40px;
}

.header {
  width: 100%;
  height: 762px;
  background-color: var(--clr-tint-blue);
  position: relative;
}
@media (max-width: 776px) {
  .header {
    height: 700px;
  }
}
@media (max-width: 756px) {
  .header {
    height: 650px;
  }
}
@media (max-width: 625px) {
  .header {
    height: 550px;
  }
}

.navbar {
  width: 100%;
  height: 92px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.navbar__menu {
  display: flex;
  gap: 48px;
}
@media (max-width: 1058px) {
  .navbar__menu {
    display: flex;
    gap: 20px;
  }
}
.navbar ul {
  display: flex;
  gap: 32px;
}
@media (max-width: 1058px) {
  .navbar ul {
    display: flex;
    gap: 20px;
  }
}

@media (max-width: 634px) {
  .navbar__menu {
    display: none;
  }
}

.list {
  display: none;
}
@media (max-width: 634px) {
  .list {
    display: block;
  }
}

.menu {
  color: #bbbbcb;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
  /* 175% */
}
@media (max-width: 845px) {
  .menu {
    font-size: 15px;
  }
}
@media (max-width: 692px) {
  .menu {
    font-size: 14px;
  }
}

.navbar__menu .menu__ul li:nth-child(1) a {
  color: var(--clr-text);
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
}
@media (max-width: 692px) {
  .navbar__menu .menu__ul li:nth-child(1) a {
    font-size: 15px;
  }
}

.btn {
  color: var(--clr-text);
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
  background-color: inherit;
  border-radius: 41px;
  border: 2px solid rgba(244, 246, 252, 0.2);
  padding: 16px 48px;
}
@media (max-width: 1058px) {
  .btn {
    padding: 14px 30px;
  }
}
@media (max-width: 855px) {
  .btn {
    display: none;
  }
}

.header__Tittle {
  width: 100%;
  margin-top: 100px;
  display: flex;
}

.header__Left {
  z-index: 111111;
  width: 50%;
  position: absolute;
  top: 174px;
  display: flex;
  flex-direction: column;
  justify-content: right;
}
@media (max-width: 1248px) {
  .header__Left {
    width: 70%;
  }
}
@media (max-width: 1019px) {
  .header__Left {
    width: 90%;
    position: absolute;
    top: 150px;
  }
}
@media (max-width: 779px) {
  .header__Left {
    width: auto;
    position: absolute;
    top: 130px;
  }
}

.header__Rigth {
  z-index: 1;
  position: absolute;
  top: 10;
  right: 100px;
}
@media (max-width: 1248px) {
  .header__Rigth {
    filter: blur(3px);
    display: flex;
  }
}
@media (max-width: 822px) {
  .header__Rigth {
    position: absolute;
    top: 10;
    right: 70px;
  }
}
@media (max-width: 751px) {
  .header__Rigth {
    position: absolute;
    top: 10;
    right: 40px;
  }
}
@media (max-width: 707px) {
  .header__Rigth {
    top: 169px;
    right: 0;
  }
}

.header__Left h1 {
  width: 70%;
  color: var(--clr-text);
  font-family: Poppins;
  font-size: 54px;
  font-style: normal;
  font-weight: 600;
  margin-bottom: 0;
}
@media (max-width: 756px) {
  .header__Left h1 {
    font-size: 45px;
  }
}
@media (max-width: 624px) {
  .header__Left h1 {
    font-size: 40px;
    line-height: 40px;
  }
}

.header__Left p {
  width: 70%;
  color: var(--clr-text);
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  margin: 17px 0;
}
@media (max-width: 454px) {
  .header__Left p {
    font-size: 14px;
    line-height: 20px;
  }
}

.header__btn {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  gap: 20px;
  margin-top: 60px;
  margin-bottom: 30px;
  justify-content: center;
}
@media (max-width: 777px) {
  .header__btn {
    margin-top: 20px;
    gap: 10px;
  }
}
.header__btn .btn__header {
  background-color: var(--clr-btn-color);
  color: var(--clr-tint-blue);
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
  border-radius: 41px;
  padding: 16px 48px;
  cursor: pointer;
  border: none;
}
@media (max-width: 632px) {
  .header__btn .btn__header {
    padding: 10px 30px;
    font-size: 15px;
  }
}
@media (max-width: 450px) {
  .header__btn .btn__header {
    display: none;
  }
}
.header__btn .view {
  border: none;
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--clr-text);
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  background-color: inherit;
  border-radius: 41px;
  cursor: pointer;
}
@media (max-width: 560px) {
  .header__btn .view {
    padding: 10px 0px 10px 20px;
  }
}
@media (max-width: 450px) {
  .header__btn .view {
    margin-top: -20px;
  }
}
.header__btn .btn__header:hover {
  opacity: 0.9;
  transition: 255ms cubic-bezier(1, 0.01, 0, 0.98);
  transform: scale(0.9);
}
.header__btn .view:hover {
  transform: scale(1);
  opacity: 0.6;
}

#we__Work {
  width: 100%;
  height: auto;
  background-color: var(--clr-grey);
  margin: 0;
  padding: 0;
}

.main__Content {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 900px) {
  .main__Content {
    display: flex;
    flex-direction: column;
  }
}

.how__Work {
  width: 50%;
}
@media (max-width: 900px) {
  .how__Work {
    width: 100%;
  }
}

.how__Work h2 {
  color: var(--clr-dark-blue);
  font-family: Poppins;
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
  margin-top: 128px;
}

.how__Work p {
  color: var(--clr-dark-blue);
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  width: 50%;
  margin-top: 16px;
}
@media (max-width: 900px) {
  .how__Work p {
    width: 100%;
  }
}

.touch {
  color: var(--clr-royal-blue);
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
  display: flex;
  gap: 32px;
  align-items: center;
  cursor: pointer;
  width: -moz-fit-content;
  width: fit-content;
}

.touch:hover {
  transform: scale(1);
  opacity: 0.7;
}

.step__By {
  width: 50%;
  display: grid;
  grid-template-columns: auto auto;
  gap: 10px;
  margin-top: 100px;
}
@media (max-width: 900px) {
  .step__By {
    width: 100%;
  }
}
@media (max-width: 571px) {
  .step__By {
    display: grid;
    gap: 5px;
  }
}

.box__order {
  padding: 10px;
}
.box__order .box__one {
  width: 49.1px;
  position: relative;
  background-color: var(--clr-royal-blue);
  border-radius: 8px;
  height: 49.1px;
}
.box__order .box__one span {
  position: absolute;
  top: 15px;
  right: 20px;
}

.span {
  color: var(--clr-dark-blue);
  font-family: Poppins;
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 48px;
}

.box__order p {
  color: var(--clr-dark-blue);
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}/*# sourceMappingURL=style.css.map */