@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Varela+Round&display=swap');

body{
    font-family: "Poppins", sans-serif;

}
.navbar-toggler,
.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler-icon:focus {
    outline: none;
    border: none;
    box-shadow: none;
}
section{
    
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.nav-link{
    outline: none;
    font-size: 18px;
}

#home{
    background-image: url("./images/bg1.png");
    background-position: center;
    background-size: cover;

}

#products .card{
    border: none;
    background-color: whitesmoke;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    cursor: pointer;
    transition: 0.5s;
}
#products .card:hover{
   transform: scale(1.03);
}
#reviews .card{
    padding: 10px;
}
#reviews img{
    width: 100px;
    height: 100px;
    object-fit: cover;
    object-position: center;
}

#contact{
    background-image: url("./images/loging_bg.png");
    background-position: center;
    background-size: cover;
}
.contact-shoe img{
    height: 300px;
}
#contact .form-control{
    box-shadow: none !important;
    background-color: transparent;
    border: 2px solid purple;
}
#contact .btn{
    width: 100%;
    background-color: purple;
    color: white;
}
#contact .btn:hover{
    background-color: rgb(98, 4, 98);
}

.social-media img{
    width: 30px;
    
    object-fit: contain;
    
}

@media (max-width:768px) {
    .contact-shoe img{
        display: none;
    }
}