@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: #fff;
}

body {
  font-family: "Roboto", sans-serif;
}

.main_heading h2 {
  color: #000;
  font-size: 34px;
  line-height: 45px;
  font-weight: 600;
}

.main_btn {
  color: #000;
  padding: 10px 30px;
  border-radius: 10px;
  background-color: #F25459;
  font-size: 16px;
  color: #fff;
}

.main_btn:hover {
  color: #fff;
}

.header-scrolled {
  background-color: #fff;
  top: 0;
  box-shadow: 1px -8px 20px #000;
}

header {
  background-color: #fff;
  position: fixed;
  width: 100%;
  z-index: 9;
  transition: all 0.5s ease;
}

header .navbar-brand img {
  width: 120px;
}

header .navbar-nav li {
  padding: 0 25px;
}

header .navbar-nav li a {
  font-size: 16px;
  font-weight: 500;
  color: #000;
  padding: 5px 0 !important;
  position: relative;
  display: inline-block;
}

header .navbar-nav li a:after {
  content: "";
  position: absolute;
  height: 2px;
  width: 0;
  background-color: #000;
  left: 0;
  bottom: 0;
  transition: all 0.5s ease;
  border-bottom: 3px solid;
  /* required for border-image to apply */
  border-image-source: linear-gradient(90deg, #EF3786 0%, #F5922C 100%);
  border-image-slice: 1;
}


header .navbar-nav li a:hover::after,
header .navbar-nav li a.active::after {
  width: 100%;
}

.banner_section {
  padding: 100px 0 70px 0;
}

.banner_section .row {
  align-items: center;
}

.banner_section .part_text {
  text-align: center;
  height: 100vh;
  display: flex;
  align-items: center;
}

.banner_section .part_text p {
  color: rgba(0, 0, 0, 0.6980392157);
  font-size: 16px;
  padding: 15px 0 25px;
}

.how_work_section {
  padding: 150px 0;
  background-image: url("../images/how_work_bg.svg");
  background-size: cover;
  object-fit: cover;
  background-repeat: no-repeat;
  height: 100%;
}

.how_work_section .main_heading {
  padding-bottom: 50px;
}

.how_work_section .work_main_part {
  position: relative;
}

.how_work_section .work_main_part .how_work_main_line {
  position: absolute;
  width: 100%;
}

.how_work_section .content_box {
  padding: 150px 170px;
}

.how_work_section .third_box {
  padding: 190px 170px 145px;
}

.how_work_section .image_box img {
  width: 100%;
}

.how_work_section .second_img {
  padding: 0 0 0 90px !important;
}

.how_work_section .second_content {
  padding: 50px 18px 50px 105px !important;
}

.we_serve_section {
  padding: 70px 0;
}

.we_serve_section .serve_mainbox {
  border: 1px solid #E81D3C;
  padding: 50px;
  border-radius: 10px;
  text-align: center;
  color: #000;
  display: block;
  margin-bottom: 24px;
}

.we_serve_section .serve_mainbox:hover {
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
}

.we_serve_section .serve_mainbox .img_box svg {
  width: 80px;
  height: 80px;
}

.we_serve_section .serve_mainbox .text_box h4 {
  font-size: 22px;
  margin-bottom: 0;
  font-weight: 600;
  padding: 30px 0 0 0;
}

.portfolio_section {
  padding: 70px 0 50px;
}


.portfolio_section .nav-pills {
  justify-content: center;
  padding: 20px 0 40px 0;
}

.portfolio_section .nav-pills .nav-item {
  margin: 0 7px;
}

.portfolio_section .nav-pills .nav-item .nav-link {
  color: #808080;
  font-size: 16px;
  font-weight: 500;
  padding: 5px 20px;
  border: 1px solid #808080;
  border-radius: 4px;
}

.portfolio_section .nav-pills .nav-item .nav-link.active {
  background: linear-gradient(90deg, #EF3786 0%, #F5922C 100%) !important;
  color: #fff !important;
  border: none;
}

.portfolio_section .portfolio_box {
  border: 1px solid transparent;
  background-color: #fff;
  margin-bottom: 20px;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.5s ease;
  position: relative;
}

.portfolio_section .portfolio_box:hover {
  border: 1px solid #E81D3C;
}

.portfolio_section .portfolio_box .portfolio_img {
  height: 275px;
  width: 100%;
  position: relative;
}

.portfolio_section .portfolio_box .portfolio_img img {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin: auto;
  max-width: 100%;
  max-height: 100%;
}

.portfolio_section .portfolio_box .portfolio_content {
  padding: 10px 20px;
}

.portfolio_section .portfolio_box .portfolio_content h3 {
  color: #000000;
  font-size: 24px;
  padding: 5px 0;
}

.portfolio_section .portfolio_box .portfolio_content p {
  color: rgba(0, 0, 0, 0.6980392157);
}

.portfolio_section .portfolio_box .portfolio_content .read_more {
  color: #F25459;
  font-weight: 500;
}

.portfolio_section .portfolio_box .portfolio_content .read_more i {
  padding-left: 2px;
}

.portfolio_section .portfolio_box .portfolio_content .read_more:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 99;
}

.portfolio_cat {
  padding: 4px 10px;
  color: #000;
  border: 1px solid #E81D3C;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 10px;
  display: inline-block;
  transition: all 0.5s ease;
}

.portfolio_cat:hover {
  color: #fff;
  background-color: #E81D3C;
}

.client_section {
  padding: 100px 0 70px;
  background-image: url("../images/client_bg.png");
  background-size: cover;
  background-position: bottom;
}

.client_section .clientSwiper {
  padding-top: 50px;
}

.client_section .clientSwiper .client_main_box {
  padding: 30px 60px;
  background-color: #fff;
  position: relative;
  box-shadow: -4px 4px 20px 0px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}

.client_section .clientSwiper .client_main_box .quote_img {
  position: absolute;
  left: -15px;
  top: -17px;
  width: 45px;
}

.client_section .clientSwiper .client_main_box .review_text p {
  color: rgba(0, 0, 0, 0.6980392157);
  font-size: 16px;
}

.client_section .clientSwiper .client_main_box .user_details {
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.client_section .clientSwiper .client_main_box .user_details img {
  height: 40px;
  width: 40px;
  overflow: hidden;
}

.client_section .clientSwiper .client_main_box .user_details .name_box {
  padding-left: 10px;
}

.client_section .clientSwiper .client_main_box .user_details .name_box h5 {
  color: #000;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 5px;
}

.client_section .clientSwiper .client_main_box .user_details .name_box span {
  color: rgba(0, 0, 0, 0.2509803922);
  font-size: 14px;
}

.client_section .clientSwiper .swiper-wrapper {
  padding: 0 15px;
}

.counter_section {
  padding: 70px 0;
}

.counter_section .counter_box {
  text-align: center;
}

.counter_section .counter_box h3 .count-digit {
  font-size: 36px;
  color: #F25459;
}

.counter_section .counter_box .count-title {
  margin-bottom: 0;
  font-size: 16px;
  color: #000000;
}

footer {
  background-color: #2F2F2F;
  padding: 40px 0 0;
}

footer .footer_heading h4 {
  color: #FFFFFF;
  font-size: 22px;
  font-weight: 500;
  padding-bottom: 20px;
  border-bottom: 4px solid #fff;
}

footer p a {
  color: #F25459;
  text-decoration: underline;
}

footer .menu a {
  text-transform: uppercase;
}

footer p {
  color: #fff;
  margin-top: 40px;
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 24px;
}

footer .menu {
  list-style-type: none;
  padding: 0;
  margin-top: 20px;
}

footer .menu a {
  font-size: 14px;
  color: #fff;
  display: block;
  font-weight: 400;
  padding-bottom: 7px;
}

footer .menu a i {
  padding-right: 15px;
}

footer .social_icons {
  padding-top: 20px;
}

footer .social_icons a {
  padding: 0 10px;
}

footer .contact_row {
  margin-top: 30px;
  padding: 30px 0;
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(0, 0, 0, 0.2509803922);
  justify-content: center;
}

footer .contact_row .contact_box {
  padding: 0 30px;
  display: flex;
  align-items: center;
}

footer .contact_row .contact_box p {
  margin: 0;
}

footer .contact_row .contact_box a {
  color: #fff;
}

footer .contact_row .contact_box svg {
  width: 30px;
  padding-right: 10px;
}

.copyright_section {
  background-color: #181818;
  padding: 15px 0;
}

.copyright_section p {
  color: #FFFFFF;
  margin-bottom: 0;
  text-align: center;
}

.about_heading_section {
  background-color: #F1F1F1;
  padding: 200px 0 90px;
}

.about_heading_section h2 {
  color: #F25459;
  font-size: 38px;
  font-weight: 600;
  margin-bottom: 30px;
}

.about_heading_section p {
  color: #000000;
  font-size: 16px;
  width: 70%;
}

.aboutus_section {
  background-color: #F1F1F1;
}

.aboutus_section h2 {
  text-align: center;
  color: #F25459;
  padding-top: 40px;
  padding-bottom: 60px;
}

.aboutus_section img {
  width: 100%;
}

.value_section {
  padding: 70px 0 100px;
  position: relative;
}

.value_section .value_box {
  padding: 10px 10px 40px 10px;
}

.value_section .value_box h5 {
  color: #000000;
  padding-bottom: 10px;
  font-size: 28px;
  font-weight: 600;
}

.value_section .value_box p {
  color: #000000;
  font-size: 16px;
}

.value_section .swiper {
  position: unset;
  padding-top: 30px;
}

.value_section .swiper-button-next,
.value_section .swiper-button-prev {
  top: 20%;
}

.value_section .swiper-button-next:after,
.value_section .swiper-button-prev:after {
  display: none;
}

.value_section .swiper-button-prev,
.value_section .swiper-rtl .swiper-button-next {
  right: 50px;
  left: auto;
}

.servies_section {
  padding: 60px 0 0 0;
  background-color: #EBF5FA;
  position: relative;
}

.servies_section .service_side_bg {
  position: absolute;
  left: 0;
  padding-top: 70px;
  height: 92%;
}

.servies_section .services_box {
  padding: 70px 0;
}

.servies_section .service_box p {
  color: #000000;
  padding: 15px 0;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 0;
  border-bottom: 1px solid #DDDDDD;
}

.servies_section .main_heading {
  margin-bottom: 30px;
}

.servies_section .main_heading h2 {
  color: #F25459;
}

.founter_section {
  padding: 100px 0 70px;
}


.logo_section {
  padding: 40px 0px;
}

.logo_section .title_part h2 {
  font-weight: 600;
  color: #000000;
  font-size: 40px;
}

.logo_section .title_part p {
  margin-bottom: 0;
  color: #999999;
}

.main_logo_box {
  border: 1px solid #DDDDDD;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  border-radius: 12px;
}

.main_logo_box p {
  margin-bottom: 0;
  font-size: 30px;
  color: #B0B0B0;
}

.founter_section .owner_box {
  border-radius: 12px;
  border: 1px solid #000;
  background: #FFF;
  padding: 50px 0 20px 20px;
  position: relative;
}

.founter_section .owner_box .founder_pic {
  position: absolute;
  bottom: 0;
  right: 0;
}

.founter_section .owner_box .owner_text {
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  padding-bottom: 100px;
}

.founter_section .owner_box .name {
  color: #000000;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 2px;
}

.founter_section .owner_box .designation {
  color: #999999;
  font-size: 14px;
}

.common_heading h2 {
  color: #F25459;
  font-size: 38px;
  font-weight: 600;
  margin-bottom: 15px;
}

.about_section {
  padding: 150px 0 70px;
}

.about_section .mail_row {
  display: flex;
  align-items: center;
}

.about_section .mail_row a {
  color: #000000;
  font-size: 16px;
}

.about_section .mail_row .line {
  height: 15px;
  width: 1.2px;
  display: inline-block;
  background-color: #000;
  margin: 0 15px;
}

.about_section .contact_form_part {
  padding-top: 30px;
}

.about_section .contact_form_part .normal_text {
  font-size: 16px;
  color: #000;
  margin-bottom: 7px;
}

.about_section .contact_form_part .form-check {
  padding: 0;
  display: inline-block;
  margin-right: 12px;
  margin-bottom: 12px;
}

.about_section .contact_form_part .form_box {
  padding: 20px 0;
  position: relative;
  border-top: 2px solid #DDDDDD;
}

.about_section .contact_form_part .form_box .validate-has-error {
  color: #DF2322;
  font-size: 12px;
  position: absolute;
  font-weight: 600;
  bottom: 0;
  left: 0;
}

.about_section .contact_form_part .form_box p {
  font-size: 18px;
  margin-bottom: 7px;
}

.about_section .contact_form_part .form_box input,
.about_section .contact_form_part .form_box textarea {
  font-size: 16px;
  width: 100%;
  font-weight: 400;
  border: 0;
}

.about_section .contact_form_part .form_box input:focus,
.about_section .contact_form_part .form_box textarea:focus {
  outline: none;
}

.about_section .contact_form_part .form_box input::-moz-placeholder,
.about_section .contact_form_part .form_box textarea::-moz-placeholder {
  color: #999999;
}

.about_section .contact_form_part .form_box input::placeholder,
.about_section .contact_form_part .form_box textarea::placeholder {
  color: #999999;
}

.about_section [type=checkbox] {
  display: none;
}

.about_section .form-check-label {
  border: 1px solid #DF2322;
  border-radius: 4px;
  color: #000;
  font-size: 16px;
  padding: 5px 12px;
  cursor: pointer;
}

.about_section .form-check-input:checked+.form-check-label {
  background-color: #F25459;
  color: #fff;
}

.about_section .radio_buttons input {
  display: none;
}

.about_section .profile_area {
  background-color: #EBF5FA;
  padding: 15px 20px;
  border-radius: 12px;
}

.about_section .profile_area .profile_img {
  width: 50px;
}

.about_section .profile_area .name {
  padding-top: 20px;
}

.about_section .profile_area .name h5 {
  color: #000;
  margin-bottom: 0;
  margin-bottom: 5px;
  font-weight: 400;
}

.about_section .profile_area .name h5 span {
  color: #DF2322;
}

.about_section .profile_area .desc p {
  font-weight: 400;
  color: #000000;
  padding: 20px 0;
}

.about_section .profile_area .desc a {
  color: #DF2322;
  text-decoration: underline;
}

.project_detail_section {
  padding: 150px 0 50px;
}

.project_detail_section .desc_part p {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 0;
}

.project_detail_section .all_cat_col {
  display: flex;
  justify-content: end;
  align-items: end;
}

.project_detail_section .all_cat_col .portfolio_cat {
  margin-left: 5px;
}

.project_detail_section .main_part {
  padding-top: 25px;
}

.project_detail_section .product_detail_box {
  padding: 40px 0;
}

.project_detail_section .product_detail_box h2 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 25px;
}

.project_section {
  padding: 150px 0 50px;
}

.project_section .banner_heading {
  padding-right: 100px;
}

.project_section .banner_heading p {
  color: #000000;
  padding-top: 10px;
}

@media (max-width: 767px) {
  .about_heading_section {
    padding: 120px 0 15px;
  }

  .about_heading_section h2 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 10px;
  }

  .about_heading_section p {
    font-size: 14px;
    width: 100%;
  }

  .contact_section .col-lg-8 {
    order: 1;
  }

  .contact_section .col-lg-4 {
    order: 0;
    margin-bottom: 25px;
  }

  .project_detail_section .all_cat_col {
    justify-content: center;
    margin-top: 20px;
  }

  .project_detail_section .product_detail_box {
    padding: 40px 0 0;
  }

  .project_detail_section p {
    font-size: 14px;
  }

  .project_detail_section .product_detail_box h2 {
    text-align: center;
    font-size: 22px;
    margin-bottom: 10px;
  }

  .project_detail_section .desc_part p {
    font-size: 14px;
  }

  .contact_section {
    padding: 120px 0 70px;
  }

  .aboutus_section h2 {
    padding-top: 25px;
    padding-bottom: 30px;
  }

  .aboutus_section img {
    width: 100%;
  }

  .portfolio_section .portfolio_box .portfolio_content .read_more {
    font-size: 14px;
  }

  .aboutus_section h2 {
    font-size: 20px;
    font-weight: 500;
  }

  .value_section .value_box h5 {
    font-size: 18px;
  }

  .project_section {
    padding: 50px 0;
  }

  .project_section .col-lg-6 {
    order: 1;
  }

  .project_section .col-lg-4 {
    order: 0;
  }

  .project_section .banner_heading {
    padding-right: 0;
  }

  .common_heading h2 {
    font-size: 20px;
    font-weight: 500;
  }

  .project_section .banner_heading p {
    font-size: 14px;
  }

  .portfolio_section .portfolio_box .portfolio_img {
    height: 230px;
  }

  .portfolio_section .portfolio_box .portfolio_content p {
    font-size: 14px;
  }

  .portfolio_section .portfolio_box .portfolio_content h3 {
    color: #000000;
    font-size: 18px;
    padding: 5px 0 0;
  }

  .portfolio_cat {
    font-size: 12px;
  }

  .value_section .value_box p {
    font-size: 14px;
  }

  .value_section .value_box {
    padding: 10px 10px 10px 10px;
  }

  .value_section {
    padding: 20px 0 50px;
  }

  .servies_section .service_side_bg {
    display: none;
  }

  .servies_section .services_box {
    padding: 0;
  }

  .servies_section .service_box p {
    padding: 10px 0;
    font-size: 16px;
    font-weight: 400;
  }

  .main_heading h2 {
    font-size: 22px;
    line-height: 32px;
    font-weight: 500;
  }

  .founter_section {
    padding: 50px 0;
  }

  .founter_section .owner_box .owner_text {
    font-size: 14px;
    font-weight: 500;
  }

  .founter_section .owner_box .founder_pic {
    width: 130px;
  }

  .founter_section .owner_box .owner_text {
    padding-bottom: 50px;
  }

  .founter_section .owner_box {
    padding: 25px 65px 25px 25px;
  }

  .banner_section {
    padding: 150px 0 50px 0;
  }

  .banner_section .part_text p {
    font-size: 12px;
    padding: 0px;
  }

  .banner_section .part_img {
    padding-top: 40px;
  }

  .banner_section .part_img img {
    width: 100%;
  }

  .main_btn {
    padding: 10px 25px;
    border-radius: 5px;
    font-size: 12px;
  }

  .how_work_section {
    padding: 60px 0;
    background-size: cover;
  }

  .how_work_section .main_heading {
    padding-bottom: 0;
  }

  .how_work_section .content_box {
    padding: 20px 70px;
  }

  .how_work_section .image_box {
    text-align: center;
    padding: 0 !important;
    padding-bottom: 20px;
  }

  .how_work_section .image_box img {
    width: 65% !important;
  }

  .how_work_section .content_box {
    padding: 20px !important;
  }

  .how_work_section .content_box h4 {
    font-size: 18px;
  }

  .how_work_section .content_box p {
    padding-top: 5px;
    font-size: 14px;
  }

  .how_work_section .mobile_order0 {
    order: 0;
  }

  .how_work_section .mobile_order1 {
    order: 1;
  }

  .how_work_section .work_main_part .how_work_main_line {
    display: none;
  }

  .content_box {
    padding: 20px 70px;
  }

  .we_serve_section {
    padding: 30px 0;
  }

  .we_serve_section .serve_mainbox .text_box h4 {
    font-size: 16px;
    margin-bottom: 0;
    font-weight: 500;
  }

  .we_serve_section .serve_mainbox .img_box svg {
    width: 60px;
    height: 60px;
  }

  .portfolio_section {
    padding: 40px 0 40px;
  }

  .portfolio_section .nav-pills .nav-item .nav-link {
    margin-bottom: 15px;
  }

  .portfolio_section .nav-pills {
    padding: 20px 0 0px 0;
  }

  .client_section {
    padding: 40px 0 70px;
  }

  .client_section .clientSwiper .client_main_box {
    padding: 20px 25px;
  }

  .client_section .clientSwiper .client_main_box .review_text p {
    font-size: 14px;
    margin-bottom: 0;
  }

  .client_section .clientSwiper {
    padding-right: 20px;
  }

  .counter_section {
    padding: 30px 0;
  }

  .counter_section .counter_box {
    margin-bottom: 20px;
  }

  footer .footer_heading h4 {
    font-size: 16px;
    padding-top: 30px;
    font-weight: 400;
    padding-bottom: 10px;
    border-bottom: 1px solid #fff;
  }

  footer p {
    margin-top: 20px;
    font-size: 12px;
    margin-bottom: 20px;
    line-height: 20px;
  }

  footer .social_icons img {
    width: 20px;
  }

  footer .social_icons a {
    padding: 0 5px;
  }

  footer .social_icons {
    padding-top: 0;
  }

  footer .menu a {
    font-size: 12px;
  }

  footer .contact_row {
    margin-top: 20px;
    padding: 10px 0;
    flex-wrap: wrap;
    justify-content: start;
  }

  .copyright_section p {
    font-size: 12px;
  }

  .navbar-toggler {
    border: 0;
  }

  .navbar-toggler:focus {
    box-shadow: none;
    outline: none;
  }

  .navbar-nav {
    padding-top: 30px;
  }

  .header-scrolled {
    border-bottom: 1px solid #ddd;
  }
}

