/**
* Template Name: Dilbird - v4.10.0

*/

@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@300;400;500;600;700&display=swap');
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  background: #fff;
  color: #444;
 font-family: 'Rajdhani', sans-serif;
 font-weight: 400;
}

a {
  color: #167bba;
  text-decoration: none;
  transition: 0.5s;
}

a:hover,
a:active,
a:focus {
  color: #167bba;
  outline: none;
  text-decoration: none;
}

p {
  padding: 0;
  margin: 0 0 30px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Rajdhani", sans-serif;
  font-weight: 500;
  margin: 0 0 20px 0;
  padding: 0;
}

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

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

.back-to-top:hover {
  background: #167bba;
  color: #fff;
}

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

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: #fff;
  border-bottom: 1px solid #eee;
  font-size: 14px;
  padding: 0;
  height: 40px;
}

#topbar .contact-info i {
  font-style: normal;
  color: #3e5476;
}

#topbar .contact-info i a,
#topbar .contact-info i span {
  padding-left: 5px;
  color: #444;
}

#topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
}

#topbar .contact-info i a:hover {
  color: #3e5476;
}

#topbar .social-links a {
  color: #555;
  padding: 0 15px;
  display: inline-block;
  line-height: 1px;
  border-left: 1px solid #e9e9e9;
}

#topbar .social-links a:hover {
  color: #3e5476;
}

#topbar .social-links a:first-child {
  border-left: 0;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 80px;
  transition: all 0.5s;
  z-index: 997;
  background: #fff;
  box-shadow: 0px 6px 9px 0px rgba(0, 0, 0, 0.06);
}

#header #logo h1 {
  font-size: 42px;
  margin: 0;
  padding: 0;
  font-weight: 600;
}

#header #logo h1 a {
  color: #167bba;
}

#header #logo h1 a span {
  color: #3e5476;
}

#header #logo img {
  padding: 0;
  margin: 0;
}

@media (max-width: 768px) {
  #header {
    height: 60px;
  }

  #header #logo h1 {
    font-size: 34px;
  }

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

.scrolled-offset {
  margin-top: 70px;
}

/*--------------------------------------------------------------
# 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: "Raleway", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #444;
  white-space: nowrap;
  transition: 0.3s;
}

.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: #315182;
}

.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: 14px;
}

.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: #3e5476;
}

.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: #167bba;
  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(8, 30, 91, 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;
  
  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: #167bba;
}

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

.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: #3e5476;
}

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 90vh;
  position: relative;
  background: url("../img/hero-carousel/1.jpg") no-repeat;
  background-size: cover;
  padding: 0;
}

#hero .hero-content {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 8%;
  right: 0;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: baseline;
  flex-direction: column;
  text-align: left;
}

#hero .hero-content h2 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 64px;
  font-weight: 700;
  position:relative;
}

#hero .hero-content h2::before{     
	background: #fff;
    height: 2px;
    width: 50px;
    position: absolute;
    top: 38px;
    content: ' ';
    left: -57px;	
} 

#hero .hero-content h2 span {
  color: #fff;
  text-decoration: underline;
}

#hero .hero-content p {
  color: #fff;
  font-size:25px;
}

@media (max-width: 767px) {
  #hero .hero-content h2 {
    font-size: 34px;
  }
}

#hero .hero-content .btn-get-started,
#hero .hero-content .btn-projects {
  font-family: "Rajdhani", sans-serif;
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 32px;
  border-radius: 2px;
  transition: 0.5s;
  margin: 10px;
  color: #fff;
}

#hero .hero-content .btn-get-started {
  background: #167bba;
  border: 2px solid #167bba;
}

#hero .hero-content .btn-get-started:hover {
  background: #fff;
  color: #3e5476;
}

#hero .hero-content .btn-projects {
  background: #3e5476;
  border: 2px solid #fff;
}

#hero .hero-content .btn-projects:hover {
  background: none;
  color: #3e5476;
}

#hero .hero-slider {
  z-index: 8;
  height: 90vh;
}

#hero .hero-slider::before {
  content: "";
  background-color: rgba(255, 255, 255, 0);
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 7;
}

#hero .hero-slider .swiper-slide {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition-property: opacity;
}

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

/* Sections Header
--------------------------------*/
.section-header {
  margin-bottom: 30px;
}

