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

a {
  color: #428bca;
  text-decoration: none;
}


a:hover {
  color: #9eccf4;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
.font-primary {
  
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: #428bca;
  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: #629fd3;
  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;
  }
}

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

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

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

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

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 70px;
  background: #fff;
  z-index: 997;
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.06);
}

#header .logo h1 {
  font-size: 28px;
  margin: 0;
  padding: 10px 0;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
}

#header .logo h1 a,
#header .logo h1 a:hover {
  color: #1c5c93;
  text-decoration: none;
}

#header .logo img {
  padding: 0;
  margin: 0;
  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 {
    font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px 10px 0px;
  font-size: 15px;
  color: #1976D2;
  white-space: nowrap;
  /* transition: 0.3s; */
  text-transform: uppercase;
  letter-spacing: 1px;
}

.navbar .menu-btn {
  background: #FFA62E;
  padding: 10px 20px 10px 20px !important;
  color: #ffffff !important;
}

/* .navbar .menu-btn */

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

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  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;
  text-transform: uppercase;
}

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

.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%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #1f3548;
  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(31, 53, 72, 0.9);
  transition: 0.3s;
  z-index: 998;
}

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

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

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

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


 /* page header */
 .page-header {
     background-image: url('../../assets/img/about/about.jpg');
     background-position: top center;
     background-size: cover;
     position: relative;
 }

 .page-header:before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0.6);
 }

 .page-header h1 {
     position: relative;
     line-height: 4;
     color: #ffffff;
 }


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: calc(100vh - 110px);
  padding: 0;
  overflow: hidden;
  background: #000;
}

#hero .carousel-item {
  width: 100%;
  height: calc(100vh - 110px);
  background-size: cover;
  background-position: top right;
  background-repeat: no-repeat;
  overflow: hidden;
}

#hero .carousel-item::before {
  content: "";
  background-color: rgba(13, 30, 45, 0.6);
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  overflow: hidden;
}

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

#hero .carousel-content {
  text-align: left;
}

@media (max-width: 992px) {

  #hero,
  #hero .carousel-item {
    height: calc(100vh - 70px);
  }

  #hero .carousel-content.container {
    padding: 0 50px;
  }
}

#hero h2 {
  color: #fff;
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 900;
}

#hero p {
  width: 80%;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  color: #fff;
}

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

#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-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  left: 0;
  transform: translate3d(0, 0, 0);
}

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

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
  background: none;
  font-size: 48px;
  line-height: 1;
  width: auto;
  height: auto;
}

#hero .carousel-indicators li {
  cursor: pointer;
}

#hero .btn-get-started {
  
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 5px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  color: #fff;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  border: 0;
  background: #428bca;
}

#hero .btn-get-started:hover {
  background: #1c5c93;
}

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

@media (max-height: 500px) {

  #hero,
  #hero .carousel-item {
    height: 120vh;
  }
}

@media (min-width: 1024px) {
  #hero p {
    width: 60%;
  }

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

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
.section-title span {
	font-size: 16px;
font-weight: 500;
text-transform: uppercase;

letter-spacing: 2px;
display: inline-block;
margin: 0 10px;
}
.section-title h5{
    font-size: 18px;
    background: #1976D2;
    color: #ffffff;
    display: inline-block;
    margin-bottom: 15px;
    padding: 5px 10px 3px 10px;
    border-left: 5px solid #ffa62d;
    text-transform: uppercase;
}
.section-title h2 {
	font-size: 40px;
	padding-bottom: 0;
	margin-bottom: 10px;
	position: relative;
}
.section-title h2::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 4px;
	width: 60px;
	background: #F15B26;
	margin: auto;
	transition: .3s;
    display: none;
}

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

.breadcrumbs h2 {
  font-size: 24px;
  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: #6c757d;
  content: "/";
}

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

  .breadcrumbs ol {
    display: block;
  }

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


/*================================================
  About Area CSS
=================================================*/

.about-section img {
    box-shadow: 0px 10px 20px -9px rgba(0, 0, 0, 0.5);
}

.about-section .cta-btn {
  margin-top: 15px;
}

.about-section .cta-btn .btn-solid:hover {
  border: 1px solid #1976D2;
  color: #1976D2;
}

/* service */
.services {
  background: #f0f0f0;
}
.services .card {
  border: none;
}

.services .icon-box {
  height: 300px;
  box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);

}
.services .icon-box .icon {
  font-size: 100px;
  color: #01579B;
}
.services .icon-box .title {
  font-size: 16px;
}
.services {
  /* height: 500px; */
  position: relative;
}

