/* Setting Style
======================*/
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Arabic:wght@500;700&display=swap');

:root {
  --main_color: #006a62;
  --second_color: #CEAF6B;
  --black_color: #201F1F;
  --normal_weg: 500;
  --bold_weg: 700;
}

*,
:focus {
  outline: 0 !important;
  scroll-behavior: smooth;
}

::selection {
  background-color: var(--main_color) !important;
  color: #fff !important;
}

/* Scroll Bar
======================*/
/* width */
::-webkit-scrollbar {
  background-color: #efefef;
  width: 10px;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
}

/* Track */
::-webkit-scrollbar-track {
  background-color: #efefef;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background-color: var(--main_color);
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
}

body {
  font-family: 'IBM Plex Sans Arabic', sans-serif;
  overflow: hidden;
  width: 100%;
  font-weight: var(--normal_weg);
  text-align: start;
}

.shadow {
  box-shadow: 0px 10px 60px 1px #ededed !important;
}

/* Lists  
======================*/
ul {
  display: block;
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}

ul li {
  display: inline-block;
}

/* Links 
======================*/
a,
a:hover,
a:focus {
  cursor: pointer;
  text-decoration: none;
}

/*Images
======================*/
img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

section {
  position: relative;
  width: 100%;
  padding: 70px 0;
}

.section_title {
  font-size: 36px;
  font-weight: var(--bold_weg);
  text-align: center;
  color: var(--main_color);
  margin: 0 0 15px;
}


.hint {
  font-size: 18px;
  text-align: center;
  margin: 0 auto 30px;
  max-width: 768px;
}

.sec_id {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 45px;
  right: 0;
  left: 0;
}

.link {
  padding: 0 15px;
  line-height: 45px;
  background-color: var(--main_color);
  color: #fff;
  display: inline-block;
  font-size: 16px;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  border-radius: 7px;
  border: 0;
  position: relative;
  font-weight: var(--normal_weg);
  -webkit-transition: 0.3s all linear;
  -moz-transition: 0.3s all linear;
  -ms-transition: 0.3s all linear;
  -o-transition: 0.3s all linear;
  transition: 0.3s all linear;
}
.ml-15{
  margin-inline-end: 15px
}
.link::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  clip-path: circle(0% at 100% 100%);
  background-color: var(--second_color);
  -webkit-transition: 0.4s all linear;
  -moz-transition: 0.4s all linear;
  -ms-transition: 0.4s all linear;
  -o-transition: 0.4s all linear;
  transition: 0.4s all linear;
}

.link span {
  position: relative;
  z-index: 999;
  height: 50px;
  line-height: 50px;
  display: block;
}

.link span i {
  margin-inline-start: 15px;
}

.link:hover {
  color: #fff;
}

.link:hover::before {
  clip-path: circle(70.7% at 50% 50%);
}

/* Header
==========================*/
header {
  position: fixed;
  top: 20px;
  right: 0px;
  width: 100%;
  background-color: transparent;
  z-index: 9997;
  padding: 10px 0;
  -webkit-transition: 0.3s linear all;
  -moz-transition: 0.3s linear all;
  -ms-transition: 0.3s linear all;
  -o-transition: 0.3s linear all;
  transition: 0.3s linear all;
}

