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

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

@font-face {
  font-family: "icomoon";
  src: url("../fonts/icomoon.eot");
  src: url("../fonts/icomoon.eot?#iefix") format("embedded-opentype"),
    url("../fonts/icomoon.woff") format("woff"),
    url("../fonts/icomoon.ttf") format("truetype"),
    url("../fonts/icomoon.svg#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: fallback;
}

@font-face {
  font-family: "tobias-light";
  src: url("../fonts/heading/Tobias-Light.woff");
  font-weight: normal;
  font-style: normal;
  font-display: fallback;
}

@font-face {
  font-family: "tobias-thin";
  src: url("../fonts/heading/Tobias-Thin.woff");
  font-weight: normal;
  font-style: normal;
  font-display: fallback;
}

:root {
  --primary-color: #048ba8;
  --secondary-color: #ed1c24;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  color: #000;
  font-weight: 400;
  width: 100%;
  overflow-x: hidden;
  font-display: fallback;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

a {
  text-decoration: none;
}

p {
  font-size: 16px;
  font-weight: 400;
}

.container-fluid2 {
  padding-left: 60px;
  padding-right: 60px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.swiper-container {
  width: 100%;
  height: 80vh;
  position: relative;
  top: 0;
  left: 0;
  overflow-x: hidden;
}

.swiper-slide {
  width: 100%;
  height: 80vh;
  position: relative;
}

.swiper-slide.slide-1 {
  background-image: linear-gradient(to right bottom,
      rgb(15 84 49 / 96%),
      rgb(47 88 67 / 49%)),
    url(../images/slider/slide-1.webp);
  background-size: cover;
  background-position: center;
}

.swiper-slide.slide-2 {
  background-image: linear-gradient(to right bottom,
      rgb(15 84 49 / 96%),
      rgb(47 88 67 / 49%)),
    url(../images/slider/slide-2.webp);
  background-size: cover;
  background-position: center;
}

.swiper-slide.slide-3 {
  background-image: linear-gradient(to right bottom,
      rgb(15 84 49 / 96%),
      rgb(47 88 67 / 49%)),
    url(../images/slider/slide-3.webp);
  background-size: cover;
  background-position: center;
}

.swiper-slide.slide-4 {
  background-image: linear-gradient(to right bottom,
      rgb(15 84 49 / 96%),
      rgb(47 88 67 / 49%)),
    url(../images/slider/slide-4.webp);
  background-size: cover;
  background-position: center;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-contant-container {
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  width: 80%;
}

.slide-contant-container h1 {
  color: #fff;
  font-size: 50px;
  text-shadow: 1px 2px 3px rgba(0, 0, 0, 0.4);
}

.slide-contant-container p {
  color: #fff;
  width: 60%;
  margin: 0 auto;
}

.button-group {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}

.default-btn {
  padding: 8px 20px;
  display: inline-block;
  width: 150px;
  text-align: center;
  box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.2);
}

.read-more-btn {
  background-color: #fff;

  color: #048ba8;
  margin-right: 20px;
}

.read-more-btn:hover {
  background-color: #ed1c24;
  color: #fff;
  text-decoration: none;
}

.contact-now-btn {
  background-color: #ed1c24;
  color: #fff;
}

.contact-now-btn:hover {
  background-color: #fff;
  color: #048ba8;
  text-decoration: none;
}

/* header start */
.top-header {
  background-color: #e00a18;
  z-index: 999999;
}

.top-header ul {
  list-style: none;
  display: flex;
  /* justify-content: space-between; */
}

.top-header ul li {
  padding: 5px 0;
}

.top-header ul li:first-child {
  margin-right: 30px;
}

.top-header ul li p a {
  color: #fff;
  font-size: 15px;
}

.top-header p {
  margin-bottom: 0;
}

.top-social-container {
  display: flex;
  justify-content: flex-end;
  padding-top: 5px;
}

.top-social-container a {
  margin-right: 5px;
  /* padding: 5px 0px; */
  width: 40px;
  height: 40px;
  display: grid;
  place-content: center;
  color: #fff;
  border: none;
  outline: none;
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: 50%;
}

.top-social-container a:hover {
  border-radius: 50%;
  background-color: #fff;
  color: #000;
}

.top-social-container a.facebook {
  background-color: #1877f2;
}

.top-social-container a.twitter {
  background-color: #1da1f2;
}

.top-social-container a.pinterest {
  background-color: #bd081c;
}

.top-social-container a.instagram {
  background-color: #e4405f;
}

.top-social-container a.linkedin {
  background-color: #0a66c2;
}

.top-social-container a.skype {
  background-color: #00aff0;
}

.top-social-container a.facebook:hover,
.top-social-container a.twitter:hover,
.top-social-container a.pinterest:hover,
.top-social-container a.linkedin:hover {
  border-radius: 50%;
  background-color: #fff;
  color: #000;
}

.main-navigation {
  /* position: absolute;
  top: 0;
  left: 0; */
  z-index: 999999;
  width: 100%;
  padding: 10px 0;
  /* margin-top: 20px; */
  /* background-color: #ed1c24 !important; */
  background-color: #fff !important;
}

/* .main-navigation .bg-transparent {
  background-color: #048ba8 !important;

} */

.navbar {
  padding: 0;
}

.main-navigation .nav-link {
  color: #000 !important;
  margin-right: 20px;
  text-transform: uppercase;
  font-size: 18px;
  border: 1px solid transparent;
}

/* .main-navigation .nav-link:hover {
  background-color: var(--secondary-color);
 } */

.main-navigation .nav-link:hover {
  border-top: 1px solid var(--secondary-color);
  border-bottom: 1px solid var(--secondary-color);
}

.main-logo-text span {
  font-size: 30px;
}

.fixed-top {
  /* background-color: #ed1c24 !important; */
  background-color: #fff !important;
  padding: 0px 20px;
}

.dropdown:hover .dropdown-menu {
  /* display: block; */
  margin-top: 0;
}

/* header end */

/* Section 1 style start */
.section-1 {
  margin-top: 50px;
}

.section-1 .content-container {
  /* margin: 30px 0px; */
  padding: 20px;
  box-shadow: 1px 1px 0px 2px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  min-height: 375px;
}

.section-1 .icon-container {
  display: grid;
  place-content: center;
  height: 80px;
}

.section-1 .icon-container img {
  /* width: 80px;
  margin-bottom: 10px;
  filter: invert(1); */
  width: 100%;
  height: 72%;
  margin-bottom: 0px;
  filter: invert(1);
  object-fit: contain;
}

.section-1 .title h2 {
  /* color: #fff; */
  /* color: var(--secondary-color); */
  text-align: center;
  letter-spacing: 1px;
}

.section-1 .description p {
  color: rgb(94, 94, 94);
  text-align: center;
  margin-top: 10px;
}

/* Section 1 style end */

.section-y-margin-80 {
  margin: 80px 0;
}

.section-y-margin-40 {
  margin: 40px 0;
}

.content-center {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.section-title p {
  background-color: var(--secondary-color);
  color: #fff;
  padding: 2px 10px;
}

.section-title h2 {
  /* font-size: 40px; */
  text-transform: uppercase;
}

.dash {
  width: 200px;
  height: 1px;
  background-color: var(--secondary-color);
}

/* service offer-section start */
.service-offer-section {
  /* background-image: url(../images/bg/bg.png); */
  /* background-image: url(../images/bg/bg-2.jpg); */
  background-position: center;
  background-size: cover;
  padding-top: 50px;
  background-color: #0e2a47;
}

.service-box {
  margin-bottom: 50px;
  box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.4);
  padding: 20px;
  background-color: #fff;
}

.service-box .service-icon-box {
  width: 100px;
  height: 100px;
  overflow: hidden;
  border-radius: 50%;
  margin-bottom: 10px;
}

.service-box .service-icon-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-box .service-heading {
  margin-bottom: 10px;
  color: var(--primary-color);
}

.service-box .service-heading h2 {
  font-size: 24px;
}

.service-box .service-des {
  color: rgb(94, 94, 94);
  text-align: center;
}

/* service offer-section end */

/* stat section start */
.stat-section {
  /* background-image: url(../images/bg/bg-2.jpg); */
  background-position: center;
  background-size: cover;
  padding: 50px 0;
}

.stat-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 50px 0;
  border: 1px solid lightgray;
  padding: 20px 10px;
}

.stat-content .stat-counter {
  display: flex;
  align-items: center;
}

.stat-content .stat-counter .counter {
  margin-right: 5px;
  color: #ed1c24;
}

.stat-content .stat-counter span {
  font-size: 20px;
  color: var(--primary-color);
}

.stat-heading h4 {
  font-weight: normal;
}

/* stat section end */

/* get-a-quote start */

.get-a-quote {
  background-image: url(../images/bg/bg-3.jpg);
  background-position: center;
  background-size: cover;
  padding: 50px 0;
}

.section-full-title {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 80%;
  margin: 0 auto;
  text-align: center;
  color: #000;
}

.section-full-title h2 {
  font-family: "tobias-light", sans-serif;
  letter-spacing: 1px;
}

.get-a-quote-form {
  background-color: rgba(255, 255, 255, 0.884);
  margin: 50px 0 0;
  padding: 50px;
}

.get-a-quote-form .form-control:focus {
  box-shadow: none;
}

.get-a-quote-btn {
  background-color: var(--primary-color);
  border: none;
  outline: none;
  color: #fff;
  padding: 5px 30px;
}

/* get-a-quote end */

/* CTA start */

.cta-section {
  background-image: url(../images/bg/bg-4.svg);
  padding: 70px 0;
  background-position: center;
  background-size: cover;
}

.cta-heading {
  color: #fff;
  text-align: center;
  text-transform: uppercase;
}

.cta-heading h2 {
  font-weight: 300;
}

.cta-des p {
  font-size: 15px;
  font-style: italic;
  color: #fff;
  text-align: center;
}

.cta-btn-wrapper {
  display: flex;
  justify-content: center;
}

.cta-btn {
  background-color: #fff;
  display: inline-block;
  padding: 5px 20px;
  color: #333;
  border: 1px solid #fff;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  border: 1px solid #fff;
  background-color: transparent;
  color: #fff;
  text-decoration: none;
}

/* CTA end */

/* why choose us start */
.why-choose-us {
  margin: 80px 0;
}

.why-choose-us-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.why-choose-us-box.first-box,
.why-choose-us-box.second-box {
  position: relative;
}

.why-choose-us-box.first-box::after {
  position: absolute;
  top: 30px;
  right: -100px;
  content: url(../images/icon/arrow-1.png);
}

.why-choose-us-box.second-box::after {
  position: absolute;
  top: 50px;
  right: -100px;
  content: url(../images/icon/arrow-2.png);
}

.why-choose-icon-box {
  width: 100px;
  height: 100px;
  border: 1px dashed rgb(155, 155, 155);
  border-radius: 50%;
  padding: 15px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.why-choose-icon-box img {
  width: 80%;
  height: 80%;
}

.why-choose-heading {
  margin-top: 20px;
}

.why-choose-heading p {
  font-size: 18px;
  font-weight: 500;
}

.why-choose-des p {
  font-size: 14px;
  color: #666;
  margin-bottom: 0;
  text-align: center;
  font-weight: normal;
}

/* why choose us end */

/* Testimonial start */

.testimonial_section {
  margin-top: 50px;
}

.testimonial_section .about_content {
    /*background-color: #8d8119;*/
    background-color: #19639B;
  padding-top: 77px;
  padding-right: 210px;
  padding-bottom: 62px;
  position: relative;
}

.testimonial_section .about_content .background_layer {
  /*background-color: #8d8119;*/
  background-color: #19639B;
  width: auto;
  margin-left: -200px;
  right: 0;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}

.testimonial_section .about_content .layer_content {
  position: relative;
  z-index: 9;
  height: 100%;
}

.testimonial_section .about_content .layer_content .section_title {
  margin-bottom: 24px;
  position: relative;
}

.testimonial_section .about_content .layer_content .section_title:after {
  display: block;
  clear: both;
  content: "";
}

.testimonial_section .about_content .layer_content .section_title h5 {
  color: #fff;

  font-weight: 400;
  font-size: 15px;
  line-height: 28px;
  color: #818a8f;
  margin-top: -5px;
  margin-bottom: 6px;
}

.testimonial_section .about_content .layer_content .section_title h2 {
  font-weight: 300;
  font-size: 45px;
  line-height: 50px;
  padding-bottom: 51px;
  margin-bottom: 0px;
  color: #fff;
}

.testimonial_section .about_content .layer_content .section_title h2 strong {
  font-weight: 600 !important;
  width: 100%;
  display: block;
}

.testimonial_section .about_content .layer_content .section_title .heading_line {
  position: relative;
}

.testimonial_section .about_content .layer_content .section_title .heading_line span {
  transition: all 0.5s ease-in-out 0s;
  position: relative;
}

.testimonial_section .about_content .layer_content .section_title .heading_line span:after {
  content: "";
  right: auto;
  left: 69px;
  position: absolute;
  bottom: 28px;
  width: 17px;
  margin-left: 0;
  border-bottom-width: 3px;
  border-bottom-color: #cacaca;
  border-bottom-style: solid;
}

.testimonial_section .about_content .layer_content .section_title .heading_line:after {
  content: "";
  left: 1%;
  margin-left: 0;
  position: absolute;
  bottom: 28px;
  width: 59px;
  border-bottom-width: 3px;
  border-bottom-style: solid;
  border-bottom-color: #216a52;
}

.testimonial_section .about_content .layer_content .section_title p {
  color: #fff;
  margin: 0 0 15px;
}

.testimonial_section .about_content .layer_content a {
  color: #fff;
  text-transform: capitalize;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}

.testimonial_section .about_content .layer_content a i {
  font-size: 18px;
  vertical-align: middle;
}

.testimonial_section .about_content .layer_content a:hover {
  color: #216a52;
}

.testimonial_section .testimonial_box {
  margin-top: 60px !important;
  position: relative;
}

.testimonial_section .testimonial_box .testimonial_container {
  /*background-color: #216a52;*/
  background-color: #e00a18;
  margin-left: -170px !important;
  position: relative;
  width: 164%;
}

.testimonial_section .testimonial_box .testimonial_container .background_layer {
    /*background-color: #216a52;*/
    background-color: #e00a18;
  width: auto;
  margin-right: -200px;
  right: 0;
  /* background-image: url(../images/map.png); */
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
}

.testimonial_section .testimonial_box .testimonial_container .layer_content {
  position: relative;
  z-index: 9;
  height: 100%;
}

.testimonial_section .testimonial_box .testimonial_container .layer_content .testimonial_owlCarousel {
  display: block;
  position: relative;
}

.testimonial_section .testimonial_box .testimonial_container .layer_content .testimonial_owlCarousel .testimonials {
  margin: 10px 0 10px 0;
  padding: 62px 0px 72px 50px;
  position: relative;
  text-align: center;
}

.testimonial_section .testimonial_box .testimonial_container .layer_content .testimonial_owlCarousel .testimonials .testimonial_content {
  box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.13);
  margin-left: 150px;
  margin-top: 69px;
  padding: 45px 40px 45px 40px;
  z-index: 1;
  position: relative;
  background-color: #fff;
  transition: all 0.5s ease-in-out 0s;
  margin-right: 100px;
}

.testimonial_section .testimonial_box .testimonial_container .layer_content .testimonial_owlCarousel .testimonials .testimonial_content .testimonial_caption {
  margin-bottom: 15px;
  position: relative;
}

.testimonial_section .testimonial_box .testimonial_container .layer_content .testimonial_owlCarousel .testimonials .testimonial_content .testimonial_caption:after {
  content: "";
  width: 30px;
  display: block;
  height: 2px;
  text-align: center;
  left: 46%;
  margin-top: 6px;
    /*background-color: #216a52;*/
    background-color: #e00a18;
  position: absolute;
}

.testimonial_section .testimonial_box .testimonial_container .layer_content .testimonial_owlCarousel .testimonials .testimonial_content .testimonial_caption h6 {
  padding-top: 0;
  margin-bottom: -5px;
  font-size: 19px;
  font-weight: 600;
  line-height: 24px;
  color: #020d26;
}

.testimonial_section .testimonial_box .testimonial_container .layer_content .testimonial_owlCarousel .testimonials .testimonial_content .testimonial_caption span {
  font-size: 12px;
  color: #9f9f9f;
  margin: 0;
}

.testimonial_section .testimonial_box .testimonial_container .layer_content .testimonial_owlCarousel .testimonials .testimonial_content p {
  padding: 0;
  margin: 0;
  padding-top: 10px;
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
  color: #5d6576;
  font-style: italic;
}

.testimonial_section .testimonial_box .testimonial_container .layer_content .testimonial_owlCarousel .testimonials .images_box .testimonial_img {
  border: none;
  position: absolute;
  top: 0;
  left: 55px;
  top: 80px;
}

.testimonial_section .testimonial_box .testimonial_container .layer_content .testimonial_owlCarousel .testimonials .images_box .testimonial_img img {
  border: 5px solid #fff;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  /* width: 35%; */
  width: 186px;
  height: 186px;
}

.testimonial_section .testimonial_box .testimonial_container .owl-nav .owl-prev {
  position: absolute;
  top: 165px;
  right: 42px;
  border-radius: 0;
  background: #216a52;
  display: block;
  outline: 0;
  width: 34px;
  line-height: 34px;
  height: 34px;
  color: #fff;
  font-size: 23px;
  margin-top: -20px;
  transition: all 0.3s ease-in-out;
}

.testimonial_section .testimonial_box .testimonial_container .owl-nav .owl-prev:hover {
  background: #020d26;
}

.testimonial_section .testimonial_box .testimonial_container .owl-nav .owl-next {
  position: absolute;
  top: 165px;
  right: 5px;
  border-radius: 0;
  display: block;
    /*background-color: #216a52;*/
    background-color: #e00a18;
  outline: 0;
  width: 34px;
  text-align: center;
  line-height: 34px;
  height: 34px;
  color: #fff;
  font-size: 23px;
  margin-top: -20px;
  transition: all 0.3s ease-in-out;
}

.testimonial_section .testimonial_box .testimonial_container .owl-nav .owl-next:hover {
  background: #020d26;
}

@media all and (max-width: 991px) {
  .testimonial_section .about_content {
    padding-right: 15px !important;
  }

  .testimonial_section .about_content .background_layer {
    width: 200% !important;
  }

  .testimonial_section .testimonial_box {
    margin-top: 0 !important;
  }

  .testimonial_section .testimonial_box .background_layer {
    width: 200% !important;
    margin-left: -200px;
  }

  .testimonial_section .testimonial_box .about_content {
    padding-left: 15px !important;
    padding-right: 15px !important;
    margin-top: 28% !important;
  }

  .testimonial_section .testimonial_box .testimonial_container {
    margin-left: -15px !important;
  }

  .testimonial_section .testimonial_box .testimonial_container .testimonials {
    margin: 0px 0 20px 0;
  }

  .testimonial_section .testimonial_box .testimonial_container .testimonials .testimonial_content {
    margin-left: -36px !important;
  }

/*  .testimonial_section .testimonial_box .testimonial_container .testimonials .images_box {
    display: none;
  }*/
}

/* Testimonial end */

/* our process start */
.our-process {
  /* margin: 80px 0; */
  padding: 50px 0;
}

.img-container {
  border: 1px solid lightgray;
  padding: 10px;
}

.our-process .content-heading {
  margin-bottom: 20px;
}

.our-process .content-des {
  margin-bottom: 20px;
  padding: 0px 20px;
  border-left: 2px solid orangered;
}

.our-process .content-des p {
  margin-bottom: 0;
  font-size: 15px;
  color: #666;
  text-align: justify;
}

.our-process .get-in-touch-btn {
  background-color: var(--primary-color);
  border: 1px solid transparent;
  display: inline-block;
  color: #fff;
  padding: 5px 30px;
  margin-left: 20px;
  transition: all 0.3s ease;
}

.our-process .get-in-touch-btn:hover {
  background-color: transparent;
  border: 1px solid var(--primary-color);
  display: inline-block;
  color: var(--primary-color);
  text-decoration: none;
}

.faq-nav {
  flex-direction: column;
  margin: 0 0 32px;
  border-radius: 2px;
  border: 1px solid #ddd;
  box-shadow: 0 1px 5px rgba(85, 85, 85, 0.15);
}

.faq-nav .nav-link {
  position: relative;
  display: block;
  margin: 0;
  padding: 13px 16px;
  background-color: #fff;
  border: 0;
  border-bottom: 1px solid #ddd;
  border-radius: 0;
  color: #616161;
  transition: background-color 0.2s ease;
}

.faq-nav .nav-link:hover {
  background-color: var(--primary-color);
  color: #fff;
  border-left: 5px solid var(--secondary-color);
}

.faq-nav .nav-link.active {
  background-color: var(--primary-color);
  font-weight: 500;
  color: #fff;
  border-left: 5px solid var(--secondary-color);
}

.faq-nav .nav-link:last-of-type {
  border-bottom-left-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom: 0;
}

.faq-nav .nav-link i.mdi {
  margin-right: 5px;
  font-size: 18px;
  position: relative;
}

.tab-content {
  box-shadow: 0 1px 5px rgba(85, 85, 85, 0.15);
}

.tab-content .card {
  border-radius: 0;
}

.tab-content .card-header {
  padding: 15px 16px;
  border-radius: 0;
  background-color: #f6f6f6;
}

.tab-content .card-header h5 {
  margin: 0;
}

.tab-content .card-header h5 button {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.87);
  text-align: left;
  white-space: normal;
}

.tab-content .card-header h5 button:hover,
.tab-content .card-header h5 button:focus,
.tab-content .card-header h5 button:active,
.tab-content .card-header h5 button:hover:active {
  text-decoration: none;
}

.tab-content .card-body p {
  color: #616161;
}

.tab-content .card-body p:last-of-type {
  margin: 0;
}

.accordion>.card:not(:first-child) {
  border-top: 0;
}

.collapse.show .card-body {
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

/* our process end */
/* slider-bottom-wrapper start */
.slide-bottom-content {
  display: flex;
  align-items: center;
  padding: 10px 0px;
}

.slide-bottom-content.border-right {
  border-right: 2px solid #fff;
}

.slide-bottom-content .slide-bottom-icon {
  margin-right: 20px;
  font-size: 40px;
  color: #ffff;
}

.slide-bottom-content .slide-bottom-icon span {
  font-size: 30px;
  color: #fff;
}

.slide-bottom-content .heading {
  text-transform: uppercase;
  color: #fff;
}

.slide-bottom-content .heading span {
  display: block;
  margin-bottom: 0;
  color: #fff;
}

.slider-bottom-wrapper {
  background-color: #ed1c24;
}

.icon.mobile::before {
  content: "\e958";
  font-family: "icomoon";
  font-size: 40px;
  color: #ffffff;
}

.go-to-top .icon-box .fa {
  color: white !important;
  font-size: 20px !important;
}

.icon.Website::before {
  content: "\e956";
  font-family: "icomoon";
}

.icon.ecommerce::before {
  content: "\e93a";
  font-family: "icomoon";
}

.icon.digital::before {
  content: "\e91a";
  font-family: "icomoon";
}

/* slider-bottom-wrapper end */

/* about section start */
.about-section {
  margin: 50px 0 0;
  /* background-image: url(../images/bg/bg-5.svg); */
  background-color: #216a52;
  /* padding: 50px 0 0; */
}

.about-section.section-2 {
  margin: 50px 0;
  background-image: url(../images/bg/bg-10.jpg);
  background-size: cover;
  background-position: center;
  padding: 50px 0;
}

.about-section .section-title h2 {
  font-weight: normal;
  font-family: "tobias-light", sans-serif;
}

.about-section .about-heading {
  font-weight: normal;
}

.about-content-wrapper {
  border-left: 3px solid #fff;
}

.about-section .about-detial {
  padding: 0px 20px;
  text-align: justify;
  color: #fff;
  margin-top: 0px;
}

.about-section .read-more-btn {
  background-color: #fff;
  color: #666;
  border: 1px solid #fff;
  margin-left: 30px;
  padding: 10px 30px;
  margin-top: 20px;
  display: inline-block;
}

.about-section.section-2 .about-container {
  background-color: #438d05;
  padding: 20px;
}

.about-section.section-2 .about-heading {
  color: var(--secondary-color);
}

/* .about-section.section-2 .about-detial  {
  color: #222;
 } */
.about-section.section-2 .read-more-btn {
  color: #222;
}

/* about section end */

.project-cta {
  background-image: url(../images/bg/bg-6.svg);
  padding: 100px 0;
  /* margin: 50px 0; */
}

.project-cta h1 {
  color: #fff;
  font-size: 40px;
  text-align: center;
  font-weight: normal;
}

.project-cta .project-cta-btn {
  background-color: #fff;
  color: #666;
  padding: 10px 30px;
  display: block;
  text-align: center;
  margin-top: 30px;
  width: 200px;
  margin: 0 auto;
}

/* footer start */

ul {
  margin: 0px;
  padding: 0px;
}

.footer-section {
  background: #151414;

  /* background-image: url("../images/bg/bg-12.jpg"); */
  background-image: linear-gradient(to right,
      rgba(0, 0, 0, 0.9),
      rgba(0, 0, 0, 0.8)),
    url("../images/bg/bg-14.webp");
  background-position: center;
  background-size: contain;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.footer-cta {
  border-bottom: 1px solid #fff;
}

.footer-cta .single-cta {
  display: flex;
  align-items: center;
}

.single-cta i {
  color: #ff5e14;
  font-size: 30px;
  float: left;
  margin-top: 8px;
}

.cta-text {
  padding-left: 15px;
  display: inline-block;
}

.cta-text h2 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 2px;
}

.cta-text span {
  color: #fff;
  font-size: 15px;
}

.footer-content {
  position: relative;
  z-index: 2;
}

.footer-pattern img {
  position: absolute;
  top: 0;
  left: 0;
  height: 330px;
  background-size: cover;
  background-position: 100% 100%;
}

.footer-logo {
  margin-bottom: 30px;
}

.footer-logo img {
  max-width: 200px;
}

.footer-text p {
  margin-bottom: 14px;
  font-size: 14px;
  color: #fff;
  line-height: 28px;
  text-align: justify;
}

.footer-social-icon span {
  color: #fff;
  display: block;
  font-size: 20px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  margin-bottom: 20px;
}

.footer-social-icon a {
  color: #fff;
  font-size: 16px;
  margin-right: 10px;
  margin-bottom: 8px;
  display: inline-block;
}

.footer-social-icon i {
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 38px;
  border-radius: 50%;
}

.facebook-bg {
  background: #3b5998;
}

.twitter-bg {
  background: #55acee;
}

.youtube-bg {
  background: #cd201f;
}

.linkedin-bg {
  background: #0a66c2;
}

.instagram-bg {
  background: #e4405f;
}

.pinterest-bg {
  background: #bd081c;
}

.skype-bg {
  background: #00aff0;
}

.footer-widget-heading h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 40px;
  position: relative;
}

.footer-widget-heading h3::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -15px;
  height: 2px;
  width: 50px;
  background: #ff5e14;
}