@media (min-width: 767px) and (max-width: 1199px) {
  .how_work_section .work_main_part .how_work_main_line {
    display: none;
  }

  .aboutus_section img {
    width: 100%;
  }

  .about_heading_section {
    padding: 130px 0 10px;
  }

  .about_heading_section h2 {
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 15px;
  }

  .about_heading_section p {
    font-size: 14px;
    width: 100%;
  }

  .aboutus_section h2 {
    font-size: 28px;
    font-weight: 500;
    padding-top: 30px;
    padding-bottom: 40px;
  }

  .project_section {
    padding: 50px 0;
  }

  .project_section .col-lg-6 {
    order: 1;
  }

  .project_section .col-lg-4 {
    order: 0;
  }

  .project_section .banner_heading {
    padding-right: 0;
  }

  .portfolio_section .portfolio_box .portfolio_content p {
    font-size: 14px;
  }

  .portfolio_section .portfolio_box .portfolio_content h3 {
    font-size: 20px;
  }

  .portfolio_section .portfolio_box .portfolio_content .read_more {
    font-size: 14px;
  }

  .portfolio_cat {
    font-size: 12px;
  }

  .common_heading h2 {
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 0;
  }

  .project_section .banner_heading p {
    font-size: 14px;
  }

  .value_section .value_box h5 {
    font-size: 24px;
    font-weight: 500;
  }

  .main_heading h2 {
    font-size: 28px;
  }

  .value_section .value_box p {
    font-size: 14px;
  }

  .value_section .value_box {
    padding: 10px 10px 15px 10px;
  }

  .servies_section {
    padding: 30px 0 0 0;
  }

  .servies_section .service_side_bg {
    display: none;
  }

  .servies_section .services_box {
    padding: 0;
  }

  .founter_section {
    padding: 70px 0 70px;
  }

  .founter_section .owner_box {
    padding: 25px 0 20px 20px;
  }

  .founter_section .owner_box .owner_text {
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    padding-bottom: 65px;
  }

  .founter_section .owner_box .founder_pic {
    width: 150px;
  }

  .value_section {
    padding: 50px 0;
  }

  .navbar-toggler {
    border: 0;
  }

  .navbar-toggler:focus {
    box-shadow: none;
    outline: none;
  }

  .navbar-nav {
    padding-top: 30px;
  }

  .header-scrolled {
    border-bottom: 1px solid #ddd;
  }

  .banner_section .part_img img {
    width: 100%;
  }

  .how_work_section {
    padding: 60px 0;
    background-size: cover;
  }

  .how_work_section .main_heading {
    padding-bottom: 0;
  }

  .how_work_section .content_box {
    padding: 20px 70px;
  }

  .how_work_section .image_box {
    text-align: center;
    padding: 0 !important;
    padding-bottom: 20px;
  }

  .how_work_section .image_box img {
    width: 65% !important;
  }

  .how_work_section .content_box {
    padding: 20px !important;
  }

  .how_work_section .content_box h4 {
    font-size: 18px;
  }

  .how_work_section .content_box p {
    padding-top: 5px;
    font-size: 14px;
  }

  .how_work_section .mobile_order0 {
    order: 0;
  }

  .how_work_section .mobile_order1 {
    order: 1;
  }

  .how_work_section .work_main_part .how_work_main_line {
    display: none;
  }

  .client_section .clientSwiper {
    padding-right: 20px;
  }

  .counter_section {
    padding: 30px 0;
  }

  .counter_section .counter_box {
    margin-bottom: 20px;
  }

  footer .footer_heading h4 {
    font-size: 16px;
    padding-top: 30px;
    font-weight: 400;
    padding-bottom: 10px;
    border-bottom: 1px solid #fff;
  }

  footer p {
    margin-top: 20px;
    font-size: 12px;
    margin-bottom: 20px;
    line-height: 20px;
  }

  footer .social_icons img {
    width: 20px;
  }

  footer .social_icons a {
    padding: 0 5px;
  }

  footer .social_icons {
    padding-top: 0;
  }

  footer .menu a {
    font-size: 12px;
  }

  footer .contact_row {
    margin-top: 20px;
    padding: 10px 0;
  }

  .copyright_section p {
    font-size: 12px;
  }
}

