
/*0c6bed
rgb(4,141,145)*/




body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
  text-decoration: none;
  color: #004571;
}

a:hover {
  color: #333;
  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: #0c6bed;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

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

.back-to-top:hover {
  background: #78c48c;
  color: #fff;
}

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

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: #0c6bed;
  font-size: 15px;
  height: 40px;
  padding: 0;
  color:#fff;
}

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

#topbar .contact-info a:hover {
  color: yellow;
}

#topbar .contact-info i {
  color: #fff;
  line-height: 0;
  margin-right: 5px;
}

#topbar .contact-info .phone-icon {
  margin-left: 15px;
}

#topbar .social-links a {
  color: #fff;
  padding: 4px 12px;
  display: inline-block;
  line-height: 1px;
  transition: 0.3s;
}

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

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  padding:20px 0 0;
/*  border-bottom: 2px solid #0c6bed;*/
}

#header.header-scrolled {
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

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

#header .logo img {
width:280px;
}

.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-size: 15px;
  color: #222222;
  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: #0c6bed;
}

.navbar .getstarted,
.navbar .getstarted:focus {
  color: #0c6bed;
  padding: 8px 25px;
  margin-left: 30px;
  border-radius: 4px;
  border: 2px solid #0c6bed;
  transition: 0.3s;
  font-size: 14px;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  background: #0c6bed;
  color: #fff;
}

.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;
  text-transform: none;
}

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

.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: #222222;
  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(9, 9, 9, 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: #222222;
}

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

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

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 640px;
  background-color: rgba(4, 141, 145, 0.8);
  overflow: hidden;
  position: relative;
}

#hero .carousel,
#hero .carousel-inner,
#hero .carousel-item,
#hero .carousel-item::before {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#hero .carousel-item::before {
  content: "";
/*  background-color: rgba(32, 65, 134, 0.8);*/
}

#hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 50px;
  right: 50px;
}

#hero .container {
  text-align: center;
}

#hero h2 {
  color: #fff;

  font-size: 48px;
  font-weight: 700;
}

#hero p {
  animation-delay: 0.4s;
  margin: 0 auto 30px auto;
  color: #fff;
}

#hero .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center center;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 0.5s;
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
  background: none;
  font-size: 30px;
  line-height: 0;
  width: auto;
  height: auto;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  transition: 0.3s;
  color: rgba(255, 255, 255, 0.5);
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#hero .carousel-control-next-icon:hover,
#hero .carousel-control-prev-icon:hover {
  background: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.8);
}

#hero .carousel-indicators li {
  cursor: pointer;
  background: #fff;
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  opacity: 0.6;
  transition: 0.3s;
}

#hero .carousel-indicators li.active {
  opacity: 1;
  background: Yellow;
}

#hero .btn-get-started {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  transition: 0.5s;
  line-height: 1;
  color: #000;
  animation-delay: 0.8s;
  background: #fff;
}

#hero .btn-get-started:hover {
  background: #6ec083;
}

@media (max-width: 992px) {
  #hero {
    height: 100vh;
  }

  #hero .carousel-container {
    top: 66px;
  }
}

@media (max-width: 768px) {
  #hero h2 {
    font-size: 28px;
  }
}

@media (min-width: 1024px) {

  #hero .carousel-control-prev,
  #hero .carousel-control-next {
    width: 5%;
  }
}

/*@media (max-height: 500px) {
  #hero {
    height: 600px;
  }
}
*/
/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
}

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

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

.section-title h2 {
  font-size: 26px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom:15px;
  padding-bottom: 15px;
  position: relative;
  color: #004571;
}

.section-title h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 8px;
  background: #0c6bed;
  bottom: 0;
  left: calc(50% - 20px);
}

.section-title p {
  margin-bottom: 0;
  font-size: 14px;
  color: #919191;
}

/*--------------------------------------------------------------
# Featured Services
--------------------------------------------------------------*/
.featured-services {
  padding: 20px 0;
}

.featured-services .icon-box {
  padding: 20px;
}

.featured-services .icon-box-bg {
  background-image: linear-gradient(0deg, #222222 0%, #2f2f2f 50%, #222222 100%);
}

.featured-services .icon {
  margin-bottom: 15px;
}

.featured-services .icon i {
  color: #0c6bed;
  font-size: 42px;
}

.featured-services .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.featured-services .title a {
  color: #222222;
  transition: 0.3s;
}

.featured-services .icon-box:hover .title a {
  color: #0c6bed;
}

.featured-services .description {
  line-height: 24px;
  font-size: 14px;
}

/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 700;
  font-size: 28px;
}

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

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

