@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --background-color: #333647;
    --pink-color: #f87652;
    --secondary-color: #bbbbbb;
}

* {
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: var(--background-color) !important;
    ;
}

canvas {
    display: block;
    vertical-align: bottom;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
}

.hero_section .row {
    display: flex;
    align-items: center;
    height: 100vh;
}

.hero_section .row h1,
h2,
h3,
p {
    color: white;
}

.hero_section .row h3 {
    font-size: 19px;
    font-weight: 30px;
    margin-bottom: 15px;

}

.hero_section .row h3::after {
    content: '';
    position: absolute;
    text-align: center;
    top: 10px;
    width: 90px;
    height: 2px;
    background-color: white;
    margin-left: 6px;
}

.hero_section .row h1 {
    font-weight: 800;

}

.hero_section .row h2 {
    font-size: 20px;
    font-weight: 100;
    margin: 8px 0px;
}

.hero_section .row p {
    font-size: 13px;
    margin-top: 13px;
    line-height: 21px;
    color: var(--secondary-color);
}

.hero_section .row img {
    width: 80%;
    border-radius: 5px;
}

@media (max-width: 993px) and (min-width: 763px) {
    .hero_section .row h2 {
        font-size: 15px;
    }

    .hero_section .row p {
        font-size: 11px;
    }

    .hero_section .row h3 {
        font-size: 15px;
    }
}

@media (max-width: 763px) and (min-width: 500px) {
    .hero_section {
        margin: 55px 0px;
    }

    .hero_section .row h1 {
        text-align: center;
    }

    .hero_section .row h2 {
        font-size: 15px;
        text-align: center;
    }

    .hero_section .row p {
        font-size: 11px;
        text-align: center;
    }

    .hero_section .btn_container {
        justify-content: center;
        text-align: center;
    }

    .hero_section .row h3 {
        font-size: 18px;
        text-align: center;
        margin-bottom: 0px;
    }

    .hero_section .row h3::after {
        width: 0px;
    }

    .hero_section img {
        width: 60%;
        margin-top: 20px;
    }
}