.service-container {

  

}

.overlay {
  width: 100%;
  height: 100%;
  /* display: none; */
  position: absolute;
  background: #01579B;
  color: #ffffff;
  opacity: 0;
  transition: all .7s;
  
}

.items {
  padding-left: 20px;
  letter-spacing: 2px;
}

.head {
  padding: 30px;
  font-size: 16px;
  line-height: 1.5;
  transform: translateY(40px);
  transition: all 0.7s;
}

.service-container:hover .overlay {
  opacity: 1;
  /* display: block; */
}
.service-container:hover .overlay .head {
  transform: translateY(0px);
}
.service-container:hover .overlay hr {
  width: 75px;
  transition-delay: 0.4s;
}


/*================================================
  Video Area CSS
=================================================*/
.banner-section {
  position: relative;
  z-index: 1;
  height: 250px;}

.banner-section::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: calc(100% - 0%);
  z-index: -1;
  background: url("../img/bg/bg.png");
}

.banner-section::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: calc(100% - 0%);
  z-index: -1;
  background: #01579B;
  background: -webkit-gradient(linear, left bottom, left top, from(#01579B));
  background: linear-gradient(0deg, #01579B 0% #01579B 100%);
  opacity: 0.9;
}

.banner-section .content {
  color: #fff;
}

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

.testimonials::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    /* background: rgba(163, 220, 248, 0.8); */
background: rgba(0, 0, 0, 0.7);
}

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

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

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

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

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

.testimonials .testimonial-item h4 {
    font-size: 14px;
    color: #fff;
    margin: 0 0 15px 0;
    /* text-shadow: 1px 1px 1px #fff; */
}

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

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

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

.testimonials .testimonial-item p {
    font-style: italic;
    margin: 0 auto 15px auto;
    color: #fff;
    /* text-shadow: 1px 1px 1px #fff; */

}

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

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

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #01b1d7;
}

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

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

.client-section::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  background: url(../img/bg/map_1.png) no-repeat center;
  background-size: contain;
}

#footer {
  background: #01579B;
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
}

#footer .footer-top {
  background: #01579B;
  border-top: 1px solid #768fa6;
  border-bottom: 1px solid #67839c;
  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;
  
  color: #fff;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #768fa6;
  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: #428bca;
  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: #9eccf4;
  font-size: 18px;
  line-height: 1;
}

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

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

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

#footer .footer-top .footer-links ul a:hover {
  color: #9eccf4;
}

#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4;
}

#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: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #428bca;
  color: #fff;
  transition: 0.3s;
  border-radius: 4;
}

#footer .footer-top .footer-newsletter form input[type=submit]:hover {
  background: #5295ce;
}

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

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}

#footer .credits a {
  color: #9eccf4;
}





.blog-card {
  max-width: 100%;
  width: 100%;
  height: 350px;
  color: #fff;
  overflow: hidden;
  border-radius: 0px;
  box-shadow: 0px 10px 20px -9px rgba(0, 0, 0, 0.5);
  text-align: center;
  transition: all 0.4s;
  /* background: url(https://unsplash.it/600/800?image=1061) center no-repeat; */
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  padding: 0 15px;
  position: relative;

}

/* .blog-card::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(25, 118, 210, 0.9);
    z-index: 0;
} */

.blog-card a {
  color: #fff;
  text-decoration: none;
  transition: all 0.2s;
  position: relative;
}

.blog-card .color-overlay {
  background: rgba(0, 0, 0, 0.4);
  /* background: rgba(25, 118, 210, 0.8); */
  width: 100%;
  height: 350px;
  position: absolute;
  /* z-index: 10; */
  top: 0;
  left: 0;
  transition: background 0.3s cubic-bezier(0.33, 0.66, 0.66, 1);
}

.blog-card:hover {
  box-shadow: 0px 18px 20px -9px rgba(0, 10, 30, 0.75);
}

.blog-card:hover .card-info {
  opacity: 1;
  /* bottom: 100px; */
position: relative;
line-height: 1.2;
}

.blog-card:hover .color-overlay {
  /* background: rgba(25, 118, 210, 0.7); */
  background: rgba(0, 0, 0, 0.5);
}

.blog-card:hover .title-content {
  margin-top: 20px;
}

.title-content {
  text-align: center;
  margin: 100px 0 0 0;
  /* position: absolute; */
  z-index: 20;
  width: 100%;
  /* top: 0;
  left: 0; */
  transition: all 0.6s;
position: relative;

}

