:root {
  /* --primaryColor: #000140; #03a6e4 #E86363; #f35c27; #2185f5 */
  --primaryColor: #0407d8; 
  --secondaryColor: rgb(9, 26, 54);
  --whatsapp: #075e54;
  --body_bg: #f7f9fa;
  --bg: #172F3E;
  --poppins: "Poppins", sans-serif;
  --animate-duration: 1s;
  --animate-delay: 1s;
  --animate-repeat: 1;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html,
body {
  color: #212226;
  outline: none;
  font-family: var(--poppins);
  overflow-x: hidden;
}

p {
  font-family: var(--poppins);
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
}
a {
    text-decoration: none;
    color: inherit;
}
ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
img {
    max-width: 100%;
    height: auto;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
}
.relative {
  position: relative;
}
.clear:after,
.clear:before {
  content: "";
  display: table;
  clear: both;
}
.btn_stylish {
  text-decoration: none;
  border-radius: 30px;
  color: var(--secondaryColor);
  border: 2px solid var(--secondaryColor);
  padding: 9px 42px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.25px;
  background-color: transparent;
  display: inline-block;
  transition: all ease 0.5s;
  margin-top: 15px;
  outline: none;
}
.btn_stylish:hover {
  background-color: var(--secondaryColor);
  color: #fff;
}
.btn_style {
  text-decoration: none;
  color: #fff;
  background-color: var(--primaryColor);
  border: 2px solid var(--primaryColor);
  border-radius: 30px;
  outline: none;
  padding: 12px 42px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.25px;
  display: inline-block;
  transition: all ease 0.5s;
  margin-top: 15px;
}
.btn_style:hover {
  color: #fff;
  background-color: var(--secondaryColor);
  border: 2px solid var(--secondaryColor);
}

/* =====================================
                Top Bar
===================================== */
.hero_abs {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgb(33 37 41 / 40%);
}
.top_bar {
  color: #8a99c0;
  background-color: var(--secondaryColor);
}
.container_width {
  width: 1170px;
  margin: 0 auto;
  max-width: 90%;
}
.navbar {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0 10px;
}
.navbar_nav {
  display: flex;
  flex-direction: row;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.navbar_nav li {
  padding-right: 15px;
}
.navbar_nav li a {
  outline: none;
  text-decoration: none;
  color: #8a99c0;
}
.navbar_nav li i {
  color: #bec4cb;
  padding-right: 10px;
  outline: none;
}
.header {
  background-color: rgb(122 145 192 / 90%);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  transition: all 0.5s ease-in-out;
  box-shadow: 0px 3px 14px 0 rgb(0 0 0);
}
/* Header for Home Page */
.header_nav {
  list-style-type: none;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
}
.header_nav > li {
  position: relative;
}
.header_nav > li a {
  position: relative;
  color: #fff;
  text-decoration: none;
  margin: 10px;
  font-size: 18px;
  font-weight: 600;
  outline: none;
  transition: all 0.5s ease-in-out;
}
.header_nav > li a:hover {
  color: var(--primaryColor);
}
.header_nav > li a.active {
  color: var(--primaryColor) !important;
}
.header_nav > li a.contact_menu {
  border: 2px solid var(--primaryColor);
  padding: 10px 20px;
  border-radius: 50px;
  background-color: var(--primaryColor);
  color: #fff !important;
  text-decoration: none;
}
.header_nav > li a.contact_menu:hover {
  color: var(--primaryColor);
  background-color: transparent;
  border: 2px solid var(--primaryColor);
}
.header_nav > li a.active::before {
  transform: scaleX(1);
  transform-origin: bottom left;
}
.header_nav > li a::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: var(--primaryColor);
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.5s ease-out;
}
.header_nav > li a:hover::before {
  transform: scaleX(1);
  transform-origin: bottom left;
}
.header_nav > li a.contact_menu:hover::before {
  transform: scaleX(0);
}
.header_nav > li a i {
  font-size: 16px;
}
.header_nav > li a.white {
  color: white;
}
.header_nav > li a.primary {
  color: var(--primaryColor);
}
.header_nav .subnav {
  display: none;
  position: absolute;
  top: 26px;
  left: 0;
  list-style-type: none;
  padding: 16px 0px;
  width: 300px;
  background: #fff;
  z-index: 99999;
  border-radius: 16px;
  box-shadow: 10px 10px 28px 0px rgb(44 67 113 / 15%);
  transition: all 0.75s ease-in-out;
}

.header_nav .subnav li {
  padding: 5px 0;
}
.header_nav .subnav li a {
  color: #000 !important;
  margin: 0 20px;
  font-size: 16px;
  padding: 0;
}
.header_nav .subnav li a:hover {
  color: var(--primaryColor) !important;
}

/* Header for Other Pages */
.header_nav_again {
  list-style-type: none;
  display: flex;
  align-items: center;
  margin: 0;
}
.header_nav_again > li {
  position: relative;
}
.header_nav_again > li a {
  position: relative;
  color: #000;
  text-decoration: none;
  margin: 10px;
  transition: all 0.25s ease;
  font-size: 18px;
  font-weight: 600;
  outline: none;
  transition: all 0.5s ease-in-out;
}
.header_nav_again > li a.active {
  color: var(--primaryColor) !important;
}
.header_nav_again > li a.contact_menu {
  border: 2px solid var(--primaryColor);
  padding: 10px 20px;
  border-radius: 50px;
  background-color: var(--primaryColor);
  color: #fff !important;
  text-decoration: none;
}
.header_nav_again > li a.contact_menu:hover {
  color: var(--primaryColor) !important;
  background-color: transparent;
}
.header_nav_again > li a.active::before {
  transform: scaleX(1);
  transform-origin: bottom left;
}
.header_nav_again > li a::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: var(--primaryColor);
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.5s ease-out;
}
.header_nav_again > li a:hover::before {
  transform: scaleX(1);
  transform-origin: bottom left;
}
.header_nav_again > li a.contact_menu:hover::before {
  transform: scaleX(0);
}
.header_nav_again > li a i {
  font-size: 16px;
}
.header_nav_again > li a.white {
  color: #fff;
}
.header_nav_again > li a.black {
  color: #000;
}
.header_nav_again > li a:hover {
  color: var(--primaryColor);
}
.header_nav_again > li a.primary {
  color: var(--primaryColor);
}
.header_nav_again .subnav {
  display: none;
  position: absolute;
  top: 26px;
  left: 0;
  list-style-type: none;
  padding: 16px 0px;
  width: 300px;
  background: #fff;
  z-index: 9;
  border-radius: 16px;
  box-shadow: 10px 10px 28px 0px rgb(44 67 113 / 15%);
  transition: all 0.75s ease-in-out;
}

.header_nav_again .subnav li {
  padding: 5px 0;
}
.header_nav_again .subnav li a {
  color: #000;
  margin: 0 20px;
  font-size: 16px;
  padding: 0;
}
.header_nav_again .subnav li a:hover {
  color: var(--primaryColor) !important;
}

.header .bar_progress {
  height: 3px;
  width: 100%;
  background-color: #fff;
  position: relative;
  z-index: 999;
  transition: all 0.5s ease-in-out;
}
.header .progressing_bar {
  height: 3px;
  width: 50%;
  background-color: var(--primaryColor);
}
.top_hero video {
    overflow: hidden;
    height: 100%;
    width: 100%;
    object-fit: cover;
}
@media (max-width: 1124px) {
  .header_nav li a {
    margin: 8px;
  }
}
@media (max-width: 1100px) {
  .top_bar {
    display: none;
  }
  #header {
    display: none;
  }
  .hero_content h1 {
    font-size: 105px;
    padding-bottom: 45px;
  }
  .top_hero video {
    overflow: hidden;
    /*height: 600px;*/
  }
}
/*@media (max-width: 800px) {*/
/*  .top_hero video {*/
/*    height: 500px;*/
/*  }*/
/*}*/

