
/*-------------------------------------------------------
1. Variable
---------------------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Hind:wght@300;400;500;600;700&family=Jost:wght@100;200;300;400;500;600;700;800;900&display=swap");
:root {
  --heading-color: #120f2d;
  --bg-color: #f6f5fd;
  --body-color: #818090;
  --theme-color: #30c36e;
  --theme-color-2: #f3be1e;
  --white-color: #fff;
  --black-color: #000;
  --light-color: #EFEFEF;
  --lightgrey-color: #ccc;
  --font-1: "Font-1";
  --font-2: "Font-bold"; }

/*-------------------------------------------------------
5. Mixins 
---------------------------------------------------------*/
.hv:hover {
  background-color: var(--white-color);
  color: var(--heading-color);
  box-shadow: 0px 15px 20px 0px rgba(77, 65, 225, 0.15); }

/*-------------------------------------------------------
2. Typography 
---------------------------------------------------------*/
*, *:before, *:after {
  box-sizing: inherit; }

html, body {
  height: auto;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-size: 62.5%;
  box-sizing: border-box; }

body {
  font-family: var(--font-2);
  font-style: normal;
  color: var(--body-color);
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 2.6rem;
  -moz-osx-font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased; }
@font-face {
  font-family: "Font-1";
  src: url("../fonts/SF_Regular.ttf");
}
@font-face {
  font-family: "Font-bold";
  src: url("../fonts/Almarai-Bold.ttf");
}
@font-face {
  font-family: "Font-light";
  src: url("../fonts/Almarai-Regular.ttf");
}
a {
  color: var(--body-color); }

a,
a:active,
a:focus,
a:hover {
  outline: none;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  text-decoration: none; }

a:hover {
  color: #666; }

ul {
  margin: 0;
  padding: 0; }

li {
  list-style: none; }

h1, h2, h3, h4, h5, h6 {
  color: var(--heading-color);
  margin: 0 0 1.5rem 0;
  font-weight: 700;
  font-family: var(--font-2);
  line-height: 1.2; }

h1 {
  font-size: 48px; }

h2 {
  font-size: 36px; }

h3 {
  font-size: 30px; }

h4 {
  font-size: 22px; }

h5 {
  font-size: 18px; }

h6 {
  font-size: 14px; }

p {
  margin-bottom: 1.5rem;
  color: var(--body-color);
  line-height: 2.8rem; }

.img, img {
  max-width: 100%;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  height: auto; }

hr {
  padding: 0px;
  border-bottom: 1px solid #eceff8;
  border-top: 0px; }

label {
  color: #999;
  cursor: pointer;
  font-size: 1.4rem;
  font-weight: 400; }

*::-moz-selection {
  background: #d6b161;
  color: #fff;
  text-shadow: none; }

::-moz-selection {
  background: #555;
  color: #fff;
  text-shadow: none; }

::selection {
  background: #555;
  color: #fff;
  text-shadow: none; }

*::-moz-placeholder {
  color: #999;
  font-size: 1.4rem;
  opacity: .5; }

*::placeholder {
  color: #999;
  font-size: 1.4rem;
  opacity: .5; }

input:focus,
textarea:focus,
select:focus {
  outline: none;
  box-shadow: inherit; }

   /* bounce-animate */
.bounce-animate {
  animation-name: float-bob;
  animation-duration: 4s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  -moz-animation-name: float-bob;
  -moz-animation-duration: 2s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;
  -ms-animation-name: float-bob;
  -ms-animation-duration: 2s;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: linear;
  -o-animation-name: float-bob;
  -o-animation-duration: 2s;
  -o-animation-iteration-count: infinite;
  -o-animation-timing-function: linear;
  }

@-webkit-keyframes float-bob {
  0% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px); }
  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px); }
  100% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px); } 
}
/*-------- Scrollbar --------*/

::-webkit-scrollbar {
  width: 7px;
}

/* Track */
::-webkit-scrollbar-track {
  background:#f7f7f7; 
}
 
/* Handle */
::-webkit-scrollbar-thumb {
	background: #30c36e !important;
	border-radius:5px;
	transition:all .4s ease;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background-image: -moz-linear-gradient( 122deg, rgb(120,84,247) 0%, rgb(105,69,233) 100%);
  background-image: -webkit-linear-gradient( 122deg, rgb(120,84,247) 0%, rgb(105,69,233) 100%);
  background-image: -ms-linear-gradient( 122deg, rgb(120,84,247) 0%, rgb(105,69,233) 100%);
}
  /*---------------------------------------------------*/
/*	mouse cursor animation
/*---------------------------------------------------*/