.blog-card:hover h3:after {
  animation: changeLetter 0.3s 1 linear;
  width: 100%;
}

.blog-card h3,
.blog-card h1 {
  font-size: 1.9em;
  font-weight: 400;
  margin-bottom: 0;
  display: inline-block;
  color: #fff;
}

.blog-card h3 a {
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
  transition: all 0.2s;
}

.blog-card h3 a:hover {
  text-shadow: 0px 8px 20px rgba(0, 0, 0, 0.95);
}

.blog-card h3:after {
  content: " ";
  display: block;
  width: 50%;
  height: 2px;
  margin: 10px auto;
  border: 0;
  background: #ffffff;
  transition: all 0.2s;
}

@media (max-width: 768px) {
.blog-card {
        height: 450px;

    }
}


@keyframes changeLetter {
  0% {
    width: 10%;
  }

  100% {
    width: 80%;
  }
}

.intro {
  width: 170px;
  margin: 0 auto;
  color: #ddd;
  font-style: italic;
  line-height: 2;
}

.intro a {
  color: #ddd;
}

.intro a:hover {
  text-decoration: underline;
}

.card-info {
  box-sizing: border-box;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  z-index: 20;
  opacity: 0;
  transition: bottom 0.64s, opacity 0.63s cubic-bezier(0.33, 0.66, 0.66, 1);
}

.card-info a {
  display: block;
  width: 100px;
  margin: 15px auto;
  background: #fff;
  color: #444;
  padding: 3px 10px;
  border-radius: 2px;
  font-size: 0.8em;
}

.card-info a:hover {
  background: #ffa62d;
  color: #fff;
}

.card-info a:hover span {
  filter: brightness(10);
  opacity: 1;
}




@media (max-width: 500px) {

  .card-info {
    /* display: none; */
  }

  .blog-card:hover .title-content,
  .title-content {
    margin-top: 40px;
  }

  .blog-card {
    height: 300px;
  }

  .blog-card h3 {
    font-size: 1.3em;
  }

  .intro {
    font-size: 0.8em;
  }
}

/*  ================  */

/* ignore this bit :P */
#profile-badges:after {
  content: "BRO";
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  padding: 1px 4px 1px 4px;
  color: black !important;
  border-radius: 3px;
  position: relative;
  top: -2px;
  text-shadow: none !important;
  white-space: nowrap;
  letter-spacing: 0;
  background: #ffdd40;
}

.profile-header {
  background: #333 url(https://images.unsplash.com/photo-1435783099294-283725c37230?dpr=1&auto=compress,format&fit=crop&w=1376&h=635&q=80&cs=tinysrgb&crop=&bg=) top center no-repeat;
  background-size: cover;
  font-size: 3em;
  position: relative;
}

.profile-header:after {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(23, 23, 31, 0.42);
  z-index: 0;
}

#profile-links a {

  font-size: 1.2em;
}

.profile-links a[href*="nodws\.com"]:before {
  content: "\2616";
  color: #0a45b5;
  padding-right: 3px;
}

.profile-links a[href*="twitter"]:before {
  content: "\1f426";
  color: #08c;
}

.profile-links a[href*="dribbble"]:before {
  content: "\26BE";
  color: #d055bf;
}

#following-this-user {
  pointer-events: none;
}

#follow-this-user {
  font-size: 1.2em;
  border-color: #359ef9;
}

#follow-this-user:after {
  content: "\1f448";
}

.links-and-stats {
  background: rgb(20, 20, 21);
}

.profile-name h1 {
  text-shadow: 0 6px 9px rgba(0, 0, 0, 0.48);
}

.profile-avatar {
  bottom: -10px;
  width: 150px;
  height: 150px;
  border: 0px solid #1e1e1e;
  background: rgba(2, 2, 2, 0.49);
  box-shadow: 0 19px 19px -10px rgba(0, 0, 0, 0.63);
}

.profile-username,
.upsell,
.profile-location,
.primary-pro {
  opacity: 0;
}

.upsell,
#pen-as-header-question {
  display: none;
}

.profile-nav-1 a {
  font-size: 1.2rem;
}

.profile-bio,
.profile-nav-1 a.active,
.profile-nav-1 a:hover {
  color: rgba(20, 20, 21, 0.59) !important;
  font-size: 1.2rem;
}

.meta .pen-title {

  text-align: center;
}

.pagination-button {
  background-color: #2f2f31;
  border-color: #2f2f31;
  transition: all 0.2s;
}