.section-header h2 {
  font-size: 32px;
  color: #167bba;
  text-transform: uppercase;
  font-weight: 700;
  position: relative;
  padding-bottom: 20px;
}

.section-header h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #3e5476;
  bottom: 0;
  left: 0;
}

.section-header p {
  padding: 0;
  margin: 0;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background-color: #fafafa;
  min-height: 40px;
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
  margin: 0;
}

@media (max-width: 992px) {
  .breadcrumbs h2 {
    margin: 0 0 10px 0;
  }
}

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

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

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

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

  .breadcrumbs ol {
    display: block;
  }

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

/* About Section
--------------------------------*/


#about {
  padding: 60px 0 30px 0;
}

.about-section {
  z-index: 1;
  position: relative; }
  

#about .about-img {
  overflow: hidden;
}

#about .about-img img {
  margin-left: -15px;
  max-width: 100%;
}

@media (max-width: 768px) {
  #about .about-img {
    height: auto;
  }

  #about .about-img img {
    margin-left: 0;
    padding-bottom: 30px;
  }
}

#about .content h2 {
  color: #167bba;
  font-weight: 700;
  font-size: 36px;
  font-family: "Raleway", sans-serif;
}

#about .content h3 {
  color: #555;
  font-weight: 300;
  font-size: 18px;
  line-height: 26px;
  font-style: italic;
}

#about .content p {
  line-height: 26px;
}

#about .content p:last-child {
  margin-bottom: 0;
}

#about .content i {
  font-size: 20px;
  padding-right: 4px;
  color: #3e5476;
}

#about .content ul {
  list-style: none;
  padding: 0;
}

#about .content ul li {
  padding-bottom: 10px;
}

/* Services Section
--------------------------------*/

/* Work Progress Three */
.work-progress-three {
  background-position: 0 100%;
  background-repeat: no-repeat; }

.progress-item-two.style-two {
  border: none;
  margin-top: -65px;
  padding: 0 15px 30px; }
  .progress-item-two.style-two .progress-step {
    left: 0;
    top: 55px;
    z-index: 1;
    color: #f7f7f7;
    font-weight: 400;
    position: relative; }
  .progress-item-two.style-two .icon {
    background: white;
    margin-bottom: 25px;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); }
    .progress-item-two .icon {
    color: white;
    font-size: 60px;
    padding-top: 8px;
    margin: 0 auto -35px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 125px;
    height: 125px;
    background: #104cba;
    
    border-radius: 50%;
    text-align: center;
}
  .progress-item-two.style-two .icon i  img{ width:90px; }
  .progress-item-two.style-two .learn-more,
  .progress-item-two.style-two .learn-more i {
    color: white; }
  .progress-item-two.style-two p {
    opacity: 0.8; }
.section-title{ padding-top: 30px; }
.bg-blue {
    background-color: #315182;
}
.progress-item-two .progress-step {
    position: absolute;
    font-size: 125px;
    font-weight: 900;
    opacity: 0.06;
    left: 50%;
    z-index: -1;
    bottom: 5px;
    line-height: 1;
    color: #104cba;
    font-family: "Nunito", sans-serif;
    -webkit-transform: translate(-50%);
    -ms-transform: translate(-50%);
    transform: translate(-50%);
}
.bar-main {
  margin: 15px 0 30px;
}
.bar.bar-big {
  height: 5px;
  width: 90px;
  background: #aec6ef;
  margin: 20px auto;
  position: relative;
  border-radius: 30px;
}

.bar.bar-big::before {
  content: '';
  position: absolute;
  left: 0;
  top: -2.7px;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background: #0c5adb;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-name: MOVE-BG;
  animation-name: MOVE-BG;
}


