/* colors */
:root {
    /* only unique colors  */
    --black: #000000;
    --dark: #181818;
    --secondary: #F4F4F4;
    --primary: #4071F6;
    --warning: #F6E440;
}

* {
    margin: 0;
    padding: 0;
    line-height: normal;
    letter-spacing: normal;
    word-break: break-all;
}
p{
    margin-bottom: 0;
}

@media (min-width: 301px) {
    * {
        word-break: normal;
    }
}

body {
    font-family: 'Space Grotesk', sans-serif;
}

a {
    text-decoration: none;
    color: var(--bs-danger);
    font-weight: 500;
}


nav {
    border: 2px solid var(--secondary);
}

img {
    max-width: 100%;
    height: auto;
}

.fw-400 {
    font-weight: 400;
}

.fw-500 {
    font-weight: 500;
}

.fw-600 {
    font-weight: 600;
}

.fw-700 {
    font-weight: 700;
}

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

.main-image {
    max-height: 400px;
}

.main-text {
    font-size: 30px;
    font-weight: 700;
    line-height: 1;
}

.main-subtext {
    font-size: 18px;
    font-weight: 400;
    text-align: left;
    line-height: 1;
}

.heading {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
}

.subheading {
    font-size: 18px;
    font-weight: 400;
    text-align: left;
    line-height: 1;
}

@media (min-width: 768px) {
    .main-image {
        max-height: none;
    }

    .main-text {
        font-size: 45px;
    }

    .main-subtext {
        font-size: 35px;
    }

    .heading {
        font-size: 60px;
    }

    .subheading {
        font-size: 25px;
    }
}

@media (min-width: 1200px) {
    .main-text {
        font-size: 52px;
    }
}



.bg-dark {
    background-color: var(--dark) !important;
}