.pagination-button:hover {
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.single-project .stats,
.single-pen .stats {
  text-align: center;
  width: 100%;
}

.stats svg {
  fill: #bda26b;
}

.stats svg,
.loves .icon-heart {
  fill: rgba(47, 47, 49, 0) !important;
  stroke: #ba6 !important;
  stroke-width: 0.1em !important;
}

.loves .icon-heart {
  stroke-width: 0.5em !important;
}

.comments svg {
  stroke-width: 0.35em !important;
}

.single-stat.loves.loved-1 svg {
  stroke: #fff !important;
}

.single-pen:hover h3:after {
  width: 40%;
  transition: all 0.2s;
}

.pen-actions {
  border: 0px !important;
}

.meta {
  box-shadow: none !important;
}


/* ==========================================================================
   #WRAPPER
   ========================================================================== */
.wrapper {
  margin: 0 auto;
  padding: 55px 55px 37px 55px;
}

.wrapper--w960 {
  max-width: 960px;
}

.wrapper--w780 {
  max-width: 780px;
}

.wrapper--w680 {
  max-width: 680px;
}

.bg-gra-02 {
  /* background: -webkit-gradient(linear, left bottom, right top, from(#fc2c77), to(#6c4079));
  background: -webkit-linear-gradient(bottom left, #fc2c77 0%, #6c4079 100%);
  background: -moz-linear-gradient(bottom left, #fc2c77 0%, #6c4079 100%);
  background: -o-linear-gradient(bottom left, #fc2c77 0%, #6c4079 100%);
  background: linear-gradient(to top right, #fc2c77 0%, #6c4079 100%); */
  background: url('../../assets/img/form-bg.jpg') no-repeat;
  background-position: 100% 100%;
  background-size: cover;
}

.container-login100 {
    width: 100%;  
    min-height: 100vh;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 15px;
  background: url('../../assets/img/bg/map_1.png');
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    position: relative;
    z-index: 1;  
  }
  
  .container-login100::before {
    content: "";
    display: block;
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(255,255,255,0.8);

  }
  
  /* .wrap-login100 {
    width: 500px;
    border-radius: 10px;
    overflow: hidden;
    padding: 55px 55px 37px 55px;
  
    background: #9152f8;
    background: -webkit-linear-gradient(top, #7579ff, #b224ef);
    background: -o-linear-gradient(top, #7579ff, #b224ef);
    background: -moz-linear-gradient(top, #7579ff, #b224ef);
    background: linear-gradient(top, #7579ff, #b224ef);
  } */

.container-login100 .card {
  /* background: #1976D2; */
  background: rgba(25, 118, 210, 0.9);
  color: #ffffff;
}
    .container-login100 .card .card-body {
    padding: 55px 55px 37px 55px;
    }

@media (max-width: 768px) {
    .wrapper {
            padding: 15px 15px 07px 15px;
        }
    .container-login100 .card .card-body {
            padding: 25px 25px 17px 25px;
        }
        
}


           /* contact us */
           /*--------------------------------------------------------------
    # Contact
    --------------------------------------------------------------*/
           .contact {
               background: #fff;
           }
    
           .contact .info {
               /* border-top: 3px solid #075889;
               border-bottom: 3px solid #075889; */
               height: 450px;
               padding: 30px;
               background: #fff;
               width: 100%;
               box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.1);
           }
    
           .contact .info i {
               font-size: 20px;
               color: #ffffff;
               float: left;
               width: 44px;
               height: 44px;
               background: #1976d2;
               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: #1976d2;
           }
    
           .contact .info p {
               padding: 0 0 10px 60px;
               margin-bottom: 20px;
               font-size: 14px;
               color: #6182ba;
           }
    
           .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: #47b2e4;
               color: #fff;
           }
    
           .contact .info .email:hover i,
           .contact .info .address:hover i,
           .contact .info .phone:hover i {
               background: #47b2e4;
               color: #fff;
           }
    
           .contact .php-email-form {
               width: 100%;
               /* border-top: 3px solid #075889;
               border-bottom: 3px solid #075889; */
               padding: 30px;
               background: #fff;
               box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
               height: 450px;
           }

           @media screen and (max-width: 768px) {
              .contact .php-email-form {
                height: auto;
              }
            }
    
           .contact .php-email-form .form-group {
               padding-bottom: 8px;
           }
    
           .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;
           }
    
           .contact .php-email-form .form-group {
               margin-bottom: 20px;
           }
    
           .contact .php-email-form label {
               padding-bottom: 8px;
           }
    
           .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: #47b2e4;
           }
    
           .contact .php-email-form input {
               height: 44px;
           }
    
           .contact .php-email-form textarea {
               padding: 10px 12px;
           }
    
           .contact .php-email-form button[type=submit] {
               background: #1976d2;
               border: 0;
               padding: 12px 34px;
               color: #fff;
               transition: 0.4s;
               border-radius: 50px;
           }
    
           .contact .php-email-form button[type=submit]:hover {
               background: #209dd8;
           }



                   /*--------------------------------------------------------------
        # solutions
        --------------------------------------------------------------*/
                   .solutions .icon-box {
                       text-align: center;
                       border: 1px solid #d5e1ed;
                       padding: 90px 20px;
                       transition: all ease-in-out 0.3s;
                       width: 100%;
                   }
        
                   .solutions .icon-box .icon {
                       margin: 0 auto;
                       width: 64px;
                       height: 64px;
                       background: #1977cc;
                       border-radius: 5px;
                       transition: all 0.3s ease-out 0s;
                       display: flex;
                       align-items: center;
                       justify-content: center;
                       margin-bottom: 20px;
                       transform-style: preserve-3d;
                   }
        
                   .solutions .icon-box .icon i {
                       color: #fff;
                       font-size: 28px;
                   }
        
                   .solutions .icon-box .icon::before {
                       position: absolute;
                       content: "";
                       left: -8px;
                       top: -8px;
                       height: 100%;
                       width: 100%;
                       background: #badaf7;
                       border-radius: 5px;
                       transition: all 0.3s ease-out 0s;
                       transform: translateZ(-1px);
                   }
        
                   .solutions .icon-box h4 {
                       font-weight: 700;
                       margin-bottom: 15px;
                       font-size: 24px;
                   }
        
                   .solutions .icon-box h4 a {
                       color: #2c4964;
                   }
        
                   .solutions .icon-box p {
                       line-height: 24px;
                       font-size: 14px;
                       margin-bottom: 0;
                   }
        
                   .solutions .icon-box:hover {
                       background: #1977cc;
                       border-color: #1977cc;
                   }
        
                   .solutions .icon-box:hover .icon {
                       background: #fff;
                   }
        
                   .solutions .icon-box:hover .icon i {
                       color: #1977cc;
                   }
        
                   .solutions .icon-box:hover .icon::before {
                       background: #3291e6;
                   }
        
                   .solutions .icon-box:hover h4 a,
                   .solutions .icon-box:hover p {
                       color: #fff;
                   }





