@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap");
/*font-family: "Manrope", sans-serif;*/
@import url("https://fonts.googleapis.com/css2?family=Stack+Sans+Headline:wght@200..700&display=swap");
/*font-family: "Stack Sans Headline", sans-serif;*/
* {
  box-sizing: border-box;
}

body {
  margin: 0px;
  overflow-x: hidden;
  font-family: "Manrope", sans-serif;
}

button:focus {
  outline: none;
}

input:focus {
  outline: none;
}

a {
  color: #1b70bb;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul {
  list-style: none;
  padding-left: 0px;
}

/*##### Common css start #####*/
.common-btn1 {
  background-color: #28A9DF;
  border: 1px solid #28A9DF;
  border-radius: 30px;
  color: #fff;
  font-size: 16px;
  transition: all 0.5s;
  padding: 10px 20px;
}
.common-btn1:hover {
  background-color: #28A9DF;
  border: 1px solid #28A9DF;
  transition: all 0.5s;
  color: #fff;
}

.common-title {
  position: relative;
  width: 100%;
}
.common-title h4 {
  position: relative;
  width: 100%;
  color: #28A9DF;
  font-size: 18px;
  margin-bottom: 12px;
}
.common-title h3 {
  position: relative;
  width: 100%;
  color: #000038;
  font-size: 40px;
  font-family: "Stack Sans Headline", sans-serif;
  margin-bottom: 15px;
}
.common-title h3 strong {
  color: #28A9DF;
}
.common-title p {
  position: relative;
  width: 100%;
  color: #5E5E7B;
  font-size: 15px;
  margin-bottom: 15px;
}

.bg1 {
  background-color: #EFF5F8;
}

.common-gap {
  padding: 60px 0px;
}

/*##### Common css end #####*/
/*#### Header css start ####*/
.header-wrapper {
  position: relative;
  width: 100%;
  z-index: 11;
}

.top-header-wrap {
  position: relative;
  width: 100%;
  background-color: #000025;
  padding: 5px 0px;
}
.top-header-wrap .top-header-left-content {
  position: relative;
  width: 100%;
}
.top-header-wrap .top-header-left-content p {
  position: relative;
  width: 100%;
  color: #fff;
  font-size: 13px;
  margin-bottom: 0px;
}
.top-header-wrap .top-header-left-content p a {
  color: #28A9DF;
}
.top-header-wrap .top-head-right-wrap {
  position: relative;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  align-items: center;
  gap: 6px;
}
.top-header-wrap .top-head-right-wrap .contact-email {
  position: relative;
}
.top-header-wrap .top-head-right-wrap .contact-email p {
  position: relative;
  margin-bottom: 0px;
  color: #fff;
  font-size: 14px;
}
.top-header-wrap .top-head-right-wrap .contact-email p .icon {
  position: relative;
  color: #000038;
  margin-right: 5px;
}
.top-header-wrap .top-head-right-wrap .top-head-social {
  position: relative;
}

.social-icon {
  position: relative;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 0px;
}
.social-icon ul {
  position: relative;
  margin-bottom: 0px;
}
.social-icon li {
  position: relative;
  padding-right: 10px;
  display: inline-flex;
}
.social-icon li a {
  font-size: 14px;
  width: 30px;
  height: 30px;
  background-color: transparent;
  color: #fff;
  border: 1px solid #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.5s;
}
.social-icon li a:hover {
  transition: all 0.5s;
  color: #28A9DF;
  border: 1px solid #28A9DF;
}

.main-menu {
  position: relative;
  width: 100%;
}
.main-menu .logo-wrap {
  position: relative;
  padding: 0px 0px;
  background-color: #fff;
  border-radius: 10px;
}
.main-menu .navbar-nav {
  position: relative;
}
.main-menu .navbar-nav li {
  position: relative;
  padding: 5px 15px;
}
.main-menu .navbar-nav li a {
  color: #231F20;
  font-size: 16px;
  transition: all 0.5s;
  padding: 0px;
  padding-left: 0 !important;
  padding-right: 0px !important;
}
.main-menu .navbar-nav li a:hover {
  color: #28A9DF;
}
.main-menu .navbar-nav li.active a {
  color: #28A9DF;
}

.get-quote-wrap {
  position: relative;
  margin-left: 10px;
}

/*#### Header css end ####*/
/*#### Banner css start ####*/
.banner-wrapper {
  position: relative;
  width: 100%;
}