@-webkit-keyframes MOVE-BG {
    from {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    to {
        -webkit-transform: translateX(88px);
        transform: translateX(88px);
    }
}
@keyframes MOVE-BG {
    from {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    to {
        -webkit-transform: translateX(88px);
        transform: translateX(88px);
    }
}

/* ----------------------------------------------------- service 5 ------------------------------------------------------- */

.service-5 .btn,
.service-5 .btn:focus,
.service-5 button,
.service-5 button:focus {
    outline: none !important;
}

.service-5 a {
    text-decoration: none !important;
    outline: none;
}

.service-5 p {
    font-size: 17px;
}

.service-5 {
    padding-bottom: 80px;
    padding-top: 80px;
    position: relative;
}

.service-5 .btn-primary {
    background: #0186d5;
    border-color: #0186d5 !important;
    color: #ffffff !important;
    box-shadow: 0px 8px 20px -6px rgba(1, 134, 213, 0.6);
}

.service-5 .btn-primary:hover,
.service-5 .btn-primary:focus,
.service-5 .btn-primary:active,
.service-5 .btn-primary.active,
.service-5 .btn-primary.focus,
.service-5 .btn-primary:not(:disabled):not(.disabled):active,
.service-5 .btn-primary:not(:disabled):not(.disabled):active:focus,
.service-5 .btn-primary .open>.dropdown-toggle.btn-primary {
    background: #0179c1;
    border-color: #0179c1;
}

.service-5 .f-14 {
    font-size: 14px;
}

.service-5 .f-15 {
    font-size: 15px;
}

.service-5 .title-border {
    border: 1px solid #0186d5;
    width: 80px;
    margin: 0 auto;
}

.service-5 .btn {
    padding: 0.7rem 1.8rem;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.5s;
}

.service-5 .btn:focus {
    box-shadow: none;
}

.service-5 .nav-pills .nav-item {
    padding: 10px;
}

.service-5 .nav-pills .nav-item .nav-link {
    padding: 10px;
    border: 1px solid #dee3e7;
    color: #6b7189;
}

.service-5 .nav-pills .nav-item .nav-link .service-icon i {
    width: 70px;
    height: 70px;
    background-color: #e6f0fa;
    display: inline-block;
    line-height: 60px;
    color: #6b7189;
    font-size: 34px;
    border: 5px solid #ffffff;
    position: relative;
    margin-top: -50px;
}

.service-5 .nav-pills .nav-item .nav-link.active {
    background-color: transparent;
    color: #444b5b;
    border: 1px solid #0186d5;
    border-radius: 0px;
}

.service-5 .nav-pills .nav-item .nav-link.active .service-icon i {
    background-color: #3E5476;
    color: #ffffff;
    }

.service-5 .services-box .services-title {
    position: relative;
}

.service-5 .services-box .services-title:before {
    position: absolute;
    content: '';
    border-bottom: 1px solid #0186d5;
    width: 60px;
    bottom: -10px;
}

.service-5 .services-img {
    position: relative;
}

.service-5 .services-img:before {
    position: absolute;
    content: '';
    border: 10px solid #444b5b;
    width: 100%;
    height: 80%;
    top: 50%;
    transform: translateY(-50%);
}

.services-img img {
    padding: 0px 30px;
    position: relative;
}

.service-5 .services-lable {
    position: relative;
}

.service-5 .f-20 {
    font-size: 20px;
}

.service-5 .text-muted {
    color: #6b7189 !important;
}

.service-5 .services-lable p {
    background-color: #3E5476;
    padding: 6px 30px;
    display: inline-block;
    position: absolute;
    right: 0;
    margin-top: -130px;
}

@media (max-width: 768px) {
    .service-5 .service-box i {
        margin-top: 0;
    }
}

@media (min-width: 1200px) {
    .service-5 .container {
        max-width: 1140px !important;
    }
}

/*---------------------
  Counter
-----------------------*/
.counter {
  background: #f7f7f7;
  height: 840px;
  padding-top: 380px;
  overflow: hidden;
}

.counter__content {
  padding: 0px 50px;
}

.counter__item {
  background: #3e5476;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
      transform: rotate(45deg);
  height: 255px;
  width: 255px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  position: relative;
  z-index: 1;
}
.counter__item::before {
  position: absolute;
  left: -1px;
  bottom: -2px;
  height: 636px;
  width: 636px;
  border-left: 1px solid #333333;
  border-top: 1px solid #333333;
  content: "";
  z-index: -1;
}
.counter__item.second__item {
  margin-top: -191px;
}
.counter__item.second__item:before {
  left: -316px;
  bottom: -65px;
  border-right: 1px solid #333333;
  border-bottom: 1px solid #333333;
  border-left: none;
  border-top: none;
}
.counter__item.four__item {
  margin-top: -191px;
}
.counter__item.four__item:before {
  left: -380px;
  bottom: -380px;
  border-right: 1px solid #333333;
  border-bottom: 1px solid #333333;
  border-left: none;
  border-top: none;
}
.counter__item.third__item:before {
  left: -65px;
  bottom: -317px;
}

.counter__item__text {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
      transform: rotate(-45deg);
}
.counter__item__text h2 {
  font-size: 60px;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 6px;
  margin-top: 18px;
}
.counter__item__text p {
  color: #ffffff;
  margin-bottom: 0;
}

/* Add Clients */
/* Our Portfolio Section
--------------------------------*/
#portfolio {
  background: #fff;
  padding: 30px 0;
}

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

#portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 18px 12px 18px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  color: #444;
  margin: 0 3px 10px 3px;
  transition: all ease-in-out 0.3s;
  background: #f7f7f7;
  border-radius: 4px;
}

