@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;
    --font-base: "Bai Jamjuree";
    --sidbar-width: 240px;
}
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 0.4s ease;
}
a:hover{
    color: var(--color-brand);
}
img{
    width: 100%;
}
.text-brand{
    color: var(--color-brand);
}
.bg-base{
    background-color: var(--color-base);
}
.full-height{
    min-height: 100vh;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 80px;
    padding-bottom: 80px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}
.shadow-effect{
    transition: all 0.5s;
}
.iconbox{
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    background-color: var(--color-brand);
    color: var(--color-base);
}
.iconbox2{
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    background-color: var(--color-brand);
    color: var(--color-base);
}
.shadow-effect:hover{
    box-shadow: -6px 6px 0 0 var(--color-brand);
}
/* NavBaar */
.navbar{
    background-color: var(--color-base);
}
.navbar .nav-link{
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
} 
.navbar .nav-link.active{
    color: var(--color-brand);
}
.navbar .nav-link:hover{
    color: var(--color-brand);
}

@media (min-width:992px){
    .navbar{
        min-height: 100vh;
        width: var(--sidbar-width);
        background-size: cover;
        background-position: center;
        background: linear-gradient(rgba(3, 63, 71, 0),rgba(3,63,71,0.8));
    }
    .navbar-brand img{
         border: 8px solid var(--color-brand);
    }
    /* Wrapper */
    #content-wrapper{
         padding-left: var(--sidbar-width);
    }
}
.btn{
    padding: 12px 28px;
    font-weight: 700;
}
.btn-brand{
    background-color: var(--color-brand);
    border-color: var(--color-brand);
    color: var(--color-base);
}
.btn-brand:hover,
.btn-brand:focus{
    background-color: var(--color-brand2);
    color: var(--color-base);
    border-color: var(--color-brand2);
}
.custom-link{
    font-weight: 700;
    position: relative;
}
.custom-link::after{
    content: "";
    width: 0%;
    height: 2px;
    background-color: var(--color-brand);
    position: absolute;
    left: 0;
    top: 110%;
    transition: all 0.4s;
}
.custom-link:hover::after{
    width: 100%;
    color: var(--color-brand);
}
/* CARDS */
.teste1{
    display: flex;
    justify-content: center;
    align-items: center;
}
.teste{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 1200px;
    /* flex-wrap: wrap; */
}
.teste .card-service{
    position: relative;
    width: 300px;
    margin: 10px;
    padding: 10px;
    transition: all 0.4s ease;
}
.teste .card-service .service{
    height: 350px;
    overflow: hidden;
    position: relative;
    transition: all 0.4s ease;
}
.teste .card-service.active .service{
    height: auto;
}
.teste .card-service .service::before{
    content: '';
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(transparent, var(--color-base));
}
.teste .card-service.active .service::before{
    display: none;
    transition: all 0.4s ease;
}
.teste .card-service .more{
    position: relative;
    margin-left: 22px;
    margin-bottom: 10px;
    display: inline-block;
    cursor: pointer;
    color: var(--color-body);

}
.teste .card-service .more::before{
    content: 'Ler mais';
    
}
.teste .card-service.active .more::before{
    content: 'Ler menos';
    transition: all 0.4s ease;
}

.card-custom .card-custom-image{
    overflow: hidden;
}
.card-custom .card-custom-image img{
    transition: all 0.4s ease;
}
.card-custom:hover .card-custom-image img{
    transform: scale(1.1);
}
/* Contato */
#contato .form-control{
    background-color: var(--color-base);
    border-color: var(--color-base);
    color: var(--color-body);
}
#contato .form-control:focus{
    border-color: var(--color-brand);
    box-shadow: none;
}
#contato .form-control::placeholder{
    color: var(--color-body);
}
#contato input.form-control{
    height: 45px;
}
/* Social Icons */

.social-links a{
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-base);
    border-radius: 100px;
    font-size: 24px;
}
#copy{
    display: inline-flex;
    align-items: center;
    justify-content: center;
}