/* Start Importing Theme Default Style */
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Rajdhani:wght@300;400;500;600;700&display=swap");
* {
  margin: 0;
  padding: 0;
}

/* -- Body Style -- */
body {
  font-family: "Rajdhani", sans-serif;
  color: #54595f;
  font-size: 16px;
  font-weight: 400;
  background-color: #ffffff;
  margin: auto;
  position: relative;
  line-height: 1.6;
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  margin: 0;
  color: #000000;
}

h1 {
  font-size: 40px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 20px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 14px;
}

img {
  width: 100%;
}

.highlight--text {
  color: #01619c;
}

/* -- Common Button -- */
.btn--common {
  padding: 3px 30px;
  line-height: 46px;
  display: inline-block;
  background: #01619c;
  text-transform: capitalize;
  border: none;
  font-size: 18px;
  font-weight: 600;
  position: relative;
  z-index: 1;
  overflow: hidden;
  -webkit-box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
          box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  color: #ffffff;
  letter-spacing: 1px;
}

.btn--common::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: auto;
  height: 0;
  -webkit-transition: all .35s ease;
  transition: all .35s ease;
  background: #008cbd;
  z-index: -1;
}

.btn--common:hover::after {
  height: 100%;
  bottom: auto;
  top: 0;
}

.btn--common:hover {
  color: #ffffff;
}

.btn--common--two {
  padding: 3px 30px;
  line-height: 46px;
  display: inline-block;
  background: #008cbd;
  text-transform: capitalize;
  font-size: 18px;
  font-weight: 600;
  position: relative;
  z-index: 1;
  overflow: hidden;
  -webkit-box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
          box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  color: #ffffff;
  letter-spacing: 1px;
}

.btn--common--two::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: auto;
  height: 0;
  -webkit-transition: all .35s ease;
  transition: all .35s ease;
  background: #01619c;
  z-index: -1;
}

.btn--common--two:hover::after {
  height: 100%;
  bottom: auto;
  top: 0;
}

.btn--common--two:hover {
  color: #ffffff;
}

/* -- Padding -- */
.padding__common {
  padding-top: 70px;
  padding-bottom: 70px;
}

/* -- Color -- */
.color__primary {
  color: #54595f;
}

.color__secondary {
  color: #000000;
}

.color__highlight {
  color: #01619c;
}

.color__white {
  color: #ffffff;
}

.color__dark {
  color: #000000;
}

.bg__primary {
  background: #ffffff;
}

.bg__secondary {
  background: #F4FAFE;
}

.bg__highlight {
  background: #01619c;
}

.bg__white {
  background: #ffffff;
}

.bg__dark {
  background: #000000;
}

/* -- Grid  Style -- */
.grid--container {
  display: -ms-grid;
  display: grid;
  grid-gap: 30px;
}

.flex--yes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

/* -- List Style -- */
ul {
  margin: 0;
  padding: 0;
}

ul li {
  display: inline-block;
  list-style: none;
}

/* -- Anchor tag Style -- */
a {
  text-decoration: none;
  color: inherit;
}

a:hover {
  text-decoration: none;
  color: #01619c;
}

/* -- List Style -- */
.list--none li {
  list-style: none;
  display: inline-block;
}

/* -- Iframe  Style -- */
iframe {
  width: 100%;
}

/* -- Text Transform Style -- */
.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

.lowercase {
  text-transform: lowercase;
}

/* -- Input Focus Style -- */
.focus:focus, .form-control:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: 0;
}

/* -- Input Group Psudo element Style -- */
.input-group > .form-control:focus, .input-group > .form-select:focus {
  z-index: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

input:focus,
button:focus,
textarea:focus {
  border-color: #01619c;
  outline-color: transparent;
  outline: 0;
}

::-webkit-input-placeholder {
  color: #54595f;
  font-size: 16px;
}

:-ms-input-placeholder {
  color: #54595f;
  font-size: 16px;
}

::-ms-input-placeholder {
  color: #54595f;
  font-size: 16px;
}

::placeholder {
  color: #54595f;
  font-size: 16px;
}

/* Owl Dots Style one*/
.owl-dots {
  position: absolute;
  bottom: -50px;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  left: 0;
}

.owl-dot {
  position: relative;
  display: inline-block;
  margin: 0 6px;
  width: 12px;
  height: 12px;
  cursor: pointer;
  border-radius: 50%;
  background: linear-gradient(145deg, #000000, #ffffff);
  -webkit-box-shadow: 1px 4px 2px -3px rgba(0, 0, 0, 0.7) inset, -1px -3px 3px -2px rgba(255, 255, 255, 0.2) inset;
          box-shadow: 1px 4px 2px -3px rgba(0, 0, 0, 0.7) inset, -1px -3px 3px -2px rgba(255, 255, 255, 0.2) inset;
  -webkit-transition: .4s;
  transition: .4s;
}

.owl-dot::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transform: scale(0);
          transform: scale(0);
  background: #01619c;
  border-radius: inherit;
  z-index: 1;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

.owl-dot.active::before {
  -webkit-transform: scale(1);
          transform: scale(1);
}

/* Scroll Up Style one */
#scrollup {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background-color: #008cbd;
  width: 35px;
  height: 45px;
  z-index: 99;
  border-radius: 6px;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  -webkit-box-shadow: 0 0 111px rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 111px rgba(0, 0, 0, 0.15);
  cursor: pointer;
}

#scrollup span {
  display: block;
  width: 10px;
  height: 10px;
  border-top: 3px solid #ffffff;
  border-left: 3px solid #ffffff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin: -12px auto;
  top: 33px;
  position: relative;
  -webkit-animation: scrollUp 2s infinite;
          animation: scrollUp 2s infinite;
}

#scrollup span:nth-child(2) {
  -webkit-animation-delay: -.2s;
          animation-delay: -.2s;
}