#portfolio #portfolio-flters li:hover,
#portfolio #portfolio-flters li.filter-active {
  color: #fff;
  background: #3e5476;
}

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

#portfolio .portfolio-item {
  margin-bottom: 30px;
  overflow: hidden;
}

#portfolio .portfolio-item img {
  position: relative;
  top: 0;
  transition: all 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
}

#portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -50px;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: #3e5476;
  padding: 15px 20px;
}

#portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
}

#portfolio .portfolio-item .portfolio-info p {
  color: #fff;
  font-size: 14px;
  margin-bottom: 0;
}

#portfolio .portfolio-item .portfolio-info .preview-link,
#portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 50px;
  font-size: 24px;
  top: calc(50% - 18px);
  color: rgba(255, 255, 255, 0.6);
  transition: ease-in-out 0.3s;
}

#portfolio .portfolio-item .portfolio-info .preview-link:hover,
#portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: #fff;
}

#portfolio .portfolio-item .portfolio-info .details-link {
  right: 15px;
}

#portfolio .portfolio-item:hover img {
  top: -30px;
}

#portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 0;
}

/*--------------------------------------------------------------
# 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 #3e5476;
}

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

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(12, 46, 138, 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;
}

.clients-slider{ background: #fff; border-radius: 20px; padding: 15px 0 15px 10px; }
/* Testimonials Section
--------------------------------*/
#testimonials { background: #315182;
  padding: 30px 0;
}

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

#testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 30px 30px 0 30px; border-radius: 8px;
  margin: 30px 15px;
  text-align: center;
  min-height: 350px;
  border:solid 1px #f5fafd;
}
#testimonials .testimonial-item p{ color: #f5fafd; }
@media (max-width: 767px) {
  #testimonials .testimonial-item {
    margin: 30px 10px;
  }
}

#testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  border: 4px solid #fff;
  margin: 0 auto;
}

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

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

#testimonials .testimonial-item .quote-sign-left {
  margin-top: -15px;
  padding-right: 10px;
  display: inline-block;
  width: 37px;
}

#testimonials .testimonial-item .quote-sign-right {
  margin-bottom: -15px;
  padding-left: 10px;
  display: inline-block;
  max-width: 100%;
  width: 37px;
}

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

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

#testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #3e5476;
}

#testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #167bba;
}

/* Call To Action Section
--------------------------------*/
#call-to-action {
  background: #081e5b;
  background-size: cover;
  padding: 40px 0;
}

#call-to-action .cta-title {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

#call-to-action .cta-text {
  color: #fff;
}

@media (min-width: 769px) {
  #call-to-action .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}

#call-to-action .cta-btn {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 26px;
  border-radius: 3px;
  transition: 0.5s;
  margin: 10px;
  border: 3px solid #fff;
  color: #fff;
}

#call-to-action .cta-btn:hover {
  background: #3e5476;
  border: 3px solid #3e5476;
}

/* Our Team Section
--------------------------------*/
#team {
  background: #fff;
  padding: 30px 0 0 0;
}

#team .member {
  text-align: center;
  margin-bottom: 20px;
}

#team .member .pic {
  overflow: hidden;
  text-align: center;
}

#team .member .pic img {
  max-width: 100%;
}

