/* :: All Transition */
* {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  outline: none;
}

/* :: Body */
body {
  font-family: "Heebo", sans-serif;
  font-size: 14px;
  line-height: 25px;
  color: #1c1a30;
  background:#f4fafa;
}
ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
::-moz-selection {
  background-color: #f57009;
  color: #fff;
  text-shadow: none;
}
::selection {
  background-color: #f57009;
  color: #fff;
  text-shadow: none;
}
a,
a:hover,
a:focus,
button:focus {
  text-decoration: none;
  color: #fff;
}
.container,
.container-fluid {
  position: relative;
}

/* :: Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Barlow", sans-serif;
  margin: 0;
  padding: 0;
  font-weight: 400;
}
p {
  color: #9b9b9b;
  font-size: 14px;
  font-weight: 400;
  font-family: "Heebo", sans-serif;
  line-height: 25px;
}

/* :: Display Table */
.display-table {
  width: 100%;
  height: 100%;
  display: table;
  position: relative;
}
.table-cell {
  display: table-cell;
  vertical-align: middle;
  min-height: 100%;
  height: 100vh;
}

/* :: My Classes */
.ml-30 {
  margin-left: 30px;
}
.mb-30 {
  margin-bottom: 30px;
}
.mr-20 {
  margin-right: 20px;
}
.ml-20 {
  margin-left: 20px;
}
.py-100 {
  padding: 100px 0;
}
.py-100-70 {
  padding: 100px 0 70px 0;
}
.padding-0 {
  padding: 0;
}
.py-0-0-70-0 {
  padding: 0 0 70px 0;
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgb(28 26 48 / 35%);
}
.btn-1 {
  text-transform: capitalize;
  position: relative;
  text-align: center;
  background-color: #f57009;
  z-index: 1;
  font-size: 14px;
  font-weight: 600;
  min-width: 180px;
  height: 60px;
  line-height: 60px;
  padding: 0 15px;
  border-radius: 3px;
  overflow: hidden;
  font-family: "Heebo", sans-serif;
  display: -ms-inline-grid;
  display: inline-grid;
  cursor: pointer;
  -webkit-transition: color 1s ease-in-out, background-color 0.2s ease-in-out,
    border-color 0.2s ease-in-out;
  -o-transition: color 1s ease-in-out, background-color 0.2s ease-in-out,
    border-color 0.2s ease-in-out;
  transition: color 1s ease-in-out, background-color 0.2s ease-in-out,
    border-color 0.2s ease-in-out;
}
.btn-1 span {
  position: relative;
  z-index: 2;
}
.btn-1:after,
.btn-1:before {
  content: "";
  position: absolute;
  height: 50%;
  width: 0;
  background-color: #f57009;
  z-index: 1;
  -webkit-transition: 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -o-transition: 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.btn-1:after {
  top: 0;
  left: 0;
  right: auto;
}
.btn-1:hover:after {
  width: 100%;
  right: 0;
  left: auto;
}
.btn-1:before {
  bottom: 0;
  right: 0;
  left: auto;
}
.btn-1:hover:before {
  width: 100%;
  left: 0;
  right: auto;
}
.btn-1:hover span {
  color: #f57009;
}
.btn-1:hover:after,
.btn-1:hover:before {
  background-color: #fff;
}
.btn-2 {
  background-color: #1c1a30;
}
.btn-2 span {
  color: #f57009;
}
.btn-2:hover span {
  color: #fff;
}
.btn-2:hover:after,
.btn-2:hover:before {
  background-color: #f57009;
}
.btn-3 {
  background-color: #f57009;
}
.btn-3 span {
  color: #fff;
}
.btn-3:hover span {
  color: #f57009;
}
.btn-3:hover:after,
.btn-3:hover:before {
  background-color: #1c1a30;
}
.btn-4 {
  background-color: #fff;
}
.btn-4 span {
  color: #f57009;
}
.btn-4:hover span {
  color: #f57009;
}
.btn-4:hover:after,
.btn-4:hover:before {
  background-color: #1c1a30;
}

/* :: Section Title */
.sec-title {
  margin-bottom: 50px;
}
.sec-title h2 {
  font-size: 16px;
  line-height: 27px;
  font-weight: 600;
  display: inline-block;
  text-transform: capitalize;
  position: relative;
  color: #f57009;
  font-family: "Heebo", sans-serif;
}
.sec-title.home-2 h2:before {
  content: "";
  background-color: #f57009;
  position: absolute;
  height: 2px;
  width: 5000px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: calc(100% + 10px);
}
.sec-title.home-3 h2 {
  margin-bottom: 10px;
}
.sec-title.home-3 h2:before {
  content: "";
  background-color: #f57009;
  position: absolute;
  height: 2px;
  width: 5000px;
  bottom: -10px;
  right: 0;
}
.sec-title h3 {
  font-size: 38px;
  line-height: 1.3;
  color: #1c1a30;
  text-transform: capitalize;
  font-weight: 700;
  margin-top: 15px;
  position: relative;
}
.sec-title .sec-explain {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  margin-bottom: 0;
  text-transform: capitalize;
  position: relative;
}
.bg-section {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 75%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.bg-section-2 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.bg-section-2-left {
  background-color: #1c1a30;
  width: 50%;
  float: left;
  height: 100%;
}
.bg-section-2-right {
  background-image: url(../images/provide/03_provide.jpg);
  height: 100%;
  width: 50%;
  float: left;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

/* :: Loading */
.loading {
  position: fixed;
  background-color: #fff;
  left: 0;
  top: 0;
  z-index: 99999;
  width: 100%;
  height: 100%;
  -webkit-transition: unset;
  -o-transition: unset;
  transition: unset;
}
/* :: Navbar */
.nav-bar.active {
  -webkit-box-shadow: 0 5px 40px rgb(9 29 62 / 11%);
  box-shadow: 0 5px 40px rgb(9 29 62 / 11%);
  background-color: #fff;
}
.nav-bar .logo .logo-nav {
  display: block;
}
.nav-bar .logo .logo-nav img {
  width: 140px;
}
.nav-bar .logo .logo-nav img.two {
  display: none;
}
.nav-bar.active .logo .logo-nav img.one {
  display: none;
}
.nav-bar.active .logo .logo-nav img.two {
  display: block;
}
.nav-bar .nav-bar-links .level-1 .item-level-1 {
  display: inline-block;
  position: relative;
}
.nav-bar .nav-bar-links .level-1 .item-level-1 .link-level-1 {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 30px 0;
  margin: 0 20px 0 0px;
  position: relative;
  display: block;
  text-transform: capitalize;
}
.nav-bar.active .nav-bar-links .level-1 .item-level-1 .link-level-1 {
  color: #1c1a30;
}
.nav-bar .nav-bar-links .level-1 .item-level-1 .link-level-1:before {
  content: "";
  background-color: #f57009;
  position: absolute;
  width: 0%;
  height: 2px;
  left: 0;
  bottom: 0px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.nav-bar .nav-bar-links .level-1 .item-level-1 .link-level-1:hover:before,
.nav-bar
  .nav-bar-links
  .level-1
  .item-level-1
  .link-level-1.color-active:before {
  width: 100%;
}
.nav-bar .nav-bar-links .level-1 .item-level-1:last-of-type .link-level-1 {
  margin-right: 0;
}
.nav-bar .nav-bar-links .level-1 .item-level-1 .link-level-1:hover,
.nav-bar .nav-bar-links .level-1 .item-level-1 .link-level-1.color-active,
.nav-bar .nav-bar-links .level-2 .item-level-2 .link-level-2:hover {
  color: #f57009;
}
.nav-bar .nav-bar-links .level-2 {
  position: absolute;
  z-index: 2;
  background-color: #1c1a30;
  border-radius: 8px;
  top: 100%;
  left: 0;
  min-width: 225px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  -webkit-box-shadow: 0px 3px 7px 0px rgb(40 35 30 / 10%);
  box-shadow: 0px 3px 7px 0px rgb(40 35 30 / 10%);
  -webkit-transform: translateY(20px);
  -ms-transform: translateY(20px);
  transform: translateY(20px);
  opacity: 0;
  visibility: hidden;
}
.nav-bar .nav-bar-links .item-level-1.has-menu:hover .level-2 {
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
  opacity: 1;
  visibility: visible;
}
.nav-bar .nav-bar-links .level-2 .item-level-2 {
  position: relative;
}
.nav-bar .nav-bar-links .level-2 .item-level-2 .link-level-2 {
  color: #fff;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 500;
  position: relative;
  display: block;
  text-transform: capitalize;
  padding: 12px 25px;
  border-bottom: 1px solid rgb(248 246 247 / 10%);
}
.nav-bar .nav-bar-links .level-2 .item-level-2:last-of-type .link-level-2 {
  border-bottom: 0;
}
.nav-bar .nav-bar-links .level-2 .item-level-2 .link-level-2:after {
  content: "\f061";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  vertical-align: middle;
  font-size: 12px;
  opacity: 0;
  margin-left: 0;
  visibility: hidden;
  -webkit-transition: all 0.8s cubic-bezier(0.38, 0.17, 0.09, 0.99);
  -o-transition: all 0.8s cubic-bezier(0.38, 0.17, 0.09, 0.99);
  transition: all 0.8s cubic-bezier(0.38, 0.17, 0.09, 0.99);
}
.nav-bar .nav-bar-links .level-2 .item-level-2:hover .link-level-2:after {
  opacity: 1;
  margin-left: 15px;
  visibility: visible;
  color: #f57009;
}
.nav-bar .nav-bar-tools li {
  position: relative;
}
.nav-bar .nav-bar-tools li {
  display: inline-block;
  position: relative;
  margin-right: 15px;
  padding: 30px 15px 30px 0;
}
.nav-bar .nav-bar-tools li:last-of-type {
  margin-right: 0;
  padding-right: 0;
}
.nav-bar .nav-bar-tools li:after {
  content: "";
  width: 2px;
  height: 25px;
  background-color: rgb(155 155 155 / 30%);
  position: absolute;
  left: 100%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.nav-bar .nav-bar-tools li:last-of-type:after {
  display: none;
}
.nav-bar .nav-bar-tools li.item.phone {
  padding-top: 0;
  padding-bottom: 0;
}
.nav-bar .nav-bar-tools li .search-icon i,
.nav-bar .nav-bar-tools li .menu-icon i,
.nav-bar .nav-bar-tools li .cart-icon i {
  font-size: 16px;
  display: inline-block;
  cursor: pointer;
  color: #fff;
}
.nav-bar .nav-bar-tools li .search-icon:hover i,
.nav-bar .nav-bar-tools li .menu-icon:hover i {
  color: #f57009;
}
.nav-bar .nav-bar-tools li .nav-bar-contact i {
  font-size: 35px;
  float: left;
  line-height: 1.1;
  color: #f57009;
}
.nav-bar .nav-bar-tools li .nav-bar-contact .content-box {
  padding-left: 50px;
}
.nav-bar .nav-bar-tools li .nav-bar-contact .content-box span {
  color: #f5f5f5;
  font-weight: 500;
  text-transform: capitalize;
  font-size: 13px;
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}
.nav-bar .nav-bar-tools li .nav-bar-contact .content-box a {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  display: block;
  font-family: "Barlow", sans-serif;
  color: #fff;
}
.nav-bar .nav-bar-tools li .nav-bar-contact .content-box a:hover,
.nav-bar.active .nav-bar-tools li .nav-bar-contact .content-box a:hover {
  color: #f57009;
}
.nav-bar.active .nav-bar-tools li .search-icon i,
.nav-bar.active .nav-bar-tools li .menu-icon i,
.nav-bar.active .nav-bar-tools li .nav-bar-contact .content-box span,
.nav-bar.active .nav-bar-tools li .nav-bar-contact .content-box a {
  color: #1c1a30;
}
.nav-bar .nav-bar-tools li.item.buttons {
  padding: 15px 15px 15px 0;
}
.nav-bar .nav-bar-tools li.item.buttons a.btn-1 {
  line-height: 45px;
  height: 45px;
  min-width: 150px;
  padding: 0;
}
.nav-bar .nav-bar-tools li .cart-icon i {
  color: #1c1a30;
}
.nav-bar .nav-bar-tools li .cart-icon i:hover {
  color: #f57009;
}
.nav-bar .nav-bar-tools li.cart {
  padding: 29px 15px 29px 0;
}
.nav-bar .nav-bar-tools li.cart .cart-popup {
  background-color: #fff;
  padding: 30px;
  position: absolute;
  right: 0;
  top: calc(100% + 1px);
  z-index: 999;
  width: 300px;
  -webkit-box-shadow: 0 8px 80px rgb(40 40 40 / 8%);
  box-shadow: 0 8px 80px rgb(40 40 40 / 8%);
  -webkit-transform: translateY(60px);
  -ms-transform: translateY(60px);
  transform: translateY(60px);
  opacity: 0;
  visibility: hidden;
  border-radius: 3px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.nav-bar .nav-bar-tools li.cart:hover .cart-popup {
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
  opacity: 1;
  visibility: visible;
}
.nav-bar .nav-bar-tools li.cart .cart-popup .item {
  position: relative;
  border-bottom: 1px solid rgb(155 155 155 / 30%);
  padding-bottom: 20px;
  margin: 0 0 20px 0;
  display: block;
}
.nav-bar .nav-bar-tools li.cart .cart-popup .item img {
  width: 50px;
  height: 50px;
  float: left;
}
.nav-bar .nav-bar-tools li.cart .cart-popup .item .item-content {
  padding-left: 65px;
  padding-right: 25px;
}
.nav-bar .nav-bar-tools li.cart .cart-popup .item .item-content div {
  font-size: 18px;
  line-height: 1.3;
  margin-bottom: 4px;
  color: #1c1a30;
  font-weight: 700;
  font-family: "Barlow", sans-serif;
}
.nav-bar .nav-bar-tools li.cart .cart-popup .item .item-content span {
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  color: #9b9b9b;
}
.nav-bar .nav-bar-tools li.cart .cart-popup .item .delete-item {
  width: 20px;
  height: 20px;
  line-height: 20px;
  background-color: #1c1a30;
  border-radius: 1px;
  color: #fff;
  text-align: center;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
}
.nav-bar .nav-bar-tools li.cart .cart-popup .item .delete-item:hover {
  background-color: #f57009;
}
.nav-bar .nav-bar-tools li.cart .cart-popup .subtotal span {
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  color: #9b9b9b;
}
.nav-bar .nav-bar-tools li.cart .cart-popup .subtotal span:last-of-type {
  float: right;
  color: #f57009;
}
.nav-bar .nav-bar-tools li.cart .cart-popup .button-cart {
  margin-top: 20px;
}
.nav-bar .nav-bar-tools li.cart .cart-popup .button-cart button {
  outline: none;
  padding: 0 22px;
}
.nav-bar .nav-bar-tools li.cart .cart-popup .button-cart button:first-of-type {
  margin-right: 10px;
}
.nav-bar .nav-bar-tools li.cart .cart-popup .button-cart a.btn-1 {
  padding: 0 15px;
  min-width: 110px;
  height: 40px;
  line-height: 40px;
  font-size: 14px;
  border-radius: 2px;
  display: inline-block;
}
.nav-bar .nav-bar-tools li.cart .cart-popup .button-cart a.btn-1:first-of-type {
  margin-right: 16px;
}

/* :: Top Navbar */
.top-navbar {
  background-color: #1c1a30;
}
.top-navbar .content-box .website-info li {
  display: inline-block;
  color: #fff;
  font-size: 13px;
  padding: 15px;
  padding-left: 0;
  line-height: 1.1;
  text-transform: capitalize;
}
.top-navbar .content-box .website-info li i {
  margin-right: 6px;
  color: #f57009;
}
.top-navbar .content-box .website-icon-social li {
  display: inline-block;
  color: #fff;
  font-size: 13px;
  padding-left: 15px;
  line-height: 1;
}
.top-navbar .content-box .website-icon-social li:hover i {
  color: #f57009;
}

/* :: Header */
.header,
.header .header-carousel .sec-hero {
  min-height: 800px !important;
}
.header .header-carousel {
  height: 100%;
}
.header .header-carousel .container {
  position: relative;
}
.header .header-carousel .sec-hero {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.header .banner .top-handline {
  line-height: 1;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 12px;
  color: #fff;
}
.header .banner .handline {
  color: #fff;
  text-transform: capitalize;
  font-weight: 700;
  line-height: 1.2;
  font-size: 74px;
  margin-bottom: 30px;
}
.header .banner .about-website {
  text-transform: capitalize;
  font-size: 16px;
  color: #fff;
  font-weight: 600;
  line-height: 25px;
  margin: 0 100px 30px 0;
  position: relative;
}
.header .banner .header-list-features .item {
  position: relative;
  margin-bottom: 12px;
}
.header .banner .header-list-features .item:last-of-type {
  margin-bottom: 0;
}
.header .banner .header-list-features .item i {
  font-size: 11px;
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
  width: 22px;
  height: 22px;
  text-align: center;
  line-height: 18px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
}
.header .banner .header-list-features .item h5 {
  display: inline-block;
  position: relative;
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  color: #fff;
  text-transform: capitalize;
  padding-left: calc(22px + 12px);
  font-family: "Barlow", sans-serif;
}
.header .banner .btn-box {
  margin-top: 30px;
}
.header-carousel.owl-theme .owl-nav,
.testimonial.home-2 .testimonial-carousel.owl-theme .owl-nav {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  margin: 0;
  line-height: 1;
  width: 100%;
}
.header-carousel.owl-theme .owl-nav [class*="owl-"],
.testimonial.home-2 .testimonial-carousel.owl-theme .owl-nav [class*="owl-"] {
  margin: 0;
}
.header-carousel.owl-theme .owl-nav [class*="owl-"] i,
.testimonial.home-2 .testimonial-carousel.owl-theme .owl-nav [class*="owl-"] i {
  font-size: 60px;
  color: rgb(255, 255, 255, 0.5);
  position: absolute;
  opacity: 0;
  visibility: hidden;
}
.header-carousel.owl-theme .owl-nav [class*="owl-"] i:hover,
.testimonial.home-2
  .testimonial-carousel.owl-theme
  .owl-nav
  [class*="owl-"]
  i:hover {
  color: #f57009;
}
.header-carousel.owl-theme .owl-nav [class*="owl-"] i.ar-icons-left-chevron,
.testimonial.home-2
  .testimonial-carousel.owl-theme
  .owl-nav
  [class*="owl-"]
  i.ar-icons-left-chevron {
  left: 10px;
}
.header-carousel.owl-theme .owl-nav [class*="owl-"] i.ar-icons-right-chevron,
.testimonial.home-2
  .testimonial-carousel.owl-theme
  .owl-nav
  [class*="owl-"]
  i.ar-icons-right-chevron {
  right: 10px;
}
.header-carousel.owl-theme:hover .owl-nav [class*="owl-"] i,
.testimonial.home-2 .testimonial-carousel.owl-theme .owl-nav [class*="owl-"] i {
  opacity: 1;
  visibility: visible;
}
.header-carousel.owl-theme .owl-dots {
  margin: 0;
  line-height: 1;
  position: absolute;
  bottom: 30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.header-carousel.owl-theme .owl-dots .owl-dot {
  outline: none;
}
.header-carousel.owl-theme .owl-dots .owl-dot span {
  margin: 0 5px;
  width: 25px;
  height: 6px;
  border-radius: 5px;
  background-color: #fff;
  outline: none;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.header-carousel.owl-theme .owl-dots .owl-dot.active span,
.header-carousel.owl-theme .owl-dots .owl-dot:hover span {
  background-color: #f57009;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
/* :: Sponsors */
.sponsors {
  padding: 50px 0;
  border-bottom: 1px solid #e9e9e9;
}
.sponsors-box-item img {
  opacity: 0.5;
}
.sponsors-box-item img:hover {
  opacity: 1;
}
/* :: Projects */
.projects-item {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  margin-bottom: 30px;
}
.projects-item:hover .img-box img {
  -webkit-transform: scale(1.3);
  -ms-transform: scale(1.3);
  transform: scale(1.3);
  -webkit-transition: all 2s ease-out;
  -o-transition: all 2s ease-out;
  transition: all 2s ease-out;
}
.projects-item .hover-box {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.projects-item:hover .hover-box {
  background-color: rgb(245 112 9 / 80%);
}
.projects-item .hover-box .text-box {
  position: absolute;
  bottom: 30px;
  left: 30px;
  z-index: 1;
}
.projects-item .hover-box .text-box .tags a {
  font-size: 15px;
  line-height: 1;
  font-weight: 500;
  margin-bottom: 12px;
  margin-right: 5px;
  text-transform: capitalize;
  color: #fff;
  display: inline-block;
  -webkit-transform: translateY(10px);
  -ms-transform: translateY(10px);
  transform: translateY(10px);
  visibility: hidden;
  opacity: 0;
  -webkit-transition-delay: 0.2s;
  -o-transition-delay: 0.2s;
  transition-delay: 0.2s;
}
.projects-item .text-box h4 a {
  color: #fff;
  font-weight: 600;
  line-height: 1.2;
  font-size: 20px;
  display: inline-block;
  -webkit-transform: translateY(10px);
  -ms-transform: translateY(10px);
  transform: translateY(10px);
  visibility: hidden;
  opacity: 0;
  -webkit-transition-delay: 0.4s;
  -o-transition-delay: 0.4s;
  transition-delay: 0.4s;
  text-transform: capitalize;
}
.projects-item:hover .hover-box .text-box .tags a,
.projects-item:hover .text-box h4 a,
.projects-item:hover .hover-box .projects-icon {
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
  visibility: visible;
  opacity: 1;
}
.projects-item .hover-box .projects-icon {
  position: absolute;
  top: 30px;
  left: 30px;
  z-index: 1;
  -webkit-transform: translateY(10px);
  -ms-transform: translateY(10px);
  transform: translateY(10px);
  visibility: hidden;
  opacity: 0;
}
.projects-item .hover-box .projects-icon li {
  display: inline-block;
}
.projects-item .hover-box .projects-icon li a {
  display: inline-block;
  background-color: #fff;
  border: 2px solid #fff;
  font-size: 13px;
  color: #f57009;
  width: 40px;
  height: 40px;
  line-height: 38px;
  position: relative;
  text-align: center;
  margin-right: 10px;
  border-radius: 3px;
}
.projects-item .hover-box .projects-icon li:hover a {
  background-color: transparent;
  color: #fff;
}
.projects-carousel.owl-theme .owl-nav {
  display: none;
}
.projects-carousel.owl-theme .owl-dots .owl-dot span {
  background-color: #1c1a30;
}
/* :: Footer */
.footer {
  padding-top: 100px;
  background-color: #1c1a30;
}
.footer .logo,
.footer .links {
  margin-bottom: 30px;
}
.footer .logo img {
  width: 160px;
}
.footer .logo p {
  margin: 30px 0 30px 0;
  color: #f9f9f9;
}
.footer-title h4 {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  text-transform: capitalize;
  line-height: 1;
  margin-bottom: 25px;
}
.footer .links li a {
  display: inline-block;
  position: relative;
  color: #f9f9f9;
  font-size: 15px;
  line-height: 33px;
}
.footer .links li:hover a {
  color: #f57009;
}
.footer .links li a:after {
  content: "\f061";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  vertical-align: middle;
  font-size: 12px;
  opacity: 0;
  margin-left: 0;
  visibility: hidden;
  -webkit-transition: all 0.8s cubic-bezier(0.38, 0.17, 0.09, 0.99);
  -o-transition: all 0.8s cubic-bezier(0.38, 0.17, 0.09, 0.99);
  transition: all 0.8s cubic-bezier(0.38, 0.17, 0.09, 0.99);
}
.footer .links li a:hover:after {
  opacity: 1;
  margin-left: 15px;
  visibility: visible;
  color: #f57009;
}
.footer .newsletter p {
  color: #f9f9f9;
  margin-bottom: 26px;
  font-size: 15px;
  font-weight: 500;
}

.footer .newsletter form {
  position: relative;
}
.footer .newsletter form input {
  width: 100%;
  color: #9b9b9b;
  background-color: transparent;
  font-size: 13px;
  text-transform: capitalize;
  padding: 0 15px;
  line-height: 44px;
  border-radius: 3px;
  letter-spacing: 0.25px;
  position: relative;
  border: 1px solid rgb(204 204 204 / 0.1);
}
.footer .newsletter form input:focus {
  border-color: #f57009;
}
.footer .newsletter form button {
  border: none;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 15px;
  background-color: #f57009;
  font-size: 11px;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border-radius: 2px;
  color: #fff;
}
.footer .newsletter form button:hover {
  color: #f57009;
  background-color: #fff;
}
.footer ul.icon {
  margin: 30px 0;
}
.footer ul.icon li {
  display: inline-block;
}
.footer ul.icon li a {
  width: 35px;
  display: inline-block;
  height: 35px;
  line-height: 35px;
  text-align: center;
  background-color: #262442;
  color: #fff;
  font-size: 13px;
  margin-right: 5px;
  border-radius: 2px;
}
.footer ul.icon li:hover a {
  background-color: #fff;
  color: #f57009;
}
.copyright {
  margin-top: 70px;
  padding: 40px 0;
  background-color: #262442;
  overflow: hidden;
}
.copyright p {
  margin: 0;
  color: #f4f4f4;
  float: left;
  font-family: "Barlow", sans-serif;
  font-size: 18px;
  font-weight: 500;
}
.copyright p a {
  color: #f57009;
}
.copyright ul {
  float: right;
}
.copyright ul li {
  display: inline-block;
  margin-left: 10px;
}
.copyright ul li a {
  color: #fff !important;
}
.copyright ul li:hover a {
  color: #f57009 !important;
}

/* :: Scroll Up */
.scroll-up {
  position: fixed;
  z-index: 100;
  bottom: 30px;
  right: 30px;
  -webkit-box-shadow: 0px 0px 40px 4px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 0px 40px 4px rgba(0, 0, 0, 0.05);
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
}
.scroll-up.active {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.scroll-up a {
  background-color: #f57009;
  font-size: 16px;
  color: #fff;
  line-height: 42px;
  width: 44px;
  height: 44px;
  display: inline-block;
  text-align: center;
  border: 1px solid #f57009;
  border-radius: 3px;
  outline: none;
}
.scroll-up:hover a {
  background-color: #1c1a30;
  border: 1px solid #1c1a30;
}

/* :: Breadcrumb Header */
.breadcrumb-header {
  padding-bottom: 120px;
  padding-top: calc(120px + 85px);
  color: #fff;
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}
.breadcrumb-header.style-2 {
  padding: 120px 0;
}
.breadcrumb-header .banner h1 {
  color: #fff;
  text-transform: capitalize;
  font-weight: 700;
  line-height: 1.2;
  font-size: 74px;
  margin-bottom: 30px;
}
.breadcrumb-header .banner ul li {
  display: inline-block;
  position: relative;
  margin-right: 10px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.3px;
  color: #f9f9f9;
  text-transform: capitalize;
}
.breadcrumb-header .banner ul li:hover a {
  color: #f57009;
}
/* ************************** */
/*  code  */
.nav-bar .nav-bar-links .level-1 .item-level-1 .link-level-1 {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 0;
  margin: 0 30px 0 0px;
  position: relative;
  display: block;
  text-transform: capitalize;
}
.single-team-content-box h2,
.single-services-content-box h2 {
  font-size: 40px;
  line-height: 1.3;
  text-transform: capitalize;
  font-weight: 700;
  margin-bottom: 30px;
}
.single-team-content-box h3,
.single-services-content-box h3 {
  font-size: 28px;
  line-height: 1.2;
  text-transform: capitalize;
  font-weight: 600;
  margin-bottom: 25px;
  margin-top: 40px;
}
.contact-box .box a,
.contact-info .contact-box .box p {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 0;
  line-height: 2;
  position: relative;
  display: block;
  color: #9b9b9b;
  font-family: "Barlow", sans-serif;
}
.contact-info .contact-box i {
  float: left;
  font-size: 30px;
  line-height: 1;
  color: #f57009;
  position: relative;
  z-index: 2;
  padding: 10px 0 0 10px;
}
.contact-info .contact-box .box {
  padding-left: 55px;
}
.pulse i {
  background-color: #f57009;
  width: 55px;
  height: 55px;
  line-height: 55px;
  border-radius: 50%;
  font-size: 16px;
  text-align: center;
  display: inline-block;
  cursor: pointer;
  overflow: hidden;
  -webkit-animation: video-pulse-presentation 2s linear infinite;
  animation: video-pulse-presentation 2s linear infinite;
}

/* mukesh shantilal  */
.h17 {
  height: 17rem;
}
.card {
  /* margin: 10px; */
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  /* width: 300px; */
  height:320px;
}
.card-header img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  /* padding: 20px; */
  /* min-height: 250px; */
}


/* :: Contact US Page */
.contact-info-content {
  margin-bottom: 50px;
}
.contact-info-content .contact-box {
  padding: 40px;
  border: 1px solid #ddd;
  border-radius: 3px;
  margin-bottom: 30px;
  text-align: center;
}
.contact-info-content .contact-box:hover {
  background-color: #f57009;
  border-color: #f57009;
}
.contact-info-content .contact-box i {
  font-size: 60px;
  line-height: 1;
  color: #f57009;
  display: inline-block;
  margin-bottom: 25px;
}
.contact-info-content .contact-box .box a,
.contact-info-content .contact-box .box p {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 0;
  line-height: 1.5;
  position: relative;
  display: block;
  color: #9b9b9b;
  font-family: "Barlow", sans-serif;
}
.contact-info-content .contact-box:hover i,
.contact-info-content .contact-box:hover .box a,
.contact-info-content .contact-box:hover .box p {
  color: #fff;
}
.contact-us .map-box {
  height: 100%;
  margin-right: 20px;
}
.contact-us .map-box iframe {
  width: 100%;
  height: 100%;
  border-radius: 5px;
}
.contact-us .add-comments .inner-add-comments-box.last {
  margin-bottom: 0;
}

.add-comments .inner-add-comments-box {
  margin-bottom: 30px;
}
.add-comments .inner-add-comments-box input,
.add-comments .inner-add-comments-box textarea,
.checkout-box .form-checkout .form-checkout-item input {
  border: 2px solid #e9e9e9;
  padding: 12px;
  width: 100%;
  color: #9b9b9b;
  font-size: 13px;
  border-radius: 5px;
}
.add-comments .inner-add-comments-box input:focus,
.add-comments .inner-add-comments-box textarea:focus,
.checkout-box .form-checkout .form-checkout-item input:focus,
.form-promo-code input:focus {
  border-color: #f57009;
}
.add-comments .inner-add-comments-box textarea {
  height: 200px;
  display: block;
}
.add-comments .inner-add-comments-box button.submit,
.checkout-box .form-checkout .form-checkout-item button.submit {
  border: none;
}
.contact-info-content .contact-box {
    padding: 40px;
    border: 1px solid #ddd;
    border-radius: 3px;
    margin-bottom: 30px;
    text-align: center;
    height: 250px;
}
.nav-bar .logo .logo-nav p.two {
    display: none;
}
.nav-bar.active .logo .logo-nav p.two {
    display: block;
    /*text-shadow: 2px 2px #ddd;*/
    font-weight:700;
    color:#f57009;
}
.nav-bar.active .logo .logo-nav p.one {
    display: none;
}
.nav-bar .logo .logo-nav p.one {
    display: block;
    text-shadow: 2px 2px #04040494;
    font-weight:700;
    color:#fff;
}
p {
    color: #1c1a30;
    font-size: 14px;
    /*font-weight: 400;*/
    font-family: "Heebo", sans-serif;
    line-height: 25px;
}