.mouse-cursor{
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  border-radius: 50%;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  visibility: hidden;
}
.cursor-inner {
  margin-left: -3px;
  margin-top: -3px;
  width: 6px;
  height: 6px;
  z-index: 10000001;
  background-color: #f3be1e;
  -webkit-transition: width .3s ease-in-out, height .3s ease-in-out, margin .3s ease-in-out, opacity .3s ease-in-out;
  transition: width .3s ease-in-out, height .3s ease-in-out, margin .3s ease-in-out, opacity .3s ease-in-out;
}
.cursor-inner.cursor-hover {
  margin-left: -30px;
  margin-top: -30px;
  width: 60px;
  height: 60px;
  background-color: #f3be1e;
  opacity: .2;
}
.cursor-outer {
  margin-left: -15px;
  margin-top: -15px;
  width: 30px;
  height: 30px;
  border: 2px solid #f3be1e;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 10000000;
  opacity: .5;
  -webkit-transition: all .08s ease-out;
  transition: all .08s ease-out;
}
.cursor-outer.cursor-hover{
  opacity: 0;
}
.mim_tm_all_wrap[data-magic-cursor="hide"] .mouse-cursor{
	display: none;
	opacity: 0;
	visibility: hidden;
	position: absolute;
	z-index: -1111;
}
@-webkit-keyframes slide-down {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@-moz-keyframes slide-down {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slide-down {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/*-------------------------------------------------------
4. Nav css 
---------------------------------------------------------*/
.navbar .navbar-expand-lg .navbar-nav .nav-link,
.navbar .navbar-nav .nav-link {
  padding: 0;
  display: block;
  position: relative;
  transition: .3s;
  cursor: pointer;
  color: #010e2e;
  font-size: 1.6rem;
  line-height: 9rem;
  text-transform: capitalize;
  letter-spacing: .8px;
  font-family: var(--font-2);
  height: 9rem;
  margin-left: 30px; }

.navbar .navbar-expand-lg .navbar-nav .nav-item:last-child .nav-link,
.navbar .navbar-nav .nav-item:last-child .nav-link {
  margin-right: 0; }

.navbar.sticked.in .navbar-expand-lg .navbar-nav .nav-link,
.navbar.sticked.in .navbar-nav .nav-link {
  color: #010e2e; }

/*Besi Menu Settings*/
.navbar {
  z-index: 999; }

.single-head .navbar .navbar-expand-lg .navbar-nav .nav-link,
.single-head .navbar .navbar-nav .nav-link {
  color: var(--heading-color); }

.navbar.sticked.in {
  background: #fff;
  border-bottom: 1px solid var(--lightgrey-color); }

.navbar .navbar-brand .logo-display {
  display: block; }

.navbar .navbar-brand .logo-scrolled {
  display: none; }

.navbar.sticked.in .navbar-brand .logo-display {
  display: none; }

.navbar.sticked.in .navbar-brand .logo-scrolled {
  display: block; }

.navbar-nav .nav-item.active > .nav-link,
.navbar-nav .nav-item:active:focus > .nav-link,
.navbar-nav .nav-item:active > .nav-link,
.navbar-nav .nav-item:focus > .nav-link,
.navbar-nav .nav-item:hover > .nav-link {
  color: var(--theme-color); }

.navbar.sticked.in .navbar-nav .nav-item.active > .nav-link,
.navbar.sticked.in .navbar-nav .nav-item:active:focus > .nav-link,
.navbar.sticked.in .navbar-nav .nav-item:active > .nav-link,
.navbar.sticked.in .navbar-nav .nav-item:focus > .nav-link,
.navbar.sticked.in .navbar-nav .nav-item:hover > .nav-link {
  color: var(--theme-color); }

.navbar.sticked.in .navbar-nav .nav-item:hover > .nav-link {
  color: var(--theme-color); }

.nav-item.dropdown ul li:hover > a {
  color: var(--theme-color) !important; }

/*caret*/
.nav-item .caret {
  border-left: none;
  border-right: none; }

.nav-item.active .caret,
.nav-item:hover .caret {
  border-top-color: var(--theme-color); }

/*Dropdown*/
.nav-item.dropdown > .navbar-nav .nav-item .nav-link {
  padding: 0;
  line-height: 1;
  height: 4rem;
  margin-right: 0; }

.nav-item.dropdown > .navbar-nav {
  width: 250px; }

.navbar .nav-item .caret {
  margin-top: -18px;
  border-top: solid 5px var(--heading-color);
  font-size: 1.2rem;
  font-weight: 900;
  margin-left: 0px; }

.navbar.sticked.in .nav-item .caret {
  border-top: solid 5px var(--heading-color); }

.nav-item.dropdown ul li a {
  color: var(--heading-color-sec) !important; }

.navbar.sticked.in .nav-item:hover .caret {
  border-top: solid 5px var(--theme-color); }

.navbar .nav-item:hover .caret {
  border-top: solid 5px var(--heading-color); }

.navbar .nav-item.dropdown > .navbar-nav,
.navbar .nav-item.dropdown > .navbar-nav .navbar-nav {
  background: #fff;
  border-radius: 0;
  box-shadow: none;
  padding: 2rem 0rem 0rem 2rem;
  border: 1px solid #eaeaea; }

/*For topbar*/
.navbar.in {
  margin-top: 0rem; }

.single-head .navbar.in {
  margin-top: 0; }

.ttt {
  margin-left: 10rem; }
  .ttt span {
    color: var(--heading-color); }
    .ttt span i {
      margin-right: 1rem; }

/*For topbar*/

.btn-2 {
  -webkit-border-radius: 5px;
  border-radius: 5px;
  width: 150px;
  height: 4rem;
  font-weight: 500;
  font-size: 1.6rem;
  color: var(--white-color);
  background-color: var(--theme-color);
  display: inline-block;
  text-align: center;
  line-height: 4rem;
  margin-top: 25px;
  text-transform: capitalize; }
  .btn-2:hover {
    background-color: var(--white-color);
    color: var(--heading-color);
    box-shadow: 0px 15px 20px 0px rgba(77, 65, 225, 0.15); }

    .btn-3{
      -webkit-border-radius: 5px;
      border-radius: 5px;
      width: 60px;
      height: 4rem;
      font-weight: 500;
      font-size:30px;
      color:  var(--theme-color);
      background-color:var(--white-color);
      display: inline-block;
      text-align: center;
      line-height: 4rem;
      margin-top: 25px;
      margin-right: 20px;
      box-shadow: 5px 10px 20px 0px rgb(48 195 110 / 14%);
    }
/*-------------------------------------------------------
3. Theme default css 
---------------------------------------------------------*/
.fz-20 {
  font-size: 2rem;
  font-weight: 500; }

.fz-16 {
  font-size: 1.6rem; }

.fz-16-5 {
  font-size: 1.6rem;
  font-weight: 500; }

.fz-18-5 {
  font-size: 1.8rem;
  font-weight: 500; }

.fz-20-5 {
  font-size: 2rem;
  font-weight: 500; }

.l-h-1 {
  line-height: 1; }

.se-pre-con {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 999999;
  background: url(../img/logo/pre-loader.gif) center no-repeat var(--white-color);
  text-align: center; }

.height100 {
  height: 100%; }

.height100vh {
  height: 100vh; }

.bg {
  background: var(--bg-color); }

/*grid css*/
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 3rem; }

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 3rem; }

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 3rem; }

/*margins paddings*/
.pb-140 {
  padding-bottom: 14rem; }

.pd-50 {
  padding: 5rem 0; }

.de-padding {
  padding: 13rem 0; }

.de-pt {
  padding-top: 13rem; }

.de-pb {
  padding-bottom: 13rem; }

.pt-0 {
  padding-top: 0rem; }

.pt-10 {
  padding-top: 1rem; }

.pt-20 {
  padding-top: 2rem; }

.pt-30 {
  padding-top: 3rem; }

.pt-40 {
  padding-top: 4rem; }

.pt-50 {
  padding-top: 5rem; }

.pt-60 {
  padding-top: 6rem; }

.pt-70 {
  padding-top: 7rem; }

.pt-80 {
  padding-top: 8rem; }

.pt-90 {
  padding-top: 9rem; }

.pt-100 {
  padding-top: 10rem; }

.pb-0 {
  padding-bottom: 0rem; }

.pb-10 {
  padding-bottom: 1rem; }

.pb-20 {
  padding-bottom: 2rem; }

.pb-30 {
  padding-bottom: 3rem; }

.pb-40 {
  padding-bottom: 4rem; }

.pb-50 {
  padding-bottom: 5rem; }

.pb-60 {
  padding-bottom: 6rem; }

.pb-70 {
  padding-bottom: 7rem; }

.pb-80 {
  padding-bottom: 8rem; }

.pb-90 {
  padding-bottom: 9rem; }

.pb-100 {
  padding-bottom: 10rem; }

.pl-100 {
  padding-left: 10rem; }

.mt-0 {
  margin-top: 0; }

.mt-10 {
  margin-top: 1rem; }

.mt-20 {
  margin-top: 2rem; }

.mt-30 {
  margin-top: 3rem; }

.mt-40 {
  margin-top: 4rem; }

.mt-50 {
  margin-top: 5rem; }

.mt-60 {
  margin-top: 6rem; }

.mt-70 {
  margin-top: 7rem; }

.mt-80 {
  margin-top: 8rem; }

.mt-90 {
  margin-top: 9rem; }

.mt-100 {
  margin-top: 10rem; }

.mb-0 {
  margin-bottom: 0; }

.mb-10 {
  margin-bottom: 1rem; }

.mb-20 {
  margin-bottom: 2rem; }

.mb-30 {
  margin-bottom: 3rem; }

.mb-40 {
  margin-bottom: 4rem; }

.mb-50 {
  margin-bottom: 5rem; }

.mb-60 {
  margin-bottom: 6rem; }

.mb-70 {
  margin-bottom: 7rem; }

.mb-80 {
  margin-bottom: 8rem; }

.mb-90 {
  margin-bottom: 9rem; }

.mb-100 {
  margin-bottom: 10rem; }

.mb-130 {
  margin-bottom: 13rem; }

.mr-70 {
  margin-right: 7rem; }

.pos-rel {
  position: relative;
  z-index: 1; }

 button.theme-btn {
    transition: all .4s ease;
} 
.theme-btn {
  padding: 2rem 3.5rem;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  font-size: 1.6rem;
  font-weight: 500;
  transition: all .4s ease;  
  line-height: 1;
  color: var(--white-color);
  background-color: var(--theme-color);
  display: inline-block; }
  .theme-btn:hover {
    background-color: var(--white-color);
    color: var(--heading-color);
    box-shadow: 0px 15px 20px 0px rgba(77, 65, 225, 0.15); }

/*theme title*/
.site-title {
  margin-bottom: 5rem;
  margin-top: -1rem; }

/*Container Width*/
@media (min-width: 1400px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1194px; } }
/*Scroll top css */
#scrtop {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  font-size: 18px;
  outline: none;
  background-color: var(--theme-color);
  color: var(--theme-color-2);
  cursor: pointer;
  padding: 15px;
  border-radius: 4px;
  line-height: 1; }

