
@import url('https://fonts.googleapis.com/css2?family=Bai+Jamjuree:wght@400;500;600;700&display=swap');


:root {
    --color-body: #b6cbce;
    --color-heading: #eef3db;
    --color-base: #033f47;
    --color-base2: #022a30;
    --color-brand: #e0f780;
    --color-brand2: #deff58;
    --sidbar-width: 240px;
    --font-base: "Bai Jamjuree";
}

body{
    background-color:var(--color-base2);
    color: var(--color-body);
    font-family: var(--font-base), sans-serif;

}
h1, h2, h3, h4, h5, h6{
    color: var(--color-heading);
    font-weight: 700;
}
a{
    text-decoration: none;
    color: var(--color-body);
    transition: all o.5s ease;
}
a:hover{
    color: var(--color-brand);
}
img{
    width: 100%;
}

/***Navbar**/

.navbar{
    background-color: var(--color-base);
}
.navbar .nav-link{
    font-weight:1000;
    text-transform: uppercase;
    color: white;
}
.navbar .nav-link.active{
    color: var(--color-brand);
}
.navbar .nav-link:hover{
    color:var(--color-brand);
}

/**section**/

.text-brand{
    color: var(--color-brand);
}

.full-height{
    min-height: 100vh;
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    padding-top: 80px;
    padding-bottom: 80px;
    border-bottom: 2px solid rgba(203, 196, 196, 0.735);
}
@media (min-width: 992px) {
    .navbar{
        min-height: 100vh;
        width: var(--sidbar-width);
        background: linear-gradient(rgba(3, 43, 48, 0.607), rgba(3, 64, 72, 0.484)), url(../img/africa.jfif);
        background-size: cover;
        background-position: center;
    }
    .navbar-brand img{
        border: 8px solid rgba(30, 117, 128, 0.868);
    }
    /**content wapper**/
    #content-wrapper{
        padding-left: var(--sidbar-width);
    }
}

/**btn**/
.btn{
    padding: 12px 28px;
    font-weight: 700;
}
.btn-brand {
    background-color: var(--color-brand);
    border-color: var(--color-brand);
    color: #033f47 !important ;
}
.btn-brand:focus,
.btn-brand:hover{
    background-color: #deff58!important;
    color: #033f47 !important ;
    border-color: var(--color-brand2) !important;
}
.link-custom{
    font-weight: 800;
    position: relative;
}
.link-custom::after{
    content: "";
    width: 0%;
    height: 2px;
    background-color: var(--color-brand);
    position: absolute;
    left: 0;
    top: 110%;
    transition: all 0.4s !important;
    
}
.link-custom:hover::after{
    width: 100%;
}
/***services*/
.service{
    text-align: center;
    
}
.bg-base{
    background-color: var(--color-base);
}

.sh-effect:hover{
    box-shadow: -6px 6px 0 0 var(--color-brand);
    transition: all .3s;
}
.iconbox{
    width: 100%;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    background-color: var(--color-base);
    box-shadow: 1px 1px 13px rgba(0, 0, 0, 0.311);
   color: var(--color-brand);
}

/***Work****/

/*card*/

.card-custom .card-custom-image img{
    transition: all .5s ease;
    height: 200px;
}
.card-custom:hover .card-custom-image img{
    transform: scale(1.1);
}
.card-custom .card-custom-image{
    overflow: hidden;
    
}
.card-custom{
  height: 470px;
}

/**Contact**/

#Contact .form-control{
    background-color: var(--color-base);
    border-color: var(--color-base);
    color: var(--color-body);
    
}

#Contact .form-control:focus{
    border-color: var(--color-brand);
}
#Contact .form-control::placeholder{
    color: var(--color-body);
}
#Contact input.form-control{
    height: 50px;
}

/**footer**/

.social-links a{
    width: 40px;
    height: 40px;
    background-color: #033f47;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    margin: 5px;
    font-size: 25px;
}