*,
* button:focus {
  outline: 0;
}

[type=email], [type=number], [type=tel], [type=url] {
    direction: inherit;
}

:root {
  --mainColor: #F8960D;
  --subColor: #838C9B;
  /* --subColor2: #77643d; */
}

.mainColor {
  color: var(--mainColor) !important;
}

.mainBack {
  background-color: var(--mainColor) !important;
  border-color: var(--mainColor) !important;
}

.subColor {
  color: var(--subColor) !important;
}

.subColor {
  background-color: var(--subColor) !important;
  border-color: var(--subColor) !important;
}

*::-webkit-scrollbar {
  height: 20px;
  width: 10px;
  background: #f1f1f1;
  border-radius: 10px;
}

*::-webkit-scrollbar-thumb {
  background: #999;
  border-radius: 10px;
}

*::-webkit-scrollbar-corner {
  background: #999;
  border-radius: 10px;
}

body {
  font-family: "Alexandria", sans-serif;
  text-decoration: none;
  font-size: 0.9em;
  overflow-x: hidden;
  position: relative;
  direction: rtl;
}

main {
  position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 500;
  margin: 0;
  line-height: 1.6;
}

body a:hover {
  text-decoration: none;
}

body a:focus {
  outline: 0;
}

body ul {
  /*list-style-type: none;*/
  margin: 0;
  padding-inline-start: 15px;
}

.btn-default:active,
.btn-default:active:focus,
.btn-default:active:hover,
.btn-default:focus,
.btn-default:hover,
.btn-primary:not(:disabled):not(.disabled):active:focus,
.btn:not(:disabled):not(.disabled).active,
.btn:not(:disabled):not(.disabled):active {
  -webkit-appearance: none;
}

.btn:active,
.btn:active:focus,
.btn:active:hover,
.btn:focus,
.btn:hover,
.btn:not(:disabled):not(.disabled).active,
.btn:not(:disabled):not(.disabled):active {
  transition: all 0.6s ease;
  outline: 0;
}

/* ==================== global style ============================== */
a,
span,
img {
  display: inline-block;
  transition: all 0.3s ease;
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: #999;
}

ul {
  padding: 0;
}

img {
  max-width: 100%;
  max-height: 100%;
}

p {
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

.text,
.text * {
  font-size: 14px;
  line-height: 2;
}

small.text {
  font-size: 12px;
}

.section_padding {
  padding: 80px 0;
}

.form-group {
  position: relative;
}
.form-group .form-control {
  border-radius: 25px;
  background-color: #fff;
  border: 1px solid rgba(153, 153, 153, 0.3333333333);
  font-size: 12px;
  padding: 15px;
}
.form-group .float_select {
  border: 0;
  position: absolute;
  left: 0;
  top: 0;
  width: 100px;
  height: 100%;
  border: 1px solid rgba(153, 153, 153, 0.3333333333);
  border-radius: 25px 0 0 25px;
  padding: 0 15px;
  font-size: 13px;
  text-align: center;
  font-weight: 500;
}

/* --------------- to_top button --------------- */
.progress-wrap {
  position: fixed;
  left: 20px;
  bottom: 20px;
  height: 50px;
  width: 50px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.0666666667);
  opacity: 0;
  overflow: hidden;
  visibility: hidden;
  transform: translateX(-100px);
  z-index: 99;
  transition: all 200ms linear;
}
.progress-wrap::after {
  background: url(../images/top-arrow.png);
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  position: absolute;
  color: #000;
  left: 13px;
  top: 13px;
  height: 25px;
  width: 25px;
  display: block;
}
.progress-wrap svg path {
  fill: #f8f8f8;
}
.progress-wrap svg.progress-circle path {
  stroke: #000;
  stroke-width: 5;
  box-sizing: border-box;
}
.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* --------------- swiper-pagination --------------- */
.swiper-pagination {
  bottom: 0;
}
.swiper-pagination .swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  background-color: #222;
}
.swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--mainColor);
}

.swiper-notification {
  display: none;
}

.dropdown-menu {
  padding: 0;
  border-radius: 15px;
  border: 0;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.0666666667);
  overflow: hidden;
}
.dropdown-menu .dropdown-item {
  font-size: 13px;
  padding: 15px;
}
.dropdown-menu .dropdown-item:active {
  background-color: var(--mainColor);
}

