
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Raleway", sans-serif;
    color: #1f0f0f;
}

a {
  color: #173885;
  text-decoration: none;
}

a:hover {
  color: #22d8b6;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Raleway", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #173885;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}
.s-cm-btn:active{
  color: #173885;
}
.s-cm-btn{
  border: none !important;
outline: none  !important;
box-shadow: none !important;
}
.s-cm-btn:active {
color: #173885;
}

	
}
ul.a {
  list-style-position: outside;
  list-style-type: square;
  font-size: 12px !important;
  margin: 0px !important;
}




.cm-container {
  /* background: #f2f9f8; */
  margin-top: 20px !important;
}


.btn.focus, .btn:focus{
/*	box-shadow: 0 0 0 0.2rem red!important;*/
}



.btn-check:focus+.btn, .btn:focus{
/*	box-shadow: 0 0 0 0.25rem blue!important;*/
	color:#173885!important;
}
.btnGroupContainer{
  background: white;border-radius: 50px !important;
}
.btnGroup{
  padding: 10px !important; background-color: white; color: black !important;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #2b66f1;
  color: #fff;

}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 70px;
  transition: all 0.5s;
  z-index: 997;
  background: #fff;
}

#header .logo h1 {
  font-size: 30px;
  margin: 0;
  padding: 6px 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#header .logo h1 a, #header .logo h1 a:hover {
  color: #fff;
  text-decoration: none;
}

#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 120px;
  position: relative;
  top: 4px;
}

@media (max-width: 992px) {
  #header {
    height: 60px;
  }
}

/*--------------------------------------------------------------
# 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 > ul > li + li {
  margin-left: 30px;
}

.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  font-size: 14px;
/*color: #173885!important;*/
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
	font-weight: 600;
}

.navbar a i, .navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar > ul > li > a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 3px;
  left: 0;
  background-color: #173885;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before, .navbar li:hover > a:before, .navbar .active:before {
  visibility: visible;
  width: 100%;
}

.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  color: #173885;
	font-weight: bold;
}



/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #000;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;

}

@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(16, 31, 29, 0.9);
  transition: 0.3s;
  z-index: 0;
}

.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 > ul > li + li {
  margin: 0;
}

.navbar-mobile a:hover:before, .navbar-mobile li:hover > a:before, .navbar-mobile .active:before {
  visibility: hidden;
}

.navbar-mobile a {
  padding: 10px 20px;
  font-size: 15px;
  color: #21413c;
}

.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #173885;
}

.navbar-mobile .getstarted{
  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: #173885;
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: calc(130vh - -67px);
  background: url("../img/hero-bg.jpg") center center;
  background-size: cover;
  position: relative;
  margin-top: 70px;
  padding: 0;
}

#hero:before {
  content: "";
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .container {
  z-index: 2;
}

#hero h1 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #fff;
}

#hero h2 {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 35px;
  font-size: 24px;
}

#hero .btn-get-started {
  font-family: "Raleway", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 50px;
  transition: 0.5s;
  border: 1px solid #fff;
  color: #fff;
  box-shadow: 0px 0px 0px 2px #fff;
}

#hero .btn-get-started:hover {
  border-color: #173885;
  background: #173885;
}
/*

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}
*/

@media (max-width: 992px) {
  #hero {
    margin-top: 60px;
    height: calc(100vh - 60px);
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 121px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f2f9f8;
}

.section-title {
  padding-bottom: 40px;
  text-align: center;
}

.section-title h2 {
  margin-bottom: 20px;
  padding-bottom: 0;
  font-size: 34px;
  font-family: "Raleway", sans-serif;
  color: #173885;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background-color: #f7f7f7;
  min-height: 40px;
  margin-top: 72px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 60px;
  }
}

.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
--------------------------------------------------------------*/
.about h3 {
  font-weight: 400;
  font-size: 34px;
  color: #21413c;
}

.about .icon-box {
  margin-top: 44px;
}

.about .icon-box i {
  font-size: 48px;
  float: left;
  color: #173885;
  position: absolute;
  top: -30px;
}