header.move {
  top: 0;
  background-color: #fff;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

header .container {
  position: relative;
  min-height: 65px;
}

@media (max-width: 991px) {
  header .container {
    min-height: auto;
  }
}

header .navbar-brand {
  display: block;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 999;
  width: 150px;
  height: 60px;
}

@media (max-width: 575px) {
  header .navbar-brand {
    width: 130px;
    height: 52px;
  }
}

header .navbar-brand img {
  height: 100%;
}

header .btns {
  z-index: 9999;
  display: flex;
}

header .btns .menu-btn {
  vertical-align: middle;
  border: 0;
  padding: 0;
  background-color: var(--second_color);
  width: 50px;
  height: 50px;
  margin-inline-start: 5px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  display: none;
}

header .btns .menu-btn span {
  display: block;
  background-color: #fff;
  height: 2px;
  width: 50%;
  margin: 5px auto;
  border-radius: 12px;
}

@media (max-width: 991px) {
  header .btns .menu-btn {
    display: inline-block;
  }
}

@media (min-width: 992px) {
  header .btns .home_link_index {
    display: none !important;
  }
}

.navbar {
  padding: 0px;
  margin: 0px;
  margin-top: -65px;
}

.navbar .navbar-nav {
  width: 100%;
  height: 100%;
  position: relative;
  padding: 0;
}

.navbar .navbar-nav li {
  display: inline-block;
}

.navbar .navbar-nav li a {
  position: relative;
  display: block;
  padding: 0;
  margin: 0;
  margin-inline-end: 25px;
  font-size: 18px;
  font-weight: var(--bold_weg);
  color: #000000;
  text-align: center;
  line-height: 45px;
  margin-top: -3px;
}

.navbar .navbar-nav li a.home_link {
  background-color: #e9f2fa;
  width: 45px;
  height: 45px;
  line-height: 45px;
  margin-inline-start: 0;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}

.navbar .navbar-nav li a.home_link img {
  width: 18px;
}

.navbar .navbar-nav li a:hover {
  color: var(--second_color);
}

.dropdown-toggle::after {
  display: none;
}

.dropdown-menu {
  left: auto !important;
  right: auto;
  inset-inline-end: -15px;
  margin-top: 10px;
  inset-inline-start: auto;
  padding: 0;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
}

.dropdown-menu::before {
  content: "";
  position: absolute;
  top: -16px;
  inset-inline-start: 15px;
  width: 16px;
  height: 16px;
  border: 8px solid transparent;
  border-bottom-color: #dedede;
}

.navbar .navbar-nav li.dropdown .dropdown-menu a {
  padding: 0 15px;
  border-bottom: 1px solid #dedede;
  width: 100%;
  text-align: start;
  font-size: 16px;
  color: var(--black_color) !important;
}

.navbar .navbar-nav li .dropdown-menu a:nth-child(1) {
  -webkit-border-radius: 10px 10px 0 0;
  -moz-border-radius: 10px 10px 0 0;
  border-radius: 10px 10px 0 0;
}

.navbar .navbar-nav li.dropdown .dropdown-menu a:last-child {
  -webkit-border-radius: 0 0 10px 10px;
  -moz-border-radius: 0 0 10px 10px;
  border-radius: 0 0 10px 10px;
  border-bottom: 0;
}

.dropdown-menu a:hover {
  background-color: transparent;
}

@media (max-width: 991px) {
  .navbar {
    margin-top: 0;
    background-color: var(--main_color);
    position: absolute;
    top: 70px;
    width: 100%;
  }

  .navbar ul.navbar-nav {
    border-top: 1px solid #fff1;
    display: block;
    text-align: start;
    padding: 0;
    align-items: flex-start !important;
    flex-direction: column !important;
    justify-content: space-between !important;
  }

  .navbar ul.navbar-nav li {
    display: block;
    width: 49%;
  }

  .navbar ul.navbar-nav li a {
    color: #fff !important;
    border-bottom: 1px solid #fff2;
    margin: 0;
    text-align: start;
    padding: 0 20px;
  }
  .navbar-nav .dropdown-menu::before{
    display: none
  }
  

  .navbar ul.navbar-nav li:has(.home_link) {
    display: none !important;
  }
}

@media (max-width: 575px) {
  .navbar ul.navbar-nav li {
    width: 100%;
  }

  .navbar ul.navbar-nav li a {
    font-size: 14px;
    margin: auto;
  }

  header .btns .link {
    display: none;
  }
    header .btns .link.ml-15 {
    display: block;
  }

  header .btns .link i {
    margin: auto;
  }
}

/* Main Section 
==========================*/
.main_section {
  padding: 180px 0 10px;
  position: relative;
  background: url(../images/shap_bc.png) no-repeat bottom center;
  background-size: cover;
}

.main_section img {
  width: 100%;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0px 10px 30px 0px rgba(78, 76, 76, 0.2);
  animation: moveUpDown 5s linear infinite;
}

@keyframes moveUpDown {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(0);
  }
}

