/*----------------------------------------*/
/*  Google Fonts
/*----------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap');/*--------------------------------*/
/* 1. Header area
/*--------------------------------*/
.nav-top {
    display: flex;
    align-items: center;
    position: fixed;
    z-index: 101;
    padding: 0 90px;
    width: 100%;
}
.nav-top .text-right {
    text-align: right;
    align-self: center;
}

.navbar-brand {
    padding: 0;
    height: 92px;
}

.nav-top.stick {
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    background: #fff;
    box-shadow: 0px 0px 2px #ccc, -2px -2px 2px #ccc;
}

.nav-top.stick .icon-menu {
    color: #394fa4;
    text-shadow: none;
    font-weight: normal;
    cursor: pointer;
}

.nav-top.stick .navbar-brand {
    padding: 18px 0;
    height: inherit;
}

.nav-top.stick .navbar-brand>img {
    padding: 0;
}

.navbar-brand>img {
    display: block;
    background: #fff;
    padding: 28px 5px 25px 5px;
    border-radius: 0 0 3px 3px;
}

.nav-top .hamburger {
    margin-left: auto;
    color: #fff;
    cursor: pointer;
}

.nav-top span {
    color: #ffffff;
    font-size: 38px;
    font-weight: 900;
    cursor: pointer;
    text-shadow: 1px 1px 1px #111;
}

.nav-drill {
    transform: translateX(100%);
}

.nav-is-toggled .nav-drill {
    transform: translateX(0);
    right: 0px;
    opacity: 1;
    visibility: visible;
}
.layer-drop {
    position: fixed;
    right: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    opacity: 0;
    background: rgba(10,24,40,0.80);
    visibility: hidden;
    z-index: 999999;
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}
.nav-is-toggled .layer-drop{
    opacity: 1;
    visibility: visible;
}

.nav-drill {
    position: fixed;
    right: -420px;
    top: 0px;
    width: 45%;
    background: #384fa4;
    max-width: 100%;
    height: 100%;
    overflow-x: hidden;
    z-index: 9999999;
    padding: 7px 15px 0 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

.nav-items {
    flex: 0 0 100%;
    padding-left: 30px;
}

.nav-items img {
    border-radius: 5px;
    width: 500px;
    margin-left: 20px;
}

.nav-items span.icon-close {
    float: right;
    cursor: pointer;
    font-size: 39px;
    margin: 14px 0;
    color: #fff;
}

.nav-items span.icon-close:before {
    content: "\f00d";
    font-family: 'fontawesome';
}

.nav-link {
    display: block;
    padding: 0.875em 1em;
    color: #fff;
    font-size: 18px;
    line-height: 1.5em;
    font-weight: 600;
}
.nav-link .caret {
    float: right;
    color: transparent;
}
.dropdown-menu>li>a::before {
    content: "\f054";
    font-family: 'FontAwesome';
    margin-right: 14px;
    font-size: 15px;
}

.dropdown-toggle::after {
    content: "\2b";
    float: right;
    font-size: 25px;
    font-weight: 900;
}

.dropdown-toggle:active::after,
.dropdown-toggle:focus::after {
    content: "\f068";
    font-family: fontawesome;
    font-size: 18px;
}

.nav-link:hover, .nav-link:active, .nav-link:focus {
    background: #fff;
}

.dropdown-menu>li>a:hover, .dropdown-menu>li>a:focus {
    color: #b5c3f7;
    background-color: transparent;
}
.dropdown-menu {
    position: relative;
    float: none;
    box-shadow: none;
    background: none;
    border: none;
    padding-left: 18px;
}
.dropdown-menu>li>a {
    padding: 12px 20px;
    color: #fff;
    font-weight: 500;
    font-size: 16px;
}

/*----------------------------------------*/
/*  1.  Theme default CSS
/*----------------------------------------*/
html,
body {
    height: 100%;
    font-family: 'Rubik', sans-serif;
}

.floatleft {
    float: left;
}

.floatright {
    float: right;
}

.alignleft {
    float: left;
    margin-right: 15px;
    margin-bottom: 15px;
}

.alignright {
    float: right;
    margin-left: 15px;
    margin-bottom: 15px;
}

.aligncenter {
    display: block;
    margin: 0 auto 15px;
}

a:focus {
    outline: 0px solid;
}

img {
    max-width: 100%;
    height: auto;
}

.fix {
    overflow: hidden;
}

p {
    margin: 0 0 15px;
    color: #888;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 15px;
    color: #384fa4;
    font-weight: 700;
    font-family: 'Rubik', sans-serif;
}

h1 {
    font-size: 48px;
    line-height: 50px;

}

h2 {
    font-size: 38px;
    line-height: 42px;

}

h3 {
    font-size: 30px;
    line-height: 38px;

}

h4 {
    font-size: 24px;
    line-height: 34px;

}

h5 {
    font-size: 20px;
    line-height: 30px;

}

h6 {
    font-size: 16px;
    line-height: 26px;

}

a {
    transition: all 0.3s ease 0s;
    text-decoration: none;
}

a:active,
a:hover {
    outline: 0 none;
}

a:hover,
a:focus {
    color: #384fa4;
    text-decoration: none;
}

body {
    background: #fff none repeat scroll 0 0;
    color: #888;
    font-family: 'Rubik', sans-serif;
    font-size: 15px;
    text-align: left;
    overflow-x: hidden;
    line-height: 26px;
}

#scrollUp {
    background: #384fa4 none repeat scroll 0 0;
    border-radius: 2px;
    bottom: 30px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    color: #fff;
    font-size: 30px;
    height: 54px;
    line-height: 50px;
    right: 30px;
    text-align: center;
    transition: all 0.3s ease 0s;
    border: 1px solid #384fa4;
    width: 54px;
}