/* careers */
.careers .card h3 {
    font-size: 18px;
}
.careers .card h5 {
    font-size: 14px;
    color: #555;
}
.careers .card .jobID {
    color: #1976D2;
}

.careers .card p {
    font-size: 13px;
    color: #555;
}

.career-info .card {
    box-shadow: 0px 0 25px rgba(0, 0, 0, 0.15);
    padding: 25px;
}

.career-info p {
    line-height: 2;
}
.career-info .job-info {
    border-top: 1px solid #555;
    border-bottom: 1px solid #555;
    padding: 15px 10px 10px 10px;
    margin: 20px 0px;
}
.career-info .card .btn i {
    font-size: 18px;
}

.career-info .card h3 {
    font-size: 20px;
}

.career-info .card h5 {
    font-size: 16px;
    color: #333;
}


/* pages */
.page-section {
    padding: 50px 0;
    background: #1976D2;
    width: 100%;  
    /* min-height: 100vh; */
    /* background: url('../../assets/img/testimonial-bg.jpg') no-repeat;
  background-position: 100% 100%;
  background-size: cover; */
position: relative;
z-index: 1;
}

/* .page-section::before {
    content: "";
    display: block;
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(255,255,255,0.8);

} */

.page-section p {
    color: #fff;
    line-height: 2;
    font-size: 18px;
}

.page-section .page-img img {
    box-shadow: 0px 10px 20px -9px rgba(0, 0, 0, 0.5);
    border: 10px solid #fff;
position: relative;
z-index: 9999;
}

.page-section .page-img {
    
      z-index: 9999;
}

.page-section .page-img .page-img-block {
    position: absolute;
    top: 200px;
    right: 15%;
    width:300px;
    height: 300px;
    background: #fff;
    z-index: 0;
}

/*--------------------------------------------------------------
# Services-info
--------------------------------------------------------------*/
.services-info {
    padding-bottom: 30px;
    background: #fff;
}

