html
{
    scroll-behavior: smooth;
}

*
{
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

.hero
{
    min-height: 50vh;
    width: 100%;
    background-image: linear-gradient(rgba(4, 9, 30, 0.7), rgba(4, 9, 30, 0.7)), url('../images/background-foliage-4.jpg');
    background-position: top;
    background-size: cover;
    background-attachment: fixed;
    background: rotate(90deg);
    position: relative;
}

.text-box
{
    width: 90%;
    color: #ffffff;
    position: absolute;
    bottom:5%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.text-box img
{
    display: none;
}

.text-box h1
{
    font-size: 62px;
    font-weight: 600;
}

.text-box p
{
    margin: 10px 0 40px;
    font-size: 18px;
    color: #ffffff;
}

.hero-btn
{
    display: inline-block;
    text-decoration: none;
    color: #ffffff;
    border: 1px solid #ffffff;
    padding: 12px 34px;
    font-size: 15px;
    background: transparent;
    position: relative;
    transition: all 0.5s;
}

.hero-btn:hover
{
    border: 1px solid rgba(16, 161, 2, 0.5);
    background-color: rgb(15, 161, 2, 0.7);
    transform: scale(1.1);
    transition: all 0.5s;
}


@media (max-width: 700px)  
{
    .hero
    {
        min-height: 20vh;
        background-position: right;
    }

    .text-box
    {
        display: flex;
        flex-direction: column;
        align-items: center;
        top: 50%
    }
    .text-box img
    {
        display: block;
        height: 130px;
        padding: 30px 0px;
        /* transform: translateX(50%); */
    }

    .text-box h1
    {
        font-size: 30px;
    }

    .text-box p
    {
        margin: 0px 0 40px;
    }
}       

/* Sections */
.section
{
    width: 85%;
    margin: auto;
    text-align: center;
    /* padding-top: 50px; */
}

h1
{
    font-size: 36px;
    font-weight: 600;
}

p
{
    color: rgb(66, 66, 66);
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
    padding: 20px 30px;
}

.row
{
    padding: 2.5% 5% 5%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    /* background-color: rgba(0, 0, 0, 0.2); */
    border-radius: 10px;
}

.column
{
    text-align: justify;
    /* flex-basis: 31%; */
    width: 100%;
    /* background: rgba(199, 199, 199, 0.5); */
    backdrop-filter: blur(10px);
    border-radius: 10px;
    /* padding: 20px 10px; */
    box-sizing: border-box;
    transition: all 1s;
    display: flex;
}

h3
{
    padding-left: 10px;
    color: rgba(0, 0, 0, 0.87);
    text-align: center;
    font-weight: 600;
    margin: 10px 0px;
    /* text-shadow: 0px 0px 20px black; */
}

.column img
{
    padding: 20px 10px;
    height: 200px;
    width: 230px;
    filter: brightness(1.1);
}


@media (max-width: 700px) 
{
    p
    {
        font-size: 15px;
        padding: 20px 0px;
    }     
}