/* --------------- butn --------------- */
.butn {
  display: inline-flex;
  align-content: center;
  justify-content: center;
  text-align: center;
  padding: 15px 40px;
  background-color: var(--mainColor);
  color: #fff;
  font-size: 16px;
  border: 0;
  transition: all 0.3s ease;
}
.butn * {
  color: #fff;
}
.butn:hover {
  background-color: var(--subColor);
  box-shadow: 10px 10px 40px rgba(0, 0, 0, 0.1333333333);
}
.butn.line_butn {
  border: 2px solid var(--mainColor);
  background-color: transparent;
  color: #000;
}
.butn.line_butn * {
  color: #000;
}
.butn.line_butn:hover {
  background-color: var(--mainColor);
}
.butn.line_butn:hover * {
  color: #fff;
}
.butn.white_butn {
  background-color: #fff;
  color: var(--mainColor);
}
.butn.white_butn * {
  color: var(--mainColor);
}
.butn.white_butn:hover {
  background-color: #181818;
}
.butn.white_butn:hover * {
  color: #fff;
}

/* --------------- seaction head --------------- */
.seaction_head h6 {
  font-size: 18px;
  color: var(--mainColor);
  margin-bottom: 10px;
}
.seaction_head h2 {
  font-size: 25px;
  color: #181818;
}

/* --------------- navbar --------------- */
.top_nav {
  background-color: #f0f0f0;
  padding: 10px 0;
  font-size: 12px;
}
.top_nav .row {
  align-items: center;
}
.top_nav .nav_contact a {
  font-size: 11px;
  padding-inline-end: 15px;
  margin-inline-end: 15px;
  border-inline-end: 1px solid #ccc;
}
.top_nav .nav_contact a:last-of-type {
  padding-inline-end: 0;
  margin-inline-end: 0;
  border-inline-end: 0;
}
.top_nav .nav_contact a i {
  color: var(--mainColor);
}
.top_nav .social_side {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.top_nav .social_side .social_icons {
  margin-inline-end: 15px;
  padding-inline-end: 10px;
  border-inline-end: 1px solid #ccc;
}
.top_nav .social_side .social_icons a {
  font-size: 12px;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border-radius: 50%;
}
.top_nav .social_side .social_icons a:hover {
  background-color: var(--mainColor);
  color: #fff;
}
.top_nav .social_side .lang_dropdown {
  font-size: 12px;
}
.top_nav .social_side .lang_dropdown .flag {
  height: 18px;
  margin-inline-end: 5px;
}
.top_nav .social_side .lang_dropdown .dropdown-item {
  font-size: 12px;
}

.navbar {
  position: relative;
  padding: 15px 0;
  background-color: #fff;
  z-index: 99;
}
.navbar .navbar-brand {
  height: 80px;
}
.navbar .navbar-nav .nav-item .nav-link {
  font-size: 13px;
  font-weight: 500;
  color: #000;
  margin: 0 12px;
}
.navbar .navbar-nav .nav-item .search_btn {
  font-size: 17px;
}
.navbar .navbar-nav .nav-item .search_btn .fa-search::before {
  content: "\f002";
}
.navbar .navbar-nav .nav-item .search_btn.show .fa-search::before {
  content: "\f00d";
}
.navbar .search_nav_content {
  position: absolute;
  top: calc(100% - 30px);
  right: 0;
  width: 100%;
  background-color: #fff;
  padding: 30px;
  z-index: 9;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.0666666667);
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.navbar .search_nav_content.show {
  top: 100%;
  opacity: 1;
  visibility: visible;
}
.navbar .search_nav_content .form-group {
  position: relative;
  display: flex;
  align-items: center;
}
.navbar .search_nav_content .form-group .butn {
  margin-inline-start: 15px;
  border-radius: 30px;
  border: 0;
  font-size: 12px;
  flex-shrink: 0;
}

/* --------------- header --------------- */
header {
  position: relative;
  padding: 10px 0 250px;
  overflow: hidden;
}
header::before {
  position: absolute;
  content: "";
  width: 120%;
  height: 120%;
  border-bottom-left-radius: 50%;
  border-bottom-right-radius: 50%;
  background-color: #F0F0F0;
  bottom: 180px;
  left: -5%;
  z-index: 1;
}
header::after {
  position: absolute;
  content: "";
  width: 140%;
  height: 120%;
  border-bottom-left-radius: 50%;
  border-bottom-right-radius: 50%;
  background-color: #F9F9F9;
  bottom: 0;
  left: -15%;
}
header .header_slider {
  position: relative;
  padding-bottom: 100px;
}
header .header_slider .swiper-slide {
  opacity: 0 !important;
}
header .header_slider .swiper-slide.swiper-slide-active {
  opacity: 1 !important;
}
header .header_slider .swiper-slide.swiper-slide-active .content .info {
  transform: translateY(0);
}
header .header_slider .swiper-slide.swiper-slide-active .content .img {
  transform: translateX(0);
}
header .header_slider .swiper-pagination .swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  background-color: #222;
}
header .header_slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--mainColor);
}
header .content {
  position: relative;
  padding-inline-start: calc((100vw - 1320px) / 2);
  z-index: 20;
}
header .content .info {
  padding: 50px 0;
  transform: translateY(-100px);
  transition: all 1s ease;
}
header .content .info h1 {
  color: #181818;
  font-size: 40px;
}
header .content .info p {
  font-size: 21px;
  color: #4E4E4E;
  margin-top: 15px;
}
header .content .img {
  position: relative;
  transform: translateX(-100px);
  transition: all 1s ease;
}
header .content .img::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: -20px;
  width: calc(100% + 10px);
  height: 100%;
  background-color: var(--mainColor);
  border-top-right-radius: 400px;
  border-bottom-right-radius: 400px;
}
header .content .img .main_img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-top-right-radius: 400px;
  border-bottom-right-radius: 400px;
  position: relative;
  z-index: 10;
  height: 570px;
}