/* =====================================
                Hero
===================================== */
.hero {
  height: calc(100% - 61px);
  width: 100%;
  position: relative;
}
.hero_bg {
  position: relative;
  height: 100%;
  width: 100%;
  background: rgb(27 27 27 / 20%);
  /*background: url(../img/hero_bg_mobile.jpeg) no-repeat center;*/
  /*background-size: cover; */
}
.mt_top{
  margin-top: -50px !important;
}
@media (min-width: 650px) {
    .top_hero video:nth-child(2) {
        display: none;
    }
}
@media (max-width: 650px) {
    .top_hero video:nth-child(1) {
        display: none;
    }
    /*.hero_abs {*/
    /*    position: relative;*/
    /*    background: url(../img/hero_bg_mobile.jpeg) no-repeat center;*/
    /*    background-size: cover;*/
    /*}*/
}
#header .container_width {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}
.header_brand {
    color: #fff;
    display: flex;
    align-items: center;
}
.header_brand_again {
  color: var(--primaryColor);
}
.header_brand img {
    transition: all 0.5s ease;
    max-width: 250px
}
.header_brand h1 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
}
.header_mobile {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 30px 15px;
}
.header_mobile i {
  color: #fff;
  font-size: 24px;
}
.header_mobile .next i {
    color: var(--primaryColor);
}
.hero_content {
  position: absolute;
  top: 58%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: left;
  color: #fff;
  width: 80%;
}
.hero_content h1 {
  font-size: 72px;
  font-weight: 800;
  padding-bottom: 45px;
  color: #fff;
}
.hero_content p {
  font-size: 28px;
  line-height: 36px;
}
.hero_content > p {
  text-transform: uppercase;
}
.hero_content > p:nth-of-type(2) {
    padding-bottom: 30px;
}

/* .hero_content button {
  width: 100px;
  height: 100px;
  font-size: 30px;
  border: none;
  border-radius: 50%;
  color: var(--primaryColor);
  margin-top: 30px;
  transition: all 0.3s ease-in-out;
}
.hero_content button:hover {
  color: #212226;
}
.hero_content div {
  width: 70%;
  margin: 0 auto;
} */
.hero_action a {
  font-size: 24px;
}
.hero_action a i {
  font-size: 24px;
  margin-right: 10px;
}
.hero_action .btn_call {
  margin-right: 12px;
}
.btn_call {
  text-decoration: none;
  color: #fff;
  background-color: transparent;
  border: 2px solid var(--primaryColor);
  border-radius: 10px;
  outline: 0;
  padding: 12px 42px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.25px;
  display: inline-block;
  transition: all ease 0.3s;
  margin-top: 15px;
}
.btn_call:hover {
  background: var(--primaryColor);
  color: #fff;
  border: 2px solid var(--primaryColor);
}
.btn_whatsapp {
  background-color: var(--whatsapp);
  border: 2px solid var(--whatsapp);
  text-decoration: none;
  color: #fff;
  border-radius: 10px;
  outline: 0;
  padding: 12px 42px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.25px;
  display: inline-block;
  transition: all ease 0.3s;
  margin-top: 15px;
}
.btn_whatsapp:hover {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.hero_bottom {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  background: url(../img/scroll-arrow.png) no-repeat center;
  background-size: cover;
  width: 220px;
  height: 68px;
}
.hero_bottom a {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 22px;
  text-decoration: none;
}

@media (max-width: 768px){
    .header_brand img {
        max-width: 150px;
    }
}

/* =================================
           Breadcrumb
===================================== */

.breadcrumb_area {
  background-image: url("../img/breadcrumb.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 142px 0px 152px;
  z-index: 0;
}

.bg_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.7;
  /* background: #00081a; */
}

.breadcrumb_content h1 {
  color: #fff;
  font-size: 3em;
  font-weight: 700;
  margin-bottom: 0px;
}
.breadcrumb {
  margin-bottom: 0;
  background: transparent;
  padding: 0px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  max-width: 450px;
  margin: 0 auto;
  border-radius: 0px;
  padding-top: 8px;
  border-top: 1px solid var(--primaryColor);
}

.breadcrumb .breadcrumb-item a:after {
  content: "";
  width: 1px;
  height: 20px;
  background: #fff;
  display: inline-block;
  margin: 0px 10px 4px 14px;
  vertical-align: middle;
}

.breadcrumb-item {
  font-size: 1.2em;
}

.breadcrumb-item a {
  color: var(--primaryColor);
}
.breadcrumb-item.active {
  color: #959da5;
}
.breadcrumb-item + .breadcrumb-item::before {
  display: none;
}

/* =================================
              Services
==================================== */
#feature {
  background: url(../img/section-bg.png) no-repeat center;
  padding: 90px 0;
  background-size: cover;
}
.img_serve {
  padding-right: 20px;
  padding-bottom: 20px;
  position: relative;
}
.img_services:before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 78%;
  height: 20px;
  z-index: 9;
  background-color: var(--primaryColor);
}
.img_services:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 20px;
  height: 80%;
  z-index: 9;
  background-color: var(--primaryColor);
}
.carousel_service_btn {
  position: absolute;
  left: 0;
  bottom: 70px;
  width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
  background-color: var(--primaryColor);
}
.carousel_prev {
  width: 60px;
  height: 60px;
  z-index: 1;
  color: #fff;
  text-align: center;
  opacity: 1;
  transition: opacity 0.15s ease;
  background-color: var(--primaryColor);
  padding: 10px;
  border: 1px solid #fff;
  border-radius: 30px;
  margin-right: 20px;
}
.carousel_next {
  width: 60px;
  height: 60px;
  z-index: 1;
  color: #fff;
  text-align: center;
  background-color: var(--primaryColor);
  opacity: 1;
  transition: opacity 0.15s ease;
  padding: 10px;
  border: 1px solid #fff;
  border-radius: 30px;
}
.feature_content {
  display: flex;
  align-items: center;
}
.feature_content h3 {
  font-weight: 600;
  font-size: 16px;
  color: var(--primaryColor);
}
.feature_content h2 {
  font-size: 32px;
  line-height: 50px;
}
.feature_content p {
  font-size: 20px;
  color: #414042;
  line-height: 30px;
}
.feature_content div .feature_type p {
  font-size: 20px;
  color: #414042;
  margin-bottom: 0;
}
.feature_type {
  background-color: #ffffff;
  padding: 22px 25px 22px 25px;
  border-radius: 5px;
  border: 1px solid #e7e7e7;
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin: 15px 0;
  transition: all 0.5s ease;
}
.feature_type:hover {
  transform: translate(0, -8px);
  box-shadow: 3px 3px 10px rgb(0 0 0 / 10%);
}
.feature_type_icon {
  background-color: var(--primaryColor);
  color: #fff;
  font-size: 25px;
  padding: 6px;
  border-radius: 50%;
  width: 48px;
  text-align: center;
}
.feature_type_content {
  padding: 0 0 0 15px;
  width: calc(100% - 48px);
  font-weight: 600;
}
@media (min-width: 1101px) {
  .header_mobile {
    display: none;
  }
}
@media (max-width: 1100px) {
  .hero_content h1 {
    padding-bottom: 25px;
  }
  .hero_content > p:nth-of-type(2) {
    padding: 0;
  } 
  .header_mobile {
    display: flex;
  }
  .hero {
    height: 600px;
  }
  .hero_content {
    width: 90%;
  }
  .hero_content h1 {
    font-size: 32px;
    padding-bottom: 16px;
  }
  .hero_content p {
    font-size: 16px;
    line-height: 26px;
    margin: 0;
  }
}
@media (max-width: 850px) {
  
  /* .hero_content div {
    width: 100%;
  } */
  .feature_type {
    padding: 12px;
  }
  .feature_content {
    padding: 20px 15px;
  }
  .feature_content div .feature_type p {
    font-size: 16px;
  }
  .carousel_service_btn {
    bottom: 36px;
  }
}


