@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Jost:wght@200;300;400;500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans&display=swap');
html {
    scroll-behavior: smooth;
  }

*{
    margin: 0;
    padding: 0;
}


/* This only works with JavaScript, 
if it's not present, don't show loader */
.no-js #loader { display: none;  }
.js #loader { display: block; position: absolute; left: 100px; top: 0; }
.se-pre-con {
	position: fixed;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	z-index: 9999;
	background: #1c2b32;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}
.loader-img {
    margin-bottom: 50px;
    max-width: 15%;
}
.dots span {
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius:100%;
    background: #000;
  }
  .dots > span {
    animation: dotLoader 1.2s ease-in-out both infinite
  }
  .dots span:nth-child(1){
    background-color: #bb834b;
  }
  .dots span:nth-child(2){
    animation-delay:0.3s;
    /* background-color: red; */
    background-color: #bb834b;
  }
  .dots > span:last-child {
    animation-delay:0.5s;    
    /* background-color: #BE1E11; */
    background-color: #bb834b;
  }
  @keyframes dotLoader {
    0%{transform : scale(0)}
    20%{transform : scale(0)}
    40% {transform: scale(1)}
    80% {transform: scale(0)}
    100% {transform: scale(0)}
  }

  /* Remove Animation */
  [data-aos] {
    pointer-events: auto !important;
    opacity: 1 !important;
    transform: none !important;
  }
  /* .owl-stage{
    margin: 0 auto;
} */

body{
    font-family: 'Oswald', sans-serif;
    /* background: #263a44; */
    background-color: #1c2b32;
    /* color: #bdbdbd; */
    overflow-x: hidden;
    font-size: 18px;
    color: #fff;
}
p,
a{
    font-family: 'Jost', sans-serif;
    /* font-family: 'Open Sans', sans-serif; */
    font-weight: 300;
}
p{
    text-align: justify;
}
p strong {
    color: #bb834b;
}
img{
    max-width: 100%;
}
.pr-0 {
    padding-right: 0 !important;
}
.pl-0{
    padding-left: 0 !important;
}
.btn{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-transform: capitalize;
    font-weight: normal;
    letter-spacing: .5px;
    /* font-weight: 200; */
    letter-spacing: .5px;
    position: relative;
    border: none;
    padding: 10px;
}
.btn p{
    font-family: 'Oswald', sans-serif;
    margin-bottom: 0;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
.btn:before {
    content: "";    
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    z-index: 1;
    width: 0%;
    transition: width .5s;
}
.btn-primary:before {
    background-color: #bb834b;
    border-color: #bb834b;
}
.btn-secondary:before {
    background-color: #263a44;
    border-color: #263a44;
}
.btn img{
    width: 18px !important;
    margin-left: 5px;
    transition: .5s;
}
.btn:hover:before{
    width: 100%;
    transition: width .5s;
}
.btn:hover img{
    transform: rotate(45deg);
    transition: .3s;
}

.navbar{
    height: 80px;
    transition: .3s;
}
.fixed {
    position: fixed;
    top:0; left:0;
    width: 100%; 
    background-color: #263a44;
    z-index: 9;
    transition: .5s;
}
.container-fluid {
    padding: 0 50px;
}
.navbar-brand img{
    width: 80px;
}
.navbar .nav-item a{
    color: #bb834b;
    margin-right: 20px !important;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 1.5px;
    font-size: 14px;
}
.navbar .nav-item:last-of-type a{
    margin-right: 0 !important;
}
.navbar .nav-item a.active,
.navbar .nav-item a:hover {
    color: #fff;
}
.banner {
    height: calc(100vh - 70px);
    background-size: cover;
    background-position: initial; 
    position: relative;   
}
.banner::before {
    content: ' ';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 100px;
  width: 100%;
  height: 100%;
  opacity: 0.4;
  background-image: url('../img/about.jpg');
  background-repeat: no-repeat;
  background-position: 50% 20%;
  background-size: cover;
}
.banner .hero-slider{
    height: 100%;
    width: 100%;
}
.hero-slider .owl-stage-outer {
    height: 100%;
    width: 100%;
}
.hero-slider .owl-stage {
    height: 100%;
    width: 100%;
}
.hero-slider .owl-item {
    width: 100%;
    height: 100%;
}
.hero-slider .slider {
    height: 100%;
    width: 100%;
    background-size: cover;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.hero-slider .owl-nav {
    opacity: 0;
    transition: .5s;
}
.hero-slider:hover .owl-nav {
    opacity: 1;
    transition: .5s;
}
.hero-slider .owl-nav img{
    filter: invert();
}
.hero-slider .owl-nav button{  
    background: #bb834b !important;  
    padding: 10px;
    width: 50px;
    height: 50px;
}
.hero-slider .owl-next{
    /* background: #bb834b !important; */
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0px;
}
.hero-slider .owl-prev {
    /* background: #263a44 !important; */
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0px;
}
.prHero-slider .item{
    text-align: center;
}
.prHero-slider .item img{
    max-width: 60%;
    margin: 0 auto;
}

.prHero-slider .owl-nav {
    position: absolute;
    bottom: 50px;
    right: 40px;
}

.prHero-slider .owl-nav button {
    width: 50px;
    height: 50px;
    border: 1px solid #fff !important;
    border-radius: 150px;
    margin: 10px;
}

.prHero-slider .owl-nav button img {
    filter: invert(1);
}

.banner-content{
    height: 100%;
    z-index: 1;
    position: relative;
}
.banner-content .row{
    height: 100%;
}
.banner-title {
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    color: #fff;
    font-size: 52px;
    text-transform: capitalize;
    margin-bottom: 20px;
}
.inner-section{
    padding: 80px 0;
}
.img-scroll {
    height: 600px;
    width: 100%;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
}
.title {
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
}
.title span{
    color: #bb834b;
}

.about-content {
    padding-right: 50px;
}
.about-content p strong {
    font-weight: 500;
}
.about-section .row{
    margin-right: 0px !important;
}
.about-img {
    /* background-color: #bb834b; */
    min-height: 750px;
    position: relative;
    padding: 100px;
}
.about-img::before {
    content: "";
    background: #bb834b;
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60%;
    right: 0;
    z-index: 0;
}
.about-img img{
    z-index: 1;
}
.why-block .col-md-3 {
    padding: 0;
}

.why-block .card{
    border: none;
    border-right:1px solid #3b5968;
    /* border-bottom: 6px solid #bb834b !important; */
    background-color: transparent;
    text-align: center;
}
.why-block .card-body {
    padding-bottom: 0;
}
.why-block .col-md-3:last-of-type .card {
    border-right: none;
}
.why-block .card-flex {
    margin-bottom: 30px;
    gap: 15px
}
.wh-card .card-icon {
    width: 50px;
}
.wh-card h2{
    font-weight: bold;
    margin: 0;
}
.wh-card p{
    margin-bottom: 0;
    /* background: #1c2b32; */
    background-color: #283f4a;
    padding: 10px;
    color: #fff;
    text-align: center;
}

.custom-pr-slider .card{
    border: none !important;
    background-color: #263a44;
}
.custom-pr-slider .card-body {
    padding: 20px;
    color: #fff;
}
.custom-pr-slider .card-text {
    /* font-size: 14px; */
}

.custom-pr-slider button.owl-next span, button.owl-prev span {
    background: #263a44;
    display: block;
    color: #fff;
    font-size: 25px;
    width: 35px;
    height: 35px;
    line-height: 30px;
}
.custom-pr-slider button.owl-next.disabled ,
.custom-pr-slider button.owl-prev.disabled {
    opacity: .4;
}
.custom-pr-slider .owl-next{
    position: absolute;
    top: -55px;
    right: 15px;
}
.custom-pr-slider .owl-prev {
    position: absolute;
    top: -55px;
    right: 60px;
}
.custom-pr-slider .owl-nav img{
    filter: invert(1);
}
.owl-dot-slider .owl-dots {
    margin-top: 20px;
    text-align: center;
}
.owl-dot-slider .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    background: #263a44;
    display: block;
    border-radius: 50px;
    margin: 3px;
}
.owl-dot-slider .owl-dots .owl-dot.active span{
    background-color: #FFB530;
}
.completed-projects {
    padding-top: 0 !important;
}
.tst-item .card-body {
    background-color: #263a44;
}
.tst-item p{
    font-size: 14px;
}
.tst-icon {
    width: 50px;
    margin-bottom: 10px;
}
.tst-item cite {
    /* font-size: 16px; */
    /* font-weight: 600; */
    letter-spacing: .5px;
    text-transform: capitalize;
    font-style: normal;
    font-family: 'Jost', sans-serif;
}
/* Footer Design */
.footer-bg {
    height: 125px;
    width: 100%;
    background-size: 60%;
    filter: invert(1);
    opacity: .4;
}
footer a{
    color: #fff !important;
}
/* .main-footer {
    border-top: 5px solid #bb834b;
} */
.main-footer p{
    font-size: 14px;    
}

.add-text h5{
    /* font-size: 16px; */
    font-weight: normal;
}
.add-text p{
    /* font-size: 14px; */
    margin-bottom: 0;
}
.add-text a{
    color: #fff !important;
}
.add-icon {
    width: 32px;
    flex: 0 0 32px;
    margin-right: 15px;
}
.add-block {
    margin-bottom: 30px;
}
.add-block:last-of-type {
    margin-bottom: 0;
}
.social-links {
    padding-left: 45px;
    margin: 0;
}
.social-links li{
    list-style-type: none;
    margin-right: 15px;
}
.social-links li:last-of-type{
    margin-right: 0;
}
.social-links li a img{
    width: 26px;
    filter: invert();
}
.main-footer .fw-widget:first-of-type {
    border-right: 1px solid #3a5867;
    padding-right: 50px;
    margin-right: 50px;
}
.ft-title {
    margin-bottom: 20px;
}
.ft-links {
    list-style-type: none;
    padding: 0;
}
.ft-links li {
    margin-bottom: 15px;
}
.ft-links li:last-of-type{
    margin-bottom: 0;
}
.ft-links li a{
    color: #fff;
    text-decoration: none;
    font-weight: 200;
}


.ftc-form input,
.ftc-form textarea {
    width: 100%;
    border: none;
    padding: 8px;
    border-radius: 2px;
    /* font-size: 14px; */
    margin-bottom: 15px;
}
.sticky-contact{
    position: fixed;
    top: 50%;
    right: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    transform: translateY(-50%);
    padding: 15px;
    z-index: 9;
}
.sticky-contact p{
    display: flex;
    flex-direction: column;
}
.sticky-contact span{
    display: block;
    /* font-size: 10px; */
    color: #fff;
    font-weight: 600;
}
.sticky-contact .icon {
    display: none;
}
.cta-btn::before{
    display: none;
}
.title-area {
    position: relative;
    /* margin: 0 50px; */
    /* min-height: 350px; */
    background-position: center center;
    background-size: cover;
}
.about-img-2 {
    /* background-color: #bb834b; */
    min-height: 750px;
    position: relative;
    padding: 100px;
}
.about-img-2::before {
    content: "";
    background: #bb834b;
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60%;
    left: 0;
    z-index: 0;
}
.about-img-2 img{
    z-index: 1;
}
.br-block {
    padding: 30px 15px;
    text-align: center;
    margin-bottom: 20px;
}
.br-block p {
    margin-top: 10px;
    margin-bottom: 0;
    /* font-size: 14px; */
    text-align: center;
}
.team-block {
    background: #263a44;
    border-radius: 0px;
    overflow: hidden;
    /* padding: 30px; */
}
.team-img{
    text-align: center;
    background: rgb(75,77,79);
background: linear-gradient(327deg, rgba(75,77,79,1) 0%, rgba(255,255,255,1) 82%);
padding: 30px 30px 0;
}
.team-block img {
    width: 50%;
}
.team-content {
    padding: 30px;
}
.team-content h4 {
    font-size: 22px;
    border-bottom: 1px solid #416577;
    margin-bottom: 15px;
    padding-bottom: 15px;
}
.team-content p{
    /* font-size: 14px; */
    min-height: 300px;
    margin-bottom: 0;
}
.ct-title {
    margin: 0;
    padding: 21px 4px;
    border: 1px solid #426577;
    text-align: center;
    /* font-size: 14px; */
    margin-bottom: 25px;
    text-transform: capitalize;
    letter-spacing: .8px;
}
.brand-block {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 30px;
    /* min-height: 150px; */
    margin-top: 50px;
}
.bd-text h4 {
    text-transform: capitalize;
    letter-spacing: 1px;
    margin-bottom: 15px;
    font-size: 20px;
}
.brand-block ul{
    padding-left: 15px;
    margin: 0;
    list-style-type: disc;
    display: inline-flex;
    flex-wrap: wrap;
}
.brand-block ul li{
    list-style-type: disc;
    font-family: "Jost", sans-serif;
     margin-right: 30px;
     /* font-size: 14px; */
}
.bd-icon {
    width: 100px;
    height: 100px;
    display: flex;
    flex-basis: 100px;
    flex-grow: 0;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background-color: #bb834b;
}
.bd-icon img{
    filter: invert(100);
}
.ct-add-block {
    min-height: 370px;
}
.projects-page .card {
    margin-bottom: 20px;
}

ul.list-group {    
    padding-left: 15px;
    margin-bottom: 30px;
    font-weight: normal;
}
ul.list-group li{
    font-family: 'Jost', sans-serif;
    font-weight: 300;
    margin-bottom: 10px;
}
.self-block img {
    width: 60px;
}
footer .col-md-12.text-center p{
    text-align: center;
}

.img-rounded {
    text-align: right;
}
.img-rounded img{
    max-width: 65%;
    /* margin: auto 0 auto auto; */
    margin: 0 auto;
}
.team-img {
    display: none;
}
}