/* --------------- about --------------- */
.about {
  position: relative;
  margin-top: -250px;
  z-index: 30;
  padding-bottom: 70px;
}
.about .imgs {
  position: relative;
}
.about .imgs .main_img {
  position: relative;
  height: 530px;
  width: 60%;
}
.about .imgs .main_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 300px;
  background-color: #f0f0f0;
}
.about .imgs .sub_img {
  width: 360px;
  height: 360px;
  border-radius: 50%;
  border: 5px solid #fff;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 10;
  overflow: hidden;
}
.about .imgs .sub_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about .info .text {
  font-size: 15px;
  line-height: 2.2;
  text-align: justify;
}
.about .numbers {
  margin-top: 30px;
}
.about .numbers .number_card {
  margin-top: 50px;
  text-align: center;
  position: relative;
}
.about .numbers .number_card .num {
  font-weight: 200;
  color: var(--mainColor);
  font-size: 55px;
}
.about .numbers .number_card h6 {
  font-size: 13px;
  margin-top: 10px;
}

/* --------------- services --------------- */
.services {
  padding: 80px 0;
  background-color: #FFF7ED;
}
.services .service_card {
  position: relative;
  padding: 30px;
  border-radius: 23px;
  background-color: #fff;
  margin-top: 24px;
  border: 1px solid #fff;
  min-height: calc(100% - 24px);
}
.services .service_card:hover {
  border-color: var(--mainColor);
}
.services .service_card .icon {
  font-size: 33px;
    margin-bottom: 20px;
    color: var(--mainColor);
    height: 50px;
    display: inline-block;
}
.services .service_card .icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.services .service_card h6 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #181818;
  font-weight: bold;
}
.services .service_card p {
  font-size: 13px;
  color: #4E4E4E;
  line-height: 2;
}

/* --------------- join --------------- */
.join {
  position: relative;
}
.join::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 50%;
  background-color: #FFF7ED;
}
.join .join_card {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
}
.join .join_card .bg {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 60%;
  height: 100%;
}
.join .info {
  padding: 70px 40px;
  background-color: var(--mainColor);
  color: #fff;
  border-radius: 25px;
  position: relative;
  z-index: 10;
}
.join .info .seaction_head h6 {
  color: #fff;
}
.join .info .seaction_head h2 {
  color: #fff;
}
.join .info .text {
  font-size: 15px;
}

/* --------------- clients --------------- */
.clients {
  padding: 80px 0 70px;
}
.clients .clients_slider {
  position: relative;
  overflow: hidden;
  padding-bottom: 40px;
}
.clients .clients_slider .logo {
  position: relative;
  filter: grayscale(1);
}
.clients .clients_slider .logo:hover {
  filter: grayscale(0);
}
.clients .clients_slider .logo img {
  height: 100px;
}

/* --------------- footer --------------- */
.footer {
  background-color: #f9f9f9;
  padding: 80px 0 0;
}
.footer .foot {
  padding: 30px 0;
  background-color: #fff;
  margin-top: 60px;
}
.footer .foot .foot_links a {
  margin-inline-end: 20px;
}
.footer a:hover {
  color: var(--mainColor);
}
.footer .logo {
  height: 85px;
  margin-bottom: 20px;
}
.footer .contact_links a {
  min-width: 45%;
  margin: 10px 0;
  font-size: 13px;
}
.footer .contact_links a i {
  color: var(--mainColor);
}
.footer .services_links h6 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 20px;
}
.footer .services_links a {
  font-size: 13px;
  min-width: 45%;
  margin: 10px 0;
}
.footer .contact_form .form-group {
  position: relative;
  margin-top: 24px;
}
.footer .contact_form .form-group .icon {
  position: absolute;
  color: var(--mainColor);
  right: 20px;
  top: 15px;
  font-size: 14px;
}
.footer .contact_form .form-group .form-control {
  border-radius: 25px;
  background-color: #fff;
  border: 1px solid rgba(153, 153, 153, 0.3333333333);
  font-size: 12px;
  padding: 15px 40px 15px 15px;
}