.about .icon-box h4 {
  font-size: 17px;
  font-weight: 500;
  margin-left: 60px;
  color: #21413c;
  position: relative;
  top: -25px;
  width: 790px;
  text-align: justify;
}

.about .icon-box p {
    font-size: 16px;
    color: #1f0f0f;
    text-align: justify;
    font-weight: 500;
    line-height: 30px;
}


/*--------------------------------------------------------------
# Steps
--------------------------------------------------------------*/
.steps {
  padding: 50px 0 40px 0;
}

.steps .row {
  overflow: hidden;
}

.steps .content-item {
  padding: 40px;
  border-left: 1px solid #d4e9e6;
  border-bottom: 1px solid #d4e9e6;
  margin: -1px;
}

.steps .content-item span {
  font-size: 48px;
  float: left;
  color: #173885;
  position: absolute;
  top: -2px;
  font-weight: 400;
}

.steps .content-item h4 {
  font-size: 25px;
  font-weight: bold;
  padding: 0;
  margin: 20px 0;
  color: #173885;
}

.steps .content-item p {
  color: #1f0f0f;
  font-size: 18px;
  margin: 0;
  padding: 0;
  font-weight: 500;
}

@media (max-width: 768px) {
  .steps .content-item {
    padding: 40px 0;
  }
}

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features .nav-tabs {
  border: 0;
}

.features .nav-link {
  border: 0;
  padding: 20px;
  transition: 0.3s;
  color: #21413c;
}

.features .nav-link:hover {
  color: #173885;
}

.features .nav-link h4 {
  font-size: 18px;
  font-weight: 600;
}

.features .nav-link p {
  font-size: 14px;
  margin-bottom: 0;
}

.features .nav-link.active {
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.12);
}

.features .nav-link.active h4 {
  color: #173885;
}

.features .tab-pane.active {
  -webkit-animation: slide-down 0.5s ease-out;
  animation: slide-down 0.5s ease-out;
}

@-webkit-keyframes slide-down {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes slide-down {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  margin: 0;
  background: #fff;
  transition: all 0.3s ease-in-out;
  border-radius: 15px;
  border-bottom: 3px solid #fff;
  height: 257px;
  width: 300px;
}

.services .icon-box:hover {
  box-shadow: 0 2px 29px 0 rgba(37, 37, 37, 0.1);
}

.services .icon i {
  font-size: 48px;
  line-height: 1;
  margin-bottom: 15px;
}


.services .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
  top: -44px;
  position: relative;
  text-align: center;
}

.services .title a {
  color: #111;
}

.services .description {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
}

.services .icon-box-pink .icon i {
  color: #ff689b;
}

.services .icon-box-cyan .icon i {
  color: #3fcdc7;
}

.services .icon-box-green .icon i {
  color: #41cf2e;





}

.services .icon-box-blue .icon i {
  color: #2282ff;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  box-sizing: content-box;
  min-height: 320px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  margin: -40px 0 0 40px;
  position: relative;
  z-index: 2;
  border: 6px solid #fff;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 45px;
  color: #111;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0 0 0 45px;
}

.testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right {
  color: #a8d3cc;
  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 15px 0 15px;
  padding: 20px 20px 60px 20px;
  background: #eff7f6;
  position: relative;
  border-radius: 6px;
  position: relative;
  z-index: 1;
}

.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 #173885;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #173885;
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 35px auto;
  list-style: none;
  text-align: center;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  border-radius: 50px;
  padding: 8px 20px;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 15px 8px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #444444;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio #portfolio-flters li:hover, .portfolio #portfolio-flters li.filter-active {
  color: #173885;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: rgba(0, 0, 0, 0.6);
}

.portfolio .portfolio-wrap::before {
  content: "";
/*  background: rgba(0, 0, 0, 0.5);*/
  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 #fff;
  border-left: 3px solid #fff;
  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 #fff;
  border-right: 3px solid #fff;
  transition: all 0.5s ease 0s;
  z-index: 9994;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}