#banner-slider .banner-sld-items {
  position: relative;
}
#banner-slider .banner-sld-items img {
  position: relative;
  width: 100%;
}
#banner-slider .banner-sld-items:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(270deg, rgba(0, 0, 0, 0) 21.3%, rgba(0, 0, 0, 0.44) 100%);
  z-index: 1;
}

.banner-content-wrap {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  z-index: 1;
}
.banner-content-wrap h1 {
  position: relative;
  width: 100%;
  color: #fff;
  font-size: 60px;
  font-family: "Stack Sans Headline", sans-serif;
  margin-bottom: 15px;
}
.banner-content-wrap h1 strong {
  color: #28A9DF;
}
.banner-content-wrap p {
  position: relative;
  width: 100%;
  font-size: 15px;
  color: #fff;
  margin-bottom: 15px;
}
.banner-content-wrap ul {
  position: relative;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

/*####*/
#banner-slider {
  margin-bottom: 0px;
}

#banner-slider .slick-dots {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 35px;
  z-index: 9;
  margin-bottom: 0;
  margin-left: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

#banner-slider .slick-dots li {
  position: relative;
  margin: 0px 5px;
}

#banner-slider .slick-dots li button {
  padding: 0;
  font-size: 0;
  line-height: 0;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}

#banner-slider .slick-dots li button:before {
  content: "";
  width: 10px;
  height: 10px;
  background-color: #fff;
  display: block;
  border: 1px solid #fff;
  border-radius: 50%;
}

#banner-slider .slick-dots li.slick-active button:before {
  background-color: #28A9DF;
  border: 1px solid #28A9DF;
}

/**/
/*#### Banner css end ####*/
/*#### Services css start ###*/
.services-wrapper {
  position: relative;
  width: 100%;
}

.services-list {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: #EFF5F8;
  border: 1px solid #EFF5F8;
  padding: 15px 15px;
  border-radius: 10px;
  transition: all 0.5s;
}
.services-list .icon {
  position: relative;
  width: 100%;
  margin-bottom: 15px;
}
.services-list h3 {
  position: relative;
  width: 100%;
  color: #000038;
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 15px;
}
.services-list h3 a {
  color: inherit;
}
.services-list p {
  position: relative;
  width: 100%;
  color: #5E5E7B;
  font-size: 15px;
  margin-bottom: 0px;
}
.services-list:hover {
  background-color: #fff;
  border: 1px solid #E0E0E0;
}

/*#### Services css end ###*/
/*##### how-we-work css start ##*/
.how-we-work-wrapper {
  position: relative;
  width: 100%;
  background-color: #EFF5F8;
}

.how-we-work-img {
  position: relative;
  width: 100%;
  border-radius: 200px;
  overflow: hidden;
}

.how-we-work-wrap {
  position: relative;
  width: 100%;
  background-color: #fff;
  border-radius: 15px;
  border: 1px solid #ECEBEB;
  overflow: hidden;
}

.how-we-work-list {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 15px 15px;
  border: 1px solid #ECEBEB;
}
.how-we-work-list .count {
  position: relative;
  width: 100%;
  font-size: 80px;
  font-weight: 700;
  color: rgba(40, 169, 223, 0.3);
  margin-bottom: 15px;
  line-height: 1;
}
.how-we-work-list h3 {
  position: relative;
  width: 100%;
  font-size: 20px;
  color: #000038;
  font-weight: 600;
  margin-bottom: 15px;
}
.how-we-work-list p {
  position: relative;
  width: 100%;
  color: #5E5E7B;
  font-size: 15px;
  margin-bottom: 15px;
}
.how-we-work-list .how-work-btn {
  position: absolute;
  right: 8px;
  top: 8px;
  font-size: 24px;
  color: #777777;
  display: inline-block;
  line-height: normal;
  transform: rotate(-45deg);
}