.footer_2 ul,
.footer ul,
.contact_info ul{
  list-style-type: none;
  margin: 0;
  padding-inline-start: 0;
}

/* --------------- footer2 --------------- */
.footer_2 {
  background: linear-gradient(180deg, rgba(236, 236, 236, 0.29) -5.98%, #ECECEC 144.13%);
}
.footer_2 .main_content {
  padding: 50px 0;
}
.footer_2 .main_content .foot_subs {
  padding: 10px 0;
  text-align: center;
}
.footer_2 .main_content .foot_subs h6 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 5px;
}
.footer_2 .main_content .foot_subs p {
  font-size: 16px;
}
.footer_2 .main_content .foot_subs .form-group {
  margin-top: 20px;
  position: relative;
}
.footer_2 .main_content .foot_subs .form-group button {
  position: absolute;
  top: 5px;
  left: 5px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--mainColor);
  color: #fff;
  border: 0;
}
.footer_2 .main_content .links_group {
  position: relative;
  margin-top: 30px;
}
.footer_2 .main_content .links_group .sub_title {
  position: relative;
  font-size: 16px;
  font-weight: bold;
  display: block;
  width: -moz-max-content;
  width: max-content;
  z-index: 5;
  margin-bottom: 20px;
}
.footer_2 .main_content .links_group .sub_title::before {
  position: absolute;
  content: "";
  right: 5%;
  bottom: 0;
  width: 90%;
  height: 10px;
  background-color: var(--mainColor);
  z-index: -1;
}
.footer_2 .main_content .links_group .f-link {
  position: relative;
  margin: 10px 0;
}
.footer_2 .main_content .links_group .f-link .fa-sort-up {
  color: var(--mainColor);
  transform: rotate(-90deg);
  margin-inline-end: 10px;
}
.footer_2 .foot {
  background-color: var(--mainColor);
  color: #fff;
  padding: 30px 50px;
  border-radius: 30px 30px 0 0;
}
.footer_2 .foot a:hover {
  color: #000;
}
.footer_2 .foot .foot-links a {
  margin: 0 10px;
}

/* --------------- pages style --------------- */
/* --------------- inner_header --------------- */
.inner_header {
  position: relative;
  padding: 50px 0;
  overflow: hidden;
  text-align: center;
  color: #fff;
}
.inner_header::before {
  position: absolute;
  content: "";
  left: -40%;
  bottom: 0;
  width: 180%;
  height: 500px;
  background-color: #939BA8;
  border-bottom-left-radius: 50%;
  border-bottom-right-radius: 50%;
}
.inner_header .content {
  position: relative;
  z-index: 10;
}
.inner_header .content .links {
  margin-top: 30px;
}
.inner_header .content .links a {
  position: relative;
  padding: 0 30px;
}
.inner_header .content .links a:hover {
  color: var(--mainColor);
}
.inner_header .content .links a:last-of-type::after {
  display: none;
}
.inner_header .content .links a::after {
  position: absolute;
  content: "";
  left: -10px;
  top: calc(50% - 10px);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-image: url(../images/fav.png);
  background-size: contain;
  background-repeat: no-repeat;
  border: 2px solid #fff;
}

.inner_shap {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 300px;
}
.inner_shap::before {
  position: absolute;
  content: "";
  width: 140%;
  height: 200%;
  border-bottom-left-radius: 50%;
  border-bottom-right-radius: 50%;
  background-color: #fafafa;
  border: 1px solid rgba(153, 153, 153, 0.0666666667);
  bottom: -30%;
  left: -50%;
  z-index: -1;
}
.inner_shap::after {
  position: absolute;
  content: "";
  width: 140%;
  height: 200%;
  border-bottom-left-radius: 50%;
  border-bottom-right-radius: 50%;
  background-color: #f7f7f7;
  bottom: -10%;
  left: 0%;
  z-index: -2;
}