/* =================================
          Previous Works
==================================== */
.previous_work {
  color: #fff;
  background-color: var(--bg);
  padding: 80px 0;
}
.previous_work .d-flex {
  padding: 25px 10px;
}
.previous_work h2 {
  font-size: 48px;
}
.previous_work p {
  line-height: 30px;
  font-size: 18px;
}
.working_imgs {
  padding: 20px;
  border-radius: 15px;
  height: 620px;
  background-color: #fff;
  outline: none;
}
.working_imgs img {
  width: 100%;
}
.slick-dots {
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 1.4rem 0;
  list-style-type: none;
}
.slick-dots li {
  margin: 0 0.25rem;
}

.slick-dots button {
  display: block;
  width: 0.7rem;
  height: 0.7rem;
  padding: 0;
  border: none;
  border-radius: 100%;
  background-color: #fff;
  text-indent: -9999px;
}

.slick-dots li.slick-active button {
  background-color: #555;
}

@media (max-width: 767px) {
  .working_imgs {
    height: 254px;
  }
}
/* =====================================
        YouTube Testimonials
===================================== */
/*.works {*/
/*  padding: 60px 0;*/
/*  background-color: var(--body_bg);*/
/*}*/
/*.work_top {*/
/*  position: relative;*/
/*}*/
/*.work_top h2 {*/
/*  font-size: 20px;*/
/*  font-weight: 800;*/
/*  margin-top: 0;*/
/*  margin-bottom: 18px;*/
/*  line-height: 29px;*/
/*  position: relative;*/
/*  overflow: hidden;*/
/*  text-align: left;*/
/*}*/
/*.work_top h2 span {*/
/*  font-size: 1em;*/
/*  font-weight: 700;*/
/*  text-transform: uppercase;*/
/*}*/
/*.work_top h2 > *:before {*/
/*  content: "";*/
/*  display: block;*/
/*  height: 4px;*/
/*  position: absolute;*/
/*  top: 50%;*/
/*  margin-top: -2px;*/
/*  width: 2000px;*/
/*  left: 140px;*/
/*  background-color: var(--primaryColor);*/
/*}*/
/*.work_content > p {*/
/*  letter-spacing: 1.54px;*/
/*  color: #1a1a1a;*/
/*  width: 65%;*/
/*  line-height: 32px;*/
/*  font-weight: 500;*/
/*  font-size: 20px;*/
/*}*/
/*.video_player {*/
/*  margin: 0 0 40px;*/
/*  box-shadow: 0px 3px 6px #00000029;*/
/*  border-radius: 18px;*/
/*  background-color: #fff;*/
/*}*/
/*.video_player iframe {*/
/*  border-radius: 18px 18px 0 0;*/
/*}*/
/*.youtube_content {*/
/*  padding: 32px 26px;*/
/*  text-align: center;*/
/*}*/
/*.youtube_content h2 {*/
/*  font-size: 1.4em;*/
/*  text-transform: uppercase;*/
/*  font-weight: 600;*/
/*  color: #454547;*/
/*  padding-bottom: 10px;*/
/*  border-bottom: 2px solid var(--primaryColor);*/
/*  margin-bottom: 10px;*/
/*}*/
/*.youtube_content p {*/
/*  font-size: 1em;*/
/*}*/

/*@media (max-width: 720px) {*/
/*  .work_content > p {*/
/*    width: 100%;*/
/*  }*/
/*}*/

/* =====================================
            Client Say
===================================== */
.clients_reviews {
  padding: 80px 0;
  background-color: var(--body_bg);
}
.client_heading {
  text-align: center;
  margin: 0 0 32px 0;
}
.client_heading h2 {
  font-weight: 800;
  font-size: 40px;
}
.client_heading p {
  font-size: 20px;
  padding-top: 8px;
}
.client_review {
  height: 100%;
  border-radius: 18px;
  background-color: #fff;
  box-shadow: 0px 7px 24px -5px rgb(188 188 188 / 50%);
}
.client_say {
  padding: 20px 40px;
}
.client_say > p {
  font-size: 1.3em;
  margin-bottom: 20px;
  line-height: 1.5;
}
.client_say img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}
.client_say h3 {
  font-size: 1.2em;
  font-weight: 800;
  margin: 0.5rem 0 0.25rem 0;
}
.client_say h4 {
  font-size: 0.85em;
}
.client_say2 {
  padding: 20px 40px;
  border-radius: 18px;
  background-color: #fff;
  box-shadow: 0px 7px 24px -5px rgb(188 188 188 / 50%);
}
.client_say2 > p {
  font-size: 1.2em;
  margin-bottom: 12px;
  line-height: 1.5;
}
.client_say2 img {
  width: 100px;
  height: 92px;
  border-radius: 50%;
}
.client_say2 h3 {
  font-size: 1.2em;
  font-weight: 800;
  margin: 0.5rem 0 0.25rem 0;
}
.client_say2 h4 {
  font-size: 0.85em;
}

@media (max-width: 768px) {
  .client_reviewing {
    margin-bottom: 30px;
  }
  .client_say {
    padding: 20px 26px;
  }
  .client_say2 {
    padding: 20px 26px;
  }
}
	
