@tailwind base;
@tailwind components;
@tailwind utilities;

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: sans-serif;
}
li {
    list-style: none;
}
header nav li {
    transition: 0.3s;
    cursor: pointer;
}
section {
    padding: 40px 0;
    overflow: hidden;
}
.container {
    padding: 0 5rem;
    
}

.hero .numbers p {
    font-size: 16px;
    position: relative;
    width: 140px;
    text-align: center;
    margin-right: 10px;
}
.hero .numbers p::after {
    position: absolute;
    top: -100px;
    left: 0;
    font-size: 50px;
    width: 100%;
    text-align: center;
}
.hero .numbers p:first-child:after {
    content: "500+";
}
.hero .numbers p:nth-child(2):after {
    content: "600+";
}
.hero .numbers p:last-child:after {
    content: "100+";
}
header nav.main-nav li:hover {
    transform: scale(1.1);
}
header nav.responsive-nav li {
    padding: 10px;
    letter-spacing: 2px;
    font-size: 14px !important;
    
}
header nav.responsive-nav li:hover {
    margin-left: 5px;
}



@media (width < 1024) {
    .container {
        padding: 0 3rem;
    }
}
@media (width < 640px) {
    .hero .numbers p {
        max-width: 120px;
        font-size: 14px;
        margin-right: 0;
    }
    .hero .numbers p::after {
        width: 80;
        font-size: 30px;
        top: -50px
    }
    .container{
        padding: 0 2rem;
    }

    
}
@media (width > 350px) {
    .hero .bottom .left {
        margin-bottom: 0;
    }
    .hero .numbers {
        margin-bottom: 0;
    }
}
