@font-face {
  font-family: anjomanBl;
  src: url("./../fonts/Anjoman/AnjomanFaNum-Black.ttf");
}
@font-face {
  font-family: anjomanEb;
  src: url("./../fonts/Anjoman/AnjomanFaNum-ExtraBold.ttf");
}
@font-face {
  font-family: anjomanEl;
  src: url("./../fonts/Anjoman/AnjomanFaNum-ExtraLight.ttf");
}
@font-face {
  font-family: anjomanH;
  src: url("./../fonts/Anjoman/AnjomanFaNum-Heavy.ttf");
}
@font-face {
  font-family: anjomanM;
  src: url("./../fonts/Anjoman/AnjomanFaNum-Medium.ttf");
}
@font-face {
  font-family: anjomanSb;
  src: url("./../fonts/Anjoman/AnjomanFaNum-SemiBold.ttf");
}
@font-face {
  font-family: anjomanT;
  src: url("./../fonts/Anjoman/AnjomanFaNum-Thin.ttf");
}
@font-face {
  font-family: anjomanUb;
  src: url("./../fonts/Anjoman/AnjomanFaNum-UltraBold.ttf");
}
a {
  text-decoration: none;
}

ul,
li,
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

.k-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid #171f26;
  border-radius: 30px;
  padding: 0.5rem 1.5rem;
  box-sizing: border-box;
}
.k-btn:hover, .k-btn:focus {
  outline: none;
}

.k-btn-green {
  background-color: #113e5f;
  color: #171f26;
}
.k-btn-green:is(:hover, :focus) {
  color: #171f26;
}

.k-btn-outline-green {
  background-color: #fff;
  color: #113e5f;
  border-color: #113e5f;
}
.k-btn-outline-green:is(:hover, :focus) {
  color: #113e5f;
}

.k-btn-outline-black {
  background-color: transparent;
  border-color: #171f26;
  color: #171f26;
}
.k-btn-outline-black:hover, .k-btn-outline-black:focus {
  color: #171f26;
}

body {
  direction: rtl;
  text-align: right;
  font-family: anjomanM;
  background-color: #f3f3f3;
}

header {
  background-color: #113e5f;
  border-radius: 20px;
  height: 70px;
  position: sticky;
  top: 1.5rem;
  z-index: 99;
}
header .navbar {
  padding: 0;
  height: 100%;
}
header .navbar-nav {
  justify-content: space-between;
  width: 100%;
}
header .nav-link {
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8) !important;
  position: relative;
}
header .nav-link.active {
  color: #fff !important;
}
header .nav-link.active::after {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #fff;
  z-index: 1;
  bottom: 5px;
  position: absolute;
}
@media screen and (max-width: 1120px) {
  header .nav-link {
    font-size: 13px;
  }
}

.slider {
  height: 440pxpx;
  width: 100%;
  position: relative;
}
.slider img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 0 22px rgba(0, 0, 0, 0.1);
}

.white-cap {
  width: -moz-max-content;
  width: max-content;
  color: #fff;
  border-bottom: 2px solid #fff;
  padding-bottom: 20px;
  font-family: anjomanEb;
}
@media screen and (max-width: 575px) {
  .white-cap {
    font-size: 1.1rem !important;
  }
}

.green-cap {
  width: -moz-max-content;
  width: max-content;
  color: #113e5f;
  border-bottom: 2px solid #113e5f;
  padding-bottom: 20px;
  font-family: anjomanEb;
}
@media screen and (max-width: 575px) {
  .green-cap {
    font-size: 1rem;
  }
}

.more-text {
  display: flex;
  align-items: center;
  padding: 10px 0;
  font-size: 14px;
  color: #fff;
  width: -moz-max-content;
  width: max-content;
  gap: 5px;
}
.more-text:is(:hover, :focus) {
  color: #fff;
}