.portfolio .portfolio-wrap .portfolio-info p {
  color: #ffffff;
  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: #fff;
  margin: 0 2px;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
  color: #4ae3c6;
}

.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 #173885;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #173885;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(33, 65, 60, 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;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .member {
  text-align: center;
  margin-bottom: 20px;
  background: #343a40;
  position: relative;
  overflow: hidden;
}

.team .member .member-info {
  opacity: 0;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  transition: 0.2s;
}

.team .member .member-info-content {
  position: absolute;
  left: 50px;
  right: 0;
  bottom: 0;
  transition: bottom 0.4s;
}

.team .member .member-info-content h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
  color: #fff;
}

.team .member .member-info-content span {
  font-style: italic;
  display: block;
  font-size: 13px;
  color: #fff;
}

.team .member .social {
  position: absolute;
  left: -50px;
  top: 0;
  bottom: 0;
  width: 50px;
  transition: left ease-in-out 0.3s;
  background: rgba(0, 0, 0, 0.5);
  text-align: center;
}

.team .member .social a {
  transition: color 0.3s;
  display: block;
  color: #fff;
  margin-top: 15px;
}

.team .member .social a:hover {
  color: #173885;
}

.team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

.team .member:hover .member-info {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.8) 20%, rgba(0, 212, 255, 0) 100%);
  opacity: 1;
  transition: 0.4s;
}

.team .member:hover .member-info-content {
  bottom: 30px;
  transition: bottom 0.4s;
}

.team .member:hover .social {
  left: 0;
  transition: left ease-in-out 0.3s;
}

/*--------------------------------------------------------------
# F.A.Q
--------------------------------------------------------------*/
.faq .faq-list {
  padding: 0 100px;
}

.faq .faq-list ul {
  padding: 0;

  list-style: none;



}

.faq .faq-list li + li {
  margin-top: 15px;
}

.faq .faq-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
  position: relative;
}

.faq .faq-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 0 30px;
  outline: none;
  cursor: pointer;
}

.faq .faq-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: #97cac2;
}

.faq .faq-list .icon-show, .faq .faq-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list a.collapsed {
  color: #343a40;
}

.faq .faq-list a.collapsed:hover {
  color: #173885;
}

.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1200px) {
  .faq .faq-list {
    padding: 0;
  }
}


/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .member {
  text-align: center;
  margin-bottom: 20px;
  background: #343a40;
  position: relative;
  overflow: hidden;
}

.team .member .member-info {
  opacity: 0;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  transition: 0.2s;
}

.team .member .member-info-content {
  position: absolute;
  left: 50px;
  right: 0;
  bottom: 0;
  transition: bottom 0.4s;
}

.team .member .member-info-content h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
  color: #fff;
}

.team .member .member-info-content span {
  font-style: italic;
  display: block;
  font-size: 13px;
  color: #fff;
}

.team .member .social {
  position: absolute;
  left: -50px;
  top: 0;
  bottom: 0;
  width: 50px;
  transition: left ease-in-out 0.3s;
  background: rgba(0, 0, 0, 0.5);
  text-align: center;
}

.team .member .social a {
  transition: color 0.3s;
  display: block;
  color: #fff;
  margin-top: 15px;
}

.team .member .social a:hover {
  color: #173885;
}

.team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

.team .member:hover .member-info {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.8) 20%, rgba(0, 212, 255, 0) 100%);
  opacity: 1;
  transition: 0.4s;
}


.team .member:hover .member-info-content {
  bottom: 30px;
  transition: bottom 0.4s;
}

.team .member:hover .social {
  left: 0;
  transition: left ease-in-out 0.3s;
}

/*--------------------------------------------------------------
# F.A.Q
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# F.A.Q
--------------------------------------------------------------*/
.client .client-list {
  padding: 0 100px;
}

.client .client-list ul {
  padding: 0;
  list-style: none;
}

.client .client-list li + li {
  margin-top: 15px;
}

.client .client-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
  position: relative;
}

.client .client-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 0 30px;
  outline: none;
  cursor: pointer;
}

.client .client-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: #97cac2;
}

