* {
    padding: 0;
    margin: 0;
}


/* Heading */
.hero {
    text-align: center;
    font-family: sans-serif;
    background-color: white;
    color: #111111;
    padding: 50px 245px;
}


/* Product Section */
.products-section {
    background-color: white;
    text-align: center;
    color: #111111;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding-bottom: 25px;
    font-family: sans-serif;
}

.products {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.products a {
    text-decoration: none;
    text-decoration: none;
}

.product {
    padding: 25px;
}

.product img {
    height: 350px;
    width: 200px;
    border-radius: 10px;
}

.product h4 {
    padding-top: 20px;
    margin: 0;
    color: #111111;
}

.product p {
    margin-bottom: 0;
}

.item{
    color: #111111;
    text-align: left;
}

.brand{
    opacity: 0.5;
}

.price{
    padding-top: 10px;
}

.button {
    position: relative;
    width: 300px;
    height: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    border: 1px solid #A0522D;
    border-radius: 10px;
    background-color: #A0522D;
}

.button,
.button__icon,
.button__text {
    transition: all 0.3s;
}

.button .button__text {
    transform: translateX(80px);
    color: #fff;
    font-weight: 600;
}

.button .button__icon {
    position: absolute;
    transform: translateX(260px);
    height: 100%;
    width: 39px;
    background-color: #A0522D;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.button .svg {
    width: 30px;
    stroke: #fff;
}

.button:hover {
    background: #A0522D;
}

.button:hover .button__text {
    color: transparent;
}

.button:hover .button__icon {
    width: 298px;
    transform: translateX(0);
}

.button:active .button__icon {
    background-color: #A0522D;
}

.button:active {
    border: 1px solid #A0522D;
}


@media (max-width: 1024px) {
    .hero {
        padding: 50px 100px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 40px 50px 30px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 40px 20px 20px;
    }
}

@media (max-width: 515px) {
    .product {
        padding: 10px;
    }

    .product img {
        height: 300px;
        width: 150px;
    }
}

@media (max-width: 355px){
    .product{
        padding: 5px;
    }
    .product img{
        height: 290px;
        width: 140px;
    }
}


/* Navbar Section */
.navbar {
    top: 0;
    position: sticky;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 120px;
    font-family: sans-serif;
    font-size: 20px;
    color: white;
    background-color: #111111;
    z-index: 1000;
}

.logo img {
    height: 50px;
    width: 100px;
}

.hamburger-btn i,
.close-button i {
    color: white;
    font-size: 24px;
}

.navbar .offcanvas {
    background-color: #111111;
    color: white;
}

.navbar .menu {
    list-style: none;
    padding: 0;
}

.navbar .menu li {
    padding: 11px 32px;
}

.navbar .menu a {
    text-decoration: none;
    color: white;
}

.navbar .nav {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}

.navbar .logo {
    padding-right: 12px;
}

.nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    list-style: none;
    margin: auto;
    padding: 0;
    gap: 40px;
}

.nav li {
    padding: 10px;
}

.nav a {
    text-decoration: none;
    color: white;
}

.nav a:hover {
    color: white;
}

.bg-body-tertiary {
    background-color: #111111 !important;
}

.container-fluid{
    border-radius: 40px;
    border: solid white 2px;
}

.custom-search {
    border-radius: 25px;
    overflow: hidden;
    width: 200px;
}

.custom-input {
    background-color: #111111;
    color: white;
    border: none;
    padding: 10px 0px 10px 20px;
}

.custom-button {
    background-color: #111111;
    color: white;
    border: none;
    padding: 10px 15px;
}

.custom-button:hover {
    background-color: #111111;
}

.custom-input:focus,
.custom-button:active {
    background-color: #111111 !important;
    color: white !important;
    box-shadow: none !important;
    outline: none !important;
}

.custom-input::-webkit-search-cancel-button {
    display: none;
}

.icons {
    display: flex;
    justify-content: center;
    align-items: center;
}

.icons i {
    padding: 0px 10px;
}

.icons a {
    color: white;
}

.icons a:hover {
    color: white;
}

input:-webkit-autofill {
    background-color: #111111 !important;
    -webkit-box-shadow: 0 0 0px 1000px #111111 inset !important;
    -webkit-text-fill-color: white !important;
    transition: background-color 5000s ease-in-out 0s;
}


/* Whatsapp */
.whatsapp {
    position: fixed;
    right: 3vh;
    bottom: 3vh;
    height: 60px;
    width: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.whatsapp img {
    height: 50px;
    width: 50px;
}


/* Footer */
.footer {
    background-color: black;
    color: white;
    padding: 40px 20px;
}

.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 40px 120px;
    flex-wrap: wrap;
}

