body{
    font-family: 'Roboto', sans-serif;
    margin: 0;
}

header{
    margin: 0;
    -webkit-box-shadow: 0 24px 38px 3px rgb(1 74 173 / 67%), 0 9px 90px 8px rgb(1 74 173 / 76%), 0 11px 15px -7px rgb(1 74 173 / 93%);
    box-shadow: 0 17px 42px 18px rgb(1 74 173 / 82%), 0 9px 46px 8px rgb(1 74 173), 0 11px 15px -7px rgb(1 74 173);
}

.nav-wrapper{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-login{
    background-color: #BABBBB;
    display: flex;
    justify-content: right;
}


.nav-login a {
    color: black;
    text-decoration: none;
    padding: 10px;
}

.nav ul{
    display: flex;
    flex-wrap: wrap;
    list-style: none;
}

.nav ul li{
    padding: 10px;
}

.nav ul li a{
    text-decoration: none;
    color: #000000;
    font-weight: 400;
    transition: 0.5s all;
    padding-bottom: 10px;
    font-size: 17px;
    letter-spacing: 1px;
    text-rendering: optimizeLegibility;
    font-family: Poppins,sans-serif !important;

}

.nav ul li a:hover{
    color: #014aad;
    border-bottom: 1px solid #014aad;
}

.nav-login a i{
    margin-right: 5px;
}

.nav-login .shopping-cart{
    background-color: #C6A55D;
    padding: 10px;
}

.navbar{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar img{
    max-width: 205px;
}

.verify-cert{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}


.verify-cert h1{
    font-size: 30px;
}

.verify-form{
    display: flex;
    flex-wrap: wrap;
    margin-top: 10px;
}

.verify-form input{
    border: 2px solid #CDCDCD;
    min-width: 435px;
    text-align: center;
    padding: 10px 0;
    border-radius: 35px;
}

.verify-form button{
    background-color: #014aad;
    color: #ffffff;
    border: none;
    margin-left: 10px;
    border-radius: 30px;
    padding: 0 70px;
}

.info-section{
    display: flex;
    justify-content: center;
    align-items: center;
}

.info-img{
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.info-img img{
    max-width: 220px;
    margin-right: 10px;
}

.search-icon{
    padding: 10px 5px 10px 15px;
    background: url(../images/search_icon.png) no-repeat right;
    background-position-x: 160px;
    background-size: 38px;
    border-radius: 25px;
    border: 1px solid;
}

.subscribe-input{
    padding: 10px 25px 10px 10px;
    background-size: 30px;
    border-radius: 5px;
    margin: 10px 0;
    border: 1px solid ;
}

#subscribe_form .submit{
    background-color: #014aad;
    color: #ffffff;
    border: none;
    padding: 10px 30px;
    border-radius: 30px;
    display: block;
}

footer{
    margin-top: 150px;
}

.footer-block h5{
    font-size: 17px;
}


.footer-block ul{
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-block ul li{
    padding: 10px 0;
}

.footer-block ul li a{
    text-decoration: none;
    color: #000000;
    font-family: "Poppins", "sans-serif";
    transition: 0.7s all;
    font-size: 14px;
}

.footer-block ul li a:hover{
    color: #014aad;
}

.product_description{
    display: flex;
    justify-content: center;
    margin:30px 0;
    font-family: "Poppins","sans-serif";
}

.product_description h3{
    font-size: 20px;
}

.product_description h3 strong{
    display: flex;
    justify-content: center;
}

.product_description h3 strong span{
    font-weight: 600;
    width: 300px;
    margin-left: 5px;
}
.product_description h3 strong span:first-child{
    text-align: right;
}

.image-view{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px 0;
}

.footer_wrapper{
    border-top: 2px solid #CDCDCD;
    border-bottom: 2px solid #CDCDCD;
    padding: 20px 0;
}

.top-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background-color: #bcbcbc;
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    color: #000000;
    height: 50px;
    padding: 1em;
}

.menu {
    display: flex;
    flex-direction: row;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.menu > li {
    margin: 0 1rem;
    overflow: hidden;
}

.menu-button-container {
    display: none;
    height: 100%;
    width: 30px;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#menu-toggle {
    display: none;
}

.menu-button,
.menu-button::before,
.menu-button::after {
    display: block;
    background-color: #000000;
    position: absolute;
    height: 1px;
    width: 30px;
    transition: transform 1900ms cubic-bezier(0.23, 1, 0.32, 1);
    border-radius: 2px;
}

.menu-button::before {
    content: "";
    margin-top: -8px;
}

.menu-button::after {
    content: "";
    margin-top: 8px;
}

#menu-toggle:checked + .menu-button-container .menu-button::before {
    margin-top: 0;
    transform: rotate(405deg);
}

#menu-toggle:checked + .menu-button-container .menu-button {
    background: rgba(255, 255, 255, 0);
}

#menu-toggle:checked + .menu-button-container .menu-button::after {
    margin-top: 0;
    transform: rotate(-405deg);
}

.mobile-logo{
    max-width: 100px;
}




@media (max-width: 791px) {
    .nav{
        justify-content: center;
    }
    .verify-form{
        justify-content: center;
        align-items: center;
    }
    .verify-form input{
        min-width: 350px;
    }
    .verify-form button{
        padding: 10px 70px;
        min-width: 350px;
        margin:  20px 0;
    }
    .info-img{
        justify-content: center;
    }
    .verify-cert h1{
        text-align: center;
    }
    .info-section h5{
        margin-top: 20px;
    }

}

@media (max-width: 700px) {
    header{
        display: none;
    }
    .top-nav{
        display: flex!important;
    }
    .menu-button-container {
        display: flex;
    }

    .menu {
        position: absolute;
        top: 0;
        margin-top: 50px;
        left: 0;
        flex-direction: column;
        z-index: 1000;
        width: 100%;
        justify-content: center;
        background: #ffffff;
        padding: 20px;
        align-items: center;
    }

    #menu-toggle ~ .menu li {
        height: 0;
        margin: 0;
        padding: 0;
        border: 0;
        transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
    }

    #menu-toggle:checked ~ .menu li {
        height: 2.5em;
        padding: 0.5em;
        transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
    }

    .menu > li {
        display: flex;
        justify-content: left;
        margin: 0;
        padding: 0.5em 0;
        width: 100%;
    }

    .menu > li a{
        text-decoration: none;
        color: #000000;
        background-color: #ffffff;
        transition: 0.5s all;
    }

    .menu > li a:hover{
        color: #014aad;
    }

    .verify-cert h1{
        margin-top: 40px;
    }
    .info-img p{
        right: 80px!important;
        top: 250px!important;
    }
    .product_description h3 strong span{
        font-size: 16px;
        width: 200px
    }
}