/*##### how-we-work css end ##*/
/*#### technology section css start ####*/
.technology-wrapper {
  position: relative;
  width: 100%;
}
.technology-wrapper::before {
  content: "";
  position: absolute;
  left: 5%;
  top: 10%;
  width: 200px;
  height: 80%;
  background-image: url(../images/technology-left-side.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.technology-wrapper::after {
  content: "";
  position: absolute;
  right: 5%;
  top: 10%;
  width: 200px;
  height: 80%;
  background-image: url(../images/technology-left-side.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.technology-content {
  position: relative;
  width: 100%;
  text-align: center;
}
.technology-content h4 {
  position: relative;
  width: 100%;
  font-size: 18px;
  font-weight: 500;
  color: #28A9DF;
  margin-bottom: 12px;
}
.technology-content h3 {
  position: relative;
  width: 100%;
  font-size: 30px;
  color: #000038;
  font-weight: 500;
  margin-bottom: 15px;
}
.technology-content h3 strong {
  color: #28A9DF;
}
.technology-content p {
  position: relative;
  width: 100%;
  color: #5E5E7B;
  font-size: 15px;
  margin-bottom: 10px;
}

/*#### technology section css end ####*/
/*#### portfolio section css start ####*/
.portfolio-wrapper {
  position: relative;
  width: 100%;
  background-color: #000F15;
}
.portfolio-wrapper .common-title h3 {
  color: #fff;
}
.portfolio-wrapper::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 350px;
  height: 300px;
  background-image: url(../images/bg-shape-img.png);
  background-repeat: no-repeat;
  background-size: contain;
}
.portfolio-wrapper::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 250px;
  height: 200px;
  background-image: url(../images/bg-shape-img.png);
  background-repeat: no-repeat;
  background-size: contain;
  transform: rotate(180deg);
}
.portfolio-wrapper .portfolio-blur-bg {
  position: absolute;
  right: 0;
  top: 0;
  width: 300px;
  height: 300px;
}

.portfolio-nav {
  position: relative;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  z-index: 2;
}
.portfolio-nav .nav-tabs {
  background-color: rgba(255, 255, 255, 0.0509803922);
  padding: 10px 10px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1294117647);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.portfolio-nav .nav-tabs .nav-item {
  position: relative;
  padding: 4px 10px;
}
.portfolio-nav .nav-tabs .nav-item button {
  position: relative;
  background-color: transparent;
  border: 0px;
  padding: 0px 0px;
  border-bottom: 1px solid transparent;
  color: #fff;
}
.portfolio-nav .nav-tabs .nav-item button.active {
  color: #28A9DF;
  border-bottom: 1px solid #28A9DF;
}

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

.portfolio-list {
  position: relative;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.portfolio-list img {
  position: relative;
  width: 100%;
}

.portfolio-slider .portfolio-sld-items {
  position: relative;
  padding: 0px 10px;
}

/**/
.portfolio-slider {
  margin-bottom: 0px;
}

.portfolio-slider .slick-dots {
  position: relative;
  width: 100%;
  z-index: 9;
  margin-bottom: 0;
  margin-left: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.portfolio-slider .slick-dots li {
  position: relative;
  margin: 0px 5px;
}

.portfolio-slider .slick-dots li button {
  padding: 0;
  font-size: 0;
  line-height: 0;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}

.portfolio-slider .slick-dots li button:before {
  content: "";
  width: 10px;
  height: 10px;
  background-color: #fff;
  display: block;
  border: 1px solid #fff;
  border-radius: 50%;
}

.portfolio-slider .slick-dots li.slick-active button:before {
  background-color: #28A9DF;
  border: 1px solid #28A9DF;
}

/*#### portfolio section css end ####*/
/*#### About us css start ####*/
.about-wrapper {
  position: relative;
  width: 100%;
}

.about-left-content {
  position: relative;
  width: 100%;
}
.about-left-content ul {
  position: relative;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 15px;
}
.about-left-content ul li {
  position: relative;
  color: #000025;
  font-size: 16px;
  font-weight: 600;
  padding-left: 30px;
  margin-bottom: 12px;
  margin-right: 10px;
}
.about-left-content ul li::before {
  content: "\f061";
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  background-color: #28A9DF;
  color: #fff;
  font-size: 11px;
  font-family: "fontawesome";
  border-radius: 50%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.about-right-img {
  position: relative;
  width: 100%;
  border-radius: 15px;
  overflow: hidden;
}

/*#### About us css end ####*/
/*##### partners section css start #####*/
.partners-wrapper {
  position: relative;
  width: 100%;
  background-color: #000F15;
}
.partners-wrapper .common-title h3 {
  color: #fff;
}

#partners-slider .partners-sld-items {
  padding: 0px 10px;
}

.partners-wrap {
  position: relative;
  width: 100%;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 10px;
  background-color: rgba(13, 29, 36, 0.7);
  border-radius: 10px;
  height: 120px;
}
.partners-wrap img {
  max-height: 100%;
}

/*##### partners section css end #####*/
/*##### testimonials section css start #####*/
.testimonials-wrapper {
  position: relative;
  width: 100%;
}

.testmonials-sld-items {
  padding: 10px 15px;
}

.testimonials-wrap {
  position: relative;
  width: 100%;
  background-color: #fff;
  padding: 15px 15px;
  border: 1px solid #CDD8D0;
  border-radius: 10px;
}
.testimonials-wrap .testimonials-top {
  position: relative;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 15px;
}
.testimonials-wrap .testimonials-top .auth-left {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
}
.testimonials-wrap .testimonials-top .title-wrap {
  position: relative;
  width: calc(100% - 70px);
  padding-left: 10px;
}
.testimonials-wrap .testimonials-top .title-wrap h4 {
  position: relative;
  width: 100%;
  font-size: 17px;
  color: #231F20;
  margin-bottom: 5px;
}
.testimonials-wrap .testimonials-top .title-wrap h5 {
  position: relative;
  width: 100%;
  font-size: 15px;
  color: #5E5E7B;
  margin-bottom: 5px;
}
.testimonials-wrap .testimonials-top .title-wrap .google-icon {
  position: absolute;
  right: 0px;
  top: 0;
  width: 30px;
}
.testimonials-wrap .test-right-content {
  position: relative;
  width: 100%;
}
.testimonials-wrap .test-right-content .rating {
  position: relative;
  width: 100%;
  margin-bottom: 10px;
}
.testimonials-wrap .test-right-content p {
  position: relative;
  width: 100%;
  color: #5E5E7B;
  font-size: 15px;
  margin-bottom: 5px;
}

/**/
#testmonials-slider {
  padding-bottom: 50px;
}

#testmonials-slider .slick-arrow {
  position: absolute;
  bottom: 0;
  width: 80px;
  height: 40px;
  border-radius: 30px;
  border: 1px solid #231F20;
  background-color: transparent;
  color: #231F20;
}

#testmonials-slider .slick-prev {
  left: calc(50% - 85px);
}

#testmonials-slider .slick-next {
  right: calc(50% - 85px);
}

