/* * Made by Nove Group with love.
 * * Visit our GitHub: https://github.com/nove-org
 * * Copyright (c) 2022 Nove Group - All rights reserved.
 * */

main {
    padding: 0rem 18rem;
}

main section.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 0;
}

main section.hero .content {
    width: 300px;
    margin-right: 250px;
}

main section.hero .content h1 {
    font-size: 48px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: -15px;
    color: rgb(245, 123, 66);
}

main section.hero .content p {
    font-size: 24px;
    line-height: 1;
    font-weight: 300;
    color: rgb(206, 199, 199);
    margin-bottom: 30px;
    width: 400px;
}

main section.hero .content .buttons {
    margin-left: -10px;
}

main section.hero .content ul {
    margin-top: 30px;
    margin-bottom: 30px;
    padding-left: 0;
    list-style: none;
}

main section.hero .content ul li {
    font-size: 16px;
    line-height: 1;
    font-weight: 400;
    color: rgb(179, 169, 169);
    margin-bottom: 10px;
}

main section.hero .content ul li svg {
    color: rgb(245, 123, 66);
}

main section.hero .content ul li:last-child {
    margin-bottom: 0;
}

main section.hero img {
    margin-right: -80px;
    margin-top: 70px;
}

@media screen and (max-width: 1100px) {
    main {
        padding: 0 !important;
    }
    main section.hero {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        padding: 140px 0;
        width: 100%;
    }
    main section.hero .content {
        margin: 0;
        min-width: fit-content;
    }
    main section.hero img {
        display: none;
    }
}

@media screen and (max-width: 450px) {
    body {
        overflow-x: hidden;
    }
    main {
        padding: 0 !important;
    }
    main section.hero {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        padding: 140px 0;
        width: 100%;
    }
    main section.hero .content {
        margin: 0;
        min-width: fit-content;
    }
    main section.hero .content h1 {
        width: calc(100% - 30px);
        text-align: center;
        padding: 0 15px;
    }
    main section.hero .content p {
        width: calc(100% - 30px);
        text-align: center;
        padding: 0 15px;
    }
    main section.hero .content ul {
        width: 100%;
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: center;
    }
    main section.hero .content .buttons {
        display: flex;
        align-items: center;
        flex-direction: column;
        margin: 0;
    }
    main section.hero .content .buttons button {
        width: calc(100% - 70px);
        margin: 5px 0;
    }
    main section.hero img {
        display: none;
    }
}


/*# sourceMappingURL=hero.css.map */