.about {
  background: #113e5f;
  color: #fff;
}
.about .p-text {
  line-height: 28px;
  font-size: 14px;
  text-align: justify;
  transition: 0.3s;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 10;
  overflow: hidden;
}
.about .p-text.on {
  display: block;
  overflow: auto;
}
@media screen and (max-width: 767px) {
  .about .p-text {
    font-size: 12px;
    line-height: 20px;
  }
}

.intro {
  color: #171f26;
  background: #fff;
  box-shadow: 0 0 22px rgba(0, 0, 0, 0.1);
  border-radius: 0 0 20px 20px;
}
.intro .p-text {
  line-height: 25px;
  font-size: 14px;
  text-align: justify;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 10;
  overflow: hidden;
}
.intro .p-text.on {
  display: block;
  overflow: auto;
}
@media screen and (max-width: 767px) {
  .intro .p-text {
    font-size: 12px;
    line-height: 20px;
  }
}
.intro .more-text {
  color: #113e5f;
}

.about-left-sec {
  position: sticky;
  top: 70px;
}

.flex-1 {
  flex: 1 !important;
}

i {
  display: flex;
  align-items: center;
  justify-content: center;
}

.link {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 13px;
  color: #113e5f;
  transition: 0.3s;
  opacity: 0.7;
}
.link:is(:hover, :focus) {
  color: #113e5f;
  gap: 6px;
  opacity: 1;
}

.why {
  min-height: 400px;
  position: relative;
}
.why::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 80%;
  position: absolute;
  border-radius: 20px;
  top: 0;
  left: 0;
  background: url("./../img/bg.png") no-repeat;
  background-size: cover;
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - 40px), 0% 100%);
          clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - 40px), 0% 100%);
}
.why > div {
  background-color: transparent;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1300px) {
  .why .why-sec {
    justify-content: center;
    grid-template-columns: repeat(auto-fit, minmax(1px, 230px));
  }
}
@media screen and (max-width: 1160px) {
  .why .why-sec {
    grid-template-columns: repeat(auto-fit, minmax(1px, 220px));
  }
  .why .why-sec .box {
    height: 320px;
  }
  .why .why-sec .box .box-body {
    height: 130px;
  }
}
@media screen and (max-width: 1120px) {
  .why .why-sec {
    grid-template-columns: repeat(2, minmax(1px, 260px));
  }
  .why .why-sec .box {
    height: 300px;
  }
  .why .why-sec .box .box-body {
    height: 110px;
  }
}
@media screen and (max-width: 650px) {
  .why .why-sec {
    grid-template-columns: repeat(auto-fit, minmax(1px, 220px));
  }
  .why .why-sec .box {
    height: 320px;
  }
  .why .why-sec .box .box-body {
    height: 130px;
  }
}

.logo-cap {
  margin: 0 auto;
  font-family: anjomanEb;
  width: -moz-max-content;
  width: max-content;
  text-align: center;
  font-size: 30px;
}
.logo-cap div {
  margin-top: 30px;
  height: 1px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  min-width: 200px;
  position: relative;
  gap: 10px;
}
.logo-cap div::after, .logo-cap div::before {
  content: "";
  flex: 1;
  height: 1px;
  background-color: #ccc;
}
.logo-cap div img {
  width: 60px;
  height: 40px;
  -o-object-fit: none;
     object-fit: none;
  background-color: transparent;
}
@media screen and (max-width: 767px) {
  .logo-cap {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 575px) {
  .logo-cap {
    font-size: 0.8rem;
  }
}

.why-sec {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(1px, 260px));
  gap: 15px;
  justify-content: space-between;
}

.box {
  background: #113e5f;
  border-radius: 20px;
  display: grid;
  align-content: center;
  justify-items: center;
  color: #fff;
  padding: 0 10px 10px 10px;
  height: 300px;
}
.box .box-img {
  width: 100px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 0 0 50px 50px;
  margin-top: -7px;
}
.box p {
  font-size: 14px;
  text-align: center;
}
.box .box-body {
  background-color: #113e5f;
  border-radius: 15px;
  padding: 10px;
  height: 110px;
}
.box .box-body p {
  font-size: 12px;
  text-align: center;
}
@media screen and (max-width: 575px) {
  .box .box-body p {
    font-size: 11px;
  }
}

