/* Root */
@import url(../colors/theme-colors.css);
:root {
  --reset: 0px;
  --none: none;
  --clear: transparent;
}

/* Colors */
/* Import Font */
@font-face {
  font-family: "F29LT Bukra Regular";
  src: url("../fonts/29lt-bukra-reguler.ttf") format("truetype");
}
/* Reset */
html, body, h1, h2, h3, h4, h5, h6, p {
  margin: var(--reset);
  padding: var(--reset);
}

body {
  direction: rtl !important;
  scroll-behavior: smooth;
  overflow-x: hidden !important;
  font-family: "F29LT Bukra Regular", sans-serif !important;
  position: relative;
  z-index: 0;
}

a:focus, .btn, .btn:focus {
  outline: var(--reset);
  border: var(--reset);
  box-shadow: var(--none);
}

.form-control {
  border: var(--reset);
  border-radius: var(--reset);
}

.form-control:focus {
  outline: var(--reset);
  border: var(--reset);
  box-shadow: var(--reset);
}

hr {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.header {
  background-color: rgba(var(--primary-100), 0.15);
  border-bottom: 1px solid rgba(var(--secondary-100), 0.25);
  transition: all ease 500ms;
}
.header .navbar .navbar-brand img {
  width: 100%;
  height: 55px;
  margin: 0 auto;
}
.header .navbar .navbar-brand img.hide {
  display: none;
}
.header .navbar .navbar-nav {
  justify-content: space-evenly;
}
.header .navbar .navbar-nav .nav-item {
  position: relative;
  z-index: 0;
}
.header .navbar .navbar-nav .nav-item .nav-link {
  font-weight: bold;
  color: rgba(var(--primary-400), 1);
  transition: all ease 500ms;
}
.header .navbar .navbar-nav .nav-item .nav-link::before {
  content: "";
  width: 0;
  height: 2px;
  background-color: rgba(var(--primary-500), 1);
  position: absolute;
  right: 10px;
  bottom: -5px;
  z-index: 0;
  transition: all ease 500ms;
}
.header .navbar .navbar-nav .nav-item .nav-link:hover {
  color: rgba(var(--primary-500), 1);
  transition: all ease 500ms;
}
.header .navbar .navbar-nav .nav-item .nav-link:hover::before {
  content: "";
  width: 30px;
  height: 2px;
  background-color: rgba(var(--primary-500), 1);
  position: absolute;
  right: 10px;
  bottom: -5px;
  z-index: 0;
  transition: all ease 500ms;
}
.header .navbar .navbar-nav .nav-item .nav-link.active {
  color: rgba(var(--primary-500), 1);
}
.header .navbar .navbar-nav .nav-item .nav-link.active::before {
  content: "";
  width: 30px;
  height: 2px;
  background-color: rgba(var(--primary-500), 1);
  position: absolute;
  right: 10px;
  left: auto;
  bottom: -5px;
  z-index: 0;
  transition: all ease 500ms;
}
.header .navbar .navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item {
  text-align: right;
  color: rgba(var(--primary-300), 1);
}
.header .navbar .navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item:hover {
  background-color: rgba(var(--secondary-100), 1);
}
.header .navbar .switch-lang a {
  text-decoration: none;
  color: rgba(var(--primary-300), 1);
  font-weight: bold;
  transition: all ease 500ms;
}
.header .navbar .switch-lang a span {
  display: inline-block;
}
.header .navbar .switch-lang a span svg {
  width: 24px;
  height: 24px;
  fill: rgba(var(--primary-300), 1);
}
.header .navbar .switch-lang a:hover {
  transition: all ease 500ms;
  color: rgba(var(--primary-500), 1);
}
.header.fixed-top {
  background-color: rgba(var(--secondary-400), 1);
  box-shadow: 0px 5px 20px 0px rgba(154, 134, 91, 0.35);
  transition: all ease 500ms;
}
.header.fixed-top .navbar .navbar-brand img.show {
  display: block;
}

.intro {
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 100px 0 250px;
  background-image: url(../../images/hero-bg.png);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
.intro .intro-text {
  width: 80%;
  margin: 0 auto;
  text-align: center;
}
.intro .intro-text .pre-title {
  font-size: 1.25rem;
  color: rgba(var(--primary-400), 1);
  font-weight: bold;
  margin-top: 50px;
  margin-bottom: 30px;
}
.intro .intro-text .title {
  font-weight: bold;
  color: rgba(var(--font-400), 1);
  margin-bottom: 30px;
  font-size: 3rem;
  line-height: 1.5;
}
.intro .intro-text .btn-group {
  width: auto;
  height: auto;
  margin: 0 auto;
  text-align: center;
}
.intro .intro-text .btn-group .btn-borderd {
  width: -moz-fit-content;
  width: fit-content;
  height: 60px;
  padding: 15px 25px;
  border: 1px solid rgba(var(--primary-400), 1);
  border-radius: 0;
  font-weight: bold;
  text-decoration: none;
  color: rgba(var(--primary-400), 1);
  transition: all ease 500ms;
}
.intro .intro-text .btn-group .btn-borderd span {
  display: inline-block;
}
.intro .intro-text .btn-group .btn-borderd span svg {
  width: 24px;
  height: 24px;
  fill: rgba(var(--primary-500), 1);
  transition: all ease 500ms;
}
.intro .intro-text .btn-group .btn-borderd:hover {
  background-color: rgba(var(--primary-500), 1);
  color: rgba(var(--primary-100), 1);
  transition: all ease 500ms;
}
.intro .intro-text .btn-group .btn-borderd:hover span svg {
  fill: rgba(var(--primary-100), 1);
  transition: all ease 500ms;
}

.overview {
  width: 100%;
  height: auto;
  margin: 0 auto;
}
.overview .wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  top: -30%;
  left: 0;
  right: 0;
  z-index: 0;
}
.overview .wrapper .image {
  width: 50%;
  height: 525px;
}
.overview .wrapper .image img {
  width: 100%;
  height: 525px;
  margin: 0 auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.overview .wrapper .text {
  width: 50%;
  height: 525px;
  background-color: rgba(var(--secondary-100), 1);
  padding: 30px;
}
.overview .wrapper .text .heading {
  margin-bottom: 40px;
  position: relative;
  z-index: 0;
}
.overview .wrapper .text .heading .title {
  color: rgba(var(--primary-100), 1);
  font-weight: bold;
  font-size: 2rem;
  margin-bottom: 10px;
  padding-bottom: 10px;
}
.overview .wrapper .text .heading .title::after {
  content: "";
  width: 60px;
  height: 2px;
  background-color: rgba(var(--primary-100), 1);
  position: absolute;
  right: 0;
  bottom: -10px;
  z-index: 0;
}
.overview .wrapper .text p {
  line-height: 1.5;
  color: rgba(var(--primary-100), 1);
  margin-bottom: 20px;
  font-size: 1.25rem;
}
.overview .wrapper .text .btn-borderd {
  width: -moz-fit-content;
  width: fit-content;
  height: 60px;
  padding: 15px 25px;
  margin-top: 20px;
  border: 1px solid rgba(var(--primary-400), 1);
  border-radius: 0;
  text-decoration: none;
  font-weight: bold;
  color: rgba(var(--primary-100), 1);
  transition: all ease 500ms;
}
.overview .wrapper .text .btn-borderd span {
  display: inline-block;
}
.overview .wrapper .text .btn-borderd span svg {
  width: 24px;
  height: 24px;
  fill: rgba(var(--primary-100), 1);
  transition: all ease 500ms;
}
.overview .wrapper .text .btn-borderd:hover {
  background-color: rgba(var(--secondary-400), 1);
  border: 1px solid rgba(var(--secondary-400), 1);
  color: rgba(var(--primary-100), 1);
  transition: all ease 500ms;
}
.overview .wrapper .text .btn-borderd:hover span svg {
  fill: rgba(var(--primary-100), 1);
  transition: all ease 500ms;
}

.services-list {
  width: 100%;
  height: auto;
  min-height: 872px;
  margin: 0 auto;
  padding: 100px 0;
  background-color: rgba(var(--primary-100), 0.25);
  position: relative;
  z-index: 0;
}
.services-list::after {
  content: "";
  width: 100%;
  height: 872px;
  background-image: url(../../images/service-bg.png);
  background-position: left center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  top: 25px;
  z-index: -1;
}
.services-list .heading {
  text-align: center;
  margin-bottom: 100px;
}
.services-list .heading .pre-title {
  color: rgba(var(--primary-400), 1);
  margin-bottom: 20px;
  font-weight: bold;
  font-size: 1.25rem;
}
.services-list .heading .title {
  color: rgba(var(--font-400), 1);
  font-weight: bold;
  font-size: 2.5rem;
}
.services-list .service-item {
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 25px;
  text-align: center;
}
.services-list .service-item a {
  text-decoration: none;
  color: rgba(var(--font-400), 1);
  transition: all ease 500ms;
}
.services-list .service-item a:hover {
  color: rgba(var(--primary-400), 1);
}
.services-list .service-item a img {
  width: 100px;
  height: auto;
  margin: 0 auto;
}
.services-list .service-item a h4 {
  font-size: 1.125rem;
  margin-top: 20px;
  font-weight: bold;
  line-height: 1.5;
}

.statistics {
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 100px 0;
}
.statistics.inner {
  background-color: rgba(var(--primary-100), 1);
}
.statistics .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.statistics .wrapper .stats {
  width: 100%;
  height: auto;
  margin: 0 auto;
  text-align: center;
}
.statistics .wrapper .stats h4 {
  font-size: 4rem;
  font-weight: bold;
  color: rgba(var(--secondary-300), 1);
}
.statistics .wrapper .stats p {
  margin-top: 20px;
  font-size: 1.25rem;
  font-weight: bold;
  color: rgba(var(--primary-400), 1);
}
.statistics .wrapper .stats:nth-child(2), .statistics .wrapper .stats:nth-child(3), .statistics .wrapper .stats:nth-child(4) {
  border-right: 1px solid rgba(var(--primary-400), 1);
}

.consultation-form {
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 0;
  background-color: rgba(var(--secondary-100), 1);
}
.consultation-form .heading {
  padding: 100px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.consultation-form .heading .pre-title {
  color: rgba(var(--primary-400), 1);
  margin-top: 20px;
  margin-bottom: 20px;
  font-weight: bold;
  font-size: 1.25rem;
}
.consultation-form .heading .title {
  color: rgba(var(--primary-100), 1);
  font-weight: bold;
  font-size: 2.5rem;
  line-height: 1.5;
}
.consultation-form .form {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 30px;
  background-color: #FFFFFF;
}
.consultation-form .form .form-control {
  width: 100%;
  height: 60px;
  background-color: rgba(var(--primary-100), 1);
  border: 1px solid var(--clear);
  color: rgba(var(--primary-500), 1);
  transition: all ease 500ms;
}
.consultation-form .form .form-control:focus {
  border: 1px sold rgba(var(--secondary-400), 1);
  transition: all ease 500ms;
}
.consultation-form .form .form-select {
  padding: 0.375rem 0.75rem 0.375rem 2.25rem;
  background-position: left 0.75rem center;
}
.consultation-form .form textarea {
  min-height: 200px;
}
.consultation-form .form .btn-wrapper {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  margin-top: 30px;
}
.consultation-form .form .btn-wrapper .btn {
  width: auto;
  height: 50px;
  background-color: rgba(var(--secondary-400), 1);
  border-radius: 0;
  transition: all ease 500ms;
}
.consultation-form .form .btn-wrapper .btn:hover {
  background-color: rgba(var(--primary-500), 1);
  color: rgba(var(--primary-100), 1);
  transition: all ease 500ms;
}

.testimonials {
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 100px 0 50px;
}
.testimonials .heading {
  text-align: center;
  margin-bottom: 100px;
}
.testimonials .heading .pre-title {
  color: rgba(var(--primary-400), 1);
  margin-bottom: 20px;
  font-weight: bold;
  font-size: 1.25rem;
}
.testimonials .heading .title {
  color: rgba(var(--font-400), 1);
  font-weight: bold;
  font-size: 2.5rem;
}
.testimonials .testimonialsSwiper {
  padding-bottom: 100px;
  position: relative;
  z-index: 0;
}
.testimonials .testimonialsSwiper .swiper-wrapper .swiper-slide .testimonial-item {
  width: 100%;
  height: auto;
  margin: 0 auto;
  border: 1px solid rgba(var(--primary-100), 1);
  border-radius: 100px 5px 5px 5px;
  padding: 30px 20px;
  position: relative;
  z-index: 0;
}
.testimonials .testimonialsSwiper .swiper-wrapper .swiper-slide .testimonial-item .icon {
  width: 70px;
  height: 70px;
  background-color: rgba(var(--secondary-300), 1);
  text-align: center;
  border-radius: 100px;
  padding: 10px;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}
.testimonials .testimonialsSwiper .swiper-wrapper .swiper-slide .testimonial-item .icon svg {
  width: 50px;
  height: 50px;
  fill: rgba(var(--primary-300), 1);
}
.testimonials .testimonialsSwiper .swiper-wrapper .swiper-slide .testimonial-item .text {
  margin-top: 80px;
  margin-bottom: 30px;
}
.testimonials .testimonialsSwiper .swiper-wrapper .swiper-slide .testimonial-item .text p {
  color: rgba(var(--font-400), 1);
  line-height: 1.5;
  font-size: 1rem;
}
.testimonials .testimonialsSwiper .swiper-wrapper .swiper-slide .testimonial-item .client-wrapper {
  position: relative;
  z-index: 0;
}
.testimonials .testimonialsSwiper .swiper-wrapper .swiper-slide .testimonial-item .client-wrapper::before {
  content: "";
  width: 5px;
  height: 100%;
  background-color: rgba(var(--secondary-100), 1);
  position: absolute;
  right: -20px;
  top: 0;
  z-index: 0;
}
.testimonials .testimonialsSwiper .swiper-wrapper .swiper-slide .testimonial-item .client-wrapper .client-name {
  color: rgba(var(--primary-500), 1);
  font-weight: bold;
  margin-bottom: 10px;
}
.testimonials .testimonialsSwiper .swiper-button-next {
  width: 60px;
  height: 60px;
  background-color: rgba(var(--secondary-100), 1);
  position: absolute;
  top: auto;
  bottom: 0;
  left: 45%;
  right: auto;
  z-index: 0;
  color: rgba(var(--primary-100), 1);
  transition: all ease 500ms;
}
.testimonials .testimonialsSwiper .swiper-button-next::after {
  font-size: 30px;
}
.testimonials .testimonialsSwiper .swiper-button-next:hover {
  background-color: rgba(var(--primary-300), 1);
  transition: all ease 500ms;
}
.testimonials .testimonialsSwiper .swiper-button-prev {
  width: 60px;
  height: 60px;
  background-color: rgba(var(--secondary-100), 1);
  position: absolute;
  top: auto;
  bottom: 0;
  left: auto;
  right: 45%;
  z-index: 0;
  color: rgba(var(--primary-100), 1);
  transition: all ease 500ms;
}
.testimonials .testimonialsSwiper .swiper-button-prev::after {
  font-size: 30px;
}
.testimonials .testimonialsSwiper .swiper-button-prev:hover {
  background-color: rgba(var(--primary-300), 1);
  transition: all ease 500ms;
}

.latest-blogs {
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 100px 0 50px;
}
.latest-blogs .heading {
  text-align: center;
  margin-bottom: 100px;
}
.latest-blogs .heading .pre-title {
  color: rgba(var(--primary-400), 1);
  margin-bottom: 20px;
  font-weight: bold;
  font-size: 1.25rem;
}
.latest-blogs .heading .title {
  color: rgba(var(--font-400), 1);
  font-weight: bold;
  font-size: 2.5rem;
}
.latest-blogs .blog-item {
  position: relative;
  z-index: 0;
}
.latest-blogs .blog-item .image {
  overflow: hidden;
  border-radius: 10px;
}
.latest-blogs .blog-item .image img {
  width: 100%;
  height: auto;
  margin: 0 auto;
  scale: 1;
  transition: all ease 500ms;
  border-radius: 10px;
}
.latest-blogs .blog-item .image img:hover {
  scale: 1.1;
  border-radius: 10px;
}
.latest-blogs .blog-item .title {
  padding: 20px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.latest-blogs .blog-item .title a {
  display: block;
  text-decoration: none;
  color: rgba(var(--secondary-100), 1);
  font-weight: bold;
  background-color: rgba(var(--primary-100), 1);
  padding: 20px;
  border-radius: 10px;
  transition: all ease 500ms;
}
.latest-blogs .blog-item .title a:hover {
  color: rgba(var(--primary-100), 1);
  background-color: rgba(var(--secondary-400), 1);
}
.latest-blogs .btn-group {
  width: 200px;
  height: auto;
  margin: 30px auto;
  text-align: center;
  display: flex;
}
.latest-blogs .btn-group .btn-borderd {
  width: -moz-fit-content;
  width: fit-content;
  height: 60px;
  padding: 15px 25px;
  border: 1px solid rgba(var(--primary-400), 1);
  border-radius: 0;
  font-weight: bold;
  text-decoration: none;
  color: rgba(var(--primary-400), 1);
  transition: all ease 500ms;
}
.latest-blogs .btn-group .btn-borderd span {
  display: inline-block;
}
.latest-blogs .btn-group .btn-borderd span svg {
  width: 24px;
  height: 24px;
  fill: rgba(var(--primary-500), 1);
  transition: all ease 500ms;
}
.latest-blogs .btn-group .btn-borderd:hover {
  background-color: rgba(var(--primary-500), 1);
  color: rgba(var(--primary-100), 1);
  transition: all ease 500ms;
}
.latest-blogs .btn-group .btn-borderd:hover span svg {
  fill: rgba(var(--primary-100), 1);
  transition: all ease 500ms;
}

.footer {
  width: 100%;
  height: auto;
  padding: 100px 0;
  background-color: rgba(var(--secondary-100), 1);
  position: relative;
  z-index: 0;
}
.footer::after {
  content: "";
  width: 279px;
  height: 420px;
  background-image: url(../../images/footer-bg-l.png);
  mix-blend-mode: color-burn;
  background-position: left;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  top: 25px;
  z-index: -1;
}
.footer::before {
  content: "";
  width: 279px;
  height: 420px;
  background-image: url(../../images/footer-bg-r.png);
  mix-blend-mode: color-burn;
  background-position: right;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: 0;
  top: 25px;
  z-index: -1;
}
.footer .block .foot-heading {
  margin-bottom: 40px;
  position: relative;
  z-index: 0;
}
.footer .block .foot-heading h5 {
  color: rgba(var(--primary-100), 1);
  font-weight: bold;
  margin-bottom: 10px;
  padding-bottom: 10px;
}
.footer .block .foot-heading h5::after {
  content: "";
  width: 60px;
  height: 2px;
  background-color: rgba(var(--primary-100), 1);
  position: absolute;
  right: 0;
  bottom: -10px;
  z-index: 0;
}
.footer .block.contact-info ul.contact {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.footer .block.contact-info ul.contact li {
  margin-bottom: 20px;
}
.footer .block.contact-info ul.contact li span {
  display: inline-block;
}
.footer .block.contact-info ul.contact li span:first-child svg {
  width: 30px;
  height: 30px;
  fill: rgba(var(--primary-100), 1);
}
.footer .block.contact-info ul.contact li span a {
  text-decoration: none;
  color: rgba(var(--primary-100), 1);
  font-size: 1.25rem;
  direction: ltr !important;
  transition: all ease 500ms;
}
.footer .block.contact-info ul.contact li span a:hover {
  transition: all ease 500ms;
  color: rgba(var(--secondary-400), 1);
}
.footer .block.contact-info ul.social {
  list-style-type: none;
  padding: 0;
  margin: 0;
  margin-top: 40px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
.footer .block.contact-info ul.social li {
  margin-left: 10px;
}
.footer .block.contact-info ul.social li a {
  text-decoration: none;
}
.footer .block.contact-info ul.social li a svg {
  width: 40px;
  height: 40px;
  fill: rgba(var(--primary-100), 1);
  transition: all ease 500ms;
}
.footer .block.contact-info ul.social li a:hover svg {
  fill: rgba(var(--secondary-400), 1);
  transition: all ease 500ms;
}
.footer .block.links ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
  -moz-column-count: 2;
       column-count: 2;
}
.footer .block.links ul.list li {
  margin-bottom: 20px;
}
.footer .block.links ul.list li a {
  text-decoration: none;
  font-size: 1.25rem;
  color: rgba(var(--primary-100), 1);
  transition: all ease 500ms;
}
.footer .block.links ul.list li a:hover {
  color: rgba(var(--secondary-400), 1);
  transition: all ease 500ms;
}
.footer .block.newsletter .email-form {
  margin-bottom: 30px;
}
.footer .block.newsletter .email-form .form-group {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.footer .block.newsletter .email-form .form-group .form-control {
  width: 100%;
  height: 60px;
  color: rgba(var(--secondary-400), 1);
  background-color: rgba(var(--primary-100), 1);
  box-shadow: none;
  border: 1px solid var(--clear);
  margin-left: 15px;
  transition: all ease 500ms;
}
.footer .block.newsletter .email-form .form-group .form-control:focus {
  border: 1px solid rgba(var(--secondary-400), 1);
  transition: all ease 500ms;
}
.footer .block.newsletter .email-form .form-group .btn {
  width: 60px;
  height: 60px;
  background-color: rgba(var(--secondary-400), 1);
  border-radius: 0;
  transition: all ease 500ms;
}
.footer .block.newsletter .email-form .form-group .btn svg {
  width: 24px;
  height: 24px;
  fill: rgba(var(--primary-100), 1);
  transition: all ease 500ms;
}
.footer .block.newsletter .email-form .form-group .btn:hover {
  background-color: rgba(var(--primary-100), 1);
  transition: all ease 500ms;
}
.footer .block.newsletter .email-form .form-group .btn:hover svg {
  fill: rgba(var(--secondary-400), 1);
  transition: all ease 500ms;
}
.footer .block.newsletter .vision-2030 img {
  width: auto;
  height: auto;
  margin: 0 auto;
}

.copyrights {
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 10px 0;
  background-color: rgba(var(--secondary-400), 1);
}
.copyrights .rights {
  text-align: right;
}
.copyrights .rights p {
  color: rgba(var(--primary-100), 1);
}
.copyrights .rights p a {
  text-decoration: none;
  color: rgba(var(--primary-400), 1);
  transition: all ease 500ms;
}
.copyrights .rights p a:hover {
  color: rgba(var(--primary-100), 1);
  transition: all ease 500ms;
}
.copyrights .design {
  text-align: left;
}
.copyrights .design p {
  color: rgba(var(--primary-100), 1);
}
.copyrights .design p a {
  text-decoration: none;
  color: rgba(var(--primary-400), 1);
  font-weight: bold;
  transition: all ease 500ms;
}
.copyrights .design p a:hover {
  color: rgba(var(--primary-100), 1);
  transition: all ease 500ms;
}

.chat-wrapper {
  width: 80px;
  height: 80px;
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 99;
}
.chat-wrapper a img {
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.top-page {
  width: 100%;
  min-height: 200px;
  margin: 0 auto;
  padding: 50px 0;
  background-color: rgba(var(--primary-100), 0.35);
}
.top-page .heading {
  text-align: center;
}
.top-page .heading .title {
  color: rgba(var(--font-400), 1);
  font-weight: bold;
  font-size: 2.5rem;
}
.top-page .heading .description-title {
  color: rgba(var(--primary-400), 1);
  margin-top: 20px;
  font-weight: bold;
  font-size: 1.25rem;
}

.page {
  padding: 50px 0;
}
.page .about-text h2 {
  color: rgba(var(--primary-400), 1);
  font-weight: bold;
  font-size: 2rem;
  padding-right: 20px;
  margin-bottom: 30px;
  line-height: 1.5;
  position: relative;
  z-index: 0;
}
.page .about-text h2::before {
  content: "";
  width: 5px;
  height: 100%;
  background-color: rgba(var(--secondary-300), 1);
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
}
.page .about-text p {
  color: rgba(var(--font-100), 1);
  margin-bottom: 20px;
  line-height: 1.5;
  font-size: 1.2rem;
}
.page .about-text p a {
  text-decoration: none;
  color: rgba(var(--primary-400), 1);
  transition: all ease 500ms;
}
.page .about-text p a:hover {
  text-decoration: underline;
  transition: all ease 500ms;
}
.page .service-item {
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 25px;
  text-align: center;
}
.page .service-item a {
  text-decoration: none;
  color: rgba(var(--font-400), 1);
  transition: all ease 500ms;
}
.page .service-item a:hover {
  color: rgba(var(--primary-400), 1);
}
.page .service-item a img {
  width: 100px;
  height: auto;
  margin: 0 auto;
}
.page .service-item a h4 {
  font-size: 1.125rem;
  margin-top: 20px;
  font-weight: bold;
  line-height: 1.5;
}
.page .banner-item {
  margin: 15px auto;
  position: relative;
  z-index: 0;
}
.page .banner-item .image {
  overflow: hidden;
  border-radius: 10px;
}
.page .banner-item .image img {
  width: 100%;
  height: auto;
  margin: 0 auto;
  scale: 1;
  transition: all ease 500ms;
  border-radius: 10px;
}
.page .banner-item .image img:hover {
  scale: 1.1;
  border-radius: 10px;
}
.page .banner-item .title {
  padding: 20px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.page .banner-item .title a {
  display: block;
  text-decoration: none;
  color: rgba(var(--secondary-100), 1);
  font-weight: bold;
  background-color: rgba(var(--primary-100), 1);
  padding: 20px;
  border-radius: 10px;
  transition: all ease 500ms;
}
.page .banner-item .title a:hover {
  color: rgba(var(--primary-100), 1);
  background-color: rgba(var(--secondary-400), 1);
}
.page .pagination {
  margin-top: 50px;
}
.page .pagination .page-item {
  padding: 0 10px;
}
.page .pagination .page-item .page-link {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(var(--secondary-100), 0.25);
  border-radius: 0;
  font-size: 1.2rem;
  font-weight: bold;
  padding: 8px;
  text-align: center;
  color: rgba(var(--primary-400), 1);
  transition: all ease 500ms;
}
.page .pagination .page-item .page-link:hover {
  background-color: rgba(var(--secondary-400), 1);
  color: rgba(var(--primary-100), 1);
  transition: all ease 500ms;
}
.page .pagination .page-item .page-link.active {
  background-color: rgba(var(--secondary-400), 1);
  color: rgba(var(--primary-100), 1);
}
.page .blog-image img {
  width: 100%;
  height: auto;
  margin: 0 auto;
  border-radius: 10px;
}
.page .blog-text {
  margin-top: 50px;
}
.page .blog-text h1, .page .blog-text h2, .page .blog-text h3, .page .blog-text h4, .page .blog-text h5, .page .blog-text h6 {
  margin-bottom: 20px;
  color: rgba(var(--primary-400), 1);
  font-weight: bold;
}
.page .blog-text p {
  line-height: 1.125rem;
  color: rgba(var(--font-100), 1);
  line-height: 2;
  margin-bottom: 20px;
}
.page .blog-text ul {
  margin: 0;
  list-style-type: square;
  color: rgba(var(--secondary-400), 1);
}
.page .blog-text ul li p {
  color: rgba(var(--font-100), 1);
  font-size: 1.125rem;
  font-weight: bold;
}
.page .blog-text ul li p a {
  text-decoration: none;
  color: rgba(var(--primary-400), 1);
  transition: all ease 500ms;
}
.page .blog-text ul li p a:hover {
  text-decoration: underline;
  transition: all ease 500ms;
}
.page .blog-list-wrapper {
  margin-top: 50px;
}
.page .blog-list-wrapper h4 {
  width: 100%;
  background-color: rgba(var(--secondary-400), 1);
  padding: 15px;
  text-align: center;
  color: rgba(var(--primary-100), 1);
  margin-bottom: 20px;
}
.page .blog-list-wrapper ul {
  list-style-type: none;
  padding: 10px;
  margin: 0;
}
.page .blog-list-wrapper ul li {
  border-bottom: 1px solid rgba(var(--primary-100), 1);
  margin-bottom: 15px;
  padding-bottom: 15px;
}
.page .blog-list-wrapper ul li:last-child {
  border-bottom: 0;
}
.page .blog-list-wrapper ul li a {
  display: block;
  text-decoration: none;
  color: rgba(var(--font-400), 1);
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.page .blog-list-wrapper ul li a span {
  font-weight: bold;
}
.page .blog-list-wrapper ul li a span img {
  width: 46px;
  height: 41px;
  margin-left: 20px;
}
.page .form h3 {
  color: rgba(var(--primary-500), 1);
  margin-bottom: 30px;
  font-weight: bold;
}
.page .form .form-control {
  width: 100%;
  height: 60px;
  text-align: right;
  background-color: rgba(var(--primary-100), 1);
  border: 1px solid var(--clear);
  color: rgba(var(--primary-500), 1);
  transition: all ease 500ms;
}
.page .form .form-control:focus {
  border: 1px solid rgba(var(--secondary-400), 1);
  transition: all ease 500ms;
}
.page .form .form-control[type=file] {
  height: auto;
}
.page .form .form-select {
  padding: 0.375rem 0.75rem 0.375rem 2.25rem;
  background-position: left 0.75rem center;
}
.page .form textarea {
  min-height: 200px;
}
.page .form .btn-wrapper {
  width: 100%;
  margin: 0 auto;
  margin-top: 30px;
}
.page .form .btn-wrapper .btn {
  width: auto;
  height: 50px;
  background-color: rgba(var(--secondary-400), 1);
  border-radius: 0;
  transition: all ease 500ms;
}
.page .form .btn-wrapper .btn:hover {
  background-color: rgba(var(--primary-500), 1);
  color: rgba(var(--primary-100), 1);
  transition: all ease 500ms;
}
.page .contact-info {
  margin-top: 65px;
  margin-bottom: 30px;
}
.page .contact-info h4 {
  width: 100%;
  background-color: rgba(var(--secondary-400), 1);
  padding: 15px;
  text-align: center;
  color: rgba(var(--primary-100), 1);
  margin-bottom: 20px;
}
.page .contact-info ul {
  list-style-type: none;
  padding: 0 10px;
  margin: 0;
}
.page .contact-info ul li {
  margin-bottom: 20px;
}
.page .contact-info ul li span {
  display: inline-block;
}
.page .contact-info ul li span:first-child svg {
  width: 40px;
  height: 40px;
  fill: rgba(var(--primary-100), 1);
  background-color: rgba(var(--secondary-100), 1);
  padding: 5px;
}
.page .contact-info ul li span a {
  text-decoration: none;
  color: rgba(var(--primary-400), 1);
  font-size: 1.25rem;
  font-weight: bold;
  direction: ltr !important;
  transition: all ease 500ms;
}
.page .contact-info ul li span a:hover {
  transition: all ease 500ms;
  color: rgba(var(--secondary-400), 1);
}
.page .social-info h4 {
  width: 100%;
  background-color: rgba(var(--secondary-400), 1);
  padding: 15px;
  text-align: center;
  color: rgba(var(--primary-100), 1);
  margin-bottom: 20px;
}
.page .social-info ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  margin-top: 40px;
  display: flex;
  justify-content: space-evenly;
  align-items: flex-start;
}
.page .social-info ul li {
  margin-left: 10px;
}
.page .social-info ul li a {
  text-decoration: none;
}
.page .social-info ul li a svg {
  width: 40px;
  height: 40px;
  fill: rgba(var(--primary-400), 1);
  transition: all ease 500ms;
}
.page .social-info ul li a:hover svg {
  fill: rgba(var(--secondary-400), 1);
  transition: all ease 500ms;
}
.page .error-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.page .error-wrapper h2 {
  font-weight: bold;
  font-size: 16rem;
  color: rgba(var(--secondary-100), 1);
  margin-bottom: 30px;
}
.page .error-wrapper h4 {
  font-weight: bold;
  font-size: 3rem;
  color: rgba(var(--font-400), 1);
  margin-bottom: 30px;
}
.page .error-wrapper p {
  color: rgba(var(--primary-500), 1);
  font-size: 1.5rem;
  margin-bottom: 50px;
}
.page .error-wrapper .btn-group {
  width: auto;
  height: auto;
  margin: 0 auto;
  text-align: center;
}
.page .error-wrapper .btn-group .btn-borderd {
  width: -moz-fit-content;
  width: fit-content;
  height: 60px;
  padding: 15px 25px;
  border: 1px solid rgba(var(--primary-400), 1);
  border-radius: 0;
  font-weight: bold;
  text-decoration: none;
  color: rgba(var(--primary-400), 1);
  transition: all ease 500ms;
}
.page .error-wrapper .btn-group .btn-borderd span {
  display: inline-block;
}
.page .error-wrapper .btn-group .btn-borderd span svg {
  width: 24px;
  height: 24px;
  fill: rgba(var(--primary-500), 1);
  transition: all ease 500ms;
}
.page .error-wrapper .btn-group .btn-borderd:hover {
  background-color: rgba(var(--primary-500), 1);
  color: rgba(var(--primary-100), 1);
  transition: all ease 500ms;
}
.page .error-wrapper .btn-group .btn-borderd:hover span svg {
  fill: rgba(var(--primary-100), 1);
  transition: all ease 500ms;
}

@media (max-width: 575.98px) {
  .header .navbar .navbar-toggler {
    border: 1px solid rgba(var(--primary-400), 1);
    box-shadow: none;
    transition: all ease 500ms;
  }
  .header .navbar .navbar-toggler:hover {
    background-color: rgba(var(--secondary-100), 1);
  }
  .header .navbar .navbar-toggler:focus {
    background-color: rgba(var(--secondary-100), 1);
  }
  .header .navbar .navbar-toggler .navbar-toggler-icon {
    background-image: none;
  }
  .header .navbar .navbar-toggler .navbar-toggler-icon svg {
    fill: rgba(var(--primary-400), 1);
    border: 0;
    width: 30px;
    height: 30px;
  }
  .header .navbar .navbar-nav {
    padding: 20px;
  }
  .header .navbar .switch-lang {
    margin-bottom: 10px;
    padding-right: 20px;
  }
  .intro {
    padding: 100px 0;
  }
  .intro .intro-text .title {
    font-size: 2rem;
  }
  .overview {
    padding: 15px 0;
  }
  .overview .wrapper {
    display: block;
    top: 0;
  }
  .overview .wrapper .image {
    width: 100%;
    height: auto;
  }
  .overview .wrapper .image img {
    width: 100%;
    height: auto;
  }
  .overview .wrapper .text {
    width: 100%;
    height: auto;
  }
  .overview .wrapper .text .btn-borderd {
    width: 100%;
  }
  .services-list {
    padding: 50px 0;
  }
  .services-list::after {
    content: unset;
  }
  .services-list .heading .title {
    font-size: 1.75rem;
  }
  .statistics .wrapper {
    display: block;
  }
  .statistics .wrapper .stats {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(var(--secondary-100), 0.25);
  }
  .statistics .wrapper .stats:last-child {
    border-bottom: 0;
  }
  .statistics .wrapper .stats:nth-child(2), .statistics .wrapper .stats:nth-child(3), .statistics .wrapper .stats:nth-child(4) {
    border-right: 0;
  }
  .consultation-form {
    padding-bottom: 25px;
  }
  .consultation-form .heading {
    padding: 50px 0 0;
  }
  .consultation-form .form .btn-wrapper .btn {
    width: 100%;
  }
  .testimonials {
    padding: 50px 0;
  }
  .testimonials .testimonialsSwiper .swiper-button-next {
    left: 30%;
  }
  .testimonials .testimonialsSwiper .swiper-button-prev {
    right: 30%;
  }
  .latest-blogs {
    padding: 50px 0;
  }
  .latest-blogs .heading {
    margin-bottom: 50px;
  }
  .latest-blogs .blog-item {
    margin: 15px auto;
  }
  .latest-blogs .btn-group {
    width: 100%;
  }
  .latest-blogs .btn-group .btn-borderd {
    width: 100%;
  }
  .footer {
    padding: 50px 0;
  }
  .footer::after {
    content: none;
  }
  .footer::before {
    content: none;
  }
  .footer .block {
    margin-bottom: 30px;
  }
  .footer .block.newsletter .vision-2030 {
    text-align: center;
  }
  .copyrights .rights {
    text-align: center;
  }
  .copyrights .design {
    text-align: center;
  }
  .page .about-image img {
    width: 100%;
    height: auto;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .header .navbar .navbar-toggler {
    border: 1px solid rgba(var(--primary-400), 1);
    box-shadow: none;
    transition: all ease 500ms;
  }
  .header .navbar .navbar-toggler:hover {
    background-color: rgba(var(--secondary-100), 1);
  }
  .header .navbar .navbar-toggler:focus {
    background-color: rgba(var(--secondary-100), 1);
  }
  .header .navbar .navbar-toggler .navbar-toggler-icon {
    background-image: none;
  }
  .header .navbar .navbar-toggler .navbar-toggler-icon svg {
    fill: rgba(var(--primary-400), 1);
    border: 0;
    width: 30px;
    height: 30px;
  }
  .header .navbar .navbar-nav {
    padding: 20px;
  }
  .header .navbar .switch-lang {
    margin-bottom: 10px;
    padding-right: 20px;
  }
  .intro {
    padding: 100px 0;
  }
  .intro .intro-text .title {
    font-size: 2rem;
  }
  .overview {
    padding: 15px 0;
  }
  .overview .wrapper {
    display: block;
    top: 0;
  }
  .overview .wrapper .image {
    width: 100%;
    height: auto;
  }
  .overview .wrapper .image img {
    width: 100%;
    height: auto;
  }
  .overview .wrapper .text {
    width: 100%;
    height: auto;
  }
  .overview .wrapper .text .btn-borderd {
    width: 100%;
  }
  .services-list {
    padding: 50px 0;
  }
  .services-list::after {
    content: unset;
  }
  .services-list .heading .title {
    font-size: 1.75rem;
  }
  .statistics .wrapper {
    display: block;
  }
  .statistics .wrapper .stats {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(var(--secondary-100), 0.25);
  }
  .statistics .wrapper .stats:last-child {
    border-bottom: 0;
  }
  .statistics .wrapper .stats:nth-child(2), .statistics .wrapper .stats:nth-child(3), .statistics .wrapper .stats:nth-child(4) {
    border-right: 0;
  }
  .consultation-form {
    padding-bottom: 25px;
  }
  .consultation-form .heading {
    padding: 50px 0 0;
  }
  .consultation-form .form .btn-wrapper .btn {
    width: 100%;
  }
  .testimonials {
    padding: 50px 0;
  }
  .testimonials .testimonialsSwiper .swiper-button-next {
    left: 30%;
  }
  .testimonials .testimonialsSwiper .swiper-button-prev {
    right: 30%;
  }
  .latest-blogs {
    padding: 50px 0;
  }
  .latest-blogs .heading {
    margin-bottom: 50px;
  }
  .latest-blogs .blog-item {
    margin: 15px auto;
  }
  .latest-blogs .btn-group {
    width: 100%;
  }
  .latest-blogs .btn-group .btn-borderd {
    width: 100%;
  }
  .footer {
    padding: 50px 0;
  }
  .footer::after {
    content: none;
  }
  .footer::before {
    content: none;
  }
  .footer .block {
    margin-bottom: 30px;
  }
  .footer .block.newsletter .vision-2030 {
    text-align: center;
  }
  .copyrights .rights {
    text-align: center;
  }
  .copyrights .design {
    text-align: center;
  }
  .page .about-image img {
    width: 100%;
    height: auto;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .header .navbar .navbar-toggler {
    border: 1px solid rgba(var(--primary-400), 1);
    box-shadow: none;
    transition: all ease 500ms;
  }
  .header .navbar .navbar-toggler:hover {
    background-color: rgba(var(--secondary-100), 1);
  }
  .header .navbar .navbar-toggler:focus {
    background-color: rgba(var(--secondary-100), 1);
  }
  .header .navbar .navbar-toggler .navbar-toggler-icon {
    background-image: none;
  }
  .header .navbar .navbar-toggler .navbar-toggler-icon svg {
    fill: rgba(var(--primary-400), 1);
    border: 0;
    width: 30px;
    height: 30px;
  }
  .header .navbar .navbar-nav {
    padding: 20px;
  }
  .header .navbar .switch-lang {
    margin-bottom: 10px;
    padding-right: 20px;
  }
  .intro {
    padding: 100px 0;
  }
  .intro .intro-text .title {
    font-size: 2rem;
  }
  .overview {
    padding: 15px 0;
  }
  .overview .wrapper {
    display: block;
    top: 0;
  }
  .overview .wrapper .image {
    width: 100%;
    height: auto;
  }
  .overview .wrapper .image img {
    width: 100%;
    height: auto;
  }
  .overview .wrapper .text {
    width: 100%;
    height: auto;
  }
  .services-list {
    padding: 50px 0;
  }
  .services-list::after {
    content: unset;
  }
  .services-list .heading .title {
    font-size: 1.75rem;
  }
  .statistics .wrapper {
    display: block;
  }
  .statistics .wrapper .stats {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(var(--secondary-100), 0.25);
    display: inline-block;
    width: 49%;
  }
  .statistics .wrapper .stats:nth-child(2) {
    border-right: 0;
  }
  .statistics .wrapper .stats:nth-child(3), .statistics .wrapper .stats:nth-child(4) {
    border-bottom: 0;
    border-right: 0;
  }
  .consultation-form {
    padding-bottom: 25px;
  }
  .consultation-form .heading {
    padding: 50px 0 0;
  }
  .testimonials {
    padding: 50px 0;
  }
  .testimonials .testimonialsSwiper .swiper-button-next {
    left: 40%;
  }
  .testimonials .testimonialsSwiper .swiper-button-prev {
    right: 40%;
  }
  .latest-blogs {
    padding: 50px 0;
  }
  .latest-blogs .heading {
    margin-bottom: 50px;
  }
  .latest-blogs .blog-item {
    margin: 15px auto;
  }
  .footer {
    padding: 50px 0;
  }
  .footer::after {
    content: none;
  }
  .footer::before {
    content: none;
  }
  .footer .block {
    margin-bottom: 30px;
  }
  .copyrights .rights {
    text-align: center;
  }
  .copyrights .design {
    text-align: center;
  }
  .page .about-image img {
    width: 100%;
    height: auto;
  }
}
@media (min-width: 1280px) and (max-width: 1399.98px) {
  .overview .wrapper .text {
    height: 570px;
  }
  .overview .wrapper .image {
    height: 570px;
  }
  .overview .wrapper .image img {
    height: 100%;
  }
  .testimonials {
    padding: 50px 0;
  }
  .testimonials .testimonialsSwiper .swiper-button-next {
    left: 44%;
  }
  .testimonials .testimonialsSwiper .swiper-button-prev {
    right: 44%;
  }
  .about-image img {
    width: 100%;
    height: auto;
  }
}/*# sourceMappingURL=theme-ar.css.map */