.footer-widget ul li {
  display: inline-block;
  width: 100%;
  margin-bottom: 12px;
  position: relative;
}

.footer-widget ul li a {
  color: #fff;
  text-transform: capitalize;
  position: relative;
  padding-left: 23px;
}

.footer-widget ul li span {
  padding-left: 23px;
}

.footer-widget ul li ::before {
  content: "\f061";
  position: absolute;
  top: 0;
  left: 0;
  color: #fff;
  font-family: "font awesome 5 free";
  font-weight: 900;
}

.footer-widget ul li a:hover {
  color: #ff5e14;
  text-decoration: none;
}

.subscribe-form {
  position: relative;
  overflow: hidden;
}

.subscribe-form input {
  width: 100%;
  padding: 14px 28px;
  background: #2e2e2e;
  border: 1px solid #2e2e2e;
  color: #fff;
}

.subscribe-form button {
  position: absolute;
  right: 0;
  background: #ff5e14;
  padding: 13px 20px;
  border: 1px solid #ff5e14;
  top: 0;
}

.subscribe-form button i {
  color: #fff;
  font-size: 22px;
  transform: rotate(-6deg);
}

.copyright-area {
  background: #000;
  padding: 25px 0;
}

.copyright-text p {
  margin: 0;
  font-size: 14px;
  color: #fff;
}