#scrollUp:hover {
    border: 1px solid #384fa4;
    background: transparent;
    color: #384fa4;
    transition: all 0.3s ease 0s;
}

.clear {
    clear: both;
}

ul {
    list-style: outside none none;
    margin: 0;
    padding: 0;
}

input,
select,
textarea,
input[type="text"],
input[type="date"],
input[type="url"],
input[type="email"],
input[type="password"],
input[type="tel"],
button,
button[type="submit"] {
    -moz-appearance: none;
    box-shadow: none !important;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
}

.navbar-collapse {
    padding-left: 0px;
}

::-moz-selection {
    background: #384fa4;
    text-shadow: none;
    color: #fff;
}

::selection {
    background: #384fa4;
    text-shadow: none;
    color: #fff;
}

.color {
    color: #384fa4;
    font-weight: 700;
}

.browserupgrade {
    margin: 0.2em 0;
    background: #ccc;
    color: #000;
    padding: 0.2em 0;
}

.area-padding {
    padding: 40px 0px;
}

.area-padding-2 {
    padding: 55px 0px 35px;
}

.mar-row {
    margin-top: 50px;
}

.load-more-btn {
    text-transform: uppercase;
    background: #384fa4;
    display: inline-block;
    padding: 15px 30px;
    color: #fff;
    font-weight: 600;
    margin-top: 30px;
    border-radius: 3px;
    width: 200px;
    transition: 0.4s;
    border: 2px solid #384fa4;
}

.load-more-btn:hover {
    background: #fff;
    border: 2px solid #384fa4;
    color: #384fa4;
    transition: 0.4s;
}

.bg-color {
    background: #fcfafa;
}

:focus {
    outline: -webkit-focus-ring-color auto 0px;
}

.parallax-bg {
    position: relative;
}

.parallax-bg:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #394fa4;
    opacity: .8;
    content: "";
}

.left-headline {
    padding-bottom: 15px;
}

.left-headline h3 {
    font-size: 26px;
    line-height: 34px;
    position: relative;
    margin-bottom: 40px;
}

.left-headline h3::after {
    border: 1px solid #384fa4;
    bottom: -20px;
    content: "";
    left: 0;
    margin: 0 auto;
    position: absolute;
    width: 70px;
    right: auto;
}

.center-headline h2 {
    max-width: 810px;
    font-size: 34px;
    line-height: 45px;
    margin: 30px auto 20px;
    text-align: center;
}

/*===============================
============ Products ============
==================================*/

.products-headline {
    margin-bottom: 30px;
    overflow: hidden;
}

.products-headline h3 {
    font-size: 26px;
    width: 50%;
    line-height: 34px;
    font-weight: 700;
    text-transform: inherit;
    float: left;
    padding-right: 30px;
    text-align: right;
}

.products-headline p {
    width: 50%;
    float: left;
    padding-left: 30px;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0.70px;
    color: #666;
}

.left-headline p {
    color: #666;
    letter-spacing: 0.70px;
    font-weight: 500;
    font-size: 16px;
    line-height: 28px;
}

.products-headline::after {
    position: absolute;
    left: 0;
    top: 5px;
    background: #384fa4 !important;
    content: "";
    width: 3px;
    height: 90px;
    right: 0;
    margin: 0 auto;
}

.sub-headline {
    margin-bottom: 30px;
}

.margin-headline h3 {
    margin: 0px auto 20px;
}
.product-cards{
    display: flex;
    gap: 15px;
}

/*----------------------------------------*/
/* 3. Slider Area

/*----------------------------------------*/
.owl-carousel.owl-loaded {
    max-height: 620px;
}
.owl-stage-outer{
    max-height: 620px;
}
.intro-content {
    position: relative;
    z-index: 1;
}

