/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Montserrat", sans-serif;
  color: #444444;
}

a {
  text-decoration: none;
  color: #2067B9;
}

a:hover {
  color: #2067b9;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #2067B9;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #2067b9;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  padding: 3px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.05);
}

#header .logo {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
}

#header .logo a {
  color: #0f394c;
}

#header .logo img {
  max-height: 79px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #393E46;
  white-space: nowrap;
  transition: 0.3s;
  text-transform: uppercase;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #f45327;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 15px;
  text-transform: none;
  font-weight: 500;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #49b5e7;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #0f394c;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(7, 25, 33, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #0f394c;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #49b5e7;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #49b5e7;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  background: #ffffff;
  margin-top: 20px;
}

.home-slider{
  border-radius:10px;
  height:500px;
}
.home-slider .swiper-button-next, .home-slider .swiper-button-prev {
  background: #fff;
  border-radius: 30px;
  height: 40px;
  width: 40px;
  box-shadow: 0 5px 10px 0 rgba(85,85,85,.4);
}
.home-slider .swiper-button-next:after, .home-slider  .swiper-button-prev:after {
  font-size: 20px;
  font-weight: 600;
  color:#000;
}
.home-slider img{
  /* height:88vh; */
}

#hero .container {
  padding-top: 35px;
}

#hero h1 {
  margin: 0;
  font-size: 42px;
  font-weight: 700;
  line-height: 56px;
  color: #0f394c;
  text-transform: uppercase;
}

#hero h2 {
  color: #1c698c;
  margin: 10px 0 0 0;
  font-size: 20px;
}

#hero .btn-get-started {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 3px;
  transition: 0.5s;
  margin-top: 25px;
  color: #fff;
  background: #49b5e7;
  text-transform: uppercase;
}

#hero .btn-get-started:hover {
  background: #76c7ed;
}

@media (max-width: 991px) {
  #hero {
    text-align: center;
  }

  #hero .hero-img img {
    width: 50%;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
  }

  #hero .hero-img img {
    width: 80%;
  }

  #hero {
    margin-top: 15px;
  }
  .home-slider img {
    height: 200px;
  }

}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #F7F7F7;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: #0f394c;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .icon-boxes h3 {
  font-size: 28px;
  font-weight: 700;
  color: #0f394c;
  margin-bottom: 15px;
}

.about .icon-box {
  margin-top: 40px;
}

.about .icon-box .icon {
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border: 2px solid #d0ecf9;
  border-radius: 50px;
  transition: 0.5s;
}

.about .icon-box .icon i {
  color: #49b5e7;
  font-size: 32px;
}

.about .icon-box:hover .icon {
  background: #49b5e7;
  border-color: #49b5e7;
}

.about .icon-box:hover .icon i {
  color: #fff;
}

.about .icon-box .title {
  margin-left: 85px;
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 18px;
}

.about .icon-box .title a {
  color: #343a40;
  transition: 0.3s;
}

.about .icon-box .title a:hover {
  color: #49b5e7;
}

.about .icon-box .description {
  margin-left: 85px;
  line-height: 24px;
  font-size: 14px;
}

.about .video-box {
  background: url("../img/about.jpg") center center no-repeat;
  background-size: cover;
  min-height: 500px;
}

@media (min-width: 1200px) {
  .about .video-box {
    margin-left: 15px;
    margin-right: -15px;
  }
}

.about .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#49b5e7 50%, rgba(73, 181, 231, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}

.about .play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.about .play-btn::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate-btn 2s;
  animation: pulsate-btn 2s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(73, 181, 231, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.about .play-btn:hover::after {
  border-left: 15px solid #49b5e7;
  transform: scale(20);
}

.about .play-btn:hover::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  -webkit-animation: none;
  animation: none;
  border-radius: 0;
}

@-webkit-keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

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

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

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

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  background: url("../img/counts-bg.jpg") center center no-repeat;
  background-size: cover;
  padding: 80px 0 60px 0;
  position: relative;
}