.tour .nav-pills {
  width: 100%;
  gap: 15px;
  justify-content: center;
  overflow-y: hidden;
  overflow-x: auto;
  flex-wrap: nowrap;
}
.tour .nav-pills::-webkit-scrollbar {
  width: 5px;
}
@media screen and (max-width: 1200px) {
  .tour .nav-pills {
    justify-content: flex-start;
  }
}
.tour .nav-link {
  padding: 0.5rem 1.5rem;
  font-size: 14px;
  background-color: #fff;
  color: #171f26;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.08);
  font-family: anjomanSb;
  width: -moz-max-content;
  width: max-content;
}
.tour .nav-link.active {
  background: #113e5f;
  color: #fff;
}

.content {
  background-color: #fff;
  border-radius: 15px;
  padding: 30px;
}
.content ul {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  max-height: 320px;
  overflow-y: hidden;
  overflow-x: scroll;
}
.content ul::-webkit-scrollbar {
  width: 5px;
}
.content ul li {
  display: flex;
  align-items: center;
  padding: 5px 0;
  gap: 5px;
  font-size: 14px;
}
@media screen and (max-width: 575px) {
  .content {
    padding: 20px;
  }
  .content p {
    font-size: 14px;
    text-align: justify;
  }
  .content ul li {
    font-size: 13px;
  }
}

.customer ul {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
  justify-content: center;
  gap: 25px;
}
.customer li a {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 15px;
  width: 120px;
  text-align: center;
  color: #171f26;
  font-size: 13px;
}
.customer li a div {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  box-sizing: border-box;
  border: 5px solid #fff;
  background-color: #fff;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}
.customer li a div img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}
.customer .why-sec {
  justify-content: center;
}
@media screen and (min-width: 768px) and (max-width: 1190px) {
  .customer .why-sec {
    grid-template-columns: repeat(2, minmax(1px, 260px));
  }
}
@media screen and (min-width: 540px) and (max-width: 767px) {
  .customer .why-sec {
    grid-template-columns: repeat(2, minmax(1px, 230px));
  }
}

.box-holder {
  position: relative;
}
@media screen and (min-width: 768px) {
  .box-holder::after {
    content: "";
    width: 40px;
    height: 100%;
    background-color: #f3f3f3;
    z-index: 1;
    position: absolute;
    left: 0;
    top: 0;
  }
  .box-holder::before {
    content: "";
    width: 40px;
    height: 100%;
    background-color: #f3f3f3;
    z-index: 2;
    position: absolute;
    right: 0;
    top: 0;
  }
}
.box-holder .swiper-button-next:after,
.box-holder .swiper-button-prev:after {
  color: #171f26;
  font-size: 28px;
}

.box2 {
  height: 380px;
  width: 100%;
  display: grid;
  align-content: center;
  justify-items: center;
  padding-top: 130px;
}
.box2 .box-img {
  width: 200px;
  height: 180px;
  border: 5px solid #fff;
  border-radius: 30px;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.08));
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -120px;
}
.box2 .box-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.box2 h6,
.box2 p {
  text-align: center;
}
.box2 h4 {
  font-weight: bold;
  margin-top: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  line-height: 28px;
  height: 55px;
  color: #171f26;
  font-size: 18px;
  text-align: center;
}
.box2 p {
  font-size: 12px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  margin-top: 10px;
  color: #8b8b8b;
}
.box2 .box-body {
  background-color: #fff;
  padding: 1rem;
  border-radius: 40px;
  height: 300px;
  margin-top: -120px;
  padding-top: 150px;
  width: 100%;
}
.box2:hover .box-body {
  background: #113e5f;
}
.box2:hover h6,
.box2:hover p {
  color: #fff;
}

