/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700;800&display=swap');

/* Global Styles */
/* Primary color: #205352 */

html,
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Avenir Next', 'Avenir', 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Avenir Next', 'Avenir', 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 600;
    line-height: 1.2;
    margin: 0 0 1rem 0;
}

p {
    font-family: 'Avenir Next', 'Avenir', 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    margin: 0 0 1rem 0;
}

/* Links */
a {
    color: #205352;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #205352;
}

/* Buttons */
button {
    /* font-family: 'Avenir Next', 'Avenir', 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif; */
    /* font-weight: 500; */
    cursor: pointer;
    border: none;
    /* border-radius: 4px; */
    padding: 0;
    transition: all 0.3s ease;
}

/* Utility Classes */
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Global Custom Scrollbar */
*::-webkit-scrollbar {
    width: 10px;
}

*::-webkit-scrollbar-track {
    border-right: 1px solid #205352;
}

*::-webkit-scrollbar-thumb {
    background: #205352;
    border-radius: 5px;
    border: 3px solid transparent;
    background-clip: padding-box;
    /* Makes the border area transparent */
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
}