.about .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #0c6bed;
}

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

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us {
  padding: 0;
}

.why-us .row {
  overflow: hidden;
}

.why-us .content-item {
  padding: 40px;
  border-left: 1px solid #eee;
  border-bottom: 1px solid #eee;
  margin: -1px;
}

.why-us .content-item span {
  display: block;
  font-size: 24px;
  font-weight: 400;
  color: #6ec083;
}

.why-us .content-item h4 {
  font-size: 26px;
  font-weight: 300;
  padding: 0;
  margin: 20px 0;
}

.why-us .content-item p {
  color: #aaaaaa;
  font-size: 15px;
  margin: 0;
  padding: 0;
}

@media (max-width: 768px) {
  .why-us .content-item {
    padding: 40px 0;
  }
}

/*--------------------------------------------------------------
# Our Clients
--------------------------------------------------------------*/
.clients .swiper-slide img {
  opacity: 0.5;
  transition: 0.3s;
}

.clients .swiper-slide img:hover {
  opacity: 1;
}

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

.clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #0c6bed;
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #0c6bed;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  text-align: center;
    padding: 20px 10px 30px;
  transition: all ease-in-out 0.3s;
  background: #fff;
  box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.1);
}

.services .icon-box .icon {
  margin: 0 auto;
  width: 290px;

  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.3s;
  position: relative;
}

.services .icon-box .icon i {
  font-size: 36px;
  transition: 0.5s;
  position: relative;
}

.services .icon-box .icon svg {
  position: absolute;
  top: 0;
  left: 0;
}

.services .icon-box .icon svg path {
  transition: 0.5s;
  fill: #f5f5f5;
}

.services .icon-box h4 {
  font-weight: 600;
  margin: 10px 0 15px 0;
  font-size: 22px;
}

.services .icon-box h4 a {
  color: #222222;
  transition: ease-in-out 0.3s;
}

.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .icon-box:hover {
  border-color: #fff;
  box-shadow: 0px 0 35px 0 rgba(0, 0, 0, 0.08);
}

.services .iconbox-blue i {
  color: #47aeff;
}

.services .iconbox-blue:hover .icon i {
  color: #fff;
}

.services .iconbox-blue:hover .icon path {
  fill: #47aeff;
}

.services .iconbox-orange i {
  color: #ffa76e;
}

.services .iconbox-orange:hover .icon i {
  color: #fff;
}

.services .iconbox-orange:hover .icon path {
  fill: #ffa76e;
}

.services .iconbox-pink i {
  color: #e80368;
}

.services .iconbox-pink:hover .icon i {
  color: #fff;
}

.services .iconbox-pink:hover .icon path {
  fill: #e80368;
}

.services .iconbox-yellow i {
  color: #ffbb2c;
}

.services .iconbox-yellow:hover .icon i {
  color: #fff;
}

.services .iconbox-yellow:hover .icon path {
  fill: #ffbb2c;
}

.services .iconbox-red i {
  color: #ff5828;
}

.services .iconbox-red:hover .icon i {
  color: #fff;
}

.services .iconbox-red:hover .icon path {
  fill: #ff5828;
}

.services .iconbox-teal i {
  color: #11dbcf;
}

.services .iconbox-teal:hover .icon i {
  color: #fff;
}

.services .iconbox-teal:hover .icon path {
  fill: #11dbcf;
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: #0c6bed;
  padding: 80px 0;
}

.cta h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.cta p {
  color: #fff;
}

.cta .cta-btn {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 2px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
  border-radius: 4px;
}

.cta .cta-btn:hover {
  background: #fff;
  color: #0c6bed;
}

@media (max-width: 1024px) {
  .cta {
    background-attachment: scroll;
  }
}

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

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

.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 15px 10px 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;
  border-radius: 3px;
}

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

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

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

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

.portfolio .portfolio-wrap img {
  transition: all ease-in-out 0.3s;
}

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

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

.portfolio .portfolio-wrap .portfolio-info p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
  font-style: italic;
}

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

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

.portfolio .portfolio-wrap .portfolio-links a:hover {
  color: #6ec083;
}

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

.portfolio .portfolio-wrap:hover img {
  transform: scale(1.2);
}

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