@media (min-width: 1199px) and (max-width: 1280px) {
  .how_work_section .image_box img {
    margin-top: -165px;
  }

  .how_work_section {
    background-repeat: no-repeat;
  }

  .about_heading_section {
    padding: 150px 0 20px;
  }

  .value_section .value_box h5 {
    font-size: 20px;
    font-weight: 500;
  }

  .about_heading_section h2,
  .aboutus_section h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .value_section {
    padding: 40px 0 50px;
  }

  .banner_section img {
    width: 100%;
  }

  .how_work_section {
    padding: 70px 0 0;
  }

  .we_serve_section {
    padding: 0;
  }

  .how_work_section .third_box {
    padding: 100px 170px 230px;
  }

  .how_work_section .second_img {
    padding: 70px 0 0 90px !important;
  }

  .how_work_section .content_box {
    padding: 150px 170px 100px;
  }

  .how_work_section .content_box.third_box {
    padding: 85px 170px 160px;
  }

  .main_heading h2 {
    font-size: 28px;
    font-weight: 500;
  }

  .we_serve_section .serve_mainbox {
    padding: 30px;
  }

  .we_serve_section .serve_mainbox .text_box h4 {
    font-size: 18px;
    font-weight: 500;
  }

  .portfolio_section .portfolio_box .portfolio_content h3 {
    font-size: 20px;
  }
}

