* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Navbar */

header {
    position: sticky;
    top: 0px;
    z-index: 1;
}

.navbar {
    background: #222831;
    color: black;
}

.menu {
    border-radius: 36px;
    background: white;
}

.overlay {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.9);
    overflow-x: hidden;
    transition: 0.5s;
    font-family: 'Poppins', sans-serif;
}

.overlay-content {
    position: relative;
    top: 14%;
    width: 100%;
    text-align: center;
    margin-top: 30px;
}

.overlay a {
    padding: 6px;
    text-decoration: none;
    font-size: 36px;
    color: #818181;
    display: block;
    transition: 0.3s;
}

.overlay a:hover,
.overlay a:focus {
    color: #f1f1f1;
}

.overlay .closebtn {
    position: absolute;
    top: 1vh;
    right: 4vw;
    font-size: 80px;
}

.title {
    font-family: 'Poppins', sans-serif;
    padding: 100px 0px;
    text-align: center;
    text-shadow: 2px 2px #f11f1f;
}

.column {
    float: left;
    width: 25%;
    padding: 0 10px;
}

.row {
    margin: 0 -5px;
}

.row:after {
    content: "";
    display: table;
    clear: both;
}

.card {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    /* this adds the "card" effect */
    padding: 16px;
    text-align: center;
}

#colour .row .column .card,
#glass .row .column .card {
    background: #393e46;
    color: white;
}

@media screen and (max-width: 600px) {
    .column {
        width: 100%;
        display: block;
        margin-bottom: 20px;
    }
}

/* Section */

#section {
    background: #393e46;
}

/* Glass */



/* Accessories */

#accessories {
    background: #393e46;
}

/* Footer */

footer {
    line-height: 1.5;
    font-family: 'Poppins', sans-serif;
    background-color: #24262b;
    padding: 70px 0;
    margin: 0;
    box-sizing: border-box;
    color: white;
    font-size: 12px;
}

footer p {
    position: relative;
    top: 10vh;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.footer-col {
    width: 25%;
    padding: 0 15px;
    margin: 0;
    box-sizing: border-box;
}

.footer-col h4 {
    font-size: 18px;
    color: #ffffff;
    text-transform: capitalize;
    margin-bottom: 35px;
    font-weight: 500;
    position: relative;
}

.footer-col h4::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    /* background-color: #7af76a; */
    background-color: #f11f1f;
    height: 2px;
    box-sizing: border-box;
    width: 50px;
}

.footer-col ul li:not(:last-child) {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 16px;
    text-decoration: none;
    font-weight: 300;
    color: #bbbbbb;
    display: block;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: #ffffff;
    padding-left: 8px;
}

.footer-col .social-links a {
    display: inline-flex;
    height: 40px;
    width: 40px;
    background-color: rgba(255, 255, 255, 0.5);
    margin: 0 10px 10px 0;
    text-align: center;
    align-items: center;
    justify-content: space-around;
    line-height: 40px;
    border-radius: 50%;
    color: #ffffff;
    transition: all 0.5s ease;
}

.footer-col .social-links a:hover {
    color: #24262b;
    background-color: #ffffff;
}

@media (max-width: 767px) {
    .footer-col {
        width: 50%;
        margin-bottom: 30px;
    }
}

@media (max-width: 574px) {
    .footer-col {
        width: 100%;
    }
}

.info {
    text-align: center;
}

@media (max-width: 450px) {}