/* Base */

@font-face {
  font-family: 'cera_proregular';
  src: url('../fonts/cera_pro_regular.woff2') format('woff2'),
    url('../fonts/cera_pro_regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'cera_pro_medium';
  src: url('../fonts/cera_pro_medium.woff2') format('woff2'),
    url('../fonts/cera_pro_medium.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'cera_probold';
  src: url('../fonts/cera_pro_bold.woff2') format('woff2'),
    url('../font/cera_pro_bold.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}


/* Varaibles ================================== */

:root {
  --font-regular: 'cera_proregular';
  --font-medium: 'cera_pro_medium';
  --font-bold: 'cera_probold';
  --primary-color: #1da9d7;
  --secondary-color: #76BE43;
  --text-color: #121B26;
  --font-color-light: #AEB7D6;
  --light-blue-bg: #EFF7F9;
  --gray-color: #42556C;
  --dark-bg-color: #131b26;

}

/*  ================================== */


body {
  font-size: 1rem;
  font-family: 'cera_proregular', sans-serif;
  color: var(--text-color);
}

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

::selection {
  background: var(--primary-color);
  color: #fff;
}

a {
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
}

a:hover {
  text-decoration: none;
}


.hamb-icon {
  font-size: 1.875rem;
  color: var(--gray-color);
}

.nvd-wrap:before {
  display: none;
  -webkit-transition: .3s all ease-in-out;
  -o-transition: .3s all ease-in-out;
  transition: .3s all ease-in-out;
  background: rgba(0, 0, 0, 0.6);
  content: "";
  position: absolute;
  z-index: 2000;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  visibility: hidden;
}

.offcanvas-menu .nvd-wrap {
  height: 100%;
  width: 100%;
  z-index: 2;
}

.offcanvas-menu .nvd-wrap:before {
  opacity: 1;
  visibility: visible;
}

.btn {
  font: 1rem var(--font-bold);
  border-radius: 30px;
  padding: 10px 30px;
  transition: .3s linear;
  text-transform: uppercase;

}

.btn:hover,
.btn:active,
.btn:focus {
  outline: none;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.btn.btn-primary {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
}

.btn.btn-primary:hover {
  background: #fff;
  border-color: #fff;
  color: var(--primary-color);
}


.nvd-section {
  padding: 2.5em 0;
  position: relative;
  background: #fff;
  z-index: 2;
}

.nvd-footer {
  background: #fff;
  position: relative;
  z-index: 1;
}

.nvd-footer ul li {
  display: inline-block;
  margin-right: 5px;
}

/* Navbar */
.nvd-navbar {
  margin-bottom: 0px;
  z-index: 1999;
  position: absolute;
  top: 0;
  width: 100%;
  border-bottom: rgba(255, 255, 255, 0.7);
  background: #fff;
}

.nvd-navbar .nvd-logo {
  position: relative;
  left: 0;
  top: -5px
}

.nvd-navbar .nvd-navigation.border-bottom {
  border-bottom: 1px solid #f3f3f4 !important;
}

.nvd-navbar .nvd-navigation .nvd-menu {
  margin-bottom: 0;
}

.nvd-navbar .nvd-navigation .nvd-menu .active {
  color: var(--primary-color);
  display: inline-block;
  padding: 5px 20px;
}

.nvd-navbar .nvd-navigation .nvd-menu>li {
  display: inline-block;
}

.nvd-navbar .nvd-navigation .nvd-menu>li>a {
  padding: 0 20px;
  color: var(--gray-color);
  display: inline-block;
  text-decoration: none !important;
  font: 1.125rem var(--font-medium);
}

.nvd-navbar .nvd-navigation .nvd-menu>li>a:hover {
  color: var(--primary-color);
}



.nvd-mobile-menu {
  width: 100%;
  position: fixed;
  right: 0;
  z-index: 2000;
  padding-top: 20px;
  background: rgba(255, 255, 255, 1);
  height: calc(100vh);
  -webkit-transform: translateX(110%);
  -ms-transform: translateX(110%);
  transform: translateX(110%);
  -webkit-box-shadow: -10px 0 20px -10px rgba(0, 0, 0, 0.1);
  box-shadow: -10px 0 20px -10px rgba(0, 0, 0, 0.1);
  -webkit-transition: .3s all ease-in-out;
  -o-transition: .3s all ease-in-out;
  transition: .3s all ease-in-out;
}

.offcanvas-menu .nvd-mobile-menu {
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
  transform: translateX(0%);
}

.nvd-mobile-menu .nvd-mobile-menu-header {
  width: 100%;
  float: left;
  padding-left: 20px;
  padding-right: 20px;
}

.nvd-mobile-menu .nvd-mobile-menu-header .nvd-mobile-menu-close {
  float: right;
}

.nvd-mobile-menu .nvd-mobile-menu-header .nvd-mobile-menu-close span {
  font-size: 30px;
  display: inline-block;
  padding-left: 10px;
  padding-right: 0px;
  line-height: 1;
  cursor: pointer;
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
}

.nvd-mobile-menu .nvd-mobile-menu-header .nvd-mobile-menu-close span:hover {
  color: var(--gray-color);
}

.nvd-mobile-menu .nvd-mobile-menu-body {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  position: relative;
  padding: 0 20px 20px 20px;
  height: calc(100vh - 52px);
  padding-bottom: 150px;
}

.nvd-mobile-menu .nvd-nav-wrap {
  padding: 0;
  margin: 0;
  position: relative;
}

.nvd-mobile-menu .nvd-nav-wrap a {
  padding: 10px 20px;
  display: block;
  position: relative;
  color: var(--gray-color);
}

.nvd-mobile-menu .nvd-nav-wrap a:hover {
  color: var(--primary-color);
  ;
}

.nvd-mobile-menu .nvd-nav-wrap li {
  position: relative;
  display: block;
}

.nvd-mobile-menu .nvd-nav-wrap li .active {
  color: var(--primary-color);
  ;
}

.nvd-mobile-menu .nvd-nav-wrap .arrow-collapse {
  position: absolute;
  right: 0px;
  top: 10px;
  z-index: 20;
  width: 36px;
  height: 36px;
  text-align: center;
  cursor: pointer;
  border-radius: 50%;
}

.nvd-mobile-menu .nvd-nav-wrap .arrow-collapse:hover {
  background: #f8f9fa;
}

.nvd-mobile-menu .nvd-nav-wrap .arrow-collapse:before {
  font-size: 12px;
  z-index: 20;
  font-family: "icomoon";
  content: "\f078";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-180deg);
  -ms-transform: translate(-50%, -50%) rotate(-180deg);
  transform: translate(-50%, -50%) rotate(-180deg);
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
}

.nvd-mobile-menu .nvd-nav-wrap .arrow-collapse.collapsed:before {
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.nvd-mobile-menu .nvd-nav-wrap>li {
  display: block;
  position: relative;
  text-align: center;
}

.nvd-mobile-menu .nvd-nav-wrap>li>a {
  padding-left: 20px;
  font-size: 20px;
}

.sticky-wrapper {
  position: absolute;
  z-index: 100;
  width: 100%;
}

.sticky-wrapper .nvd-navbar {
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
}

.sticky-wrapper.is-sticky .nvd-navbar {
  -webkit-box-shadow: 4px 0 20px -5px rgba(0, 0, 0, 0.2);
  box-shadow: 4px 0 20px -5px rgba(0, 0, 0, 0.2);
}

.js-sticky-header {
  padding-top: 5px;
  padding-bottom: 5px;

}

.sticky-wrapper .shrink {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}


.nvd-blocks-cover {
  padding-top: 60px;
  background: var(--dark-bg-color);
}

.nvd-blocks-cover .banner-img {
  background: url(../images/banner.jpg) center center no-repeat;
  background-size: cover;
  position: relative;
}

.nvd-blocks-cover .banner-content {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 3rem;
  /* top:200px; */
  z-index: 1;
  background: var(--dark-bg-color);
}

.nvd-blocks-cover,
.nvd-blocks-cover>.container>.row {
  min-height: 600px;
  height: calc(100vh);
}

.nvd-blocks-cover h1 {
  font-size: 3.375rem;
  color: #fff;
  font-family: var(--font-bold);
}



.nvd-blocks-cover p {
  color: white;
  font-size: 2rem;
}

.bg-light {
  background: #ccc;
}

.testimonial-slider {
  position: relative;
  z-index: 1;
}

.testimonial-slider .owl-nav {
  position: absolute;
  bottom: 0;
  right: 0;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.testimonial-slider .owl-nav .owl-prev {
  background: url(../images/arw-prev.png) center center no-repeat;
}

.testimonial-slider .owl-nav .owl-next {
  background: url(../images/arw-nxt.png) center center no-repeat;
  ;
}


.testimonial-slider .owl-nav .owl-prev,
.testimonial-slider .owl-nav .owl-next {
  display: inline-block;
  height: 50px;
  width: 50px;
}

.testimonial-slider .owl-nav .owl-prev.disabled,
.testimonial-slider .owl-nav .owl-next.disabled {
  opacity: .2;
}



.testimonial-slider .owl-dots {
  text-align: center;
}

.testimonial-slider .owl-dots .owl-dot {
  display: inline-block;
  margin: 4px;
}

.testimonial-slider .owl-dots .owl-dot span {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #dee2e6;
}

.testimonial-slider .owl-dots .owl-dot.active span {
  background: var(--primary-color);
}



/* NVD ===================================================================================*/


.blk {
  padding: 2.5rem;
}

.blk h6 {
  color: var(--primary-color);
  font: 1.25rem var(--font-bold);
}

.blk p {
  font-size: 2rem;
  line-height: 2.375rem;
}

.blk-bg-1 {
  background: #ecf7fb;
}

.blk-bg-2 {
  background: #faf6eb;
}

.blk-bg-3 {
  background: #eefee1;
}

.blk-bg-4 {
  background: #8bff38;
}

.blk-bg-5 {
  background: #5ed9f9;
}

.section-title {
  font: 1.5rem var(--font-bold);
  color: var(--primary-color);
  display: block;
}

.nvd-wrap h4 {
  font: 3rem var(--font-regular);
  line-height: 3.875rem;
  color: var(--text-color);
  margin-bottom: 4rem;
}

.nvd-wrap h4 span {
  color: var(--secondary-color);
  font-family: var(--font-bold);
}

.p-font-md {
  font-size: 1.5rem;
}

.about-content {
  padding-left: 5rem;
}

.about-content p {
  line-height: 1.875rem;
}

.blk-count {
  margin-top: 1.5rem;
}

.blk-count .num {
  font: 3rem var(--font-bold);
  color: var(--primary-color);
  display: block;
  white-space: nowrap;
}

.blk-count .caption {
  text-transform: uppercase;
}

.dark-bg {
  background: var(--text-color);
}

.vision-blk {
  padding: 2.5rem;
}

.vision-blk h6 {
  font: 1.5rem var(--font-bold);
}

.vision-blk p {
  font-size: 2rem;
  line-height: 2.375rem;
}

.lft-blk {
  display: flex;
  align-items: center;
  height: 100%;
}

.lft-blk h4 {
  color: #fff;
}

.testimonial-panel {
  position: relative;
  border-top: 1px solid #000;
  margin-top: 3rem;
  padding-top: 8rem;
  background: url(../images/quote.png) 0 3rem no-repeat;
}


.testimonial {
  position: relative;
  padding-left: 14rem;
}

.testimonial p {
  color: #fff;
  font-size: 3rem;
  line-height: 3.875rem;
}

.testimonial figure img {
  max-width: 100px;
  margin: 0 auto;
  border-radius: 50%;
}

.test-user {
  color: var(--primary-color);
  font: 2rem var(--font-bold);
}

.test-user span {
  display: block;
  color: var(--font-color-light);
  font: 1rem var(--font-regular);
  line-height: 2.125rem;
}

/* .testimonial .owl-nav {
  color: #fff;
} */

.service-panel {
  background: var(--light-blue-bg);
}

.team-member {
  text-align: center;
}

.team-member figure {
  margin: 0 auto;
  padding: 0;
  position: relative;
  overflow: hidden;
  border-radius: 50%;
  width: 250px;
  cursor: pointer;
}

.team-member figure img {
  transition: .5s ease;
  filter: grayscale(100%);
}

.team-member figure:hover img {
  transform: scale(1.5);
  filter: grayscale(0);
}

.team-member h3 {
  color: #000;
  margin: 0;
  font: 1.5rem var(--font-bold);
  margin-bottom: 5px;
}

.sub-title {
  font-size: 2rem;
  margin-bottom: 3.75rem;
  color: var(--gray-color);
}

.clients-slider .slide {
  float: left;
  border: 1px solid #d2e8ee;
  padding: 10px;
  height: 200px;
  text-align: center;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.clients-slider .slide img {
  width: auto;
  display: inline-block;
}

.contact-panel {
  position: relative;
  background-color: #f1f3f5;
}

.address-blk:before,
.contact-panel:before {
  background: url(../images/contact.jpg) no-repeat 0 0;
  background-size: 50%;
  background-attachment: fixed;
}

.contact-panel:before {
  content: "";
  width: 50%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.form-control:focus {
  outline: none;
  box-shadow: none !important;
}

.address-blk {
  position: absolute;
  overflow: hidden;
  bottom: 0;
  right: 40px;
  z-index: 1;
}

.address-blk h5 {
  font: 1.5rem var(--font-bold);
}

.address-blk p {
  color: var(--gray-color);
}

.address-blk:before {
  filter: blur(10px);
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.address-blk:after {
  position: absolute;
  z-index: -1;
  content: '';
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.8);
}

.footer {
  background: var(--gray-color);
}

.footer p,
.footer a {
  color: #fff;
  margin: 0;
  text-decoration: none;
}

.contact-form {
  padding: 0 5rem 5rem;
}

.contact-form .form-control {
  font-size: 1.25rem;
  padding: 0.75rem 1.5rem;
  border: 0;
  margin-bottom: 1.563rem;
  border-radius: 0.625rem;
  color: var(--gray-color);
}

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

.ftr-links {
  margin-top: 3.75rem;
}

.ftr-links li {
  padding-right: 1.25rem;
}

.ftr-links li a {
  color: var(--gray-color);
  text-decoration: none;
  font-family: var(--font-medium);
}

.ftr-links li a:hover,
.social-media li a:hover,
.copy-right a:hover {
  color: var(--primary-color);
}

.ftr-right {
  margin-top: 2.125rem;
}

.copy-right {
  font-family: var(--font-medium);
}

.copy-right a {
  color: var(--text-color);
}

.social-media li a {
  color: var(--gray-color);
  font-size: 1.5rem;
  margin-right: 1.25rem;
  transition: .3s linear;
}


/*popover------------ */

.popover {
  border: 0;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.popover.show {
  opacity: 1;
}

.popover-body {
  background: var(--primary-color);
  color: #fff;
  border-radius: 6px;
  text-align: center;
}

.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::after {
  border-top-color: var(--primary-color);
}

.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::after {
  border-right-color: var(--primary-color);
}

.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::after {
  border-bottom-color: var(--primary-color);
}

.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::after {
  border-left-color: var(--primary-color);
}

.nvd-logo img {
  height: 52px;
  padding: 5px 0;
}


/*PRELOADING------------ */

#overlayer {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 7100;
  background: #fff;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}


.loader {
  width: 48px;
  height: 48px;
  z-index: 7700;
  position: fixed;
  top: 50%;
  left: 50%;
  background: var(--primary-color);
  display: inline-block;
  border-radius: 50%;
  box-sizing: border-box;
  animation: animloader 1s ease-in infinite;
}

@keyframes animloader {
  0% {
    transform: scale(0);
    opacity: 1;
  }

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



/*mediaquery------------ */

@media (max-width: 768px) {

  .nvd-blocks-cover {
    background: none;
  }

  .nvd-blocks-cover .banner-img {
    background-size: cover;
  }

  .nvd-logo a {
    padding: 10px 5px 5px;
    display: inline-block;
  }

  .nvd-blocks-cover .banner-content {
    padding: 1rem;
    position: relative;
    background: none;
    background: url(../images/banner.jpg) center center no-repeat;
    background-attachment: fixed;
    background-size: cover;
    /* background:rgba(19, 27, 38, 0.9) !important; */
  }

  .nvd-blocks-cover .banner-content:before {
    position: absolute;
    content: '';
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(19, 27, 38, 0.9);

  }

  .section-title,
  .nvd-wrap h4,
  .banner-content,
  .about-content {
    text-align: center;
  }

  .blk,
  .vision-blk {
    margin-bottom: 0.938rem;
  }

  .about-content,
  .testimonial {
    padding: 0;
  }

  .address-blk {
    position: relative;
    left: 0;
  }

  /* .nvd-section {
    padding-bottom: 0.938rem !important;
  } */

  .blk {
    text-align: center;
  }

  .test-user {
    font-size: 1.5rem;
  }

  .ftr-links {
    margin-top: 1.75rem;
  }

  .sub-title {
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .testimonial-slider .owl-nav {
    display: none;
  }

  .team-member figure {
    margin: 0 auto;
  }

  .contact-form .form-control {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .footer p {
    text-align: center !important;
  }

  .b-h {
    height: 100%;
  }

  .mob-ftr {
    text-align: center;
  }

  .nvd-blocks-cover h1 {
    font-size: 2.5rem;
  }

  #about-section {
    overflow: hidden;
  }



}

@media (min-width: 768px) {
  .nvd-section {
    padding: 5em 0;
  }

  .blk,
  .vision-blk {
    height: 100%;
  }

  .nvd-logo {
    margin-left: 1rem;
  }

}

@media (max-width: 1200px) {
  .team-member figure {
    width: 215px;
  }
}




@media (max-width: 992px) {

  /* .nvd-blocks-cover h1 {
    font-size: 3rem;
  } */

  .blk {
    padding: 1.25rem;
  }

  .blk p {
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .nvd-wrap h4 {
    font-size: 2rem;
    line-height: 3rem;
    margin-bottom: 2rem;
  }

  .vision-blk p {
    font-size: 1rem;
    line-height: 1.5rem;
    ;
  }

  .testimonial {
    padding-left: 0;
  }

  .address-blk {
    position: relative;
    left: 0;
    right: 0;
  }

  .testimonial-panel {
    background-size: 10%;
  }

  .testimonial p {
    font-size: 1.5rem;
    line-height: 2.25rem;
  }

  .contact-panel:before {
    width: 100%;
    height: 45%;
    background-size: cover;
  }

  .contact-form {
    padding: 2rem 0;
    position: relative;
  }

  .about-content {
    padding: 1rem 0 0
  }




}

@media only screen and (min-width: 992px) and (max-width: 1400px) {

  .address-blk:before,
  .contact-panel:before {
    background-size: 100vh;
  }
}

/* @media only screen and (min-width: 768px) and (max-width: 992px) {
  .contact-panel:before {
    height: 42.2%;
  }
} */