#scrollup span:nth-child(3) {
  -webkit-animation-delay: -.4s;
          animation-delay: -.4s;
}

@-webkit-keyframes scrollUp {
  0% {
    opacity: 1;
    -webkit-transform: rotate(45deg) translate(10px, 10px);
            transform: rotate(45deg) translate(10px, 10px);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: rotate(45deg) translate(-10px, -10px);
            transform: rotate(45deg) translate(-10px, -10px);
    border-color: #008cbd;
  }
}

@keyframes scrollUp {
  0% {
    opacity: 1;
    -webkit-transform: rotate(45deg) translate(10px, 10px);
            transform: rotate(45deg) translate(10px, 10px);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: rotate(45deg) translate(-10px, -10px);
            transform: rotate(45deg) translate(-10px, -10px);
    border-color: #008cbd;
  }
}

/* -- Rotate Animation -- */
.rotateme {
  -webkit-animation: rotateme 15s linear infinite;
          animation: rotateme 15s linear infinite;
}

@-webkit-keyframes rotateme {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes rotateme {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes service_hexagon {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes service_hexagon {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/* -- Bounce Animation -- */
.bounce-animate-1 {
  -webkit-animation: float-bob1 6s linear infinite;
          animation: float-bob1 6s linear infinite;
}

@-webkit-keyframes float-bob1 {
  0% {
    -webkit-transform: translateY(-70px);
    transform: translateY(-70px);
  }
  50% {
    -webkit-transform: translateY(-35px);
    transform: translateY(-35px);
  }
  100% {
    -webkit-transform: translateY(-70px);
    transform: translateY(-70px);
  }
}

@keyframes float-bob1 {
  0% {
    -webkit-transform: translateY(-70px);
    transform: translateY(-70px);
  }
  50% {
    -webkit-transform: translateY(-35px);
    transform: translateY(-35px);
  }
  100% {
    -webkit-transform: translateY(-70px);
    transform: translateY(-70px);
  }
}

.bounce-animate-2 {
  -webkit-animation: float-bob2 7s linear infinite;
          animation: float-bob2 7s linear infinite;
}

@-webkit-keyframes float-bob2 {
  0% {
    -webkit-transform: translateY(-60px);
    transform: translateY(-60px);
  }
  50% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  100% {
    -webkit-transform: translateY(-60px);
    transform: translateY(-60px);
  }
}

@keyframes float-bob2 {
  0% {
    -webkit-transform: translateY(-60px);
    transform: translateY(-60px);
  }
  50% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  100% {
    -webkit-transform: translateY(-60px);
    transform: translateY(-60px);
  }
}

/* Navbar Style */
.navbar {
  position: fixed;
  left: 0;
  z-index: 999;
  width: 100%;
  top: 0;
  -webkit-box-shadow: 0 0 30px rgba(77, 77, 77, 0.3);
          box-shadow: 0 0 30px rgba(77, 77, 77, 0.3);
}

.navbar__navlink:focus {
  color: #01619c;
}

.navbar__navlink:hover {
  color: #01619c;
}

.navbar.fixed-header {
  background: #01619c;
  -webkit-box-shadow: 0 0 30px rgba(77, 77, 77, 0.3);
          box-shadow: 0 0 30px rgba(77, 77, 77, 0.3);
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

.navbar.fixed-header .navbar__navlink {
  color: #ffffff;
}

.navbar.fixed-header .navbar__navlink::before {
  background: #ffffff;
}

.navbar.fixed-header .navbar__brand {
  color: #ffffff;
}

.navbar.fixed-header .navbar__navitem .btn--common {
  background: #008cbd;
}

.navbar.fixed-header .navbar__navitem .btn--common:hover {
  color: #01619c;
}

.navbar.fixed-header .navbar__navitem .btn--common:hover::after {
  background: #ffffff;
}

.navbar__brand {
  font-size: 30px;
  font-weight: 800;
  color: #01619c;
  text-transform: uppercase;
}

.navbar-toggler:focus {
  border-color: transparent;
}

.navbar-toggler-icon {
  color: #01619c;
}

.navbar-toggler-icon i:nth-child(1) {
  display: block;
}

.navbar-toggler-icon i:nth-child(2) {
  display: none;
}

.navbar-toggler-icon.active i:nth-child(1) {
  display: none;
}

.navbar-toggler-icon.active i:nth-child(2) {
  display: block;
}

.dropdown-menu-end[data-bs-popper] {
  right: auto;
  left: 0;
}

.dropdown-item {
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.dropdown-item:focus, .dropdown-item:hover {
  color: #ffffff;
  background-color: #01619c;
}

.navbar-dropdown-menu li {
  display: block;
}

/* Start Hero Style one */
.hero {
  height: 100vh;
  width: 100%;
  background: url(../images/a.jpg) no-repeat center/cover scroll;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.hero__content--title {
  color: #ffffff;
  line-height: 1.4;
  margin-bottom: 25px;
}

.hero__content--desc {
  color: #ffffff;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 1px;
  width: 40%;
}

.hero__shape--wrapper {
  position: absolute;
  right: 200px;
  bottom: 0;
}

.hero__shape--wrapper img {
  width: auto;
}

.hero__shape--image {
  position: absolute;
  bottom: -80px;
  left: 0;
  right: 0;
  width: 100%;
  z-index: -1;
}

.hero__shape--one {
  position: absolute;
  bottom: -20px;
  right: 0;
}

.hero__btn {
  margin-top: 15px;
}

/* Start Section Head Style one */
.section__head {
  padding-bottom: 40px;
}

.section__title {
  font-weight: 800;
  text-transform: capitalize;
  position: relative;
  margin-bottom: 15px;
}

.section__title--two {
  margin-bottom: 0px;
}

.section__desc {
  margin: 0 auto 30px;
  font-size: 20px;
  width: 50%;
  font-weight: 500;
}

/* Start About Style one */
.about {
  padding-top: 50px;
  position: relative;
}

.about__feature li {
  display: block;
  font-size: 22px;
}

.about__feature li i {
  margin-right: 10px;
}

.about__content--wrap {
  padding-left: 45px;
}

.about__content--text {
  font-size: 18px;
  text-align: justify;
}

.about__shape {
  position: absolute;
  top: 19%;
  left: -200px;
  opacity: .1;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

/* Services About */
.about--text {
  margin-bottom: 35px;
}

.about--text h5 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
}

.about--text p {
  font-family: "Poppins", sans-serif;
  color: #54595f;
  line-height: 1.5;
}

.about--desc {
  overflow: hidden;
}

.about--num span {
  font-size: 24px;
  background: #01619c;
  border-radius: 101%;
  color: #ffffff;
  float: left;
  font-weight: 600;
  margin: 0 20px 20px 0;
  position: relative;
  border: 6px solid #01619c;
  height: 52px;
  width: 52px;
  line-height: 43px;
  text-align: center;
  display: block;
}

.about--num span::before {
  position: absolute;
  content: "";
  outline: 4px solid #ffffff;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  border-radius: 100%;
}

.about--num span::after {
  position: absolute;
  content: "";
  height: 60px;
  width: 2px;
  top: 55px;
  left: 21px;
  background: #01619c;
}

.img--wrap {
  position: relative;
  overflow: hidden;
}

.shape.rotateme {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.banner__shape.app--img {
  width: 300px;
}

/* Apps Feature Style */
.appsFeature__single {
  padding: 0 0 75px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.appsFeature--title {
  font-weight: 500;
  text-transform: capitalize;
  margin: 0 0 6px;
}

.appsFeature--content p {
  color: #919191;
  font-weight: 400;
  font-family: 'Poppins';
  line-height: 1.5;
  margin: 0;
}

.appsFeature--icon i {
  font-size: 40px;
  color: #fff;
  height: 80px;
  width: 80px;
  line-height: 68px;
  border-radius: 50%;
  display: inline-block;
  background: #01619c;
  position: relative;
  border: 6px solid #01619c;
  text-align: center;
}

.appsFeature--icon i::after {
  position: absolute;
  content: "";
  outline: 4px solid #ffffff;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  border-radius: 100%;
}

.appsFeature--thumb {
  position: relative;
}

.appsFeature--thumb .shape.rotateme {
  right: 60px;
  bottom: -60px;
}

.appsFeature--thumb .shape.rotateme img {
  width: 150px;
}

.appsFeature .text--right {
  text-align: right;
}

.mln {
  margin-left: -50px;
}

.mlp {
  margin-left: 50px;
}

.margin--left {
  margin-left: 20px;
}

.margin--right {
  margin-right: 20px;
}

.apps__pf--single img {
  width: auto;
}

.apps__pf--single h4 {
  font-weight: 400;
  margin-top: 20px;
  text-transform: uppercase;
}

/* Start Services Style one */
.services__single {
  padding: 40px 45px;
  background: #01619c;
  text-align: center;
  -webkit-transition: .3s;
  transition: .3s;
  border-radius: 4px;
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

.services__single::before {
  position: absolute;
  content: "";
  background: #008cbd;
  height: 0;
  width: 100%;
  top: 0;
  left: 0;
  -webkit-transition: .3s;
  transition: .3s;
  border-radius: 4px;
  z-index: -1;
}

.services__single:hover::before, .services__single.active::before {
  height: 100%;
}

.services__single:hover .services__icon, .services__single.active .services__icon {
  background: #01619c;
}

.services__title {
  margin: 0 0 15px;
  -webkit-transition: .3s;
  transition: .3s;
  color: #ffffff;
  font-weight: 500;
  letter-spacing: .05rem;
  font-size: 24px;
}

.services__desc {
  color: #ffffff;
  margin-bottom: 25px;
  font-size: 18px;
  letter-spacing: 0.02em;
}

.services__icon {
  height: 95px;
  width: 95px;
  line-height: 95px;
  background: #008cbd;
  text-align: center;
  margin: 35px auto 35px;
  border-radius: 100%;
  -webkit-transition: .3s;
  transition: .3s;
  position: relative;
  color: #ffffff;
  font-size: 45px;
}

.services .round--circle {
  position: absolute;
  width: 120px;
  height: 120px;
  left: -12px;
  top: -12px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  -webkit-clip-path: polygon(0% 0%, 50% 0%, 50% 100%, 0% 100%, 0 0);
          clip-path: polygon(0% 0%, 50% 0%, 50% 100%, 0% 100%, 0 0);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  -webkit-animation: service_hexagon 2s infinite linear;
          animation: service_hexagon 2s infinite linear;
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
  opacity: 0;
}

.services__single:hover .round--circle, .services__single.active .round--circle {
  -webkit-animation-play-state: running;
          animation-play-state: running;
  opacity: 1;
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%, 0 0);
          clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%, 0 0);
}

.services__single:hover .round--circle::before, .services__single.active .round--circle::before {
  position: absolute;
  content: '';
  background: #ffffff;
  width: 8px;
  height: 8px;
  left: 15px;
  bottom: 9px;
  border-radius: 50%;
}

.services__categorie {
  position: relative;
  z-index: 1;
}

.services__categorie::before {
  content: '';
  background-image: -webkit-gradient(linear, left top, left bottom, from(#824AEDB3), to(#824AEDB3));
  background-image: linear-gradient(180deg, #824AEDB3 0%, #824AEDB3 100%);
  opacity: .5;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.services__categorie .services__single--cat {
  text-align: center;
  background: #ffffff;
  padding: 15px 10px 30px;
  -webkit-transition: .3s;
  transition: .3s;
  border-radius: 2px;
}

.services__categorie .services__single--cat:hover {
  background: #01619c;
}

.services__categorie .services__single--cat:hover .icon, .services__categorie .services__single--cat:hover .title h2 {
  color: #ffffff;
}

.services__categorie .icon {
  font-size: 55px;
  -webkit-transition: .3s;
  transition: .3s;
}

.services__categorie .title h2 {
  font-size: 26px;
  font-weight: 600;
  -webkit-transition: .3s;
  transition: .3s;
}

/* Start Products Section Style one */
.products {
  padding-bottom: 80px;
  overflow: hidden;
}

.products__container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
  grid-gap: 15px;
}

.products__single {
  text-align: center;
  padding: 30px;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  -webkit-transform: scale(1);
          transform: scale(1);
  z-index: 1;
  position: relative;
}

.products__single:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  background: #ffffff;
  z-index: 2;
}

.products__img {
  width: 200px;
  display: inline-block;
  margin-bottom: 30px;
}

.products__title {
  font-size: 22px;
  font-weight: 500;
  font-family: 'Rajdhani', sans-serif;
}

/* Start Single Product Modules Style */
.product__module {
  position: relative;
  padding-bottom: 100px;
  overflow: hidden;
}

.product__module .shape--image {
  position: absolute;
  left: 0;
  width: 100%;
  bottom: -180px;
}

.product__module--list.text--right {
  text-align: right;
}

.product__module--list.text--right .list--item i {
  margin-left: 10px;
}

.product__module--list.text--left .list--item i {
  margin-right: 10px;
}

.product__module--list .list--item {
  display: block;
  padding: 10px 0;
  font-size: 18px;
  letter-spacing: 0.5px;
  font-weight: 600;
  color: #000000;
  text-transform: capitalize;
  overflow: hidden;
}

.product__module--list .list--item i {
  display: inline-block;
  height: 45px;
  width: 45px;
  line-height: 45px;
  text-align: center;
  border: 1px dashed #01619c;
  border-radius: 50%;
  color: #01619c;
  font-size: 20px;
}

/* Start Single Product Features Style */
.product__feature--single {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.product__feature--img {
  -ms-flex-preferred-size: 40%;
      flex-basis: 40%;
}

.product__feature--divider {
  -ms-flex-preferred-size: 20%;
      flex-basis: 20%;
  text-align: center;
  position: relative;
}

.product__feature--content {
  -ms-flex-preferred-size: 40%;
      flex-basis: 40%;
  background: #ffffff;
  padding: 35px 45px;
  border: 4px solid #008cbd;
  border-left: 6px solid #01619c;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
  border-top-right-radius: 7px;
  border-bottom-right-radius: 7px;
  -webkit-box-shadow: 50px 0px 50px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 50px 0px 50px 0px rgba(0, 0, 0, 0.1);
  position: relative;
}

.product__feature--content::before {
  content: '';
  position: absolute;
  left: -138px;
  top: 50%;
  height: 6px;
  width: 138px;
  background: #01619c;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
}

.product__feature--content::after {
  content: '';
  position: absolute;
  height: 30px;
  width: 30px;
  border-radius: 50%;
  border: 4px solid #01619c;
  background: #F4FAFE;
  left: -150px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
}

.product__feature .text--right .product__feature--content {
  border-right: 6px solid #01619c;
  border-left: 4px solid #008cbd;
  border-top-left-radius: 7px;
  border-bottom-left-radius: 7px;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  -webkit-box-shadow: -50px 0px 50px 0px rgba(0, 0, 0, 0.1);
          box-shadow: -50px 0px 50px 0px rgba(0, 0, 0, 0.1);
  text-align: right;
}

.product__feature .text--right .product__feature--content::before {
  right: -138px;
  left: auto;
}

.product__feature .text--right .product__feature--content::after {
  right: -150px;
  left: auto;
}

.product__feature--title {
  margin-bottom: 25px;
  text-transform: capitalize;
}

.product__feature--desc {
  font-size: 20px;
  margin-bottom: 0;
  text-align: justify;
}

.product__feature .feature--divider {
  height: 480px;
  display: inline-block;
  width: 6px;
  background: #01619c;
  position: relative;
}

.product__feature .feature--divider::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 0;
  height: 12px;
  width: 6px;
  background: #01619c;
}

.product__feature .feature--divider.first--child::before, .product__feature .feature--divider.last--child::before {
  position: absolute;
  content: '';
  height: 30px;
  width: 30px;
  border-radius: 50%;
  background: #01619c;
  left: -12px;
}

.product__feature .feature--divider.last--child::after {
  display: none;
}

.product__feature .feature--divider.last--child::before {
  bottom: -10px;
}

.product__feature .feature--divider.first--child::before {
  top: -10px;
}

/* Why Choose Us Style */
.purpose__container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
}

.purpose__single {
  text-align: center;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  border-radius: 5px;
  border: 1px solid #ffffff;
  position: relative;
  z-index: 1;
}

.purpose__single::before {
  content: '';
  position: absolute;
  left: -1px;
  top: -1px;
  height: 50%;
  width: 50%;
  background: #01619c;
  z-index: -1;
  transition: .3s;
  -webkit-transition: .3s;
}

.purpose__single::after {
  content: '';
  position: absolute;
  right: -1px;
  bottom: -1px;
  height: 50%;
  width: 50%;
  background: #01619c;
  z-index: -1;
  transition: .3s;
  -webkit-transition: .3s;
}

.purpose__single:hover::before, .purpose__single:hover::after {
  height: 100%;
  width: 100%;
}

.purpose__single--inner {
  background: #ffffff;
  padding: 30px 65px;
  transition: .3s;
  -webkit-transition: .3s;
  height: 100%;
}

.purpose__single:hover .purpose__single--inner {
  background: #F4FAFE;
}

.purpose__single:nth-child(2) .purpose__single--inner, .purpose__single:nth-child(4) .purpose__single--inner, .purpose__single:nth-child(6) .purpose__single--inner {
  background: #F4FAFE;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.purpose__single:nth-child(2) .purpose__single--inner:hover, .purpose__single:nth-child(4) .purpose__single--inner:hover, .purpose__single:nth-child(6) .purpose__single--inner:hover {
  background: #ffffff;
}

.purpose__title {
  font-weight: 500;
}

.purpose__icon {
  margin-bottom: 30px;
}

.purpose__icon img {
  width: auto;
}

/* Breadcumb  Style */
.breadcumb {
  height: 400px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #01619c;
  z-index: 1;
}

.breadcumb::before {
  position: absolute;
  content: '';
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(17, 17, 17, 0.85)), color-stop(rgba(17, 17, 17, 0.8)), color-stop(rgba(235, 49, 90, 0.1)), to(rgba(235, 49, 90, 0.2)));
  background-image: linear-gradient(to right, rgba(17, 17, 17, 0.85), rgba(17, 17, 17, 0.8), rgba(235, 49, 90, 0.1), rgba(235, 49, 90, 0.2));
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

.breadcumb--title {
  margin-bottom: 15px;
  text-transform: capitalize;
  color: #ffffff;
}

.breadcumb__list--item {
  color: #ffffff;
  margin-right: 10px;
  font-size: 18px;
  text-transform: capitalize;
}

.breadcumb__list--item:nth-Child(2) {
  color: #01619c;
}

.breadcumb__list--item .list--link {
  color: #01619c;
}

/* Call To Action Style*/
.calltoaction {
  padding-bottom: 30px;
}

.calltoaction__single {
  color: #ffffff;
  margin-bottom: 40px;
}

.calltoaction__content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.calltoaction__content--two {
  background: #01619c;
  height: 100%;
  text-align: center;
  padding: 50px 0 15px;
}

.calltoaction__icon {
  margin-bottom: 25px;
}

.calltoaction__icon i {
  font-size: 30px;
  height: 70px;
  width: 70px;
  display: inline-block;
  border: 5px solid #ffffff;
  border-radius: 50%;
  line-height: 65px;
  background: #008cbd;
}

.calltoaction__method {
  font-size: 22px;
}

.calltoaction__method a:hover {
  color: inherit;
}

.calltoaction .devider--img {
  background: url(../images/divider.png) no-repeat center right;
}

.calltoaction.style--two .btn--common::after {
  height: 100%;
}

.calltoaction.style--two .calltoaction__method span {
  font-size: 26px;
  margin-right: 10px;
}

/* Call To Action Style Three*/
.callToAction.style--three {
  padding-bottom: 100px;
}

.callToAction.style--three .callToAction__row {
  margin-top: -125px;
  padding: 90px 50px 100px;
}

.callToAction.style--three .callToAction__title {
  font-weight: 300;
  font-size: 60px;
  margin-bottom: 20px;
}

.callToAction.style--three .callToAction__title span {
  font-weight: 600;
}

.callToAction__tell--note {
  font-size: 32px;
  font-weight: 300;
}

.callToAction__tell {
  font-size: 42px;
  font-weight: 400;
  letter-spacing: 0.02em;
}

/* Map Style*/
.map {
  position: relative;
  overflow: hidden;
}

.map__content {
  background: #072336;
  padding: 65px;
  text-align: left;
  width: 540px;
  position: absolute;
  top: 0;
  left: 210px;
}

.map__content h1 {
  font-size: 60px;
  font-weight: 300;
  color: #ffffff;
  margin-bottom: 20px;
}

.map__content h1 span {
  font-weight: 600;
}

.map__address {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #ffffff;
  font-size: 20px;
}

.map--icon {
  margin-right: 15px;
  font-size: 30px;
}

/* Work Process Style*/
.workprocess--single {
  text-align: center;
  padding: 0 30px;
}

.workprocess__title {
  font-weight: 500;
  margin: 40px 0 30px;
}

.workprocess__icon {
  position: relative;
  display: inline-block;
}

.workprocess__icon i {
  background: #ffffff;
  color: #01619c;
  width: 140px;
  height: 140px;
  display: inline-block;
  line-height: 140px;
  font-size: 40px;
  -webkit-box-shadow: 0 0 30px 0 rgba(0, 20, 9, 0.1);
          box-shadow: 0 0 30px 0 rgba(0, 20, 9, 0.1);
  border-radius: 5px;
}

.workprocess__icon::before {
  position: absolute;
  top: 42%;
  width: 170px;
  height: 51px;
  background-image: url("../images/arrow-1.png");
  content: "";
  left: 177px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-repeat: no-repeat;
  background-size: auto;
}

.even--number .workprocess__icon::before {
  background-image: url("../images/arrow-2.png");
}

.third--child .workprocess__icon::before {
  display: none;
}

.process--number {
  position: absolute;
  -webkit-transition: .5s;
  transition: .5s;
  z-index: 1;
  right: -12px;
  bottom: 0px;
  background: #01619c;
  display: inline-block;
  height: 50px;
  width: 50px;
  line-height: 50px;
  color: #ffffff;
  border-radius: 50%;
  font-size: 18px;
  font-weight: 600;
}

/* START Contact Page  Style */
.contact {
  padding-bottom: 240px;
}

.contact__form--inner {
  background: #0D2A3D;
  padding: 65px;
}

.contact__form--title {
  color: #ffffff;
  margin-bottom: 35px;
  font-size: 24px;
  font-weight: 500;
}

.contact__note {
  color: #ffffff;
  font-size: 18px;
}

.contact .form-control {
  margin-bottom: 20px;
  background: transparent;
  color: #ffffff;
}

.contact .form-control::-webkit-input-placeholder {
  color: #ffffff;
}

.contact .form-control:-ms-input-placeholder {
  color: #ffffff;
}

.contact .form-control::-ms-input-placeholder {
  color: #ffffff;
}

.contact .form-control::placeholder {
  color: #ffffff;
}

.contact label {
  color: #ffffff;
  margin-bottom: 5px;
}

.contact__info--single {
  margin-bottom: 35px;
}

.contact__info--title {
  font-weight: 400;
  margin-bottom: 20px;
  border-bottom: 2px solid #01619c;
  padding-bottom: 15px;
}

.contact__info--text {
  font-size: 18px;
  font-weight: 500;
}

.contact__info--email, .contact__info--tell {
  font-size: 20px;
  color: #01619c;
  font-weight: 600;
}

.block__info--wrap {
  padding: 45px 50px 0;
}

/* Footer Section Style one */
.footer__logo--content {
  font-size: 40px;
  text-transform: uppercase;
  color: #01619c;
  font-weight: 800;
  display: inline-block;
}

.footer__middle--widget {
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.footer .widget__title {
  margin: 13px 0 27px;
}

.footer__address {
  margin: 10px 0 20px;
}

.footer__address span {
  overflow: hidden;
  float: left;
}

.footer__address span i {
  color: #01619c;
  font-size: 20px;
  margin-right: 10px;
}

.footer__menu li {
  display: block;
  margin-bottom: 5px;
}

.footer__social li a {
  display: inline-block;
  margin-right: 10px;
  height: 35px;
  width: 35px;
  line-height: 38px;
  text-align: center;
  background: #01619c;
  color: #ffffff;
  border-radius: 3px;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.footer__social li a:hover {
  background: #008cbd;
}

.footer__bottom {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 65px;
}

.footer__bottom--shape {
  position: absolute;
  bottom: -115px;
  left: 0;
  right: 0;
  width: 100%;
  z-index: -1;
}

.footer__copyright-txt {
  color: #ffffff;
  font-weight: 500;
}

.footer__copyright-txt a {
  color: #ffffff;
  text-transform: uppercase;
  font-size: 18px;
  margin: 0 3px;
}

.top--clearfix {
  height: 120px;
}

/* Banner Style*/
.banner {
  height: 400px;
  background: url(../images/c.jpg) no-repeat center/cover scroll;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.banner__shape {
  position: absolute;
  right: 300px;
  bottom: 0px;
}

.banner__shape--two {
  position: absolute;
  left: -100px;
  bottom: -130px;
  width: 250px;
  opacity: .2;
  z-index: 9;
}

.banner--two {
  background: #ffffff;
  height: 600px;
}

.banner--two .product__logo img {
  width: 300px;
  margin-bottom: 25px;
}

.banner--two .product__title {
  font-size: 32px;
  margin-bottom: 25px;
}

.banner--two .product__about {
  font-size: 18px;
  font-weight: 500;
}

.banner--two .product__banner--img {
  text-align: center;
}

.banner--two .product__banner--img img {
  width: auto;
}

/* Quotation Form Style*/
.quotation__form {
  padding-right: 30px;
}

.quotation__form label {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 3px;
}

.quotation__form .form-control {
  margin-bottom: 25px;
}

.quotation__form textarea {
  height: 130px;
}

.quotation__form .btn--common {
  margin-bottom: 0;
  -webkit-transition: .3s;
  transition: .3s;
}

.quotation__form .btn--common:hover {
  background: #008cbd;
}

.quotation__form .required--sign {
  color: red;
}

.flat-icons li {
  font-size: 50px;
  margin-right: 10px;
}

/* Start FAQ Style */
.faq__tab--header {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
}

.faq__title {
  -ms-flex-preferred-size: 35%;
  flex-basis: 35%;
}

.faq__src--form {
  -ms-flex-preferred-size: 60%;
  flex-basis: 60%;
  border-bottom: 1px solid #01619c;
  position: relative;
}

.faq__src--icon {
  opacity: .46;
  display: inline-block;
  cursor: pointer;
}

.faq__form--input {
  border: none;
  text-transform: capitalize;
  display: inline-block;
  width: 95%;
}

.faq__tab--nav {
  -ms-flex-preferred-size: 40%;
  flex-basis: 40%;
}

.faq__tab--btns {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.faq__tab--content {
  -ms-flex-preferred-size: 60%;
  flex-basis: 60%;
}

.faq__tab--btn {
  width: 70%;
  background: transparent;
  color: #000000;
  opacity: .79;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  line-height: 50px;
  text-align: left;
  padding-left: 45px;
}

.faq__tab--btn:hover {
  background-color: #F4FAFE;
  color: #01619c;
}

.faq__accordion--item {
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.faq__accordion--body {
  padding: 0 0 1rem;
}

.faq__accordion--btn {
  font-family: "Diavlo", sans-serif;
  font-weight: normal;
  font-size: 20px;
  line-height: 30px;
  color: #000000;
  letter-spacing: 0.01em;
  background: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
  padding: 1.25em 0;
}

.faq__accordion--btn:focus {
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
  color: #01619c;
  background: #F4FAFE;
  text-transform: capitalize;
  font-weight: 400;
}

.accordion-button:not(.collapsed) {
  color: #01619c;
  opacity: 0.79;
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: transparent;
}

/* END FAQ Style */
/*
=========================================
============

Responsive Style START Here 

============
=========================================
*/
/*  large devices (large laptops 1366px) */
@media only screen and (max-width: 1366px) {
  .navbar .container {
    max-width: 1366px;
  }
  .hero__shape--one {
    bottom: 0;
    right: -200px;
    width: 500px;
  }
  .hero__shape--one img {
    width: 100%;
  }
  .hero__content--desc {
    width: 45%;
  }
  .section__title,
  .section__title--two {
    font-size: 35px;
  }
  .about__content--wrap {
    padding-left: 0;
  }
  .services__single {
    padding: 40px 20px;
  }
  .product__module .shape--image {
    bottom: -125px;
  }
  .purpose__single--inner {
    padding: 30px 30px;
  }
  .footer__bottom--shape {
    bottom: -50px;
  }
  .banner__shape {
    right: 100px;
  }
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (max-width: 1200px) {
  .footer__bottom--shape {
    bottom: -25px;
  }
}

/*  Medium devices (Medium laptops 1199px) */
@media only screen and (max-width: 1199px) {
  .navbar .container {
    max-width: 1200px;
  }
  .navbar .navbar__navitem {
    padding: 0px 5px;
  }
  .hero__shape--one {
    bottom: 45px;
    right: -200px;
  }
  .hero__content--title {
    font-size: 35px;
  }
  .section__title, .section__title--two {
    font-size: 30px;
  }
  .section__desc {
    font-size: 18px;
  }
  .products__container {
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
  }
  .product__feature--title {
    font-size: 22px;
  }
  .product__feature--desc {
    font-size: 18px;
  }
  .product__feature--img {
    -ms-flex-preferred-size: 45%;
        flex-basis: 45%;
  }
  .product__feature--divider {
    -ms-flex-preferred-size: 10%;
        flex-basis: 10%;
  }
  .product__feature--content {
    -ms-flex-preferred-size: 45%;
        flex-basis: 45%;
    padding: 25px 15px;
  }
  .product__feature--content::before {
    width: 55px;
    left: -55px;
  }
  .product__feature--content::after {
    left: -67px;
  }
  .product__feature .text--right .product__feature--content::before {
    right: -55px;
  }
  .product__feature .text--right .product__feature--content::after {
    right: -67px;
  }
  .purpose__container {
    grid-gap: 15px;
  }
  .mln {
    margin-left: 0;
  }
  .mlp {
    margin-left: 0;
  }
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
  /* Navbar */
  .navbar {
    background: #ffffff;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
    padding: 0;
  }
  .navbar-nav {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .navbar__navitem {
    padding: 0 15px;
  }
  .navbar__navlink {
    padding: 10px;
    line-height: 70px;
    color: #54595f;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: .05rem;
    -webkit-transition: .3s;
    transition: .3s;
    position: relative;
  }
  .navbar__navlink::before {
    content: '';
    position: absolute;
    display: block;
    left: 0;
    bottom: 0;
    height: 3px;
    border-radius: 5px;
    width: 100%;
    background: #01619c;
    -webkit-transition: .5s;
    transition: .5s;
    -webkit-transition-timing-function: cubic-bezier(0.58, 0.3, 0.005, 1);
            transition-timing-function: cubic-bezier(0.58, 0.3, 0.005, 1);
    opacity: 0;
  }
  .navbar__navlink:hover, .navbar__navlink.active {
    color: #01619c;
  }
  .navbar__navlink:hover::before, .navbar__navlink.active::before {
    opacity: 1;
  }
}

/* Medium devices (landscape tablets, 991px and down) */
@media only screen and (max-width: 991px) {
  /* Navbar Mobile Menu */
  .navbar {
    background: #ffffff;
  }
  .navbar-toggler {
    margin-top: 10px;
  }
  .navbar-nav {
    padding: 30px 0;
  }
  .navbar__navitem {
    padding: 5px 0;
  }
  .navbar__navlink {
    color: #54595f;
    -webkit-transition: .3s;
    transition: .3s;
    position: relative;
  }
  .navbar__navlink::before {
    content: '\f054';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    right: 20px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    font-size: 14px;
    opacity: 0;
    -webkit-transition: .5s;
    transition: .5s;
  }
  .navbar__navlink:hover, .navbar__navlink:focus {
    color: #01619c;
  }
  .navbar__navlink:hover::before {
    opacity: 1;
  }
  .navbar-toggler:focus {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .navbar .btn--contact {
    margin-top: 20px;
  }
  .navbar.fixed-header .navbar__navlink::before {
    background: transparent;
  }
  .navbar.fixed-header .navbar-toggler-icon {
    color: #ffffff;
  }
  .banner--two .product__banner--img img {
    width: 100%;
  }
  .hero__shape--one {
    width: 300px;
    bottom: 0;
  }
  .hero__content--desc {
    width: 70%;
  }
  .section__desc {
    width: 60%;
  }
  .services__title {
    font-size: 20px;
  }
  .products__container {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
  }
  .col-img {
    display: none;
  }
  .product__module .shape--image {
    bottom: -70px;
  }
  .product__module .section__head {
    padding-bottom: 0;
  }
  .calltoaction__method {
    font-size: 18px;
  }
  .calltoaction__content--two .calltoaction__method {
    font-size: 22px;
  }
  .style--three .callToAction__title {
    font-size: 40px;
  }
  .purpose__container {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
  .purpose__single:nth-child(1), .purpose__single:nth-child(5) {
    background: #ffffff;
  }
  .purpose__single:nth-child(1):hover, .purpose__single:nth-child(5):hover {
    background: transparent;
  }
  .purpose__single:nth-child(2), .purpose__single:nth-child(6) {
    background: transparent;
  }
  .purpose__single:nth-child(2):hover, .purpose__single:nth-child(6):hover {
    background: #ffffff;
  }
  .map__content {
    display: none;
  }
  .footer__bottom {
    padding-top: 40px;
  }
  .quotation__form {
    padding-right: 0;
    margin-bottom: 30px;
  }
  .banner__shape {
    position: absolute;
    right: 100px;
    bottom: 0px;
  }
  .banner__shape.app--img {
    width: 200px;
    right: 30px;
  }
  .faq__tab--header {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .faq__tab--btn {
    width: 90%;
    padding-left: 25px;
  }
  .faq__tab--nav {
    margin-top: 30px;
  }
}

/* Medium devices (landscape tablets, 767px and down) */
@media only screen and (max-width: 767.98px) {
  .section__desc {
    width: 90%;
  }
  .padding__common {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .banner--two {
    height: 900px;
  }
  .banner--two .product__banner--img img {
    width: auto;
  }
  .hero {
    height: 75vh;
  }
  .hero__content--title {
    font-size: 30px;
  }
  .hero__shape--one {
    width: 250px;
    bottom: -20px;
  }
  .hero__shape--image {
    bottom: -50px;
  }
  .hero__content--desc {
    width: 100%;
  }
  .about {
    padding-top: 0;
  }
  .about--img {
    margin-top: 50px;
  }
  .about__content--wrap {
    margin-top: 35px;
  }
  .products__img {
    width: 185px;
  }
  .product__module--list.text--right {
    text-align: left;
  }
  .product__module--list.text--right .list--item span:last-child {
    float: left;
  }
  .product__module--list.text--right .list--item span:first-child {
    display: inline-block;
    margin-top: 7px;
  }
  .product__module--list.text--right .list--item i {
    margin: 0 10px 0 0;
  }
  .product__feature--single {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .product__feature--single.text--right {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .product__feature .feature--divider {
    height: 100px;
  }
  .product__feature--content::before,
  .product__feature--content::after {
    display: none;
  }
  .product__feature--title {
    font-size: 18px;
    margin-bottom: 15px;
  }
  .product__feature--content {
    margin-bottom: 35px;
  }
  .calltoaction__method.email {
    padding: 0 15px;
  }
  .callToAction.style--three .callToAction__title {
    font-size: 38px;
    margin-top: 50px;
  }
  .callToAction.style--three .callToAction__row {
    padding: 75px 15px 61px;
  }
  .purpose__title {
    font-size: 18px;
  }
  .purpose__single--inner {
    padding: 30px 15px;
  }
  .footer__middle--widget {
    text-align: center;
  }
  .footer .widget__title {
    font-size: 20px;
    margin: 40px 0 20px;
  }
  .footer__bottom--shape {
    bottom: 0;
  }
  .callToAction.style--three {
    padding-bottom: 50px;
  }
  .style--three .callToAction__row {
    margin-top: 0;
    padding: 50px 35px;
  }
  .style--three .callToAction__title,
  .callToAction__tell {
    font-size: 28px;
  }
  .callToAction__tell--note {
    font-size: 24px;
  }
  .contact__form--inner {
    padding: 50px;
  }
  .contact .section__desc {
    margin-bottom: 0;
  }
  .map iframe {
    height: 350px;
  }
  .appsFeature-thumb {
    margin-bottom: 60px;
  }
  .row.column--revers {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .apps__pf--single {
    margin-bottom: 50px;
  }
  .workprocess__icon::before {
    display: none;
  }
  .faq__form--input {
    width: 90%;
  }
  .faq__tab--btn {
    width: 95%;
    line-height: 30px;
    padding-left: 10px;
  }
  .faq__accordion--btn {
    font-size: 16px;
  }
}

/* Small devices (portrait tablets and large phones, 600px and down) */
@media only screen and (max-width: 575.98px) {
  .hero__shape--wrapper {
    display: none;
  }
  .hero__content--title {
    font-size: 22px;
  }
  .hero__content--desc {
    font-size: 16px;
  }
  .hero__shape--image {
    bottom: 0px;
  }
  .about__shape {
    top: 0;
    left: -100px;
    width: 200px;
  }
  .calltoaction {
    padding-bottom: 20px;
  }
  .calltoaction__content {
    -ms-grid-columns: (1fr)[1];
        grid-template-columns: repeat(1, 1fr);
  }
  .contact__form--inner {
    padding: 50px 15px;
  }
  .block__info--wrap {
    padding: 50px 20px 10px;
  }
  .style--three .callToAction__row {
    padding: 50px 16px;
  }
  .products__img {
    width: auto;
  }
  .section__title.contact--title {
    font-size: 24px;
  }
  .purpose__container {
    -ms-grid-columns: (1fr)[1];
        grid-template-columns: repeat(1, 1fr);
  }
  .purpose__single:nth-child(1), .purpose__single:nth-child(3) {
    background: #ffffff;
  }
  .purpose__single:nth-child(3):hover {
    background: transparent;
  }
  .purpose__single:nth-child(2), .purpose__single:nth-child(4) {
    background: transparent;
  }
  .purpose__single:nth-child(4):hover {
    background: #ffffff;
  }
  .footer__content.pb-3 {
    padding-bottom: 0 !important;
  }
  .banner {
    height: 300px;
  }
  .banner.banner--two {
    height: 900px;
  }
  .banner.banner--two .product__title {
    font-size: 24px;
  }
  .banner__shape {
    right: 0;
    width: 150px;
  }
  .banner__shape--two {
    left: -80px;
    bottom: -85px;
    width: 160px;
  }
  .banner__shape.app--img {
    width: 95px;
  }
  .faq__tab--header.flex--yes,
  .faq__tab--header .section__title span {
    display: block;
  }
  .faq .faq__tab--btns.d-flex {
    display: block !important;
  }
}

/* Extra small devices (phones, 360px and down) */
@media only screen and (max-width: 360px) {
  .section__title,
  .section__title--two {
    font-size: 20px;
  }
  .section__desc {
    width: 100%;
    font-size: 16px;
  }
  .hero__wrapper {
    text-align: center;
  }
  .banner--two .product__banner--img img {
    width: 300px;
  }
  .btn--common {
    padding: 3px 26px;
    font-size: 16px;
  }
  .btn--common--two {
    padding: 3px 26px;
    font-size: 16px;
  }
  .products__container {
    -ms-grid-columns: (1fr)[1];
        grid-template-columns: repeat(1, 1fr);
  }
  .footer__copyright-txt {
    font-weight: 400;
    font-size: 14px;
  }
  .footer__copyright-txt a {
    font-weight: 600;
    font-size: 14px;
  }
  .footer__bottom {
    padding-top: 10px;
  }
  .about__feature li {
    font-size: 18px;
  }
}

/* Responsive Style END Here */
/*# sourceMappingURL=style.css.map */