.hero-1 .front-content div.open-overlay {
    position: relative;
    display: block;
    width: 74px;
    height: 74px;
    margin: 0 auto;
    cursor: pointer;
    -webkit-transition: all .6s ease 0s;
    transition: all .6s ease 0s;
    text-align: center;
    color: #fff;
    border: solid 2px #fff;
    overflow: hidden !important;
}
.hero-1 .front-content .down-button i {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    -webkit-transition: none;
    transition: none;
    text-align: center;
    color: #1496bb;
}
/* Set the base font size */
html {
    font-size: 16px; /* You can adjust this value */
}

/* Use relative units for paragraph text */
p {
    font-size: 1rem; /* 1rem equals the root font-size, which is 16px in this case */
}

/* Media query for smaller screens */
@media screen and (max-width: 600px) {
    html {
        font-size: 14px; /* Smaller base font size for small screens */
    }
}