.main_section .other {
  position: absolute;
  bottom: -100px;
  right: -20px;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.main_section .other img {
  width: 190px;
  margin: 0;
  animation-delay: 0.5s;
}

.main_section .other img:last-child {
  margin-inline-end: -50px;
  animation-delay: 1s;
}

.main_section .intro {
  text-align: start;
  padding-inline-end: 30px;
}

.main_section .intro h3 {
  font-size: 48px;
  font-weight: var(--bold_weg);
  margin: 0;
  line-height: 65px;
  color: var(--main_color);
}

.main_section .intro h3 span {
  display: block;
  color: var(--black_color);
  line-height: 55px;
  margin-top: 10px;
}

.main_section .intro p {
  margin: 35px 0;
  font-size: 28px;
  line-height: 48px;
  font-weight: var(--normal_weg);
  color: var(--black_color);
}

.profits {
  border-radius: 24px;
  border: 2px solid rgba(0, 106, 98, 0.50);
  background-color: #fff;
  padding: 25px 48px;
}
.intro span .type_slider{
  display: inline-block !important;
  width: 115px !important;
  padding: 0 !important;
  vertical-align: middle;
}
.intro span .type_slider .type{
    display: block;
    padding: 0 15px;
    line-height: 45px;
    background-color: var(--second_color);
    color: #fff;
    font-size: 24px;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
    border: 0;
    position: relative;
    font-weight: var(--bold_weg);
    text-align: center;
    width: 115px;
}
@media all and (max-width:576px) {
  .profits {
    padding: 25px 15px;
  }
}


.profits .profit_perc span {
  color: #006A62;
  font-size: 57px;
  font-weight: 700;
  line-height: 55px;
  display: block;
  direction: ltr;
  text-align: left;
}

.profits .profit_perc sub {
  font-size: 32px;
  margin-left: -14px;
  display: inline-block;
}

.profits .profit_perc {
  /* 50% */
  text-align: right;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 35px;
  /* 350% */
  width: 100%;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  align-items: flex-end;
}

.profits .form-group {
  text-align: start;
  margin-bottom: 20px;
}

.profits .form-group label {
  color: #006A62;
  text-align: right;
  font-size: 24px;
  font-weight: 500;
  line-height: 25px;
  /* 109.375% */
  margin: 0 0 15px;
}

.profits .form-group .inp_gr {
  position: relative;
}

.profits .form-group .inp_gr .form-control {
  height: 56px;
  border: 1px solid #E4E4E4;
  border-radius: 15px;
  outline: none !important;
  box-shadow: none !important;
  padding: 0 15px;
  font-size: 18px;
}

.profits .form-group .inp_gr i {
  position: absolute;
  inset-inline-end: 20px;
  top: 0;
  line-height: 56px;
  color: #000;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
}

.profits .form-group .hint {
  text-align: start;
  color: #000;
  text-align: right;
  font-size: 13px;
  font-weight: 700;
  line-height: 32px;
}

.profits .slider {
  margin-bottom: 35px;
}

.profits .slider>p {
  color: #006A62;
  text-align: right;
  font-size: 24px;
  font-weight: 500;
  line-height: 25px;
  margin: 0 0 15px;
}

.profits .result {
  display: block;
  text-align: left;
  margin-bottom: 40px;
}

.profits .result span {
  color: #006A62;
  font-size: 57px;
  font-weight: 700;
  line-height: 55px;
  display: block;
}

.profits .result span i {
  font-style: normal;
  font-size: 30px;
}

.profits .result small {
  font-size: 18px;
}

.slidecontainer p {
  color: #006A62;
  text-align: right;
  font-size: 20px;
  font-weight: 500;
  line-height: 25px;
  margin: 0 0 15px;
}


/* About
==========================*/
.about.main_section .container .row:nth-child(even){
  flex-direction: row-reverse;
  margin: 50px -15px
}
.about_cont h3 {
  margin: 0;
  font-size: 38px;
  line-height: 48px;
  font-weight: var(--bold_weg);
  color: var(--main_color);
}

.about_cont p {
  margin: 30px 0 0;
  font-size: 20px;
  line-height: 40px;
  color: var(--black_color);
}

.about_img {
  max-width: 440px;
  margin: auto
}
.about_img img{
  box-shadow: none;
  animation: none;
}
.features {
  background: url(../images/shap_bc.png) no-repeat bottom center;
  background-size: cover;
}

.features .section_title {
  text-align: start;
  margin-bottom: 25px;
}

.feat_item {
  margin: 35px auto 0;
  text-align: start;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  cursor: pointer;
}

.feat_item svg {
  width: 80px;
  height: 80px;
  margin: 0;
  margin-inline-end: 25px;
  object-fit: contain;
  background-color: var(--main_color);
  border-radius: 25px;
  padding: 16px;
}
.feat_item svg.custom path{
  fill: transparent;
}
.feat_item h3 {
  font-weight: var(--bold_weg);
  font-size: 20px;
  color: var(--main_color);
  margin: 0px auto 10px;
}

.feat_item p {
  margin: 0;
  font-size: 16px;
  max-width: 370px;
  line-height: 25px;
}

.feature_img {
  margin-top: 35px;
  width: 100%;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0px 10px 30px 0px rgba(78, 76, 76, 0.2);
  animation: moveUpDown 5s linear infinite;
}

.why_cont {
  text-align: start;
  padding-top: 40px;
}

.why_cont h3 {
  font-size: 36px;
  font-weight: var(--bold_weg);
  color: var(--main_color);
  margin: 0;
}

.why_cont p {
  font-size: 22px;
  line-height: 40px;
  margin: 30px 0 25px;
}

.why_cont .link i {
  margin-inline-end: 5px;
}

.why_items {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.why_item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: 18px;
  font-weight: var(--bold_weg);
  flex-direction: column;
  text-align: center;
  padding: 40px 30px;
  border-radius: 15px;
  background-color: #ffffff;
  box-shadow: 0px 10px 40px 0px rgba(78, 76, 76, 0.1);
  margin: 30px auto 0;
  min-height: 250px;
  transition: 0.4s linear all;
}


.why_item img {
  display: block;
  margin: auto auto 25px;
  transform: translateY(20px);
  transition: 0.4s linear transform;
}

.why_item h3 {
  margin: 0;
  font-size: 18px;
  color: var(--main_color);
  transform: translateY(20px);
  transition: 0.4s linear transform;
  font-weight: var(--bold_weg);
}
.why_item p {
  margin: 0;
  font-size: 14px;
  color: var(--black_color);
  transform: translateY(40px);
  transition: 0.4s linear all;
  font-weight: var(--bold_weg);
  opacity: 0;
}
.why_item:hover img ,
.why_item:hover h3 {
   transform: translateY(0px);
}
.why_item:hover p {
  opacity :1;
   transform: translateY(20px);
}

.team_item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: 18px;
  font-weight: var(--bold_weg);
  flex-direction: column;
  text-align: center;
  padding: 25px;
  border-radius: 15px;
  background-color: #ffffff;
  box-shadow: 0px 10px 40px 0px rgba(78, 76, 76, 0.1);
  margin: 15px;
  transition: 0.4s linear all;
}