.counts::before {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.8);
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.counts .title {
  position: relative;
  color: #0f394c;
  margin-bottom: 40px;
}

.counts .title h3 {
  font-size: 36px;
  font-weight: 700;
}

.counts .counters span {
  font-size: 44px;
  font-weight: 700;
  display: block;
  color: #49b5e7;
  font-family: "Poppins", sans-serif;
}

.counts .counters p {
  padding: 0;
  margin: 0 0 20px 0;
  font-size: 15px;
  color: #444444;
}

@media (min-width: 1200px) {
  .counts {
    background-attachment: fixed;
  }
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients .clients-wrap {
  border-top: 1px solid #eee;
  border-left: 1px solid #eee;
}

.clients .client-logo {
  padding: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-right: 1px solid #eee;
  border-bottom: 1px solid #eee;
  overflow: hidden;
  background: #fff;
  height: 120px;
}

.clients .client-logo img {
  height: 50%;
  filter: grayscale(100%);
  transition: 0.3s;
}

.clients .client-logo:hover img {
  filter: none;
  transform: scale(1.2);
}

.clients img {
  transition: all 0.4s ease-in-out;
}



/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 10px auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
  padding: 2px 15px;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #444444;
  margin-bottom: 10px;
  transition: all 0.3s ease-in-out;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #49b5e7;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: rgba(255, 255, 255, 0.6);
}

.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(255, 255, 255, 0.6);
  position: absolute;
  left: 30px;
  right: 30px;
  top: 30px;
  bottom: 30px;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.portfolio .portfolio-wrap .portfolio-info::before {
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  top: 35px;
  left: 35px;
  border-top: 3px solid #bdc6ca;
  border-left: 3px solid #bdc6ca;
  transition: all 0.5s ease 0s;
  z-index: 9994;
}

.portfolio .portfolio-wrap .portfolio-info::after {
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  bottom: 35px;
  right: 35px;
  border-bottom: 3px solid #bdc6ca;
  border-right: 3px solid #bdc6ca;
  transition: all 0.5s ease 0s;
  z-index: 9994;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: #0f394c;
  font-weight: 600;
}

.portfolio .portfolio-wrap .portfolio-info p {
  color: #0f394c;
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
}

.portfolio .portfolio-wrap .portfolio-links {
  text-align: center;
  z-index: 4;
}

.portfolio .portfolio-wrap .portfolio-links a {
  color: #49b5e7;
  margin: 0 2px;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
  color: #8dd0f0;
}

.portfolio .portfolio-wrap:hover::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
}

.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}

.portfolio .portfolio-wrap:hover .portfolio-info::before {
  top: 15px;
  left: 15px;
}

.portfolio .portfolio-wrap:hover .portfolio-info::after {
  bottom: 15px;
  right: 15px;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #49b5e7;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #49b5e7;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(15, 57, 76, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials {
  padding: 80px 0;
  background: url("../img/cta-bg.jpg") no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
}

.testimonials::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(11, 41, 55, 0.9);
}

.testimonials .section-header {
  margin-bottom: 40px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  text-align: center;
  color: #fff;
}

.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid rgba(255, 255, 255, 0.15);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #fff;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #ddd;
  margin: 0 0 15px 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: rgba(255, 255, 255, 0.4);
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
  color: #eee;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.4);
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #49b5e7;
}

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .member {
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.team .member .member-img {
  position: relative;
  overflow: hidden;
}

.team .member .social {
  position: absolute;
  left: 0;
  bottom: 30px;
  right: 0;
  opacity: 0;
  transition: ease-in-out 0.3s;
  text-align: center;
}

.team .member .social a {
  transition: color 0.3s;
  color: #0f394c;
  margin: 0 3px;
  border-radius: 50px;
  width: 36px;
  height: 36px;
  background: rgba(73, 181, 231, 0.8);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.3s;
  color: #fff;
}

.team .member .social a:hover {
  background: #76c7ed;
}

.team .member .social i {
  font-size: 18px;
  line-height: 0;
}

.team .member .member-info {
  padding: 25px 15px;
}

.team .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: #0f394c;
}