.footer-column {
    flex: 1;
    text-align: center;
    min-width: 250px;
    margin-bottom: 50px;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #ffffff;
}

.footer-column p,
.footer-column ul {
    font-size: 14px;
    line-height: 1.6;
    color: #ddd;
    margin: 0;
}

.footer-column a {
    text-decoration: none;
    color: #ffffff;
}

.footer-column a:hover {
    text-decoration: underline;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 5px;
}

.footer-column ul li a {
    display: inline-block;
    transition: color 0.3s;
}

.icons1 {
    margin-top: 10px;
    text-align: center;
}

.icons1 a {
    margin: 0 5px;
    color: #ffffff;
    font-size: 18px;
    transition: color 0.3s ease-in-out;
}


/* Navbar Section */
@media (max-width: 1300px) {
    .navbar {
        padding: 20px 15px;
    }
}

@media (min-width: 1025px) {

    .hamburger-btn,
    .offcanvas {
        display: none !important;
    }
}

@media (max-width: 1024px) {
    .navbar .nav {
        display: none;
    }

    .hamburger-btn {
        display: block;
    }

    .navbar .logo {
        padding-right: 0px;
    }
}

@media (max-width: 768px) {
    .offcanvas {
        width: 300px !important;
    }
}

@media (max-width: 480px) {
    .navbar {
        justify-content: space-between;
        padding: 10px 15px;
    }

    .offcanvas {
        width: 250px !important;
    }
}


/* Footer Section */
@media (max-width: 991px) {
    .footer .container {
        flex-direction: column;
        align-items: center;
        padding: 40px 20px;
    }

    .footer-column {
        text-align: center;
        width: 100%;
        margin-bottom: 40px;
    }
}

@media (max-width: 600px) {
    .footer {
        text-align: center;
    }

    .footer-column h4 {
        font-size: 16px;
    }

    .footer-column p,
    .footer-column ul {
        font-size: 12px;
    }

    .icons1 a {
        font-size: 16px;
    }
}

#popup-form{
    margin: 30px;
}

.form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 390px;
    background-color: #fff;
    padding: 20px 0px;
    border-radius: 20px;
    position: relative;
    justify-content: center;
    align-items: center;
}

.title {
    font-size: 28px;
    color: royalblue;
    font-weight: 600;
    letter-spacing: -1px;
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 30px;
    margin: 0;
}

.title::before,
.title::after {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    border-radius: 50%;
    left: 0px;
    background-color: royalblue;
}

.title::before {
    width: 18px;
    height: 18px;
    background-color: royalblue;
}

.title::after {
    width: 18px;
    height: 18px;
    animation: pulse 1s linear infinite;
}

.message,
.signin {
    color: rgba(88, 87, 87, 0.822);
    font-size: 25px;
    margin: 0;
    padding-bottom: 10px;
    color: #333;
}

.signin {
    text-align: center;
}

.signin a {
    color: royalblue;
}

.signin a:hover {
    text-decoration: underline royalblue;
}

.form label {
    position: relative;
}

.form label .input {
    width: 300.4px;
    padding: 10px 10px 20px 10px;
    outline: 0;
    border: 1px solid rgba(105, 105, 105, 0.397);
    border-radius: 10px;
}

.form label .input+span {
    position: absolute;
    left: 10px;
    top: 15px;
    color: grey;
    font-size: 0.9em;
    cursor: text;
    transition: 0.3s ease;
}

.form label .input:placeholder-shown+span {
    top: 15px;
    font-size: 0.9em;
}

.form label .input:focus+span,
.form label .input:valid+span {
    top: 30px;
    font-size: 0.7em;
    font-weight: 600;
}

.form label .input:valid+span {
    color: green;
}

.submit {
    border: none;
    outline: none;
    background-color: royalblue;
    padding: 10px;
    border-radius: 10px;
    color: #fff;
    font-size: 16px;
    transform: .3s ease;
    width: 322px;
}

.submit:hover {
    background-color: rgb(56, 90, 194);
}

@keyframes pulse {
    from {
        transform: scale(0.9);
        opacity: 1;
    }

    to {
        transform: scale(1.8);
        opacity: 0;
    }
}

.join-group {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    max-width: 322px;
}

.join-group img {
    height: 40px;
    width: auto;
}

.join-group a{
    text-decoration: none;
    color: #333;
}

@media (max-width: 480px){
    #popup-form{
        margin: 25px;
    }
}