.copyright-text p a {
  color: #ff5e14;
}

.footer-menu li {
  display: inline-block;
  margin-left: 20px;
}

.footer-menu li:hover a {
  color: #ff5e14;
}

.footer-menu li a {
  font-size: 14px;
  color: #fff;
}

/* footer end */

/* portfolio section start */

.portfolio-section {
  margin-bottom: 750px;
}

.portfolio-section .stage,
.portfolio-section .ring,
.portfolio-section .img {
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  user-select: none;
}

.portfolio-section .stage {
  overflow: hidden;
  background: #000;
}

.portfolio-section div,
.portfolio-section svg {
  position: absolute;
}

.portfolio-section .portfolio-container {
  perspective: 2000px;
  width: 300px;
  height: 400px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.portfolio-section .portfolio-container img {
  width: 300px !important;
}

/* portfolio section end */

/* .work-img-container {
  width: 300px;
  height: 400px;
  overflow: hidden;
  position: relative;
} */

.work-section {
  background-image: url(../images/bg/bg-9.svg);
  padding: 70px 0;
}

.work-section .work-img-container {
  margin-bottom: 35px;
}

.work-img-container .img-box {
  /* width: 400px; */
  height: 500px;
  background-size: cover;
  border: 5px solid #fff;
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.5);
  background-position: top;
  transition: 5s;
}