/*--------------------------------------------------------------
# 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 #0c6bed;
}

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

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(34, 34, 34, 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;
  box-shadow: 0px 0px 12px 0px rgba(34, 34, 34, 0.07);
  padding: 30px 20px;
  background: #fff;
}

.team .member img {
  max-width: 60%;
  border-radius: 50%;
  margin: 0 0 30px 0;
}

.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 p {
  padding-top: 10px;
  font-size: 14px;
  font-style: italic;
  color: #aaaaaa;
}

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

.team .member .social a {
  color: #919191;
  transition: 0.3s;
}

.team .member .social a:hover {
  color: #0c6bed;
}

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

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  border-top: 3px solid #0c6bed;
  border-bottom: 3px solid #0c6bed;
  padding: 30px;
  background: #fff;
  width: 100%;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

.contact .info i {
  font-size: 20px;
  color: #0c6bed;
  float: left;
  width: 44px;
  height: 44px;
  background: #eaf6ed;
  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: 20px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #222222;
}

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

.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: #0c6bed;
  color: #fff;
}

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

.contact .php-email-form {
  width: 100%;
  border-top: 3px solid #0c6bed;
  border-bottom: 3px solid #0c6bed;
  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: #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;
  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:focus,
.contact .php-email-form textarea:focus {
  border-color: #0c6bed;
}

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

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

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

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

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

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

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #fbfbfb;
  min-height: 40px;
}

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

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 300;
}

.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: #3c3c3c;
  content: "/";
}

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

  .breadcrumbs ol {
    display: block;
  }

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

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #f8fcf9;
  color: #000;
  font-size: 14px;
  text-align: center;
  padding: 30px 0;
   border-top: 4px solid #0c6bed;
}

#footer h3 {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  position: relative;
  font-family: "Poppins", sans-serif;
  padding: 0;
  margin: 0 0 15px 0;
}

#footer p {
  font-size: 15;
  font-style: italic;
  padding: 0;
  margin: 0 0 40px 0;
}

#footer .social-links {
  margin: 0 0 40px 0;
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #0c6bed;
  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 .social-links a:hover {
  background: #449d5b;
  color: #fff;
  text-decoration: none;
}

#footer .copyright {
  margin: 0 0 5px 0;
}

#footer .credits {
  font-size: 13px;
}


.centy { text-align:center; font-size:30px; color:yellow; }


.baclendbg {     background-color: #0c6bed;
    padding: 20px 0;
    color: yellow; text-align:center;  }

    .fact-number {font-size: 34px; line-height:44px}

    .fact-statement { color:#fff; }

    .services .icon-box .icon img { width:100%; }


.sliderlogo { width:650px; margin:0px auto 0; padding:10px 0; }
/*.sliderlogo img { width:100%;   -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);}*/


ul.listabout { text-align:left; padding:0 }

ul.listabout li{ width:49%; display:inline-block; margin-bottom:25px; }
ul.listabout li span { font-weight:800; }

