body {
    font-family: 'Rubik', sans-serif;
}

header {
    padding: 10px 25px;
}

header ul {
    list-style-type: none;
    padding: 20px 0;
}

header ul li {
    display: inline-block;
}

header ul li a {
    padding: 10px 25px;
    text-transform: uppercase;
    text-decoration: none;
    color: #333;
    transition: .2s ease-in-out;
}

header ul li a:hover {
    text-decoration: none;
    color: #F79200;
    font-weight: bold;
    transition: .2s ease-in-out;
}


.cart-qty {
    background: #0093D3;
    color: #fff;
    padding: 1px 5px;
    border-radius: 10px;
    position: relative;
    left: -39px;
    top: -7px;
}

.mob-cart {
    position: absolute;
    right: 20px;
    top: -41px;
}

.accent-color {
    font-weight: 600;
    color: #0093D3;
}


.sec-1 {
    padding: 60px 10px;
}
.sec-1 h1 {
    font-size: 45px;
    font-weight: 500;
}

p {
    color: #656262;
    font-size: 18px;
}


.fill-cta {
    background-color: #F79200;
    color: #fff;
    padding: 18px 75px;
    position: relative;
    top: 28px;
    font-size: 18px;
    border-radius: 6px;
    transition: .3s ease-in-out;
}

.fill-cta:hover {
    background-color: #dc8300;
    text-decoration: none;
    color: #fff;
    box-shadow: 0px 14px 9px #f7920078;
    transition: .3s ease-in-out;
}

.outlined-cta {
    background-color: transparent;
    border: 1px solid #F79200;
    color: #F79200;
    padding: 17px 55px;
    position: relative;
    top: 28px;
    font-size: 18px;
    border-radius: 6px;
    transition: .3s ease-in-out;
}

.outlined-cta:hover {
    background-color: #dc8300;
    border: 1px solid #F79200;
    text-decoration: none;
    color: #fff;
    box-shadow: 0px 14px 9px #f7920078;
    transition: .3s ease-in-out;
}

.sec-2 {
    padding: 60px 10px;
    background-color: #EDF9FF;
}

.sec-2 p {
    font-size: 16px;
}

.title {
    font-size: 32px;
    padding-bottom: 20px;
}

.white-box {
    background-color: #fff;
    padding: 25px;
    min-height: 390px;
}

.sec-3 {
    padding: 60px 10px;
}

.prod-box {
    padding: 50px;
    background: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 0 12px rgba(0,0,0,0.1);
}

.prod-box .fill-cta {
    padding: 17px 60px;
    position: relative;
    top: 9px;
}


/* Media Queries */
@media screen and (max-width: 768px) {
    /* For Mobile */
    
    .hide-mobile {
        display: none;
    }

    header ul li {
        display: block;
        text-align: center;
        padding: 10px 25px;
    }

    .mobile-menu img {
        width: 36px;
        position: absolute;
        right: 0;
        top: -46px;
    }

    .sec-1 h1 {
        font-size: 27px;
        text-align: center;
    }

    .sec-1 p {
        font-size: 14px;
    }

    .top-fold {
        margin-top: -40px;
        padding-bottom: 30px;
    }

    header {
        text-align: center;
    }
    .sec-1 {
        padding: 60px 10px 20px 10px;
    }
    .title {
        font-size: 27px;
        text-align: center;
    }

    .sec-2 {
        padding: 30px 10px 20px 10px;
        background-color: #EDF9FF;
    }

    .white-box {
        margin-bottom: 1.5rem!important;
    }
}

@media screen and (min-width: 769px) {
    /* For Desktop */
    .hide-desktop {
        display: none;
    }
    .white-box {
        margin-bottom: 1.5rem!important;
    }
}


footer {
    background: #010101;
}

.footer-box {
    background: #14365E;
    padding: 10px 16px;
    width: auto;
    float: right;
    border-radius: 60px;
    margin-top: 20px;
    padding-right: 30px;
}

.footer-box img {
    margin-top: -19px;
    background-color: #0093D3;
    padding: 20px;
    position: absolute;
    border-radius: 50px;
    margin-left: -50px;
}

.footer-box span {
    padding-left: 40px;
}

.footer-content {
    padding: 10px 0;
    border-radius: 50px;
    width: auto;
}