@media (min-width: 1281px) and (max-width: 1920px) {
  .banner_section img {
    width: 100%;
  }

  .value_section .value_box h5 {
    font-size: 20px;
    font-weight: 500;
  }

  .value_section {
    padding: 40px 0 50px;
  }

  .we_serve_section .serve_mainbox {
    padding: 40px;
  }

  .we_serve_section .serve_mainbox .text_box h4 {
    font-size: 18px;
    font-weight: 500;
  }

  .main_heading h2 {
    font-size: 30px;
  }

  .portfolio_section .portfolio_box .portfolio_content h3 {
    font-size: 20px;
  }
}

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




.mini_heading h4 {
  color: #000000;
  font-weight: 600;
}

.mini_heading .main_first {
    padding: 25px 0 25px 40px;
    font-size: 26px;
    font-weight: 500;
    position: relative;
}

.mini_heading .main_first .one_text {
    position: absolute;
    top: -15px;
    bottom: 0;
    font-size: 80px;
    font-weight: 700;
    color: #0000001A;
    left: 0;
}

.last_tab {
  margin-top: 100px;
}


.text_main .second_2{
  color: #000000;
  margin-bottom: 0;
  font-weight: 600;
  font-size: 18px;
}

.dot {
  list-style-type: disc;
  padding-left: 1.5rem; /* optional: indent for bullets */
}


.project_detail_section .main_data {
  font-size: 25px;
  font-weight: 600;

  margin-bottom: 0;
  margin-top: 10px;
}