* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none !important;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "DM Sans", sans-serif;
}

img {
    max-width: 100%;
    height: auto;
    cursor: pointer;
}

a {
    font-size: 14px;
    font-weight: 700;
    color: black;
}

header {
    width: 100%;
    margin: auto;
}

.preLoader {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1111;
}

.loader {
    width: 50px;
    aspect-ratio: 1;
    border-radius: 50%;
    border: 8px solid rgb(205, 205, 205);
    border-right-color: #091a2a;
    animation: l2 1s infinite linear;
}

@keyframes l2 {
    to {
        transform: rotate(1turn);
    }
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px #091a2a;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: #12304b;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #091a2a;
}

.headerTitle {
    width: 100%;
    margin: auto;
    margin-top: 70px;
    height: 500px;
}

.home-page-content {
    background-color: #eaf1eb;
    padding: 30px 30px;
    border-radius: 10px;
    box-shadow: 0px 0px 30px #d6d6d6;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 500px;
}

.home-page-content img {
    width: 600px;
}

.headerTitle h1 {
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 20px;
    margin-top: 10px;
}

.headerTitle p {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 20px;
}

.hd-btn {
    margin-top: 10px;
    padding: 12px 70px;
    background-color: #091a2a;
    border-radius: 7px;
    border: 1.5px solid #091a2a;
    color: white;
}

.hd-btn:hover {
    border: 1.5px solid #091a2a;
    color: #091a2a;
    background-color: transparent;
    transition: 0.5s;
}

nav {
    width: 100%;
    margin: auto;
    background-color: #091a2a;
}

.centerOnMobile {
    display: flex;
    align-items: center;
}

.navbra-icon {
    font-size: 25px;
    color: #454545;
}

.container-basket {
    position: relative;
    display: inline-block;
}

.fa-cart-shopping {
    color: white;
    position: relative;
}

.count-nav {
    background-color: #ff0000;
    color: #ffffff;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 14px;
    position: absolute;
    top: -10px;
    right: -10px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    font-weight: bold;
}

.superNav {
    font-size: 13px;
}

.form-control {
    outline: none !important;
    box-shadow: none !important;
}

.about {
    width: 100%;
    margin: auto;
    margin-top: 120px;
}

.about-page-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-section {
    width: 100%;
    margin: auto;
    margin-top: 100px;
}

.footer {
    width: 100%;
    margin: auto;
    margin-top: 100px;
}

.footer-main-content {
    background-color: #091a2a;
}

.about-page-content p {
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 1px;
    color: rgb(102, 95, 95);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='4' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-toggler,
.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler-icon:focus {
    outline: none;
    border: none;
    box-shadow: none;
}

@media screen and (max-width: 1024px) {
    .home-page-content {
        flex-direction: column;
        height: auto;
        text-align: center;
        padding: 40px 20px;
    }

    .home-page-content img {
        width: 100%;
        max-width: 500px;
        margin-top: 30px;
    }

    .headerTitle {
        height: auto;
        margin-top: 50px;
    }

    .about-page-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
}

@media screen and (max-width: 768px) {
    .headerTitle h1 {
        font-size: 45px;
        margin-top: 15px;
    }

    .headerTitle p {
        font-size: 18px;
    }

    .hd-btn {
        padding: 10px 50px;
    }

    .home-page-content {
        padding: 30px 15px;
    }

    .about {
        margin-top: 80px;
    }

    .contact-section {
        margin-top: 80px;
    }

    .footer {
        margin-top: 80px;
    }
}

@media screen and (max-width: 600px) {
    .headerTitle h1 {
        font-size: 35px;
    }

    .headerTitle p {
        font-size: 16px;
    }

    .hd-btn {
        padding: 8px 40px;
        font-size: 14px;
    }

    .home-page-content {
        padding: 20px 10px;
    }

    .fa-cart-shopping {
        font-size: 20px;
    }

    .count-nav {
        font-size: 12px;
        top: -8px;
        right: -8px;
        min-width: 18px;
        height: 18px;
    }

    .about {
        margin-top: 60px;
    }

    .contact-section {
        margin-top: 60px;
    }

    .footer {
        margin-top: 60px;
    }
}

@media screen and (max-width: 480px) {
    .centerOnMobile {
        text-align: center;
    }

    .headerTitle {
        margin-top: 30px;
    }

    .headerTitle h1 {
        font-size: 28px;
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .headerTitle p {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .hd-btn {
        padding: 8px 30px;
        font-size: 13px;
    }

    .home-page-content {
        padding: 15px 8px;
        border-radius: 5px;
    }

    a {
        font-size: 13px;
    }
}

@media screen and (max-width: 400px) {
    .headerTitle h1 {
        font-size: 24px;
    }

    .headerTitle p {
        font-size: 13px;
    }

    .hd-btn {
        padding: 6px 25px;
        font-size: 12px;
    }

    .fa-cart-shopping {
        font-size: 18px;
    }

    .count-nav {
        font-size: 10px;
        top: -6px;
        right: -6px;
        min-width: 16px;
        height: 16px;
    }

    .about-page-content p {
        font-size: 13px;
    }

    a {
        font-size: 12px;
    }
}

@media screen and (max-width: 320px) {
    .headerTitle h1 {
        font-size: 22px;
    }

    .home-page-content {
        padding: 10px 5px;
    }

    .hd-btn {
        padding: 5px 20px;
        font-size: 11px;
    }
}