/* --------------- about page --------------- */
.about_pg .about .info .butn {
    display: none;
}
.features {
  padding: 80px 0 100px;
  background-color: #FFF7ED;
}
.features .service_card {
  position: relative;
  padding: 30px;
  border-radius: 23px;
  background-color: #fff;
  margin-top: 24px;
  text-align: center;
  filter: drop-shadow(0 0 30px rgba(0, 0, 0, 0.0666666667));
  min-height: 315px;
}
.features .service_card::after {
  position: absolute;
  content: "";
  left: 10%;
  bottom: -22px;
  width: 80%;
  height: 20px;
  background-color: #fff;
  border-radius: 0 0 23px 23px;
}
.features .service_card .icon {
  font-size: 33px;
  margin-bottom: 15px;
  color: var(--mainColor);
  height: 60px;
}
.features .service_card h6 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #181818;
  font-weight: bold;
}
.features .service_card p {
  font-size: 13px;
  color: #4E4E4E;
  line-height: 2.2;
  font-weight: 400;
}

/* --------------- testimonials --------------- */
.testimonials {
  position: relative;
  padding: 80px 0;
}
.testimonials .container {
  position: relative;
  z-index: 20;
}
.testimonials .info .text {
  font-size: 16px;
}
.testimonials .testimonials_card {
  position: relative;
}
.testimonials .testimonials_card .testi_box {
  position: relative;
  padding: 50px;
  background-color: #f9f9f9;
  border-radius: 20px;
}
.testimonials .testimonials_card .testi_box::after {
  position: absolute;
  content: "";
  right: 100px;
  bottom: -30px;
  width: 30px;
  height: 30px;
  border-top: 15px solid #f9f9f9;
  border-right: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 15px solid transparent;
}
.testimonials .testimonials_card .testi_box .icon {
  margin-bottom: 20px;
  font-size: 40px;
}
.testimonials .testimonials_card .testi_box .text {
  font-size: 14px;
  font-weight: 400;
}
.testimonials .testimonials_card .testi_box .stars {
  color: var(--mainColor);
  margin-bottom: 20px;
}
.testimonials .testimonials_card .user_box {
  display: flex;
  align-items: center;
  margin-top: 30px;
  margin-right: 75px;
}
.testimonials .testimonials_card .user_box .img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin-inline-end: 20px;
  flex-shrink: 0;
}
.testimonials .testimonials_card .user_box small {
  font-size: 12px;
  margin-top: 10px;
  color: var(--mainColor);
}
.testimonials .testimonials_slider {
  position: relative;
  overflow: hidden;
}
.testimonials .arrows {
  position: relative;
  width: 130px;
  height: 100px;
}
.testimonials .arrows .swiper-button-next,
.testimonials .arrows .swiper-button-prev {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(153, 153, 153, 0.6);
  border-radius: 8px;
  transition: all 0.3s ease;
}
.testimonials .arrows .swiper-button-next:hover,
.testimonials .arrows .swiper-button-prev:hover {
  background-color: var(--mainColor);
}
.testimonials .arrows .swiper-button-next:hover::after,
.testimonials .arrows .swiper-button-prev:hover::after {
  color: #fff;
}
.testimonials .arrows .swiper-button-next::after,
.testimonials .arrows .swiper-button-prev::after {
  font-size: 14px;
  color: #000;
}

/* --------------- contact_pg --------------- */
.contact_pg {
  padding: 100px 0;
}
.contact_pg .contact_info {
  padding: 90px 40px;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.0666666667);
}
.contact_pg .contact_info .contact_list {
  margin-top: 30px;
}
.contact_pg .contact_info .contact_list li {
  margin: 15px 0;
}
.contact_pg .contact_info .contact_list li i {
  color: var(--mainColor);
}
.contact_pg .contact_info .social_icons {
  margin-top: 40px;
}
.contact_pg .contact_info .social_icons a {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  border: 1px solid rgba(248, 150, 13, 0.2);
  color: var(--mainColor);
  margin-inline-end: 10px;
  border-radius: 8px;
  font-size: 18px;
}
.contact_pg .contact_info .social_icons a:hover {
  background-color: var(--mainColor);
  color: #fff;
}
.contact_pg .contact_form .form-group {
  position: relative;
  margin-top: 24px;
}
.contact_pg .contact_form .form-group .icon {
  position: absolute;
  color: var(--mainColor);
  right: 20px;
  top: 15px;
  font-size: 14px;
}
.contact_pg .contact_form .form-group .form-control {
  border-radius: 25px;
  background-color: #fff;
  border: 1px solid rgba(153, 153, 153, 0.3333333333);
  font-size: 12px;
  padding: 15px 40px 15px 15px;
}
.contact_pg .contact_form .form-group .float_select {
  border: 0;
  position: absolute;
  left: 0;
  top: 0;
  width: 100px;
  height: 100%;
  border: 1px solid rgba(153, 153, 153, 0.3333333333);
  border-radius: 25px 0 0 25px;
  padding: 0 15px;
  font-size: 13px;
  text-align: center;
  font-weight: 500;
}