.team_item img {
  display: block;
  margin: auto auto 25px;
  border-radius: 15px;
  width: 240px;
}

.team_item h3 {
  margin: 0 0 15px;
  font-size: 20px;
  color: var(--main_color);
  font-weight: var(--bold_weg);
}
.team_item p {
  margin: 0;
  font-size: 18px;
  color: var(--black_color);
  font-weight: var(--bold_weg);
}

/* Pacakge 
========================*/
.package_item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: 18px;
  font-weight: var(--bold_weg);
  flex-direction: column;
  text-align: center;
  padding: 40px 30px;
  border-radius: 15px;
  background-color: #ffffff;
  box-shadow: 0px 10px 40px 0px rgba(78, 76, 76, 0.1);
  margin: 30px auto 0;
  min-height: 220px;
  transition: 0.4s linear all;
}

.package_item:hover {
  transform: translateY(-10px)
}

.package_item h3 {
  font-weight: var(--bold_weg);
  font-size: 20px;
  color: var(--main_color);
  margin: 0px auto 15px;
}

.package_item p {
  margin: 0 0 15px;
  font-size: 14px;
  max-width: 370px;
  line-height: 25px;
}

.package_item img {
  margin: auto auto 25px;
  background-color: var(--second_color);
  padding: 15px;
  border-radius: 15px;
}