.work-img-container .img-box:hover {
  background-position: bottom;
}

.work-img-container .img-box.website-1 {
  background-image: url(../images/website-preview/website-1.webp);
}

.work-img-container .img-box.website-2 {
  background-image: url(../images/website-preview/website-2.webp);
}

.work-img-container .img-box.website-3 {
  background-image: url(../images/website-preview/website-3.webp);
}

.work-img-container .img-box.website-4 {
  background-image: url(../images/website-preview/website-4.webp);
}

.work-img-container .img-box.website-5 {
  background-image: url(../images/website-preview/website-5.webp);
}

.work-img-container .img-box.website-6 {
  background-image: url(../images/website-preview/website-6.webp);
}

.work-section .section-title h2 {
  color: #fff;
  font-family: "tobias-light", sans-serif;
  letter-spacing: 1px;
}

.work-section .work-content-container {
  background-color: #fff;
  padding: 20px 10px;
  border-bottom: 1px dotted lightgray;
  display: none;
}

.work-section .work-content-container .work-title h1 {
  font-size: 20px;
}

/* quick content form start  */

.sidebar-contact {
  position: fixed;
  top: 50%;
  left: -350px;
  transform: translateY(-50%);
  width: 350px;
  height: auto;
  padding: 40px;
  background: #fff;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  box-sizing: border-box;
  transition: 0.5s;
  /* z-index: 99999; */
}

.sidebar-contact.active {
  left: 0;
}

.sidebar-contact input,
.sidebar-contact textarea {
  width: 100%;
  height: 36px;
  padding: 5px;
  margin-bottom: 10px;
  box-sizing: border-box;
  border: 1px solid rgba(0, 0, 0, 0.5);
  outline: none;
}

.sidebar-contact h2 {
  margin: 0 0 20px;
  padding: 0;
}

.sidebar-contact textarea {
  height: 60px;
  resize: none;
}

.sidebar-contact input[type="submit"] {
  background: #00bcd4;
  color: #fff;
  cursor: pointer;
  border: none;
  font-size: 18px;
}

.toggle {
  position: absolute;
  height: 48px;
  width: 48px;
  text-align: center;
  cursor: pointer;
  background: #f00;
  top: 0;
  right: -48px;
  line-height: 48px;
}

.toggle:before {
  content: "\f0e0";
  font-family: "Font Awesome 5 Free";
  font-size: 20px;
  color: #fff;
  font-weight: 900;
}

.toggle.active:before {
  content: "\f00d";
}

@media (max-width: 768px) {
  .sidebar-contact {
    width: 100%;
    height: 100%;
    left: -100%;
  }

  .sidebar-contact .toggle {
    top: 50%;
    transform: translateY(-50%);
    transition: 0.5s;
  }

  .sidebar-contact.active .toggle {
    top: 0;
    right: 0;
    transform: translateY(0);
  }

  .scroll {
    width: 100%;
    height: 100%;
    overflow-y: auto;
  }

  /* .content {
    padding: 50px 50px;
  } */
}

/* quick content form ennd */

.breadcrumbs {
  background-size: cover;
  background-position: center;
  padding: 150px 0;
  min-height: 450px;
}

.breadcrumbs.bg-1 {
  background-image: url(../images/breadcrumbs/bg-1.webp);
}

.breadcrumbs.bg-2 {
  background-image: url(../images/breadcrumbs/bg-2.webp);
}

.breadcrumbs.bg-3 {
  background-image: url(../images/breadcrumbs/bg-3.webp);
}

.breadcrumbs.bg-4 {
  background-image: url(../images/breadcrumbs/bg-4.webp);
}

.breadcrumbs.bg-5 {
  background-image: url(../images/breadcrumbs/bg-5.webp);
}

.breadcrumbs.bg-6 {
  background-image: url(../images/breadcrumbs/bg-6.jpg);
}

.breadcrumbs.bg-7 {
  background-image: url(../images/breadcrumbs/bg-7.jpg);
}

.breadcrumbs.bg-8 {
  background-image: url(../images/breadcrumbs/bg-8.jpg);
  /* background-image: url(../images/service/img-33.webp); */
}

.breadcrumbs.bg-9 {
  background-image: url(../images/breadcrumbs/bg-9.jpg);
}

/* contact section start */

.contact-address-area a,
.contact-address-area a:hover,
.contact-address-area a:focus,
.contact-address-area a:active {
  text-decoration: none;
  outline: none;
}

.contact-address-area a,
.contact-address-area a:active,
.contact-address-area a:focus {
  color: #333;
  text-decoration: none;
  transition-timing-function: ease-in-out;
  -ms-transition-timing-function: ease-in-out;
  -moz-transition-timing-function: ease-in-out;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-timing-function: ease-in-out;
  transition-duration: 0.2s;
  -ms-transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  -webkit-transition-duration: 0.2s;
  -o-transition-duration: 0.2s;
}

.contact-address-area ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-address-area img {
  max-width: 100%;
  height: auto;
}

.sec-title-style1 {
  position: relative;
  display: block;
  margin-top: -9px;
  padding-bottom: 50px;
}

.sec-title-style1.max-width {
  position: relative;
  display: block;
  max-width: 770px;
  margin: -9px auto 0;
  padding-bottom: 52px;
}

.sec-title-style1.pabottom50 {
  padding-bottom: 42px;
}