/* --------------- jop page --------------- */
.jop_main_info {
  padding: 80px 0;
}
.jop_main_info .img {
  position: relative;
  padding: 0 0 15px 15px;
}
.jop_main_info .img::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: calc(100% - 15px);
  height: calc(100% - 15px);
  background-color: var(--mainColor);
  border-radius: 20px;
}
.jop_main_info .img img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  z-index: 10;
}
.jop_main_info .info .text {
  font-size: 15px;
  color: #4E4E4E;
  line-height: 2.2;
}

.jop_form_pg {
  padding: 100px 0;
}
.jop_form_pg .contact_form {
  position: relative;
  background-color: #FFF7ED;
  padding: 4vw;
  border-radius: 20px;
}
.jop_form_pg .contact_form .form-group {
  position: relative;
  margin-top: 24px;
}
.jop_form_pg .contact_form .form-group .icon {
  position: absolute;
  color: var(--mainColor);
  right: 20px;
  top: 15px;
  font-size: 14px;
}
.jop_form_pg .contact_form .form-group .form-control {
  border-radius: 25px;
  background-color: #fff;
  border: 1px solid rgba(153, 153, 153, 0.3333333333);
  font-size: 12px;
  padding: 15px 40px 15px 15px;
}
.jop_form_pg .contact_form .form-group .float_select {
  border: 0;
  position: absolute;
  left: 0;
  top: 0;
  width: 100px;
  height: 100%;
  border: 1px solid rgba(153, 153, 153, 0.3333333333);
  border-radius: 25px 0 0 25px;
  padding: 0 15px;
  font-size: 13px;
  text-align: center;
  font-weight: 500;
}
.jop_form_pg .upload-content #dropFileForm {
  border-radius: 6px;
  overflow: hidden;
  transition: 0.5s;
  position: relative;
}
.jop_form_pg .upload-content #dropFileForm #fileLabelText {
  font-size: 15px;
  font-weight: normal;
  line-height: 2;
}
.jop_form_pg .upload-content #dropFileForm #fileLabelText i {
  font-size: 10px;
}
.jop_form_pg .upload-content #dropFileForm .upload-icon {
  position: absolute;
  left: 100px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
}
.jop_form_pg .upload-content #dropFileForm #fileLabel {
  display: block;
  padding: 10px 40px;
  position: relative;
  cursor: pointer;
  border-radius: 25px;
  background-color: #fff;
  border: 1px solid rgba(153, 153, 153, 0.3333333333);
  font-size: 12px;
  position: relative;
}
.jop_form_pg .upload-content #dropFileForm #fileInput {
  display: none;
}
.jop_form_pg .upload-content #dropFileForm #fileLabel:after,
.jop_form_pg .upload-content #dropFileForm #fileLabel:before {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  z-index: -2;
  border-radius: 8px 8px 0 0;
}
.jop_form_pg .upload-content #dropFileForm #fileLabel:before {
  z-index: -1;
  background: repeating-linear-gradient(45deg, transparent, transparent 5%, black 5%, black 10%);
  opacity: 0;
  transition: 0.5s;
}
.jop_form_pg .upload-content #dropFileForm.fileHover #fileLabel:before {
  opacity: 0.05;
}

/* --------------- services_pg --------------- */
.services_pg {
  padding: 80px 0;
  position: relative;
}
.services_pg .service_tab_card {
  padding: 30px 20px;
  border-radius: 15px;
  margin-bottom: 20px;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.0666666667);
}
.services_pg .service_tab_card .title {
  position: relative;
  cursor: pointer;
}
.services_pg .service_tab_card .title img {
    width: 20px;
    margin-inline-end: 15px;
}
.services_pg .service_tab_card .title .arrow {
  position: absolute;
  left: 20px;
}
.services_pg .service_tab_card .nav {
  transform: translateY(30px);
  margin-bottom: 30px;
  display: none;
}
.services_pg .service_tab_card .nav.active {
  display: flex;
}
.services_pg .service_tab_card .nav .nav-link {
  background-color: transparent;
  width: calc(100% - 60px);
  color: #181818;
  display: block;
  border-radius: 15px;
  margin: 0 40px 0 20px;
  padding: 0;
}
.services_pg .service_tab_card .nav .nav-link a {
    display: flex;
  align-items: center;
  padding: 15px 20px;
  position: relative;
}

.services_pg .service_tab_card .nav .nav-link a .arrow {
    margin-inline-start: auto;
}

.services_pg .service_tab_card .nav .nav-link a .icon {
    position: absolute;
    right: -5px;
}