.package_item .link {
  min-width: 150px;
}

/* Count
=========================*/
.counter_box {
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}



.count .section_title {
  color: #fff;
}

.count .row {
  position: relative;
}

.count_item {
  color: var(--main_color);
  margin: 25px auto;
  display: inline-flex;
  align-items: center;
  text-align: center;
}

.count_item .num {
  font-size: 58px;
  line-height: 70px;
  font-weight: var(--bold_weg);
  letter-spacing: 2px;
  padding-inline-end: 25px;
  margin-inline-end: 25px;
  color: var(--second_color);
}

.count_item .cont {
  font-size: 18px;
}

.count_item .cont span {
  display: block;
  font-size: 38px;
  font-weight: var(--bold_weg);
  margin-bottom: 5px;
}
.blogs{
  background-color: #f8f8f8
}

/* Faqs
=========================*/
.accordion .card {
  position: relative;
  margin: 25px auto 0;
  border: 1px solid #f1f1f1 !important;
  border-radius: 10px !important;
  overflow: hidden;
}

.accordion .card .card-body {
  padding: 25px;
  border-radius: 0 0 10px 10px;
  text-align: start;
  font-size: 18px;
  line-height: 30px;
}

.accordion .card .card-header {
  position: relative;
  line-height: 30px;
  padding: 20px;
  text-align: start;
  display: block;
  font-weight: var(--weight_bold);
  font-size: 16px;
  color: var(--main_color);
  background-color: #fff;
  border-radius: 10px 10px 0 0 !important;
  border-bottom: 1px solid #f1f1f1;
}

.accordion .card .card-header button {
  display: block;
  background-color: transparent;
  width: 100%;
  text-align: start;
  color: var(--main_color);
  font-size: 18px;
  font-weight: var(--bold_weg);
  position: relative;
}

.accordion .card .card-header button::before {
  position: absolute;
  content: "\f107";
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  line-height: 30px;
  font-size: 18px;
  padding: 0;
  left: 0;
  top: 0;
  color: var(--second_color);
  -webkit-transform: rotate(-180deg);
  -moz-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  -o-transform: rotate(-180deg);
  transform: rotate(-180deg);
  -webkit-transition: 0.3s transform linear;
  -moz-transition: 0.3s transform linear;
  -ms-transition: 0.3s transform linear;
  -o-transition: 0.3s transform linear;
  transition: 0.3s transform linear;
}

.accordion .card .card-header button.collapsed::before {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
}

.accordion .card .card-collapse {
  background-color: #f8f9fe;
  width: 100%;
}

.logos_slider {
  margin-top: 70px;
}