/*##### testimonials section css end #####*/
/*#### Footer css start ####*/
.footer-wrapper {
  position: relative;
  width: 100%;
  background-color: #000F15;
  padding-top: 50px;
}

.get-in-touch-wrapper {
  position: relative;
  width: 100%;
  margin-bottom: 50px;
}
.get-in-touch-wrapper h4 {
  position: relative;
  width: 100%;
  color: #28A9DF;
  font-size: 18px;
  margin-bottom: 15px;
}
.get-in-touch-wrapper .footer-get-intouch-img {
  position: relative;
  width: 100%;
  text-align: center;
}

.footer-left-content {
  position: relative;
  width: 100%;
}
.footer-left-content p {
  position: relative;
  width: 100%;
  color: #fff;
  font-size: 13px;
  margin-bottom: 15px;
}

.footer-inner-wrap {
  position: relative;
  width: 100%;
}
.footer-inner-wrap h3 {
  position: relative;
  width: 100%;
  color: #fff;
  font-size: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 15px;
}

.footer-menu {
  position: relative;
  width: 100%;
}
.footer-menu ul {
  position: relative;
  width: 100%;
}
.footer-menu ul li {
  position: relative;
  width: 100%;
  padding: 4px 0px;
}
.footer-menu ul li a {
  position: relative;
  color: #fff;
  font-size: 13px;
}

