@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,300;0,400;0,500;0,600;0,700;1,100&display=swap');

* {
    font-family: 'Poppins', sans-serif !important;
}

.bg-img {
    background-image: url(../images/bg.jpg);
    background-position: center;
    background-size: cover;
    height: 100vh;
    position: relative;
}



.bg-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(41, 64, 108, 0.5);
    z-index: -1;
}

.h-small {
    color: white;
    position: relative;
    z-index: 1;
    font-size: 30px;
    text-align: center;
}

.b-small {
    color: white;
    position: relative;
    z-index: 1;
    font-size: 80px;
    text-align: center;
}

.p-small {
    color: white;
    position: relative;
    z-index: 1;
    font-size: 40px;
    text-align: left;
}

.txt-small {
    color: white;
    position: relative;
    z-index: 1;
    font-size: 18px;
    text-align: left;
    margin: 0px;
}

.p-text {
    color: white;
    font-size: 16px;
}

::-webkit-scrollbar {
    width: 5px;
    /* Adjust the width of the scrollbar */
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
    /* Color of the scrollbar track */
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #29406C;
    /* Color of the scrollbar handle */
}

.bg-row {
    background: #5792ff7a;
    padding: 12px;
    border-radius: 15px;
}

@media screen and (max-width: 768px) {
    .h-small {
        font-size: 20px;
    }

    .b-small {
        font-size: 45px;
    }

    .txt-small {
        font-size: 16px;
    }

    .bg-img {

        height: auto;

    }

    .p-small {

        font-size: 25px;

    }

    .bg-img::before {

        height: 110vh

    }
}