@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500;600;700&family=Open+Sans:wght@300;400;500;600;700&display=swap");
:root {
  --c-black: #000000;
  --c-white: #ffffff;
  --c-primary: #004B8D;
  --c-secondary: #009F8B;
  --c-body: #4f4f4f;
  --c-body-dark: #232323;
  --c-gray: #808080;
}

/*-------==========  Base  ==========------ */
html {
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
}

p {
  font-family: "Open Sans", sans-serif;
  color: var(--c-black);
}

/*-------==========  Typography  ==========------ */
body {
  padding: 0;
  margin: 0;
  font-family: "Montserrat", sans-serif !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0;
  margin: 0;
}

h1,
.h1 {
  font-size: 2rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

@media screen and (min-width: 768px) {
  h1,
  .h1 {
    font-size: 2.875rem;
  }
}

h2,
.h2 {
  font-size: 2rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

@media screen and (min-width: 768px) {
  h2,
  .h2 {
    font-size: 2.5rem;
  }
}

h3,
.h3 {
  font-size: 2rem;
  font-family: "Montserrat", sans-serif;
}

@media screen and (min-width: 768px) {
  h3,
  .h3 {
    font-size: 2.5rem;
  }
}

h4,
.h4 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.25rem;
}

h5,
.h5 {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
}

h6,
.h6 {
  font-family: "Montserrat", sans-serif;
  font-size: 0.8125rem;
}

@media screen and (min-width: 768px) {
  h6,
  .h6 {
    font-size: 0.9375rem;
  }
}

.header-fixed .header-sec {
  position: fixed;
  left: 0;
  z-index: 999;
  max-width: 100%;
  background-color: var(--c-white);
  -webkit-transition: all 0.32s ease-in-out;
  transition: all 0.32s ease-in-out;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
  -webkit-animation-name: header-fixed;
          animation-name: header-fixed;
  -webkit-animation-duration: .5s;
          animation-duration: .5s;
  top: 0px;
}

.menu-active .header-sec {
  position: fixed;
  left: 0;
  z-index: 999;
  max-width: 100%;
  background-color: var(--c-white);
  -webkit-animation: unset;
          animation: unset;
  top: 0px;
}

.header-sec {
  width: 100%;
  padding: 30px;
  -webkit-box-shadow: 0px 12px 14px 1px rgba(145, 142, 142, 0.2);
          box-shadow: 0px 12px 14px 1px rgba(145, 142, 142, 0.2);
}

.header-sec .container {
  position: relative;
  z-index: 99;
  background: var(--c-white);
}

.header-sec .header-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header-sec .header-wrapper .logo {
  max-width: 200px;
  position: relative;
  z-index: 99;
}

.header-sec .header-wrapper .logo img {
  width: 160px;
}

@media screen and (min-width: 992px) {
  .header-sec .header-wrapper .logo img {
    width: 200px;
  }
}

.header-sec .header-wrapper .menu-desktop {
  display: none;
}

@media screen and (min-width: 992px) {
  .header-sec .header-wrapper .menu-desktop {
    display: block;
  }
}

.header-sec .header-wrapper .menu-desktop ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0;
  margin: 0;
}

.header-sec .header-wrapper .menu-desktop ul li {
  list-style: none;
}

.header-sec .header-wrapper .menu-desktop ul li a {
  text-decoration: none;
  color: var(--c-black);
  font-size: 15px;
  padding: 10px 10px;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
}

.header-sec .header-wrapper .menu-desktop ul li a.active {
  background-color: var(--c-primary);
  color: var(--c-white);
  border-radius: 5px;
}

@media screen and (min-width: 1200px) {
  .header-sec .header-wrapper .menu-desktop ul li a {
    font-size: 16px;
  }
}

.header-sec .header-wrapper .menu-desktop ul li:last-child a {
  background-color: var(--c-primary);
  color: var(--c-white);
  padding: 10px 20px;
  border-radius: 4px;
  -webkit-transition: all .5s;
  transition: all .5s;
  margin-left: 10px;
}

.header-sec .header-wrapper .menu-desktop ul li:last-child a:hover {
  background-color: var(--c-secondary);
}

/* ---------========== mobile menu css ========-----*/
.mobile-menu {
  display: none;
  padding: 88px 0 0;
  position: fixed;
  width: 100%;
  left: 0;
  top: 0px;
  right: 0;
  height: 100%;
  background-color: #f2f2f2;
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 90;
}