#scrtop:hover {
  background-color: var(--heading-color); }

/*-------------------------------------------------------
4. Hero css 
---------------------------------------------------------*/
.hero-single {
  padding-top: 28vh;
  padding-bottom: 42vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat; }
  .hero-single .hero-shape {
    position: absolute;
    bottom: 0;
    width: 100%;
    z-index: -1; }
    .hero-single .hero-shape img {
      width: 100%;
      object-fit: cover; }

.hero-single.home-2 {
  padding-top: 0vh;
  padding-bottom: 0vh;
  height: 110vh; }
  .hero-single.home-2 .hero-content {
    background-position: bottom center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%; }
    .hero-single.home-2 .hero-content p {
      padding-right: 9rem; }
  .hero-single.home-2 .hro-btn {
    justify-content: flex-start; }

/*Hero Content*/
.top-title {
  font-size: 2rem;
  line-height: 3.542;
  color: var(--theme-color); }

.hero-content h2 {
  font-size: 4rem;
  line-height: 1.5;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 3.5rem;
  font-family: var(--font-1);
  letter-spacing: 3px;
}
.hero-content p {
  font-size: 18px;
  line-height: 1.778;
  margin-bottom: 0; }

/*Hro Btn Css*/
.hro-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 6rem; }
  .hro-btn .theme-btn {
    margin-right: 2.5rem; }