#team .member .details {
  background: #3e5476;
  color: #fff;
  padding: 15px;
  border-radius: 0 0 3px 3px;
}

#team .member h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
}

#team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
}

#team .member .social {
  margin-top: 5px;
}

#team .member .social a {
  color: #fff;
}

#team .member .social i {
  font-size: 16px;
  margin: 0 2px;
}

/* Contact Section
--------------------------------*/
#contact {
  padding: 30px 0;
}

#contact .contact-info {
  margin-bottom: 20px;
  text-align: center;
}

#contact .contact-info i {
  font-size: 48px;
  display: inline-block;
  margin-bottom: 10px;
  color: #3e5476;
}

#contact .contact-info address,
#contact .contact-info p {
  margin-bottom: 0;
  color: #000;
}

#contact .contact-info h3 {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: bold;
  text-transform: uppercase;
  color: #999;
}

#contact .contact-info a {
  color: #000;
}

#contact .contact-info a:hover {
  color: #3e5476;
}

#contact .contact-address,
#contact .contact-phone,
#contact .contact-email {
  margin-bottom: 20px;
}

@media (min-width: 768px) {

  #contact .contact-address,
  #contact .contact-phone,
  #contact .contact-email {
    padding: 20px 0;
  }
}

@media (min-width: 768px) {
  #contact .contact-phone {
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
  }
}

#contact #google-map {
  height: 290px;
  margin-bottom: 20px;
}

@media (max-width: 576px) {
  #contact #google-map {
    margin-top: 20px;
  }
}

#contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

#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 {
  padding: 10px 14px;
  border-radius: 0;
  box-shadow: none;
  font-size: 15px;
}

#contact .php-email-form input::focus,
#contact .php-email-form textarea::focus {
  background-color: #3e5476;
}

#contact .php-email-form button[type=submit] {
  background: #3e5476;
  border: 0;
  border-radius: 3px;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  cursor: pointer;
}

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

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

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

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

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

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #f2f5f8;
  padding: 0 0 30px 0;
  font-size: 14px;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  text-align: center;
  font-size: 13px;
  color: #555;
}

#footer .credits a {
  color: #167bba;
}



/*Contact Us CSS*/
/*.container {max-width: 1200px;}*/
.mb-80, .my-80 {margin-bottom: 80px;}
.py-120 {padding-bottom: 120px;padding-top: 120px;}

.ml-40, .mx-40 {margin-left: 40px;}