.services_pg .service_tab_card .nav .nav-link.active {
  background-color: #f5f5f5;
}
.services_pg .service_content .service_slider {
  position: relative;
  overflow: hidden;
}
.services_pg .service_content .main_img {
  height: 430px;
  border-radius: 30px;
  overflow: hidden;
}
.services_pg .service_content .main_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.services_pg .service_content .info {
  margin-top: 40px;
}
.services_pg .service_content .info .text {
  margin-top: 20px;
  color: #4E4E4E;
  line-height: 2.3;
  font-weight: 400;
}

/*body .services_pg ul {*/
/*    list-style-type: inherit;*/
/*    margin: 0;*/
/*    padding-inline-start: 15px;*/
/*}*/

/* --------------- projects_pg --------------- */
.projects_pg {
  padding: 80px 0;
}
.projects_pg .search_filter {
  padding: 30px;
  background-color: #f9f9f9;
  border-radius: 15px;
  display: flex;
  align-items: center;
}
.projects_pg .search_filter .form-group {
  padding: 0 5px;
  flex-grow: 1;
  width: 20%;
}
.projects_pg .projects {
  margin-top: 100px;
}
.projects_pg .projects .project_card {
  margin-top: 50px;
}
.projects_pg .projects .project_card .img_slider {
  position: relative;
  z-index: 10;
  width: calc(100% + 50px);
  overflow: hidden;
}
.projects_pg .projects .project_card .img_slider .swiper-pagination {
  bottom: 70px;
}
.projects_pg .projects .project_card .img_slider .img {
  height: 450px;
  border-radius: 20px;
  overflow: hidden;
  padding: 50px 0;
}
.projects_pg .projects .project_card .img_slider .img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}
.projects_pg .projects .project_card .info {
  padding: 50px;
  padding-inline-start: 100px;
  background-color: #f9f9f9;
  border-radius: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.projects_pg .projects .project_card .info i {
  color: var(--mainColor);
}
.projects_pg .projects .project_card.reverse_card .img_slider {
  right: -50px;
}
.projects_pg .projects .project_card.reverse_card .info {
  padding-inline-start: 50px;
  padding-inline-end: 100px;
}

.pagination {
  justify-content: center;
  margin-top: 80px;
}
.pagination .page-link {
  padding: 0;
  border-radius: 6px !important;
  margin: 0 7px !important;
  width: 45px;
  height: 45px;
  text-align: center;
  line-height: 45px;
  color: #000;
}

/* --------------- blog_pg --------------- */
.blog_pg {
  padding: 80px 0;
}
.blog_pg .blog_card {
  position: relative;
  background-color: #fff;
  box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.0274509804);
  border-radius: 20px;
  margin: 24px 0;
}
.blog_pg .blog_card .img {
  position: relative;
  height: 280px;
  border-radius: 20px;
  overflow: hidden;
}
.blog_pg .blog_card .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: covers;
     object-fit: covers;
}
.blog_pg .blog_card .img .date {
  font-size: 12px;
  background-color: #fff;
  border-radius: 30px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.0666666667);
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 10;
  padding: 10px 25px;
}
.blog_pg .blog_card .info {
  padding: 40px 30px;
}
.blog_pg .blog_card .info .text {
  min-height: 115px;
}

/* --------------- post_pg --------------- */
.post_pg {
  position: relative;
  padding: 100px 0;
}
.post_pg .post .date {
  font-size: 17px;
  margin-bottom: 20px;
}
.post_pg .post .date i {
  color: var(--mainColor);
}
.post_pg .post .post_title {
  font-size: 40px;
  margin-bottom: 50px;
}
.post_pg .post .main_img {
  height: 500px;
  position: relative;
  padding: 0 0 15px 15px;
  margin-bottom: 50px;
}
.post_pg .post .main_img::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: calc(100% - 15px);
  height: calc(100% - 15px);
  background-color: var(--mainColor);
  border-radius: 20px;
}
.post_pg .post .main_img img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  -o-object-fit: cover;
  object-fit: cover;
  position: relative;
  z-index: 10;
}
.post_pg .post .text {
  font-size: 20px;
  line-height: 2.2;
  font-weight: 300;
  margin-bottom: 30px;
}

/* --------------- .gallery_pg --------------- */
.gallery_pg {
  position: relative;
  padding: 80px 0;
}
.gallery_pg .gallery {
  position: relative;
  display: flex;
  flex-wrap: wrap;
}
.gallery_pg .gallery .img {
  position: relative;
  height: 300px;
  display: block;
  border-radius: 20px;
  margin: 15px;
  overflow: hidden;
  width: calc(24% - 30px);
  flex-grow: 1;
  transition: all 0.5s ease;
}
.gallery_pg .gallery .img:nth-of-type(odd) {
  width: calc(36% - 30px);
}
.gallery_pg .gallery .img:hover {
  transform: scale(0.97);
}
.gallery_pg .gallery .img:hover img {
  transform: scale(1.1);
}
.gallery_pg .gallery .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.5s ease;
}