/* Footer
=======================*/
footer {
  text-align: start;
  background: url(../images/shap_bc_top.png) no-repeat top center;
  background-size: cover;
  position: relative;
  z-index: 999;
  padding: 140px 0 30px;
}

footer .up_btn {
  width: 60px;
  height: 60px;
  line-height: 50px;
  text-align: center;
  line-height: 60px;
  border-radius: 50%;
  background-color: var(--second_color);
  display: block;
  margin: auto;
  color: #fff;
  margin-top: -30px;
  margin-bottom: 30px;
  font-size: 22px;
  transition: 0.4s linear all;
}

footer .up_btn:hover {
  background-color: var(--main_color);
}

footer img {
  width: 100%;
  max-width: 220px;
  margin: 25px 0 0;
}

footer h3 {
  font-size: 20px;
  font-weight: var(--bold_weg);
  margin: 0 0 15px;
  color: var(--main_color);
}

footer ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

footer ul li {
  min-width: 50%;
}

footer a {
  color: var(--black_color);
  font-size: 18px;
  line-height: 25px;
  margin-top: 10px;
  display: block;
}
footer a:hover {
  color: var(--second_color);
}
footer h4 {
  margin: 0 0 10px;
  font-size: 18px;
}

footer p {
  margin: 0;
  font-size: 14px;
}

.contact_link {
  margin-top: 25px;
}

.contact_link i {
  margin-inline-end: 10px;
  background-color: #a7a7a7;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  font-size: 14px;
}

.copyrights {
  margin-top: 40px;
  border-top: 1px solid #ededed;
  padding-top: 20px;
}
.social {display: block;margin-top: 15px;}

.social a {
    display: inline-block;
    margin: 0;
}
.social a img{
  margin: 0;
}
.social a:first-child img{
  background-color: #a7a7a7;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    object-fit: contain;
    padding: 5px;
}

/* Media Query
==========================*/
@media all and (max-width: 1199px) {
  .main_section .intro h3 {
    font-size: 38px;
    line-height: 40px;
  }

  .main_section .intro p {
    font-size: 23px;
    line-height: 40px;
  }

  .main_section .other img:last-child {
    margin-inline-end: -25px;
  }

  .why_item img {
    margin-top: 0
  }
}

@media all and (max-width: 991px) {
  .main_section {
    padding-top: 140px;
  }

  .main_section .intro {
    margin-bottom: 35px;
  }

  .main_section img {
    width: auto;
    margin: 25px auto;
  }

  .main_section .intro {
    text-align: center;
    padding: 0;
  }

  .main_section .other {
    right: 0;
    left: 0;
    margin: auto;
    max-width: 90%;
    bottom: -60px;
  }

  .main_section .intro h1 {
    font-size: 48px;
    line-height: 70px;
  }

  .main_section .intro h3 {
    font-size: 36px;
    line-height: 40px;
    padding: 0;
    border: 0;
  }

  .main_section .other img:last-child {
    margin-inline-end: 0
  }

  .why_items {
    margin-top: 25px;
  }


  .count_item .num {
    font-size: 48px;
    padding-inline-end: 15px;
    margin-inline-end: 15px;
  }

  .count_item .cont {
    font-size: 16px;
    text-align: start;
  }


  .why_item img ,.why_item h3 ,.why_item p{
  transform: none;
  opacity: 1;
  }

  footer img {
    margin: auto auto 25px;
  }

  footer ul {
    margin-bottom: 25px;
  }

  footer ul li {
    min-width: 33.33%
  }
}

@media all and (max-width: 767px) {
  .main_section .intro h1 {
    font-size: 32px;
    line-height: 50px;
  }

  .main_section .intro h3 {
    font-size: 28px;
    line-height: 35px;
  }

  .counter_box {
    flex-direction: column;
    align-items: flex-start;
  }

  .count_item {
    width: 100%;
    margin: 0px 0 15px;
  }

  .count_item .cont span {
    font-size: 22px;
    display: block;
    margin-inline-end: 0;
  }
  .team_wrap{
     flex-direction: column; 
  }
}

