@import url(./header.css);
@import url(./footer.css);
@import url(./index.css);
@import url(./intro.css);
@import url(./introPages.css);
@import url(./product.css);
@import url(./contact.css);
@import url(./delivery.css);
@import url(./about.css);
@import url(./fonts.css);

@import url(./aos.css);

:root {
    --main-color: #3f4e4f;
    --main-color-light: #698183;

    --dark: #000;
    --light: #fff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-thumb {
    background-color: var(--main-color);
    border-radius: 10px;
}

::-webkit-scrollbar-track {
    background-color: #f1f1f1;
    border-radius: 10px;
}

::selection {
    background-color: var(--main-color);
    color: #fff;
}

body,
html {
    font-family: 'Montserrat';
    font-size: 16px;

    scroll-behavior: smooth;

    /*user-select: none;*/
}

button,
a,
input {
    outline: none;
    text-decoration: none;
    color: #000;
}

.wrapper {
    padding: 0 100px;
}

.title {
    font-size: 2.8rem;
    font-weight: 600;

    text-align: center;
}

.under-title {
    text-align: center;
    color: #a1a1a1;

    width: 700px;
    margin: 1.5rem auto 0;
}

@media (max-width: 800px) {
    html {
        font-size: 15px;
    }

    .wrapper {
        padding: 0 70px;
    }

    .title {
        font-weight: 600;
    }

    .under-title {
        width: 500px;
    }
}

@media (max-width: 700px) {
    .wrapper {
        padding: 0 50px;
    }
}

@media (max-width: 600px) {
    .wrapper {
        padding: 0 30px;
    }

    .title {
        font-size: 2.4rem;
    }

    .under-title {
        width: 300px;
    }
}

@media (max-width: 700px) {
    .wrapper {
        padding: 0 50px;
    }
}


@media (max-width: 350px) {
    html {
        font-size: 16px;
    }

    .wrapper {
        padding: 0 20px;
    }

    .title {
        font-size: 1.9rem;
    }

    .under-title {
        width: 280px;
        font-size: 1rem;
    }
}

@media (max-width: 300px) {
    .under-title {
        width: 250px;
        font-size: 1rem;
    }
}


.container {
    width: 100%;
    padding-right: var(--bs-gutter-x, 1.5rem);
    padding-left: var(--bs-gutter-x, 1.5rem);
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

.contact-numbers {
    text-align: center;
    margin: 20px 0;
}

.contact-numbers h3 {
    margin-bottom: 10px;
}

.contact-numbers p {
    margin: 5px 0;
}