.how-we-work {
  display: flex;
  align-items: center; }
  .how-we-work i {
    height: 5.8rem;
    width: 5.8rem;
    line-height: 5.8rem;
    border: 1px solid var(--theme-color);
    text-align: center;
    color: var(--theme-color);
    font-size: 1.6rem;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
    padding-left: 5px; }
  .how-we-work .how-txt {
    font-size: 1.6rem;
    color: var(--heading-color);
    font-weight: 500;
    line-height: 1; }

/*-------------------------------------------------------
7. Feature css
---------------------------------------------------------*/
.feature-area {
  margin-top: -26rem; }

/* .feature-wpr {
  padding: 9rem 3rem;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  background-color: var(--white-color);
  -webkit-box-shadow: 0px 25px 70px 0px rgba(152, 152, 153, 0.25);
  box-shadow: 0px 25px 70px 0px rgba(152, 152, 153, 0.25); 
} */
.feature-wpr .feature-box{
  border: 1px solid #ededed;
  padding: 20px 30px 20px 10px;
  margin-left: 20px;
  border-bottom: 3px solid #f3be1e;
  border-radius: 8px;
  -webkit-box-shadow: 0px 25px 70px 0px rgba(152, 152, 153, 0.25);
  box-shadow: 0px 25px 70px 0px rgba(152, 152, 153, 0.25); 
}

.feature-box .feature-icon {
  margin-top: 2rem;
  float: right;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #eee;
  width: 70px;
  height: 70px;
  margin-right: -65px;
  text-align: center;
 }
 .feature-box .feature-icon img{
  width: 23px;
  text-align: center;
  padding: 20px 0;
 }
.feature-box .feature-info{
  padding-right: 20px;
  margin-top: 22px;
}
.feature-box h5 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 11px;
}
.feature-box p{
  font-size: 15px;
}