.client .client-list .icon-show, .client .client-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.client .client-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.client .client-list .icon-show {
  display: none;
}

.client .client-list a.collapsed {
  color: #343a40;
}

.client .client-list a.collapsed:hover {
  color: #173885;
}


.client .client-list a.collapsed .icon-show {


  display: inline-block;
}

.client .client-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1200px) {
  .client .client-list {
    padding: 0;
  }
}


/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  padding: 30px;
  width: 100%;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.contact .info i {
  font-size: 20px;
  color: #173885;
  float: left;
  width: 44px;
  height: 44px;
  background: #e1f0ee;
  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: #173885;
}

.contact .info p {
  padding: 0 0 0 57px;
  margin-bottom: 0;
  font-size: 14px;
  font-family: 'Raleway';
  color: #1f0f0f;
  font-weight: 500;
}

.contact .info .email p {
  padding-top: 5px;
}

.contact .info .social-links {
  padding-left: 60px;
}

.contact .info .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #333;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  margin-right: 10px;
}

.contact .info .social-links a:hover {
  background: #173885;
  color: #fff;
}

.contact .info .email:hover i, .contact .info .address:hover i, .contact .info .phone:hover i {
  background: #173885;
  color: #fff;
}

.contact .php-email-form {
  width: 100%;
  padding: 30px;
  background: #fff;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

.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: #173885;
  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 #173885;
  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;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type="submit"] {
  background: #173885;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type="submit"]:hover {
  background: #2b66f1;
}

@-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: black;
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
}

#footer .footer-top {
  background: rgb(13 110 253 / 25%);
  border-bottom: 1px solid rgb(13 110 253 / 0%);
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-info p {
  font-size: 14px;

  line-height: 24px;

  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  color: #fff;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #1c3733;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #173885;
  color: #fff;
  text-decoration: none;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  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: #173885;*/
  font-size: 18px;
  line-height: 1;
	font-weight: bolder;
}

#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 {
  color: #34dfbf;
}

#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px 0 0 4px;
}

#footer .footer-top .footer-newsletter form input[type="email"] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
}

#footer .footer-top .footer-newsletter form input[type="submit"] {
  position: absolute;
  top: 0;
  right: -4px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #173885;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

#footer .footer-top .footer-newsletter form input[type="submit"]:hover {
  background: #14806c;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}
.iconimg1,.iconimg2, .iconimg3,.iconimg4{
	
position: relative;
	
top: 70px;
	
height: 50px;
	
width: 150px;

}
.border{
display: block;
width: 80px;
height: 2px;
background: #060606;
margin: 0 auto;
}
.team-list{
	text-align: center;
padding: 50px 0 30px;
float: left;
}
ol, ul {
    list-style: none;
}

.title {
    text-align: center;
}
/*

@media screen and (min-width:480px){
.grid-6, .grid-full {
    width: 96.969696969697%;
}
}
*/


/*
.clearfix::before, .clearfix::after {
    content: "";
    display: table;
}
*/

.grid-2 {
    width: 30.30303030303%;
}

.grid-1, .grid-2, .grid-3, .grid-4, .grid-5, .grid-6 {
    float: left;
    width: 96.969696969697%;
    margin: 0 1.515151515152%;
	display: table-row;
}
.team-member {
    padding-bottom: 25px;
}
.content {
    text-align: center;
}

.social-icon.small.facebook {
    background: url("../img/facebook-small.png") no-repeat center center;
        background-size: auto;
    background-size: 26px 26px;
}
.social-icon.small:hover {
/*    filter: alpha(opacity=100);*/
    opacity: 1;
}

.social-icon.small {
    display: inline-block;
    width: 26px;
    height: 26px;
    filter: alpha(opacity=50);
/*    opacity: .5;*/
}

.social-icon.small.linkedin {
    background: url("../img/linkedin-small.png") no-repeat center center;
        background-size: auto;
    background-size: 26px 26px;
}

a:hover {
    color: #ffa593;
}
a, a:visited {
    color: #2b66f1;
    font-weight: 400;
    text-decoration: none;
}

.social-list li {
    display: inline-block;
}