@media screen and (min-width: 992px) {
  .mobile-menu {
    display: none !important;
  }
}

.mobile-menu ul {
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: left;
}

.mobile-menu ul li {
  list-style: none;
}

.mobile-menu ul li a {
  text-decoration: none;
  color: var(--c-white);
  font-size: 16px;
  font-weight: bold;
}

.mobile-menu-container.mean-container {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.mobile-menu-container.mean-container * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.mobile-menu-container.mean-container .mean-bar {
  background: transparent;
  padding: 0;
  min-height: 0;
}

.mobile-menu-container.mean-container .mean-bar .meanmenu-reveal {
  display: none !important;
}

.mobile-menu-container.mean-container .mean-bar .mean-nav {
  margin: 0;
  padding: 0;
  background: transparent;
}

.mobile-menu-container.mean-container .mean-bar .mean-nav > ul {
  display: block !important;
  height: auto !important;
  width: 100%;
  margin: 0;
  padding: 0;
}

.mobile-menu-container.mean-container .mean-bar .mean-nav > ul li a {
  font-size: 14px;
  color: var(--c-black);
  font-weight: normal;
  text-align: center;
  border-bottom: 1px solid #bbb5b5;
  width: 100%;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
}

.mobile-menu-container.mean-container .mean-bar .mean-nav > ul li a:hover {
  background-color: #bfbfbf63;
}

/* ---------========== menu toggle css ========-----*/
.menu-toggle {
  display: block;
  z-index: 99;
  width: 32px;
  height: 28px;
  position: relative;
}

@media screen and (min-width: 992px) {
  .menu-toggle {
    display: none;
  }
}

.menu-toggle span {
  position: absolute;
  width: 100%;
  padding: 1px 0;
  top: 50%;
  left: 0;
  margin-top: -1px;
  background-color: var(--c-black);
  -webkit-transition: top 0.3s, opacity 0.3s, -webkit-transform 0.3s 0.3s;
  transition: top 0.3s, opacity 0.3s, -webkit-transform 0.3s 0.3s;
  transition: transform 0.3s 0.3s, top 0.3s, opacity 0.3s;
  transition: transform 0.3s 0.3s, top 0.3s, opacity 0.3s, -webkit-transform 0.3s 0.3s;
}

.menu-toggle span:nth-child(2) {
  top: calc(50% - 9px);
}

.menu-toggle span:nth-child(3) {
  top: calc(50% + 9px);
}

/* ---------========== mobile menu active css ========-----*/
.menu-active .menu-toggle span {
  -webkit-transition: top 0.3s, opacity 0.3s, -webkit-transform 0.3s 0.3s;
  transition: top 0.3s, opacity 0.3s, -webkit-transform 0.3s 0.3s;
  transition: transform 0.3s 0.3s, top 0.3s, opacity 0.3s;
  transition: transform 0.3s 0.3s, top 0.3s, opacity 0.3s, -webkit-transform 0.3s 0.3s;
}

.menu-active .menu-toggle span:nth-child(1) {
  opacity: 0;
}

.menu-active .menu-toggle span:nth-child(2) {
  top: 50% !important;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.menu-active .menu-toggle span:nth-child(3) {
  top: 50% !important;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.mean-push {
  display: none;
}

@-webkit-keyframes header-fixed {
  from {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  to {
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
  }
}

@keyframes header-fixed {
  from {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  to {
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
  }
}

.hero-sectio {
  padding-top: 50px;
  padding-bottom: 100px;
}

@media screen and (min-width: 768px) {
  .hero-sectio {
    padding-top: 100px;
  }
}

.hero-sectio .hero-wrapper {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.hero-sectio .hero-content p {
  padding-bottom: 20px;
}

.hero-sectio .hero-content a {
  text-decoration: none;
  color: var(--c-white);
  padding: 10px 30px;
  background-color: var(--c-primary);
  position: relative;
  z-index: 1;
  border: solid 1px var(--c-primary);
}

.hero-sectio .hero-content a::before {
  content: "";
  position: absolute;
  background-color: var(--c-white);
  left: 0;
  bottom: 0;
  width: 0%;
  height: 100%;
  -webkit-transition: all .5s;
  transition: all .5s;
  z-index: -1;
}

.hero-sectio .hero-content a:hover {
  color: var(--c-primary);
  font-weight: bold;
  border: 1px solid var(--c-primary);
}

.hero-sectio .hero-content a:hover::before {
  width: 100%;
}

/* ---------------================= services css =================-------------*/
.services-sec {
  padding-bottom: 50px;
}

.services-sec .services-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

.services-sec .services-wrapper .services-inner {
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 20px;
  max-width: 400px;
}

@media screen and (min-width: 768px) {
  .services-sec .services-wrapper .services-inner {
    width: 50%;
  }
}

@media screen and (min-width: 992px) {
  .services-sec .services-wrapper .services-inner {
    width: 25%;
  }
}

.services-sec .services-wrapper .inner-item {
  -webkit-box-shadow: rgba(0, 75, 141, 0.2) 0px 0px 24px;
          box-shadow: rgba(0, 75, 141, 0.2) 0px 0px 24px;
  padding: 30px 20px;
  text-align: center;
  position: relative;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
}

.services-sec .services-wrapper .inner-item::before {
  content: "";
  position: absolute;
  background-color: var(--c-primary);
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
}

.services-sec .services-wrapper .inner-item:hover {
  -webkit-transform: translateY(-15px);
          transform: translateY(-15px);
}

.services-sec .services-wrapper .inner-item:hover::before {
  width: 100%;
}

.services-sec .services-wrapper .inner-item .services-icon {
  color: var(--c-white);
  width: 50px;
  height: 50px;
  background-color: var(--c-primary);
  padding: 12px 10px;
  border-radius: 30px;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.services-sec .services-wrapper .inner-item .services-icon i {
  font-size: 22px;
}

.services-sec .services-wrapper .inner-item h5 {
  color: var(--c-black);
  font-size: 18px;
  padding-top: 20px;
}

.services-sec .services-wrapper .inner-item p {
  font-size: 14px;
}

/* ---------------=================  KEY FEATURES  css =================-------------*/
.key-sec {
  padding-top: 50px;
}

.key-sec .key-heading {
  padding-bottom: 50px;
  text-align: center;
}

.key-sec .key-heading h3 {
  color: var(--c-secondary);
  font-weight: bold;
}

.key-sec .key-heading h6 {
  color: var(--c-black);
  font-size: 16px;
}

@media screen and (min-width: 576px) {
  .key-sec .key-heading h6 {
    font-size: 18px;
  }
}

.key-sec .key-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

.key-sec .key-wrapper .key-inner {
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  margin-bottom: 20px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
}

@media screen and (min-width: 768px) {
  .key-sec .key-wrapper .key-inner {
    width: 50%;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }
}

@media screen and (min-width: 992px) {
  .key-sec .key-wrapper .key-inner {
    width: 33.3333%;
  }
}

.key-sec .key-wrapper .key-inner .inner-item {
  padding: 30px 20px;
  -webkit-box-shadow: rgba(0, 75, 141, 0.2) 0px 0px 24px;
          box-shadow: rgba(0, 75, 141, 0.2) 0px 0px 24px;
  text-align: center;
  border-radius: 10px;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  position: relative;
}

.key-sec .key-wrapper .key-inner .inner-item::before {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  left: 0;
  bottom: 0;
  background-color: var(--c-primary);
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
}

.key-sec .key-wrapper .key-inner .inner-item:hover {
  -webkit-transform: translateY(-15px);
          transform: translateY(-15px);
}

.key-sec .key-wrapper .key-inner .inner-item:hover::before {
  width: 100%;
}

.key-sec .key-wrapper .key-inner .inner-item h5 {
  font-weight: 600;
  font-size: 20px;
  color: var(--c-primary);
  text-transform: uppercase;
  padding-bottom: 10px;
}

.key-sec .key-wrapper .key-inner .inner-item ul {
  padding: 0;
  margin: 0;
  padding-top: 15px;
}

.key-sec .key-wrapper .key-inner .inner-item ul li {
  list-style: none;
  font-size: 16px;
  line-height: 35px;
  color: var(--c-black);
  font-weight: 500;
}

.key-sec .key-wrapper .key-inner span {
  position: relative;
}

.key-sec .key-wrapper .key-inner span i {
  color: var(--c-secondary);
  font-weight: bold;
  font-size: 20px;
}

.key-sec .key-wrapper .key-inner span::before {
  content: "";
  position: absolute;
  width: 50px;
  height: 2px;
  right: 35px;
  bottom: 10px;
  background-color: var(--c-primary);
}

.key-sec .key-wrapper .key-inner span::after {
  content: "";
  position: absolute;
  width: 50px;
  height: 2px;
  left: 30px;
  bottom: 10px;
  background-color: var(--c-primary);
}

/* ---------------=================   our services css =================-------------*/
.our-services-sec {
  padding-top: 100px;
  padding-bottom: 100px;
}

.our-services-sec .our-heading {
  text-align: center;
}

.our-services-sec .our-heading h3 {
  color: var(--c-secondary);
  font-weight: bold;
}

.our-services-sec .our-heading p {
  font-size: 16px;
  font-weight: 500;
}

@media screen and (min-width: 576px) {
  .our-services-sec .our-heading p {
    font-size: 18px;
  }
}

.our-services-sec .ser-button-wrapper {
  padding-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

.our-services-sec .ser-button-wrapper .btn-inner {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

@media screen and (min-width: 768px) {
  .our-services-sec .ser-button-wrapper .btn-inner {
    width: 50%;
  }
}

@media screen and (min-width: 992px) {
  .our-services-sec .ser-button-wrapper .btn-inner {
    width: 33.3333%;
  }
}

.our-services-sec .ser-button-wrapper .btn-inner img {
  width: 100%;
  position: relative;
  -webkit-animation: services-img 5s infinite;
          animation: services-img 5s infinite;
}

.our-services-sec .ser-button-wrapper a {
  text-decoration: none;
  margin-top: 10px;
  color: var(--c-black);
  -webkit-box-shadow: rgba(0, 75, 141, 0.1) 0px 0px 10px;
          box-shadow: rgba(0, 75, 141, 0.1) 0px 0px 10px;
  padding: 10px 20px;
  width: 100%;
  display: block;
  text-align: center;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  position: relative;
}

.our-services-sec .ser-button-wrapper a::before {
  content: "";
  position: absolute;
  background-color: var(--c-primary);
  left: 0;
  bottom: 0;
  width: 2%;
  height: 100%;
}

.our-services-sec .ser-button-wrapper a:hover {
  -webkit-transform: translate(10px);
          transform: translate(10px);
  background-color: var(--c-primary);
  color: var(--c-white);
}

/* ---------------================= Deliverability css =================-------------*/
.deliverability-sec {
  padding-top: 50px;
  padding-bottom: 50px;
}

.deliverability-sec .title {
  text-align: center;
}

.deliverability-sec .title h3 {
  color: var(--c-secondary);
  font-weight: bold;
  text-transform: uppercase;
}

.deliverability-sec .title p {
  font-size: 16px;
  font-weight: 500;
}

@media screen and (min-width: 768px) {
  .deliverability-sec .title p {
    font-size: 18px;
  }
}

.deliverability-sec .deliver-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

.deliverability-sec .deliver-wrapper .deliver-inner {
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
}

@media screen and (min-width: 768px) {
  .deliverability-sec .deliver-wrapper .deliver-inner {
    width: 50%;
  }
}

@media screen and (min-width: 992px) {
  .deliverability-sec .deliver-wrapper .deliver-inner {
    width: 33.3333%;
  }
}

.deliverability-sec .deliver-wrapper .deliver-inner ul {
  padding: 0;
  margin: 0;
}

.deliverability-sec .deliver-wrapper .deliver-inner ul li {
  list-style: none;
  padding-top: 30px;
  font-size: 16px;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.deliverability-sec .deliver-wrapper .deliver-inner ul li p {
  padding-left: 20px;
  color: #333;
}

.deliverability-sec .deliver-wrapper .deliver-inner ul li i {
  color: "Montserrat", sans-serif;
  font-size: 40px;
  color: var(--c-primary);
}

.deliverability-sec .deliver-wrapper .deliver-inner p {
  margin: 0;
}

/* ---------------=================  Reporting  css =================-------------*/
.reporting-sec {
  padding-top: 50px;
  padding-bottom: 50px;
}

.reporting-sec .title {
  text-align: center;
}

.reporting-sec .title h3 {
  color: var(--c-secondary);
  font-weight: bold;
  text-transform: uppercase;
}

.reporting-sec .title p {
  font-size: 16px;
  font-weight: 500;
}

@media screen and (min-width: 768px) {
  .reporting-sec .title p {
    font-size: 18px;
  }
}

.reporting-sec .title h6 {
  margin-top: 20px;
  border: solid 2px var(--c-black);
  padding: 10px;
  font-size: 16px;
}

@media screen and (min-width: 768px) {
  .reporting-sec .title h6 {
    font-size: 18px;
    padding: 20px;
  }
}

.reporting-sec .title h4 {
  margin-bottom: 0;
  color: var(--c-secondary);
  font-weight: bold;
  padding: 10px;
  font-size: 18px;
}

.reporting-sec .title h4 br {
  display: none;
}

@media screen and (min-width: 768px) {
  .reporting-sec .title h4 br {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .reporting-sec .title h4 {
    font-size: 24px;
    display: block;
  }
}

/* ---------------=================  pricing css =================-------------*/
.pricing-sec {
  padding-bottom: 50px;
}

@media screen and (min-width: 768px) {
  .pricing-sec {
    padding-top: 50px;
  }
}

.pricing-sec .title {
  text-align: center;
  padding-bottom: 30px;
}

.pricing-sec .title h3 {
  color: var(--c-secondary);
  font-weight: bold;
}

.pricing-sec .title p {
  font-size: 16px;
  font-weight: 500;
}

@media screen and (min-width: 768px) {
  .pricing-sec .title p {
    font-size: 18px;
  }
}

.pricing-sec .pricing-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

.pricing-sec .pricing-inner {
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  text-align: center;
  padding-bottom: 30px;
}

@media screen and (min-width: 768px) {
  .pricing-sec .pricing-inner {
    width: 50%;
    padding-bottom: 0;
  }
}

.pricing-sec .pricing-inner h4 {
  font-size: 18px;
  font-weight: 600;
}

@media screen and (min-width: 768px) {
  .pricing-sec .pricing-inner h4 {
    font-size: 22px;
  }
}

.pricing-sec .pricing-inner h4 span {
  color: var(--c-secondary);
}

.pricing-sec .pricing-item {
  padding: 30px 30px;
  border-radius: 10px;
  -webkit-box-shadow: rgba(0, 75, 141, 0.2) 0px 0px 24px;
          box-shadow: rgba(0, 75, 141, 0.2) 0px 0px 24px;
  text-align: center;
}

.pricing-sec .pricing-item h4 {
  font-size: 20px;
  color: var(--c-primary);
  font-weight: bold;
}

.pricing-sec .pricing-item span {
  position: relative !important;
}

.pricing-sec .pricing-item span i {
  color: var(--c-secondary);
  font-size: 20px;
  margin: 15px 0px;
}

.pricing-sec .pricing-item span::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 2px;
  right: 40px;
  bottom: 10px;
  background-color: var(--c-primary);
}

.pricing-sec .pricing-item span::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 2px;
  left: 40px;
  bottom: 10px;
  background-color: var(--c-primary);
}

.pricing-sec .pricing-item p {
  font-weight: 500;
}

/* ---------------================= contact page cssa =================-------------*/
.contact-banner {
  background-image: url("../images/banner.jpg");
  padding: 100px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--c-white);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  background-position: left;
  text-align: center;
  position: relative;
}

.contact-banner::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.349);
}

.contact-banner .title {
  position: relative;
  z-index: 1;
}

.contact-banner .title h2 {
  font-weight: bold;
}

/*-----------------------------------------------------*/
.contact-sec {
  padding-top: 50px;
  padding-bottom: 50px;
}

.contact-sec .contact-form {
  padding: 30px;
}

.contact-sec .contact-form .form-control {
  border-radius: 0px;
  border: none;
  border-bottom: 1px solid var(--c-white);
  margin-bottom: 25px;
  background: transparent !important;
  color: var(--c-white);
}

.contact-sec .contact-form .form-control h3 {
  font-weight: bold;
  text-align: center;
  color: var(--c-secondary);
  padding-bottom: 20px;
}

.contact-sec .contact-form .form-control:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: var(--c-white);
}

.contact-sec .contact-form .form-control::-webkit-input-placeholder {
  color: var(--c-white);
}

.contact-sec .contact-form .form-control:-ms-input-placeholder {
  color: var(--c-white);
}

.contact-sec .contact-form .form-control::-ms-input-placeholder {
  color: var(--c-white);
}

.contact-sec .contact-form .form-control::placeholder {
  color: var(--c-white);
}

.contact-sec .contact-form .btn-submit {
  padding: 10px 30px;
  background-color: var(--c-secondary);
  border: none;
  color: var(--c-white);
  margin-top: 17px;
  width: 100%;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
}

.contact-sec .contact-form .btn-submit:hover {
  background-color: var(--c-white);
  color: var(--c-black);
}

.contact-sec .contact-form label {
  color: var(--c-white);
}

.contact-sec .form-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -30px;
  margin-right: -30px;
}

.contact-sec .form-wrapper .form-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
  padding-left: 0px;
  padding-right: 0px;
}

@media screen and (min-width: 768px) {
  .contact-sec .form-wrapper .form-inner {
    padding-left: 30px;
    padding-right: 30px;
  }
}

.contact-sec .form-wrapper .form-inner:nth-child(1) {
  width: 100%;
  background-color: var(--c-primary);
  padding-top: 50px;
  padding-bottom: 50px;
  position: relative;
}

@media screen and (min-width: 576px) {
  .contact-sec .form-wrapper .form-inner:nth-child(1) {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

@media screen and (min-width: 768px) {
  .contact-sec .form-wrapper .form-inner:nth-child(1) {
    width: 100%;
  }
}

@media screen and (min-width: 992px) {
  .contact-sec .form-wrapper .form-inner:nth-child(1) {
    width: 70%;
  }
}

.contact-sec .form-wrapper .form-inner:nth-child(2) {
  width: 100%;
  padding: 50px 0;
  background-color: var(--c-secondary);
  margin-top: 30px;
  position: relative;
}

@media screen and (min-width: 992px) {
  .contact-sec .form-wrapper .form-inner:nth-child(2) {
    width: 30%;
    margin-top: 0;
  }
}

.contact-sec .form-wrapper .form-inner .info .email {
  padding-top: 20px;
}

.contact-sec .form-wrapper .form-inner .info .phone {
  padding-top: 20px;
}

.contact-sec .form-wrapper .form-inner .info i {
  font-size: 20px;
  color: var(--c-primary);
  float: left;
  width: 44px;
  height: 44px;
  background: var(--c-white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.contact-sec .form-wrapper .form-inner .info h4 {
  padding: 0 0 0 70px;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--c-white);
}

.contact-sec .form-wrapper .form-inner .info p {
  padding: 0 0 0 70px;
  margin-bottom: 0;
  font-size: 14px;
  color: var(--c-white);
}

.contact-sec .form-wrapper .form-item {
  width: 100%;
}

.contact-sec .form-wrapper form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0px 30px;
}

@media screen and (min-width: 576px) {
  .contact-sec .form-wrapper form {
    margin-left: -20px;
    margin-right: -20px;
    padding: 0;
  }
}

.contact-sec .form-wrapper form .form-left {
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
}

@media screen and (min-width: 768px) {
  .contact-sec .form-wrapper form .form-left {
    width: 50%;
  }
}

.contact-sec .form-wrapper form .form-left .form-control {
  width: 100% !important;
}

.contact-sec .form-wrapper form .form-right {
  position: relative;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}

@media screen and (min-width: 768px) {
  .contact-sec .form-wrapper form .form-right {
    width: 50%;
  }
}

.contact-sec .form-wrapper form .form-right .form-control {
  width: 100% !important;
}

.contact-sec .form-wrapper form select {
  background: var(--c-primary);
  color: var(--c-white);
}

.contact-sec .form-wrapper form select option {
  background: var(--c-primary);
  color: var(--c-white);
}

/*-----========== privacy  section css =============------- */
.privacy-sec {
  padding-top: 50px;
  padding-bottom: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.privacy-sec .privacy-content {
  padding: 30px;
  background-color: #f8f8f8;
  border-bottom: 2px solid var(--c-primary);
}

.privacy-sec .privacy-content h3 {
  text-align: center;
  font-weight: bold;
  text-transform: uppercase;
  padding-bottom: 20px;
}

.privacy-sec .privacy-content small {
  font-style: italic;
}

.privacy-sec .privacy-content p {
  font-size: 16px;
  font-weight: normal;
  color: #333;
  text-align: justify;
}

.privacy-sec .privacy-content p a {
  text-decoration: none;
  color: var(--c-primary);
  font-weight: bold;
  cursor: pointer;
}

.privacy-sec .privacy-content sup {
  width: 20px;
  height: 20px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  display: block;
  background-color: var(--c-primary);
  margin-bottom: 30px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.privacy-sec .privacy-content sup::before {
  content: "";
  position: absolute;
  background-color: var(--c-primary);
  width: 50px;
  height: 2px;
  left: 12px;
  bottom: 36px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

@media screen and (min-width: 576px) {
  .privacy-sec .privacy-content sup::before {
    left: 0;
    bottom: 49px;
    width: 100px;
  }
}

.privacy-sec .privacy-content sup::after {
  content: "";
  position: absolute;
  background-color: var(--c-primary);
  width: 50px;
  height: 2px;
  right: 12px;
  bottom: -18px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

@media screen and (min-width: 576px) {
  .privacy-sec .privacy-content sup::after {
    right: 4px;
    bottom: -35px;
    width: 100px;
  }
}

#response {
  color: var(--c-white);
}

@-webkit-keyframes services-img {
  0% {
    top: 0px;
  }
  50% {
    top: 30px;
  }
  100% {
    top: 0px;
  }
}

@keyframes services-img {
  0% {
    top: 0px;
  }
  50% {
    top: 30px;
  }
  100% {
    top: 0px;
  }
}

.footer-top {
  padding-top: 50px;
  padding-bottom: 50px;
  background-color: var(--c-black);
}

.footer-top .footer-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (min-width: 768px) {
  .footer-top .footer-wrapper {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.footer-top .footer-menu ul {
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 30px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.footer-top .footer-menu ul li {
  list-style: none;
  padding-right: 15px;
}

.footer-top .footer-menu ul li a {
  text-decoration: none;
  color: var(--c-white);
  font-size: 12px;
  font-weight: 600;
  position: relative;
}

@media screen and (min-width: 768px) {
  .footer-top .footer-menu ul li a {
    font-size: 14px;
  }
}

.footer-top .footer-menu ul li a:before {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  left: 0;
  bottom: -2px;
  background-color: var(--c-secondary);
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
}

.footer-top .footer-menu ul li a:hover:before {
  width: 100%;
}

.footer-top .footer-menu ul li .active {
  border-bottom: solid 2px var(--c-secondary);
  color: var(--c-secondary);
}

.footer-top .footer-btn a {
  padding: 10px 20px;
  text-decoration: none;
  color: var(--c-white);
  background-color: var(--c-primary);
  font-size: 14px;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  margin-left: 10px;
  border-radius: 30px;
}

.footer-top .footer-btn a:hover {
  background-color: var(--c-white);
  color: var(--c-black);
}

.footer-top .footer-btn a:nth-child(2) {
  background-color: var(--c-secondary);
  color: var(--c-white);
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
}

.footer-top .footer-btn a:nth-child(2):hover {
  background-color: var(--c-white);
  color: var(--c-black);
}

@media screen and (min-width: 768px) {
  .footer-top .footer-btn a {
    padding: 10px 30px;
  }
}

/* ------=-========== footer-bottom ===========-------*/
.footer-bottom {
  padding: 20px;
  background-color: #333;
}

.footer-bottom .bottom-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (min-width: 768px) {
  .footer-bottom .bottom-wrapper {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.footer-bottom .bottom-wrapper .left-side p {
  color: var(--c-white);
  margin: 0;
  font-size: 14px;
}

@media screen and (min-width: 768px) {
  .footer-bottom .bottom-wrapper .left-side p {
    font-size: 16px;
  }
}

.footer-bottom .bottom-wrapper .right-side ul {
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer-bottom .bottom-wrapper .right-side ul li {
  list-style: none;
  padding: 0px 10px;
}

.footer-bottom .bottom-wrapper .right-side ul li a {
  text-decoration: none;
  color: var(--c-white);
  border-bottom: 2px solid var(--c-secondary);
  font-size: 14px;
}

@media screen and (min-width: 768px) {
  .footer-bottom .bottom-wrapper .right-side ul li a {
    font-size: 16px;
  }
}

.footer-link ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.footer-link ul li {
  list-style: none;
}

.footer-link ul li a {
  color: #fff;
}
/*# sourceMappingURL=style.css.map */