.sec-title-style1 .title {
  position: relative;
  display: block;
  color: #131313;
  font-size: 36px;
  line-height: 46px;
  font-weight: 700;
  text-transform: uppercase;
}

.sec-title-style1 .title.clr-white {
  color: #ffffff;
}

.sec-title-style1 .decor {
  position: relative;
  display: block;
  width: 70px;
  height: 5px;
  margin: 19px 0 0;
}

.sec-title-style1 .decor:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 5px;
  height: 5px;
  background: #135035;
  border-radius: 50%;
  content: "";
}

.sec-title-style1 .decor:after {
  position: absolute;
  top: 0;
  right: 10px;
  bottom: 0;
  width: 5px;
  height: 5px;
  background: #135035;
  border-radius: 50%;
  content: "";
}

.sec-title-style1 .decor span {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 1px;
  background: #135035;
  margin: 2px 0;
}

.sec-title-style1 .text {
  position: relative;
  display: block;
  margin: 7px 0 0;
}

.sec-title-style1 .text p {
  position: relative;
  display: inline-block;
  padding: 0 15px;
  color: #131313;
  font-size: 14px;
  line-height: 16px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
}

.sec-title-style1 .text.clr-yellow p {
  color: #135035;
}

.sec-title-style1 .text .decor-left {
  position: relative;
  top: -2px;
  display: inline-block;
  width: 70px;
  height: 5px;
  background: transparent;
}

.sec-title-style1 .text .decor-left span {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 1px;
  background: #135035;
  content: "";
  margin: 2px 0;
}

.sec-title-style1 .text .decor-left:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 5px;
  height: 5px;
  background: #135035;
  border-radius: 50%;
  content: "";
}

.sec-title-style1 .text .decor-left:after {
  position: absolute;
  top: 0;
  right: 10px;
  bottom: 0;
  width: 5px;
  height: 5px;
  background: #135035;
  border-radius: 50%;
  content: "";
}

.sec-title-style1 .text .decor-right {
  position: relative;
  top: -2px;
  display: inline-block;
  width: 70px;
  height: 5px;
  background: transparent;
}

.sec-title-style1 .text .decor-right span {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 50px;
  height: 1px;
  background: #ffa500;
  content: "";
  margin: 2px 0;
}

.sec-title-style1 .text .decor-right:before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 5px;
  height: 5px;
  background: #ffa500;
  border-radius: 50%;
  content: "";
}

.sec-title-style1 .text .decor-right:after {
  position: absolute;
  top: 0;
  left: 10px;
  bottom: 0;
  width: 5px;
  height: 5px;
  background: #ffa500;
  border-radius: 50%;
  content: "";
}

.sec-title-style1 .bottom-text {
  position: relative;
  display: block;
  padding-top: 16px;
}

.sec-title-style1 .bottom-text p {
  color: #848484;
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  margin: 0;
}

.sec-title-style1 .bottom-text.clr-gray p {
  color: #cdcdcd;
}

.contact-address-area {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 50px 0 60px;
}

.contact-address-area .sec-title-style1.max-width {
  padding-bottom: 72px;
}

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

.single-contact-address-box {
  position: relative;
  display: block;
  background: #b60f15;
  padding: 85px 30px 77px;
}

.single-contact-address-box .icon-holder {
  position: relative;
  display: block;
  padding-bottom: 24px;
}

.single-contact-address-box .icon-holder span:before {
  font-size: 75px;
}

.single-contact-address-box h3 {
  color: #ffffff;
  margin: 0px 0 9px;
}

.single-contact-address-box h2 {
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 19px;
}

.single-contact-address-box a {
  color: #ffffff;
}

.single-contact-address-box.main-branch {
  background: #135035;
  padding: 53px 30px 51px;
  margin-top: -20px;
  margin-bottom: -20px;
}

.single-contact-address-box.main-branch h3 {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 38px;
  text-transform: uppercase;
  text-align: center;
}

.single-contact-address-box.main-branch .inner {
  position: relative;
  display: block;
}

.single-contact-address-box.main-branch .inner ul {
  position: relative;
  display: block;
  /* overflow: hidden; */
}

.single-contact-address-box.main-branch .inner ul li {
  position: relative;
  display: block;
  padding-left: 110px;
  border-bottom: 1px solid #737373;
  padding-bottom: 23px;
  margin-bottom: 24px;
}

.single-contact-address-box.main-branch .inner ul li:last-child {
  border: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.single-contact-address-box.main-branch .inner ul li .title {
  position: absolute;
  top: 2px;
  left: 0;
  display: inline-block;
}

.single-contact-address-box.main-branch .inner ul li .title h4 {
  color: #fff;
  font-size: 30px;
  font-weight: 600;
  line-height: 24px;
  text-transform: capitalize;
}

.single-contact-address-box.main-branch .inner ul li .text {
  position: relative;
  display: block;
}

.single-contact-address-box.main-branch .inner ul li .text p {
  color: #fff;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  margin: 0;
}

.contact-info-area {
  position: relative;
  display: block;
  background: #ffffff;
}

.contact-form {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 100px 60px 80px;
  -webkit-box-shadow: 0px 3px 8px 2px #ededed;
  box-shadow: 0px 3px 8px 2px #ededed;
  z-index: 3;
}

.contact-form .sec-title-style1 {
  position: relative;
  display: block;
  padding-bottom: 51px;
  width: 50%;
}

.contact-form .text-box {
  position: relative;
  display: block;
  margin-top: 19px;
  width: 50%;
}

.contact-form .text p {
  color: #848484;
  line-height: 26px;
  margin: 0;
}

.contact-form .inner-box {
  position: relative;
  display: block;
  background: #ffffff;
}

.contact-form form {
  position: relative;
  display: block;
}

.contact-form form .input-box {
  position: relative;
  display: block;
}

.contact-form form input[type="text"],
.contact-form form input[type="email"],
.contact-form form textarea {
  position: relative;
  display: block;
  background: #ffffff;
  border: 1px solid #ced4da;
  width: 100%;
  height: 55px;
  font-size: 16px;
  padding-left: 19px;
  padding-right: 15px;
  border-radius: 0px;
  margin-bottom: 20px;
  transition: all 500ms ease;
}

.contact-form form textarea {
  height: 130px;
  padding-left: 19px;
  padding-right: 15px;
  padding-top: 14px;
  padding-bottom: 15px;
}

.contact-form form input[type="text"]:focus {
  color: #222222;
  border-color: #d4d4d4;
}

.contact-form form input[type="email"]:focus {
  color: #222222;
  border-color: #d4d4d4;
}

.contact-form form textarea:focus {
  color: #222222;
  border-color: #d4d4d4;
}

.contact-form form input[type="text"]::-webkit-input-placeholder {
  color: #848484;
}

.contact-form form input[type="text"]:-moz-placeholder {
  color: #848484;
}

.contact-form form input[type="text"]::-moz-placeholder {
  color: #848484;
}

.contact-form form input[type="text"]:-ms-input-placeholder {
  color: #848484;
}

.contact-form form input[type="email"]::-webkit-input-placeholder {
  color: #848484;
}

.contact-form form input[type="email"]:-moz-placeholder {
  color: #848484;
}

.contact-form form input[type="email"]::-moz-placeholder {
  color: #848484;
}

.contact-form form input[type="email"]:-ms-input-placeholder {
  color: #848484;
}

.contact-form form .custom-fields {
  border-radius: 0;
  width: 100%;
  height: 55px;
}

.contact-form form button {
  position: relative;
  display: block;
  width: 100%;
  background: #135035;
  border: 1px solid #135035;
  color: #fff;
  font-size: 16px;
  line-height: 55px;
  font-weight: 600;
  text-align: center;
  text-transform: capitalize;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  cursor: pointer;
}

.contact-form form button:hover {
  color: #ffffff;
  background: #131313;
}

/* contact section end */

/* our process start */

/* --- Start progress bar --- */

.process-wrapper {
  margin: auto;
  max-width: 1200px;
}

#progress-bar-container {
  position: relative;
  width: 90%;
  margin: auto;
  height: 100px;
  margin-top: 65px;
  left: 50%;
  transform: translateX(-50%);
}

#progress-bar-container ul {
  padding: 0;
  margin: 0;
  padding-top: 15px;
  z-index: 9999;
  position: absolute;
  width: 100%;

  margin-top: -40px;
}

#progress-bar-container li:before {
  content: " ";
  display: block;
  margin: auto;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: solid 2px #aaa;
  transition: all ease 0.3s;
}

#progress-bar-container li.active:before,
#progress-bar-container li:hover:before {
  border: solid 2px #444;
  background-color: #1e5e99;
}

#progress-bar-container li {
  list-style: none;
  float: left;
  width: 14.28%;
  text-align: center;
  color: #aaa;
  text-transform: uppercase;
  font-size: 11px;
  cursor: pointer;
  font-weight: 700;
  transition: all ease 0.2s;
  vertical-align: bottom;
  height: 60px;
  position: relative;
}

