
@import url('https://fonts.googleapis.com/css2?family=Bai+Jamjuree:wght@400;500;600;700&display=swap');


body {
    background-color: #022a30;
    color: #bbe1e7;
    font-family: Bai Jamjuree, sans-serif;
}

p{
    color: #bbe1e7;
}

h1,h2,h3,h4,h5,h6 {
    color: #d8e799;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: #bbe1e7;
    transition: all 0.4s ease;
}

a:hover {
    color: #e0f780;
}

img {
    width: 100%;
}
/* navbar */
.navbar{
    background: #284952;
}


@media (min-width: 992px) {
    .navbar {
        min-height: 100%;
        width: 240px;
        background: linear-gradient(rgba(20, 139, 114, 0.8), rgba(20, 139, 114, 0.8)), url(../images/img-1.jpg);
        background-size: cover;
        background-position: center;
    }
    .content-wrapper{
        padding-left: 240px;
    }
    .my-pic{
        height: 120px;
        width: 120px;
        border-radius: 50%;
        border: 2px black solid;
    }
}

.navbar .nav-link {
    font-weight: 700;
    text-transform: uppercase;
    color: aliceblue;
}

.navbar .nav-link:hover {
    color: rgb(48, 199, 48);
}

.navbar .nav-link.active {
    color: chartreuse;
}


.content-wrapper{
    overflow-x: hidden;
}

/* head */

.height-adj{
    min-height: 700px;
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    border-bottom: 2px solid #0DCAF0;
}
.text-brand{
    color: aqua;
}
.link-custom {
    font-weight: 700;
    position: relative;
}

.link-custom::after {
    content: "";
    width: 0%;
    height: 2px;
    background-color: #0DCAF0;;
    position: absolute;
    left: 0;
    top: 120%;
    transition: all 0.4s;
}
.link-custom:hover::after {
    width: 100%;
}
.link-custom:hover{
    color: aqua;

}

/* service */
.service{
    background: #000;
}
.shadow-1 {
    transition: all 0.6s;
}
.shadow-1:hover {
    box-shadow: -4px 4px 0 0 rgb(214, 214, 37);
}
.iconbox-1{
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    background-color: darkolivegreen;
    border-radius: 8px;
}

/* work */
.card{
    background: #000;
    overflow: hidden;
}
.card .ima{
    overflow: hidden;
}
.card img{
    transition: all 0.4s ease;
}
.card:hover img{
    transform: scale(1.1);
}

/* reviews */
.iconbox-2{
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    font-size: 32px;
    color: rgb(201, 201, 31);
}

/* blog */
.kobita{
    font-size: 15px;
}

/* contact */
.btn-info:hover{
    background: #212529;
    color: aqua;
}
/* footer */
.iconbox-3{
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}
.iconbox-4{
    width: 250px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}