img.iconimg{ width:50px; height:50px; background:#f7f7f7; border-radius:7px; padding:5px; }





ul.prelist { text-align:left; padding:0; margin-bottom: 10px;}

ul.prelist li{ width:100%; display:inline-block; margin-bottom:25px; background-color: #f7f7f7;
border-radius: 4px; padding: 20px; 
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgb(237 28 36 / 20%);
/*border: 1px solid #dfdfdf;*/
}


ul.prelist li:nth-child(2n) { background:#fff; }

ul.prelist li span { font-weight:800; }


ul.prelist.free li { background:#f7f7f7; }



.imgpre{ width:36%; float:left; }
.imgpre img { width:100%; border-radius:4px; }
.detail{ width:60%; float:left; margin-left:10px; padding-left:10px; }

.headtxt{font-size: 17px; font-weight: 700;margin-bottom: 0px;}

.addresstxt{font-size: 13px; font-weight: 400; margin-bottom: 5px; text-align: left;}
.exptxt{font-size: 13px; font-weight: 400;margin-bottom: 10px;}
.ratingtxt{font-size: 12px; font-weight: 400;margin-bottom: 7px;}
.addresstxt span,.exptxt span, .ratingtxt span { font-weight:700; width:100px; }

.btnlink {
      background: #004571; color: #fff; font-size: 14px; text-align: center; border-radius: 4px;
      padding:7px 10px; margin-right: 10px;
}
.btnlink:hover { color:#f7f7f7; }


.btnlink.pinkc { background:#333; }

a.tlink { font-size:13px; }



.section-title.tsy h2 { text-align:left;  }

.section-title.tsy h2::before { left:inherit; }
.section-title.tsy h2::after {    left: 0px}


.imgprenew{ width:42%; float:left; }
.imgprenew img { width:100%; border-radius:4px; }

.detailnew{ width:58%;  padding-left:10px;float:left; }

.detailnew .headtxt { font-size:14px; }
.detailnew .addresstxt{font-size: 12px;}
.detailnew .exptxt{font-size: 12px; }
.detailnew .ratingtxt{font-size: 11px; }

.col-lg-8.modfy { border-right:1px solid #dfdfdf; }
.mart10 { margin-bottom:7px; }

.mainsection { padding-top:20px; }
.mainsection h1.headtop { font-size:30px; }
.addf { font-size:16px; line-height:22px; }

.mainsection { margin-top:20px; }

.sliderblk { width:100%; clear: both; overflow: hidden; margin:20px 0;}

.leftslider { width:45%; float:left; }
.rightblk { width:55%; float:left; padding-left:20px;  border-right:1px;}

.txblk { width:100%; padding:10px 5px;     margin-bottom: 10px;
    overflow: hidden;}
.txblk:nth-child(2n+1) { background:#f7f7f7; }
.strblk1{ width:25%; float:left; font-weight:800; }
.strblk2{ width:3%; float:left; }
.strblk3{ width:71%; float:left; }

.contentblk { padding-top:0px; clear:both;  overflow:hidden; margin-bottom:20px; }
.innercontentblk { border-top:1px solid #0c6bed; margin-top:20px; padding-top:20px; clear:both;  overflow:hidden; }
.cblk { width:100%; margin-bottom:20px; }

.cblkleft { width:70%; float:left; border-right:1px solid #0c6bed; padding-right:10px; margin-left:10px;}

.cblkright { width:29%; float: left; padding-left:10px;}


ul.drlist { text-align:left; padding:0 }

ul.drlist li{ width:100%; display:inline-block; margin-bottom:15px; background-color: #f7f7f7;
border-radius: 4px; padding: 10px; border:1px solid #dfdfdf;
}
ul.drlist li:nth-child(2n) { background:#fff; }

.imgdr{ width:20%; float:left; }
.imgdr img { width:100%; border-radius:4px; }
.drdetail{ width:78%; float:left; margin-left:10px; padding-left:10px; }

ul.drlist li .exptxt{font-size: 14px; font-weight: 400;margin-bottom: 8px;}


ul.clientlist { text-align:left; padding:0 }

ul.clientlist li{ width:100%; display:inline-block; margin-bottom:15px; background-color: #fff;
border-radius: 4px; padding: 10px; border:1px solid #dfdfdf;
}
ul.clientlist li:nth-child(2n) { background:#fff; }

.imgclient{ width:20%; float:left; }
.imgclient img { width:100%; border-radius:4px; }

img.imgp { width:100px; padding:5px; float:left; }


.clientdetail{ width:100%; float:left; }
.clienttxt { font-size:13px; line-height:18px; }
ul.clientlist li .exptxt{font-size: 14px; font-weight: 400;margin-bottom: 8px;}

.feedbblk { background-color:#f7f7f7; padding:10px; width:100%; border-radius:4px; }


ul.flist { padding:0px; margin:0px;   }
ul.flist li{  margin-bottom:10px; width: 100%; list-style: none; list-style-type: none; overflow: hidden;}

/* component */

.star-rating {
/*  border:solid 1px #ccc;*/
  display:flex;
  flex-direction: row-reverse;
  font-size:18px;
  justify-content:space-around;
  padding:0 .2em;
  text-align:center;
  width:5em;
      position: relative;
    top: -2px;
}

.star-rating input {
  display:none;
}

.star-rating label {
  color:#ccc;
  cursor:pointer;
}

.star-rating :checked ~ label {
  color:#f90;
}

.star-rating label:hover,
.star-rating label:hover ~ label {
  color:#fc0;
}

/* explanation */

.section-title.inner {    padding-bottom: 0px; text-align: left; display: inline-block;}
.section-title.inner  h2::before {    left: 0;}
.section-title.inner  h2::after {left: 15%;}

input.btnlink { outline:none; border:none; padding:10px 17px; font-size:17px; font-weight:700;   }


.fblk { width:34%; float:left; text-align:left; }
.fblk2 { width:65

  %; float:left; }
.gallery {
  width: 100%;
  max-width: 620px;
  margin: 0px auto;
}
.gallery-slider {
  width: 100%;
  height: auto;
  margin: 0 0 10px 0;
}
.gallery-slider .swiper-slide {
  width: auto;
  height: 400px;
}
.gallery-slider .swiper-slide img {
  display: block;
  width: auto;
  height: 100%;
  margin: 0 auto;
}
.gallery-thumbs {
  width: 100%;
  padding: 0;
  overflow: hidden;
}
.gallery-thumbs .swiper-slide {
  width: 100px;
  height: 100px;
  text-align: center;
  overflow: hidden;
  opacity: 0.1;
}
.gallery-thumbs .swiper-slide-active {
  opacity: 1;
}
.gallery-thumbs .swiper-slide img {
  width: auto;
  height: 100%;
}

.gallery .swiper-button-next:after, .gallery .swiper-button-prev:after { color:#0c6bed }







.searchbg { background-color:#0c6bed; width:100%; padding:2px 10px; display:block; float:none;
clear:both; margin-top:19px; }

ul.searlist { padding:10px; margin:0px -10px; text-align:center; }

ul.searlist li { padding:0; list-style:none; list-style-type:none; width:24%; display:inline-block; margin-right: 20px;}
ul.searlist li.lastb { width:6%; text-align:left;   margin-right: 0}
ul.searlist li.fistb { width:40%; text-align:right; }
.btnlink.whi { background:#000; color:#fff; padding:7px 18px; border:none;     font-weight: 600;}

ul.searlist li .form-control { height:32px;    font-size: 13px; }

ul.doclist { text-align:left; padding:0 }

ul.doclist li{ width:100%; display:inline-block; margin-bottom:25px; 
border-radius: 4px; padding: 20px;border: 1px solid #0c6bed;
}


.evcotshow { font-size:13px; clear:both; padding-top:10px; width: 100%;}

.evcotshow p {font-size:13px; color: #000; margin-bottom: 5px;}
.evdetail span { font-weight:700; }
ul.doclist li .imgpre{ width:30%; }

.vallblk { text-align:right; }

.vallblk a { font-weight:600; font-size:18px; color:#0c6bed; text-decoration:none;  }

ul.doclist li .detail {    width: 68%;}

.fblkfull { width:100%; clear:both; overflow:hidden; padding-bottom: 20px;}

.homesty .section-title{ padding-bottom:0px; }

.tbm { margin-bottom:15px; }

.docblk { background: #fff;    overflow: hidden;
    margin-bottom: 20px;
    border-bottom: 1px solid #CCC;
    padding-bottom: 20px; width: 100%}

.section-title.mtsy { padding-bottom:0px; }

.docdeatil { padding-top:5px; }
.indetail { font-size:14px;  font-weight:400;  width: 100%; margin-bottom:3px; overflow: hidden;}

.indetail span.db1 { font-weight:700; width:100px; display:inline-block; width:100px;float:left; }
.indetail span.db2 { display:inline-block;font-weight:400; width:75%; float: left;}

.adsblks { background-color:#f7f7f7; padding:10px 0; text-align:center; margin-bottom:30px;  }

.ads768 { width:768px; text-align:center; margin:0 auto; font-size:40px; height:90px;
 }

.rightadsblks {  padding:0px 0; text-align:center; margin-bottom:30px;  }

.rightads300 { width:300px; text-align:center; margin:0 auto; font-size:40px; height:250px;background-color:#f7f7f7; 
  border:1px solid #dfdfdf;
 }

ul.eventlistblk { text-align:left; padding:0 }

ul.eventlistblk li{ width:100%; display:block; margin-bottom:25px; 
border-radius: 4px; padding: 5px;border: 1px solid #0c6bed; list-style: none; list-style-type: none;
clear:both; overflow: hidden;
}

.headdtxt { font-size:16px; font-weight:700; }

ul.eventlistblk li .eveimg{ width:37%;  float:left;}

ul.eventlistblk li .eveimg img { width:100%; }
ul.eventlistblk li .evedet {    width: 63%; float: left; padding-left: 10px;}

.dtxt { font-size:13px; }

.dtxt span { font-weight:700; }

.spblk { width:100%;  overflow:hidden;     padding-top: 20px;}


ul.awrdslistblk { text-align:left; padding:0 }

ul.awrdslistblk li{ width:100%; display:block; margin-bottom:25px; 
border-radius: 8px; padding: 8px;border-top: 2px solid #004571; border-bottom: 2px solid #004571; list-style: none; list-style-type: none;
clear:both; overflow: hidden; background-color: #f7f7f7;
}

.headdtxt { font-size:16px; font-weight:700;    line-height: 20px;
    margin-bottom: 8px; }

ul.awrdslistblk li .eveimg{ width:27%;  float:left;}

ul.awrdslistblk li .eveimg img { width:100%; }
ul.awrdslistblk li .evedet {    width: 67%; float: left; padding-left: 10px;}


.awrdsshow { font-size:13px; clear:both; padding-top:10px; width: 100%;}

.awrdsshow p {font-size:13px; color: #000; margin-bottom: 5px;}

.rightadsblks.topmar { margin-top:20px; }


ul.listb { text-align:left; display:inline; }
ul.listb li { display:inline-block; list-style:none; }
.adsblksnew { float:right; width:768px; height:60px; background:#f7f7f7; border:1px solid #dfdfdf;
text-align:center; font-size:30px; line-height:30px;    padding: 11px 0 0 0; }


.blk { width:100%; padding:0px 0 6px; overflow:hidden; }

.fblk { float:left; width:138px; font-weight:700; font-size:14px; }
.rblk { float:left; width:71%; font-size:12px;}

.theading { 
  background: #0c6bed;
background: linear-gradient(90deg,rgba(254, 153, 189, 1) 0%, rgba(0, 69, 113, 1) 50%, rgba(0, 69, 113, 1) 100%);
padding:10px;
color: #fff;
font-weight: 700;
    font-size: 18px;
 }

.setbor { border:1px solid #DFDFDF; padding:10px; overflow:hidden; background:#fff; }


.vlink .btnlink { width:100%;     width: 100%;
    display: block;
    margin-top: 1px;
    border-radius: 0;
    font-size: 13px;
    padding: 5px; }

.tlist { text-align:left;  margin-bottom: 20px; padding-top: 10px;}
 
.tlist .innertlist  { background:#fff; border-radius:4px; padding:10px; text-align:center;
font-size:14px; color:#004571; display:inline-block;  box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgb(0 69 113 / 20%);}

.imgpredoc { width:13%; float:left; }
.imgpredoc  img  { width:100%; }

.tlistlink { text-align:left;  margin-bottom: 0px; padding-top: 0px;}
 
.tlistlink .innert  {border-radius:4px;  text-align:center;
font-size:14px; color:#004571; display:block;  text-align: left;
}

.tlistlink .innert i.bi-check {     font-size: 20px;
    position: relative;
    top: 2px; }



.docblk .detail {    width: 83%;}


.fblkfull.detailpage .detail { width:100%; padding:0; margin:0; }
.fblkfull.detailpage .detail .fblk { width:200px; font-size:16px; }
.fblkfull.detailpage .detail .rblk { width:60%; font-size:14px; }

/*slider start*/

.gallery {
  width: 850px;
  max-width: 850px;
  margin: 0px auto;
}
.gallery-slider {
  width: 100%;
   /*width: 855px;*/
  height: auto;
  margin: 0 0 10px 0;
}
.gallery-slider .swiper-slide {
    width: 100%;
  /*width: 855px;*/
  /*height: 400px;*/
}
.gallery-slider .swiper-slide img {
  display: block;
  width: 100%;
  /*height: 100%;*/
  margin: 0 auto;
}
.gallery-thumbs {
  width: 100%;
  padding: 0;
  overflow: hidden;
}
.gallery-thumbs .swiper-slide {
  width: 180px;
  /*height: 85px;*/
  text-align: center;
  overflow: hidden;
  opacity: 0.5;
}
.gallery-thumbs .swiper-slide-active {
  opacity: 1;
}
.gallery-thumbs .swiper-slide img {
  width: auto;
  height: 100%;
}


/*slider end*/

/*mediamobile*/
@media (max-width: 768px) {
    #topbar {    font-size: 13px;}
    #header {    height: 105px;}
    #header .logo img {
    max-height: 100px;
}

.sliderlogo { width:92%;  }
.ads768 { width: 100%;} 

ul.searlist li.fistb{
  width: 100%;
  display: block;
  }

ul.searlist li{
  width: 100%;
  display: block;
  margin-bottom: 10px;
  }
ul.searlist li.lastb { width: 100%;
  display: block;
    float: none;
    text-align: center;
}

.imgpre { width:100%;  float: none;}
.detail { width:100%; float:none; margin:10px 0 0 0; padding:0px; }

ul.doclist li .imgpre { width:100%;  float: none;}
ul.doclist li .detail  { width:100%; float:none; margin:10px 0 0 0; padding:0px; }

}