@font-face {
    font-family: poppins;
    src: url(./assets/fonts/Poppins-Regular.ttf);
}

@font-face {
    font-family: poppinsSemi;
    src: url(./assets/fonts/Poppins-SemiBold.ttf);
}

@font-face {
    font-family: poppinsMid;
    src: url(./assets/fonts/Poppins-Medium.ttf);
}

@font-face {
    font-family: poppinsXBold;
    src: url(./assets/fonts/Poppins-ExtraBold.ttf);
}

@font-face {
    font-family: poppinsBold;
    src: url(./assets/fonts/Poppins-Bold.ttf);
}

@font-face {
    font-family: poppinsBlack;
    src: url(./assets/fonts/Poppins-Black.ttf);
}

*{
    margin: 0;
    padding: 0;
    appearance: none;
    outline: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
    transition: all 0.5s ease-out;
}

html{
    font-size: 16px;
    z-index: 1;
}

body::-webkit-scrollbar {
    display: none;
}

a{
    text-decoration: none;
    color: #1e1e1e;
}

/* .container{
    background: #EAEAEA;
} */

.container{
    min-height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(234, 234, 234, 1);
    background-image: url(./assets/backgrounds/background.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    /* gap: 5rem; */
}

.navbar{
    width: 100vw;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.0rem 7rem;
}

.logo{
    display: flex;
    align-items: baseline;
    color: #3e3e3e;
}
.logo-name{
    font-family: poppinsXBold;
    font-size: 1.4rem;
    color: #3e3e3e;
}


.logo-dot, .footer-logo-dot{
    font-size: 3rem;
    position: relative;
    animation: bounce 3s linear infinite;
    font-family: poppinsXBold;
}

.footer-logo-dot{
    animation: none;
}

@keyframes bounce{
    20%,50%,80%,to{
        transform: translateY(0);
    }
    40%{
        transform: translateY(-30px);
    }
    70%{
        transform: translateY(-15px);
    }
    90%{
        transform: translateY(-10px);
    }
}

.call-us{
    font-family: poppinsSemi;
    font-size: 1.2rem;
    color: #3e3e3e;
    text-transform: capitalize;
}

.holder-main{
    width: 100vw;
    padding: 1.0rem 7rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.main-text{
    font-family: poppinsBlack;
    font-size: 5rem;    
    color: #1e1e1e;
    text-transform: capitalize;
    text-align: center;
    line-height: 120%;
}

.subtext{
    font-family: poppins;
    font-size: 1.1rem;
    color: #5b5b5b;
    text-align: center;
    width: 36vw;
}

.categories{
    display: flex;
    align-items: center;justify-content: center;
    gap: 1.4rem;
    width: 60vw;
    flex-wrap: wrap;
}

.category{
    display: flex;
    align-items: center;
    gap: 0.7rem;
    background: #ffffff;
    border: 1px solid #B7B7B7;
    padding: 1rem 0.5rem;
    border-radius: 8px;
    cursor: pointer;
}

.category-name{
    color: #5c5c5c;
    font-family: poppins;
    text-transform: capitalize;
    font-size: 1rem;
}

.main-button{
    /* background-color: #4f4f4f;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 1rem; */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18rem;
    height: 7rem;
    gap: 1rem;
    border: none;
    border-radius: 10px;
    color: white;
    background: #4F4F4F;
    cursor: pointer
}

.main-button:hover{
    background-color: #1e1e1e;
}

.button-text{
    font-family: poppinsSemi;
    color: #ffffff;
    text-transform: capitalize;
    font-size: 1.1rem;
}

.main-button img{
    width: 1.6rem;
}

.socials{
    display: flex;
    align-items: center;
    width: 40vw;
    justify-content: space-between;
    padding: 2.0rem 7rem;
}

.footer{
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 01em;
}

.copyright-text{
    font-size: 1rem;
    color: #717171;
    font-family: poppins;
}


.footer img{
    width: 7rem;
    margin-bottom: -2rem;
    animation: spin 3s linear infinite;
}

@keyframes spin {
    from{
        transform: rotate(0deg);
    }
    to{
        transform: rotate(360deg);
    }
    
}


@media screen and (max-width: 1370px){
    html{
        font-size: 80%;
    }
    .socials{
        width: 60vw;
    }
    .main-button{
        width: 15rem;
        height: 5rem;
        border-radius: 5px;
    }
}

@media screen and (max-width: 1300px){
    .subtext{
        width: 50vw;
    }
    .categories{
        width: 80vw;
    }
}


@media screen and (max-width: 850px){
    html{
        font-size: 70%;
    }
    .subtext{
        width: 80vw;
    }
    .socials{
        width: 90vw;
        padding: 2.0rem 7rem;
    }
    .main-text{
        font-size: 3rem;
    }
    .navbar{
        padding: 1.0rem 3rem;
    }
    .holder-main{
        padding: 1.0rem 3rem;
    }
    
}

@media screen and (max-width: 756px){
    .socials{
        width: 100vw;
        padding: 2.0rem 4rem;
    }
}