@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
/* img {
    animation: fadeInAnimation ease 3s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
} */

#nav-brand,#nav-item{
    transition: all 200ms ease-in;
}
.fade-in {
    opacity: 0;
    transition: opacity 400ms ease-in;
}

.fade-in.appear {
    opacity: 1;
}
/* 
.projects .details{
    display: none;
    transition: all 700ms ease-in;

}
.projects:hover .details{
    display: block;
    transition: all 700ms ease-in;

} */
.projects {
    transition: all 100ms ease-in, opacity 400ms ease-in;
}
.projects:hover {
    /* box-shadow: rgba(18, 24, 29, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px; */
    border-radius: 15px;
    transform: scale(0.98);
    transition: all 100ms ease-in, opacity 400ms ease-in;
    /* background-color: #354655; */
}

/* .projects:hover img{
    border-width: 2px;
    border-style: solid;
    border-color: #171f26;
} */

@keyframes fadeInAnimation {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

#nav {
    transition: all 100ms ease-in;

}
.sticky{
    transition: all 400ms ease-in;

}
body {
    font-family: 'Poppins', sans-serif;
}

:root {
    --gray: #c1c1c1;
    --lightBlue: #57A5ED;
    --darkBlue: #287DCB;
    --dark: #111;
    --darkGray: #161616;
    --darkerBlue: #171f26;
    --darkerLightBlue: #2c3b47;
    --light-dark: #222;
}


.navbar.bg-custom {


    border-radius: 10px;
    background-color: var(--darkerBlue);
    /* Change this to your desired background color */
}

body {


    overflow-x: hidden;
    /* Hide horizontal scrollbar */
}

p,
.text,
.col-md-4 li,.col-md-2 li {
    color: #bebfc0;
}

.text-gray {
    color: var(--gray);
}

.text-lightBlue {
    color: var(--lightBlue);
}

.text-darkBlue {
    color: var(--darkBlue);
}

.body-dark {
    background-color: var(--dark);
}

.bg-lightDark {
    background-color: var(--darkGray);

}

.bg-darkerBlue {
    background-color: var(--darkerBlue);

}

.bg-darkerLightBlue {
    background-color: var(--darkerLightBlue);

}

.font-l {
    font-size: calc(1.7rem);
}

.font-xl {
    font-size: calc(2.0rem + 1.0vw);
}

.font-xxl {
    font-size: calc(2.0rem + 2.2vw);
}

.h-100vh {
    min-height: 100vh;
}

.h-100p {
    min-height: 100%;
}

.btn-gray {

    background-color: var(--light-dark);
}
.gray {

    background-color: rgba(23,31,38, 0.5);
}
.round-md {
    border-radius: 100px;
}
.round-sm {
    border-radius: 20px;
}
.bg-blueGlow {

    background-image: url('../img/bg.svg');
    background-size: cover;
    background-position: center;
    
}

.text-justified {
    text-align: justify;
}