p {
    font-size: 20px;
    line-height: 1.6;
}

.fixed-logo {
    position: fixed;
    width: 100px;
    left: 47%;
    top: 20px;
    z-index: 200;
}

.fixed-logo img {
    width: 100%;
    opacity: 1;
}

.hero-image {
    position: relative;
    width: 100vw;
    height: 100vh;
    /* -o */
    background-image: url('../images/hero.jpg');
    background-size: cover;
    background-repeat: no-repeat;
}

.sustainability.hero-image {
    background-image: url('../images/sustainability.jpg');
}

.hero-image:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    /* Color overlay 👁‍🗨 */
    /* background: rgba(223, 3, 3, 0.844); */
}

#about {
    background: #b0abab6a;
    padding-bottom: 40px;
}

.sustainability.hero-image:before {
    content: '';
    background-image: linear-gradient(to bottom right, #073b1d);
    opacity: .05;
}

body {
    overflow-x: hidden;
}

.hero-image>.text-container {
    color: white;
    position: absolute;
    width: 100vw;
    height: 100vh;
    left: 0;
    right: 0;
    z-index: 5;
}

.hero-image>.text-container {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.hero-image h1 {
    color: white;
    font-family: 'PFD';
    font-weight: lighter;
    font-size: 4.5em;
    margin-top: 15px;
    padding: 0 30px;
    line-height: 1em;
}

.hero-image p {
    color: white;
    word-spacing: 3.5px;
    margin-top: 10px;
    font-family: 'PFD';
    font-size: 1.7em;
}

.hero-image .btn {
    color: var(--red);
    background: white;
    transition: .3s ease;
}

.hero-image .btn:hover {
    color: white;
    background: none;
    transform: scale(1.05);
    border: 1px solid white;
    transition: .3s ease;
}

.btn {
    color: white;
    background: var(--red);
    transition: .3s ease;
}

.btn:hover {
    color: var(--red);
    background: none;
    transform: scale(1.05);
    border: 1px solid var(--red);
    transition: .3s ease;
}

.hero-image .btn:active {
    transform: scale(1.1);
}

.hero-image .know_btn {
    text-transform: none;
}

.shadow {
    filter: drop-shadow(0 0 0.75rem rgba(71, 71, 71, 0.342));
}

.rounded {
    border-radius: 10px;
}

.rounded>img {
    width: 100%;
}

.margin-tb-15 {
    margin: 15px 0;
}

.pad-list {
    margin-top: 30px;
}

.pad-list li {
    margin: 10px 0;
}

#services h2 {
    margin-top: 20px;
}

.about_content h2,
#services h2 {
    color: var(--red);
    font-family: 'PFD';
    font-size: 4em;
}

.service_item h3 {
    color: var(--red);
}

.btn.know_btn {
    font-size: 1.3em;
    ;
    font-weight: bolder;
    padding: 8px 24px;
}

.why_us_item h4 {
    font-size: 2em;
}

/* Scroll Down Button */
#scrollDown {
    position: absolute;
    left: 0;
    bottom: 20px;
    width: 100%;
    display: flex;
    align-items: center;
}

#scrollDown .scroll-icon {
    /* width: inherit; */
    cursor: pointer;
    margin: 0 auto;
}

#scrollDown .scroll-icon * {
    text-align: center;
}

#scrollDown .scroll-icon>.icon {
    font-size: 2.5em;
}

#scrollDown .scroll-icon:hover .icon {
    transform: scale(1.5);
    opacity: 0.8;
}

#scrollDown .scroll-icon:hover .div {
    transform: scale(5);
}

@media (max-width: 900px) {
    .fixed-logo {
        left: 45%;
    }
}

@media (max-width: 700px) {
    .fixed-logo {
        width: 90px;
        left: 40px;
    }
}

@media (max-width: 480px) {
    h3 {
        font-size: 2.2em;
    }

    .hero-image p {
        font-size: 1.5em;
        margin-top: 20px;
    }

    #scrollDown .scroll-icon .icon {
        visibility: hidden;
    }
}


/*@media (max-width: 320px) { */

@media (max-width: 320px) {

    .fixed-logo {
        left: 20px;
        width: 80px;
        /* top: 20px; */
    }

    .hero-image h1 {
        font-size: 3em;
        line-height: 1em;
    }

}