.social-icon.small.twitter {
    background: url("../img/twitter-small.png") no-repeat center center;
        background-size: auto;
    background-size: 26px 26px;
}


/*
.grid-1, .grid-2, .grid-3, .grid-4, .grid-5, .grid-6, .grid-half, .grid-full {
    float: left;
    width: 96.969696969697%;
    margin: 0 1.515151515152%;
}
*/
/*
@media (min-width: 768px){
.col-md-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
}
}
*/
.team-list {
    text-align: center;
    padding: 50px 0 30px;
    float: left;
}

.section-title {
    padding-bottom: 40px;
    text-align: center;
}



.grid-3, .grid-4, .grid-5, .grid-6, .grid-half, .grid-full {
    float: left;
    width: 96.969696969697%;
    margin: 0 1.515151515152%;
}

.img-fluid1 {
  max-width: 30%;
  height: auto;
}

.img_1{
	position: relative;
	right: 98px;
	width: 690px;
}

.img_2{
	position: relative;
    width: 729px;
    right: 59px;
    top: 10px;
}

.img_3{
	position: relative;
	right: 91px;
	width: 690px;
}

.img_4{
	position: relative;
	right: 88px;
	width: 690px;
}
.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 0;
  top: 100%;
  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;
  text-transform: none;
  font-weight: 500;
 color: #2b66f1;
}

.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: #173885;
	font-weight: bold;
}

.navbar .dropdown:hover > ul {
  opacity: 1;
  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%;
  }

}
.head_1 {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 35px;
  font-size: 24px;
}

.head_1 {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 50px;
  transition: 0.5s;
/*
  border: 1px solid #fff;
  color: #fff;
  box-shadow: 0px 0px 0px 2px #000;
*/
}

.head_1:hover {
  border-color: #173885;
  background: #173885;
}

.s-grid-1{
  padding: 8px 0px 8px 8px!important;
  box-shadow: 0px 3px 8px 0px #173885;
  background-color: white;
  border-radius: 2rem;
}
.s-btn-layout{
  justify-content: center;
  align-items: center;
  text-align: center;
  font-family: "Raleway", sans-serif;
}
.s-menu-grid {
  padding: 10px 20px 10px 20px !important;
  background-color: white;
  color: black !important;
  border-radius: 50px !important;
  box-shadow: 2px 1px 7px 0px #173885;
}
.s-description{
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  font-size: 12px !important;
  text-overflow: ellipsis;
  margin-bottom: 0px !important;
}
.s-btn{
  padding-left: 0px !important;
  color: #1f0f0f;
  font-size: 17px;
  font-weight: 500;
}
.modal-backdrop {
  z-index: 990;
}

.re-container{
  margin-top: 20px !important;
}
#rvideoR {
  float: right;
}
#rvideoL {
  float: left;
}

.rerow {
  box-shadow: 2px 2px 20px rgb(0 0 0 / 10%);
  background-color: white;
  margin-top: 20px !important;
 
}



.circle_1, .circle_2,.circle_3, .circle_4,.circle_5 ,.circle_6, .circle_7 ,.circle_8,.circle_9, .circle_10,.circle_11, .circle_12, .circle_13, .circle_14, .circle_15, .circle_16, .circle_17, .circle_18{
	color: #000;
	/*box-shadow: 2px 3px 4px 2px #000; */
	box-shadow: 2px 2px 20px rgb(0 0 0 / 10%);
	height: 161px;
	width: 161px;
	border-radius: 100%!important;
	left: 230px;
	top: 10px;
/*	background-image: url(portfolio1.png);*/
	background-repeat: no-repeat;
	background-size: 100% 100%;
	background-position: center;
}

.frame1_txt{
    position: absolute;
    top: 80px;
    left: 70px;
}

.gprev gbtn disabled{
	display: none;
}


.glightbox-clean .gnext{
	display: none;
}
.gnext gbtn{
	display: none;
}

 .gprev gbtn,.gnext svg, .gprev svg{
	display: none;
}
.glightbox-clean .gprev{
	display: none;
}
.swiper-wrapper{
width:30%!important;
}