/* Contact Page */
.contact-info-area {display: -webkit-box;display: flex; -ms-flex-wrap: wrap;flex-wrap: wrap;padding: 55px 0 0px;-webkit-box-pack: center;justify-content: center; border: 10px solid #BAD9ED; }

.contact-info-item {width: 33.33%;text-align: center;margin-bottom: 30px;padding-left: 50px;padding-right: 50px;border-right: 5px solid #f1f1f1; }
  @media only screen and (max-width: 991px) and (min-width: 768px) {.contact-info-item { width: 50%; } }
  @media only screen and (max-width: 767px) {.contact-info-item {width: 50%;padding-left: 15px;padding-right: 15px; } }
  @media only screen and (max-width: 480px) {
 .contact-info-item {width: 100%;border-right: none; } }
 .contact-info-item:last-child {border-right: none; }
  @media only screen and (max-width: 991px) and (min-width: 768px) { .contact-info-item:nth-child(2) {border-right: none; } }
  @media only screen and (max-width: 767px) {
    .contact-info-item:nth-child(2) {border-right: none; } }
  .contact-info-item i {font-size: 40px;margin-bottom: 15px;display: inline-block;color: #3E5476; }
  .contact-info-item p {color: #000;font-size: 18px;font-weight: 500;max-width: 235px;margin-left: auto;margin-right: auto; }
  .contact-info-item p a {color: #000; }

.delay-0-2s {animation-delay: 0.2s;}

.delay-0-4s {animation-delay: 0.4s;}

.delay-0-6s {animation-delay: 0.6s;}


.contact-form-left {z-index: 1;position: relative;min-height: 400px; }
  .contact-form-left::before {position: absolute;content: "";width: 100%;height: 100%;z-index: -1;top: 0;left: 0;opacity: 0.6;background-color: #104cba; }
  .contact-form-left h2 {width: 80%;left: 10%;color: white;bottom: 40px;font-size: 40px;padding-left: 30px;position: absolute;border-left: 5px solid white; }
    @media only screen and (max-width: 375px) {
      .contact-form-left h2 {font-size: 35px; } }

.contact-page-map {margin-bottom: -10px; }
  @media only screen and (max-width: 1199px) {.contact-page-map iframe { height: 500px; } }
  @media only screen and (max-width: 767px) {.contact-page-map iframe {height: 400px; } }
.contact-form p {font-weight: 500}

.comment-title {position: relative;font-size: 30px;font-weight: 600;}

.comment-title:before {content: '';width: 5px;height: 2px;left: 10px;z-index: 1;background: white;position: absolute;top: calc(100% + 10px);}

.comment-title:after {content: '';width: 45px;height: 2px;left: 0;position: absolute;top: calc(100% + 10px);background: #104cba;}

.comment-form .form-group {position: relative;}

.form-group {margin-bottom: 25px;}

.comment-form .form-group label {position: absolute;right: 15px;top: 12px;padding: 5px 10px;color: #104cba;}

input, select, textarea, .form-control {width: 100%;height: auto;padding: 16px 30px;border-radius: 5px;background-color: #fff;border: 2px solid #cfdbf1;}

label {cursor: pointer;font-weight: 500;margin-bottom: 5px;}

.theme-btn {background: #3E5476;font-size: 16px;color: white;border: none;font-weight: 500;text-align: center;border-radius: 5px;padding: 11px 28px;-webkit-box-align: center;align-items: center;display: inline-flex;text-transform: capitalize;}


.mt-35, .my-35 {margin-top: 35px;}


@media only screen and (max-width: 991px){.rml-0, .rmx-0 {margin-left: 0px !important;}.rmt-55, .rmy-55 {margin-top: 55px;}}



/* Footer Two */
.footer-widget {margin-bottom: 50px;}
.footer-logo {margin-top: -10px;}

.mb-15{margin-bottom: 15px;}

.mt-20, .my-20 {margin-top: 20px;}

.ml-20, .mx-20 {margin-left: 20px;}

.footer-title {margin-bottom: 28px; color: #3E5476 !important; font-weight: 600}

.newsletter-widget form {padding: 7px;max-width: 310px;margin-top: 30px;display: -webkit-box;display: flex;-webkit-box-align: center;align-items: center;
    -webkit-box-pack: center;justify-content: center;border-radius: 35px;border: 1px solid #3a4a65;}

.newsletter-widget form input {color: #000;height: auto;border: none;background: transparent;padding: 0px 0px 0px 20px;}

.newsletter-widget form input:focus-visible{outline:none;}
.newsletter-widget form button { -webkit-box-flex: 0;flex: none;width: 45px;border: none;height: 45px;background: #3E5476;line-height: 45px;border-radius: 50%;text-align: center;}

.newsletter-widget i{color: #fff;}

.contact-info li{display: flex;}

.list-style-two li {display: -webkit-box;display: flex;margin-bottom: 10px;text-transform: capitalize;}
.contact-info li i {-webkit-box-flex: 0; flex: none; color: #ced1d5; margin: 5px 12px 0 0; width: 40px; height: 40px; background: #223452; line-height: 40px; border-radius: 50%;text-align: center;}

.footer-two {background-color: #f5fafd;}

  .footer-two .copyright-area {border-top: 1px solid #dadada; }
 

.pb-20, .py-20 {padding-bottom: 20px;}

.pt-60{padding-top: 60px;}

.text-white *, .text-white a{color: #000;}



.social-style-one a{padding: 10px;}
.social-style-one a i{background: #3E5476; color: #fff; padding: 8px 10px; border-radius: 50%;}

ul, li {list-style: none; padding: 0; margin: 0;}
.footer-widget .text, .footer-widget p, .footer-widget li{font-weight: 600}

.copyright-inner p{font-weight: 500;}

.work-progress-three h2{color: #fff;}
.progress-item-two h3, .progress-item-two p{color: #fff;}
.newsletter-widget i{font-size: 20px;}
.newsletter-widget span,.comment-form span{color:#f00;}