.services-info .icon-box {
    /* margin-bottom: 20px; */
    text-align: center;
    padding: 30px;
    /* border-right: 1px solid #555; */
    background: #fff;
    box-shadow: 0px 10px 20px -9px rgba(0, 0, 0, 0.5);
}

.services-info .icon-box p {
    font-size: 18px;
}

.services-info .icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    background: #fff;
    border-radius: 50%;
    transition: 0.5s;
    color: #428bca;
    box-shadow: 0px 0 25px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.services-info .icon i {
    font-size: 36px;
    line-height: 0;
}

.services-info .icon-box:hover .icon {
    box-shadow: 0px 0 30px rgba(66, 139, 202, 0.5);
}

.services-info .title {
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 18px;
    position: relative;
    padding-bottom: 15px;
}

.services-info .title a {
    color: #444;
    transition: 0.3s;
}

.services-info .title a:hover {
    color: #428bca;
}

.services-info .title::after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 2px;
    background: #428bca;
    bottom: 0;
    left: calc(50% - 25px);
}

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




/*** 
 ====================================================================
         About Two Section
 ====================================================================
 ***/
 .about-tow-section{
     position: relative;
     display: block;
     /* background: #f7f8f9; */
     padding: 100px 0 100px;
 }
 .about-two-left-content{
     position: relative;
     display: block;
 }
 .about-two-sec-image{
     position: relative;
     display: block;
     z-index: 5;
 }
 .about-two-sec-image:before {
     position: absolute;
     bottom: -15px;
     right: -15px;
     border-radius: 6px;
     width: 270px;
     height: 270px;
     background: #FFA62E;
     content: "";
     z-index: -1;
 }
 .about-two-sec-image-bg-1 {
     position: absolute;
     top: -22px;
     left: -22px;
     height: 233px;
     width: 233px;
     background-repeat: no-repeat;
     background-position: top left;
     z-index: -1;
 }
 .about-two-sec-image-bg-2 {
     position: absolute;
     bottom: 10px;
     right: 10px;
     height: 210px;
     width: 210px;
     background-repeat: no-repeat;
     background-position: bottom right;
 }
 .about-two-sec-image img{
     width: 100%;
     border-radius: 6px;
 }
 .about-two-right-content {
     margin-left: 50px;
     margin-top: -8px;
 }
 .about-two-title {
     padding-bottom: 25px;
 }
 .section_title-subheading {
     font-size: 14px;
     color: #FFA62E;
     font-weight: 700;
     line-height: 30px;
     text-transform: uppercase;
     margin-bottom: 10px;
     letter-spacing: 2px;
 }
 .sub-title-shape-left:before {
    position: relative;
    content: '';
    left: 0;
    bottom: 0;
    height: 2px;
    width: 30px;
    background: #FFA62E;
    display: inline-block;
    margin-right: 12px;
}
 .about-two-title h2 {
     font-size: 42px;
     font-weight: 800;
     line-height: 50px;
     margin-bottom: 21px;
 }
 .about-two-title .about-two-title-text {
     font-size: 18px;
     margin: 0;
 }
 .about-tow-experience-years {
     display: flex;
     align-items: center;
     margin-bottom: 20px;
 }
 .about-tow-experience-years-icon {
     position: relative;
     display: block;
     font-size: 75px;
     line-height: 80px;
 }
 .about-tow-experience-years-icon.style-two span{
     color: #FFA62E;
     font-size: 45px;
    width: 70px;
    height: 70px;
    background: #ededf6;
    display: inline-block;
    line-height: 70px;
    text-align: center;
    position: relative;
    top: -12px;
    margin-right: 15px;
 }
 .about-tow-experience-years-text {
     margin-left: 3px;
 }
 .about-tow-experience-years-text h2{
     font-size: 50px;
     font-weight: 700;
     color: #FFA62E;
     line-height: 54px;
 }
 .about-tow-experience-years-text p{
     font-size: 18px;
     color: #222222
     line-height: 25px;
     margin: 0;
     font-weight: 600;
 }
 .about-two-bottom-content {
     margin-bottom: 50px;
 }
 .about-two-bottom-text {
     font-size: 18px;
     margin: 0;
 }
 .about-two-bottom-content h3 {
     font-size: 16px;
     line-height: 26px;
     text-transform: uppercase;
     font-weight: 500;
     margin-top: 14px;
 }
 .about-two-bottom-content span{
     color: #FFA62E;
 }
 .about-two-btn{}
 .about-two-btn .theme-btn {
     padding-left: 65px;
     padding-right: 65px;
     text-transform: uppercase;
 }
 