.name{
	text-align: center;
}

.team_txt{
	    text-align: center;
}
.social-list
{
	    text-align: center;

}


/*

 .swiper-slide {
        text-align: center;
        font-size: 18px;
        background: #fff;
       width: 110%!important;
       display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        -webkit-justify-content: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        -webkit-align-items: center;
        align-items: center;
    }
*/

.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 rgb(127 137 161 / 25%);
}

/*-----------------------------------------------------------------*/
/* Works
/*-----------------------------------------------------------------*/

#works {
    position: relative;
    padding-bottom: 0px;
    line-height: 0;
}

.work-grid .mix {
	opacity: 0;
	display: none;
}

.filtering {
	display: inline-block;
	text-align: center;
	margin: 0px;
	padding: 0px;
}

.filter {
    position: relative;
    display: inline-block;
    margin-right: 10px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.25s linear 0s;
    padding: 20px 24px;
    margin-bottom: 15px;
    color: #5C5C5C;
    font-weight:600;
    font-size: 14px;
    border: 2px solid #B1AEAE;
}

.filter:last-child {
	margin:0px;
}

.filter.active, .filter:hover {
	color:#FFF;
	background:#7EC13F;
	border-color:#7EC13F;
}

.work-main {
	width:100%;
	clear: both;
	margin-top: 60px;
	display: inline-block;
}

.work-grid {
	width: 100%;
	padding:0;
}

.work-grid .work-item {
	overflow: hidden;
}

.work-grid .work-item .work-image {
	overflow: hidden;
	width: 100%;
	-webkit-transition: all 0.8s;
	-moz-transition: all 0.8s;
	transition: all 0.8s;
}

.work-grid .work-item .work-image img {
	width:100%;
	height: auto;
}

.work-grid .work-item .work-caption {
	position: absolute;
	width: 100%;
	height: 100%;
	left:0;
	top:0;
	opacity:0;
}

.work-grid .work-item .work-caption h4 {
    font-size: 16px;
    color: #FFF;
    margin: 30px 0px 0px 30px;
    letter-spacing: 1px;
}

.work-grid .work-item .work-caption p {
    font-size: 17px;
    color: #FFF;
    margin: 2px 0px 0px 30px;
    letter-spacing: 1px;
}

.work-grid .work-item .hover-link {
	left: 50px;
	position: absolute;
	bottom:25px;
	z-index:9999;
	opacity:0;
}

.work-grid .work-item .hover-link a {
	position: relative;
	font-size: 20px;
	line-height: 50px;
	text-align: center;
	display: inline-block;
	background: #FFF;
	color: #444;
	width:50px;
	height:50px;
	margin: 0px;
	border-radius: 100%;
	cursor:pointer;
	z-index:200;
}

.work-grid .work-item:hover .hover-link, .work-grid .work-item:hover .work-caption {
	opacity:1;
}

.work-grid .work-item:hover .work-caption {
	background: rgba(0, 0, 0, 0.72);
}

.thumnail-img {
	position: relative;
	float: left;
	display: inline-block;
	width: 25%;
	overflow: hidden;
}


/*-----------------------------------------------------------------*/
/* Call To Action
/*-----------------------------------------------------------------*/

#cta {
	background:url(../images/parallax/cta.jpg) no-repeat;
	padding:130px 0px 130px;
}

#cta h2 {
    color: #FFF;
    font-size: 33px;
    margin-bottom: 36px;
    font-weight: 600;
    text-shadow: 0px 0px 2px #1B1A1A;
}



#cta .btn-white {
	margin-right:15px;
}



/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio_testmonial .portfolio-item_testmonial{
  margin-bottom: 30px;
}

.portfolio_testmonial #portfolio-filters_testmonial {
  padding: 0;
  margin: 0 auto 35px auto;
  list-style: none;
  text-align: center;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  border-radius: 50px;
  padding: 8px 20px;
}