.intro-content::after {
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    background: linear-gradient(90deg, #384fa452, #ffffff00);
    width: 100%;
    z-index: 1;
}

.slider-content {
    position: absolute;
    right: 0;
    text-align: left;
    top: 50%;
    z-index: 3;
    left: 0;
    margin: 0 auto;
    margin-top: -35px;
}

.layer-1 h1 {
    line-height: 61px;
    font-size: 51px;
    border-bottom: 1px solid #d5cfcf;
    margin: 0px 0px 30px;
    color: #fff;
    max-width: 398px;
    padding-bottom: 2px;
    font-weight: 900;
}
.layer-2 p {
    color: #f6f6f6;
    max-width: 410px;
}

.ready-btn {
    border: 1px solid #384fa4;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    padding: 15px 15px;
    text-align: center;
    text-transform: uppercase;
    transition: all 0.4s ease 0s;
    z-index: 222;
    background: #384fa4;
    width: 160px;
    border-radius: 2px;
}

.ready-btn:hover {
    color: #394fa4;
    background: #ffffff;
    border: 1px solid #ffffff;
    text-decoration: none;
}

.layer-1 .color {
    color: #384fa4;
    font-weight: 900;
}

.intro-carousel.owl-carousel.owl-theme .owl-controls .owl-nav div.owl-prev,
.intro-carousel.owl-carousel.owl-theme .owl-controls .owl-nav div.owl-next {
    color: #fff;
    font-size: 22px;
    margin-top: -20px;
    position: absolute;
    top: 50%;
    ;
    text-align: center;
    line-height: 52px;
    opacity: 0;
    border: 1px solid #384fa4;
    background: #384fa4;
    width: 54px;
    height: 54px;
}

.intro-carousel.owl-carousel.owl-theme .owl-controls .owl-nav div.owl-prev {
    left: 10%;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -o-transition: 0.4s;
    -ms-transition: 0.4s;
}

.intro-carousel.owl-carousel.owl-theme .owl-controls .owl-nav div.owl-next {
    right: 10%;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -o-transition: 0.4s;
    -ms-transition: 0.4s;
}

.intro-carousel.owl-carousel.owl-theme:hover .owl-controls .owl-nav div.owl-next {
    right: 2%;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -o-transition: 0.4s;
    -ms-transition: 0.4s;
    opacity: 1;
}

.intro-carousel.owl-carousel.owl-theme:hover .owl-controls .owl-nav div.owl-prev {
    left: 2%;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -o-transition: 0.4s;
    -ms-transition: 0.4s;
    opacity: 1;
}

.intro-carousel.owl-carousel.owl-theme:hover .owl-controls .owl-nav div.owl-next:hover,
.intro-carousel.owl-carousel.owl-theme:hover .owl-controls .owl-nav div.owl-prev:hover {
    color: #fff;
    background: #394fa4;
    border: 1px solid #394fa4;
}

.intro-carousel .owl-item .layer-1 {
    transform: translateY(100%);
    opacity: 0;
    transition: all 1s ease-in-out 0.3s;
}

.intro-carousel .owl-item .layer-2 {
    transform: translateY(100%);
    opacity: 0;
    transition: all 1s ease-in-out 1s;
}

.intro-carousel .owl-item .layer-3 {
    transform: translateY(100%);
    opacity: 0;
    transition: all 1s ease-in-out 1.5s;
}

.intro-carousel .owl-item.active .layer-1,
.intro-carousel .owl-item.active .layer-2,
.intro-carousel .owl-item.active .layer-3 {
    transform: translateY(0);
    opacity: 1;
}

.intro-carousel .owl-item.active .slider-images img {
    transform: scale(1);
    transition: 10s;
    max-height: 620px;
    object-fit: cover;
}

/*----------------------------------------*/
/*  5. About area
/*----------------------------------------*/
.about-content {
    background: #fff;
    padding: 40px 40px 60px 40px;
    box-shadow: 0 5px 25px rgb(0 0 0 / 31%);
}

.fa-check:before {
    content: "\f00c";
    font-family: fontawesome;
}

.about-content h3 {
    line-height: 34px;
    text-transform: unset;
    font-size: 30px;
    position: relative;
    font-weight: 700;
}

.about-content p {
    font-size: 15px;
    letter-spacing: 0.40px;
    line-height: 24px;
    margin-bottom: 5px;
}

.about-details {
    overflow: hidden;
    display: block;
    padding-top: 10px;
}
.about-inner li {
    border: 1px solid #f7f7f7;
    padding: 15px 20px;
    background: #f7f7f7;
    color: inherit;
    margin-bottom: 6px;
}
.about-inner li:hover {
    transform: translate3d(0, -3px, -3px);
    transition: 0.5s;
}
.about-inner li i {
    font-size: 13px;
    padding: 8px 9.5px;
    border-radius: 50%;
    color: #fff;
    background: #384fa4;
    margin-right: 10px;
}
.about-list li {
    color: #777;
    padding-left: 25px;
    margin: 10px 0px;
    position: relative;
    font-size: 15px;
    font-weight: 500;
}

.about-list li::after {
    position: absolute;
    content: "";
    left: 5px;
    top: 10px;
    background: #384fa4;
    width: 5px;
    height: 5px;
}

.about-image {
    margin-right: 42px;
    position: relative;
    text-align: right;
}
.ab-first-img{
    position: relative;
}
.ab-first-img::before {
	position: absolute;
	top: 0;
	left: -75%;
	z-index: 2;
	display: block;
	content: '';
	width: 50%;
	height: 100%;
	background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
	background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
	-webkit-transform: skewX(-25deg);
	transform: skewX(-25deg);
}
.ab-first-img:hover::before {
	-webkit-animation: shine .75s;
	animation: shine .75s;
}
@-webkit-keyframes shine {
	100% {
		left: 125%;
	}
}
@keyframes shine {
	100% {
		left: 125%;
	}
}

.ab-first-img img {
    height: 460px;
    object-fit: cover;
    width: 90%;
    border-radius: 10px;
    box-shadow: -120px 0 0 -59px #374ea2;
}

.ab-second-img img {
    position: absolute;
    right: -54px;
    bottom: 26px;
    box-shadow: rgb(6 6 6 / 24%) 0px 7px 29px 0px;
    width: 47%;
    height: auto;
}

.about-link{
    float: right;
    margin-top: 15px;
}
.about-btn {
    background: #384fa4;
    border: 1px solid #384fa4;
    color: #fff;
    font-size: 17px;
    padding: 8px 20px;
    border-radius: 2px;
    transition: 0.4s;
    text-transform: capitalize;
}
.about-btn:hover {
    background: transparent;
    color: #384fa4;
    transition: 0.4s;
}

/*----------------------------------------*/
/*  6. products Area
/*----------------------------------------*/
.products-area {
    background: #384fa4;
    color: #fff;
    padding-bottom: 100px;
}
.products-area h2,
.products-area p{
    color: #fff;
}
.products-area .card {
    width: 98%;
    height: 470px;
    background-color: white;
    position: relative;
    z-index: 1;
}
  
.products-area .top img {
    height: 250px;
    object-fit: cover;
    width: 100%;
}
  
  .products-area .bottom h2 {
    padding: 10px;
    margin-left: 10%;
    margin-top: -36px;
    background: #fff;
    font-size: 20px;
    width: 80%;
    position: absolute;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

  
.intro {
    font-size: 18px;
    padding: 0 22px;
    color: #666 !important;
    padding-top: 45px;
}
  
  .products-area.intro {
    width: 85%;
  }
  
  .products-areaa:hover {
    color: #384fa4;
    transition: .3s;
  }
  .products-area .bottom{
    text-align: center;
  }
  .products-area .card .read-more {
    text-align: right;
    margin: 0 12px 13px;
}
.products-area .card .read-more a {
    text-decoration: underline;
}
.products-area .card i::before {
    font-family: 'fontawesome';
    content: "\f061";
    font-style: initial;
}

.product-section .products-area .card {
    width: 364px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    margin-bottom: 40px;
}
.product-section .products-area h2 {
    color: #384fa4;
}
.product-section .products-area p {
    color: #888;
}
.single-service {
    position: relative;
    border: 1px solid #ddd;
    padding: 30px 15px;
    margin-bottom: 30px;
    transition: 0.4s;
}

.products-area-2 .single-service {
    padding: 40px 20px;
}

.single-service:hover {
    border: 1px solid #394fa4;
    background: #394fa4;
    transition: 0.4s;
}

.products-carousel .single-service {
    margin-bottom: 0px;
}

.service-content {
    text-align: center;
}

.service-icon {
    display: block;
    text-align: center;
    margin-bottom: 30px;
}

.service-icon a {
    font-size: 80px;
    color: #001033;
    line-height: 80px;
}

.service-text h4 {
    font-weight: 600;
    font-size: 20px;
}

.service-text p {
    margin-bottom: 0px;
}

.single-service h4 {
    font-size: 20px;
    line-height: 28px;
}

.single-service h4 a:hover {
    color: #384fa4;
}

/*--------------------------------*/
/*  8.Project Area
/*--------------------------------*/
.projects-area{
    background: #ededed;
}
.projects-grid.projects-content {
    margin-top: -15px;
    height: 445.953px;
}
.vbox-container.projects-grid img {
    max-width: initial !important;
}
.projects-single {
    width: 50%;
    float: left;
}
.all-padding{
    padding: 15px;
}
.single-awesome-project {
  overflow: hidden;
}
.awesome-img{
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
.awesome-img > a {
  display: block;
  position: relative;
}
.awesome-img img {
    width: 60%;
    height: 380px;
    object-fit: cover;
}
.awesome-img .caption {
    margin-top: -51px;
    position: absolute;
    background: #384fa4;
    color: #fff;
    padding: 6px 32px;
    border-radius: 2px;
}


.add-actions {
    display: block;
    position: absolute;
    transition: all 0.4s ease 0s;
    z-index: 9;
    padding: 30px;
	left: 39%;
    top: 19%;
    background: #fff;
    width: 60%;
    height: auto;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}
.projects-dec {
  display: inline-block;
}
.projects-dec h5 {
    color: #384fa4;
    font-size: 18px;
    text-decoration: none;
}
.projects-dec p {
	font-size: 15px;
}
.projects-dec span {
    margin-bottom: 5px;
    color: #384fa4;
    display: block;
}
.awesome-menu {
  padding-top: 10px;
}
.single-awesome-project:hover .add-actions{
	top:12%;
	transition: all 0.5s ease 0s;
}
.know-more-btn{
    color: #444 !important;
    font-size: 16px;
    font-weight: 700;
}
.know-more-btn:hover,
.projects-dec h5:hover{
	color: #384fa4 !important;
}
.view-link {
    text-align: center;
    margin-top: 55px;
}
.view-link a {
    color: #384fa4;
    border: 1px solid;
    padding: 13px 20px;
    border-radius: 6px;
    background: #fff;
}
.view-link a:hover {
    color: #fff;
    border: 1px solid #fff;
    background: transparent;
}/*----------------------------------------*/
/*  9. Client Area
/*----------------------------------------*/
.client-area {
    display: block;
    overflow: hidden;
}

.single-brand-item {
    width: 41%;
    margin-bottom: 14px;
}

.single-brand-item a {
    display: block;
    text-align: center;
    padding: 0px 35px;
}

.brand-items {
    display: flex;
}
.client-section{
    background-image: url('img/brand/client-bg.jpg');
}
.client-section .single-brand-item a {
    display: block;
    text-align: center;
    padding: 0px 35px;
    width: 200px;
}
.client-section .single-brand-item {
    width: 100%;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
}

.client-list li {
    color: #777;
    padding-left: 25px;
    margin: 10px 0px;
    position: relative;
    font-size: 15px;
    font-weight: 500;
}

.client-list li::after {
    position: absolute;
    content: "";
    left: 5px;
    top: 10px;
    background: #384fa4;
    width: 5px;
    height: 5px;
}

/*----------------------------------------*/
/*  13. Footer Area
/*----------------------------------------*/
.footer {
    background: #111;
}

.footer-area {
    padding: 30px 0;
}

.footer-logo {
    margin-bottom: 15px;
}

.footer-head p {
    color: #ddd;
}

.footer-head h4 {
    color: #ffffff;
    font-size: 22px;
    margin-bottom: 20px;
    text-transform: capitalize;
    font-weight: 900;
}
.footer-icons.icons2{
   display: none;
}
.footer-icons ul li {
    display: inline-block;
}

.footer-icons ul li a {
    color: #ddd;
    display: block;
    font-size: 20px;
    line-height: 38px;
    text-align: center;
    margin-right: 5px;
    width: 40px;
    height: 40px;
    border: 1px solid #ddd;
    border-radius: 50%;
}

.footer-icons ul li a:hover {
    color: #fff;
    background: #384fa4;
    border: 1px solid #384fa4;
}

.footer-icons {
    margin-top: 20px;
}

.suscribe-input input {
    background: transparent;
    border: medium none;
    color: #ddd;
    font-size: 15px;
    line-height: 24px;
    padding: 11px 15px;
    height: 54px;
    border-radius: 1px;
    width: 100%;
    border: 1px solid #ccc;
}

.suscribe-input button {
    background: #384fa4;
    border: 1px solid #384fa4;
    color: #fff;
    font-size: 17px;
    padding: 12px 20px;
    border-radius: 2px;
    transition: 0.4s;
    margin-top: 15px;
    text-transform: capitalize;
    font-weight: 600;
}

.suscribe-input button:hover {
    background: transparent;
    color: #384fa4;
    transition: 0.4s;
}

.footer-contacts p span {
    color: #fff;
    font-weight: 700;
}

.footer-content {
    display: block;
    overflow: hidden;
}

.footer-list li a {
    color: #ddd;
    padding: 3px 0px 6px 20px;
    display: block;
    position: relative;
    font-weight: 500;
}

.footer-list li:first-child a {
    padding-top: 0px;
}

.footer-list li:last-child a {
    padding-bottom: 0px;
}

.footer-list li a::after {
    position: absolute;
    content: "";
    right: auto;
    top: 12px;
    width: 5px;
    height: 5px;
    left: 0;
    background: #ddd;
}

.footer-list li a:hover {
    color: #384fa4;
}

.footer-area-bottom {
    background: #000;
    padding: 25px 0;
}

.copyright-text a:hover {
    text-decoration: underline;
    color: #384fa4;
}

.copyright-text a {
    color: #ddd;
}

.copyright>p {
    margin-bottom: 0;
    color: #ddd;
}

.copyright a {
    color: #384fa4;
}


.projects-2 .projects-single {
    width: 100%;
    float: none;
    padding: 0px 15px;
}

.projects-2 .add-actions {
    display: block;
    position: absolute;
    transition: all 0.4s ease 0s;
    z-index: 9;
    padding: 30px;
    left: 0px;
    top: 0px;
    background: #fff;
    width: 100%;
    height: 100%;
    opacity: 0;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #f5f5f5;
}

.single-awesome-projects:hover .add-actions {
    height: 60%;
    transition: all 0.5s ease 0s;
    opacity: 1;
    bottom: 0;
    top: unset;
}
.more-projects{
    margin: auto;
    text-align: center;
    margin-top: 165px;
}
.more-projects i {
    background: #384fa4;
    padding: 18px 30px;
    border-radius: 50%;
    color: #fff;
    transition: 0.3s;
    border: 2px solid #394fa4;
    font-size: 45px;
}
.more-projects i::before{
    font-family: 'fontawesome';
    content: "\2b";
}
.more-projects i:hover {
    background: #fff;
    color: #384fa4;
}
.more-projects p {
    margin-top: 23px;
    font-size: 17px;
}

/*----------------------------------------*/
/*  16. products  Area
/*----------------------------------------*/
.products-img {
    position: relative;
}

.products-img img {
    height: 250px;
    object-fit: cover;
}

.products-img>a {
    display: block;
}

.products-img>a::after {
    background: rgba(6, 34, 65, 0.70) none repeat scroll 0 0;
    bottom: 0;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    transition: all 0.5s ease 0s;
    width: 100%;
    opacity: 0;
}

.single-products-member:hover .products-img a:after {
    opacity: 1;
}

.products-content {
    padding: 10px;
    position: relative;
    border: 1px solid #f5f5f5;
    text-align: center;
    border-top: none;
    z-index: 1;
}

.products-content::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0px;
    background: #394fa4;
    width: 0%;
    height: 100%;
    opacity: 0;
    transition: 0.4s;
    z-index: -1;
}

.products-content>h4 {
    color: #444;
    margin-bottom: 5px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 18px;
}

.products-content>p {
    color: #666;
    margin-bottom: 5px;
    font-size: 15px;
    font-weight: 700;
}

.single-products-member:hover .products-content::before {
    opacity: 1;
    transition: 0.4s;
    width: 100%;
}

.single-products-member:hover .products-content>h4,
.single-products-member:hover .products-content>p {
    color: #fff;
}

.single-products-member {
    margin-bottom: 30px;
}

/*----------------------------------------*/
/*  18. Breadcumbs Area
/*----------------------------------------*/
.page-area {
    position: relative;
}

.page-area {
    background: url(img/background/b.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
}

.breadcumb-overlay {
    position: absolute;
    background: rgb(255 255 255 / 60%) none repeat scroll 0 0;
    top: 0;
    width: 100%;
    left: 0;
    height: 100%;
}

.breadcrumb {
    padding-top: 15%;
    background-color: transparent;
    margin-bottom: 0;
    overflow: hidden;
}

.breadcrumb-bg {
    float: right;
    padding: 14px 0px;
}

.bread-inner {
    padding: 30px 0px;
}

.breadcrumb .section-headline h2 {
    font-size: 36px;
    letter-spacing: 1px;
    line-height: 54px;
    text-transform: uppercase;
    position: relative;
    font-weight: 800;
    color: #384fa4;
    margin-bottom: 0px;
}

.breadcrumb .section-headline {
    padding-bottom: 0px;
    display: inline-block;
}

.breadcrumb .section-headline h2::after {
    display: none;
}

.breadcrumb ul li {
    display: inline-block;
    color: #444;
    padding: 0px 10px 0px 20px;
    position: relative;
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 700;
}

.breadcrumb ul li.home-bread {
    padding-left: 0px;
}

.breadcrumb ul li.home-bread::after {
    position: absolute;
    content: "\f105";
    font-family: fontAwesome;
    right: -10px;
    top: 0;
}

.breadcrumb .section-headline::after {
    display: none;
}

/*--------------------------------*/
/* 19. Error page
/*--------------------------------*/
.error-easy-text {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 30px;
    color: #001033;
}

.high-text {
    font-size: 230px;
    line-height: 200px;
    margin-bottom: 40px;
    color: #001033;
}

.error-bot {
    font-size: 22px;
    color: #666;
}

.error-btn {
    background: #384fa4;
    border: 1px solid #384fa4;
    color: #fff;
    font-size: 17px;
    padding: 14px 20px;
    transition: 0.4s;
    text-transform: capitalize;
    margin-top: 20px;
    display: inline-block;
    font-weight: 600;
    border-radius: 2px;
    transition: 0.4s;
}

.error-btn:hover {
    background: #394fa4;
    border: 1px solid #394fa4;
    color: #fff;
    transition: 0.4s;
}

.high-text span {
    width: 200px;
    height: 200px;
}

/*----------------------------------------*/
/*  20.	Contact Us page
/*----------------------------------------*/
.map-area-top {
    padding-bottom: 0px;
}

.contact-details {
    display: block;
    overflow: hidden;
    padding: 40px;
    background: #394fa4;
    border-radius: 4px;
    margin-right: 50px;
}

.contact-icon {
    margin-bottom: 30px;
}

.single-contact h5 {
    color: #fff;
    text-transform: capitalize;
    margin-bottom: 25px;
}

.single-contact a {
    display: block;
    margin-bottom: 20px;
}

.last-item {
    margin-bottom: 0px;
    padding-bottom: 0px;
}

.single-contact a i {
    float: left;
    color: #fff;
    font-size: 18px;
    padding-right: 20px;
    line-height: 24px;
}

.contact-head {
    background: #f4f4f4;
    padding: 50px 30px;
}

.contact-head h4 {
    font-size: 28px;
}

.contact-head p {
    font-size: 17px;
}

.single-contact span {
    color: #ddd;
}

.projects-share h5 {
    display: inline-block;
    font-size: 18px;
}

.projects-social {
    display: inline-block;
}

.projects-social li {
    display: inline-block;
    margin: 10px;
}

.projects-social li a {
    color: #444;
    font-size: 18px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"]{
    border: 1px solid #ccc;
    border-radius: 0;
    height: 50px;
    margin-bottom: 15px;
    padding-left: 20px;
    width: 100%;
}

.form-warning p{
    color: #394fa4;
    font-weight: 600;
}

.contact-form textarea#message {
    border: 1px solid #ccc;
    border-radius: 0px;
    height: 220px;
    padding: 20px;
    width: 100%;
}

.contact-page .contact-btn {
    background: #384fa4;
    border: 1px solid #384fa4;
    color: #fff;
    display: inline-block;
    font-size: 20px;
    margin-top: 5px;
    padding: 13px 40px;
    transition: 0.4s;
    border-radius: 3px;
    width: auto;
    float: left;
    text-transform: capitalize;
    font-weight: 600;
}

.contact-page .contact-btn:hover {
    background: #394fa4 none repeat scroll 0 0;
    border: 1px solid #394fa4;
    color: #fff;
    transition: 0.4s;
}
.talk-to-us {
    float: right;
    position: fixed;
    bottom: 10px;
    z-index: 999;
    right: 5px;
}
#g-recaptcha-response {
    display: block !important;
    position: absolute;
    margin: -130px 0 0 0 !important;
    width: 302px !important;
    height: 76px !important;
    z-index: -999999;
    opacity: 0;
}

/*--------------------------------*/
/* 23.Project page area
/*--------------------------------*/
.projects-page-area.projects-2 .projects-single {
    width: 50%;
    float: left;
    padding: 15px;
}
.all-projects .add-actions {
    background: #0f0f0fb0;
    border: none;
    height: 40% !important;
    opacity: 1;
    top: 60%;
    z-index: 0;
}
.all-projects .projects-dec h5 {
    color: #ffffff;
    font-weight: 600;
}
.all-projects  .projects-dec p {
    color: #fff;
}
.all-projects .single-awesome-projects:hover .add-actions {
    background: #111111f0;
}

.projects-2 .awesome-img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.projects-menu li {
    width: 140px;
    display: inline-block;
    margin: 0px 5px;
}

.projects-menu li a {
    color: #444;
    display: block;
    font-size: 18px;
    padding: 15px 10px;
    transition: all 0.3s ease 0s;
    font-weight: 800;
    letter-spacing: 1px;
    background: #f5f5f5;
}

.projects-menu li a.active {
    background: #384fa4;
    color: #fff;
    text-decoration: none;
}

.projects-menu {
    margin: 0px auto 30px;
    overflow: hidden;
}

.projects-menu li a:hover {
    text-decoration: none;
    background: #fff;
    color: #384fa4;
    border: 1px solid #384fa4;
}

.projects-page-area.projects-3 .projects-single {
    width: 33.33%;
    float: left;
    padding: 15px;
}

.projects-page-area.projects-4 .projects-single {
    width: 25%;
    float: left;
    padding: 15px;
}

.projects-details {
    padding: 30px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    margin-left: 30px;
}

.projects-details p {
    margin-bottom: 0px;
}

.projects-history {
    border: 1px solid #f5f5f5;
    padding: 30px 30px;
}

.projects-name ul li {
    color: #444;
    font-weight: 600;
    font-size: 16px;
    line-height: 32px;
    margin: 10px 0px;
}

.projects-name span {
    padding-right: 15px;
}

.projects-name span {
    padding-right: 15px;
    min-width: 110px;
    display: inline-block;
}

.projects-icon i {
    font-size: 30px;
    float: left;
    margin-right: 15px;
}

.single-projects-inner {
    margin-top: 30px;
    border: 1px solid #f5f5f5;
    padding: 30px 20px 10px;
}

.projects-wrapper {
    margin-top: -30px;
}

.projects-text h4 {
    font-weight: 500;
}

.marker-list li {
    color: #777;
    padding-left: 30px;
    margin: 10px 0px;
    position: relative;
    font-size: 15px;
    font-weight: 500;
}

.marker-list li::after {
    position: absolute;
    content: "";
    left: 5px;
    top: 10px;
    background: #384fa4;
    width: 5px;
    height: 5px;
}

/*----------------------------------------*/
/* 24. products Details
/*----------------------------------------*/
.single-page-head {
    margin-bottom: 30px;
}

.single-products-page p {
    color: #666;
    margin-bottom: 0px;
}
.product-images {
    display: flex;
}
.product-images img {
    height: 300px;
    width: 450px;
    object-fit: cover;
    padding-right: 15px;
    margin-bottom: 20px;
}
.product-images .caption {
    margin-top: -70px;
    position: absolute;
    background: #384fa4;
    color: #fff;
    padding: 6px 32px;
    border-radius: 2px;
}
.product-images .caption p {
    color: aqua;
    font-size: 12px;
}
.left-contact h4 {
    font-size: 24px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.left-menu {
    border: 1px solid #d9d9d9;
    padding: 20px 20px;
}

.left-menu li {
    display: block;
    margin: 2px 0px
}

.build-img .page-img {
    padding-bottom: 0;
}

.left-menu ul li.active a {
    color: #384fa4;
    position: relative;
}

.left-menu ul li a:hover {
    color: #384fa4;
}

.left-menu ul li a {
    color: #444;
    display: block;
    font-size: 16px;
    font-weight: 600;
    padding: 13px 0px;
    position: relative;
    text-decoration: none;
    text-transform: capitalize;
}

.left-menu ul li a:hover::after,
.left-menu ul li.active a::after {
    position: absolute;
    left: -21px;
    top: 0px;
    background: #384fa4;
    content: "";
    width: 2px;
    height: 100%;
}

.down-btn i {
    font-size: 24px;
    float: right;
}

.down-btn {
    border: 1px solid #f5f5f5;
    color: #444;
    cursor: pointer;
    display: inline-block;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 15px;
    padding: 12px 15px;
    text-align: left;
    /* text-transform: uppercase; */
    transition: all 0.4s ease 0s;
    z-index: 222;
    background: #f5f5f5;
    width: 100%;
    position: relative;
    border-radius: 2px;
}

.down-btn.apli {
    margin-bottom: 0px;
}

.down-btn:hover {
    color: #fff;
    background: #384fa4;
    border: 1px solid #384fa4;
}

.single-well {
    margin-bottom: 40px;
}
.single-well p{
    margin-bottom: 14px;
}
.single-well span {
    color: #384fa4;
    font-weight: 600;
}

.page-content h3 {
    font-weight: 600;
    padding: 15px 0 0;
}

.single-page {
    overflow: hidden;
}

.single-well h3 {
    margin-bottom: 15px;
}

.single-well.last-part p {
    margin-bottom: 0px;
}

.service-list li {
    display: block;
    position: relative;
    padding-left: 30px;
    color: #444;
}

.service-list li::before {
    position: absolute;
    left: 0;
    content: "\f00c";
    font-family: fontawesome;
    top: 0;
    color: #384fa4;
}

.single-page-head .service-btn {
    width: 100%;
    margin: 20px 0px 0px 0px;
}

.single-products-page .marker-list li {
    color: #444;
}

.mar-row {
    margin-top: 50px;
}

.feature-service i {
    font-size: 24px;
    color: #fff;
    text-align: center;
    border-radius: 2px;
    float: left;
    margin-right: 15px;
    width: 44px;
    height: 44px;
    background: #384fa4;
    border-radius: 2px;
    line-height: 42px;
}

.feature-service h5 {
    font-size: 17px;
    font-weight: 600;
    max-width: 260px;
    line-height: 25px;
}

.service-feature-inner {
    margin-top: 30px;
}

.clients-support {
    position: relative;
    width: 100%;
    height: auto;
    border: 1px solid #f5f5f5;
}

.support-text {
    position: relative;
    z-index: 1;
}

.support-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 40px 30px;
    background: rgba(26, 19, 100, 0.90) none repeat scroll 0 0;
    transition: 0.4s;
}

.support-text h4 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 20px;
}

.support-text a {
    margin-bottom: 15px;
    display: block;
    font-size: 22px;
    color: #fff;
    font-weight: 500;
}

.support-text p {
    font-size: 16px;
    line-height: 26px;
    color: #ddd;
}

.support-text a i {
    display: inline-block;
    font-size: 30px;
    line-height: 23px;
    padding-right: 15px;
}

.support-img {
    overflow: hidden;
}

.support-img img {
    transform: scale(1.1);
    transition: 0.4s;
}

/*--------------------------------*/
/* .End CSS
/*--------------------------------*/
/*