
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');


body {
    box-sizing: border-box;
	margin: 0;
	padding: 0;
    background-color: black;
    color: white;
    font-family: 'Inter', sans-serif;
}

/* -- navbar */


.navbar-frame {
    backdrop-filter: blur(0.1rem);
    background-color: hsl( 0 100% 100%/ 0.05); 
}

.navbar-content > a { color: white;}

.navbar-content {
    font-family: 'Inter', sans-serif;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    color: white;
    height: 100vh;
    gap: 2rem;
}

.brand-logo, .contact-icon {filter: invert(100%);}

/* navbar -- */

/* -- project intro */

@keyframes slide-up {
    0% {opacity: 0; transform: translateY(50%);} 
    100% {opacity: 1;transform: translateY(0);}
}

.pj-intro > * {
    padding: 0;
    margin: 0;
    animation: 1s ease-in-out 1 slide-up;
}

.pj-number {
    padding-top: 3rem;
}

.pj-name {
    padding-top: 3rem;
    padding-bottom: 5rem;
}
.pj-description {
    width: 55vw;
}
/* -- project intro */


.intro-loader {
    background-color: black;
    width: 100vw;
    height: 100vh;
    display: flex; 
    justify-content: center;
    align-items: center; 
}

@keyframes bouncey1 {
    0% {transform: translateY(0)}
	50% {transform: translateY(5px)}
	100% {transform: translateY(0)}
} 

@keyframes bouncey2 {
    0% {transform: translateY(5px)}
	50% {transform: translateY(0px)}
	100% {transform: translateY(5px)}
} 

.icon {
    width: 80px;
    height: 80px;
    margin: 0 15px;
    transition: (ease 1s); 
}

.i1 {
    animation: bouncey1 2.6s linear infinite;
}

.i2 {
    animation: bouncey2 2.6s linear infinite;
}

#homepage {
    width: 75vw;
}

.homepage-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
    background-color: black;
    overflow: hidden;
}

.features-container {
    width: 100vw;
    height: 100vh;
    background-color: black;
    display: grid;
    grid-template-columns: 30% 30% 30%;
    grid-template-rows: 49% 49%;
    gap: 5px 5px;
    justify-content: center;
    align-content: center;
    
}

.contractor-review, 
.colors-a-fonts, 
.search-result-page, 
.friends-activity { 
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0.2px solid gray;
    overflow: hidden;
}

.contractor-review  {
    background-color: #AECCF2;
}

.friends-activity {
    background-color: rgba(246,187,66, 1);
}

.friends-activity > img {
    width: 75%;
}

.contractor-review > * {
    height: 80%;
}

.groups-a-contractors > * {
    width: 30%;
}

#my-contractors {
    padding: 5% 20px;
}

#my-groups {
    padding: 10% 20px;
}

.groups-a-contractors {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: start;
    justify-content: center;
    border: 0.2px solid gray;
    overflow: hidden;
    grid-column-start: 1;
    grid-column-end: 3;
    grid-row-start: 1;
    grid-row-end: 2;
}

.colors-a-fonts > *  {
    height: 70%;
}

.search-result-page > * {
   
    width: 80%;
}

.search-result-page {
    /* background-color: white; */
    align-items: start;
}

.friends-activity > * {
    width: 100px;
}
/* case-2 css ends */

@media (max-width: 60em) {
    .navbar-frame {
        backdrop-filter: blur(0.5rem);
        background-color: hsl( 0 100% 0%/ 0.8); 
    }
    
}