.team .member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #aaaaaa;
}

.team .member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #777777;
}

.team .member:hover .social {
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
.gallery .gallery-item {
  overflow: hidden;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
}

.gallery .gallery-item img {
  transition: all ease-in-out 0.4s;
}

.gallery .gallery-item:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  width: 100%;
  background: #fff;
}

.contact .info i {
  font-size: 20px;
  color: #49b5e7;
  float: left;
  width: 44px;
  height: 44px;
  background: #ebf7fc;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #0f394c;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #2079a1;
}

.contact .info .email,
.contact .info .phone {
  margin-top: 40px;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
  background: #49b5e7;
  color: #fff;
}

.contact .php-email-form {
  width: 100%;
  background: #fff;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
  background: #49b5e7;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #1da2e0;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #2067b9;
  margin-top: 85px;
  color: white;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 74px;
  }
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 15px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #fff;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #fff;
  padding: 0 0 5px 0;
  color: #fff;
  font-size: 14px;
  background: #f45327;
}

#footer .footer-newsletter {
  padding: 50px 0;
  background: #fff;
  text-align: center;
  font-size: 15px;
}

#footer .footer-newsletter h4 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  color: #fff;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  text-align: left;
}

#footer .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: -2px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #49b5e7;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type=submit]:hover {
  background: #1da2e0;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #2067b9;
  border-top:3px solid #2067B9;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h4 {
  font-size: 22px;
  margin: 0 0 30px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Poppins", sans-serif;
  color: #fff;
}

#footer .footer-top h4 {
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #fff;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #49b5e7;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #f45327;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #dba506;
  color: #fff;
  text-decoration: none;
}

#footer .copyright {
  float: left;
  color: #fff;
  font-size:10px;
}

#footer .credits {
  float: right;
  font-size:10px;
  color: #fff;
}