#progress-bar-container li .step-inner {
  position: absolute;
  width: 100%;
  bottom: 0;
}

#progress-bar-container li.active,
#progress-bar-container li:hover {
  /* color: #444; */
  color: #1e1212;
}

#progress-bar-container li:after {
  content: " ";
  display: block;
  width: 6px;
  height: 6px;
  background: #777;
  margin: auto;
  border: solid 7px #6e6063;
  border-radius: 50%;
  margin-top: 40px;
  box-shadow: 0 2px 13px -1px rgba(0, 0, 0, 0.3);
  transition: all ease 0.2s;
  position: absolute;
  top: 38px;
  left: 50%;
  transform: translateX(-50%);
}

#progress-bar-container li:hover:after {
  background: #555;
}

#progress-bar-container li.active:after {
  background: #de6d11;
}

#progress-bar-container #line {
  width: 72%;
  margin: auto;
  background: #eee;
  height: 6px;
  position: absolute;
  left: 7%;
  top: 57px;
  z-index: 1;
  border-radius: 50px;
  transition: all ease 0.9s;
}

#progress-bar-container #line-progress {
  content: " ";
  width: 3%;
  height: 100%;
  background: #0b1eae;
  background: -moz-linear-gradient(left, #0b1eae 0%, #2ea3b7 100%);
  background: -webkit-linear-gradient(left, #0b1eae 0%, #2ea3b7 100%);
  background: linear-gradient(to right, #0b1eae 0%, #2ea3b7 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0b1eae', endColorstr='#2ea3b7', GradientType=1);
  position: absolute;
  z-index: 2;
  border-radius: 50px;
  transition: all ease 0.9s;
}

#progress-content-section {
  width: 90%;
  margin: auto;
  background: #1aa3cdca;
  border-radius: 4px;
}

#progress-content-section .section-content {
  padding: 30px 40px;
  text-align: center;
}

#progress-content-section .section-content h2 {
  font-size: 17px;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 1px;
}

#progress-content-section .section-content p {
  font-size: 15px;
  line-height: 1.8em;
  color: #fff;
  text-align: justify;
}

#progress-content-section .section-content {
  display: none;
  animation: FadeInUp 700ms ease 1;
  animation-fill-mode: forwards;
  transform: translateY(15px);
  opacity: 0;
}

#progress-content-section .section-content.active {
  display: block;
}

@keyframes FadeInUp {
  0% {
    transform: translateY(15px);
    opacity: 0;
  }

  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}

/* our process end */

.we-work-section {
  padding: 70px 0 0;
}

.we-work-sub-heading p {
  color: var(--secondary-color);
}

.footer-widget .single-cta {
  margin-bottom: 30px;
  display: flex;
}

.footer-widget .single-cta .cta-text h4 {
  color: #fff;
  font-size: 25px !important;
  font-weight: 500;
}

/* menu design start */
.menu-container {
  background-color: var(--primary-color);
  /* background-image: linear-gradient(
    to right bottom,
    rgb(15 84 49 / 96%),
    rgb(47 88 67 / 49%)
  ); */
}

.button_container {
  position: fixed;
  /* top: 56px; */
  top: 72px;
  right: 2%;
  height: 27px;
  width: 35px;
  cursor: pointer;
  z-index: 9999999 !important;
  transition: opacity 0.25s ease;
}

.button_container.fixed-top1 {
  position: fixed;
  top: 2.5%;
}

.button_container:hover {
  opacity: 1;
}

.button_container.active .top {
  transform: translateY(10px) translateX(0) rotate(45deg);
  background: #fff;
}

.button_container.active .middle {
  opacity: 0;
  background: #fff;
}

.button_container.active .bottom {
  transform: translateY(-10px) translateX(0) rotate(-45deg);
  background: #fff;
}

.button_container span {
  background: #222;
  border: none;
  height: 3px;
  width: 100%;
  position: absolute;
  top: 0px;
  left: 0;
  transition: all 0.35s ease;
  cursor: pointer;
}

.button_container span:nth-of-type(2) {
  top: 10px;
}

.button_container span:nth-of-type(3) {
  top: 20px;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s, width 0.35s;
  z-index: 50;
}

.overlay:before {
  content: "";
  /* background: var(--primary-color); */
  background: rgb(15 84 49 / 96%);
  left: -55%;
  top: 0;
  width: 50%;
  height: 100%;
  position: absolute;
  transition: left 0.35s ease;
}

.overlay:after {
  content: "";
  /* background: var(--primary-color); */
  background: rgb(15 84 49 / 96%);
  right: -55%;
  top: 0;
  width: 50%;
  height: 100%;
  position: absolute;
  transition: all 0.35s ease;
}

.overlay.open {
  opacity: 1;
  visibility: visible;
  height: 100%;
}

.overlay.open:before {
  left: 0;
}

.overlay.open:after {
  right: 0;
}

.overlay.open li {
  -webkit-animation: fadeInRight 0.5s ease forwards;
  animation: fadeInRight 0.5s ease forwards;
  -webkit-animation-delay: 0.35s;
  animation-delay: 0.35s;
}

.overlay.open li:nth-of-type(2) {
  -webkit-animation-delay: 0.45s;
  animation-delay: 0.45s;
}

.overlay.open li:nth-of-type(3) {
  -webkit-animation-delay: 0.55s;
  animation-delay: 0.55s;
}

.overlay.open li:nth-of-type(4) {
  -webkit-animation-delay: 0.65s;
  animation-delay: 0.65s;
}

.overlay nav {
  position: relative;
  height: 70%;
  top: 50%;
  transform: translateY(-50%);
  font-size: 50px;
  font-family: "Vollkorn", serif;
  font-weight: 400;
  text-align: center;
  z-index: 100;
}

.overlay ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: inline-block;
  position: relative;
  height: 100%;
}

.overlay ul li {
  display: block;
  height: 25%;
  height: calc(100% / 5);
  min-height: 50px;
  position: relative;
  opacity: 0;
}

.overlay ul li a {
  display: block;
  position: relative;
  color: #fff;
  text-decoration: none;
  overflow: hidden;

  font-family: "Poppins", sans-serif;
}

.overlay ul li a:hover:after,
.overlay ul li a:focus:after,
.overlay ul li a:active:after {
  width: 100%;
}

.overlay ul li a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0%;
  transform: translateX(-50%);
  height: 3px;
  background: #fff;
  transition: 0.35s;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    left: 20%;
  }

  100% {
    opacity: 1;
    left: 0;
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    left: 20%;
  }

  100% {
    opacity: 1;
    left: 0;
  }
}

/* menu design end */

/* Quick contact form start */

.quick-contact {
  position: fixed;
  top: 50%;
  right: 0px;
  z-index: 999999 !important;
  background-color: #fff;
  padding: 15px 10px;
  min-width: 370px;
  transform: translateY(-50%);
  transition: all 0.3s ease-in-out;
  box-shadow: 2px 0px 5px rgba(0, 0, 0, 0.4), 2px 5px 5px rgba(0, 0, 0, 0.4);
  display: none;
}

.quick-contact.active {
  right: -370px;
}

.quick-contact .toggle-container {
  position: absolute;
  top: 48%;
  left: -80px;
  z-index: 9999999 !important;
  transform: rotate(-90deg) translateY(-50%);
  background-color: var(--secondary-color);
  padding: 10px 20px;
  cursor: pointer;
}

.quick-contact .toggle-container p {
  margin-bottom: 0;
  font-size: 18px;
  color: #fff;
}

.quick-contact .field-container {
  width: 100%;
  position: relative;
  margin-bottom: 20px;
}

.quick-contact .form-container .heading {
  font-size: 20px;
  text-align: center;
}

.quick-contact .form-container .para {
  font-size: 17px;
  text-align: center;
  line-height: 1.3;
}

.quick-contact .field-container .input-field {
  width: 100%;
  min-height: 40px;
  border-radius: 0;
  border: 1px solid lightgray;
  font-family: "Poppins", sans-serif;
  padding-left: 50px;
  font-size: 15px;
}

.quick-contact .field-container .form-icon {
  position: absolute;
  top: 0;
  left: 0;
  background-color: lightgray;
  width: 40px;
  height: 40px;
  display: grid;
  place-content: center;
}

.quick-contact .field-container .input-field:focus {
  outline: none;
}

.quick-contact .field-container .label-field {
  position: absolute;
  top: 25%;
  left: 40px;
  transition: all 0.3s;
  background-color: #fff;
  padding: 0px 10px;
  font-size: 15px;
  color: #555;
  margin-bottom: 0;
}

.quick-contact .field-container .input-field:focus~.label-field,
.quick-contact .field-container .input-field:valid~.label-field {
  top: -30%;
  font-size: 13px;
}

.quick-contact .field-container.message-field .input-field {
  min-height: 100px;
  padding-top: 20px;
  padding-left: 10px;
}

