/* ------------------------------------------ */
/*         General & Basic Styles
/* ------------------------------------------ */
html,
body {
  overflow-x: hidden;
}

body {
  font-family: "SF-Pro-Regular";
  background-color: hsl(205, 69.2%, 89.8%);
  color: #000;
  direction: rtl;
}

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

ul {
  margin-bottom: 0;
  padding-right: 0;
  padding-left: 0;
  margin-left: 0;
  list-style: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

p {
  margin-bottom: 0;
}

a {
  text-decoration: none !important;
  outline: none;
  transition: all 0.3s;
}

a:hover,
a:active,
a:focus {
  outline: 0;
}

input,
textarea,
button,
select {
  outline: none;
}

button,
input {
  border: none;
}

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

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

@keyframes ticker {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(40%);
  }
}
/* ------------------------------------------ */
/*         Header
/* ------------------------------------------ */
.header {
  margin: 0.5rem;
  background-color: #fff;
  border-radius: 1rem 1rem 0 0;
}
.header .content {
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .content .menu-icon {
  cursor: pointer;
}
.header .content .logo {
  flex: 1;
  text-align: center;
}
.header .content .logo img {
  width: 100px;
}
.header.fixed {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  background-color: #fff;
  z-index: 9;
  border-radius: 0;
  margin: 0;
}

.news-ticker {
  width: 100%;
  background-color: #090070;
  white-space: nowrap;
  font-size: 14px;
  color: #fff;
  padding: 0 16px;
  overflow: hidden;
}

.ticker-content {
  display: inline-flex;
  align-items: center;
  animation: ticker 16s linear infinite;
  padding: 0 16px;
}
.ticker-content .ticker-item {
  width: 100%;
  height: 40px;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 5px;
}

/* ------------------------------------------ */
/*         Footer
/* ------------------------------------------ */
.mobile-footer {
  background-color: #fff;
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 999;
}
.mobile-footer ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobile-footer ul li {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  padding: 10px 0;
}
.mobile-footer ul li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.mobile-footer ul li .icon {
  width: 35px;
  height: 35px;
}
.mobile-footer ul li .icon svg {
  max-width: 100%;
  height: 100%;
}
.mobile-footer ul li .text {
  font-size: 14px;
  color: #002a75;
  font-family: "SF-Pro-Regular";
  text-align: center;
}

/* ------------------------------------------ */
/*         Home Page
/* ------------------------------------------ */
.home-page .slider .box img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.home-page .products {
  padding: 30px 0;
}
.home-page .products > .title {
  font-size: 22px;
  font-family: "SF-Pro-bold";
  color: #000;
  margin-bottom: 20px;
  text-align: center;
}
.home-page .products .product-boxes {
  display: grid;
  gap: 10px;
}
.home-page .products .product-boxes .product-box {
  background-color: #fff;
  margin-bottom: 20px;
}
.home-page .products .product-boxes .product-box .product .image {
  width: 100%;
  height: 300px;
  overflow: hidden;
  border-radius: 5px 5px 0 0;
}
.home-page .products .product-boxes .product-box .product .image img {
  width: 100%;
  height: 100%;
  border-radius: 5px 5px 0 0;
}
.home-page .products .product-boxes .product-box .product .order-now {
  background-color: #01509b;
  border-radius: 5px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}
.home-page .products .product-boxes .product-box .details {
  text-align: center;
  padding: 10px;
}
.home-page .products .product-boxes .product-box .details .title {
  color: #000;
  margin-bottom: 5px;
}
.home-page .products .product-boxes .product-box .details .price {
  color: #000;
}
.home-page .form form {
  background-color: #0D213C;
  padding: 50px 15px 50px 15px;
  border-radius: 20px 20px 20px 20px;
}
.home-page .form form .discount-count-down {
  padding-bottom: 50px;
}
.home-page .form form .discount-count-down .title {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-bottom: 0.5rem;
}
.home-page .form form .discount-count-down .van-count-down .boxes {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.home-page .form form .discount-count-down .van-count-down .boxes .box {
  color: #fff;
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-family: "SF-Pro-bold";
  height: 4rem;
  width: 4rem;
  flex-direction: column;
  border-radius: 0.375rem;
  background-color: #1a7efb;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-page .form form .discount-count-down .van-count-down .boxes .box .label {
  display: block;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: #fff;
}
.home-page .form form .group-input {
  display: flex;
  gap: 15px;
  width: 100%;
  margin-bottom: 15px;
}
.home-page .form form .group-input input,
.home-page .form form .group-input select {
  flex-basis: 50%;
  background-color: #fff;
  height: 55px;
  border-radius: 10px;
  color: #000000;
  padding: 15px;
  border: 1px solid #d1d5db;
}
.home-page .form form .group-input input::-moz-placeholder, .home-page .form form .group-input select::-moz-placeholder {
  color: #000;
  opacity: 1;
}
.home-page .form form .group-input input::placeholder,
.home-page .form form .group-input select::placeholder {
  color: #000;
  opacity: 1;
}
.home-page .form form .group-input select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.home-page .form form .group-input.one input,
.home-page .form form .group-input.one select {
  flex-basis: 100%;
}
.home-page .form form .group-input .phone {
  position: relative;
  flex-basis: 50%;
}
.home-page .form form .group-input .phone input {
  width: 100%;
  padding-left: 130px;
}
.home-page .form form .group-input .phone .box {
  position: absolute;
  top: 50%;
  left: 25px;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  border-right: 1px solid #e9e9e9;
  padding-right: 15px;
  cursor: pointer;
}
.home-page .form form .group-input .phone .box svg {
  font-size: 9px;
  color: #707070;
}
.home-page .form form .group-input .phone .box .code {
  font-size: 16px;
  color: #000;
  margin: 0 10px 2px 5px;
}
.home-page .form form .group-input .confirm-order {
  margin: 10px 0;
}
.home-page .form form .group-input .confirm-order .van-checkbox {
  gap: 10px;
}
.home-page .form form .group-input .confirm-order .van-checkbox .van-checkbox__icon {
  background-color: #fff;
}
.home-page .form form .group-input .confirm-order .van-checkbox .van-checkbox__label {
  color: #fff;
}
.home-page .form form button {
  background-color: #1a7efb;
  color: #fff;
  padding: 8px 20px;
  border-radius: 7px;
  font-size: 16px;
  font-weight: 500;
}
.home-page .customers-opinions {
  padding-top: 50px;
}
.home-page .customers-opinions .boxes {
  padding: 20px 15px 50px 15px;
  border-radius: 20px 20px 0 0;
}
.home-page .customers-opinions .boxes .title {
  font-size: 20px;
  font-family: "SF-Pro-bold";
  margin-bottom: 20px;
  text-align: center;
  padding-bottom: 15px;
}
.home-page .customers-opinions .boxes .box {
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 10px;
}
.home-page .customers-opinions .boxes .box .head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.home-page .customers-opinions .boxes .box .head .info {
  display: flex;
  align-items: center;
  gap: 10px;
}
.home-page .customers-opinions .boxes .box .head .info .icon {
  background-color: #DFE3EB;
  width: 25px;
  height: 25px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #444968;
  font-size: 10px;
}
.home-page .customers-opinions .boxes .box .head .info .name {
  font-size: 14px;
  font-family: "SF-Pro-Regular";
}
.home-page .customers-opinions .boxes .box .head .stars {
  display: flex;
  align-items: center;
  gap: 5px;
}
.home-page .customers-opinions .boxes .box .opinion {
  color: #5b5b5b;
  padding: 15px 0;
  font-size: 14px;
}
.home-page .customers-opinions button {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000;
  margin: 20px auto;
  width: 100px;
  font-size: 12px;
  border-radius: 25px;
  background-color: #1a7efb;
  padding: 10px 15px;
}

/* ------------------------------------------ */
/*         product Page
/* ------------------------------------------ */
.create-order .slider {
  margin: 0.5rem;
  border-radius: 0 0 1rem 1rem;
  overflow: hidden;
}
.create-order .slider .box img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.create-order .form .title {
  background-color: #01509b;
  color: #fff;
  padding: 20px;
  font-size: 34px;
  border-radius: 1rem;
  margin: 0.5rem;
  text-align: center;
}
.create-order .form form {
  margin: 30px 0;
  padding: 20px;
  background-color: #fff;
  border-radius: 10px;
}
.create-order .form form .input-style {
  display: flex;
  align-items: center;
  margin-bottom: 1.25rem;
}
.create-order .form form .input-style label {
  flex-basis: 50%;
  font-size: 14px;
  line-height: 1.25rem;
  font-weight: 700;
  color: rgb(55, 65, 81);
}
.create-order .form form .input-style input,
.create-order .form form .input-style select {
  height: 50px;
  font-size: 16px;
}
.create-order .form form .v-select {
  height: 50px;
  padding: 0;
}
.create-order .form form .v-select .vs__dropdown-toggle {
  height: 50px;
}
.create-order .form form .v-select .vs__search {
  margin: 0;
}
.create-order .form form .group {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.create-order .form form .group .input-style {
  flex-basis: 49%;
}
.create-order .form form .vs__dropdown-toggle {
  border: unset;
}
.create-order .form form .vs__actions {
  display: none;
}
.create-order .form form .confirm-order {
  padding: 20px 0;
}
.create-order .form form .confirm-order .van-checkbox__icon {
  padding-left: 10px;
}
.create-order .form form .confirm-order .van-checkbox__icon .van-badge__wrapper {
  border-radius: 5px;
  border-color: #757575;
}
.create-order .form form .confirm-order .van-checkbox__icon .van-badge__wrapper::before {
  content: "" !important;
}
.create-order .form form .confirm-order .van-checkbox__icon.van-checkbox__icon--checked .van-icon {
  background-color: #0075ff !important;
}
.create-order .form form .confirm-order .van-checkbox__label {
  color: rgb(55, 65, 81);
}
.create-order .form form .submit {
  width: 100%;
  height: 60px;
  background-color: #002a75;
  border-radius: 16px;
  font-size: 18px;
  font-family: "SF-Pro-bold";
  color: #fff;
}
.create-order .condition-section {
  background-color: #fff;
  text-align: center;
}
.create-order .condition-section .condition {
  font-family: "SF-Pro-bold";
  font-size: 40px;
  color: #000000;
  padding: 30px 0;
}
.create-order .condition-section .boxes {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
  padding: 30px 0;
  justify-content: space-between;
}
.create-order .condition-section .boxes .box {
  flex-basis: calc(33.3333333333% - 5px);
  text-align: center;
  background-color: #f9fafb;
  padding: 10px;
  border-radius: 10px;
}
.create-order .condition-section .boxes .box .icon {
  height: 4rem;
  width: 4rem;
  margin: 0 auto 0.75rem;
}
.create-order .condition-section .boxes .box .icon img {
  width: 30px;
  height: 30px;
}
.create-order .condition-section .boxes .box .text .title {
  font-family: "SF-Pro-Regular";
  font-size: 18px;
  color: #1f2937;
  margin-bottom: 5px;
}
.create-order .condition-section .boxes .box .text .description {
  font-size: 12px;
  color: #6b7280;
}
.create-order .visit-us {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}
.create-order .visit-us .content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  transition: opacity 1.3s ease;
  z-index: 2;
  flex-direction: row-reverse;
}
.create-order .visit-us .content .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.create-order .visit-us .content .text {
  font-size: 24px;
  color: #002a75;
}
.create-order .visit-us .content .animated-text {
  font-size: 96px;
  -webkit-text-stroke-width: 5px;
  -webkit-text-stroke-color: #002a75;
  -webkit-text-fill-color: #F5F5F7;
  letter-spacing: -1px;
  font-family: "SF-Pro-bold";
  -webkit-text-stroke-width: 1px;
  transition: -webkit-text-fill-color 0.3s ease, -webkit-text-stroke-color 0.6s ease;
  font-size: 3rem;
}
.create-order .visit-us .map {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.create-order .visit-us:hover .content {
  opacity: 0;
  pointer-events: none;
}
.create-order .visit-us:hover .content .animated-text {
  -webkit-text-stroke-color: #3876BF;
  -webkit-text-fill-color: #1212a1;
}
.create-order .says-about-us {
  padding: 75px 0 120px;
  background-repeat: no-repeat;
  background-position: bottom right;
}
.create-order .says-about-us .section-head {
  position: relative;
  margin-bottom: 75px;
}
.create-order .says-about-us .section-head .title {
  font-size: 60px;
  font-family: "SF-Pro-bold";
  color: #002a75;
  margin-bottom: 30px;
}
.create-order .says-about-us .section-head img {
  position: absolute;
  z-index: -1;
  right: -30px;
  top: 10px;
}
.create-order .says-about-us .section-head .desc {
  font-size: 24px;
  color: #002a75;
}
.create-order .says-about-us .boxes {
  padding: 20px 15px 50px 15px;
  border-radius: 20px 20px 0 0;
}
.create-order .says-about-us .boxes .box {
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 10px;
}
.create-order .says-about-us .boxes .box .head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.create-order .says-about-us .boxes .box .head .info {
  display: flex;
  align-items: center;
  gap: 10px;
}
.create-order .says-about-us .boxes .box .head .info .icon {
  background-color: #DFE3EB;
  width: 25px;
  height: 25px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #444968;
  font-size: 10px;
}
.create-order .says-about-us .boxes .box .head .info .name {
  font-size: 14px;
  font-family: "SF-Pro-Regular";
}
.create-order .says-about-us .boxes .box .head .stars {
  display: flex;
  align-items: center;
  gap: 5px;
}
.create-order .says-about-us .boxes .box .opinion {
  color: #5b5b5b;
  padding: 15px 0;
  font-size: 14px;
}

/* ------------------------------------------ */
/*         complaints Page
/* ------------------------------------------ */
.complaints form {
  margin: 30px 0;
  padding: 20px;
  background-color: #fff;
  border-radius: 10px;
}
.complaints form .input-style {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}
.complaints form .input-style label {
  flex-basis: 50%;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 700;
  color: rgb(55, 65, 81);
  margin-bottom: 10px;
}
.complaints form .group {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.complaints form .group .input-style {
  flex-basis: 49%;
}
.complaints form .submit {
  width: 100%;
  height: 60px;
  background-color: #002a75;
  border-radius: 16px;
  font-size: 18px;
  font-family: "SF-Pro-bold";
  color: #cdffff;
}

/* ------------------------------------------ */
/*         Thanks Page
/* ------------------------------------------ */
.thanks-page {
  height: 80vh;
}
.thanks-page .content {
  margin-top: 50px;
  background-color: #fff;
  padding: 20px 15px 50px 15px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.thanks-page .content h3 {
  font-size: 20px;
}
.thanks-page .content p {
  font-size: 14px;
}
.thanks-page .content a {
  width: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #0ec12f;
  padding: 10px;
  border-radius: 25px;
  color: #fff;
  font-family: "SF-Pro-bold";
}

/* ------------------------------------------ */
/*         Popup
/* ------------------------------------------ */
.other-page-popup {
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
  padding: 10px;
  overflow-x: hidden !important;
}
.other-page-popup .head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid #EEF2FF;
  margin-bottom: 15px;
  position: absolute;
  top: 0;
  width: 100%;
  background-color: #fff;
}
.other-page-popup .head .title {
  font-size: 20px;
  font-family: "SF-Pro-bold";
  color: #01509b;
}
.other-page-popup .head .close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.other-page-popup .head .close svg {
  font-size: 20px;
  color: #8E8E8E;
}
.other-page-popup .content-body {
  padding-top: 50px;
  height: 480px;
  overflow-y: scroll;
  padding-top: 80px;
}
.other-page-popup .content-body form .group-input {
  display: flex;
  gap: 15px;
  width: 100%;
  margin-bottom: 15px;
}
.other-page-popup .content-body form .group-input input,
.other-page-popup .content-body form .group-input textarea {
  flex-basis: 50%;
  background-color: #fff;
  height: 55px;
  border-radius: 10px;
  color: #000000;
  padding: 15px;
  border: 1px solid #d1d5db;
}
.other-page-popup .content-body form .group-input input::-moz-placeholder, .other-page-popup .content-body form .group-input textarea::-moz-placeholder {
  color: #000;
  opacity: 1;
}
.other-page-popup .content-body form .group-input input::placeholder,
.other-page-popup .content-body form .group-input textarea::placeholder {
  color: #000;
  opacity: 1;
}
.other-page-popup .content-body form .group-input textarea {
  resize: none;
  height: 120px;
}
.other-page-popup .content-body form .group-input.one input,
.other-page-popup .content-body form .group-input.one textarea {
  flex-basis: 100%;
}
.other-page-popup .content-body form .group-input .phone {
  position: relative;
  flex-basis: 50%;
}
.other-page-popup .content-body form .group-input .phone input {
  width: 100%;
  padding-left: 130px;
}
.other-page-popup .content-body form .group-input .phone .box {
  position: absolute;
  top: 50%;
  left: 25px;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  border-right: 1px solid #e9e9e9;
  padding-right: 15px;
  cursor: pointer;
}
.other-page-popup .content-body form .group-input .phone .box svg {
  font-size: 9px;
  color: #707070;
}
.other-page-popup .content-body form .group-input .phone .box .code {
  font-size: 16px;
  color: #000;
  margin: 0 10px 2px 5px;
}
.other-page-popup .content-body form button {
  background-color: #1a7efb;
  color: #fff;
  padding: 8px 20px;
  border-radius: 7px;
  font-size: 16px;
  font-weight: 500;
}
.other-page-popup .close-btn {
  width: calc(100% - 60px);
  height: 60px;
  background-color: #002a75;
  color: #fff;
  font-size: 16px;
  font-family: "SF-Pro-Bold";
  border-radius: 16px;
  margin: 10px auto;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ------------------------------------------ */
/*         Responsive
/* ------------------------------------------ */
@media (min-width: 1200px) {
  .home-page .products .product-boxes {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 1200px) {
  .home-page .products .product-boxes {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 991px) {
  .home-page .products .product-boxes {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .home-page .products .product-boxes {
    grid-template-columns: repeat(1, 1fr);
  }
}/*# sourceMappingURL=style.css.map */