/**/
.contact-det-list {
  position: relative;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

.contact-det-list .icon {
  color: #28A9DF;
  font-size: 14px;
  width: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.contact-det-list .info {
  position: relative;
  width: calc(100% - 16px);
  padding-left: 8px;
}

.contact-det-list p {
  position: relative;
  font-size: 13px;
  word-break: break-all;
  margin-bottom: 0px;
  color: #fff;
}

.contact-det-list p a {
  color: #fff;
}

/**/
/**/
.newsletter-wrap {
  position: relative;
  width: 100%;
}

.newsletter-wrap h4 {
  position: relative;
  width: 100%;
  color: #fff;
  font-size: 16px;
  margin-bottom: 15px;
}

.newsletter-wrap .newsletter-frm {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  background-color: #fff;
  padding: 2px 2px;
  border-radius: 5px;
}

.newsletter-wrap .newsletter-frm .input-text {
  position: relative;
  width: calc(100% - 30px);
  padding-right: 0px;
}

.newsletter-wrap .newsletter-frm .input-text .form-control {
  padding: 10px 10px;
  border-radius: 5px 0px 0px 5px;
  height: 45px;
  background-color: #ffffff;
  border: 0px solid #dddddd;
  font-size: 14px;
}

.newsletter-wrap .newsletter-frm .input-text .form-control:focus {
  outline: none;
  box-shadow: none;
}

.newsletter-wrap .newsletter-frm .submit {
  position: relative;
  width: 40px;
  margin-left: -10px;
}

.newsletter-wrap .newsletter-frm .submit .send-btn {
  position: relative;
  width: 100%;
  height: 45px;
  color: #fff;
  background-color: #28A9DF;
  border: 1px solid #28A9DF;
  font-size: 16px;
  font-weight: 600;
  border-radius: 5px 5px 5px 5px;
}

/**/
.footer-copyright {
  position: relative;
  width: 100%;
  padding: 15px 0px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.footer-copyright p {
  position: relative;
  width: 100%;
  color: #fff;
  font-size: 13px;
  margin-bottom: 0px;
}

/*#### Footer css end ####*/
/*### Inner banner css start ####*/
.inner-banner {
  position: relative;
  width: 100%;
  padding: 0px 0px;
  z-index: 1;
}

.inner-banner:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: linear-gradient(270deg, rgba(0, 0, 0, 0) 21.3%, rgba(0, 0, 0, 0.44) 100%);
  z-index: 1;
}

.inner-banner img {
  position: relative;
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}

.inner-banner .inner-banner-content {
  position: absolute;
  bottom: 10%;
  width: 100%;
  left: 0;
  z-index: 2;
}

.inner-banner .inner-banner-content h1 {
  position: relative;
  color: #fff;
  font-size: 30px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0px;
}

.cms-content {
  position: relative;
  width: 100%;
}
.cms-content h2{
    position: relative;
    width: 100%;
    color:#231F20;
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 10px;
}
.cms-content h3 {
  position: relative;
  width: 100%;
  color: #231F20;
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 10px;
}

.cms-content h4 {
  position: relative;
  width: 100%;
  color: #28A9DF;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.cms-content h5 {
  position: relative;
  width: 100%;
  color: #231F20;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.cms-content p {
  position: relative;
  width: 100%;
  color: #5E5E7B;
  font-size: 15px;
  margin-bottom: 10px;
}

.cms-content ul {
  position: relative;
  width: 100%;
  display: block;
}

.cms-content ul li {
  position: relative;
  display: block;
  padding-left: 24px;
  margin-bottom: 10px;
  color: #757575;
  font-size: 15px;
}

.cms-content ul li:before {
  content: "\f00c";
  font-family: fontawesome;
  position: absolute;
  top: 0px;
  left: 0;
  color: #28A9DF;
  font-size: 14px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.img-box {
  position: relative;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.img-box img {
  position: relative;
  width: 100%;
}

/*### Inner banner css end ####*/
/*##### quick css start ###*/
.quick-quote-wraper .close {
  position: absolute;
  right: 6px;
  top: 0px;
  z-index: 9;
  color: #231F20;
  font-size: 22px;
  background-color: transparent;
  border: 0px;
  opacity: 1;
}

.quick-quote-wraper .quick-quote-form {
  position: relative;
  padding: 15px;
  padding-top: 15px;
  padding-bottom: 15px;
}

.quick-quote-wraper .quick-quote-form .title {
  position: relative;
  width: 100%;
}

.quick-quote-wraper .quick-quote-form .title h3 {
  position: relative;
  font-size: 25px;
  padding-bottom: 10px;
  text-transform: uppercase;
  color: #28A9DF;
  font-weight: 600;
}

.quick-quote-wraper .quick-quote-form .title h3:after {
  content: "";
  width: 100px;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: #28A9DF;
}

.quick-quote-wraper .quick-quote-form .form-control, .quick-quote-wraper .quick-quote-form .form-select {
  border: 1px solid #e3e3e3;
  padding: 10px 10px;
  border-radius: 0px;
  box-shadow: none;
  outline: none;
}
.quick-quote-wraper .quick-quote-form .form-control:focus, .quick-quote-wraper .quick-quote-form .form-select:focus {
  border: 1px solid #000025;
}

.quick-quote-wraper .quick-quote-form .btn-dark {
  padding: 12px 20px;
}

/*##### quick css end ###*/
/*#### faq css start ####*/
.faq-wrapper {
  position: relative;
  width: 100%;
  padding: 60px 0px;
}

.faq-inner-wrap {
  position: relative;
  width: 100%;
}
.faq-inner-wrap .accordion-item {
  position: relative;
  border: 0px;
  margin-bottom: 15px;
}
.faq-inner-wrap .accordion-item .accordion-header {
  position: relative;
}
.faq-inner-wrap .accordion-item .accordion-header .accordion-button {
  background-color: #F8F8FA;
  color: #28A9DF;
  font-size: 16px;
  font-weight: 500;
}
.faq-inner-wrap .accordion-item .accordion-button:not(.collapsed) {
  box-shadow: none;
}
.faq-inner-wrap .accordion-item .accordion-button:not(.collapsed)::after {
  content: "\f068";
}
.faq-inner-wrap .accordion-item .accordion-button::after {
  content: "+";
  font-family: "fontawesome";
  background-image: none;
}
.faq-inner-wrap .accordion-item .accordion-body {
  position: relative;
}
.faq-inner-wrap .accordion-item .accordion-body p {
  position: relative;
  width: 100%;
  color: #5E5E7B;
  font-size: 15px;
  margin-bottom: 10px;
}

/*#### faq css end ####*/
/*###### Contact us css start #####*/
.contact-us-wrapper {
  position: relative;
  width: 100%;
  padding: 60px 0px 60px 0px;
  background-color: #EFF5F8;
}

.form-sec {
  position: relative;
  width: 100%;
  padding: 20px;
  background-color: #ffffff;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.18);
  border-radius: 10px;
}

.form-sec .form-control {
  color: #000;
  border: 1px solid #b1b1b1;
  height: auto;
  padding: 12px 15px;
  border-radius: 0px;
  transition: 0.5s;
}

.form-sec .form-control:focus {
  border: 1px solid #28A9DF;
  transition: 0.5s;
  box-shadow: none;
  outline: none;
}

.map-wrap {
  position: relative;
  width: 100%;
}

.map-wrap iframe {
  position: relative;
  width: 100%;
  height: 530px;
  border: 2px solid #28A9DF;
}

/*###### contact us css end ######*/
/*#### Services details css start ####*/
.services-details-wrapper {
  position: relative;
  width: 100%;
}

.services-dtls-left-img {
  position: relative;
  width: 100%;
  border-radius: 15px;
  overflow: hidden;
}

.services-details-content {
  position: relative;
  width: 100%;
}
.services-details-content .services-dtls-left-img{
    position: relative;
    width: 40%;
    float: left;
    margin-right: 15px;
    margin-bottom: 10px;
}
@media(max-width:991px){
    .services-details-content .services-dtls-left-img{
        width: 100%;
        margin-right: 0px;
    }
}
.services-details-content.cms-content ul{
    display: table-cell;
}
.development-services-list {
  position: relative;
  width: 100%;
  background: linear-gradient(90deg, #000025 0%, #00597e 100%);
  height: 100%;
  padding: 20px 20px;
  border-radius: 15px;
}
.development-services-list h3 {
  position: relative;
  width: 100%;
  color: #fff;
  font-size: 22px;
  margin-bottom: 15px;
}
.development-services-list p {
  position: relative;
  width: 100%;
  color: #fff;
  font-size: 14px;
  margin-bottom: 10px;
}

.services-details-development-wrapper {
  position: relative;
  width: 100%;
  background-color: #EFF5F8;
}

.development-process-wrapper {
  position: relative;
  width: 100%;
}

.development-process-img {
  position: sticky;
    left: 0;
    top: 0;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.development-process-img img {
  position: relative;
  width: 100%;
}

.development-process-right-wrap {
  position: relative;
  width: 100%;
}

.development-process-list {
  position: relative;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 20px 15px;
  background-color: #EFF5F8;
  border-radius: 5px;
  border: 1px solid #353854;
  margin-bottom: 20px;
}
.development-process-list .count {
  position: relative;
  width: 45px;
  height: 45px;
  background: linear-gradient(90deg, #000025 0%, #00597e 100%);
  border-radius: 50%;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  font-weight: 600;
}
.development-process-list .content {
  position: relative;
  width: calc(100% - 45px);
  padding-left: 10px;
}
.development-process-list .content h4 {
  position: relative;
  width: 100%;
  color: #000038;
  font-size: 18px;
  margin-bottom: 5px;
}
.development-process-list .content p {
  position: relative;
  width: 100%;
  color: #5E5E7B;
  font-size: 15px;
  margin-bottom: 5px;
}

/*#### Services details css end ####*//*# sourceMappingURL=style.css.map */