.quick-contact .field-container.message-field .label-field {
  top: 5%;
  left: 5px;
}

.quick-contact .field-container.message-field .input-field:focus~.label-field,
.quick-contact .field-container.message-field .input-field:valid~.label-field {
  top: -7%;
  font-size: 13px;
}

.quick-contact .quick-submit-btn {
  display: block;
  width: 100%;
  background-color: var(--primary-color);
  color: #fff;
  border: 0;
  outline: 0;
  font-size: 15px;
  padding: 10px 0;
}

/* Quick contact form end */

/* go to top start */
.go-to-top {
  position: fixed;
  bottom: 10px;
  right: 10px;
  background-color: #048ba8;
  width: 40px;
  height: 40px;
  /* display: grid !important; */
  justify-content: center;
  align-items: center;
  color: #fff;
  display: none !important;
  cursor: pointer;
}

.go-to-top.active {
  display: flex !important;
}

/* go to top end */
.form-container {
  background-color: rgb(255, 255, 255);
  padding: 20px;
}

.form-container .field-container {
  margin-bottom: 10px;
}

.form-container .field-container .form-control {
  border-radius: 0;
  box-shadow: none;
}

.form-container .f-submit-btn button {
  border: 1px solid lightgray;
  background-color: var(--secondary-color);
  outline: none;
  padding: 8px 30px;
  transition: all 0.3s;
}

.form-container .f-submit-btn button:hover {
  border: 1px solid var(--secondary-color);
  background-color: transparent;
  color: #222;
}

.single-cta .cta-text span {
  font-size: 16px;
}

.single-cta .cta-text a {
  font-size: 16px;
  color: #fff;
}

.bg-green {
  /* background-color: #135035; */
  /*background-color: #1a1f61;*/
  background-color: #19639B;
  /* background-color: #22611a; */
  /* background-image: radial-gradient(#b0dda2, #22611a); */
}

.bg-red {
  /* background-color: #ed1c24; */
  /* background-color: #720000; */
  background-image: radial-gradient(#fd0001, #720000);
}

.main-logo {
  width: 100%;
  height: 100%;
  max-width: 250px;
}

.main-logo img {
  width: 100%;
  height: 100%;
}

.section-2-content p {
  text-align: justify;
}

.section-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(1, 70vh);
}

.section-3-content {
  padding: 10px;
  background-color: #216a52;
  height: 100%;
  display: grid;
  place-content: center;
}

.section-content-wrapper {
  width: 80%;
  margin: 0 auto;
}

.section-content-wrapper h1 {
  font-family: "tobias-light", sans-serif;
  color: #fff;
  font-size: 65px;
  font-weight: 300;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.section-content-wrapper h1 span.special {
  /* background-color: #231918; */
  background-color: #fb5fa3;
  padding: 0 15px;
}

.section-content-wrapper p {
  color: #fff;
  font-size: 20px;
  font-weight: 300;
  text-align: justify;
}

.quote-btn a {
  text-decoration: none;
  /* background-color: #3aa450; */
  background-color: transparent;
  z-index: 1;
  border: 1px solid #fff;
  color: #fff;
  text-transform: uppercase;
  margin-top: 20px;
  position: relative;
  width: 180px;
  height: 50px;
  text-align: center;
  display: grid;
  place-content: center;
  box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.quote-btn a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #3aa450;
  z-index: -1;
  transition: all 0.3s ease;
}

.quote-btn a:hover::before {
  width: 100%;
}

/* .section-content-wrapper .quote-btn a:hover {
  text-decoration: none;
  width: 180px;
  height: 50px;
} */

.section-bottom-gap {
  margin-bottom: 50px;
}

.section-img-container {
  height: 100%;
  width: 100%;
}

.section-img-container img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.section-top-gap {
  margin-top: 50px;
}

.h-center {
  display: flex;
  justify-content: center;
}

/* .why-choose-container{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
} */
.why-choose-icon {
  width: 90px;
  height: 90px;
  display: grid;
  place-content: center;
}

.why-choose-icon img {
  width: 100%;
  height: 100%;
}

.why-choose-content h2 {
  font-weight: 500;
  text-transform: uppercase;
}

.why-choose-content p {
  text-align: justify;
}

.php-section h2 {
  color: #002140;
}

.wordpress-section h2 {
  color: #957cb8;
}

.experts-section h2 {
  color: #ff4767;
}

.ui-section h2 {
  color: #00887a;
}

.experience h2 {
  color: #8f1415;
}

.support h2 {
  color: #ff6251;
}

.scroll-bar-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999999;
  height: 5px;
  background-color: #000;
}

.scroll-bar {
  height: inherit;
  width: 0%;
  background-color: #048ba8;
}

.about-content p {
  text-align: justify;
}

.counter-section {
  background-image: linear-gradient(to right,
      rgba(19, 80, 53, 0.938),
      rgba(19, 80, 53, 0.938)),
    url(../images/breadcrumbs/bg-9.webp);
  background-size: cover;
  background-position: right;
  background-attachment: fixed;
  padding: 50px 0;
}

.counter-box {
  border: 1px dashed #fff;
  display: grid;
  place-content: center;
  padding: 20px 0;
}

.counter-box .counter-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}

.counter-box .counter-icon img {
  width: 35%;
  /* height: 90%; */
  filter: invert();
}

.counter-box .counter-num {
  font-size: 35px;
  font-weight: 600;
  text-align: center;
  color: #fff;
}

.counter-box .coutner-title p {
  margin-bottom: 0;
  font-size: 25px;
  color: #fff;
  text-align: center;
}

.counter-section .section-full-title h2,
.counter-section .section-full-title p {
  color: #fff;
}

.group-counter {
  display: flex;
  justify-content: center;
  align-items: center;
}

.group-counter .pre-fix {
  font-size: 30px;
  font-weight: 600;
  color: #fff;
  margin-left: 5px;
}

.cta-modal-container {
  width: 100%;
}

.cta-modal-container .close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 99999;
  transition: all 0.5s;
}

.cta-modal-container .close-btn span {
  font-weight: 300;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.cta-modal-container .close-btn:hover {
  transform: rotate(90deg);
}

.cta-content-container {
  max-width: 70%;
  margin: 0 auto;
  min-height: 300px;
  display: grid;
  place-content: center;
}

.form-container h2 {
  text-align: center;
  text-transform: uppercase;
}

.field-group {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 83%;
}

.form-container .cta-form {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.field-group input {
  min-height: 50px;
  border-radius: 0;
  margin-right: 10px;
}

.field-btn-container .field-btn {
  background-color: var(--secondary-color);
  color: #fff;
  border: 0;
  outline: 0;
  min-height: 50px;
  padding: 0px 20px;
  width: 150px;
}

.cta-form {
  margin-top: 40px;
}

.cta-content-container {
  margin-top: 20px;
  margin-bottom: 50px;
}

.iti__flag {
  background-image: url("../images/flag/flags.png");
}

.cta-note {
  font-size: 14px;
  color: #464646;
  text-align: center;
  margin-top: 10px;
}

.cta-modal-container .nav-tabs {
  display: flex;
  justify-content: center;
}

.lazy {
  background-image: none;
  background-color: #f1f1fa;
}

.work-img-container .img-box.website-1.lazy,
.work-img-container .img-box.website-2.lazy,
.work-img-container .img-box.website-3.lazy,
.work-img-container .img-box.website-4.lazy,
.work-img-container .img-box.website-5.lazy,
.work-img-container .img-box.website-6.lazy {
  background-image: none;
  background-color: #f1f1fa;
}

.about-bg.lazy {
  background-image: none;
  background-color: #f1f1fa;
}

.work-section.lazy {
  background-image: none;
  background-color: #f1f1fa;
}

.icon-container .lazy {
  background-image: none;
  background-color: #f1f1fa;
}

.we-work-list-container {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

.flip-box {
  background-color: transparent;
  width: 200px;
  height: 150px;
  border: 1px solid #f1f1f1;
  perspective: 1000px;
  /* height: 100%; */
}

.flip-box-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: all 0.8s;
  transform-style: preserve-3d;
}

.flip-box:hover .flip-box-inner {
  transform: rotateY(180deg);
}

.flip-box-front,
.flip-box-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
}

.flip-box-front {
  background-color: #fff;
  color: #000;
  display: grid;
  place-content: center;
  box-shadow: 1px 2px 5px rgb(0 0 0 / 50%);
  text-align: center;
}

.flip-box-back {
  background-color: #fff;
  color: #000;
  transform: rotateY(180deg);
  display: grid;
  place-content: center;
  text-align: center;
  box-shadow: 1px 2px 5px rgb(0 0 0 / 50%);
}

.flip-box:hover .flip-box-inner {
  transform: rotateY(180deg);
}

.flip-box-back {
  transform: rotateY(180deg);
}

/* google review start */
.review-section {
  margin: 50px 0;
  background-image: linear-gradient(to right, #bb3f3fde, #bb3f3fe7),
    url(../images/bg/bg-13.webp);
  background-position: top;
  background-size: cover;
}

.review-section .section-full-title {
  margin-bottom: 30px;
}

.review-star-box {
  margin-top: 5px;
  margin-left: 10px;
}

.review-star-box .review-star {
  width: 16px;
  height: 16px;
  display: inline-block;
  margin-right: 1px;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../images/review/f.svg);
}

.verified-review {
  display: inline-block;
  background: url(../images/review/verified-icon.svg);
  background-size: contain;
  width: 15px;
  height: 15px;
  margin-left: 7px;
  position: relative;
  z-index: 2;
}

.review-header {
  display: flex;
  align-items: center;
}

.review-header .review-profile-img {
  margin-right: 15px;
}

.review-header .review-profile-img img {
  width: 40px;
  height: 40px;
  padding: 0px;
  display: block;
  border-radius: 30px;
  object-fit: cover;
  object-position: top;
}

.review-profile-details {
  position: relative;
}

.review-profile-details .review-name {
  font-weight: bold;
  font-size: 15px;
  overflow: hidden;
  padding-right: 25px;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: #fff;
  margin-bottom: 2px;
  width: 200px;
}

.review-profile-details::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 0;
  right: 0px;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../images/review/g-icon.svg);
  background-size: 100% 100%;
}

