:root {
    --heading-color: #385f99;

}

.footer h4 {
    color: var(--heading-color);
    font-size: 20px;
    font-weight: bold;
    position: relative;
    padding-bottom: 12px;
}

.footer a{
    color: #6a6a6a;
}

.main-content{
    padding-top: 59px;
}

.clientsImg > div {
    height: 150px;
    background-color: #fff;
}

/*** Project ***/
.project-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.project-item .project-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .5);
    opacity: 0;
    padding-top: 60px;
    transition: .5s;
}

.project-item:hover .project-overlay {
    opacity: 1;
    padding-top: 0;
}

.project-item .project-overlay a{
    padding: 0px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-item .project-overlay a{
    font-size: 20px;
}

.project-carousel .owl-nav {
    position: absolute;
    top: -100px;
    right: 0;
    display: flex;
}

.project-carousel .owl-nav .owl-prev,
.project-carousel .owl-nav .owl-next {
    margin-left: 15px;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    border-radius: 55px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .15);
    font-size: 25px;
    transition: .5s;
}

.project-carousel .owl-nav .owl-prev:hover,
.project-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    color: #2a3855;
}

@media (max-width: 768px) {
    .project-carousel .owl-nav {
        top: -70px;
        right: auto;
        left: 50%;
        transform: translateX(-50%);
    }

    .project-carousel .owl-nav .owl-prev,
    .project-carousel .owl-nav .owl-next {
        margin: 0 7px;
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}

/* 

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Fjalla+One&display=swap');
body{
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    background: #222327;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: left;
}
body, div {
	margin: 0;
	padding: 0;
}
*, *::before, *::after {
	box-sizing: border-box;
}
img {
	-ms-interpolation-mode: bicubic;
	border: 0;
	vertical-align: middle;
	max-width: 100%;
	height: auto;
}
/* ============ Full Page Slider ================= */
.creative-carousal--hero{
    width: 100%;
    /* height: 100vh; */
    display: flex;
    flex-wrap: wrap;
    position: relative;
}
.creative-carousal--hero .carousel-slider {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
}
.creative-carousal--hero .carousel-slider  .swiper-slide{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 0;
    background-size: cover;
    background-position: center;
}
.creative-carousal--hero .carousel-slider .swiper-slide.swiper-slide-active {
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
    z-index: 3;
}
.creative-carousal--hero .carousel-slider .swiper-slide:after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: #222327;
    opacity: 0.7;
}
.creative-carousal--hero .carousel-slider .swiper-slide.swiper-slide-active:after {
    opacity: 0.4;
}
.creative-carousal--hero .carousel-slider .swiper-slide .inner {
    width: 100%;
    display: block;
    text-align: center;
    color: #fff;
    position: relative;
    z-index: 2;
    opacity: 0;
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -ms-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
}
.creative-carousal--hero .carousel-slider .swiper-slide.swiper-slide-active .inner {
    opacity: 1;
}
.creative-carousal--hero .carousel-slider .swiper-slide .inner h2{
    width: 100%;
    float: left;
    font-size: 4vw;
    line-height: 5vw;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
    margin-top: 0;
}
.creative-carousal--hero .carousel-slider .swiper-slide .inner a{
    font-size: 19px;
    color: #fff;
    font-family: "Fjalla One", sans-serif;
    padding-bottom: 5px;
    position: relative;
    border-bottom: 2px solid #fff;
    padding-bottom: 4px;
    text-decoration: none;
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -ms-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
}
.creative-carousal--hero .carousel-slider .swiper-slide .inner a:hover{
    text-decoration: none;
    color: #75dab4;
}
.creative-carousal--hero .slide-progress {
    width: 220px;
    display: flex;
    flex-wrap: wrap;
    position: absolute;
    left: 50%;
    bottom: 30px;
    margin-left: -110px;
    z-index: 3;
    text-align: center;
}
.creative-carousal--hero .slide-progress span {
    display: inline-block;
    color: #fff;
    font-family: "Fjalla One", sans-serif;
    font-size: 14px;
}
.creative-carousal--hero .slide-progress .swiper-pagination {
    width: 160px;
    height: 2px;
    margin: auto 10px;
    display: inline-block;
    position: static;
    background: rgba(255, 255, 255, 0.3);
}
.creative-carousal--hero .slide-progress .swiper-pagination .swiper-pagination-progressbar-fill {
    background: #fff;
}

.creative-carousal--hero .slide-progress span {
    display: inline-block;
    color: #fff;
    font-family: "Fjalla One", sans-serif;
    font-size: 14px;
}
.creative-carousal--hero .swiper-button-prev {
    height: auto;
    position: absolute;
    left: auto;
    top: auto;
    right: 120px;
    bottom: 30px;
    font-family: "Fjalla One", sans-serif;
    color: #fff;
    background: none;
}
.creative-carousal--hero .swiper-button-prev:after{
    display: none;
}
.creative-carousal--hero .swiper-button-next {
    height: auto;
    position: absolute;
    left: auto;
    top: auto;
    right: 40px;
    bottom: 30px;
    font-family: "Fjalla One", sans-serif;
    color: #fff;
    background: none;
}
.creative-carousal--hero .swiper-button-next:after{
    display: none;
}
/* ====================== Responsive Ipad =============================== */
/* @media (max-width: 991px) {
    .creative-carousal--hero .carousel-slider .swiper-slide .inner h2{
               font-size: 7vw;
        line-height: 7vw;
        margin-bottom: 15px;
    }
} */

/* ====================== Responsive Iphone =============================== */
/* @media screen and (max-width: 767px) {
    .creative-carousal--hero .carousel-slider .swiper-slide .inner h2{
        font-size: 12vw;
        line-height: 12vw;
        margin-bottom: 15px;
    }
    .creative-carousal--hero .swiper-button-prev{
            left: 40px;
    }
    .creative-carousal--hero .swiper-button-next{
            right: 40px;
    }
} */ 



.careers-email{
    font-size: 30px;
    color: unset;
}

li.nav-item.dropdown:hover .dropdown-menu {
    visibility: visible;
    opacity: 1;
    display: block;
}

li.nav-item.dropdown:hover .dropdown-menu li a:hover{
    background-color: #2a3855;
    color: #fff;
    transition: all .3s;
}

.z-index-1{
    z-index: 1;
}