.portfolio_testmonial #portfolio-filters_testmonial li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 15px 8px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #444444;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio_testmonial #portfolio-filters_testmonial li:hover, .portfolio #portfolio-filters_testmonial li.filter-active_testmonial {
  color: #173885;
}

.portfolio_testmonial #portfolio-filters_testmonial li:last-child {
  margin-right: 0;
}

.portfolio_testmonial .portfolio-wrap_testmonial {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: rgba(0, 0, 0, 0.6);
}

.portfolio_testmonial.portfolio-wrap_testmonial::before {
  content: "";
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  left: 30px;
  right: 30px;
  top: 30px;
  bottom: 30px;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.portfolio_testmonial .portfolio-wrap_testmonial .portfolio-info_testmonial {
  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_testmonial.portfolio-wrap_testmonial  .portfolio-info_testmonial ::before {
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  top: 35px;
  left: 35px;
  border-top: 3px solid #fff;
  border-left: 3px solid #fff;
  transition: all 0.5s ease 0s;
  z-index: 9994;
}

.portfolio_testmonial  .portfolio-wrap_testmonial  .portfolio-info_testmonial ::after {
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  bottom: 35px;
  right: 35px;
  border-bottom: 3px solid #fff;
  border-right: 3px solid #fff;
  transition: all 0.5s ease 0s;
  z-index: 9994;
}

.portfolio_testmonial  .portfolio-wrap_testmonial  .portfolio-info_testmonial  h4 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}

.portfolio_testmonial  .portfolio-wrap_testmonial  .portfolio-info_testmonial  p {
  color: #ffffff;
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
}

.portfolio_testmonial  .portfolio-wrap_testmonial  .portfolio-links_testmonial  {
  text-align: center;
  z-index: 4;
}

.portfolio_testmonial  .portfolio-wrap_testmonial  .portfolio-links_testmonial  a {
  color: #fff;
  margin: 0 2px;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio_testmonial  .portfolio-wrap_testmonial  .portfolio-links_testmonial  a:hover {
  color: #4ae3c6;
}

.portfolio_testmonial  .portfolio-wrap_testmonial :hover::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
}

.portfolio_testmonial  .portfolio-wrap_testmonial :hover .portfolio-info_testmonial  {
  opacity: 1;
}

.portfolio_testmonial  .portfolio-wrap_testmonial :hover .portfolio-info_testmonial ::before {
  top: 15px;
  left: 15px;
}

.portfolio_testmonial  .portfolio-wrap_testmonial :hover .portfolio-info_testmonial ::after {
  bottom: 15px;
  right: 15px;
}



/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/

.portfolio-details_testmonial  {
  padding-top: 40px;
}

.portfolio-details_testmonial  .portfolio-details-slider_testmonial  img {
  width: 100%;
}


.portfolio-details_testmonial  .portfolio-details-slider_testmonial  .swiper-pagination_testmonial  {
  margin-top: 20px;
  position: relative;
}

.portfolio-details_testmonial  .portfolio-details-slider_testmonial  .swiper-pagination_testmonial  .swiper-pagination-bullet_testmonial  {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #173885;
}

.portfolio-details_testmonial  .portfolio-details-slider_testmonial  .swiper-pagination_testmonial  .swiper-pagination-bullet-active_testmonial  {
  background-color: #173885;
}

.portfolio-details_testmonial  .portfolio-info_testmonial  {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(33, 65, 60, 0.08);
}


.portfolio-details_testmonial  .portfolio-info_testmonial  h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details_testmonial  .portfolio-info_testmonial  ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details_testmonial  .portfolio-info_testmonial  ul li + li {
  margin-top: 10px;
}

.portfolio-details_testmonial  .portfolio-description_testmonial  {
  padding-top: 30px;
}

.portfolio-details_testmonial  .portfolio-description_testmonial  h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details_testmonial  .portfolio-description_testmonial  p {
  padding: 0;
}

.circle_1 {
  background-image: url("../img/ge_nozzle.jpg")!important;
   }

.circle_2 {
   background-image: url("../img/frame1.jpg")!important;
  }
.circle_3 {
 background-image: url("../img/frame2.jpg")!important;
  }

.circle_4 {
   background-image: url("../img/frame3.jpg")!important;
  }


.circle_5 {
  background-image: url("../img/frame4.jpg")!important;
  }

.circle_6 {
  background-image: url("../img/frame5.jpg")!important;
  }

.circle_7 {
  background-image: url("../img/frame6.jpg")!important;
  }

.circle_8 {
  background-image: url("../img/frame7.jpg")!important;
  }

.circle_9 {
  background-image: url("../img/frame8.jpg")!important;
  }

.circle_10 {
  background-image: url("../img/frame9.jpg")!important;
}
	
.circle_11 {
  background-image: url("../img/frame10.jpg")!important;
}

.circle_12 {
  background-image: url("../img/frame11.jpg")!important;
}

.circle_13 {
  background-image: url("../img/frame12.jpg")!important;
}
	.circle_14 {
  background-image: url("../img/frame13.jpg")!important;
}
.circle_15 {
  background-image: url("../img/frame14.jpg")!important;
}
.circle_16 {
  background-image: url("../img/frame15.jpg")!important;
}
.circle_17 {
  background-image: url("../img/frame16.jpg")!important;
}

.circle_18 {
  background-image: url("../img/frame17.jpg")!important;
}
#componentManufacturing{
	background: #ffffff!important;
}
.row{
/*margin-left: calc(var(--bs-gutter-x)/ -0)!important;*/
}