@media (max-width: 575px) {

  #footer .copyright,
  #footer .credits {
    float: none;
    text-align: center;
  }
}
/*--------------------------------------------------------------
# Work Shape
--------------------------------------------------------------*/
.work-shape {
  position: absolute;
  z-index: 1;
}
.work-shape.pshape-1 {
  right: 11%;
  top: 26%;
  animation: float-bob-y infinite 5s linear;
}
.work-shape.pshape-2 {
  left: 7.5%;
  top: 28%;
  animation: float-bob-y infinite 5s linear;
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .work-shape.pshape-2 {
    display: none;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .work-shape.pshape-2 {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .work-shape.pshape-2 {
    display: none;
  }
}
@media (max-width: 767px) {
  .work-shape.pshape-2 {
    display: none;
  }
}
.work-shape.pshape-3 {
  left: 12.39%;
  bottom: 12%;
  animation: scale-up-one infinite 3s linear;
}
.work-shape.pshape-4 {
  right: 8%;
  bottom: 16%;
  animation: rotation infinite 5s alternate-reverse;
}
/*--------------------------------------------------------------
#  End Work Shape
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Case Shape
--------------------------------------------------------------*/

.case-studies {
  z-index: 2;
}

.case-shape {
  position: absolute;
  z-index: 1;
}
.case-shape.cashape-1 {
  left: 5.10%;
  top: 23%;
  animation: animationFramesTwo infinite 10s linear;
}
.case-shape.cashape-2 {
  left: 7.5%;
  bottom: 8%;
  animation: float-bob-y infinite 4s linear;
  z-index: -1;
}
.case-shape.cashape-3 {
  right: 0;
  bottom: 1%;
  z-index: -1;
  animation: float-bob-y infinite 5s linear;
}
.case-shape.cashape-4 {
  right: 7%;
  bottom: 9%;
  animation: rotation infinite 10s linear;
}

.section-title .theme-bg-color2 {
  padding: 21px 33px;
}

.plus-icon {
  background: #060315;
  width: 62px;
  height: 62px;
  display: inline-block;
  border-radius: 50%;
  text-align: center;
  line-height: 62px;
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: -31px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.plus-icon img {
  display: inline-block !important;
  max-width: 100% !important;
  width: 25px;
  height: 26px;
}
.plus-icon:hover img {
  width: 25px !important;
  height: 26px;
  transform: rotate(90deg);
}

.case-title {
  font-size: 36px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .case-title {
    font-size: 22px;
  }
}
@media (max-width: 767px) {
  .case-title {
    font-size: 22px;
  }
}
.case-title:hover a {
  color: #ff3e41;
}

.case-feedback {
  padding-left: 115px;
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .case-feedback {
    padding-left: 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .case-feedback {
    padding-left: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .case-feedback {
    padding-left: 0;
  }
}
@media (max-width: 767px) {
  .case-feedback {
    padding-left: 0;
  }
}
.case-feedback p {
  font-size: 20px;
  line-height: 1.8;
}

.authors-designation {
  position: relative;
  z-index: 1;
}
.authors-designation h5 {
  font-size: 20px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
}
.authors-designation h6 {
  color: #18152c;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
}
.authors-designation .signature {
  position: absolute;
  z-index: 1;
  left: 53%;
  top: -10px;
}

.single-case__thumb {
  overflow: hidden;
}
.single-case__thumb img {
  display: block;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.single-case__content {
  position: relative;
  background-color: white;
  padding: 70px 50px 70px 37px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .single-case__content {
    padding: 70px 30px 70px 30px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .single-case__content {
    padding: 40px 15px 70px 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single-case__content {
    padding: 40px 15px 70px 20px;
  }
}
@media (max-width: 767px) {
  .single-case__content {
    padding: 40px 15px 70px 15px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .single-case__content .case-title {
    font-size: 28px;
  }
}
@media (max-width: 767px) {
  .single-case__content .case-title {
    font-size: 26px;
  }
}
.single-case__content .plus-icon {
  display: inline-block;
}
.single-case__content .plus-icon img {
  display: inline-block;
  max-width: 100%;
}
.single-case:hover .single-case__thumb img {
  transform: scale(1.1);
}
.single-case:hover .single-case__content {
  box-shadow: 0px 35px 25px rgba(219, 223, 224, 0.35);
}
.single-case:hover .plus-icon {
  background-color: #51cfed;
}

.case-style-2 {
  padding-right: 175px;
  padding-left: 175px;
}
@media only screen and (min-width: 1601px) and (max-width: 1800px) {
  .case-style-2 {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .case-style-2 {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .case-style-2 {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .case-style-2 {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (max-width: 767px) {
  .case-style-2 {
    padding-left: 0;
    padding-right: 0;
  }
}
.case-style-2 .single-case .single-case__content {
  padding: 70px 40px 70px 37px;
}
@media only screen and (min-width: 1601px) and (max-width: 1800px) {
  .case-style-2 .single-case .single-case__content {
    padding: 70px 15px 70px 15px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .case-style-2 .single-case .single-case__content {
    padding: 30px 15px 30px 15px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .case-style-2 .single-case .single-case__content {
    padding: 30px 15px 30px 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .case-style-2 .single-case .single-case__content {
    padding: 30px 15px 30px 15px;
  }
}
@media (max-width: 767px) {
  .case-style-2 .single-case .single-case__content {
    padding: 30px 15px 30px 15px;
  }
}
@media only screen and (min-width: 1601px) and (max-width: 1900px) {
  .case-style-2 .single-case .single-case__content .case-title {
    font-size: 28px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .case-style-2 .single-case .single-case__content .case-title {
    font-size: 28px;
  }
}

.case-shape.c2ashape-1 {
  left: 180px;
  top: 232px;
  animation: animationFramesTwo infinite 10s linear;
}
.case-shape.c2ashape-2 {
  right: 10%;
  top: 15%;
  animation: rotation infinite 5s alternate-reverse;
}
.case-shape.c2ashape-3 {
  right: 70px;
  top: 69%;
  animation: float-bob-y infinite 5s alternate-reverse;
}
/*--------------------------------------------------------------
#  End Case Shape
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Featured Shape
--------------------------------------------------------------*/
.car-wrap {
  margin-bottom: 40px;
  -webkit-box-shadow: 0px 5px 12px -1px rgba(0, 0, 0, 0.06);
  -moz-box-shadow: 0px 5px 12px -1px rgba(0, 0, 0, 0.06);
  box-shadow: 0px 5px 12px -1px rgba(0, 0, 0, 0.06);
  background: #fff;
}
.car-wrap .img {
  width: 100%;
  height: 220px;
}
.car-wrap .text {
  border-top: none;
  padding: 20px 30px 30px;
}
.car-wrap .text .price {
  color: #1089ff;
  margin-bottom: 0;
  font-weight: 600;
}
.car-wrap .text .price span {
  font-size: 12px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.3);
}
.car-wrap .text h2 {
  font-size: 20px;
  font-weight: 500;
}
.car-wrap .text h2 a {
  color: #000;
}
.car-wrap .text span.cat {
  font-weight: 400;
  color: rgb(255 190 0);
  display: block;
  margin-bottom: 0;
}
.car-wrap .text p.d-block {
  width: 100%;
}
.car-wrap .text p.d-block a {
  width: 50%;
}
.ftco-car-details .services .media-body .icon span {
  color: #1089ff;
}
.ftco-car-details .services .media-body .text h3 {
  font-size: 14px !important;
  color: rgba(0, 0, 0, 0.4);
}
.ftco-car-details .services .media-body .text h3 span {
  display: block;
  color: #000;
}
.car-details .img {
  width: 100%;
  height: 600px;
  margin-bottom: 40px;
}
.car-details span.subheading {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 2px;
  color: rgba(0, 0, 0, 0.4);
  display: block;
}




/*--------------------------------------------------------------
# End Featured Shape
--------------------------------------------------------------*/

/* > Process Styles */
.process-wrap {
  width: 100%;
  margin: 100px auto;
}
.process-main {
    width: 100%;
    min-width: 320px;
    display: flex;
}
.col-3 {
  width: 25%;
  position: relative;
}

.process-main .col-3:not(:first-child):before{
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 4px;
    top: 47.5px;
    left: calc(-50% + 20px);
    right: 0;
    background: #363b43 ;
    border: 2px #363b43  solid;
   -o-transition: .4s;
    -ms-transition: .4s;
    -moz-transition: .4s;
    -webkit-transition: .4s;
     transition: .4s;
}
.process-step-cont {
    font-family: sans-serif;
    font-size: 16px;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    align-content: space-between;
}
.process-step {
    /* border: 5px #ebebeb solid; */
    border-radius: 100%;
    line-height: 0;
    background: #393E46;
    text-align: center;
    align-items: center;
    justify-content: center;
    align-self: center;
    display: flex;
    color: #fff;
    width: 90px;
    height: 90px;
    font-weight: 700;
    margin-bottom: 7px;
    z-index: 4;
    cursor: pointer;
}
.process-step img{
  width:40px;
}
.process-label {
    color: #393e46;
    font-weight: 600;
     width: 100%;
     text-align: center;
}
.process-desc{
  width: 100%;
  text-align: center;
  color: #393e46;
  font-weight: 400;
  font-size: 14px;
  text-transform: none;
  max-width: 74%;
  white-space: break-spaces;
  height: 45px;
  
}
.process-dots {
    width: 10px; 
    height: 10px;
    border-radius: 50%;
    background-color: #ebebeb;
    cursor: pointer;
}
.process-dot-cont {
    display: flex;
    justify-content: space-around;
    align-items: stretch;
    width: 60%; 
    padding-top: 5px;
}
.active-step1 .col-3:first-child .process-step,
.active-step1 .col-3:first-child .process-dots:first-child,
.active-step1-mini2 .col-3:first-child .process-step,
.active-step1-mini2 .col-3:first-child .process-dots:nth-child(-n+2),
.active-step1-mini3 .col-3:first-child .process-step,
.active-step1-mini3 .col-3:first-child .process-dots:nth-child(-n+3),
.active-step1-mini4 .col-3:first-child .process-step,
.active-step1-mini4 .col-3:first-child .process-dots:nth-child(-n+4)
{
    background-color: #f89828;
}
.active-step1-mini2 .col-3:first-child .process-dots:first-child,
.active-step1-mini3 .col-3:first-child .process-dots:nth-child(-n+2),
.active-step1-mini4 .col-3:first-child .process-dots:nth-child(-n+3)
 {
    background-color: #fbcb93;
}
.active-step1 .col-3:first-child .process-label,
.active-step1-mini3 .col-3:first-child .process-label,
.active-step1-mini2 .col-3:first-child .process-label,
.active-step1-mini4 .col-3:first-child .process-label{
    color: #f89828;
}
.active-step2 .col-3:first-child,
.active-step3 .col-3:nth-child(-n+2),
.active-step4 .col-3:nth-child(-n+3){
    opacity: 0.5;
   /*pointer-events: none;*/
}
.active-step2 .col-3:first-child .process-step:before,
.active-step3 .col-3:nth-child(-n+2) .process-step:before,
.active-step4 .col-3:nth-child(-n+3) .process-step:before{
    content: '\2713';
    padding: 7px;
}
.active-step2 .col-3:nth-child(-n+2) .process-step,
.active-step2 .col-3:nth-child(-n+2) .process-dots,
.active-step3 .col-3:nth-child(-n+3) .process-step,
.active-step3 .col-3:nth-child(-n+3) .process-dots,
.active-step4 .col-3:nth-child(-n+4) .process-step,
.active-step4 .col-3:nth-child(-n+4) .process-dots {
    background-color: #f89828;
}
.active-step2 .col-3:nth-child(-n+2) .process-label,
.active-step3 .col-3:nth-child(-n+3) .process-label,
.active-step4 .col-3:nth-child(-n+4) .process-label{
    color: #f89828;
}
.active-step2 .col-3:nth-child(-n+2):before,
.active-step3 .col-3:nth-child(-n+3):before,
.active-step4 .col-3:nth-child(-n+4):before{
    background: #f89828 !important;
}

.numba{
  background: #2067B9;
  padding: 5px;
  border-radius: 20px;
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  bottom: 90%;
  left: 55%;
  z-index: 34;
  color: white;
}

@media screen and (min-width:1400px){
  .numba {
    bottom: 88%;
  }
}
@media screen and (max-width: 640px) {
  .process-main {
    flex-wrap: wrap;
  }
  .col-3 {
    width: 50%;
  }
  .process-main .col-3:nth-of-type(3):not(:first-child):before {
    top: -19.5px;
    left: calc(-50% + 145px);
    transform: rotate(150deg);
  }
}

.section-title h6 {
  color: #5D5D5D;
  font-size: 20px;
  font-weight: 500;
}
.grey-kitty{
  filter: invert(22%) sepia(2%) saturate(4426%) hue-rotate(179deg) brightness(36%) contrast(35%);
}

.gallery .gallery-item {
  height:150px;
}

.gallery .gallery-item img {
  min-height:150px;
}
.swiper-gallery {
  height:190px
}


.swiper-pagination-bullet-active {
  background: #000;
}

.car-wrap .img {
  width: 100%;
  height: 220px;
  background-size: 350px auto;
  background-repeat: no-repeat;
  background-position: center;
}

.services-wrap {
  padding: 4em 3em;
  background: #fff;
  -webkit-box-shadow: 0px 5px 12px -1px rgba(0, 0, 0, 0.03);
  -moz-box-shadow: 0px 5px 12px -1px rgba(0, 0, 0, 0.03);
  box-shadow: 0px 5px 12px -1px rgba(0, 0, 0, 0.03);
}
.services-wrap .heading-section {
  font-size: 24px;
  font-weight: 600;
}
.services .icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.05);
  margin: 0 auto;
  margin-bottom: 20px;
}
.services .icon span {
  font-size: 40px;
  color: #1089ff;
}
.services h3 {
  font-size: 18px;
  font-weight: 600;
  height:65px;
  overflow:hidden;
}
.services.services-2 .icon {
  width: 110px;
  height: 110px;
  background: #2067B9;
  border: none;
}
.services.services-2 .icon span {
  color: #fff;
}

.services.services-2 .icon img {
  color: #fff;
}

.services .icon img {
  width:64px;
  color: #1089ff;
}
.services p{
  color: #f45327;
  font-weight: 600;
  font-size: 22px;
}
.grey-bg-soft2 {
  background: #FFF8EE;
}
.venom{
  position: relative;
  z-index: 4;
}
.car-wrap ol, .car-wrap ul {
  padding-left: 1rem;
}

section.work-process{
  padding-top:0;
}
.services.services-2 a:hover .icon{
  background:#f45327;
}
.swiper-button-next:after, .swiper-button-prev:after {
  color: #2067B9;
}
@media(max-width:1400px){
  .services .icon img {
    width: 50px;
  }

  .swiper-button-next:after, .swiper-button-prev:after {
    font-size: 26px;
  }
}

.cta {
  background: url(../../images/peace.webp);
  /*background-attachment: fixed;*/
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.mainn {
  padding: 50px 0;
  position:relative
}
.cta:before {
  content: "";
  background: rgb(0 0 0 / 65%);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
.gallary-header h2 {
  position: relative;
  color: #f45327;
  font-size: 40px;
  font-weight: 500;
  font-family: 'Poppins',sans-serif;
  padding-bottom: 14px;
}

.appsLand-btn {
  background: #2067B9;
  display: inline-block;
  padding: 17px 54px;
  text-decoration: none;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  font-family: 'Montserrat',sans-serif;
  box-shadow: 0 1px 5px rgb(2 3 3 / 15%);
  letter-spacing: .7px;
  border: 0;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  -webkit-transition: all .5s ease-in-out 0;
  -moz-transition: all .5s ease-in-out 0;
  -o-transition: all .5s ease-in-out 0;
  transition: all .5s ease-in-out 0;
}
.apps-btn {
  background: transparent;
  display: inline-block;
  padding: 17px 54px;
  text-decoration: none;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  text-transform: uppercase;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  font-family: 'Montserrat',sans-serif;
  box-shadow: 0 1px 5px rgb(2 3 3 / 15%);
  letter-spacing: .7px;
  border: 0;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  -webkit-transition: all .5s ease-in-out 0;
  -moz-transition: all .5s ease-in-out 0;
  -o-transition: all .5s ease-in-out 0;
  transition: all .5s ease-in-out 0;
  border: 2px solid #00d8ff;
}
.dedipras{
  padding: 40px 0;
}
.fh-service .service-content {
  padding-bottom: 30px;
  transition: 0.5s;
}
.fh-service .entry-title {
  font-size: 16px;
  padding-bottom: 5px;
  font-weight: 500;
  text-align: center;
}
.fh-service h2, .fh-service h2 a {
  transition: 0.5s;
}
.fh-service .entry-thumbnail {
  margin-bottom: 25px;
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 20px;
}
.fh-service .entry-thumbnail a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  background-color: #000;
  opacity: 0;
  transition: 0.5s;
}
.fh-service .entry-thumbnail img {
  transition: 0.5s;
}
.fh-service.style-1 .summary a.fh-btn-3 {
  display: none;
}
.fh-service .service-content:hover .entry-thumbnail a {
  opacity: 0.6;
}
.col-md-25 {
  flex: 0 0 auto;
  width: 20%;
}
.fh-service .entry-thumbnail img {
  height: auto;
  width: 100%;
}

.appsLand-btn:hover{
  color:#f45327;
}
.btn-primary{
  background:#2067B9;
  border-color:#2067B9;
}
.our-causes .cause-wrap {
  /* margin-top: 60px; */
  
}
.services2 .cause-wrap {
  box-shadow: 0 4px 20px 0 rgb(0 0 0 / 15%);
  
}
.services2 .cause-content-wrap{
  padding:10px;
}
.services2 .cause-content-wrap .entry-content {
  margin-top: 10px;
}
.our-causes .cause-wrap figure {
  position: relative;
}
.cause-wrap figure img {
  display: block;
  width: 100%;
}
.our-causes .cause-wrap figure .figure-overlay {
  top: 0;
  left: 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: rgba(0,0,0,.7);
  transition: all .5s;
}
.btn.orange-border:hover, .btn.gradient-bg {
  border-color: transparent;
  background: linear-gradient(270deg,rgba(255,90,0,1) 0%,rgba(255,54,0,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff5a00', endColorstr='#ff3600',GradientType=1 );
  color: #fff;
}
.our-causes .cause-content-wrap {
  padding: 32px;
  background: #fff;
}
.cause-content-wrap .entry-title a {
  font-size: 18px;
  font-weight: 600;
  color: #262626;
}
.cause-content-wrap .entry-content {
  margin-top: 28px;
  margin-bottom: 0;
  font-size: 14px;
  color: #929191;
}
.our-causes .cause-content-wrap .entry-content {
  margin-top: 20px;
}
.our-causes .cause-wrap .fund-raised {
  margin-top: 30px;
}
.barfiller {
  position: relative;
  width: 100%;
  height: 5px;
  border-radius: 3px;
  background: #d6dee1;
}
.barfiller .tip {
  left: 0;
  position: absolute;
  z-index: 2;
  width: 42px;
  height: 42px;
  padding-top: 14px;
  margin-top: -21px;
  border-radius: 50%;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  background: #ff5a00;
  color: #fff;
}
.barfiller .fill {
  display: block;
  position: relative;
  width: 0;
  height: 100%;
  border-radius: 3px;
  background: #333;
  z-index: 1;
}
.fund-raised-details {
  font-size: 14px;
  color: #929191;
}
.our-causes .cause-wrap figure:hover .figure-overlay {
  opacity: 1;
  visibility: visible;
}
.btn-secondary {
  background: #f45327;
  border-color: #f45327;
}

.footer-links iframe{
  width:100% !important;
}

.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: -5px;
  left: 0;
  width: 100%;
}
.services .swiper-wrapper {
  height: 570px;
}
.donatur img{
  border-radius:5px;
}
.nav-link:focus, .nav-link:hover {
  color: #2067B9;
}
.nav-tabs .nav-link.active {
  color: #ffffff;
  background-color: #f45327;
  border-color: #f45327;
}
.fh-service .entry-thumbnail {
  height:150px;
  overflow:hidden;
}
.fh-service .entry-thumbnail img {
  min-height:150px;
}
.progress-bar {
    background-color: #2067b9;
}
.nav-tabs .nav-link{
    color: #000000;
}
.klaputru{
    height:220px;
    overflow:hidden;
    display: flex;
}
.klaputru a img{
    margin:0 auto;
    display:block;
}
@media(max-width:768px){
  .col-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .fh-service .entry-thumbnail img {
    transition: 0.5s;
    height: auto;
    width: 100%;
  }

  .fh-service .entry-title {
    font-size: 16px;
  }

  .home-slider {
    height: auto;
  }

  .services.services-2 .icon {
    width: 80px;
    height: 80px;
  }
  .services h3 {
    font-size: 12px;
  }
  .services p {
    font-size: 16px;
  }
}