.certificate {
  height: 630px;
  filter: drop-shadow(0px 6px 10px rgba(50, 50, 0, 0.1));
}
.certificate > div {
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - 40px), 0% 100%);
          clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - 40px), 0% 100%);
  height: 100%;
  background: linear-gradient(45deg, #f3f3f3, #fff);
}
.certificate li {
  padding: 5px 0;
  font-size: 14px;
}

.tech {
  background: #113e5f;
  color: #fff;
}

.demo p {
  font-size: 13px;
}
.demo form {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 10px;
}
.demo input {
  height: 40px;
  background-color: #fff;
  border-radius: 10px;
  border: 1px solid #fff;
  padding: 5px 10px;
  width: 100%;
  box-shadow: 0px 0px 22px rgba(0, 0, 0, 0.05);
}
.demo input::-moz-placeholder {
  font-size: 12px;
  color: #d9d9d9;
}
.demo input::placeholder {
  font-size: 12px;
  color: #d9d9d9;
}
.demo input:focus {
  box-shadow: none !important;
}
.demo .k-btn {
  background: #113e5f;
  color: #fff;
  border-radius: 10px;
  width: 100%;
  height: 40px;
  border: 0;
}

.demo-card {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding: 30px 40px;
  border-radius: 50px;
  background-color: #fff;
  filter: drop-shadow(0px 0px 22px rgba(0, 0, 0, 0.05));
  color: #171f26;
  font-family: anjomanBl;
}
.demo-card:hover {
  color: #113e5f;
}

footer {
  background: url("./../img/bg2.png") #171f26;
  width: 100%;
  min-height: 200px;
  border-radius: 30px;
  color: #fff;
  padding: 30px;
}
footer a {
  color: #fff;
  font-size: 13px;
}
footer a:hover {
  color: #113e5f;
}
footer p,
footer address {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  margin-bottom: 15px;
}

.offcanvas {
  border-radius: 30px 0 0 30px;
}
.offcanvas .navbar-nav .nav-link {
  padding: 0.5rem 1rem;
  color: #171f26;
  position: relative;
}
.offcanvas .navbar-nav .nav-link.active {
  color: #113e5f !important;
}
.offcanvas .navbar-nav .nav-link.active::after {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #113e5f;
  z-index: 1;
  right: 5px;
  top: 17px;
  position: absolute;
}

.desModal p {
  font-size: 14px;
  color: #171f26;
  line-height: 25px;
  text-align: justify;
}
.desModal .modal-content {
  position: relative;
}
.desModal .modal-content::after {
  content: "";
  width: 100%;
  height: 70px;
  left: 0;
  position: absolute;
  bottom: 0;
  z-index: 1;
  background: linear-gradient(transparent, #fff);
}
.desModal img {
  float: left;
  border-radius: 5px;
  height: 200px;
  margin: 0;
  margin-right: 20px;
  margin-bottom: 10px;
}

.modal-dialog-scrollable .modal-body::-webkit-scrollbar {
  width: 5px;
}

.btn-close {
  box-sizing: border-box;
  width: 10px;
  height: 10px;
}
.btn-close:is(:hover, :focus) {
  box-shadow: none;
}

#formModal .btn-close {
  position: absolute;
  left: 10px;
  top: 10px;
  z-index: 1;
}

.navbar-toggler {
  border: 0;
  color: #fff !important;
  font-size: 35px;
  padding: 0 !important;
}
.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
  border: 0;
}

.whyUs-title {
  font-size: 18px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .whyUs-title {
    font-size: 16px;
  }
}
@media screen and (max-width: 575px) {
  .whyUs-title {
    font-size: 14px;
  }
}

.prize-Item {
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .prize-Item {
    font-size: 16px;
  }
}
@media screen and (max-width: 575px) {
  .prize-Item {
    font-size: 14px;
  }
}

.navbar-item {
  font-size: 12px !important;
}/*# sourceMappingURL=style.css.map */