.right_arrow:before {
    content: "\e9b2";
	font-weight: bolder;
	    font-size: 20px;
}


.right_arrow {
    font-family: 'boxicons'!important;
    font-weight: normal;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    display: inline-block;
    text-transform: none;
    speak: none;
    -webkit-font-smoothing: antialiased;
}


.protect_txt{background: white;
/*	list-style-type: square;*/
	line-height: 34px;font-weight: 500;font-size: 20px;}


.protect_txt li:hover {
color: #173885;
}
.rerowtxt_1{
position: relative;
top: 50px;
left: 10px;
padding: 0px 0px 0px 28px;
}

.textrb li:hover {
color: #173885;
}

.textrb ul li{
	font-size: 20px;
    padding-right: 4px;
    color: #68A4C4;
}
.textrb{/* list-style-type: square; */
color: #1f0f0f;
    font-size: 16px;
    font-weight: 500;
  width: 741px;
}

.txt_rev{

    position: relative;
    top: 34px;
    left: 5px;
    width: 870px;
    padding: 22px 0px 1px 4px;
    line-height: 20px;
}
.col-lg-3{
	    width: 45%!important;
}

/*
.client-logo1,.client-logo2, .client-logo3, .client-logo4{
	position: relative;
     width: 150px;
      height: 150px;
}

*/


.fadeInUp_clientimg{
	    position: relative;
    left: 200px;


    padding: 15px 0px 0px 0px;
}
.contact, .about{
	background-color: #f2f9f8;
}




/*Other stylesssssssss*/
.heading_1 {
	font-size: 16px;
	font-weight:bold;
	color: #173885;
}

.abt_txt
{
	color: #173885;
}

.heading{
    font-size: 34px;
    font-family: "Raleway", sans-serif;
    color: #173885;
    font-weight: bold;
	
}
#s-gt, #s-st, #s-st1{
	
font-size: 16px;
	
font-family: sans-serif;
	
font-weight: bolder;
}
.cm-title, .cm-content, .cm-container{
	
font-size: 25px;
	
font-weight: bold;
	
color: #173885;
}
.client_txt{
	
color: #1f0f0f;
	
font-size: 18px;
	
margin: 0;
	
padding: 0;
	
font-weight: 500;
}
.service_clr{
	color: #173885;
}
.textrb li::before {
  content: "\25AA";
  color: #173885;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
  list-style-type: disc!important;
}

.protect_txt li::before{
 content: "\25AA";
 color: #173885;
 font-weight: bold;
 left: -11px;
 position: relative;
 top: 0px;
}

.modal-header{
	    background: #889bc7!important;
}
.modal-title {
	color: #051d54ed!important;}