/* --------------- videos_pg --------------- */
.videos_pg {
  position: relative;
  padding: 80px 0;
}
.videos_pg .videos .video_card {
  text-align: center;
  margin: 30px 0;
}
.videos_pg .videos .video_card .img {
  height: 330px;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  margin-bottom: 30px;
  display: block;
}
.videos_pg .videos .video_card .img:hover::after {
  opacity: 0;
}
.videos_pg .videos .video_card .img::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.4;
  transition: all 0.3s ease;
}
.videos_pg .videos .video_card .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.videos_pg .videos .video_card .img .icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  color: #fff;
  font-size: 40px;
}

/* --------------- branches_pg --------------- */
.branches_pg {
  position: relative;
  padding: 80px 0;
}
.branches_pg .branches_filter {
  overflow-x: hidden;
  overflow-y: auto;
  max-height: 600px;
  padding: 0 30px 0 48px;
}
.branches_pg .branches_filter::-webkit-scrollbar {
  height: 5px;
  width: 5px;
  background: #fafafa;
  border-radius: 5px;
}
.branches_pg .branches_filter::-webkit-scrollbar-thumb {
  background: #f0f0f0;
  border-radius: 10px;
}
.branches_pg .branches_filter::-webkit-scrollbar-corner {
  background: #f0f0f0;
  border-radius: 10px;
}
.branches_pg .branches_filter .nav-pills {
  display: block;
}
.branches_pg .branches_filter .branch_tab {
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.0666666667);
  color: #000;
  cursor: pointer;
}
.branches_pg .branches_filter .branch_tab.active {
  box-shadow: none;
  background-color: #f0f0f0;
}
.branches_pg .branches_filter .branch_tab:hover {
  background-color: #f5f5f5;
}
.branches_pg .branches_filter .branch_tab .img {
  margin-bottom: 15px;
}
.branches_pg .branches_filter .branch_tab .img img {
  border-radius: 15px;
  width: 100%;
  height: 150px;
  -o-object-fit: cover;
     object-fit: cover;
}
.branches_pg .branches_filter .branch_tab .title {
  font-size: 16px;
  margin-bottom: 10px;
}
.branches_pg .branches_filter .branch_tab p {
  font-size: 12px;
  font-weight: 300;
  margin-bottom: 15px;
}
.branches_pg .maps .map_content {
  border-radius: 20px;
  overflow: hidden;
}
.branches_pg .maps .map_content iframe {
  margin-bottom: -6px;
}

/* --------------- to_top --------------- */
/* ======== */
@media screen and (max-width: 991px) {
  .top_nav .nav_contact {
    text-align: center;
  }
  .top_nav .social_side {
    justify-content: center;
  }
  header .content .info {
    padding: 50px 15px;
  }
  header .content .info h1 {
    font-size: 25px;
  }
  header .content .info p {
    font-size: 16px;
  }
  header .content .img {
    padding: 0 15px;
  }
  header .content .img::after {
    display: none;
  }
  header .content .img .main_img {
    height: 400px;
    border-radius: 30px;
  }
  .about .imgs .main_img {
    height: 400px;
    width: 80%;
  }
  .about .imgs .sub_img {
    width: 250px;
    height: 250px;
  }
  .features .service_card {
    margin-top: 50px;
  }
  .contact_pg .contact_info {
    padding: 50px 20px;
  }
  .gallery_pg .gallery .img {
    width: 100% !important;
  }
  .jop_form_pg .upload-content #dropFileForm .upload-icon {
    left: 30px;
  }
  .post_pg .post .post_title {
    font-size: 21px;
  }
  .post_pg .post .main_img {
    height: 400px;
  }
  .post_pg .post .text {
    font-size: 16px;
  }
  .projects_pg .search_filter {
    flex-wrap: wrap;
  }
  .projects_pg .search_filter .form-group {
    padding: 5px;
    width: 50%;
  }
  .projects_pg .projects .project_card .img_slider {
    width: 100%;
    position: static;
  }
  .projects_pg .projects .project_card .img_slider .img {
    height: 350px;
    padding: 0 0 15px;
  }
  .projects_pg .projects .project_card .info {
    padding: 30px !important;
  }
}
/* ======= */
html[dir=ltr] {
  @import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
}
html[dir=ltr] body {
  direction: ltr;
  font-family: "Poppins", sans-serif;
}

.footer-dev-logo {
    height: 20px;
    width: auto;
    margin-inline-end: 8px;
    vertical-align: middle;
}

/*# sourceMappingURL=style.css.map */