.review-mgs-content {
  max-height: 100px;
  min-height: 100px;
  overflow-y: auto;
  margin-top: 10px;
}

.review-mgs-content p {
  font-size: 15px;
  padding-right: 10px;
  color: #fff;
}

.review-mgs-content::-webkit-scrollbar {
  width: 5px;
}

.review-mgs-content::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.review-mgs-content::-webkit-scrollbar-thumb {
  background-color: darkgrey;
  /* outline: 1px solid slategrey; */
}

.review-mgs-content {
  max-height: 100px;
  min-height: 100px;
  overflow-y: auto;
  margin-top: 10px;
}

/* google review end */

/* team section start */

/*  Team Starts */
.team-section {
  margin-bottom: 50px;
}

.team-members {
  transform: rotate(-45deg);
  list-style: none;
}

.team-members li>div {
  float: left;
  width: 20%;
}

.team-members li:nth-child(2)>div:first-child {
  margin-left: 20%;
}

.team-members li:last-child>div:first-child {
  margin-left: 40%;
}

.member-details>div {
  background-color: #ddd;
  margin: 5px;
}

.member-details img {
  transform: rotate(45deg) translate(0, 15px) scale(1.2);
  display: block;
  width: 100%;
  height: 100%;
}

/* hover content - style */
.member-details>div {
  position: relative;
  overflow: hidden;
}

.member-info {
  position: absolute;
  top: 50%;
  transform: rotate(45deg) translate(-12px, 15px);
  left: 0;
  right: 0;
  z-index: 2;
  text-align: center;
}

.member-info h3,
.member-info p {
  margin: 0;
  color: #fff;
  position: relative;
  opacity: 0;
  visibility: hidden;
}

.member-info h3 {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 400;
  top: -100px;
}

.member-info p {
  font-weight: 300;
  font-size: 12px;
  bottom: -150px;
}

.member-details>div:after {
  content: "";
  background-image: linear-gradient(45deg,
      rgba(228, 82, 69, 0.8) 50%,
      transparent 50%);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
}

/* hover content - onhover */
.member-details *,
.member-details>div:after {
  cursor: pointer;
  transition: all 0.4s ease;
}

.member-details:hover *,
.member-details:hover>div:after {
  opacity: 1;
  visibility: visible;
}

.member-details:hover .member-info h3 {
  top: 0;
}

.member-details:hover .member-info p {
  bottom: 0;
}

/* Team overview */
.team-overview {
  padding-right: 15px;
}

.team-overview h2 {
  text-transform: uppercase;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 5px;
}

.team-overview>a {
  margin-bottom: 30px;
  display: block;
}

.team-overview>a:before {
  content: "";
  width: 10px;
  height: 2px;
  position: relative;
  top: -3px;
  margin-right: 5px;
  background-color: #ccc;
  display: inline-block;
}

/* For centering elements - optional - Can use table,tablecell instead */
.flex-center {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.flex-center>div:first-child {
  order: 2;
}

/* RESPONSIVE */
@media only screen and (max-width: 992px) {
  .sm-no-flex {
    display: block;
  }

  .sm-no-float {
    float: none !important;
  }

  .sm-text-center {
    text-align: center;
  }
}

@media only screen and (max-width: 550px) {
  .team-members li {
    text-align: center;
  }

  .team-members li>div {
    float: none;
    display: inline-block;
    width: 30%;
    margin: 0 !important;
  }

  .team-members {
    transform: rotate(0);
  }

  .member-details img {
    transform: rotate(0) translate(0, 0);
  }

  .team-overview {
    padding: 15px;
  }
}

@media only screen and (max-width: 399px) {
  .team-members li>div {
    width: 48%;
  }
}

/* team section end */

.review-section {
  background-color: #002140;
  padding: 80px 0;
}

.review-section .section-full-title h2 {
  color: #fff;
  font-family: "tobias-light", sans-serif;
  letter-spacing: 1px;
}

.testimonial-mgs-box {
  max-height: 200px;
  min-height: 200px;
  overflow-y: auto;
  padding: 0px 10px;
}

.testimonial-mgs-box::-webkit-scrollbar {
  width: 5px;
}

.testimonial-mgs-box::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.testimonial-mgs-box::-webkit-scrollbar-thumb {
  background-color: darkgrey;
  /* outline: 1px solid slategrey; */
}

#typed {
  font-size: 40px;
  color: #fff;
}

/* Cursor */
.typed-cursor {
  color: #fff;
  font-size: 40px;
}

.nav-item.dropdown .dropdown-menu {
  background-color: #ffffff;
  padding: 0;
}

.nav-item.dropdown .dropdown-menu a.dropdown-item {
  color: #fff;
  padding: 10px !important;
}

.nav-item.dropdown .dropdown-menu a.dropdown-item:not(:last-child) {
  border-bottom: 1px dashed #fff;
}

/*.nav-item.dropdown .dropdown-menu a:hover {
  background-color: #00887a;
}*/

/* particles js start */

canvas {
  display: block;
  /* vertical-align: bottom; */
}

/* ---- stats.js ---- */

.count-particles {
  background: #000022;
  position: absolute;
  top: 48px;
  left: 0;
  width: 80px;
  color: #13e8e9;
  font-size: 0.8em;
  text-align: left;
  text-indent: 4px;
  line-height: 14px;
  padding-bottom: 2px;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: bold;
}

.js-count-particles {
  font-size: 1.1em;
}

#stats,
.count-particles {
  /* -webkit-user-select: none; */
  margin-top: 5px;
  margin-left: 5px;
}

#stats {
  border-radius: 3px 3px 0 0;
  overflow: hidden;
}

.count-particles {
  border-radius: 0 0 3px 3px;
}

/* ---- particles.js container ---- */

canvas {
  display: block;
  /* vertical-align: bottom; */
}

/* ---- stats.js ---- */

.count-particles {
  background: #000022;
  position: absolute;
  top: 48px;
  left: 0;
  width: 80px;
  color: #13e8e9;
  font-size: 0.8em;
  text-align: left;
  text-indent: 4px;
  line-height: 14px;
  padding-bottom: 2px;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: bold;
}

.js-count-particles {
  font-size: 1.1em;
}

#stats,
.count-particles {
  /* -webkit-user-select: none; */
  margin-top: 5px;
  margin-left: 5px;
}

#stats {
  border-radius: 3px 3px 0 0;
  overflow: hidden;
}

.count-particles {
  border-radius: 0 0 3px 3px;
}

/* ---- particles.js container ---- */

#particles-js {
  width: 100%;
  height: 100%;
  background-color: transparent;
  background-image: url("");
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}

/* particles js end */

h1.special-heading {
  font-family: "tobias-light", sans-serif !important;
  font-weight: 500 !important;
}

/* whatsapp start */
.whatsapp-container .float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  left: 40px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;

  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
  display: grid;
  place-content: center;
}

/* whatsapp end */

.about-content h4 {
  font-family: "tobias-light", sans-serif;
  letter-spacing: 1px;
}

.thankyou-box {
  min-height: 70vh;
  display: grid;
  place-content: center;
}

.thankyou-content {
  border: 1px solid#135035;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 50px;
}

.thankyou-content .thankyou-icon {
  font-size: 50px;
  color: #135035;
}

.thankyou-content .main-heading {
  color: #135035;
}

.keywords-pointer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.keywords-pointer {
  list-style: none;
  margin-top: 20px;
}

.keywords-pointer li {
  color: #fff;
  margin: 0px 30px;
  margin-bottom: 15px;
}

.client-result-box>ul {
  margin: unset;
  padding: revert;
}
