@import url('https://fonts.googleapis.com/css2?family=Arapey&family=Yeseva+One&display=swap');

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

body {
    font-family: 'Arapey', serif;
    background-color: #012003;
}

p {
    font-size: 20px;
    color: #e6ccbf;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

h1,
h2 {
    color: #012003;
    font-family: 'Yeseva One', cursive;
}

.cta-btn {
    background: black;
    border: none;
    border-radius: 5px;
    height: 45px;
    width: 165px;
    color: white;
}

.cta-btn:hover {
    background: #e6ccbf;
    color: black;
    border: 0;
}

@media screen and (max-width:768px) {
    .cta-btn {
        width: 48%;
    }
}

/*--------------------------------------------------------------
# Fixed Enquiry Button
--------------------------------------------------------------*/

.enq-scroll-btn {
    width: 155px;
    height: 45px;
    color: white;
    font-size: 18px;
    background-color: #012003;
    text-transform: uppercase;
    border: 0;
}

@media (min-width: 768px) and (max-width: 9000px) {
    .fixedcall {
        position: fixed;
        display: inline-block;
        top: 40%;
        right: -142px;
        transform: rotate(-90deg);
        z-index: 11;
    }

    .fixedcall li {
        float: left;
        width: 164px;
        /* padding: 1px; */
        list-style: none;
    }
}

@media only screen and (max-width: 767px) {
    .fixedcall {
        display: inline-block;
        position: fixed;
        left: 0;
        bottom: 0;
        z-index: 11;
        width: 100%;
    }

    .fixedcall li {
        float: left;
        width: 100%;
        list-style: none;
    }

    .fixedcall ul li button {
        width: 100%;
    }

    .enq-scroll-btn {
        background-color: #000;
    }
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
    transition: all 0.5s;
    z-index: 997;
    background: #A1E844;
    padding: 15px 0;
    box-shadow: 0px 2px 15px rgb(0 0 0);
}

#header.header-scrolled,
#header.header-inner-pages {
    background: #A1E844;
}

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

#header .logo a {
    color: #fff;
}

#header .logo img {
    max-height: 60px;
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/


/**
* Desktop Navigation 
*/

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar a,
.navbar a:focus {
    color: black;
    font-size: 18px;
    margin: 10px 28px;
}

.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 {
    border-bottom: 3px solid black;
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
}

.navbar .dropdown ul li {
    min-width: 200px;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 14px;
    text-transform: none;
    color: #012003;
    font-weight: 400;
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
    background-color: #E6CCBF;
}

.navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover>ul {
        left: -100%;
    }
}


/**
* Mobile Navigation 
*/

.mobile-nav-toggle {
    color: #012003;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

.navbar-mobile .mobile-nav-toggle {
    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(0, 0, 0, 0.9);
    transition: 0.3s;
    z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: #012003;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
    color: white;
    background-color: #002C03;
}

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

.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 {
    background-color: #E6CCBF;
}

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


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    width: 100%;
    height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding: 0;
}

.hero .video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero .hero-video {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}


.hero .container-fluid {
    z-index: 3;
    height: 100vh;
    background: url('../img/container.png');
    padding-top: 20%;
    background-position: center;
    background-size: cover;
}

#hero .form-control {
    height: 45px;
}

#hero .cta-btn {
    background: black;
    color: #a1e844;
    text-transform: uppercase;
    border-radius: 0;
    border: 1px solid #a1e844;
    width: 100%;
}

#hero .cta-btn:hover {
    background: #e6ccbf;
    color: black;
    border: 0;
}

#hero h1 {
    font-size: 55px;
    color: #A1E844;
    font-family: 'Yeseva One', cursive;
}

@media (max-width:768px) {
    .hero .container-fluid {
        background-size: contain;
    }
    #hero .container-fluid .container-box {
        position: relative;
        top: 20%;
    }

    #hero h1 {
        font-size: calc(1.375rem + 1.5vw);
    }

    #hero h5 {
        font-size: 16px;
    }
}





/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/

section {
    padding: 60px 0;
    overflow: hidden;
}


/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/

.about {
    background-color: #012003;
}

.about .cta-btn:hover {
    background: #e6ccbf;
    color: black;
    border: 0;
}

img.know-your-partner {
    width: 100%;
    height: 100vh;
}

h1.know-your-partner-text {
    position: absolute;
    bottom: 100px;
    width: 30%;
    right: 0;
    color: #ffffff;
}

.services .tab-btn {
    cursor: pointer;
}

.services .tab-btn h3 {
    margin: 12px;
    font-size: 15px;
    padding: 25px;
    width: 100%;
    text-transform: uppercase;
    border: 2px solid #A1E844;
    color: white;
    font-family: 'DM Sans';
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.services .tab-btn h3[aria-expanded="true"] {
    background: #A1E844;
    color: black !important;
}

.service-box {
    position: absolute;
    bottom: 0px;
    background: #000000d4;
}

.projects {
    background-color: #A1E844;
    height: 95vh;
}

.clients {
    background-color: #012003;
    height: 95vh;
}

/*--------------------------------------------------------------
# Enquiry
--------------------------------------------------------------*/

.enquiry {
    background: url(../img/map-banner.jpg);
    background-size: cover;
    background-position: center;
    height: 95vh;
}

.enquiry .enquiry-row {
    border: 2px solid white;
    border-radius: 10px;
    background: #01200300;
}

.enquiry .cta-btn:hover {
    background: #e6ccbf !important;
}

@media (max-width: 991px) {
    img.know-your-partner {
        height: auto;
    }

    h1.know-your-partner-text {
        bottom: 20px;
        width: 60%;
        right: 25px;
    }

    .services .tab-btn h3 {
        font-size: 10px;
        padding: 10px;
        height: 50px;
    }

    .service-box {
        position: unset;
    }

    .enquiry,
    .clients,
    .projects {
        height: auto;
    }
}

.footer {
    background-color: #A1E844;
}

.footer p {
    color: #012003;
}