/*-------------------------------------------------------
8. About css
---------------------------------------------------------*/
.about-wpr.grid-2 {
  grid-gap: 7rem; }

.about-sub-title {
  display: block;
  margin-bottom: 1.6rem;
  font-size: 1.6rem;
  color: var(--theme-color); }
  
.site-title span.about-sub-title {
    padding-top: 5rem;
}
.about-title {
  font-size: 34px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 3.5rem; }

.about-sub-title.wh,
.about-title.wh {
  color: var(--white-color); }

.about-left .about-img img {
  width: 100%;
  object-fit: cover; }

.about-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 50px;
}
  .about-right p {
    font-size: 1.6rem;
    margin-bottom: 5.2rem; }

.about-padding-right {
  padding-right: 40rem; }

.fun-fact {
  text-align: center; }
  .fun-fact:first-child .fun-icon {
    border: 2px solid #4d41e1; }
  .fun-fact:nth-child(2) .fun-icon {
    border: 2px solid #ff884e; }
  .fun-fact:nth-child(3) .fun-icon {
    border: 2px solid #38c1eb; }
    
  .fun-fact .fun-icon {
    height: 8.8rem;
    width: 8.8rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    margin: 0 auto; }
    .fun-fact .fun-icon img {
      display: block;
      margin-bottom: 1.6rem; }
    .fun-fact .fun-icon .timer {
      font-size: 2.4rem;
      font-weight: 400;
      position: relative;
      z-index: 1;
      display: inline-block;
      padding-right: 1.6rem;
      color: var(--heading-color);
      margin-bottom: 0; }
      .fun-fact .fun-icon .timer::before {
        position: absolute;
        z-index: -1;
        content: '+';
        right: 0;
        top: 50%;
        font-size: 2.4rem;
        -webkit-transform: translate(0, -50%);
        transform: translate(0, -50%);
        color: currentColor; }
  .fun-fact .fun-desc {
    margin-top: 1.6rem; }
    .fun-fact .fun-desc .medium {
      font-size: 1.6rem; }
      .fun-fact:first-child .medium{
        color: #4d41e1;
      }
      .fun-fact:nth-child(2) .medium {
        color: #ff884e; }
      .fun-fact:nth-child(3) .medium {
       color: #38c1eb; }
.about-2-right p {
  font-size: 1.6rem;
  line-height: 1.625;
  padding-right: 5rem; }

.about-2-wpr.grid-2 {
  grid-gap: 13rem; }

.about-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
  line-height: 1;
  color: var(--heading-color);
  font-size: 1.6rem; }
  .about-list li:last-child {
    margin-bottom: 0; }
  .about-list li i {
    font-size: 2.6rem; }
  .about-list li:first-child i {
    color: #4d41e1; }
  .about-list li:nth-child(2) i {
    color: #ff9561; }
  .about-list li:nth-child(3) i {
    color: #3dc3ec; }

.as .about-right p {
  padding-right: 3rem; }

/*-------------------------------------------------------
10. What We do css 
---------------------------------------------------------*/
.what-area {
  position: relative; }
  .what-area.what-page::before {
    display: none; }
  .what-area::before {
    position: absolute;
    content: '';
    z-index: -1;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: -moz-linear-gradient 90deg, #1800ff 0%, #8b7fff 35%, #fefefe 60%;
    background-image: -webkit-linear-gradient(90deg, #1800ff 0%, #8b7fff 35%, #fefefe 60%);
    background-image: -ms-linear-gradient(90deg, #1800ff 0%, #8b7fff 35%, #fefefe 60%);
    opacity: 0.051; }

.what-box {
  padding: 4rem 3rem;
  background-color: var(--white-color);
  box-shadow: 0px 25px 70px 0px rgba(152, 152, 153, 0.25); }
  .what-box .what-icon {
    margin-bottom: 3rem; }
  .what-box .what-info h5 {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 2rem; }
  .what-box .what-info p {
    line-height: 1.778;
    margin-bottom: 2.5rem; }

.what-btn {
  font-size: 16px;
  text-decoration: underline;
  line-height: 2;
  display: inline-block; }

.what-footer {
  text-align: center; }
  .what-footer h5 {
    font-weight: 400;
    color: #6b6a75; }
    .what-footer h5 a {
      color: var(--theme-color);
      text-decoration: underline; }

/*-------------------------------------------------------
11. What We do css 
---------------------------------------------------------*/
.faq-wpr.grid-2 {
  grid-gap: 13rem; }

.faq-padding-left {
  padding-left: 36rem;
  margin-top: 5rem; }

.faq-right .faq-pic {
  text-align: right; }
  .faq-right .faq-pic img {
    width: 100%;
    object-fit: cover; }

.accordion-item {
  margin-bottom: -1px;
  background-color: #fff;
  border: 1px solid #f6f5ff; }

.accordion-item:not(last-child) {
  margin-bottom: 3rem; }

.accordion-button {
  padding: 2.5rem 2rem;
  font-size: 1.8rem;
  color: var(--heading-color);
  background-color: var(--bg-color);
  font-weight: 500; }

.accordion-button::after {
  width: 1.25rem;
  height: 1.25rem;
  margin-right: auto;
  font-family: 'Font Awesome\ 5 Free';
  content: "\f067";
  /* FontAwesome Unicode */
  font-weight: 900;
  background-image: inherit;
  font-size: 1.4rem; }

.accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
  background-image: inherit;
  font-family: 'Font Awesome\ 5 Free';
  content: "\f068";
  /* FontAwesome Unicode */
  font-weight: 900;
  font-size: 1.4rem; }

.accordion-button:not(.collapsed) {
  border: none; }

.accordion-button:not(.collapsed) {
  color: var(--heading-color);
  background-color: var(--white-color);
  box-shadow: none; }

.accordion-item:first-of-type .accordion-button {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px; }

.accordion-button:focus {
  z-index: 3;
  border: none;
  outline: 0;
  box-shadow: none; }

.accordion-body {
  padding: 0rem 3rem 3rem 3rem; }
  .accordion-body p {
    font-size: 1.6rem; }

.faq-2-left {
  padding-right: 10rem; }
  .faq-2-left img {
    width: 100%;
    object-fit: cover; }

/*-------------------------------------------------------
13. Work css
---------------------------------------------------------*/
.work-wpr .work-grid-1 {
  display: grid;
  grid-template-columns: 48.75% 23% 23%;
  grid-auto-rows: auto;
  grid-gap: 3rem; }
.work-wpr .work-pic {
  position: relative;
  z-index: 1;
  overflow: hidden; }
  .work-wpr .work-pic .work-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    -webkit-transform: rotateX(90deg);
    transform: rotateX(90deg);
    -webkit-transition: all .7s ease;
    transition: all .7s ease; }
    .work-wpr .work-pic .work-overlay a i {
      width: 4.8rem;
      height: 4.8rem;
      line-height: 4.8rem;
      text-align: center;
      border: 1px solid var(--white-color);
      font-size: 2.4rem;
      -webkit-border-radius: 50%;
      border-radius: 50%;
      display: inline-block;
      color: var(--white-color); }
    .work-wpr .work-pic .work-overlay::before {
      position: absolute;
      content: '';
      height: 100%;
      width: 100%;
      -webkit-border-radius: 5px;
      border-radius: 5px;
      background-color: #4d41e1;
      opacity: 0.6;
      z-index: -1; }
  .work-wpr .work-pic img {
    width: 100%;
    object-fit: cover;
    -webkit-border-radius: 5px;
    border-radius: 5px; }

.work-pic:hover .work-overlay {
  -webkit-transform: rotateX(0deg);
  transform: rotateX(0deg); }

.case-box {
  -webkit-border-radius: 5px;
  border-radius: 5px;
  -webkit-box-shadow: 0px 15px 20px 0px rgba(172, 172, 172, 0.15);
  box-shadow: 0px 15px 20px 0px rgba(172, 172, 172, 0.15);
  overflow: hidden; }
  .case-box .case-info {
    padding: 3.5rem;
    text-align: center; }

.case-btn {
  text-align: center; }
  .case-btn .what-btn {
    font-weight: 600;
    color: var(--theme-color); }

.w-title {
  margin-bottom: 3rem;
  font-weight: 500;
  padding-bottom: 2rem;
  border-bottom: 1px solid #eaeaea; }

.work-single-title-s {
  font-weight: 400; }

.work-single-title {
  font-weight: 500; }

.w-title-list {
  display: flex;
  flex-direction: column;
  gap: 2rem; }

/*-------------------------------------------------------
7. Service css
---------------------------------------------------------*/
.service-area {
  background-position: top left;
  background-size: cover;
  background-repeat: no-repeat;
  padding-bottom: 23rem; }

.feature-service {
  margin-top: -23rem; }
  .feature-service .feature-info .what-btn {
    color: #6b6a75; }

.service-single-text .su {
  font-size: 1.6rem;
  color: var(--theme-color);
  margin-bottom: 3rem;
  display: block;
  line-height: 1; }
.service-single-text .service-single-title {
  font-size: 3rem; }
.service-single-text .service-option li {
  display: flex;
  gap: 3rem;
  align-items: baseline;
  margin-bottom: 3rem; }
  .service-single-text .service-option li:last-child {
    margin-bottom: 0; }
  .service-single-text .service-option li .service-txt h5 {
    font-weight: 500; }

/*-------------------------------------------------------
20. Footer css 
---------------------------------------------------------*/
footer {
  position: relative;
  background-image: url(../img/footer/footer-bg.png);
  background-position: top;
  background-size: cover;
  position: relative;
  padding: 100px 0 0;
 }
 footer .footer-widget{
  padding: 150px 0 0;
 }

.footer-widget-title {
  margin-bottom: 4rem;
  text-transform: capitalize;
  font-weight: 500; }

/*About Us*/
.footer-widget-box.ab-us div {
  margin-bottom: 3rem;
  line-height: 1; }


.adr {
  display: flex;
  flex-direction: column;
  gap: 8px; }

/*footer list*/
.footer-list {
  display: flex;
  flex-direction: column;
  gap: 2rem; }
  .footer-list li a:hover {
    color: var(--theme-color-2); }

/*footer Gallery*/
.foter-img.grid-2 {
  grid-gap: 1.5rem; }
  .foter-img.grid-2 img {
    width: 100%;
    object-fit: cover;
    -webkit-border-radius: 5px;
    border-radius: 5px; }

/*footer copyright*/
.copyright {
  padding: 0 0 6rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between; }
  .copyright p {
    margin-bottom: 0;
    text-transform: capitalize;
    color: var(--heading-color); }

/*footer social*/
.footer-social {
  display: flex;
  align-items: center;
  gap: 1.5rem; }

.footer-social li a i {
  font-size: 1.8rem;
  height: 4rem;
  width: 4rem;
  line-height: 4rem;
  text-align: center;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  border: 1px solid var(--theme-color);
  color: var(--theme-color); }
  .footer-social li a i:hover {
    background-color: var(--theme-color);
    color: var(--white-color); }

/*White balance*/
.footer-widget-box p,
.footer-widget-box ul li a,
.foo-widget-title,
.re-post-desc h6,
.re-post-desc p {
  color: var(--body-color); }

.footer-widget-box.ab-us p,
.footer-widget-box ul li a,
.footer-contact p,
.copyright p,
.footer-widget-box.ab-us a {
  font-size: 1.8rem;
  font-family: var(--font-2); }

.footer-2 .footer-widget-wrapper .footer-widget-box.ab-us {
  padding-right: 4rem; }
  .footer-2 .footer-widget-wrapper .footer-widget-box.ab-us p {
    padding-right: 0; }
.footer-2 .footer-widget-wrapper .adr {
  gap: 12px;
  margin-bottom: 4rem; }
.footer-2 .copyright {
  justify-content: center; }

/*-------------------------------------------------------
16. Subscribe css
---------------------------------------------------------*/
.contact-page-info.grid-2 {
  grid-gap: 13rem; }

.contact-left h2 {
  line-height: 5.5rem; }

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem; }
  .contact-list li h5 {
    line-height: 1;
    margin-bottom: 1rem; }
	.form-control{
		font-size:16px !important;
	}
.form-control:focus {
    box-shadow: none;
    border: 1px solid #120F2D;
}

/* --------------- download app */
.download{
  background-position: center;
  background-size: cover;
  position: relative;
  padding: 55px 0 50px;
  height: auto;
  position: relative;
  z-index: 0;
}
.download .overlay{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 60px 0;
  background: #0000007e;
  z-index: 1;
  height: 100%;
}

.download-wpr .download-contain {
  padding: 40px 40px 40px 0 ;
  text-align: right;

}
.download-wpr .download-contain h2{
  font-size: 22px;
  width: 70%;
  margin-bottom: 15px;
}
.download-wpr .download-contain img{
  width: 160px;
  margin-top: 5px;
  margin-left: 10px;
}
.download-wpr .download-image img{
  width: 85%;
  height: auto;
  margin-top: -48px;
}

/* ================================================== Login-page =========================================== */
.page-main{
  /* background-image: url(../img/bg/4.gif);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat; */
  background: var(--white-color);
  position: relative;
  height: 100vh !important;
}
.page-content{
  position: relative;
  padding: 40px 17% 55px;
  height: 100vh;
}
.login-content{
  background: #62ba87;
  margin: 0px 0px;
  border-radius: 8px;
  /* border: 1px solid #62ba87; */
  -webkit-box-shadow: 0px 15px 20px 0px rgba(77, 65, 225, 0.15);
  box-shadow: 0px 15px 20px 0px rgba(77, 65, 225, 0.15);
  border: 1px solid #eee;
}
.login-section .login-media-row {
  /* background-color: #ffffff54; */ 
  display: block;
  align-items: center;
  justify-content: center;
  border-radius: 0 8px 8px 0;
  /* border-right: 1px solid #62ba87; */
  border-left: 2px solid #ffffff;
}

.login-detail {
  padding: 30px 25px 20px 20px;
  border-radius: 10px;  
}
.login-detail .login-logo {
  text-align: center;
  border-bottom: 1px solid #efefef;
  padding-bottom: 30px;
  margin-bottom: 15px;
}
.login-detail .login-logo img{
    margin: 0px auto 10px;
    width: 150px;
    height: auto;
}
.login-detail .login-detail-inner {
  padding: 20px 20px;
}
.login-detail .login-detail-inner .login-title span{
  font-size: 19px;
  display: block;
  margin-bottom: 18px;
  font-weight: 500;
  color: #ffffff;
}
.login-detail .login-detail-inner .login-title span.otp{
  margin-bottom: 5px;
}
.login-detail .login-detail-inner .login-title p{
  margin-bottom: 40px;
  color: #fbfbfb;
  font-size: 16px;
}
.login-detail .login-detail-inner input{
  text-align: right;
    height: 50px;
    border-radius: 11px;
}
.login-detail .login-detail-inner .site-button{
  outline: none;
  color: #fff;
  padding: 11px 30px;
  border-radius: 10px;
  width: 100%;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background-color: #ffffff;
  border: none;
  font-size: 16px;
  font-weight: 600;
  color: rgb(98 186 135) !important;
  transition: all 0.3s ease !important;
  text-shadow: 0 0 0 #fff, 400px 0 0 #fff;
  margin-top: 10px;
  text-align: center;
}
.login-content .login-background img{
  margin-top: 45px;
}
.login-content .otp-input input{
  border: 1px solid #eee;
  background: #ffffff3b;
  width: 60px;
  margin-left: 15px;
}
.login-content .login-form p{
  color: #fff;
  font-size: 16px;
  margin-top: 20px;
}
.login-content .login-form .login-p{font-size: 14px;}
.login-content .login-form .login-p a{
  color: #f3be1e;
  font-size: 15px;
}
.avatar-upload {
	position: relative;
	max-width: 120px;
	margin: 15px auto;
  }
  .avatar-upload .avatar-edit {
	position: absolute;
	right: 12px;
	z-index: 1;
	top: 10px;
  }
  .avatar-upload .avatar-edit input {
	display: none;
  }
  .avatar-upload .avatar-edit input + label {
	display: inline-block;
	width: 34px;
	height: 34px;
	margin-bottom: 0;
	border-radius: 100%;
	background: #FFFFFF;
	border: 1px solid transparent;
	box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.12);
	cursor: pointer;
	font-weight: normal;
	transition: all 0.2s ease-in-out;
  }
  .avatar-upload .avatar-edit input + label:hover {
	background: #f1f1f1;
	border-color: #d6d6d6;
  }
  .avatar-upload .avatar-edit input + label:after {
    font-family: 'IcoFont';
    content: "\ec55";
	color: #757575;
	position: absolute;
  top: 4px;
  left: 0;
  right: 0;
  text-align: center;
  margin: auto;
  font-size: 21px;
  }
  .avatar-upload .avatar-preview {
	width: 130px;
	height: 130px;
	position: relative;
	border-radius: 100%;
	border: 6px solid #F8F8F8;
	box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
  }
  .avatar-upload .avatar-preview > div {
    width: 70%;
    height: 70%;
    margin: 20px auto;
    border-radius: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }
  .register-inner p{
    margin-bottom: 5px !important;
  }
/* ============================ ltr-style */
[dir="ltr"] .navbar .navbar-expand-lg .navbar-nav .nav-link,
[dir="ltr"] .navbar .navbar-nav .nav-link{
  margin-right: 30px;
  margin-left: 0;
}
[dir="ltr"] .navbar .navbar-expand-lg .navbar-nav .nav-item:last-child .nav-link, 
[dir="ltr"] .navbar .navbar-nav .nav-item:last-child .nav-link {
  margin-right: 30px;
}
[dir="ltr"] .hro-btn .theme-btn {
  margin-right: 0;
  margin-left: 2.5rem;
}
[dir="ltr"] .hro-btn .theme-btn i{
  float: left;
  padding-right: 3px;
}
[dir="ltr"] .feature-wpr .feature-box{
  margin-left: 0px;
  margin-right: 20px;
  padding-left: 30px;
  padding-right: 10px;
}
[dir="ltr"] .feature-box .feature-icon{
  float: left;
  margin-right: 0;
  margin-left: -65px;
}
[dir="ltr"] .feature-box .feature-info{
  padding-left: 20px;
  margin-right: 0;
}
[dir="ltr"] .download-wpr .download-contain{
  text-align: left;
}
[dir="ltr"] .accordion-button::after{
  margin-right: 0;
  margin-left: auto;
}
[dir="ltr"] .login-section .login-media-row{
  border-right: 2px solid #62ba87;
  border-left: none;
}
[dir="ltr"] .btn-3{
  margin-left: 20px;
  margin-right: 0;
}