/* =====================================
                SideBar
===================================== */
.sidebar {
    transform: translateX(-100%);
    position: fixed;
    top: 0;
    left: 0;
    width: 85%;
    background-color: var(--secondaryColor);
    height: 100vh;
    color: #fff;
    z-index: 100;
    overflow-y: scroll;
    transition: transform 0.5s ease-in-out;
}
.sidebar > ul {
    padding: 0;
}
.sidebar > ul > li {
    list-style-type: none;
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.sidebar > ul > li:nth-of-type(1) {
    position: sticky;
    top: 0;
    background-color: var(--primaryColor);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.sidebar > ul > li:nth-of-type(1) p {
    font-weight: 700;
    font-size: 25px;
    margin: 0;
}
.sidebar > ul > li:nth-of-type(1) a {
    font-weight: 700;
    font-size: 25px;
    text-decoration: none;
    color: #fff;
}
.sidebar > ul > li a {
    text-decoration: none;
    color: #f6f6f6;
    font-size: 20px;
}
.sidebar .relative .drop {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.sidebar .relative .drop i {
    color: #f6f6f6;
}
.sidebar .subnav {
    display: none;
    padding-left: 10px;
}
.sidebar .subnav li {
    padding-top: 15px;
}
.sidebar .subnav.active {
    display: block;
}
/* =====================================
                SideBar
===================================== */
/*.sidebar {*/
/*  transform: translateX(-110%);*/
/*  transition: transform 0.5s ease;*/
/*  position: fixed;*/
/*  top: 0;*/
/*  left: 0;*/
/*  width: 85%;*/
/*  background-color: var(--secondaryColor);*/
/*  height: 100vh;*/
/*  color: #fff;*/
/*  max-width: 350px;*/
/*  z-index: 100;*/
/*}*/
/*.sidebar ul {*/
/*  padding: 0;*/
/*}*/
/*.sidebar ul li {*/
/*  list-style-type: none;*/
/*  padding: 20px;*/
/*  border-top: 1px solid rgba(255, 255, 255, 0.1);*/
/*}*/
/*.sidebar ul li:first-child {*/
/*  background-color: var(--primaryColor);*/
/*  display: flex;*/
/*  align-items: center;*/
/*  justify-content: space-between;*/
/*}*/
/*.sidebar ul li:first-child p {*/
/*  font-weight: 700;*/
/*  font-size: 25px;*/
/*  margin: 0;*/
/*}*/
/*.sidebar ul li:first-child a {*/
/*  font-weight: 700;*/
/*  font-size: 25px;*/
/*  text-decoration: none;*/
/*  color: #fff;*/
/*}*/
/*.sidebar ul li a {*/
/*  text-decoration: none;*/
/*  color: #fff;*/
/*}*/

/*@-webkit-keyframes slideInLeft {*/
/*  0% {*/
/*    -webkit-transform: translate3d(-100%, 0, 0);*/
/*    transform: translate3d(-100%, 0, 0);*/
/*    visibility: visible;*/
/*  }*/
/*  to {*/
/*    -webkit-transform: translateZ(0);*/
/*    transform: translateZ(0);*/
/*  }*/
/*}*/
/*@keyframes slideInLeft {*/
/*  0% {*/
/*    -webkit-transform: translate3d(-100%, 0, 0);*/
/*    transform: translate3d(-100%, 0, 0);*/
/*    visibility: visible;*/
/*  }*/
/*  to {*/
/*    -webkit-transform: translateZ(0);*/
/*    transform: translateZ(0);*/
/*  }*/
/*}*/
/*.slideInLeft {*/
/*  -webkit-animation-duration: 1s;*/
/*  animation-duration: 1s;*/
/*  -webkit-animation-duration: var(--animate-duration);*/
/*  animation-duration: var(--animate-duration);*/
/*  -webkit-animation-fill-mode: both;*/
/*  animation-fill-mode: both;*/
/*  -webkit-animation-name: slideInLeft;*/
/*  animation-name: slideInLeft;*/
/*}*/

/* =====================================
                Experts
===================================== */
.experts {
  color: #fff;
  background-image: url(../img/section-bg1.jpg);
}
.experts_area {
  padding: 6rem 0;
  align-items: center;
}
/*
.experts_left {
  padding: 50px;
  border: 1px solid rgba(231, 231, 231, 0.3);
  background-color: rgba(3, 15, 39, 0.6);
  border-radius: 5px;
}
.experts_left > p {
  color: #f2f2f2;
  margin-bottom: 37px;
}
.progress_top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 6px;
}
.progress_top h3 {
  font-size: 15px;
  color: #fff;
  font-weight: 600;
}
.progress_top span {
  color: var(--primaryColor);
}
 .progress_group {
  margin-bottom: 26px;
}
.progress_bar {
  height: 5px;
  width: 100%;
  background-color: rgba(231, 231, 231, 0.856);
}
.progress_wrap {
  position: relative;
  height: 5px;
  background-color: var(--primaryColor);
}
.progress_wrap:after {
  content: "";
  position: absolute;
  right: 0;
  top: -7px;
  width: 2px;
  height: 19px;
  z-index: 999;
  background-color: var(--primaryColor);
}
.w-70 {
  width: 70%;
}
.w-80 {
  width: 80%;
}
.w-85 {
  width: 85%;
}
.w-90 {
  width: 90%;
}
.w-96 {
  width: 96%;
}
.w-98 {
  width: 98%;
} */
.experts_right {
  padding: 30px 40px;
}
.experts_right h2 {
  padding-bottom: 30px;
  font-size: 2.5rem;
}
.experts_right h2 span {
  font-weight: 700;
}
.experts_type {
  margin-bottom: 34px;
}
.experts_type_top p {
  display: inline;
  padding-left: 8px;
  font-size: 18px;
  font-weight: 700;
}
.experts_type_top i {
  border: 1px solid var(--primaryColor);
  background-color: var(--primaryColor);
  border-radius: 50%;
  padding: 6px;
  font-size: 12px;
  color: var(--secondaryColor);
}
.experts_type > p {
  color: rgba(206, 206, 206, 0.8);
}
@media (max-width: 850px) {
  /* .experts_left {
    padding: 20px;
  } */
  .experts_type_top {
    display: flex;
    justify-content: center;
    align-items: baseline;
  }
}
/* =====================================
              Excellence
===================================== */
.excellence {
  padding: 6rem 0;
  text-align: center;
}
.excellence_details {
  line-height: 30px;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}
.excellence_details h3 {
  font-weight: 800;
  font-size: 1rem;
  color: var(--primaryColor);
  margin-bottom: 18px;
}
.excellence_details h2 {
  font-size: 2.5rem;
  color: #000;
  margin-bottom: 1.6rem;
}
.excellence_details h2 span {
  font-weight: 800;
}
.excellence_details p {
  font-size: 1.2rem;
  line-height: 28px;
  color: rgba(0, 0, 0, 0.8);
  margin-bottom: 30px;
}

/* =====================================
            Contact Us
===================================== */
.home_contact {
  text-align: center;
  background-image: url(../img/section-bg2.jpg);
  color: #fff ;
  padding: 80px 0;
}
.home_contact_container {
  width: 899px;
  margin: 0 auto;
  max-width: 90%;
}
.home_contact_container h2 {
  font-size: 46px;
  padding-bottom: 26px;
  font-weight: 100;
}
.home_contact_container p {
  font-size: 21px;
  line-height: 34px;
  margin-bottom: 24px;
}

/* =====================================
            Technologies
===================================== */
.portfolio {
  padding: 80px 0;
  background-color: var(--body_bg);
}
.portfolio h2 {
  font-size: 15px;
  text-transform: uppercase;
  color: var(--primaryColor);
  padding-bottom: 30px;
  font-weight: 800;
  margin: 0;
}
.portfolio_left h3 {
  font-size: 45px;
  /* padding-right: 48px; */
}
.portfolio_left h3 span {
  font-weight: 700;
}
.portfolio_right p {
  font-size: 20px;
  line-height: 32px;
  color: #414042;
  font-weight: 500;
}
.technology {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-around;
  box-shadow: 3px 3px 5px rgb(0 0 0 / 3%);
  background-color: #fff;
  padding: 25px 6px;
  border-radius: 5px;
  transition: 0.75s;
}
.technology:hover {
  transform: translate(0, -8px);
  box-shadow: 3px 3px 10px rgb(0 0 0 / 10%);
}

.technology_imgs {
  width: 120px;
  text-align: center;
}
.technology_imgs img {
  width: 60px;
}
.technology_details {
  width: calc(100% - 60px);
}
.technology_details h3 {
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
}
.technology_details p {
  margin: 0;
}
/* =====================================
              Contact Us
===================================== */
.contact_us {
  color: #fff;
  background-image: url(../img/wall.jpeg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.contact_us_area {
  padding: 6rem 0;
}
.contact_us_left {
  padding: 56px 50px;
  border: 1px solid rgba(231, 231, 231, 0.3);
  background-color: rgba(3, 15, 39, 0.9);
  border-radius: 9px;
}
.contact_us_left h2 {
  margin-bottom: 20px;
  border-bottom: 1px solid #ffff;
  padding-bottom: 10px;
  width: 208px;
}

@media (max-width: 850px) {
  .contact_us_left {
    padding: 20px;
  }
}
.contact_us_left h3 {
  font-size: 1.2em;
  font-weight: 800;
  letter-spacing: 1px;
}
.contact_us_left p {
  color: #fff;
  font-size: 16px;
}
.contact_us_left > p {
  margin-bottom: 37px;
  color: #fff;
  font-size: 18px;
  line-height: 1.6;
}
.contact_us_right {
  text-align: center;
  padding: 0 40px;
}
.contact_form {
    padding: 40px 35px;
    background-color: var(--body_bg);
    color: #000;
    border-radius: 15px;
    box-shadow: 4px 5px 14pc #bcbdbe;
    border: 1px solid rgb(225 225 225 / 61%);
}
.contact_form h3 {
  margin-bottom: 15px;
  font-size: 22px;
  font-weight: 700;
}
.contact_form p {
  font-size: 0.9em;
}
/* .contact_form form input,
.contact_form form textarea {
  margin: 20px 0;
  padding: 9px 25px;
  border: 0;
  border-bottom: 1px solid #444;
  border-radius: 0.25rem 0.25rem 0 0;
} */
/********* Form *********/
.form {
  width: 100%;
  position: relative;
  height: 50px;
  margin-bottom: 20px;
  overflow: hidden;
}
.form input {
  width: 100%;
  height: 100%;
  color: #444;
  padding-top: 20px;
  border: none;
  outline: none;
  background: transparent;
}
.form label {
  position: absolute;
  bottom: 0px;
  left: 0%;
  width: 100%;
  height: 100%;
  pointer-events: none;
  border-bottom: 1px solid #000;
  margin: 0;
}
.form label::after {
  content: "";
  position: absolute;
  left: 0px;
  bottom: -1px;
  width: 100%;
  height: 100%;
  border-bottom: 3px solid var(--primaryColor);
  transform: translateX(-100%);
  transition: all 0.3s ease;
}
.content-name {
  position: absolute;
  bottom: 5px;
  left: 0px;
  transition: all 0.3s ease;
}

.form input:focus + .label-name .content-name,
.form input:valid + .label-name .content-name {
  transform: translateY(-110%);
  font-size: 14px;
  color: var(--primaryColor);
}
.form input:focus + .label-name::after,
.form input:valid + .label-name::after {
  transform: translateX(0%);
}
@media (max-width: 767px) {
  .contact_us_right {
    padding: 25px 15px;
  }
  .contact_form {
    padding: 46px 25px;
  }
}
/* =====================================
              Footer
===================================== */
.footer {
  background-color: rgb(23, 26, 30);
  color: #ddd;
  padding: 80px 0;
}
.footer h2 {
  font-size: 1.1rem;
  margin: 8px 0;
  font-weight: 600;
  letter-spacing: 1px;
}
.footer_brand h1 {
  color: #fff;
  font-size: 2rem;
}
.footer_brand p {
  line-height: 30px;
  font-size: 1rem;
}
.footer_social {
  margin-top: 10px;
  padding: 15px 0;
  list-style-type: none;
}
.footer_social li {
  display: inline;
}
.footer_social li a {
  font-size: 18px;
  margin-right: 10px;
  background-color: var(--primaryColor);
  border-radius: 50%;
  cursor: pointer;
  padding: 8px 15px;
  color: #fff;
  transition: all 0.5s ease-in-out;
}
.footer_social li a:hover {
  background-color: var(--secondaryColor);
}
.footer_nav {
  padding: 0 10px;
}
.footer_nav_links {
  list-style-type: none;
  padding: 0;
}
.footer_nav_links li {
  margin: 10px 0;
  float: left;
  width: 50%;
}
.footer_nav_links li a {
  text-decoration: none;
  /*color: rgb(131, 147, 187);*/
}
.footer_contact_links {
  list-style-type: none;
  padding: 0;
}
.footer_contact_links li {
  padding: 8px 0;
}
.footer_contact_links li a {
  color: #fff;
  text-decoration: none;
}
.footer_contact_links li a i {
  color: var(--primaryColor);
  padding-right: 8px;
}
.footer_news form {
  margin-top: 18px;
}
.footer_news form input[type="text"] {
  background-color: rgb(61, 65, 71);
  border: navajowhite;
  border-radius: 20px;
  padding: 15px 20px;
  outline: none;
  font-weight: 600;
  color: #fff;
}

.footer-m-action {
  box-shadow: rgb(0 0 0 / 15%) 0px -1px 3px 0px;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  display: flex;
}

.contact-action,
.wp-action {
  padding: 18px 0;
  display: flex;
  width: 50%;
  justify-content: center;
  align-items: center;
}

.contact-action {
  background-color: #b8b8b8;
}

.wp-action {
  background: #E86363;
}

.contact-action a,
.wp-action a {
  color: #fff;
  text-decoration: none;
  font-size: 20px;
}

@media (min-width: 540px) {
  .footer-m-action {
    display: none;
  }
}


/* =================================
              Team
==================================== */
.team {
  padding: 70px 0;
  background-color: var(--body_bg);
}
.team h2 {
  font-weight: 700;
  margin-bottom: 30px;
}
.team_member {
  margin: 0 0 40px;
  border-radius: 18px;
  background-color: #fff;
  box-shadow: 10px 10px 28px 0px rgb(44 67 113 / 15%);
}
.team_member img {
  border-radius: 18px 0 0 18px;
}
.team_member_details {
  padding: 32px 20px;
  height: 100%;
}
.team_member_details h3 {
  font-size: 32px;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0 0 3px 0;
}
.team_member_details h4 {
  font-size: 22px;
  margin-bottom: 15px;
}
.team_member_details p {
  font-size: 18px;
}
@media only screen and (max-width: 512px) {
  .team_member img {
    border-radius: 18px 18px 0 0;
  }
}

/* =================================
        Services Page Steps
==================================== */
.s_top {
  padding: 70px 0;
}
.service_steps {
  padding: 60px 0;
  background-color: #f0f6ff;
}
.service_steps h2 {
  text-align: center;
  font-weight: 700;
  margin-bottom: 32px;
}
.service_box {
  position: relative;
  padding: 30px 20px;
  margin: 12px 0;
  background-color: #fff;
  box-shadow: 10px 10px 28px 0px rgb(44 67 113 / 15%);
  border-radius: 16px;
  transition: all 0.75s linear;
}
.service_box:hover {
  background-color: #0039e4;
  background-image: linear-gradient(145deg, #0039e4, #04dbf1);
}
.service_box .service_step {
  color: #fff;
  letter-spacing: 1px;
  font-weight: 800;
  float: left;
  line-height: 45px;
  text-align: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: #0039e4;
  background-image: linear-gradient(145deg, #0039e4, #04dbf1);
  box-shadow: 8px 8px 20px 0px rgb(42 67 113 / 30%);
  transition: all 0.3s linear;
}
.service_box:hover .service_step {
  color: var(--primaryColor);
  background: #fff;
}
.service_box .service_details {
  transition: all 0.3s linear;
  padding-left: 75px;
}
.service_box:hover .service_details {
  color: #fff;
}
.service_box .service_big_step {
  position: absolute;
  right: 35px;
  bottom: -13px;
  font-size: 88px;
  font-weight: 900;
  line-height: 1;
  color: rgba(165, 183, 210, 0.2);
  z-index: 0;
}
.service_box:hover .service_big_step {
  color: rgb(131 160 202 / 51%);
}

.service_box h3 {
  font-size: 18px;
  font-weight: 800;
}


.bg-round{
  background: #fff;
  padding: 25px;
  border: 2px solid #fff;
  border-radius: 50%;
  height: 100px;
  width: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9;
}
.icon-color{
  color: var(--primaryColor);
}

.bg-border-gray{
  border: 2px solid #d3d3d3;
  border-radius: 50%;
  height: 120px;
  width: 120px;
}

.bg-round-gray{
  background: #d3d3d3;
  padding: 25px;
  border: 2px solid #fff;
  border-radius: 50%;
  height: 100px;
  width: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9;
}

.bg-round-1{
  background: #a0ce4e;
  padding: 25px;
  border: 2px solid #fff;
  border-radius: 50%;
  height: 100px;
  width: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9;
}

.bg-round-2{
  background: #00bea3;
  padding: 25px;
  border: 2px solid #fff;
  border-radius: 50%;
  height: 100px;
  width: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9;
}

.bg-round-3{
  background: #f1894c;
  padding: 25px;
  border: 2px solid #fff;
  border-radius: 50%;
  height: 100px;
  width: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9;
}



.slick-slider {
  width: 100%;
  background-color: transparent;
}
.slick-slider .slick-track {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  height: auto;
  justify-content: center;
}
.slick-slider .slick-slide {
  float: none;
  display: inline-block;
  vertical-align: middle;
  padding: 10px 0px;
  margin: 10px;
  background-color: white;
  transition: all 0.3s ease;
  height: auto;
  text-align: center;
}


.slik-img{
  width: 275px;
  height: 300px;
}

.slick-dots button{
  background-color: #bdbdbd;
}

.round-sheap{
  background: #ccc;
  padding: 10px;
  border-radius: 50%;
  height:240px; 
  width:240px;
}

.steps_align {
    display: flex;
    align-items: center;
    justify-content: center;
    padding:100px 0px 350px;
}

.client_work {
    padding: 100px 0;
}

	
/* =====================================
                PARTNERS
===================================== */
.partner {
    background-color: #ebf3fa;
    padding: 100px 0 60px;
}
.partner .partner_img {
    position: relative;
    max-width: 600px;
}
.partner_card {
    background-color: #fff;
    padding: 30px;
    box-shadow: 0px 10px 36px 0px rgb(89 106 117 / 9%);
    max-width: 400px;
    border-radius: 10px;
    color: #686868;
    margin-top: 60px;
    margin-bottom: 60px;
}
.partner_card h3 {
    margin-bottom: 30px;
}
.partner_card h3 span {
    font-weight: 600;
}
.partner_card ul li {
    margin-bottom: 20px;
}
.partner_card ul h4 {
    font-size: 18px;
    margin: 0;
}
.partner_logo {
    padding: 40px 0;
}
.partner_logo ul li {
    position: absolute;
    bottom: 50px;
    right: 0;
    z-index: 1;
    display: block;
    transition: all 0.5s ease-in-out;
}
.partner_logo ul li img {
    border-radius: 50%;
    box-shadow: 0 0 41px rgb(0 0 0 / 8%);
}
.partner_logo ul li:hover {
    transform: scale(1.2);
    z-index: 10;
}
.partner_logo ul li:nth-child(1) {
    right: 175px;
    bottom: 545px;
    width: 118px;
}
.partner_logo ul li:nth-child(2) {
    right: 60px;
    bottom: 475px;
    width: 148px;
}
.partner_logo ul li:nth-child(3) {
    bottom: 400px;
    right: 75px;
    width: 118px;
}
.partner_logo ul li:nth-child(4) {
    bottom: 280px;
    right: 10px;
    width: 148px;
}
.partner_logo ul li:nth-child(5) {
    bottom: 200px;
    right: 75px;
    width: 118px;
}
.partner_logo ul li:nth-child(6) {
    bottom: 85px;
    right: 65px;
    width: 148px;
}
.partner_logo ul li:nth-child(7) {
    bottom: 50px;
    right: 175px;
    width: 118px;
}
.partner_content {
    /* color: #686868; */
    margin-top: 50px;
    max-width: 812px;
    margin: auto;
}
.partner_content p {
    margin-bottom: 25px;
    font-size: 15px;
    line-height: 30px;
}

.section_headline {
    font-size: 42px;
    text-transform: capitalize;
    padding-top: 40px;
    max-width: 812px;
    margin: auto;
    font-weight: 600;
    padding-bottom: 20px;
}
.section_headline span {
    color: var(--primaryColor);
    font-weight: 800;
}
@media (min-width: 992px) {
    .partner_card {
        margin-left: auto;
        margin-right: auto;
    }
}
@media (max-width: 992px) {
    .partner_logo ul li {
        position: inherit;
        display: inline-block;
        width: 25% !important;
        margin: 10px;
    }
    .partner_card {
        margin: 0 auto;
    }
}
@media (max-width: 568px) {
    .partner {
        padding: 30px 0;
    }
    .partner_content {
        margin-top: 0;
        margin-bottom: 50px;
    }
}

/*=======================================*/
/*                Pricing                */
/*=======================================*/

.pr_type {
    padding: 0;
    margin-top: 2rem;
    margin-bottom: 2rem;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.pr_type li {
    padding: 6px 12px;
    color: var(--primaryColor);
    border: 1px solid var(--primaryColor);
    cursor: pointer;
    margin: 5px;
    transition: all 0.3s ease;
}
.pr_type li:hover {
    background: var(--primaryColor);
    color: #fff;
}
.pr_type li.active {
    background: var(--primaryColor);
    color: #fff;
}
.pricing-plans {
    text-align: center;
    padding: 40px 0;
}
.pricing-items .item {
    width: 100%;
}

/*.pricing-box .list-group.smm_height {*/
/*    min-height: 460px;*/
/*}*/
.form_padding{
  padding: 0px 10px 0px 0px;
}
.pricing-plans .col-md-4,
.pricing-plans .col-lg-3 {
    margin: 12px 0;
}

    @import url(https://fonts.googleapis.com/css?family=Roboto);

/*body {*/
/*	font-family: 'Roboto', sans-serif;*/
/*	color: #a1a2ac;*/
/*}*/



h1.section-title {
	font-size: 2.2rem;
	margin-bottom: 1.3rem;
}

a {
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	transition: all 0.2s;
}

p.lead {
	color: #a1a2ac;
	/*margin-bottom: 6rem;*/
}

.btn {
	text-transform: uppercase;
	font-weight: 600;
}

.btn-outline-signin {
	border: 1px solid #e1e8ee;
}

/*.btn-start {*/
/*	background: #fd4d66;*/
/*	color: #fff;*/
/*	padding: 0.8rem;*/
/*	width: 100%;*/
/*	margin: 0 auto;*/
/*}*/

/*.btn-start:hover,*/
/*.btn-start:focus {*/
/*	color: #fff;*/
/*}*/

.btn-outline-start {
	background: #fff;
	border: 1px solid var(--primaryColor);
	color: var(--primaryColor);
	padding: 0.8rem;
	width: 100%;
	margin: 0 auto;
	transition: all 0.4s ease;
    margin: 16px auto 0;
}

.btn-outline-start:hover,
.btn-outline-start:focus {
	color: #fff;
	background-color: var(--primaryColor);
}

section.pricing-plans {
	background: #fff;
	padding: 8rem 0;
}

.pricing-box {
	padding: 1rem;
	background: #fff;
	border: 1px solid #e1e8ee;
	margin: 12px 0;
	height: 100%;
	box-shadow: 0px 3px 9px 0px rgb(117 117 117 / 35%);
    transition: all 0.4s ease;
}
.pricing-box:hover {
    transform: scale(1.01);
}
.pricing-box .card-title {
	font-size: 1rem;
    line-height: 2;
    color: #fff;
    background-color: var(--primaryColor);
}

.pricing-box .currency {
	top: -1.50rem;
	font-size: 1.50rem;
	letter-spacing: 0.75rem;
	margin-right: -1.5rem;
}

.pricing-box .amount {
	font-size: 3.8rem;
}

.pricing-box .month {
	color: #a1a2ac;
	margin-left: -0.8rem;
}

.pricing-box .list-group {
	margin-bottom: 1rem;
	border-bottom: none;
}
/*.pricing-box .list-group.web {*/
/*    min-height: 850px;*/
/*}*/
/*.pricing-box .list-group.app {*/
/*    min-height: 575px;*/
/*}*/
.pricing-box .card-block-down {
    margin-top: auto;
    border-top: 1px solid #e1e8ee;
}
.pricing-box .list-group-item {
	padding: 0.45rem 1rem;
	border: none;
}
.list-group .list-group-item i.fa-times-circle {
    color: red;
}
.list-group .list-group-item i.fa-check-circle {
    color: green;
}
/*.pricing-premium {*/
/*	position: relative;*/
/*	z-index: 1;*/
/*	-webkit-box-shadow: 0 5px 10px rgba(0,0,0,.09);*/
/*	-moz-box-shadow: 0 5px 10px rgba(0,0,0,.09);*/
/*	box-shadow: 0 5px 10px rgba(0,0,0,.09);*/
/*}*/

/*Pop Up Model*/
.modal {
    z-index: 99999;
}

.show {
    display: block;
    animation-name: showhide;
    animation-duration: 0.5s;
    transform: scale(1);
    opacity: 1;
}
	
@keyframes showhide {
    from {
        transform: scale(0.5);
        opacity: 0;
    }
}
.title {
    font-size: 18px;
    color: #0d233e;
    font-weight: 700;
}
.font-size-14 {
    font-size: 14px!important;
}
.modal-header .close {
    background-color: rgba(128,137,150,.2);
    padding: 0;
    width: 33px;
    height: 33px;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    margin-top: -5px;
    margin-right: 0;
    font-size: 20px;
    outline: 0;
    border: none;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    text-shadow: none;
}
label {
    display: inline-block;
    margin-bottom: 0.5rem;
}
.contact-form-action .form-group {
    position: relative;
}
.contact-form-action .form-group .form-icon {
    position: absolute;
    top: 15px;
    left: 15px;
    color: #5d646d;
    font-size: 18px;
}
.contact-form-action .form-control {
    height: auto;
    line-height: inherit;
    padding: 10px 20px 10px 40px;
    font-size: 13px;
    color: #0d233e;
    border-color: rgba(128,137,150,.2);
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    background-color: #fff;
}
.theme-btn {
    font-size: 15px;
    color: #fff;
    line-height: 45px;
    padding-left: 20px;
    padding-right: 20px;
    background-color: var(--primaryColor);
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    position: relative;
    display: inline-block;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    border: 1px solid var(--primaryColor);
    font-weight: 500;
}
/* /Pop Up Model*/

/* =====================================
              Category
===================================== */
.category {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.cat_item {
    padding: 2px;
    width: 100%;
    text-decoration: none;
}
.cat {
    width: 100%;
    height: 350px;
    display: grid;
    place-items: center;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.cat1 {
    background-image: url(../img/services/webdesign.jpg);
}
.cat2 {
    background-image: url(../img/services/Ecommerce.jpg);
}
.cat3 {
    background-image: url(../img/services/marketing.jpg);
}
.cat4 {
    background-image: url(../img/services/logo.jpg);
}
.cat5 {
    background-image: url(../img/services/app.jpg);
}
.cat6 {
    background-image: url(../img/services/flip.jpg);
}
.cat7 {
    background-image: url(../img/services/marketing.jpg);
}
@media (min-width: 568px) {
    .cat_item.one_third {
        width: 50%;
    }
    .cat_item.one_quarter {
        width: 50%;
    }
}
@media (min-width: 768px) {
    .cat_item.one_third {
        width: 33.33%;
    }
    .cat_item.one_quarter {
        width: 25%;
    }
}
/*  /Category  */

@media (max-width: 768px) {
	.pricing-box {
		margin-bottom: 1rem;
	}
}

@media only screen and (min-width: 992px) {
	#navbar-main {
		background: transparent;
		border-bottom: 1px solid transparent;
	}
	
	#navbar-main .navbar-nav > li.nav-item > a {
		color: #a1a2ac;
		padding: 1rem;
	}
	
	#navbar-main .navbar-nav > li.nav-item > a:hover,
	#navbar-main .navbar-nav > li.nav-item > a:focus {
		color: #242424;
	}
}

/*@media (min-width: 768px) {*/
/*	.pricing-premium {*/
/*		-webkit-transform: scale(1.05);*/
/*		-moz-transform: scale(1.05);*/
/*		transform: scale(1.05);*/
/*	}*/
/*}*/

.user_font{
  font-size : 1.5rem; font-weight:600;
}

.mt_200{
  margin-top: -200px;
}

/*client say*/
.testimonial_an {
  padding: 40px 0;
}
.testimonial_an .row .tabs {
  all: unset;
  margin-right: 50px;
  display: flex;
  flex-direction: column;
}
.testimonial_an .row .tabs li {
  all: unset;
  display: block;
  position: relative;
}
.testimonial_an .row .tabs li.active::before {
  position: absolute;
  content: '';
  width: 50px;
  height: 50px;
  background-color: var(--primaryColor);
  border-radius: 50%;
}
.testimonial_an .row .tabs li.active::after {
  position: absolute;
  content: '';
  width: 30px;
  height: 30px;
  background-color: var(--primaryColor);
  border-radius: 50%;
}
.testimonial_an .row .tabs li:nth-child(1) {
  align-self: flex-end;
}
.testimonial_an .row .tabs li:nth-child(1)::before {
  left: 64%;
  bottom: -50px;
}
.testimonial_an .row .tabs li:nth-child(1)::after {
  left: 97%;
  bottom: -81px;
}
.testimonial_an .row .tabs li:nth-child(1) figure img {
  margin-left: auto;
}
.testimonial_an .row .tabs li:nth-child(2) {
  align-self: flex-start;
}
.testimonial_an .row .tabs li:nth-child(2)::before {
  right: -65px;
  top: 50%;
}
.testimonial_an .row .tabs li:nth-child(2)::after {
  bottom: 101px;
  border-radius: 50%;
  right: -120px;
}
.testimonial_an .row .tabs li:nth-child(2) figure img {
  margin-right: auto;
  max-width: 300px;
  width: 100%;
  margin-top: -50px;
}
.testimonial_an .row .tabs li:nth-child(3) {
  align-self: flex-end;
}
.testimonial_an .row .tabs li:nth-child(3)::before {
  right: -10px;
  top: -66%;
}
.testimonial_an .row .tabs li:nth-child(3)::after {
  top: -130px;
  border-radius: 50%;
  right: -46px;
}
.testimonial_an .row .tabs li:nth-child(3) figure img {
  margin-left: auto;
  margin-top: -50px;
}
.testimonial_an .row .tabs li:nth-child(3):focus {
  border: 10px solid var(--primaryColor);
}
.testimonial_an .row .tabs li figure {
  position: relative;
}
.testimonial_an .row .tabs li figure img {
  display: block;
    max-width: 172px;
    border-radius: 50%;
}
.testimonial_an .row .tabs li figure::after {
  content: '';
  position: absolute;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  border: 4px solid #ac8cc96b;
  border-radius: 50%;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.testimonial_an .row .tabs li figure:hover::after {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.testimonial_an .row .tabs.carousel-indicators li.active figure::after {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.testimonial_an .row .carousel > h3 {
  font-size: 20px;
  line-height: 1.45;
  color: rgba(0, 0, 0, 0.5);
  font-weight: 600;
  margin-bottom: 0;
}
.testimonial_an .row .carousel h1 {
  font-size: 40px;
  line-height: 1.225;
  margin-top: 23px;
  font-weight: 700;
  margin-bottom: 0;
}
.testimonial_an .row .carousel .carousel-indicators {
  all: unset;
  display: flex;
  list-style: none;
}
.carousel-indicators li {
    box-sizing: content-box;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    width: 30px;
    height: 3px;
    margin-right: 3px;
    margin-left: 3px;
    text-indent: -999px;
    cursor: pointer;
    background-color: #fff;
    background-clip: padding-box;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: .5;
    transition: opacity .6s ease;
}
.testimonial_an .row .carousel .carousel-indicators li {
  background: var(--primaryColor);
  background-clip: padding-box;
  height: 2px;
  width: 30px;
}

.testimonial_an .row .carousel .carousel-inner .carousel-item .quote-wrapper_an {
  margin-top: 18px;
}
.testimonial_an .row .carousel .carousel-inner .carousel-item .quote-wrapper_an p {
  line-height: 1.72222;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.7);
}
.testimonial_an .row .carousel .carousel-inner .carousel-item .quote-wrapper_an h3 {
  font-weight: 700;
  margin-top: 30px;
  font-size: 16px;
  line-height: 1.45;
  text-transform: uppercase;
}
@media only screen and (max-width: 1200px) {
  .testimonial_an .row .tabs {
    margin-right: 25px;
  }
}
/*client say*/

/*Technology*/
.container_menu_iso {
    display: flex;
    justify-content: space-around;
    flex-direction: row;
}
.container_menu_iso .menu_iso {
    display: flex; 
    flex-wrap: wrap; 
    align-items: center;
    justify-content: center;
}
.container_menu_iso .menu_iso li {
    list-style: none;
    padding: 20px 10px;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
}
@media screen and (max-width: 600px) {
    .container_menu_iso .menu_iso li {
        padding: 15px 3px;
    }
}
.is-checked {
    color: var(--primaryColor);
}
.container_menu_iso .menu_iso li a {
    padding: 10px 24px;
    border-radius: 5px;
    background-color: #eee;
    color: var(--secondaryColor);
    transition: 0.5s ease all;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border: 1px solid #ccc;
    box-shadow: 3px 8px 16px #ccc;
}
.container_menu_iso .menu_iso li a.is-checked {
    color: #fff;
    background-color: var(--secondaryColor);
}
@media screen and (max-width: 600px) {
    .container_menu_iso .menu_iso li a {
        padding: 10px 10px;
        ;
        font-size: 0.7rem;
    }
}
.img_iso {
    padding: 10px 20px;
    background-color: #fff;
    border-radius: 8px;
    transition: all 0.5s ease-in-out;
}

.home_contact_container h2{
    font-size: 44px;
}
.home_contact_container h2 span {
    font-size: 47px;
}
@media screen and (max-width: 768px) {
    .img_iso {
        height: 230px;
        width: 100%;
    }
    .home_contact_container h2{
        font-size: 32px;
    }
    .home_contact_container h2 span {
        font-size: 34px;
    }
}
@media screen and (max-width: 600px) {
    .img_iso {
        height: 180px;
        width: 100%;
    }
    .home_contact_container h2{
        font-size: 20px;
    }
    .home_contact_container h2 span {
        font-size: 20px;
    }
}
@media screen and (max-width: 425px) {
    .img_iso {
        height: 215px;
        width: 100%;
        margin-bottom: 15px;
    }
}
@media screen and (max-width: 320px) {
    .img_iso {
        height: 175px;
        width: 100%;
        margin-bottom: 15px;
    }
}
.img_iso:hover {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    transform: scale(1.005) translateY(-5px);
}



@media (max-width: 768px) {
    .steps_align {
        flex-wrap: wrap;
    }
}


@media (max-width: 1024px) {
 
}

@media (max-width: 768px) {

}

@media (max-width: 425px) {
  .mt_top_180{
    margin-top: 300px;
    margin-bottom: 90px;
    transform: rotate(90deg);
    height: 40px;
  }
  .round-sheap{
    width: 240px;
  }
  .pricing-box .list-group.web{
    min-height: 0px;
  }
}

@media (max-width: 375px) {

}

@media (min-width: 320px) {
  .btn_call{
    padding: 6px 24px;
  }
  .btn_whatsapp{
    padding: 6px 16px;
  }
  .mt_50{
    margin:5px;
  }
  .hero_content h1{
    font-size: 24px;
  }
  .hero_action a{
    font-size: 18px;
  }
  .hero_action .btn_call{
    margin-right: 5px ;
  }
  .mt_top{
    margin-top:60px
  }
  .user_font{
    font-size: 1.5rem;
  }
  p{
    font-size: 16px;
  }
  .client_work h2{
    font-weight: 600;
  }
  
  .portfolio_left h3{
    font-size: 28px;
  }
  .client_heading h2{
    font-size: 28px;
  }
  .btn_style{
    margin-bottom: 15px;
  }
  .footer_brand h1{
    font-size: 1.5rem;
  }
  .footer{
    padding: 70px 0 90px;
  } 
  #feature{
    padding: 50px 0px;
  }
  .text-center p{
    padding: 0px 12px;
  }
  .team h2{
    margin-bottom: 0px;
  }
  .breadcrumb_content h1{
    font-size: 2rem;
  }
  .col-12 h2{
    font-weight:600;
  }
  .mt_200{
    margin-top: 10px;
  }
  .col-12 h4{
    font-weight: 600;
  }
  .col-lg-12 h2{
    font-weight: 600;
  }
}


	
/* ======================================== 
               Portfolio Page
======================================== */
/* card-hover-effect */
#card {
    height: 350px;
    width: 100%;
    perspective: 100rem;
    position: relative;
}
.card__side {
    height: 100%;
    width: 100%;
    color: white;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 700ms ease;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.card__side--front {
    background-color: #00bd9d;
}
.card__side--back {
    background-color: #eee;
    transform: rotateY(180deg);
}
#card:hover .card__side--front {
    transform: rotateY(-180deg);
}
#card:hover .card__side--back {
    transform: rotateY(0);
}
/* card-hover-effect */
/*tab-section-design*/
.category-lists-slider {
    position: relative;
}
#catgory-slider .swiper-slide {
    width: auto;
}
.category-button {
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid var(--secondaryColor);
    background-color: #fff;
    color: var(--secondaryColor);
    padding: 8px 28px;
    border-radius: 50px;
    display: inline-block;
    cursor: pointer;
    user-select: none;
    transition: all 0.35s ease-in-out;    
    margin-right: 12px;
}
.category-button.active {
    background-color: var(--primaryColor);
    border: 2px solid var(--primaryColor);
    color: #fff;
}
.category-button:hover {
    color: #fff;
    background-color: var(--secondaryColor);
    border: 2px solid var(--secondaryColor);
}
.data-text {
    display: none;
}
.data-text.active {
    display: block;
}
.data-text h6 {
    font-size: 18px;
    margin-top: 55px;
    margin-bottom: 8px;
    font-weight: 700;
}
.data-text p {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0;
}
.slider-button {
    width: 50px;
    height: 40px;
    background-color: var(--primaryColor);
    box-shadow: 0px 2px 4px rgb(0 0 0 / 30%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    position: absolute;
    top: 5px;
    z-index: 1;
    cursor: pointer;
    transition: all 0.25s ease-in-out;
}
.slider-button:hover {
    background-color: var(--secondaryColor);
}
.slider-button.slider-prev {
    right: 65px;
    top: 60px;
}
.slider-button.slider-next {
    right: 0%;
    top: 60px;
}
.slider-button.swiper-button-disabled {
    opacity: 0;
    visibility: hidden;
}
.box {
    padding: 30px;
    margin-top: 10px;
    border-radius: 6px;
    transition: 0.3s;
    height: 100%;
}
.box i {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--secondaryColor);
}
@media (max-width: 575px) {
    .category-lists-slider {
        margin-top: 40px;
    }
    #catgory-slider {
        overflow: hidden;
    }
    .category-button {
        font-size: 12px;
        padding: 4px 14px;
    }
    .slider-button {
        top: -40px;
    }
    .slider-button.slider-prev {
        left: inherit;
        right: 70px;
    }
    .slider-button.slider-next {
        right: 0;
    }
    .slider-button.slider-next {
        top: 50px;
    }
    .slider-button.slider-prev {
        top: 50px;
    }
}
/*tab-section-design*/
/*portfolio-page-other-css*/
.portfolio-contact {
    background-color: var(--secondaryColor);
    width: auto;
    margin-top: 130px;
}
.portfolio-contact img {
    box-shadow: 0px 5px 15px 0px rgb(0 0 0 / 50%);
    border-radius: 5px;
    margin-top: -75px;
}
.text-style {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    text-align: right;
    color: #fff;
}
.hover-text-style h4 {
    color: var(--primaryColor);
}
.hover-text-style p {
    color: #686868;
}
.hover-text-style a {
    color: #eee;
    color: var(--primaryColorDark);
    transition: 0.5s ease all;
}
.hover-text-style a:hover {
    color: #eee;
    color: var(--secondaryColor);
}
.text-style h2 {
    font-size: 48px;
}
.hover-text-style {
    padding: 24px;
}
/*portfolio-page-other-css*/

.pd_y {
    padding-top: 30px;
    padding-bottom: 30px;
}
.condition_page h3 {
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
}
.normal_ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 20px;
}