body,
html {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-size: 18px;
    font-family: "Poppins", sans-serif;
    background-color: #F5F5F5;
}
.r-container{
    max-width:1400px;
    margin:0 auto;
    padding:30px 5%;
}

.row{
    margin:0;
}
#reusable {
    padding-bottom: 5%;
}

.maincontent {
    max-width: 100%;
    padding: 0;
    margin: 0;
}

.maincontent_wrapper {
    padding-top: 0;
}

.myButton {
    margin-top: 20px;
    background-color: #DA291C;
    border-radius: 3px;
    border: 1px solid #fff;
    display: inline-block;
    cursor: pointer;
    color: #fff;
    font-size: 15px;
    padding: 9px 23px;
    text-decoration: none;
    text-transform: uppercase;
    transition: .3s;
}

.myButton:hover {
    background-color: #fff;
    border: 1px solid #DA291C;
    color: #DA291C;
    text-decoration: none;
    transition: .3s;
}

.myButton a:active {
    position: relative;
    top: 1px;
    color:#fff;
}

.myButton2 {
    margin-top: 20px;
    background-color: #DA291C;
    border-radius: 3px;
    border: 1px solid white;
    color: white;
    display: inline-block;
    cursor: pointer;
    font-size: 15px;
    padding: 9px 23px;
    text-decoration: none;
    text-transform: uppercase;
    transition: .3s;
}

.myButton2:hover {
    background-color: #fff;
    border: 1px solid #DA291C;
    color: #DA291C;
    text-decoration: none;
    transition: .3s;
}


.myButton2:active {
    position: relative;
    top: 1px;
}

.caps {
    text-transform: uppercase;
}
.hr-left{
    height: 1px;
    width: 400px;
    margin: 10px 0;
    background: #000;
}
#reusable h4 {
    text-decoration: underline;
}

#r-hero {
    min-height: 500px;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
}

#r-hero-logo {
    position: absolute;
    top: 5%;
    left: 2%;
}

#r-hero-content {
    position: absolute;
    top: 40%;
    left: 10%;
    color: #fff;
}
#r-hero-content p{
    max-width:900px;
}

#r-hero-content h1 {
    font-size: clamp(24px, 4vw, 60px);
    font-weight: 600;
}

.centerDiv {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right;
    border-top: 2px solid var(--accent-color);
    border-bottom: 2px solid var(--accent-color);
}

.product-image-mobile {
    display: none;
}

.product {
    background-color: #333333;
    color: white;
    padding: 40px;
}


.header-box {
    padding: 40px 20px;
}

.product-wrapper {
    margin-top: 50px;
}

.product-text-box {
    text-align: left;
    padding: 20px;
    position: relative;
    z-index: 1;
    margin-top: -50px;
    background-color: white;
    max-width: 90%;
    -webkit-box-shadow: 2px 2px 4px 2px rgba(0, 0, 0, 0.19);
    box-shadow: 2px 2px 4px 2px rgba(0, 0, 0, 0.19);
}

.product-text-box img {
    max-width: 40px;
}

.product-text-box a {
    color: black;
}

.product-text-box a:hover img {
    max-width: 50px;
}

@media only screen and (max-width: 992px) {
    .product-image-mobile {
        display: block;
    }
}

@media only screen and (max-width: 768px) {
    body, html {
    font-size: 14px;
}
    .product-text-box {
        margin-top: 0px;
    }
    #r-hero{
        text-align: center;
    }
    #r-hero-content{
        top:50%;
        left:50%;
        transform:translate(-50%, -50%);
        padding-inline:2%;
        width:100%;
    }
    .r-header{
        text-align: center;
    }
    #reusable .container{
        text-align: center;
        padding-inline:5%;
    }
    .hr-left{
        margin:10px auto;
    }
}