@media all and (max-width: 576px) {
  section {
    padding: 35px 0;
  }

  .main_section .other {
    bottom: 0;
    position: relative;
    width: 100%;
  }

  .main_section .other img {
    width: 121px;
  }

  .why_cont {
    padding: 0;
  }

  .why_cont h3 {
    font-size: 26px;
  }

  .why_cont p {
    margin: 15px auto;
    font-size: 18px;
    line-height: 30px;
  }

  .main_section .intro h3 {
    font-size: 32px;
    line-height: 45px;
  }

  .section_title {
    font-size: 28px;
  }


  .hint {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .count_item .num {
    font-size: 38px;
    padding-inline-end: 10px;
    margin-inline-end: 10px;
    min-width: 135px;
  }

  .count_item .cont {
    font-size: 14px;
    text-align: start;
  }

  footer ul li {
    min-width: 50%
  }
}

/* Loading
=========================*/
.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background-color: #fff;
  display: flex;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.loading img {
  width: 185px;
  animation: fadeinout 0.8s ease-in-out alternate infinite;
}

.spin {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  width: 240px;
  height: 240px;
  margin: auto;
  border: 3px solid transparent;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  border-top-color: var(--main_color);
  animation: spin 1.5s infinite linear;
}

.spin:before {
  content: "";
  border: 3px solid transparent;
  border-top-color: var(--second_color);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  top: 3px;
  left: 3px;
  right: 3px;
  bottom: 3px;
  position: absolute;
  animation: antispin 0.7s infinite linear;
}

@-webkit-keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes antispin {
  from {
    -webkit-transform: rotate;
    -moz-transform: rotate;
    -o-transform: rotate;
    transform: rotate;
  }

  to {
    -webkit-transform: rotate(-360deg);
    -moz-transform: rotate(-360deg);
    -ms-transform: rotate(-360deg);
    -o-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}

@keyframes antispin {
  from {
    -webkit-transform: rotate;
    -moz-transform: rotate;
    -o-transform: rotate;
    transform: rotate;
  }

  to {
    -webkit-transform: rotate(-360deg);
    -moz-transform: rotate(-360deg);
    -ms-transform: rotate(-360deg);
    -o-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}

@-webkit-keyframes fadeinout {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes fadeinout {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

input[type="number"] {
  border: 1px solid #ddd;
  font-size: 1.6em;
}

input[type="range"] {
  -webkit-appearance: none;
  width: 95%;
  margin: auto;
}

input[type="range"]:focus {
  outline: 0;
}

input[type="range"]:focus::-webkit-slider-runnable-track {
  background: var(--second_color);
}

input[type="range"]:focus::-ms-fill-lower {
  background: var(--second_color);
}

input[type="range"]:focus::-ms-fill-upper {
  background: var(--second_color);
}

input[type="range"]::-webkit-slider-runnable-track {
  width: 100%;
  height: 7px;
  cursor: pointer;
  animate: 0.2s;
  background: var(--second_color);
  border-radius: 25px;
  box-shadow: none;
  border: 0;
}

input[type="range"]::-webkit-slider-thumb {
  z-index: 2;
  position: relative;
  box-shadow: 0 0 0 #000;
  border: 1px solid var(--main_color);
  height: 21px;
  width: 21px;
  border-radius: 25px;
  background-color: var(--main_color);
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -7px;
}

input[type="range"]::-moz-range-track {
  width: 100%;
  height: 5px;
  cursor: pointer;
  animate: 0.2s;
  background-color: var(--main_color);
  border-radius: 1px;
  box-shadow: none;
  border: 0;
}

input[type="range"]::-moz-range-thumb {
  z-index: 2;
  position: relative;
  box-shadow: 0 0 0 #000;
  border: 1px solid var(--main_color);
  height: 18px;
  width: 18px;
  border-radius: 25px;
  background: var(--second_color);
  cursor: pointer;
}

input[type="range"]::-ms-track {
  width: 100%;
  height: 5px;
  cursor: pointer;
  animate: 0.2s;
  background: 0 0;
  border-color: transparent;
  color: transparent;
}

input[type="range"]::-ms-fill-lower,
input[type="range"]::-ms-fill-upper {
  background-color: var(--second_color);
  border-radius: 1px;
  box-shadow: none;
  border: 0;
}

input[type="range"]::-ms-thumb {
  z-index: 2;
  position: relative;
  box-shadow: 0 0 0 #000;
  border: 1px solid var(--second_color);
  height: 18px;
  width: 18px;
  border-radius: 25px;
  background: #a1d0ff;
  cursor: pointer;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}
/* Modal
=====================*/
.modal {
  z-index: 9999;
  padding: 0 !important;
}
.modal .modal-dialog {
  margin: auto;
  top: 40px;
  width: 96%;
  max-width: 540px;
  background-color: #fff;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  pointer-events: initial;
}
#blog_details .modal-dialog{
  max-width: 590px;
}
.modal .modal-body {
  padding: 25px;
  max-height: 615px;
  height: 100%;
  overflow-y: auto;
}
.modal .modal-body .login_btn {
  width: 100%;
  padding: 15px;
  max-width: 270px;
  margin: 15px auto;
  display: block;
  border: 1px solid #0c4168;
  background-color: transparent;
  color: #0c4168;
  font-weight: 600;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
.modal .modal-body .login_btn i {
  font-size: 22px;
  margin-inline-end: 15px;
}
.modal .modal-body p {
  color: var(--black_color);
  font-weight: var(--normal_weg);
  font-size: 14px;
  margin: 0;
  margin-top: 15px;
  line-height: 25px;
}
.modal .close {
  opacity: 1;
  text-shadow: none;
  position: absolute;
  left: 10px;
  top: 5px;
  color: var(--main_color);
  font-size: 28px;
}
.modal .modal_title {
  color: var(--second_color);
  font-weight: var(--bold_weg);
  font-size: 18px;
  margin-bottom: 25px;
  text-align: right;
  line-height: 25px;
  padding-inline-end: 25px;
}
.modal-backdrop.show {
  opacity: 0.75;
  z-index: 9998;
}

.modal-open {
  overflow: hidden !important;
  padding: 0 !important;
}
.form-group {
  position: relative;
  margin-bottom: 20px;
  text-align: start;
}

label {
  display: block;
  font-weight: var(--bold_weg);
  font-size: 14px;
  line-height: 30px;
  margin: 0 0 15px;
  text-align: start;
  color: var(--black_color);
}
.form-control {
  text-align: start;
  width: 100%;
  color: var(--black_color);
  background-color: #fff;
  border: 1px solid #dedede;
  margin: 0;
  padding: 0 15px;
  line-height: 45px;
  height: 45px;
  font-size: 16px;
  outline: 0;
  font-weight: 600;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
}
.form-control:hover, .form-control:focus {
  outline: 0;
  background-color: #fff;
  border: 1px solid #dedede;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
}
.blog_item{
    display: block;
    margin-top: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-weight: var(--bold_weg);
    flex-direction: column;
    text-align: center;
    padding: 15px;
    border-radius: 15px;
    background-color: #ffffff;
    box-shadow: 0px 10px 40px 0px rgba(78, 76, 76, 0.1);
    margin: 25px auto auto;
    transition: 0.4s linear all;
}
.blog_item img{
    padding: 0 !important;
    margin: 0 auto 25px;
}
.blog_item h3{
    margin: 0 0 15px;
    font-size: 16px;
    color: var(--black_color);
    font-weight: var(--bold_weg);
    line-height: 25px;
}

.blog_item a{
    display: inline-block;
    color: var(--second_color);
}